Changes In Branch webext Excluding Merge-Ins
This is equivalent to a diff from 5553427e15 to 0c29214964
2017-07-29
| ||
11:51 | [core][js] revert modif on helpers (dead branch) Closed-Leaf check-in: 0c29214964 user: olr tags: core, webext, dead | |
11:35 | [core][js] conj as object + some fixes check-in: 37a992d0da user: olr tags: core, webext | |
2017-07-24
| ||
13:04 | [fr] fusionne 4 précédents commits de la branche <webext> check-in: 1c4dfb4431 user: olr tags: trunk, fr | |
2017-07-19
| ||
14:57 | [fx] WebExtension (beginning) check-in: 300f8ca77c user: olr tags: fx, webext | |
07:44 | [fx] gc_panel: title for buttons check-in: 5553427e15 user: olr tags: trunk, fx | |
06:13 | [fr] pt: avec un peu de chance check-in: 4f75eda83f user: olr tags: trunk, fr | |
Modified gc_core/js/helpers.js from [6c4ecd114f] to [df207a3682].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 | + - - - + + + - - - + + + - - - - - - - - + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - + | // HELPERS "use strict"; const helpers = { |
Modified gc_core/js/ibdawg.js from [2d42754063] to [e119c6b02d].
︙ | |||
284 285 286 287 288 289 290 | 284 285 286 287 288 289 290 291 292 293 | + - + + | _lookupArcNode3 (nVal, iAddr) { // to do }; } if (typeof(exports) !== 'undefined') { |
Modified gc_core/js/lang_core/gc_engine.js from [e250bfaf63] to [f3327ed66b].
︙ | |||
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | - | return aNew; } const ibdawg = require("resource://grammalecte/ibdawg.js"); const helpers = require("resource://grammalecte/helpers.js"); const gc_options = require("resource://grammalecte/${lang}/gc_options.js"); const cr = require("resource://grammalecte/${lang}/cregex.js"); |
︙ | |||
602 603 604 605 606 607 608 | 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 | - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + | ${pluginsJS} ${callablesJS} |
Modified gc_core/js/lang_core/gc_options.js from [a6bfab9180] to [6e45d077d4].
︙ | |||
15 16 17 18 19 20 21 | 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + - - - + + + + | "JavaScript": new Map (${dOptJavaScript}), "Firefox": new Map (${dOptFirefox}), "Thunderbird": new Map (${dOptThunderbird}), } const dOptLabel = ${dOptLabel}; if (typeof(exports) !== 'undefined') { |
Modified gc_core/js/lang_core/gc_rules.js from [c85bd666a1] to [03bc540fb7].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | + - - + + + | // Grammar checker rules "use strict"; ${string} ${regex} const lParagraphRules = ${paragraph_rules_JS}; const lSentenceRules = ${sentence_rules_JS}; if (typeof(exports) !== 'undefined') { |
Modified gc_core/js/str_transform.js from [572c35f46a] to [2b77b3d6d8].
1 2 | 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 | - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - + + + + + + - + - - - - - - - - - - - - + + + + + + + + + + + + + - - + + + | //// STRING TRANSFORMATION |
Modified gc_core/js/tests.js from [24427fff6b] to [f2f737b523].
︙ | |||
143 144 145 146 147 148 149 | 143 144 145 146 147 148 149 150 151 152 153 | + + - + + | helpers.logerror(e); } return [" ".repeat(sLine.length), ""]; }; } if (typeof(exports) !== 'undefined') { |
Modified gc_core/js/text.js from [f8cb0efb57] to [c6c0eb070c].
1 2 3 4 5 6 | 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 | - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - + + + + + + | // JavaScript "use strict"; const helpers = require("resource://grammalecte/helpers.js"); |
Modified gc_core/js/tokenizer.js from [d06151ccd7] to [4c307bc446].
︙ | |||
68 69 70 71 72 73 74 | 68 69 70 71 72 73 74 75 76 77 78 | + + - + + | } i += nCut; sText = sText.slice(nCut); } } } if (typeof(exports) !== 'undefined') { |
Modified gc_lang/fr/build.py from [580d1c8153] to [04c4e09d96].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 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 | + + + + + + + + + + + | # Builder for French language import os import zipfile from distutils import dir_util, file_util import helpers def build (sLang, dVars, spLangPack): "complementary build launched from make.py" createFirefoxExtension(sLang, dVars) createWebExtension(sLang, dVars) createThunderbirdExtension(sLang, dVars, spLangPack) def createWebExtension (sLang, dVars): "create Web-extension" print("Building Web-extension") helpers.createCleanFolder("_build/webext/"+sLang) dir_util.copy_tree("gc_lang/"+sLang+"/webext/", "_build/webext/"+sLang) dir_util.copy_tree("grammalecte-js", "_build/webext/"+sLang+"/grammalecte") with helpers.cd("_build/webext/"+sLang): os.system("web-ext build") def createFirefoxExtension (sLang, dVars): "create extension for Firefox" print("Building extension for Firefox") helpers.createCleanFolder("_build/xpi/"+sLang) dir_util.copy_tree("gc_lang/"+sLang+"/xpi/", "_build/xpi/"+sLang) dir_util.copy_tree("grammalecte-js", "_build/xpi/"+sLang+"/grammalecte") |
︙ |
Modified gc_lang/fr/config.ini from [94e5221453] to [93c231557b].
1 2 3 4 5 6 7 | 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 |
︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | + + + + + | unopkg = C:/Program Files/LibreOffice 5/program/unopkg.com oxt_version = 6.1 oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR # Firefox fx_identifier = French-GC@grammalecte.net fx_name = Grammalecte [fr] fx_standard_path = C:\Program Files\Mozilla Firefox\firefox.exe fx_beta_path = C:\Program Files\Mozilla Firefox Beta\firefox.exe fx_nightly_path = C:\Program Files (x86)\Nightly\firefox.exe # Thunderbird tb_identifier = French-GC-TB@grammalecte.net tb_name = Grammalecte [fr] tb_debug_extension_path = _build/tb-debug.profile/extensions/French-GC-TB@grammalecte.net # Set Thunderbird folder in your PATH variable # Create a local profile: |
︙ |
Modified gc_lang/fr/data/phonet_simil.txt from [550238569b] to [19cae3457d].
︙ | |||
664 665 666 667 668 669 670 671 672 673 674 675 676 677 | 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | + | somme sommes somment sommeil sommeils sommeille sommeilles sommeillent sommet sommets sommer son sons sont sonnet sonnets sonner sors sort sorts sortie sorties sortis sortit sou sous soue soues souci soucis soucie soucies soucient souper soupers sous-paie sous-paies sous-paient soupir soupirs soupire soupires soupirent soutien soutiens soutient soufflet soufflets soufflé soufflés souffler soufre soufres souffre souffres souffrent souk souks souque souques souquent |
︙ |
Modified gc_lang/fr/modules-js/conj.js from [82dfb400da] to [c280ef8d92].
1 2 3 4 5 6 7 8 | 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 | - - + - - - - - + + + + - + - - - - - - - - - + - - - - - - - - + + + + + - - - + + + + + - - + + - - - - - - - + + + + + + + - + - + - - - - + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - + + + + + + - - - - - - - + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + - - + + - - - - - + + + + + - - - - - - - + + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - + + + + + + - - - + + + - + | // Grammalecte - Conjugueur // License: GPL 3 "use strict"; ${map} |
︙ | |||
321 322 323 324 325 326 327 | 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | - + | } else { sInfi = this.sVerb; } if (bPro) { if (this.bProWithEn) { sInfi = "s’en " + sInfi; } else { |
︙ | |||
346 347 348 349 350 351 352 | 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | - + - + | participePresent (bPro, bNeg, bTpsCo, bInt, bFem) { if (!this.dConj.get(":PQ").get(":P")) { return ""; } let sPartPre; if (bTpsCo) { |
︙ | |||
382 383 384 385 386 387 388 | 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 | - + - + - + - + - + | return ""; } let sConj; if (!bTpsCo && bInt && sWho == ":1s" && this.dConj.get(sTemps)._get(":1ś", false)) { sWho = ":1ś"; } if (bTpsCo) { |
︙ | |||
434 435 436 437 438 439 440 | 422 423 424 425 426 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 | - + - + - + - + - + - + + - - + + + + + + + + + + + + + - - - - - - - - + + + + + + + + | return "on"; } else if (bFem) { return "elle"; } } else if (sWho == ":3p" && bFem) { return "elles"; } |
Modified gc_lang/fr/modules-js/cregex.js from [eb814cc494] to [266ea45a85].
︙ | |||
260 261 262 263 264 265 266 | 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 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | if (lMorph.some(s => zNPf.test(s))) { return false; } return lMorph.some(s => zNPm.test(s)); } |
Modified gc_lang/fr/modules-js/lexicographe.js from [7e54b6b49b] to [762e5e6b63].
︙ | |||
260 261 262 263 264 265 266 | 260 261 262 263 264 265 266 267 268 269 | + - + + | } let nPos = s.indexOf("-"); return _dAD.get(s.slice(0, nPos)) + " +" + _dAD.get(s.slice(nPos+1)); }; } if (typeof(exports) !== 'undefined') { |
Modified gc_lang/fr/modules-js/mfsp.js from [eacc870aa5] to [404b1b695d].
︙ | |||
75 76 77 78 79 80 81 | 75 76 77 78 79 80 81 82 83 84 85 86 87 | + - - - - + + + + + | catch (e) { console.log(e); return "## erreur, code : " + sSfx + " ##"; } } if (typeof(exports) !== 'undefined') { |
Modified gc_lang/fr/modules-js/phonet.js from [7cb5eceb49] to [d425c9d552].
︙ | |||
64 65 66 67 68 69 70 | 64 65 66 67 68 69 70 71 72 73 74 75 | + - - - + + + + | } } } return aSelect; } if (typeof(exports) !== 'undefined') { |
Modified gc_lang/fr/modules-js/textformatter.js from [fcd9e4b1a6] to [b59d078241].
︙ | |||
274 275 276 277 278 279 280 281 282 283 284 285 | 274 275 276 277 278 279 280 281 282 283 284 285 286 | + | return sText; }; getDefaultOptions () { return dDefaultOptions; } } if (typeof(exports) !== 'undefined') { exports.TextFormatter = TextFormatter; exports.oReplTable = oReplTable; } |
Added gc_lang/fr/oxt/_img/Algoo_logo.png version [9509b33506].
cannot compute difference between binary files
Added gc_lang/fr/oxt/_img/logo120_text.png version [c438dd0680].
cannot compute difference between binary files
Modified gc_lang/fr/rules.grx from [ff3f009244] to [b6a34d2842].
︙ | |||
3156 3157 3158 3159 3160 3161 3162 | 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 | - + | <<- morph(\2, ":V2.*:Ip:3s") -2>> =suggVerbPpas(@, ":m:s") # Incohérence : “\1” est une préposition. “\2” est un verbe conjugué. <<- __also__ -1>> a # Confusion probable : “à” est une préposition. Pour le verbe “avoir”, écrivez : <<- __else__ -2>> _ # Incohérence : “\1” est une préposition. “\2” est un verbe conjugué. __[i]/conf(conf_a_à_locutions1)__ (a) (?:nouveau|présent|(?:bonne distance|bord|cause|contre-courant|côté|court|défaut|droite|gauche|l’(?:arrière|autre bout|écart|égard|extérieur|aune|avant|encontre|ins(?:u|tar)|intérieur|opposé)|la (?:portée|suite)|partir|portée|propos|rebours) d(?:es?|u)) @@0 <<- -1>> à # Confusion. Utilisez la préposition “à”. __[s]/conf(conf_a_à_locutions2)__ |
︙ | |||
4385 4386 4387 4388 4389 4390 4391 | 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 | - + | __[i](p_sept_j_sur_sept)__ sept jours sur sept <<- ~>> * __[i](p_vq_h_sur_vq_)__ vingt-quatre heures sur vingt-quatre <<- ~>> * __<i](p_loc_de_début_phrase)__ ^ *(?:et(?: puis|)|puis|car|mais|or donc|m’est avis que) <<- ~>> * __[i](p_à_côté_de)__ à côté (?:de (?:ça|lui|[mt]oi|[nv]ous)|d’(?:elles|eux))(?! et) <<- ~>> * __[i](p_à_la_qqch)__ à la (?:bo(?:nne franquette|urre)|con|dér(?:ive|obée)|diable|fois|leur|limite du supportable|longue|lumière de tout ce(?:ci|la)|manque|mords-moi-le-nœud|papa|petite semaine|pointe du progrès|queue leu leu|ramasse|re(?:nverse|dresse|scousse)|sauvette|surprise générale|virgule près|volée) <<- ~>> * __[i](p_à_heure)__ à \d\d? ?h(?: ?\d\d|)(?: (?:du (?:matin|soir)|de l’après-midi|ce (?:matin|soir)|cet après-midi|demain (?:matin|soir|après-midi)|)|) <<- ~>> * __[i](p_à_loc_qqch1)__ à (?:califourchon|chacun|confesse|contre(?:cœur|temps)|demi-mot|foison|grand-peine|loisir|merveille|moitié|nouveau|outrance|peine|perpétuité|présent|raison|rallonge|rebrousse-poil|reculons|regret|renverse|risque|tâtons|tort|tout-va) <<- ~>> * |
︙ | |||
4465 4466 4467 4468 4469 4470 4471 | 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 | - + | __[i](p_demain)__ (?:après-|avant |)demain(?: matin| soir| après-midi|) <<- ~>> * __[i](p_don_Juan)__ (don) Juan @@0 <<- ~1>> * __[i](p_du_même_ordre_coup)__ du même (?:ordre|coup) <<- ~>> * __[i](p_en_nombre_années)__ en \d\d+(?: ans| années|) <<- ~>> * __[i](p_en_cours)__ en cours(?! d[e’]) <<- ~>> * __[i](p_en_pronom)__ en (?:[mt]oi|eux|elles?) <<- ~>> * __[i](p_en_qqch1)__ en (?:aparté|apparence|arrière|avance|avant|cachette|ceci|cela|clair|commun|conséquence|continu|contrepartie|définitive|détail|direct|douce|effet|émoi|filigrane|général|goguette|hâte|majorité|outre|pâmoison|parallèle|partie|particulier|permanence|personne|pratique|prime|privé|principe|priorité|public|réalité|retour|revanche|rien|rogne|route|secret|silence|somme|suspens|théorie|trompe-l’œil|vain|vérité|ville|vitesse) <<- ~>> * |
︙ | |||
4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 | 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 | + | __[i](p_rouge_à_lèvres)__ rouges? (à lèvres) @@$ <<- ~1>> * __[i](p_sac)__ sacs? (à (?:dos|main|langer|merde|foutre)|de (?:couchage|sport|voyage)) @@$ <<- ~1>> * __[i](p_salle)__ salles? (à manger|d’attente|de (?:bains?|conférence)) @@$ <<- ~1>> * __[i](p_sain_de_corps)__ saine?s? (d(?:e corps et d|)’esprit) @@$ <<- ~1>> * __[i](p_sclérose_en_plaques)__ scléroses? (en plaques) @@$ <<- ~1>> * __[i](p_sembler_paraitre_être)__ (sembl\w+|par[au]\w+) +(être|avoir été) +({w_2}) @@0,w,$ <<- morph(\1, ">(?:sembler|para[îi]tre) ") and morphex(\3, ":A", ":G") ~2>> * __[i](p_silo)__ silos? (à (?:grains?|blé)) @@$ <<- ~1>> * __[i](p_soue_à_cochons)__ soues? (à cochons?) @@$ <<- ~1>> * __[u](p_système)__ systèmes? (d’exploitation|D) @@$ <<- ~1>> * __[i](p_taille)__ taille (\d+) @@$ <<- ~1>> * __[i](p_taux_de_qqch)__ taux (d’(?:abstention|absorption|alcool|alphabétisation|endettement|inflation|intérêt|imposition|occupation|ouverture|œstrogène|urée|usure)|de (?:change|cholest[ée]rol|glycémie|fécondité|participation|testostérone|TVA)) @@$ <<- ~1>> * __[i](p_tête_de_déterré)__ têtes? (de déterrée?s?) @@$ <<- ~1>> * __[i](p_tenir_compte)__ (t[eiî]\w+) +(compte) d(?:es?|u) @@0,w <<- morph(\1, ">tenir ", False) ~2>> * __[i](p_tout_un_chacun)__ (tout un) chacun @@0 <<- ~1>> * __[i](p_tour_de_passe_passe)__ tours? (de passe-passe) @@$ <<- ~1>> * |
︙ |
Added gc_lang/fr/tb/skin/Algoo_logo.png version [59954b3904].
cannot compute difference between binary files
Added gc_lang/fr/webext/README.md version [efab56acd9].
|
Added gc_lang/fr/webext/content_scripts/modify_page.js version [0d51f6815a].
|
Added gc_lang/fr/webext/gce_worker.js version [99453ec31a].