Overview
Comment: | [py][core] new parser, [cli] update command list and rename some commands |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | cli | core |
Files: | files | file ages | folders |
SHA3-256: |
8012c45f374f30c91c46f916b5471726 |
User & Date: | olr on 2019-05-25 06:53:17 |
Original Comment: | [cli] update command list and rename some commands |
Other Links: | manifest | tags |
Context
2019-05-25
| ||
09:51 | [fx] update lexicographer CSS check-in: af891c805d user: olr tags: trunk, fx | |
06:53 | [py][core] new parser, [cli] update command list and rename some commands check-in: 8012c45f37 user: olr tags: trunk, cli, core | |
2019-05-24
| ||
14:43 | [build][core] update line identifier check-in: b4abcccefb user: olr tags: trunk, core, build | |
Changes
Modified gc_core/py/lang_core/gc_engine.py from [9ccda4784b] to [6b982ab34c].
︙ | |||
229 230 231 232 233 234 235 | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | - + - - + - - + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | s += "\t" + str(dToken["aTags"]) s += "\n" #for nPos, dToken in self.dTokenPos.items(): # s += "{}\t{}\n".format(nPos, dToken) return s def parse (self, sCountry="${country_default}", bDebug=False, dOptions=None, bContext=False): |
︙ |
Modified grammalecte-cli.py from [19972ccb9a] to [b9b88866b3].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - - + + - - + + + + | _HELP = """ /help /h show this text ?word1 [word2] ... words analysis !word suggestion >word draw path of word in the word graph =filter show all entries whose morphology fits to filter /lopt /lo list options |
︙ | |||
221 222 223 224 225 226 227 | 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | - + - + - + - + | sFlexPattern = sSearch[0:nCut] sTagsPattern = sSearch[nCut+1:] else: sFlexPattern = sSearch sTagsPattern = "" for aRes in oSpellChecker.select(sFlexPattern, sTagsPattern): echo("\t".join(aRes)) |
︙ |