Overview
Comment: | [graphspell] memorize state: almost useless and buggy -> deleted |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | graphspell |
Files: | files | file ages | folders |
SHA3-256: |
c365cd01b2cf8ffe713986beb65e1974 |
User & Date: | olr on 2018-04-12 09:53:12 |
Other Links: | manifest | tags |
Context
2018-04-12
| ||
10:26 | v0.6.3.2 check-in: 7e62d34f8d user: olr tags: trunk, v0.6.3.2 | |
09:53 | [graphspell] memorize state: almost useless and buggy -> deleted check-in: c365cd01b2 user: olr tags: trunk, graphspell | |
2018-04-11
| ||
10:28 | [lo] ui for choosing spellchecker suggestion engine check-in: b093fd512b user: olr tags: trunk, lo | |
Changes
Modified graphspell-js/ibdawg.js from [09222b990d] to [d566558346].
︙ | |||
172 173 174 175 176 177 178 | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | - - | break; default: throw ValueError("# Error: unknown code: " + this.nCompressionMethod); } //console.log(this.getInfo()); this.bOptNumSigle = true; this.bOptNumAtLast = false; |
︙ | |||
316 317 318 319 320 321 322 | 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | - - - - - - - - | if (sWord.gl_isTitle()) { this._suggest(oSuggResult, sWord.toLowerCase(), nMaxSwitch, nMaxDel, nMaxHardRepl); } else if (sWord.gl_isLowerCase()) { this._suggest(oSuggResult, sWord.gl_toCapitalize(), nMaxSwitch, nMaxDel, nMaxHardRepl); } let aSugg = oSuggResult.getSuggestions(nSuggLimit); |
︙ |
Modified graphspell/ibdawg.py from [7087758a69] to [e811d4895f].
︙ | |||
134 135 136 137 138 139 140 | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | - - | self._writeNodes = self._writeNodes3 else: raise ValueError(" # Error: unknown code: {}".format(self.nCompressionMethod)) self.bOptNumSigle = False self.bOptNumAtLast = False |
︙ | |||
291 292 293 294 295 296 297 | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | - - - - - - | oSuggResult = SuggResult(sWord) self._suggest(oSuggResult, sWord, nMaxSwitch=nMaxSwitch, nMaxDel=nMaxDel, nMaxHardRepl=nMaxHardRepl) if sWord.istitle(): self._suggest(oSuggResult, sWord.lower(), nMaxSwitch=nMaxSwitch, nMaxDel=nMaxDel, nMaxHardRepl=nMaxHardRepl) elif sWord.islower(): self._suggest(oSuggResult, sWord.title(), nMaxSwitch=nMaxSwitch, nMaxDel=nMaxDel, nMaxHardRepl=nMaxHardRepl) aSugg = oSuggResult.getSuggestions(nSuggLimit) |
︙ |