Overview
Comment: | [fx] panels ui (draft) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
e0f8e36d5aa126158f89dc8e3d3235eb |
User & Date: | olr on 2017-08-12 09:51:39 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-12
| ||
12:04 | [fx] panels ui improvement + image inline check-in: a974df14bb user: olr tags: fx, webext2 | |
09:51 | [fx] panels ui (draft) check-in: e0f8e36d5a user: olr tags: fx, webext2 | |
2017-08-11
| ||
15:48 | [fx] use persistent connexions between content-scripts and background, better interactions between scripts check-in: 8dee6996d7 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/content_scripts/modify_page.js from [8366675e79] to [e3f8378c10].
︙ | ︙ | |||
79 80 81 82 83 84 85 | createTFPanel(xTextArea); }; xToolbar.appendChild(xTFButton); let xLxgButton = document.createElement("div"); xLxgButton.textContent = "Analyser"; xLxgButton.style = sButtonStyle; xLxgButton.onclick = function() { | | | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | createTFPanel(xTextArea); }; xToolbar.appendChild(xTFButton); let xLxgButton = document.createElement("div"); xLxgButton.textContent = "Analyser"; xLxgButton.style = sButtonStyle; xLxgButton.onclick = function() { createLxgPanel(xTextArea); }; xToolbar.appendChild(xLxgButton); let xGCButton = document.createElement("div"); xGCButton.textContent = "Corriger"; xGCButton.style = sButtonStyle; xGCButton.onclick = function() { xPort.postMessage({sCommand: "parseAndSpellcheck", dParam: {sText: xTextArea.value, sCountry: "FR", bDebug: false, bContext: false}, dInfo: {sTextAreaId: xTextArea.id}}); |
︙ | ︙ | |||
102 103 104 105 106 107 108 | function createConjPanel () { console.log("Conjugueur"); if (xConjPanel !== null) { xConjPanel.style.display = "block"; } else { // create the panel | | < < < < < > > > > > > > > | > > > > > > > | < < | < < < < < < < < < < < < < < < < < < < < < < < < < < | 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 | function createConjPanel () { console.log("Conjugueur"); if (xConjPanel !== null) { xConjPanel.style.display = "block"; } else { // create the panel xConjPanel = createPanelFrame("conj_panel", "Conjugueur", 500, 900); document.body.appendChild(xConjPanel); } } function createTFPanel (xTextArea) { console.log("Formateur de texte"); if (xTFPanel !== null) { xTFPanel.style.display = "block"; } else { // create the panel xTFPanel = createPanelFrame("tf_panel", "Formateur de texte", 800, 500); xTFPanel.appendChild(createTextFormatter(xTextArea)); document.body.appendChild(xTFPanel); } } function createLxgPanel (xTextArea) { console.log("Lexicographe"); if (xLxgPanel !== null) { xLxgPanel.style.display = "block"; } else { // create the panel xLxgPanel = createPanelFrame("lxg_panel", "Lexicographe", 400, 800); document.body.appendChild(xLxgPanel); } } function createGCPanel (oErrors) { console.log("Correction grammaticale"); if (xGCPanel !== null) { xGCPanel.style.display = "block"; } else { // create the panel xGCPanel = createPanelFrame("gc_panel", "Correcteur", 400, 800); xGCPanel.appendChild(document.createTextNode(JSON.stringify(oErrors))); document.body.appendChild(xGCPanel); } } /* Simple message */ function handleMessage (oMessage, xSender, sendResponse) { console.log("[Content script] received:"); console.log(oMessage); |
︙ | ︙ |
Added gc_lang/fr/webext/content_scripts/panel_creator.js version [ef4b06b969].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | // JavaScript // Panel creator "use strict"; function createPanelFrame (sId, sTitle, nWidth, nHeight) { try { let xPanel = document.createElement("div"); xPanel.style = "position: fixed; left: 50%; top: 50%; z-index: 100; border-radius: 10px;" + "color: hsl(210, 10%, 4%); background-color: hsl(210, 20%, 90%); border: 10px solid hsla(210, 20%, 70%, .5); overflow: auto;" + getPanelSize(nWidth, nHeight); let xBar = document.createElement("div"); xBar.style = "position: fixed; width: "+nWidth+"px ; background-color: hsl(210, 0%, 100%); border-bottom: 1px solid hsl(210, 10%, 50%); font-size: 20px;"; xBar.appendChild(createCloseButton(xPanel)); xBar.appendChild(createDiv(sId+"_title", "Grammalecte · " + sTitle)); xPanel.appendChild(xBar); xPanel.appendChild(createDiv(sId+"_empty_space", "", "", "height: 40px;")); // empty space to fill behind the title bar return xPanel; } catch (e) { showError(e); } } function getPanelSize (nWidth, nHeight) { let s = "width: "+ nWidth.toString() + "px; height: " + nHeight.toString() + "px;"; s += "margin-top: -" + (nHeight/2).toString() + "px; margin-left: -" + (nWidth/2).toString() + "px;"; return s; } function createCloseButton (xParentNode) { let xButton = document.createElement("div"); xButton.style = "float: right; padding: 2px 10px; color: hsl(210, 0%, 100%); text-align: center;" + "font-size: 22px; font-weight: bold; background-color: hsl(0, 80%, 50%); border-radius: 0 0 0 3px; cursor: pointer;"; xButton.textContent = "×"; xButton.onclick = function () { xParentNode.style.display = "none"; } return xButton; } /* Common functions */ function createDiv (sId, sContent, sClass="", sStyle="") { let xDiv = document.createElement("div"); xDiv.id = sId; xDiv.className = sClass; xDiv.style = sStyle; xDiv.textContent = sContent; return xDiv; } function createCheckbox (sId, bDefault, sClass="") { let xInput = document.createElement("input"); xInput.type = "checkbox"; xInput.id = sId; xInput.className = sClass; xInput.dataset.default = bDefault; return xInput; } function createLabel (sForId, sLabel, sClass="") { let xLabel = document.createElement("label"); xLabel.setAttribute("for", sForId); xLabel.textContent = sLabel; return xLabel; } function loadImage (sContainerClass, sImagePath) { let xRequest = new XMLHttpRequest(); xRequest.open('GET', browser.extension.getURL("")+sImagePath, false); xRequest.responseType = "arraybuffer"; xRequest.send(); let blobTxt = new Blob([xRequest.response], {type: 'image/png'}); let img = document.createElement('img'); img.src = (URL || webkitURL).createObjectURL(blobTxt); Array.filter(document.getElementsByClassName(sContainerClass), function (oElem) { oElem.appendChild(img); }); } |
Added gc_lang/fr/webext/content_scripts/text_formatter.js version [ad8781cf55].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 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 | // JavaScript // Text formatter "use strict"; function createTextFormatter (xTextArea) { let xTFNode = document.createElement("div"); try { // Options let xOptions = createDiv("tf_options", ""); let xSSP = createFieldset("group_ssp", true, "Espaces surnuméraires"); xSSP.appendChild(createOptionInputAndLabel("o_start_of_paragraph", true, "En début de paragraphe")); xSSP.appendChild(createOptionInputAndLabel("o_end_of_paragraph", true, "En fin de paragraphe")); xSSP.appendChild(createOptionInputAndLabel("o_between_words", true, "Entre les mots")); xSSP.appendChild(createOptionInputAndLabel("o_before_punctuation", true, "Avant les points (.), les virgules (,)")); xSSP.appendChild(createOptionInputAndLabel("o_within_parenthesis", true, "À l’intérieur des parenthèses")); xSSP.appendChild(createOptionInputAndLabel("o_within_square_brackets", true, "À l’intérieur des crochets")); xSSP.appendChild(createOptionInputAndLabel("o_within_quotation_marks", true, "À l’intérieur des guillemets “ et ”")); let xSpace = createFieldset("group_space", true, "Espaces manquants"); xSpace.appendChild(createOptionInputAndLabel("o_add_space_after_punctuation", true, "Après , ; : ? ! . …")); xSpace.appendChild(createOptionInputAndLabel("o_add_space_around_hyphens", true, "Autour des tirets d’incise")); let xNBSP = createFieldset("group_nbsp", true, "Espaces insécables"); xNBSP.appendChild(createOptionInputAndLabel("o_nbsp_before_punctuation", true, "Avant : ; ? et !")); xNBSP.appendChild(createOptionInputAndLabel("o_nbsp_within_quotation_marks", true, "Avec les guillemets « et »")); xNBSP.appendChild(createOptionInputAndLabel("o_nbsp_before_symbol", true, "Avant % ‰ € $ £ ¥ ˚C")); xNBSP.appendChild(createOptionInputAndLabel("o_nbsp_within_numbers", true, "À l’intérieur des nombres")); xNBSP.appendChild(createOptionInputAndLabel("o_nbsp_before_units", true, "Avant les unités de mesure")); let xDelete = createFieldset("group_delete", true, "Suppressions"); xDelete.appendChild(createOptionInputAndLabel("o_erase_non_breaking_hyphens", true, "Tirets conditionnels")); let xTypo = createFieldset("group_typo", true, "Signes typographiques"); xTypo.appendChild(createOptionInputAndLabel("o_ts_apostrophe", true, "Apostrophe (’)")); xTypo.appendChild(createOptionInputAndLabel("o_ts_ellipsis", true, "Points de suspension (…)")); xTypo.appendChild(createOptionInputAndLabel("o_ts_dash_middle", true, "Tirets d’incise :")); xTypo.appendChild(createOptionInputAndLabel("o_ts_dash_start", true, "Tirets en début de paragraphe :")); xTypo.appendChild(createOptionInputAndLabel("o_ts_quotation_marks", true, "Modifier les guillemets droits (\" et ')")); xTypo.appendChild(createOptionInputAndLabel("o_ts_units", true, "Points médians des unités (N·m, Ω·m…)")); xTypo.appendChild(createOptionInputAndLabel("o_ts_spell", true, "Ligatures (cœur…) et diacritiques (ça, État…)")); xTypo.appendChild(createOptionInputAndLabel("o_ts_ligature", true, "Ligatures")); let xMisc = createFieldset("group_misc", true, "Divers"); xMisc.appendChild(createOptionInputAndLabel("o_ordinals_no_exponant", true, "Ordinaux (15e, XXIe…)")); xMisc.appendChild(createOptionInputAndLabel("o_etc", true, "Et cætera, etc.")); xMisc.appendChild(createOptionInputAndLabel("o_missing_hyphens", true, "Traits d’union manquants")); xMisc.appendChild(createOptionInputAndLabel("o_ma_word", true, "Apostrophes manquantes")); let xStruct = createFieldset("group_struct", false, "Restructuration [!]"); xStruct.appendChild(createOptionInputAndLabel("o_remove_hyphens_at_end_of_paragraphs", false, "Enlever césures en fin de ligne/paragraphe [!]")); xStruct.appendChild(createOptionInputAndLabel("o_merge_contiguous_paragraphs", false, "Fusionner les paragraphes contigus [!]")); xOptions.appendChild(xSSP); xOptions.appendChild(xSpace); xOptions.appendChild(xNBSP); xOptions.appendChild(xDelete); xOptions.appendChild(xTypo); xOptions.appendChild(xMisc); xOptions.appendChild(xStruct); // Actions let xActions = createDiv("tf_actions", ""); let xPgBarBox = createDiv("tf_progressbarbox", ""); xPgBarBox.innerHTML = '<progress id="progressbar" style="width: 400px;"></progress> <span id="time_res"></span>'; xActions.appendChild(createDiv("tf_reset", "Par défaut", "button blue")); xActions.appendChild(xPgBarBox); xActions.appendChild(createDiv("tf_apply", "Appliquer", "button green")); xActions.appendChild(createDiv("infomsg", "blabla")); // create result xTFNode.appendChild(xOptions); xTFNode.appendChild(xActions); } catch (e) { //console.error(e); showError(e); } return xTFNode; } function createFieldset (sId, bDefault, sLabel) { let xFieldset = document.createElement("fieldset"); xFieldset.id = sId; xFieldset.className = "groupblock"; let xLegend = document.createElement("legend"); let xInput = createCheckbox("o_"+sId, bDefault, "option"); let xLabel = createLabel(xInput.id, sLabel); // create result xLegend.appendChild(xInput); xLegend.appendChild(xLabel); xFieldset.appendChild(xLegend); return xFieldset; } function createOptionInputAndLabel (sId, bDefault, sLabel) { let xOption = document.createElement("div"); xOption.className = "blockopt underline"; let xInput = createCheckbox(sId, bDefault, "option"); let xLabel = createLabel(sId, sLabel, "opt_lbl largew"); let xResult = createDiv("res_"+sId, "", "result fright"); // create result xOption.appendChild(xResult); xOption.appendChild(xInput); xOption.appendChild(xLabel); return xOption; } let sTFinnerHTML = ' \ <h1>FORMATEUR DE TEXTE</h1> \ <div id="tf_options"> \ \ <!-- Supernumerary spaces --> \ <fieldset> \ <legend><input type="checkbox" id="o_group_ssp" class="option" data-default="true" /><label for="o_group_ssp" data-l10n-en="tf_ssp">${tf_ssp}</label></legend> \ <div id="group_ssp" class="groupblock"> \ <div class="blockopt underline"> \ <div id="res_o_start_of_paragraph" class="result fright"></div> \ <input type="checkbox" id="o_start_of_paragraph" class="option" data-default="true" /> \ <label for="o_start_of_paragraph" class="opt_lbl largew" data-l10n-en="tf_start_of_paragraph">${tf_start_of_paragraph}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_end_of_paragraph" class="result fright"></div> \ <input type="checkbox" id="o_end_of_paragraph" class="option" data-default="true" /> \ <label for="o_end_of_paragraph" class="opt_lbl largew" data-l10n-en="tf_end_of_paragraph">${tf_end_of_paragraph}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_between_words" class="result fright"></div> \ <input type="checkbox" id="o_between_words" class="option" data-default="true" /> \ <label for="o_between_words" class="opt_lbl largew" data-l10n-en="tf_between_words">${tf_between_words}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_before_punctuation" class="result fright"></div> \ <input type="checkbox" id="o_before_punctuation" class="option" data-default="true" /> \ <label for="o_before_punctuation" class="opt_lbl largew" data-l10n-en="tf_before_punctuation">${tf_before_punctuation}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_within_parenthesis" class="result fright"></div> \ <input type="checkbox" id="o_within_parenthesis" class="option" data-default="true" /> \ <label for="o_within_parenthesis" class="opt_lbl largew" data-l10n-en="tf_within_parenthesis">${tf_within_parenthesis}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_within_square_brackets" class="result fright"></div> \ <input type="checkbox" id="o_within_square_brackets" class="option" data-default="true" /> \ <label for="o_within_square_brackets" class="opt_lbl largew" data-l10n-en="tf_within_square_brackets">${tf_within_square_brackets}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_within_quotation_marks" class="result fright"></div> \ <input type="checkbox" id="o_within_quotation_marks" class="option" data-default="true" /> \ <label for="o_within_quotation_marks" class="opt_lbl largew" data-l10n-en="tf_within_quotation_marks">${tf_within_quotation_marks}</label> \ </div> \ </div> \ </fieldset> \ \ <!-- Missing spaces --> \ <fieldset> \ <legend><input type="checkbox" id="o_group_space" class="option" data-default="true" /><label for="o_group_space" data-l10n-en="tf_space">${tf_space}</label></legend> \ <div id="group_space" class="groupblock"> \ <div class="blockopt underline"> \ <div id="res_o_add_space_after_punctuation" class="result fright"></div> \ <input type="checkbox" id="o_add_space_after_punctuation" class="option" data-default="true" /> \ <label for="o_add_space_after_punctuation" class="opt_lbl reducedw" data-l10n-en="tf_add_space_after_punctuation">${tf_add_space_after_punctuation}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_add_space_around_hyphens" class="result fright"></div> \ <input type="checkbox" id="o_add_space_around_hyphens" class="option" data-default="true" /> \ <label for="o_add_space_around_hyphens" class="opt_lbl largew" data-l10n-en="tf_add_space_around_hyphens">${tf_add_space_around_hyphens}</label> \ </div> \ </div> \ </fieldset> \ \ <!-- Non breaking spaces --> \ <fieldset> \ <legend><input type="checkbox" id="o_group_nbsp" class="option" data-default="true" /><label for="o_group_nbsp" data-l10n-en="tf_nbsp">${tf_nbsp}</label></legend> \ <div id="group_nbsp" class="groupblock"> \ <div class="blockopt underline"> \ <div id="res_o_nbsp_before_punctuation" class="result fright"></div> \ <input type="checkbox" id="o_nbsp_before_punctuation" class="option" data-default="true" /> \ <label for="o_nbsp_before_punctuation" class="opt_lbl reducedw" data-l10n-en="tf_nbsp_before_punctuation">${tf_nbsp_before_punctuation}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_nbsp_within_quotation_marks" class="result fright"></div> \ <input type="checkbox" id="o_nbsp_within_quotation_marks" class="option" data-default="true" /> \ <label for="o_nbsp_within_quotation_marks" class="opt_lbl reducedw" data-l10n-en="tf_nbsp_within_quotation_marks">${tf_nbsp_within_quotation_marks}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_nbsp_before_symbol" class="result fright"></div> \ <input type="checkbox" id="o_nbsp_before_symbol" class="option" data-default="true" /> \ <label for="o_nbsp_before_symbol" class="opt_lbl largew" data-l10n-en="tf_nbsp_before_symbol">${tf_nbsp_before_symbol}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_nbsp_within_numbers" class="result fright"></div> \ <input type="checkbox" id="o_nbsp_within_numbers" class="option" data-default="true" /> \ <label for="o_nbsp_within_numbers" class="opt_lbl reducedw" data-l10n-en="tf_nbsp_within_numbers">${tf_nbsp_within_numbers}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_nbsp_before_units" class="result fright"></div> \ <input type="checkbox" id="o_nbsp_before_units" class="option" data-default="true" /> \ <label for="o_nbsp_before_units" class="opt_lbl largew" data-l10n-en="tf_nbsp_before_units">${tf_nbsp_before_units}</label> \ </div> \ </div> \ </fieldset> \ \ <!-- Deletions --> \ <fieldset> \ <legend><input type="checkbox" id="o_group_delete" class="option" data-default="true" /><label for="o_group_delete" data-l10n-en="tf_delete">${tf_delete}</label></legend> \ <div id="group_delete" class="groupblock"> \ <div class="blockopt underline"> \ <div id="res_o_erase_non_breaking_hyphens" class="result fright"></div> \ <input type="checkbox" id="o_erase_non_breaking_hyphens" class="option" data-default="true" /> \ <label for="o_erase_non_breaking_hyphens" class="opt_lbl largew" data-l10n-en="tf_erase_non_breaking_hyphens">${tf_erase_non_breaking_hyphens}</label> \ </div> \ </div> \ </fieldset> \ \ <!-- Typographical signs --> \ <fieldset> \ <legend><input type="checkbox" id="o_group_typo" class="option" data-default="true" /><label for="o_group_typo" data-l10n-en="tf_typo">${tf_typo}</label></legend> \ <div id="group_typo" class="groupblock"> \ <div class="blockopt underline"> \ <div id="res_o_ts_apostrophe" class="result fright"></div> \ <input type="checkbox" id="o_ts_apostrophe" class="option" data-default="true" /> \ <label for="o_ts_apostrophe" class="opt_lbl largew" data-l10n-en="tf_ts_apostrophe">${tf_ts_apostrophe}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ts_ellipsis" class="result fright"></div> \ <input type="checkbox" id="o_ts_ellipsis" class="option" data-default="true" /> \ <label for="o_ts_ellipsis" class="opt_lbl largew" data-l10n-en="tf_ts_ellipsis">${tf_ts_ellipsis}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ts_dash_middle" class="result fright"></div> \ <input type="checkbox" id="o_ts_dash_middle" class="option" data-default="true" /> \ <label for="o_ts_dash_middle" class="opt_lbl largew" data-l10n-en="tf_ts_dash_middle">${tf_ts_dash_middle}</label> \ </div> \ <div class="blockopt"> \ <div class="inlineblock indent"> \ <input type="radio" name="hyphen1" id="o_ts_m_dash_middle" class="option" data-default="false" /><label for="o_ts_m_dash_middle" class="opt_lbl" data-l10n-en="tf_emdash">${tf_emdash}</label> \ </div> \ <div class="inlineblock indent"> \ <input type="radio" name="hyphen1" id="o_ts_n_dash_middle" class="option" data-default="true" /><label for="o_ts_n_dash_middle" class="opt_lbl" data-l10n-en="tf_endash">${tf_endash}</label> \ </div> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ts_dash_start" class="result fright"></div> \ <input type="checkbox" id="o_ts_dash_start" class="option" data-default="true" /> \ <label for="o_ts_dash_start" class="opt_lbl largew" data-l10n-en="tf_ts_dash_start">${tf_ts_dash_start}</label> \ </div> \ <div class="blockopt"> \ <div class="inlineblock indent"> \ <input type="radio" name="hyphen2" id="o_ts_m_dash_start" class="option" data-default="true" /><label for="o_ts_m_dash_start" class="opt_lbl" data-l10n-en="tf_emdash">${tf_emdash}</label> \ </div> \ <div class="inlineblock indent"> \ <input type="radio" name="hyphen2" id="o_ts_n_dash_start" class="option" data-default="false" /><label for="o_ts_n_dash_start" class="opt_lbl" data-l10n-en="tf_endash">${tf_endash}</label> \ </div> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ts_quotation_marks" class="result fright"></div> \ <input type="checkbox" id="o_ts_quotation_marks" class="option" data-default="true" /> \ <label for="o_ts_quotation_marks" class="opt_lbl largew" data-l10n-en="tf_ts_quotation_marks">${tf_ts_quotation_marks}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ts_units" class="result fright"></div> \ <input type="checkbox" id="o_ts_units" class="option" data-default="true" /> \ <label for="o_ts_units" class="opt_lbl largew" data-l10n-en="tf_ts_units">${tf_ts_units}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ts_spell" class="result fright"></div> \ <input type="checkbox" id="o_ts_spell" class="option" data-default="true" /> \ <label for="o_ts_spell" class="opt_lbl largew" data-l10n-en="tf_ts_spell">${tf_ts_spell}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ts_ligature" class="result fright"></div> \ <div class="inlineblock"> \ <input type="checkbox" id="o_ts_ligature" class="option" data-default="false" /> \ <label for="o_ts_ligature" class="opt_lbl" data-l10n-en="tf_ts_ligature">${tf_ts_ligature}</label> \ </div> \ <div class="inlineblock indent"> \ <input type="radio" id="o_ts_ligature_do" name="liga" class="option" data-default="false" /> \ <label for="o_ts_ligature_do" class="opt_lbl" data-l10n-en="tf_ts_ligature_do">${tf_ts_ligature_do}</label> \ </div> \ <div class="inlineblock indent"> \ <input type="radio" id="o_ts_ligature_undo" name="liga" class="option" data-default="true" /> \ <label for="o_ts_ligature_undo" class="opt_lbl" data-l10n-en="tf_ts_ligature_undo">${tf_ts_ligature_undo}</label> \ </div> \ </div> \ \ <div class="blockopt"> \ <div class="inlineblock indent"><input type="checkbox" id="o_ts_ligature_ff" class="option" data-default="true" /><label for="o_ts_ligature_ff" class="opt_lbl">ff</label></div> \ <div class="inlineblock"><input type="checkbox" id="o_ts_ligature_fi" class="option" data-default="true" /><label for="o_ts_ligature_fi" class="opt_lbl">fi</label></div> \ <div class="inlineblock"><input type="checkbox" id="o_ts_ligature_ffi" class="option" data-default="true" /><label for="o_ts_ligature_ffi" class="opt_lbl">ffi</label></div> \ <div class="inlineblock"><input type="checkbox" id="o_ts_ligature_fl" class="option" data-default="true" /><label for="o_ts_ligature_fl" class="opt_lbl">fl</label></div> \ <div class="inlineblock"><input type="checkbox" id="o_ts_ligature_ffl" class="option" data-default="true" /><label for="o_ts_ligature_ffl" class="opt_lbl">ffl</label></div> \ <div class="inlineblock"><input type="checkbox" id="o_ts_ligature_ft" class="option" data-default="true" /><label for="o_ts_ligature_ft" class="opt_lbl">ft</label></div> \ <div class="inlineblock"><input type="checkbox" id="o_ts_ligature_st" class="option" data-default="false" /><label for="o_ts_ligature_st" class="opt_lbl">st</label></div> \ </div> \ </div> \ </fieldset> \ \ <!-- Misc --> \ <fieldset> \ <legend><input type="checkbox" id="o_group_misc" class="option" data-default="true" /><label for="o_group_misc" data-l10n-en="tf_misc">${tf_misc}</label></legend> \ <div id="group_misc" class="groupblock"> \ <div class="blockopt underline"> \ <div id="res_o_ordinals_no_exponant" class="result fright"></div> \ <input type="checkbox" id="o_ordinals_no_exponant" class="option" data-default="true" /> \ <label for="o_ordinals_no_exponant" class="opt_lbl reducedw" data-l10n-en="tf_ordinals_no_exponant">${tf_ordinals_no_exponant}</label> \ <div class="secondoption"> \ <input type="checkbox" id="o_ordinals_exponant" class="option" data-default="true" /> \ <label for="o_ordinals_exponant" class="opt_lbl smallw" data-l10n-en="tf_ordinals_exponant">${tf_ordinals_exponant}</label> \ </div> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_etc" class="result fright"></div> \ <input type="checkbox" id="o_etc" class="option" data-default="true" /> \ <label for="o_etc" class="opt_lbl largew" data-l10n-en="tf_etc">${tf_etc}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_missing_hyphens" class="result fright"></div> \ <input type="checkbox" id="o_missing_hyphens" class="option" data-default="true" /> \ <label for="o_missing_hyphens" class="opt_lbl largew" data-l10n-en="tf_missing_hyphens">${tf_missing_hyphens}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_ma_word" class="result fright"></div> \ <input type="checkbox" id="o_ma_word" class="option" data-default="true" /> \ <label for="o_ma_word" class="opt_lbl largew" data-l10n-en="tf_ma_word">${tf_ma_word}</label> \ </div> \ <div class="blockopt"> \ <div class="inlineblock indent"> \ <input type="checkbox" id="o_ma_1letter_lowercase" class="option" /> \ <label for="o_ma_1letter_lowercase" class="opt_lbl" data-l10n-en="tf_ma_1letter_lowercase">${tf_ma_1letter_lowercase}</label> \ </div> \ <div class="inlineblock indent"> \ <input type="checkbox" id="o_ma_1letter_uppercase" class="option" /> \ <label for="o_ma_1letter_uppercase" class="opt_lbl" data-l10n-en="tf_ma_1letter_uppercase">${tf_ma_1letter_uppercase}</label> \ </div> \ </div> \ </div> \ </fieldset> \ \ <!-- Restructuration --> \ <fieldset> \ <legend><input type="checkbox" id="o_group_struct" class="option" data-default="false" /><label for="o_group_struct" data-l10n-en="tf_struct">${tf_struct}</label></legend> \ <div id="group_struct" class="groupblock"> \ <div class="blockopt underline"> \ <div id="res_o_remove_hyphens_at_end_of_paragraphs" class="result fright"></div> \ <input type="checkbox" id="o_remove_hyphens_at_end_of_paragraphs" class="option" data-default="false" /> \ <label for="o_remove_hyphens_at_end_of_paragraphs" class="opt_lbl largew" data-l10n-en="tf_remove_hyphens_at_end_of_paragraphs">${tf_remove_hyphens_at_end_of_paragraphs}</label> \ </div> \ <div class="blockopt underline"> \ <div id="res_o_merge_contiguous_paragraphs" class="result fright"></div> \ <input type="checkbox" id="o_merge_contiguous_paragraphs" class="option" data-default="false" /> \ <label for="o_merge_contiguous_paragraphs" class="opt_lbl largew" data-l10n-en="tf_merge_contiguous_paragraphs">${tf_merge_contiguous_paragraphs}</label> \ </div> \ </div> \ </fieldset> \ </div> \ \ <div id="tf_actions"> \ <div id="tf_reset" class="button blue" data-l10n-en="Default">Par défaut</div> \ <div id="tf_apply" class="button green fright" data-l10n-en="Apply">Appliquer</div> \ <div id="tf_progressbarbox"><progress id="progressbar" style="width: 400px;"></progress> <span id="time_res"></span></div> \ <!--<div class="clearer"></div> \ <div id="infomsg" data-l10n-id="tf_infomsg"></div>--> \ </div> \ '; |
Modified gc_lang/fr/webext/manifest.json from [d1899487f8] to [27e3a301e7].
︙ | ︙ | |||
33 34 35 36 37 38 39 | "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": ["*://*/*"], | > > > | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": ["*://*/*"], "js": [ "content_scripts/panel_creator.js", "content_scripts/text_formatter.js", "content_scripts/modify_page.js" ] } ], "web_accessible_resources": [ "grammalecte/_dictionaries/French.json", "grammalecte/fr/conj_data.json", "grammalecte/fr/mfsp_data.json", "grammalecte/fr/phonet_data.json", |
︙ | ︙ |
Modified gc_lang/fr/webext/panel/main.html from [f22bea17bb] to [efd16eea4c].
︙ | ︙ | |||
12 13 14 15 16 17 18 | <header id="menu"> <nav> <header id="logo"> <img src="../img/logo-32.png"> </header> <ul> <li class="select" data-page="home_page"><i class="fa fa-home icon"></i> 1.</li> | < | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <header id="menu"> <nav> <header id="logo"> <img src="../img/logo-32.png"> </header> <ul> <li class="select" data-page="home_page"><i class="fa fa-home icon"></i> 1.</li> <li class="select" data-page="gc_options_page"><i class="fa fa-coffee icon"></i> OP1</li> <li class="select" data-page="sc_options_page"><i class="fa fa-keyboard-o icon"></i> OP2</li> <li class="select" data-page="test_page"><i class="fa fa-keyboard-o icon"></i> TST</li> </ul> </nav> </header> <!-- #left --> |
︙ | ︙ | |||
44 45 46 47 48 49 50 | <h1>TESTS</h1> <textarea id="text_to_test" rows="10"></textarea> <div id="fulltests" class="button blue">Tests complets</div> <div id="text_to_test" class="button green fright">Analyser</div> </div> <pre id="tests_result"></pre> </section> | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | <h1>TESTS</h1> <textarea id="text_to_test" rows="10"></textarea> <div id="fulltests" class="button blue">Tests complets</div> <div id="text_to_test" class="button green fright">Analyser</div> </div> <pre id="tests_result"></pre> </section> </div> <!-- #page --> </div> <!-- #main --> <script src="main.js"></script> </body> </html> |