Comment: | [fx] panel content (lxg and gc), ui |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
216414b0facb154556371471f8ad2f1f |
User & Date: | olr on 2017-08-14 17:43:10 |
Other Links: | branch diff | manifest | tags |
2017-08-15
| ||
06:38 | [fx] rename modify_page.js -> content_modifier.js check-in: 4ac6861246 user: olr tags: fx, webext2 | |
2017-08-14
| ||
17:43 | [fx] panel content (lxg and gc), ui check-in: 216414b0fa user: olr tags: fx, webext2 | |
2017-08-13
| ||
14:14 | [fx] code cleaning and clarification check-in: ad58d80cb5 user: olr tags: fx, webext2 | |
Modified gc_lang/fr/config.ini from [4666c13388] to [00a2e90fec].
1 2 3 4 5 6 7 | [args] lang = fr lang_name = French locales = fr_FR fr_BE fr_CA fr_CH fr_LU fr_MC fr_BF fr_CI fr_SN fr_ML fr_NE fr_TG fr_BJ country_default = FR name = Grammalecte implname = grammalecte | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [args] lang = fr lang_name = French locales = fr_FR fr_BE fr_CA fr_CH fr_LU fr_MC fr_BF fr_CI fr_SN fr_ML fr_NE fr_TG fr_BJ country_default = FR name = Grammalecte implname = grammalecte version = 0.6 author = Olivier R. provider = Dicollecte link = http://grammalecte.net description = Correcteur grammatical pour le français. extras = README_fr.txt logo = logo.png |
︙ | ︙ |
Modified gc_lang/fr/webext/background.js from [bc6f49ada9] to [d4a9648f0c].
︙ | ︙ | |||
48 49 50 51 52 53 54 | browser.runtime.sendMessage({sCommand: "fulltests_result", sResult: result}); break; case "getOptions": case "getDefaultOptions": case "setOptions": case "setOption": console.log("OPTIONS"); | | > > > > > | > | | < | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | browser.runtime.sendMessage({sCommand: "fulltests_result", sResult: result}); break; case "getOptions": case "getDefaultOptions": case "setOptions": case "setOption": console.log("OPTIONS"); break; case "getListOfTokens": console.log("TOKENS"); if (typeof(dInfo.iReturnPort) === "number") { let xPort = aConnx[dInfo.iReturnPort]; xPort.postMessage(e.data); } else { console.log("[background] don’t know where to send results"); console.log(e.data); } /*let xLxgTab = browser.tabs.create({ url: browser.extension.getURL("panel/lexicographer.html"), }); xLxgTab.then(onCreated, onError);*/ break; default: console.log("Unknown command: " + sActionDone); console.log(result); } } catch (e) { |
︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/content_panels.css from [6a8ccbec0a] to [a6727e0b7f].
︙ | ︙ | |||
25 26 27 28 29 30 31 | cursor: pointer; } .grammalecte_wrapper_button:hover { background-color: hsl(210, 50%, 55%); box-shadow: 0 0 1px 1px hsl(210, 50%, 20%); color: hsl(210, 0%, 100%); } | > > > > > | | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | cursor: pointer; } .grammalecte_wrapper_button:hover { background-color: hsl(210, 50%, 55%); box-shadow: 0 0 1px 1px hsl(210, 50%, 20%); color: hsl(210, 0%, 100%); } .grammalecte_wrapper_toolbar { display: flex; justify-content: flex-end; margin-top: 5px; padding: 5px 10px; } /* Panels */ .grammalecte_panel { padding: 0; margin: 0; |
︙ | ︙ | |||
94 95 96 97 98 99 100 101 102 103 104 105 106 107 | .grammalecte_panel_content { height: calc(100% - 45px); /* panel height - title_bar */ overflow: auto; } /* Text Formatter */ #grammalecte_tf_options { display: flex; padding: 10px; | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | .grammalecte_panel_content { height: calc(100% - 45px); /* panel height - title_bar */ overflow: auto; } /* Lexicographer */ #grammalecte_lxg_panel_content { padding: 10px; } .grammalecte_lxg_list_of_tokens { background-color: hsla(0, 0%, 90%, 1); padding: 10px; border-radius: 2px; margin: 10px 5px; } .grammalecte_token p { margin: 8px; } .grammalecte_token p.separator { margin: 20px 0; padding: 5px 5px; background-color: hsla(0, 0%, 75%, 1); color: hsla(0, 0%, 96%, 1); border-radius: 5px; text-align: center; font-size: 20px; } .grammalecte_token .token { margin: 8px; } .grammalecte_token ul { margin: 0 0 5px 40px; } .grammalecte_token b { background-color: hsla(150, 10%, 50%, 1); color: hsla(0, 0%, 96%, 1); padding: 2px 5px; border-radius: 2px; text-decoration: none; } .grammalecte_token b.WORD { background-color: hsla(150, 50%, 50%, 1); } .grammalecte_token b.ELPFX { background-color: hsla(150, 30%, 50%, 1); } .grammalecte_token b.UNKNOWN { background-color: hsla(0, 50%, 50%, 1); } .grammalecte_token b.NUM { background-color: hsla(180, 50%, 50%, 1); } .grammalecte_token b.COMPLEX { background-color: hsla(60, 50%, 50%, 1); } .grammalecte_token b.SEPARATOR { background-color: hsla(210, 50%, 50%, 1); } .grammalecte_token b.LINK { background-color: hsla(270, 50%, 50%, 1); } .grammalecte_token s { color: hsla(0, 0%, 60%, 1); text-decoration: none; } .grammalecte_token .textline { text-decoration: bold; } .grammalecte_token p.message { margin-top: 20px; padding: 10px 10px; background-color: hsla(240, 10%, 50%, 1); font-size: 18px; color: hsla(240, 0%, 96%, 1); border-radius: 3px; text-align: center; } /* Text Formatter */ #grammalecte_tf_options { display: flex; padding: 10px; |
︙ | ︙ |
Added gc_lang/fr/webext/content_scripts/gc_content.js version [1881b88610].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 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 302 303 304 305 306 307 308 309 310 | // JavaScript "use strict"; const oGCPanelContent = { _xContentNode: createNode("div", {id: "grammalecte_gc_panel_content"}), getNode: function () { return this._xContentNode; }, clear: function () { while (this._xContentNode.firstChild) { this._xContentNode.removeChild(this._xContentNode.firstChild); } }, addParagraphResult: function (sText, iId, oErrors) { try { let xNodeDiv = createNode("div", {className: "grammalecte_paragraph_block"}); // actions let xActionsBar = createNode("div", {className: "grammalecte_paragraph_actions"}); let xCloseButton = createNode("div", {id: "end" + iId.toString(), className: "grammalecte_paragraph_close_button", textContent: "×"}); let xAnalyseButton = createNode("div", {id: "check" + iId.toString(), className: "grammalecte_paragraph_analyse_button", textContent: "Réanalyser"}); xActionsBar.appendChild(xAnalyseButton); xActionsBar.appendChild(xCloseButton); // paragraph let xParagraph = createNode("p", {id: iId, lang: "fr", spellcheck: "false", contenteditable: "true"}); xParagraph.className = (oErrors.aGrammErr.length || oErrors.aSpellErr.length) ? "grammalecte_paragraph softred" : "grammalecte_paragraph"; this._tagParagraph(sText, xParagraph, iParagraph, oErrors.aGrammErr, oErrors.aSpellErr); // creation xNodeDiv.appendChild(xActionsBar); xNodeDiv.appendChild(xParagraph); this._xContentNode.appendChild(xNodeDiv); } catch (e) { showError(e); } }, refreshParagraph: function (sText, sId, oErrors) { try { let xParagraph = document.getElementById("paragr"+sIdParagr); xParagraph.className = (oErrors.aGrammErr.length || oErrors.aSpellErr.length) ? "grammalecte_paragraph softred" : "grammalecte_paragraph"; xParagraph.textContent = ""; this._tagParagraph(sText, xParagraph, iParagraph, oErrors.aGrammErr, oErrors.aSpellErr); } catch (e) { showError(e); } }, _tagParagraph: function (sParagraph, xParagraph, iParagraph, aSpellErr, aGrammErr) { try { if (aGrammErr.length === 0 && aSpellErr.length === 0) { xParagraph.textContent = sParagraph; return } aGrammErr.push(...aSpellErr); aGrammErr.sort(function (a, b) { if (a["nStart"] < b["nStart"]) return -1; if (a["nStart"] > b["nStart"]) return 1; return 0; }); let nErr = 0; // we count errors to give them an identifier let nEndLastErr = 0; for (let oErr of aGrammErr) { let nStart = oErr["nStart"]; let nEnd = oErr["nEnd"]; if (nStart >= nEndLastErr) { oErr['sErrorId'] = iParagraph.toString() + "_" + nErr.toString(); // error identifier oErr['sIgnoredKey'] = iParagraph.toString() + ":" + nStart.toString() + ":" + nEnd.toString() + ":" + sParagraph.slice(nStart, nEnd); if (nEndLastErr < nStart) { xParagraph.appendChild(document.createTextNode(sParagraph.slice(nEndLastErr, nStart))); } xParagraph.appendChild(this._createError(sParagraph.slice(nStart, nEnd), oErr)); xParagraph.insertAdjacentHTML("beforeend", "<!-- err_end -->"); nEndLastErr = nEnd; } nErr += 1; } if (nEndLastErr <= sParagraph.length) { xParagraph.appendChild(document.createTextNode(sParagraph.slice(nEndLastErr))); } } catch (e) { showError(e); } }, _createError: function (sUnderlined, oErr) { let xNodeErr = document.createElement("u"); xNodeErr.id = "err" + oErr['sErrorId']; xNodeErr.textContent = sUnderlined; xNodeErr.dataset.error_id = oErr['sErrorId']; xNodeErr.dataset.ignored_key = oErr['sIgnoredKey']; xNodeErr.dataset.error_type = (oErr['sType'] === "WORD") ? "spelling" : "grammar"; if (xNodeErr.dataset.error_type === "grammar") { xNodeErr.dataset.gc_message = oErr['sMessage']; xNodeErr.dataset.gc_url = oErr['URL']; if (xNodeErr.dataset.gc_message.includes(" #")) { xNodeErr.dataset.line_id = oErr['sLineId']; xNodeErr.dataset.rule_id = oErr['sRuleId']; } xNodeErr.dataset.suggestions = oErr["aSuggestions"].join("|"); } xNodeErr.className = (aIgnoredErrors.has(xNodeErr.dataset.ignored_key)) ? "ignored" : "error " + oErr['sType']; return xNodeErr; }, applySuggestion: function (sSuggId) { // sugg try { let sErrorId = document.getElementById(sSuggId).dataset.error_id; let sIdParagr = sErrorId.slice(0, sErrorId.indexOf("_")); startWaitIcon("paragr"+sIdParagr); let xNodeErr = document.getElementById("err" + sErrorId); xNodeErr.textContent = document.getElementById(sSuggId).textContent; xNodeErr.className = "corrected"; xNodeErr.removeAttribute("style"); self.port.emit("correction", sIdParagr, getPurgedTextOfParagraph("paragr"+sIdParagr)); this.hideAllTooltips(); stopWaitIcon("paragr"+sIdParagr); } catch (e) { showError(e); } }, ignoreError: function (sIgnoreButtonId) { // ignore try { //console.log("ignore button: " + sIgnoreButtonId + " // error id: " + document.getElementById(sIgnoreButtonId).dataset.error_id); let xNodeErr = document.getElementById("err"+document.getElementById(sIgnoreButtonId).dataset.error_id); aIgnoredErrors.add(xNodeErr.dataset.ignored_key); xNodeErr.className = "ignored"; xNodeErr.removeAttribute("style"); this.hideAllTooltips(); } catch (e) { showError(e); } }, showTooltip: function (sNodeErrorId) { // err try { this.hideAllTooltips(); let xNodeErr = document.getElementById(sNodeErrorId); let sTooltipId = (xNodeErr.dataset.error_type === "grammar") ? "gc_tooltip" : "sc_tooltip"; let xNodeTooltip = document.getElementById(sTooltipId); let xNodeTooltipArrow = document.getElementById(sTooltipId+"_arrow"); let nLimit = nPanelWidth - 330; // paragraph width - tooltip width xNodeTooltipArrow.style.top = (xNodeErr.offsetTop + 16) + "px" xNodeTooltipArrow.style.left = (xNodeErr.offsetLeft + Math.floor((xNodeErr.offsetWidth / 2))-4) + "px" // 4 is half the width of the arrow. xNodeTooltip.style.top = (xNodeErr.offsetTop + 20) + "px"; xNodeTooltip.style.left = (xNodeErr.offsetLeft > nLimit) ? nLimit + "px" : xNodeErr.offsetLeft + "px"; if (xNodeErr.dataset.error_type === "grammar") { // grammar error if (xNodeErr.dataset.gc_message.includes(" ##")) { let n = xNodeErr.dataset.gc_message.indexOf(" ##"); document.getElementById("gc_message").textContent = xNodeErr.dataset.gc_message.slice(0, n); document.getElementById("gc_rule_id").textContent = "Règle : " + xNodeErr.dataset.gc_message.slice(n+2); document.getElementById("gc_rule_id").style.display = "block"; } else { document.getElementById("gc_message").textContent = xNodeErr.dataset.gc_message; } if (xNodeErr.dataset.gc_url != "") { document.getElementById("gc_url").style.display = "inline"; document.getElementById("gc_url").setAttribute("href", xNodeErr.dataset.gc_url); } else { document.getElementById("gc_url").style.display = "none"; } document.getElementById("gc_ignore").dataset.error_id = xNodeErr.dataset.error_id; let iSugg = 0; let xGCSugg = document.getElementById("gc_sugg_block"); xGCSugg.textContent = ""; for (let sSugg of xNodeErr.dataset.suggestions.split("|")) { xGCSugg.appendChild(this._createSuggestion(xNodeErr.dataset.error_id, iSugg, sSugg)); xGCSugg.appendChild(document.createTextNode(" ")); iSugg += 1; } } xNodeTooltipArrow.style.display = "block"; xNodeTooltip.style.display = "block"; if (xNodeErr.dataset.error_type === "spelling") { // spelling mistake document.getElementById("sc_ignore").dataset.error_id = xNodeErr.dataset.error_id; //console.log("getSuggFor: " + xNodeErr.textContent.trim() + " // error_id: " + xNodeErr.dataset.error_id); self.port.emit("getSuggestionsForTo", xNodeErr.textContent.trim(), xNodeErr.dataset.error_id); } } catch (e) { showError(e); } }, _createSuggestion: function (sErrId, iSugg, sSugg) { let xNodeSugg = document.createElement("a"); xNodeSugg.id = "sugg" + sErrId + "-" + iSugg.toString(); xNodeSugg.className = "sugg"; xNodeSugg.dataset.error_id = sErrId; xNodeSugg.textContent = sSugg; return xNodeSugg; }, setSpellSuggestionsFor: function (sWord, sSuggestions, sErrId) { // spell checking suggestions try { // console.log("setSuggestionsFor: " + sWord + " > " + sSuggestions + " // " + sErrId); let xSuggBlock = document.getElementById("sc_sugg_block"); xSuggBlock.textContent = ""; if (sSuggestions === "") { xSuggBlock.appendChild(document.createTextNode("Aucune.")); } else if (sSuggestions.startsWith("#")) { xSuggBlock.appendChild(document.createTextNode(sSuggestions)); } else { let lSugg = sSuggestions.split("|"); let iSugg = 0; for (let sSugg of lSugg) { xSuggBlock.appendChild(this._createSuggestion(sErrId, iSugg, sSugg)); xSuggBlock.appendChild(document.createTextNode(" ")); iSugg += 1; } } } catch (e) { showError(e); } }, hideAllTooltips: function () { document.getElementById("gc_tooltip").style.display = "none"; document.getElementById("gc_rule_id").style.display = "none"; document.getElementById("sc_tooltip").style.display = "none"; document.getElementById("gc_tooltip_arrow").style.display = "none"; document.getElementById("sc_tooltip_arrow").style.display = "none"; }, addSummary: function () { // todo }, addMessage: function (sMessage) { let xNode = createNode("div", {className: "grammalecte_gc_panel_message", textContent: sMessage}); this._xContentNode.appendChild(xNode); } } function sendBackAndCheck (sCheckButtonId) { // check startWaitIcon(); let sIdParagr = sCheckButtonId.slice(5); self.port.emit("modifyAndCheck", sIdParagr, getPurgedTextOfParagraph("paragr"+sIdParagr)); stopWaitIcon(); } function getPurgedTextOfParagraph (sNodeParagrId) { let sText = document.getElementById(sNodeParagrId).textContent; sText = sText.replace(/ /g, " ").replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&"); return sText; } function copyToClipboard () { startWaitIcon(); try { let xClipboardButton = document.getElementById("clipboard_msg"); xClipboardButton.textContent = "copie en cours…"; let sText = ""; for (let xNode of document.getElementById("errorlist").getElementsByClassName("paragraph")) { sText += xNode.textContent + "\n"; } self.port.emit('copyToClipboard', sText); xClipboardButton.textContent = "-> presse-papiers"; window.setTimeout(function() { xClipboardButton.textContent = "∑"; } , 3000); } catch (e) { console.log(e.lineNumber + ": " +e.message); } stopWaitIcon(); } function startWaitIcon (sIdParagr=null) { if (sIdParagr) { document.getElementById(sIdParagr).disabled = true; document.getElementById(sIdParagr).style.opacity = .3; } document.getElementById("waiticon").hidden = false; } function stopWaitIcon (sIdParagr=null) { if (sIdParagr) { document.getElementById(sIdParagr).disabled = false; document.getElementById(sIdParagr).style.opacity = 1; } document.getElementById("waiticon").hidden = true; } |
Added gc_lang/fr/webext/content_scripts/lxg_content.js version [f0b755a031].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | // JavaScript "use strict"; const oLxgPanelContent = { _xContentNode: createNode("div", {id: "grammalecte_lxg_panel_content"}), getNode: function () { return this._xContentNode; }, clear: function () { while (this._xContentNode.firstChild) { this._xContentNode.removeChild(this._xContentNode.firstChild); } }, addSeparator: function (sText) { if (this._xContentNode.textContent !== "") { this._xContentNode.appendChild(createNode("div", {className: "grammalecte_lxg_separator", textContent: sText})); } }, addMessage: function (sClass, sText) { this._xContentNode.appendChild(createNode("div", {className: sClass, textContent: sText})); }, addListOfTokens: function (lTokens) { try { let xNodeDiv = createNode("div", {className: "grammalecte_lxg_list_of_tokens"}); for (let oToken of lTokens) { xNodeDiv.appendChild(this._createTokenNode(oToken)); } this._xContentNode.appendChild(xNodeDiv); } catch (e) { showError(e); } }, _createTokenNode: function (oToken) { let xTokenNode = createNode("div", {className: "grammalecte_token " + oToken.sType}); xTokenNode.appendChild(createNode("b", {className: oToken.sType, textContent: oToken.sValue})); xTokenNode.appendChild(createNode("s", {textContent: " : "})); if (oToken.aLabel.length === 1) { xTokenNode.appendChild(document.createTextNode(oToken.aLabel[0])); } else { let xTokenList = document.createElement("ul"); for (let sLabel of oToken.aLabel) { xTokenList.appendChild(createNode("li", {textContent: sLabel})); } xTokenNode.appendChild(xTokenList); } return xTokenNode; }, setHidden: function (sClass, bHidden) { for (let xNode of document.getElementsByClassName(sClass)) { xNode.hidden = bHidden; } } } |
Modified gc_lang/fr/webext/content_scripts/modify_page.js from [fe1ea1f90c] to [84cf5b1b92].
︙ | ︙ | |||
47 48 49 50 51 52 53 | catch (e) { showError(e); } } function createWrapperToolbar (xTextArea) { try { | < < < < < | < < < | | < < < < < | | < < < | < < > < < < | > > > > > > > > > | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | catch (e) { showError(e); } } function createWrapperToolbar (xTextArea) { try { let xToolbar = createNode("div", {className: "grammalecte_wrapper_toolbar"}); let xConjButton = createNode("div", {className: "grammalecte_wrapper_button", textContent: "Conjuguer"}); xConjButton.onclick = function() { createConjPanel(); }; let xTFButton = createNode("div", {className: "grammalecte_wrapper_button", textContent: "Formater"}); xTFButton.onclick = function() { createTFPanel(xTextArea); }; let xLxgButton = createNode("div", {className: "grammalecte_wrapper_button", textContent: "Analyser"}); xLxgButton.onclick = function() { createLxgPanel(xTextArea); xPort.postMessage({sCommand: "getListOfTokens", dParam: {sText: xTextArea.value}, dInfo: {sTextAreaId: xTextArea.id}}); }; let xGCButton = createNode("div", {className: "grammalecte_wrapper_button", textContent: "Corriger"}); xGCButton.onclick = function() { createGCPanel(); xPort.postMessage({sCommand: "parseAndSpellcheck", dParam: {sText: xTextArea.value, sCountry: "FR", bDebug: false, bContext: false}, dInfo: {sTextAreaId: xTextArea.id}}); }; // Create //xToolbar.appendChild(createNode("img", {scr: browser.extension.getURL("img/logo-16.png")})); // can’t work, due to content-script policy: https://bugzilla.mozilla.org/show_bug.cgi?id=1267027 xToolbar.appendChild(createLogo()); xToolbar.appendChild(document.createTextNode("Grammalecte")); xToolbar.appendChild(xConjButton); xToolbar.appendChild(xTFButton); xToolbar.appendChild(xLxgButton); xToolbar.appendChild(xGCButton); return xToolbar; } catch (e) { showError(e); } } |
︙ | ︙ | |||
108 109 110 111 112 113 114 | console.log("Formateur de texte"); if (oTFPanel !== null) { oTFPanel.show(); } else { // create the panel oTFPanel = new GrammalectePanel("grammalecte_tf_panel", "Formateur de texte", 800, 600, false); oTFPanel.logInnerHTML(); | | > > | > < > > > > | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 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 | console.log("Formateur de texte"); if (oTFPanel !== null) { oTFPanel.show(); } else { // create the panel oTFPanel = new GrammalectePanel("grammalecte_tf_panel", "Formateur de texte", 800, 600, false); oTFPanel.logInnerHTML(); oTFPanel.setContentNode(createTextFormatter(xTextArea)); oTFPanel.insertIntoPage(); } } function createLxgPanel (xTextArea) { console.log("Lexicographe"); if (oLxgPanel !== null) { oLxgPanelContent.clear(); oLxgPanel.show(); } else { // create the panel oLxgPanel = new GrammalectePanel("grammalecte_lxg_panel", "Lexicographe", 500, 700); oLxgPanel.setContentNode(oLxgPanelContent.getNode()); oLxgPanel.insertIntoPage(); } } function createGCPanel () { console.log("Correction grammaticale"); if (oGCPanel !== null) { oGCPanelContent.clear(); oGCPanel.show(); } else { // create the panel oGCPanel = new GrammalectePanel("grammalecte_gc_panel", "Correcteur", 500, 700); oGCPanel.insertIntoPage(); } } function updateGCPanel (oErrors) { oGCPanel.setContentNode(document.createTextNode(JSON.stringify(oErrors))); } /* Simple message */ function handleMessage (oMessage, xSender, sendResponse) { console.log("[Content script] received:"); |
︙ | ︙ | |||
165 166 167 168 169 170 171 | switch (sActionDone) { case "getCurrentTabId": console.log("[Content script] tab id: " + result); nTadId = result; break; case "parseAndSpellcheck": console.log(result); | | > | 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | switch (sActionDone) { case "getCurrentTabId": console.log("[Content script] tab id: " + result); nTadId = result; break; case "parseAndSpellcheck": console.log(result); updateGCPanel(result); break; case "getListOfTokens": console.log(result); oLxgPanelContent.addListOfTokens(result); break; default: console.log("[Content script] Unknown command: " + sActionDone); } }); xPort.postMessage({sCommand: "getCurrentTabId", dParam: {}, dInfo: {}}); /*document.body.addEventListener("click", function () { xPort.postMessage({greeting: "they clicked the page!"}); });*/ wrapTextareas(); |
Modified gc_lang/fr/webext/content_scripts/panel_creator.js from [c68ae78d6d] to [54676d7e75].
︙ | ︙ | |||
59 60 61 62 63 64 65 | _createCloseButton () { let xButton = createNode("div", {className: "grammalecte_close_button", textContent: "×", title: "Fermer la fenêtre"}); xButton.onclick = function () { this.hide(); }.bind(this); // better than writing “let that = this;” before the function? return xButton; } | | | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | _createCloseButton () { let xButton = createNode("div", {className: "grammalecte_close_button", textContent: "×", title: "Fermer la fenêtre"}); xButton.onclick = function () { this.hide(); }.bind(this); // better than writing “let that = this;” before the function? return xButton; } setContentNode (xNode) { this.xContentNode.appendChild(xNode); } insertIntoPage () { document.body.appendChild(this.xPanelNode); } |
︙ | ︙ |
Name change from gc_lang/fr/webext/content_scripts/text_formatter.js to gc_lang/fr/webext/content_scripts/tf_content.js.
︙ | ︙ |
Modified gc_lang/fr/webext/manifest.json from [da43ad992b] to [5aded4e872].
︙ | ︙ | |||
36 37 38 39 40 41 42 | }, "content_scripts": [ { "matches": ["<all_urls>"], "css": ["content_scripts/content_panels.css"], "js": [ "content_scripts/panel_creator.js", | | > > | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | }, "content_scripts": [ { "matches": ["<all_urls>"], "css": ["content_scripts/content_panels.css"], "js": [ "content_scripts/panel_creator.js", "content_scripts/tf_content.js", "content_scripts/gc_content.js", "content_scripts/lxg_content.js", "content_scripts/modify_page.js" ] } ], "web_accessible_resources": [ "grammalecte/_dictionaries/French.json", "grammalecte/fr/conj_data.json", |
︙ | ︙ |
Modified gc_lang/fr/xpi/package.json from [7e2435c537] to [5d59e1b94f].
1 2 3 4 | { "name": "grammalecte-fr", "title": "Grammalecte [fr]", "id": "French-GC@grammalecte.net", | | | 1 2 3 4 5 6 7 8 9 10 11 12 | { "name": "grammalecte-fr", "title": "Grammalecte [fr]", "id": "French-GC@grammalecte.net", "version": "0.5.19", "description": "Correcteur grammatical pour le français", "homepage": "http://www.dicollecte.org/grammalecte", "main": "ui.js", "icon": "data/img/icon-48.png", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, |
︙ | ︙ |