Overview
Comment: | [core][graphspell][fx] update lexicographer |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | fx | graphspell | salxg |
Files: | files | file ages | folders |
SHA3-256: |
257257469aa4aa4e7c873293017f7e21 |
User & Date: | olr on 2020-08-25 16:03:35 |
Other Links: | branch diff | manifest | tags |
Context
2020-08-26
| ||
08:15 | [graphspell][py] lexicographer: function setLabelsOnToken() check-in: 26f692e745 user: olr tags: graphspell, salxg | |
2020-08-25
| ||
16:03 | [core][graphspell][fx] update lexicographer check-in: 257257469a user: olr tags: core, fx, graphspell, salxg | |
2020-08-23
| ||
06:26 | merge trunk check-in: b4b3569231 user: olr tags: salxg | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [a10785f066] to [c1f3aa973c].
︙ | ︙ | |||
229 230 231 232 233 234 235 236 237 238 239 240 241 242 | for (let oToken of this.lTokens0) { if (oToken["sType"] == "WORD") { oToken["bValidToken"] = gc_engine.oSpellChecker.isValidToken(oToken["sValue"]); } if (!oToken.hasOwnProperty("lMorph")) { oToken["lMorph"] = gc_engine.oSpellChecker.getMorph(oToken["sValue"]); } } lSentences.push({ "nStart": iStart, "nEnd": iEnd, "sSentence": this.sSentence0, "lTokens": this.lTokens0, "lGrammarErrors": Array.from(this.dSentenceError.values()) | > | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | for (let oToken of this.lTokens0) { if (oToken["sType"] == "WORD") { oToken["bValidToken"] = gc_engine.oSpellChecker.isValidToken(oToken["sValue"]); } if (!oToken.hasOwnProperty("lMorph")) { oToken["lMorph"] = gc_engine.oSpellChecker.getMorph(oToken["sValue"]); } gc_engine.oSpellChecker.setLabelsOnToken(oToken); } lSentences.push({ "nStart": iStart, "nEnd": iEnd, "sSentence": this.sSentence0, "lTokens": this.lTokens0, "lGrammarErrors": Array.from(this.dSentenceError.values()) |
︙ | ︙ |
Modified gc_core/py/lang_core/gc_engine.py from [dc7c0547ff] to [95514cb21c].
︙ | ︙ | |||
288 289 290 291 292 293 294 295 296 297 298 299 300 301 | self.parseText(self.sSentence, self.sSentence0, False, iStart, sCountry, dOpt, bShowRuleId, bDebug, bContext) if bFullInfo: for dToken in self.lTokens0: if dToken["sType"] == "WORD": dToken["bValidToken"] = _oSpellChecker.isValidToken(dToken["sValue"]) if "lMorph" not in dToken: dToken["lMorph"] = _oSpellChecker.getMorph(dToken["sValue"]) lSentences.append({ "nStart": iStart, "nEnd": iEnd, "sSentence": self.sSentence0, "lTokens": self.lTokens0, "lGrammarErrors": list(self.dSentenceError.values()) }) | > | 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | self.parseText(self.sSentence, self.sSentence0, False, iStart, sCountry, dOpt, bShowRuleId, bDebug, bContext) if bFullInfo: for dToken in self.lTokens0: if dToken["sType"] == "WORD": dToken["bValidToken"] = _oSpellChecker.isValidToken(dToken["sValue"]) if "lMorph" not in dToken: dToken["lMorph"] = _oSpellChecker.getMorph(dToken["sValue"]) _oSpellChecker.setLabelsOnToken(dToken) lSentences.append({ "nStart": iStart, "nEnd": iEnd, "sSentence": self.sSentence0, "lTokens": self.lTokens0, "lGrammarErrors": list(self.dSentenceError.values()) }) |
︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [14ecf7a831] to [c04a1ec88f].
︙ | ︙ | |||
597 598 599 600 601 602 603 | this.stopWaitIcon(); } _createTokenBlock2 (oToken) { let xTokenBlock = oGrammalecte.createNode("div", {className: "grammalecte_lxg_token_block"}); // token description xTokenBlock.appendChild(this._createTokenDescr2(oToken)); | < < < < < < < < < < < | > | | | | | | | | | > > > > > > > > > > > | 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 | this.stopWaitIcon(); } _createTokenBlock2 (oToken) { let xTokenBlock = oGrammalecte.createNode("div", {className: "grammalecte_lxg_token_block"}); // token description xTokenBlock.appendChild(this._createTokenDescr2(oToken)); return xTokenBlock; } _createTokenDescr2 (oToken) { try { let xTokenDescr = oGrammalecte.createNode("div", {className: "grammalecte_lxg_token_descr"}); xTokenDescr.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_token grammalecte_lxg_token_" + oToken.sType, textContent: oToken.sValue})); xTokenDescr.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_token_colon", textContent: ":"})); if (oToken.aLabels) { if (oToken.aLabels.length < 2) { // one morphology only xTokenDescr.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_morph_elem_inline", textContent: oToken.aLabels[0]})); } else { // several morphology let xMorphList = oGrammalecte.createNode("div", {className: "grammalecte_lxg_morph_list"}); for (let sLabel of oToken.aLabels) { xMorphList.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_morph_elem", textContent: "• " + sLabel})); } xTokenDescr.appendChild(xMorphList); } } else { xTokenDescr.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_morph_elem_inline", textContent: "étiquettes non décrites : [" + oToken.lMorph + "]" })); } // other labels description if (oToken.aOtherLabels) { let xSubBlock = oGrammalecte.createNode("div", {className: "grammalecte_lxg_token_subblock"}); for (let sLabel of oToken.aOtherLabels) { xSubBlock.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_other_tags", textContent: "• " + sLabel})); } xTokenDescr.appendChild(xSubBlock); } return xTokenDescr; } catch (e) { showError(e); } } |
︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel_lxg.css from [1a476d12b0] to [e1c944551d].
︙ | ︙ | |||
128 129 130 131 132 133 134 135 136 137 138 139 140 141 | font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif; color: hsl(0, 0%, 0%); } div.grammalecte_lxg_morph_elem { font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif; color: hsl(0, 0%, 0%); } div.grammalecte_lxg_token_LOC { background-color: hsla(150, 50%, 30%, 1); } div.grammalecte_lxg_token_WORD { background-color: hsla(150, 50%, 50%, 1); } div.grammalecte_lxg_token_WORD_ELIDED { | > > > > > > | 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif; color: hsl(0, 0%, 0%); } div.grammalecte_lxg_morph_elem { font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif; color: hsl(0, 0%, 0%); } div.grammalecte_lxg_other_tags { padding-left: 20px; font-family: "Trebuchet MS", "Fira Sans", "Ubuntu Condensed", "Liberation Sans", sans-serif; color: hsl(0, 0%, 50%); } div.grammalecte_lxg_token_LOC { background-color: hsla(150, 50%, 30%, 1); } div.grammalecte_lxg_token_WORD { background-color: hsla(150, 50%, 50%, 1); } div.grammalecte_lxg_token_WORD_ELIDED { |
︙ | ︙ |
Modified gc_lang/fr/webext/gce_worker.js from [b9ffc9c0b7] to [e86439bcff].
︙ | ︙ | |||
240 241 242 243 244 245 246 | function getListOfTokens (sText, oInfo={}) { // lexicographer try { sText = sText.replace(//g, "").normalize("NFC"); for (let sParagraph of text.getParagraph(sText)) { if (sParagraph.trim() !== "") { | | | 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | function getListOfTokens (sText, oInfo={}) { // lexicographer try { sText = sText.replace(//g, "").normalize("NFC"); for (let sParagraph of text.getParagraph(sText)) { if (sParagraph.trim() !== "") { postMessage(createResponse("getListOfTokens", { sParagraph: sParagraph, lTokens: lexgraph_fr.getListOfTokens(sParagraph, true) }, oInfo, false)); } } postMessage(createResponse("getListOfTokens", null, oInfo, true)); } catch (e) { console.error(e); postMessage(createResponse("getListOfTokens", createErrorResult(e, "no tokens"), oInfo, true, true)); |
︙ | ︙ |
Modified graphspell-js/lexgraph_fr.js from [b820c71513] to [e233698561].
︙ | ︙ | |||
162 163 164 165 166 167 168 | [':e', [" épicène", "épicène"]], [':m', [" masculin", "masculin"]], [':f', [" féminin", "féminin"]], [':s', [" singulier", "singulier"]], [':p', [" pluriel", "pluriel"]], [':i', [" invariable", "invariable"]], | | | | > > > | 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | [':e', [" épicène", "épicène"]], [':m', [" masculin", "masculin"]], [':f', [" féminin", "féminin"]], [':s', [" singulier", "singulier"]], [':p', [" pluriel", "pluriel"]], [':i', [" invariable", "invariable"]], [':V1_', [" verbe (1ᵉʳ gr.),", "Verbe du 1ᵉʳ groupe"]], [':V2_', [" verbe (2ᵉ gr.),", "Verbe du 2ᵉ groupe"]], [':V3_', [" verbe (3ᵉ gr.),", "Verbe du 3ᵉ groupe"]], [':V1e', [" verbe (1ᵉʳ gr.),", "Verbe du 1ᵉʳ groupe"]], [':V2e', [" verbe (2ᵉ gr.),", "Verbe du 2ᵉ groupe"]], [':V3e', [" verbe (3ᵉ gr.),", "Verbe du 3ᵉ groupe"]], [':V0e', [" verbe,", "Verbe auxiliaire être"]], [':V0a', [" verbe,", "Verbe auxiliaire avoir"]], [':Y', [" infinitif,", "infinitif"]], [':P', [" participe présent,", "participe présent"]], [':Q', [" participe passé,", "participe passé"]], [':Ip', [" présent,", "indicatif présent"]], |
︙ | ︙ | |||
275 276 277 278 279 280 281 | ['i', " intransitive"], ['n', " transitive indirecte"], ['t', " transitive directe"], ['p', " pronominale"], ['m', " impersonnelle"], ]), | | | | | | | | | | | | | | | < < | | | > | | > > > > | | | | > | | | | | | | | | | | > > > > > > > > > > > > > > > > > > > > > | | | | | | | | < < | 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 313 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 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | ['i', " intransitive"], ['n', " transitive indirecte"], ['t', " transitive directe"], ['p', " pronominale"], ['m', " impersonnelle"], ]), dValues: new Map([ ['d’', "(de), préposition ou déterminant épicène invariable"], ['l’', "(le/la), déterminant ou pronom personnel objet, masculin/féminin singulier"], ['j’', "(je), pronom personnel sujet, 1ʳᵉ pers., épicène singulier"], ['m’', "(me), pronom personnel objet, 1ʳᵉ pers., épicène singulier"], ['t’', "(te), pronom personnel objet, 2ᵉ pers., épicène singulier"], ['s’', "(se), pronom personnel objet, 3ᵉ pers., épicène singulier/pluriel"], ['n’', "(ne), adverbe de négation"], ['c’', "(ce), pronom démonstratif, masculin singulier/pluriel"], ['ç’', "(ça), pronom démonstratif, masculin singulier"], ['qu', "(que), conjonction de subordination"], ['lorsqu’', "(lorsque), conjonction de subordination"], ['puisqu’', "(lorsque), conjonction de subordination"], ['quoiqu’', "(quoique), conjonction de subordination"], ['jusqu’', "(jusque), préposition"], ['-je', " pronom personnel sujet, 1ʳᵉ pers. sing."], ['-tu', " pronom personnel sujet, 2ᵉ pers. sing."], ['-il', " pronom personnel sujet, 3ᵉ pers. masc. sing."], ['-iel', " pronom personnel sujet, 3ᵉ pers. sing."], ['-on', " pronom personnel sujet, 3ᵉ pers. sing. ou plur."], ['-elle', " pronom personnel sujet, 3ᵉ pers. fém. sing."], ['-t-il', " “t” euphonique + pronom personnel sujet, 3ᵉ pers. masc. sing."], ['-t-on', " “t” euphonique + pronom personnel sujet, 3ᵉ pers. sing. ou plur."], ['-t-elle', " “t” euphonique + pronom personnel sujet, 3ᵉ pers. fém. sing."], ['-t-iel', " “t” euphonique + pronom personnel sujet, 3ᵉ pers. sing."], ['-nous', " pronom personnel sujet/objet, 1ʳᵉ pers. plur. ou COI (à nous), plur."], ['-vous', " pronom personnel sujet/objet, 2ᵉ pers. plur. ou COI (à vous), plur."], ['-ils', " pronom personnel sujet, 3ᵉ pers. masc. plur."], ['-elles', " pronom personnel sujet, 3ᵉ pers. masc. plur."], ['-iels', " pronom personnel sujet, 3ᵉ pers. plur."], ["-là", " particule démonstrative (là)"], ["-ci", " particule démonstrative (ci)"], ['-le', " COD, masc. sing."], ['-la', " COD, fém. sing."], ['-les', " COD, plur."], ['-moi', " COI (à moi), sing."], ['-toi', " COI (à toi), sing."], ['-lui', " COI (à lui ou à elle), sing."], ['-nous2', " COI (à nous), plur."], ['-vous2', " COI (à vous), plur."], ['-leur', " COI (à eux ou à elles), plur."], ['-le-moi', " COD, masc. sing. + COI (à moi), sing."], ['-le-toi', " COD, masc. sing. + COI (à toi), sing."], ['-le-lui', " COD, masc. sing. + COI (à lui ou à elle), sing."], ['-le-nous', " COD, masc. sing. + COI (à nous), plur."], ['-le-vous', " COD, masc. sing. + COI (à vous), plur."], ['-le-leur', " COD, masc. sing. + COI (à eux ou à elles), plur."], ['-la-moi', " COD, fém. sing. + COI (à moi), sing."], ['-la-toi', " COD, fém. sing. + COI (à toi), sing."], ['-la-lui', " COD, fém. sing. + COI (à lui ou à elle), sing."], ['-la-nous', " COD, fém. sing. + COI (à nous), plur."], ['-la-vous', " COD, fém. sing. + COI (à vous), plur."], ['-la-leur', " COD, fém. sing. + COI (à eux ou à elles), plur."], ['-les-moi', " COD, plur. + COI (à moi), sing."], ['-les-toi', " COD, plur. + COI (à toi), sing."], ['-les-lui', " COD, plur. + COI (à lui ou à elle), sing."], ['-les-nous', " COD, plur. + COI (à nous), plur."], ['-les-vous', " COD, plur. + COI (à vous), plur."], ['-les-leur', " COD, plur. + COI (à eux ou à elles), plur."], ['-y', " pronom adverbial"], ["-m’y", " (me) pronom personnel objet + (y) pronom adverbial"], ["-t’y", " (te) pronom personnel objet + (y) pronom adverbial"], ["-s’y", " (se) pronom personnel objet + (y) pronom adverbial"], ['-en', " pronom adverbial"], ["-m’en", " (me) pronom personnel objet + (en) pronom adverbial"], ["-t’en", " (te) pronom personnel objet + (en) pronom adverbial"], ["-s’en", " (se) pronom personnel objet + (en) pronom adverbial"], ['.', "point"], ['·', "point médian"], ['…', "points de suspension"], [':', "deux-points"], [';', "point-virgule"], [',', "virgule"], ['?', "point d’interrogation"], |
︙ | ︙ | |||
371 372 373 374 375 376 377 | oSpellChecker: null, oTokenizer: null, oLocGraph: null, _zPartDemForm: new RegExp("([a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ]+)-(là|ci)$", "i"), _aPartDemExceptList: new Set(["celui", "celle", "ceux", "celles", "de", "jusque", "par", "marie-couche-toi"]), | | | | 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | oSpellChecker: null, oTokenizer: null, oLocGraph: null, _zPartDemForm: new RegExp("([a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ]+)-(là|ci)$", "i"), _aPartDemExceptList: new Set(["celui", "celle", "ceux", "celles", "de", "jusque", "par", "marie-couche-toi"]), _zInterroVerb: new RegExp("([a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ]+)(-(?:t-(?:ie?l|elle|on)|je|tu|ie?ls?|elles?|on|[nv]ous))$", "i"), _zImperatifVerb: new RegExp("([a-zA-Zà-ö0-9À-Öø-ÿØ-ßĀ-ʯ]+)(-(?:l(?:es?|a)-(?:moi|toi|lui|[nv]ous|leur)|y|en|[mts][’'](?:y|en)|les?|la|[mt]oi|leur|lui))$", "i"), _zTag: new RegExp("[:;/][a-zA-Z0-9ÑÂĴĈŔÔṼŴ!][^:;/]*", "g"), load: function (oSpellChecker, oTokenizer, oLocGraph) { this.oSpellChecker = oSpellChecker; this.oTokenizer = oTokenizer; this.oLocGraph = JSON.parse(oLocGraph); |
︙ | ︙ | |||
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 | if (m) { sWord = m[1]; sSuffix = m[2]; } // split word in 3 parts: prefix, root, suffix return [sPrefix, sWord, sSuffix]; }, getInfoForToken: function (oToken) { // Token: .sType, .sValue, .nStart, .nEnd // return a object {sType, sValue, aLabel} let m = null; try { switch (oToken.sType) { case 'PUNC': case 'SIGN': return { sType: oToken.sType, sValue: oToken.sValue, | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | if (m) { sWord = m[1]; sSuffix = m[2]; } // split word in 3 parts: prefix, root, suffix return [sPrefix, sWord, sSuffix]; }, analyze: function (sWord) { // return meaning of <sWord> if found else an empty string sWord = sWord.toLowerCase(); if (this.dValues.has(sWord)) { return this.dValues.get(sWord); } return ""; }, readableMorph: function (sMorph) { let sRes = ""; sMorph = sMorph.replace(/:V([0-3][ea_])[itpqnmr_eaxz]+/, ":V$1"); let m; while ((m = this._zTag.exec(sMorph)) !== null) { if (this.dTag.has(m[0])) { sRes += this.dTag.get(m[0])[0]; } else { sRes += " [" + m[0] + "]?"; } } if (sRes.startsWith(" verbe") && !sRes.includes("infinitif")) { sRes += " [" + sMorph.slice(1, sMorph.indexOf("/")) + "]"; } if (!sRes) { return " [" + sMorph + "]: étiquettes inconnues"; } return sRes.gl_trimRight(","); }, setLabelsOnToken (oToken) { // Token: .sType, .sValue, .nStart, .nEnd, .lMorph let m = null; try { switch (oToken.sType) { case 'PUNC': case 'SIGN': oToken["aLabels"] = [this.dValues.gl_get(oToken.sValue, "signe de ponctuation divers")]; break; case 'NUM': oToken["aLabels"] = ["nombre"]; break; case 'LINK': oToken["aLabels"] = ["hyperlien"]; break; case 'TAG': oToken["aLabels"] = ["étiquette (hashtag)"]; break; case 'HTML': oToken["aLabels"] = ["balise HTML"]; break; case 'PSEUDOHTML': oToken["aLabels"] = ["balise pseudo-HTML"]; break; case 'HTMLENTITY': oToken["aLabels"] = ["entité caractère XML/HTML"]; break; case 'HOUR': oToken["aLabels"] = ["heure"]; break; case 'WORD_ELIDED': oToken["aLabels"] = [this.dValues.gl_get(oToken.sValue, "préfixe élidé inconnu")]; break; case 'WORD_ORDINAL': oToken["aLabels"] = ["nombre ordinal"]; break; case 'FOLDERUNIX': oToken["aLabels"] = ["dossier UNIX (et dérivés)"]; break; case 'FOLDERWIN': oToken["aLabels"] = ["dossier Windows"]; break; case 'WORD_ACRONYM': oToken["aLabels"] = ["sigle ou acronyme"]; break; case 'WORD': if (oToken.hasOwnProperty("lMorph") && oToken["lMorph"].length > 0) { // with morphology oToken["aLabels"] = []; for (let sMorph of oToken["lMorph"]) { oToken["aLabels"].push(this.readableMorph(sMorph)); } if (oToken.hasOwnProperty("sTags")) { let aTags = []; for (let sTag of oToken["sTags"]) { if (this.dValues.has(sTag)) { aTags.push(this.dValues.get(sTag)) } } if (aTags.length > 0) { oToken["aOtherLabels"] = aTags; } } } else { // no morphology, guessing if (oToken.sValue.gl_count("-") > 4) { oToken["aLabels"] = ["élément complexe indéterminé"]; } else if (m = this._zPartDemForm.exec(oToken.sValue)) { // mots avec particules démonstratives oToken["aLabels"] = ["mot avec particule démonstrative"]; } else if (m = this._zImperatifVerb.exec(oToken.sValue)) { // formes interrogatives oToken["aLabels"] = ["forme verbale impérative"]; } else if (m = this._zInterroVerb.exec(oToken.sValue)) { // formes interrogatives oToken["aLabels"] = ["forme verbale interrogative"]; } } break; default: oToken["aLabels"] = ["token de nature inconnue"]; } } catch (e) { console.error(e); } return null; }, getInfoForToken: function (oToken) { // Token: .sType, .sValue, .nStart, .nEnd // return a object {sType, sValue, aLabel} let m = null; try { switch (oToken.sType) { case 'PUNC': case 'SIGN': return { sType: oToken.sType, sValue: oToken.sValue, aLabel: [this.dValues.gl_get(oToken.sValue, "caractère indéterminé")] }; break; case 'NUM': return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["nombre"] |
︙ | ︙ | |||
466 467 468 469 470 471 472 | return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["heure"] }; break; case 'WORD_ELIDED': | < | | 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["heure"] }; break; case 'WORD_ELIDED': return { sType: oToken.sType, sValue: oToken.sValue, aLabel: [this.dValues.gl_get(oToken.sValue.toLowerCase(), "préfixe élidé inconnu")] }; break; case 'WORD_ORDINAL': return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["nombre ordinal"] |
︙ | ︙ | |||
522 523 524 525 526 527 528 | }; } return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["mot avec particule démonstrative"], aSubElem: [ | | | | | | | | 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 | }; } return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["mot avec particule démonstrative"], aSubElem: [ { sType: oToken.sType, sValue: m[1], aLabel: this._getMorph(m[1]) }, { sType: oToken.sType, sValue: m[2], aLabel: [ this._formatSuffix(m[2]) ] } ] }; } else if (m = this._zImperatifVerb.exec(oToken.sValue)) { // formes interrogatives return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["forme verbale impérative"], aSubElem: [ { sType: oToken.sType, sValue: m[1], aLabel: this._getMorph(m[1]) }, { sType: oToken.sType, sValue: m[2], aLabel: [ this._formatSuffix(m[2]) ] } ] }; } else if (m = this._zInterroVerb.exec(oToken.sValue)) { // formes interrogatives return { sType: oToken.sType, sValue: oToken.sValue, aLabel: ["forme verbale interrogative"], aSubElem: [ { sType: oToken.sType, sValue: m[1], aLabel: this._getMorph(m[1]) }, { sType: oToken.sType, sValue: m[2], aLabel: [ this._formatSuffix(m[2]) ] } ] }; } else if (this.oSpellChecker.isValidToken(oToken.sValue)) { return { sType: oToken.sType, sValue: oToken.sValue, aLabel: this._getMorph(oToken.sValue) |
︙ | ︙ | |||
578 579 580 581 582 583 584 | } return null; }, _getMorph (sWord) { let aElem = []; for (let s of this.oSpellChecker.getMorph(sWord)) { | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < > | | < < < < | < < < < < | < < | < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 | } return null; }, _getMorph (sWord) { let aElem = []; for (let s of this.oSpellChecker.getMorph(sWord)) { if (s.includes(":")) aElem.push(this.readableMorph(s)); } if (aElem.length == 0) { aElem.push("mot inconnu du dictionnaire"); } return aElem; }, _formatSuffix (sSuffix) { sSuffix = sSuffix.replace(/['’ʼ‘‛´`′‵՚ꞌꞋ]/g, "’").toLowerCase(); if (this.dValues.has(sSuffix)) { return this.dValues.get(sSuffix); } return " suffixe inconnu"; }, getListOfTokens (sText, bInfo=true) { let aElem = []; if (sText !== "") { for (let oToken of this.oTokenizer.genTokens(sText)) { if (bInfo) { let aRes = this.getInfoForToken(oToken); if (aRes) { aElem.push(aRes); } } else if (oToken.sType !== "SPACE") { aElem.push(oToken); } } } return aElem; }, // Other functions filterSugg: function (aSugg) { return aSugg.filter((sSugg) => { return !sSugg.endsWith("è") && !sSugg.endsWith("È"); }); } } if (typeof(exports) !== 'undefined') { exports.lexgraph_fr = lexgraph_fr; } |
Modified graphspell-js/spellchecker.js from [e42b82b880] to [851f1e59f5].
︙ | ︙ | |||
167 168 169 170 171 172 173 174 175 176 177 178 179 180 | readableMorph (sMorph) { if (!this.lexicographer) { return []; } return this.lexicographer.formatTags(sMorph); } // Storage activateStorage () { this.bStorage = true; } | > > > > > > > > | 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | readableMorph (sMorph) { if (!this.lexicographer) { return []; } return this.lexicographer.formatTags(sMorph); } setLabelsOnToken (oToken) { if (!this.lexicographer) { return; } this.lexicographer.setLabelsOnToken(oToken); } // Storage activateStorage () { this.bStorage = true; } |
︙ | ︙ |
Modified graphspell/lexgraph_fr.py from [06640299ad] to [2f65ed2c97].
1 2 3 4 5 6 7 8 9 10 11 | """ Lexicographer for the French language """ # Note: # This mode must contains at least: # <dSugg> : a dictionary for default suggestions. # <bLexicographer> : a boolean False # if the boolean is True, 4 functions are required: # split(sWord) -> returns a list of string (that will be analyzed) # analyze(sWord) -> returns a string with the meaning of word | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """ Lexicographer for the French language """ # Note: # This mode must contains at least: # <dSugg> : a dictionary for default suggestions. # <bLexicographer> : a boolean False # if the boolean is True, 4 functions are required: # split(sWord) -> returns a list of string (that will be analyzed) # analyze(sWord) -> returns a string with the meaning of word # readableMorph(sMorph) -> returns a string with the meaning of tags # filterSugg(aWord) -> returns a filtered list of suggestions import re #### Suggestions |
︙ | ︙ | |||
168 169 170 171 172 173 174 | ':e': (" épicène", "épicène"), ':m': (" masculin", "masculin"), ':f': (" féminin", "féminin"), ':s': (" singulier", "singulier"), ':p': (" pluriel", "pluriel"), ':i': (" invariable", "invariable"), | | | | > > > | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | ':e': (" épicène", "épicène"), ':m': (" masculin", "masculin"), ':f': (" féminin", "féminin"), ':s': (" singulier", "singulier"), ':p': (" pluriel", "pluriel"), ':i': (" invariable", "invariable"), ':V1_': (" verbe (1ᵉʳ gr.),", "Verbe du 1ᵉʳ groupe"), ':V2_': (" verbe (2ᵉ gr.),", "Verbe du 2ᵉ groupe"), ':V3_': (" verbe (3ᵉ gr.),", "Verbe du 3ᵉ groupe"), ':V1e': (" verbe (1ᵉʳ gr.),", "Verbe du 1ᵉʳ groupe"), ':V2e': (" verbe (2ᵉ gr.),", "Verbe du 2ᵉ groupe"), ':V3e': (" verbe (3ᵉ gr.),", "Verbe du 3ᵉ groupe"), ':V0e': (" verbe,", "Verbe auxiliaire être"), ':V0a': (" verbe,", "Verbe auxiliaire avoir"), ':Y': (" infinitif,", "infinitif"), ':P': (" participe présent,", "participe présent"), ':Q': (" participe passé,", "participe passé"), ':Ip': (" présent,", "indicatif présent"), |
︙ | ︙ | |||
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | 'puisqu’': "(puisque), conjonction de subordination", 'quoiqu’': "(quoique), conjonction de subordination", 'jusqu’': "(jusque), préposition", '-je': " pronom personnel sujet, 1ʳᵉ pers. sing.", '-tu': " pronom personnel sujet, 2ᵉ pers. sing.", '-il': " pronom personnel sujet, 3ᵉ pers. masc. sing.", '-on': " pronom personnel sujet, 3ᵉ pers. sing. ou plur.", '-elle': " pronom personnel sujet, 3ᵉ pers. fém. sing.", '-t-il': " “t” euphonique + pronom personnel sujet, 3ᵉ pers. masc. sing.", '-t-on': " “t” euphonique + pronom personnel sujet, 3ᵉ pers. sing. ou plur.", '-t-elle': " “t” euphonique + pronom personnel sujet, 3ᵉ pers. fém. sing.", '-nous': " pronom personnel sujet/objet, 1ʳᵉ pers. plur. ou COI (à nous), plur.", '-vous': " pronom personnel sujet/objet, 2ᵉ pers. plur. ou COI (à vous), plur.", '-ils': " pronom personnel sujet, 3ᵉ pers. masc. plur.", '-elles': " pronom personnel sujet, 3ᵉ pers. masc. plur.", | > > > | | | 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 | 'puisqu’': "(puisque), conjonction de subordination", 'quoiqu’': "(quoique), conjonction de subordination", 'jusqu’': "(jusque), préposition", '-je': " pronom personnel sujet, 1ʳᵉ pers. sing.", '-tu': " pronom personnel sujet, 2ᵉ pers. sing.", '-il': " pronom personnel sujet, 3ᵉ pers. masc. sing.", '-iel': " pronom personnel sujet, 3ᵉ pers. sing.", '-on': " pronom personnel sujet, 3ᵉ pers. sing. ou plur.", '-elle': " pronom personnel sujet, 3ᵉ pers. fém. sing.", '-t-il': " “t” euphonique + pronom personnel sujet, 3ᵉ pers. masc. sing.", '-t-on': " “t” euphonique + pronom personnel sujet, 3ᵉ pers. sing. ou plur.", '-t-elle': " “t” euphonique + pronom personnel sujet, 3ᵉ pers. fém. sing.", '-t-iel': " “t” euphonique + pronom personnel sujet, 3ᵉ pers. sing.", '-nous': " pronom personnel sujet/objet, 1ʳᵉ pers. plur. ou COI (à nous), plur.", '-vous': " pronom personnel sujet/objet, 2ᵉ pers. plur. ou COI (à vous), plur.", '-ils': " pronom personnel sujet, 3ᵉ pers. masc. plur.", '-elles': " pronom personnel sujet, 3ᵉ pers. masc. plur.", '-iels': " pronom personnel sujet, 3ᵉ pers. plur.", "-là": " particule démonstrative (là)", "-ci": " particule démonstrative (ci)", '-le': " COD, masc. sing.", '-la': " COD, fém. sing.", '-les': " COD, plur.", '-moi': " COI (à moi), sing.", '-toi': " COI (à toi), sing.", |
︙ | ︙ | |||
322 323 324 325 326 327 328 329 330 331 332 333 334 335 | "-t’y": " (te) pronom personnel objet + (y) pronom adverbial", "-s’y": " (se) pronom personnel objet + (y) pronom adverbial", '-en': " pronom adverbial", "-m’en": " (me) pronom personnel objet + (en) pronom adverbial", "-t’en": " (te) pronom personnel objet + (en) pronom adverbial", "-s’en": " (se) pronom personnel objet + (en) pronom adverbial", } _zElidedPrefix = re.compile("(?i)^([ldmtsnjcç]|lorsqu|presqu|jusqu|puisqu|quoiqu|quelqu|qu)[’'‘`ʼ]([\\w-]+)") _zCompoundWord = re.compile("(?i)(\\w+)(-(?:(?:les?|la)-(?:moi|toi|lui|[nv]ous|leur)|t-(?:il|elle|on)|y|en|[mts]’(?:y|en)|les?|l[aà]|[mt]oi|leur|lui|je|tu|ils?|elles?|on|[nv]ous|ce))$") _zTag = re.compile("[:;/][\\w*][^:;/]*") | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | "-t’y": " (te) pronom personnel objet + (y) pronom adverbial", "-s’y": " (se) pronom personnel objet + (y) pronom adverbial", '-en': " pronom adverbial", "-m’en": " (me) pronom personnel objet + (en) pronom adverbial", "-t’en": " (te) pronom personnel objet + (en) pronom adverbial", "-s’en": " (se) pronom personnel objet + (en) pronom adverbial", '.': "point", '·': "point médian", '…': "points de suspension", ':': "deux-points", ';': "point-virgule", ',': "virgule", '?': "point d’interrogation", '!': "point d’exclamation", '(': "parenthèse ouvrante", ')': "parenthèse fermante", '[': "crochet ouvrant", ']': "crochet fermant", '{': "accolade ouvrante", '}': "accolade fermante", '-': "tiret", '—': "tiret cadratin", '–': "tiret demi-cadratin", '«': "guillemet ouvrant (chevrons)", '»': "guillemet fermant (chevrons)", '“': "guillemet ouvrant double", '”': "guillemet fermant double", '‘': "guillemet ouvrant", '’': "guillemet fermant", '"': "guillemets droits (déconseillé en typographie)", '/': "signe de la division", '+': "signe de l’addition", '*': "signe de la multiplication", '=': "signe de l’égalité", '<': "inférieur à", '>': "supérieur à", '⩽': "inférieur ou égal à", '⩾': "supérieur ou égal à", '%': "signe de pourcentage", '‰': "signe pour mille" } _zElidedPrefix = re.compile("(?i)^([ldmtsnjcç]|lorsqu|presqu|jusqu|puisqu|quoiqu|quelqu|qu)[’'‘`ʼ]([\\w-]+)") _zCompoundWord = re.compile("(?i)(\\w+)(-(?:(?:les?|la)-(?:moi|toi|lui|[nv]ous|leur)|t-(?:il|elle|on)|y|en|[mts]’(?:y|en)|les?|l[aà]|[mt]oi|leur|lui|je|tu|ils?|elles?|on|[nv]ous|ce))$") _zTag = re.compile("[:;/][\\w*][^:;/]*") |
︙ | ︙ | |||
354 355 356 357 358 359 360 | "return meaning of <sWord> if found else an empty string" sWord = sWord.lower() if sWord in _dValues: return _dValues[sWord] return "" | | | < | > | > > | > > | 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | "return meaning of <sWord> if found else an empty string" sWord = sWord.lower() if sWord in _dValues: return _dValues[sWord] return "" def readableMorph (sMorph): "returns string: readable tags" sRes = "" sMorph = re.sub("(?<=V[0123][ea_])[itpqnmr_eaxz]+", "", sMorph) for m in _zTag.finditer(sMorph): if m.group(0) in _dTAGS: sRes += _dTAGS[m.group(0)][0] else: sRes += " [" + m.group(0) + "]?" if sRes.startswith(" verbe") and not sRes.endswith("infinitif"): sRes += " [" + sMorph[1:sMorph.find("/")] +"]" if not sRes: return " [" + sMorph + "]: étiquettes inconnues" return sRes.rstrip(",") # Other functions def filterSugg (aSugg): "exclude suggestions" return filter(lambda sSugg: not sSugg.endswith(("è", "È")), aSugg) |
Modified graphspell/spellchecker.py from [ca24473f67] to [a1f53ef986].
︙ | ︙ | |||
118 119 120 121 122 123 124 | for sElem in self.lexicographer.split(sWord): if sElem: lMorph = self.getMorph(sElem) sLex = self.lexicographer.analyze(sElem) if sLex: aRes = [ (" | ".join(lMorph), sLex) ] else: | | | | > > > > > | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | for sElem in self.lexicographer.split(sWord): if sElem: lMorph = self.getMorph(sElem) sLex = self.lexicographer.analyze(sElem) if sLex: aRes = [ (" | ".join(lMorph), sLex) ] else: aRes = [ (sMorph, self.lexicographer.readableMorph(sMorph)) for sMorph in lMorph ] if aRes: lWordAndMorph.append((sElem, aRes)) return lWordAndMorph def readableMorph (self, sMorph): if not self.lexicographer: return "" return self.lexicographer.readableMorph(sMorph) def setLabelsOnToken (dToken): if not self.lexicographer: return self.lexicographer.setLabelsOnToken(dToken) # Storage def activateStorage (self): "store all lemmas and morphologies retrieved from the word graph" self.bStorage = True |
︙ | ︙ |