Overview
| Comment: | [core][js] ibdawg initialization |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | core | webext2 |
| Files: | files | file ages | folders |
| SHA3-256: |
3d1c080fa86bed89f530efe7fa63d18b |
| User & Date: | olr on 2017-08-03 10:04:50 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-03
| ||
| 10:12 | [core][js] don’t use const for modules as objects: const don’t allow to be “redefined” even in a condition which wouldn’t allow redefinition check-in: dfc3a68fbf user: olr tags: core, warning, webext2 | |
| 10:04 | [core][js] ibdawg initialization check-in: 3d1c080fa8 user: olr tags: core, webext2 | |
| 09:10 | [core][js] default properties in conj, phonet and mfsp + export all properties of mfsp check-in: ec97664b24 user: olr tags: core, webext2 | |
Changes
Modified gc_core/js/ibdawg.js from [81ed21aafb] to [d79dcb6b99].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + + - + - - | //// IBDAWG "use strict"; |
| ︙ |
Modified gc_core/js/lang_core/gc_engine.js from [57156dedce] to [3c4bc79cac].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - - + + |
// Grammar checker engine
${string}
${regex}
${map}
|
| ︙ | |||
308 309 310 311 312 313 314 | 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | - + |
return gc_rules.lParagraphRules;
},
//// Initialization
load: function (sContext="JavaScript") {
try {
|
| ︙ |
Modified gc_core/js/str_transform.js from [33525a019a] to [9b41fc7a14].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | //// STRING TRANSFORMATION // Note: 48 is the ASCII code for "0" |
| ︙ |
Modified gc_lang/fr/webext/gce_worker.js from [19de02aa0c] to [ac8c2849c5].
| ︙ | |||
26 27 28 29 30 31 32 33 34 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | + + + + - |
helpers.echo(conj.getConj("devenir", ":E", ":2s"));
helpers.echo(mfsp.getMasForm("emmerdeuse", true));
helpers.echo(mfsp.getMasForm("pointilleuse", false));
helpers.echo(phonet.getSimil("est"));
let oDict = new IBDAWG("French.json");
helpers.echo(oDict.getMorph("merde"));
let oTokenizer = null;
|
| ︙ |
Modified gc_lang/fr/webext/manifest.json from [ce6a6e89b7] to [500a80f533].
| ︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | + + |
"default_popup": "panel/main.html",
"default_title": "Grammalecte [fr]",
"browser_style": false
},
"background": {
"scripts": [
"grammalecte/helpers.js",
"grammalecte/str_transform.js",
"grammalecte/ibdawg.js",
"grammalecte/text.js",
"grammalecte/tokenizer.js",
"grammalecte/fr/conj.js",
"grammalecte/fr/mfsp.js",
"grammalecte/fr/phonet.js",
"gce_worker.js"
]
|
| ︙ |