Overview
| Comment: | [graphspell][js] acronyms recognized by default | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | graphspell | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
39acddf4cc8c6c1b69656759926fa880 | 
| User & Date: | olr on 2019-02-09 20:09:23 | 
| Other Links: | manifest | tags | 
Context
| 
   2019-02-10 
 | ||
| 22:55 | [fr] faux positif check-in: 1912bf2d4c user: olr tags: trunk, fr | |
| 
   2019-02-09 
 | ||
| 20:27 | merge trunk check-in: aea2e8d9ee user: olr tags: comdic | |
| 20:09 | [graphspell][js] acronyms recognized by default check-in: 39acddf4cc user: olr tags: trunk, graphspell | |
| 19:13 | [graphspell] suggestion mechanism: case recognition for split suggestions check-in: bb3e601640 user: olr tags: trunk, graphspell | |
Changes
Modified graphspell-js/ibdawg.js from [1f3d80161a] to [eb5a5d5e73].
| ︙ | ︙ | |||
186 187 188 189 190 191 192  | 
                this._getArcs = this._getArcs3;
                this._writeNodes = this._writeNodes3;
                break;
            default:
                throw ValueError("# Error: unknown code: " + this.nCompressionMethod);
        }
        //console.log(this.getInfo());
 | |  | 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200  | 
                this._getArcs = this._getArcs3;
                this._writeNodes = this._writeNodes3;
                break;
            default:
                throw ValueError("# Error: unknown code: " + this.nCompressionMethod);
        }
        //console.log(this.getInfo());
        this.bAcronymValid = true;
        this.bNumAtLastValid = false;
    }
    getInfo () {
        return  `  Language: ${this.sLangName}   Lang code: ${this.sLangCode}   Dictionary name: ${this.sDicName}\n` +
                `  Compression method: ${this.nCompressionMethod}   Date: ${this.sDate}   Stemming: ${this.cStemming}FX\n` +
                `  Arcs values:  ${this.nArcVal} = ${this.nChar} characters,  ${this.nAff} affixes,  ${this.nTag} tags\n` +
 | 
| ︙ | ︙ |