Overview
Comment: | [fx] lexicographer: small UI update |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
af453db0ee23b5047d9c579d7febfeee |
User & Date: | olr on 2020-11-20 17:12:33 |
Other Links: | manifest | tags |
Context
2020-11-20
| ||
23:19 | [core][fr] corrections des messages d’erreur + tests sur les messages check-in: 482caf8b03 user: olr tags: trunk, fr, core | |
17:12 | [fx] lexicographer: small UI update check-in: af453db0ee user: olr tags: trunk, fx | |
17:11 | [graphspell] fix lexicographer check-in: 6587085132 user: olr tags: trunk, graphspell | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [88e5c8321b] to [21f2cf4731].
︙ | ︙ | |||
568 569 570 571 572 573 574 | if (!this.bOpened || this.bWorking) { return; } this.startWaitIcon(); this.clearLexicographer(); let sText = this.xLxgInput.innerText.replace(/\n/g, " "); //console.log(sText); | | > | | 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 | if (!this.bOpened || this.bWorking) { return; } this.startWaitIcon(); this.clearLexicographer(); let sText = this.xLxgInput.innerText.replace(/\n/g, " "); //console.log(sText); this.addMessageToLexicographer("Analyse grammaticale : les mots sont analysés autant que possible en fonction du contexte. (Cette fonctionnalité n’est pas terminée et demeure EXPÉRIMENTALE)."); oGrammalecteBackgroundPort.parseFull(sText, "__GrammalectePanel__"); } showParagraphAnalysis (oResult) { if (!this.bOpened || oResult === null) { return; } try { for (let oSentence of oResult.lSentences) { this.nLxgCount += 1; if (oSentence.sSentence.trim() !== "") { let xSentenceBlock = oGrammalecte.createNode("div", {className: "grammalecte_lxg_paragraph_sentence_block"}); xSentenceBlock.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_list_num", textContent: this.nLxgCount})); xSentenceBlock.appendChild(oGrammalecte.createNode("p", {className: "grammalecte_lxg_paragraph_sentence", textContent: oSentence.sSentence})); let xTokenList = oGrammalecte.createNode("div", {className: "grammalecte_lxg_list_of_tokens"}); for (let oToken of oSentence.lTokens) { if (oToken["sType"] != "INFO" && !oToken.hasOwnProperty("bMerged")) { //console.log(">", oToken["sValue"], oToken["sType"], oToken["bValidToken"]); if (oToken["sType"].startsWith("WORD") && !oToken["bValidToken"]) { oToken["sType"] = "UNKNOWN_WORD"; } xTokenList.appendChild(this._createTokenBlock(oToken)); } } xSentenceBlock.appendChild(xTokenList); this.xLxgResultZone.appendChild(xSentenceBlock); |
︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel_lxg.css from [5ca513def6] to [c02591ce6d].
︙ | ︙ | |||
128 129 130 131 132 133 134 | 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); } | | < < | > > > > > > > | 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | 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, div.grammalecte_lxg_token_WORD_ELIDED { background-color: hsla(150, 50%, 50%, 1); } div.grammalecte_lxg_token_UNKNOWN_WORD { background-color: hsla(0, 50%, 50%, 1); } div.grammalecte_lxg_token_NUM { background-color: hsla(180, 50%, 50%, 1); } div.grammalecte_lxg_token_COMPLEX { background-color: hsla(60, 50%, 50%, 1); } div.grammalecte_lxg_token_PUNC { background-color: hsla(210, 50%, 50%, 1); } div.grammalecte_lxg_token_SIGN { background-color: hsla(300, 50%, 50%, 1); } div.grammalecte_lxg_token_LINK { background-color: hsla(270, 50%, 50%, 1); } div.grammalecte_lxg_token_HTML, div.grammalecte_lxg_token_PSEUDO_HTML { background-color: hsla(60, 50%, 50%, 1); } |