|
7 | 7 | from .dbl_bundle_text_corpus import DblBundleTextCorpus |
8 | 8 | from .dictionary_alignment_corpus import DictionaryAlignmentCorpus |
9 | 9 | from .dictionary_text_corpus import DictionaryTextCorpus |
| 10 | +from .file_paratext_project_file_handler import FileParatextProjectFileHandler |
10 | 11 | from .file_paratext_project_settings_parser import FileParatextProjectSettingsParser |
11 | 12 | from .file_paratext_project_text_updater import FileParatextProjectTextUpdater |
| 13 | +from .file_paratext_project_versification_error_detector import FileParatextProjectVersificationErrorDetector |
12 | 14 | from .flatten import flatten |
13 | 15 | from .memory_alignment_collection import MemoryAlignmentCollection |
14 | 16 | from .memory_stream_container import MemoryStreamContainer |
|
18 | 20 | from .parallel_text_row import ParallelTextRow |
19 | 21 | from .paratext_backup_terms_corpus import ParatextBackupTermsCorpus |
20 | 22 | from .paratext_backup_text_corpus import ParatextBackupTextCorpus |
| 23 | +from .paratext_project_file_handler import ParatextProjectFileHandler |
21 | 24 | from .paratext_project_settings import ParatextProjectSettings |
22 | 25 | from .paratext_project_settings_parser_base import ParatextProjectSettingsParserBase |
23 | 26 | from .paratext_project_terms_parser_base import ParatextProjectTermsParserBase |
24 | 27 | from .paratext_project_text_updater_base import ParatextProjectTextUpdaterBase |
| 28 | +from .paratext_project_versification_error_detector import ParatextProjectVersificationErrorDetector |
25 | 29 | from .paratext_text_corpus import ParatextTextCorpus |
26 | 30 | from .place_markers_usfm_update_block_handler import PlaceMarkersAlignmentInfo, PlaceMarkersUsfmUpdateBlockHandler |
27 | 31 | from .scripture_element import ScriptureElement |
|
70 | 74 | from .usfm_update_block import UsfmUpdateBlock |
71 | 75 | from .usfm_update_block_element import UsfmUpdateBlockElement, UsfmUpdateBlockElementType |
72 | 76 | from .usfm_update_block_handler import UsfmUpdateBlockHandler |
| 77 | +from .usfm_versification_error_detector import ( |
| 78 | + UsfmVersificationError, |
| 79 | + UsfmVersificationErrorDetector, |
| 80 | + UsfmVersificationErrorType, |
| 81 | +) |
73 | 82 | from .usx_file_alignment_collection import UsxFileAlignmentCollection |
74 | 83 | from .usx_file_alignment_corpus import UsxFileAlignmentCorpus |
75 | 84 | from .usx_file_text import UsxFileText |
76 | 85 | from .usx_file_text_corpus import UsxFileTextCorpus |
77 | 86 | from .usx_memory_text import UsxMemoryText |
78 | 87 | from .usx_zip_text import UsxZipText |
| 88 | +from .zip_paratext_project_file_handler import ZipParatextProjectFileHandler |
79 | 89 | from .zip_paratext_project_settings_parser import ZipParatextProjectSettingsParser |
80 | | -from .zip_paratext_project_settings_parser_base import ZipParatextProjectSettingsParserBase |
81 | 90 | from .zip_paratext_project_terms_parser import ZipParatextProjectTermsParser |
82 | 91 | from .zip_paratext_project_text_updater import ZipParatextProjectTextUpdater |
| 92 | +from .zip_paratext_project_versification_detector import ZipParatextProjectVersificationErrorDetector |
83 | 93 |
|
84 | 94 | __all__ = [ |
85 | 95 | "AlignedWordPair", |
|
95 | 105 | "EMPTY_SCRIPTURE_REF", |
96 | 106 | "escape_spaces", |
97 | 107 | "extract_scripture_corpus", |
| 108 | + "FileParatextProjectFileHandler", |
98 | 109 | "FileParatextProjectSettingsParser", |
99 | 110 | "FileParatextProjectTextUpdater", |
| 111 | + "FileParatextProjectVersificationErrorDetector", |
100 | 112 | "flatten", |
101 | 113 | "is_scripture", |
102 | 114 | "lowercase", |
|
113 | 125 | "ParallelTextRow", |
114 | 126 | "ParatextBackupTermsCorpus", |
115 | 127 | "ParatextBackupTextCorpus", |
| 128 | + "ParatextProjectFileHandler", |
116 | 129 | "ParatextProjectSettings", |
117 | 130 | "ParatextProjectSettingsParserBase", |
118 | 131 | "ParatextProjectTermsParserBase", |
119 | 132 | "ParatextProjectTextUpdaterBase", |
| 133 | + "ParatextProjectVersificationErrorDetector", |
120 | 134 | "ParatextTextCorpus", |
| 135 | + "parse_usfm", |
121 | 136 | "PlaceMarkersAlignmentInfo", |
122 | 137 | "PlaceMarkersUsfmUpdateBlockHandler", |
123 | | - "parse_usfm", |
124 | 138 | "RtlReferenceOrder", |
125 | 139 | "ScriptureElement", |
126 | 140 | "ScriptureRef", |
|
139 | 153 | "unescape_spaces", |
140 | 154 | "UpdateUsfmMarkerBehavior", |
141 | 155 | "UpdateUsfmParserHandler", |
142 | | - "UpdateUsfmTextBehavior", |
143 | 156 | "UpdateUsfmRow", |
| 157 | + "UpdateUsfmTextBehavior", |
144 | 158 | "UsfmAttribute", |
145 | 159 | "UsfmElementType", |
146 | 160 | "UsfmFileText", |
|
164 | 178 | "UsfmUpdateBlockElement", |
165 | 179 | "UsfmUpdateBlockElementType", |
166 | 180 | "UsfmUpdateBlockHandler", |
| 181 | + "UsfmVersificationError", |
| 182 | + "UsfmVersificationErrorDetector", |
| 183 | + "UsfmVersificationErrorType", |
167 | 184 | "UsxFileAlignmentCollection", |
168 | 185 | "UsxFileAlignmentCorpus", |
169 | 186 | "UsxFileText", |
170 | 187 | "UsxFileTextCorpus", |
171 | 188 | "UsxMemoryText", |
172 | 189 | "UsxZipText", |
| 190 | + "ZipParatextProjectFileHandler", |
173 | 191 | "ZipParatextProjectSettingsParser", |
174 | | - "ZipParatextProjectSettingsParserBase", |
175 | 192 | "ZipParatextProjectTermsParser", |
176 | 193 | "ZipParatextProjectTextUpdater", |
| 194 | + "ZipParatextProjectVersificationErrorDetector", |
177 | 195 | ] |
0 commit comments