Changes In Branch webext_sharedworker Through [e95b59c0d0] Excluding Merge-Ins
This is equivalent to a diff from 08f0167b9e to e95b59c0d0
2017-08-11
| ||
11:06 | [fx] use objects for communication with SharedWorker (normalization) check-in: 8f064f32f6 user: olr tags: fx, we_sw | |
09:27 | [fx] Add the possibility to send reply to all or other check-in: d2e1bf16aa user: IllusionPerdu tags: fx, webext_sharedworker | |
07:49 | [fx] fix previous commit check-in: e95b59c0d0 user: olr tags: fx, webext_sharedworker | |
07:35 | [fx] commited by mistake (not working) check-in: 19934834b3 user: olr tags: fx, webext_sharedworker | |
2017-08-10
| ||
14:08 | Create new branch named "webext_sharedworker" check-in: 976290fcbe user: IllusionPerdu tags: webext_sharedworker | |
09:59 | [fx] content-script interface + remove SharedWorker check-in: e026bff1c5 user: olr tags: fx, webext2 | |
2017-08-09
| ||
19:33 | [fx] Correct the intialisation of the SharedWorker check-in: 08f0167b9e user: IllusionPerdu tags: fx, webext2 | |
18:11 | [fx] SharedWorker attempt (not working in content script) + lexicographer panel check-in: 4e34f03093 user: olr tags: fx, webext2 | |
Modified gc_lang/fr/webext/background.js from [eb2f1b3278] to [b961377700].
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 16 17 18 19 20 21 | - + + + | // Background "use strict"; function showError (e) { console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message); } /* Worker (separate thread to avoid freezing Firefox) */ |
︙ | |||
174 175 176 177 178 179 180 | 176 177 178 179 180 181 182 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | type: 'panel', url: browser.extension.getURL("panel/conjugueur.html"), top: top, left: left, width: width, height: height, }); browser.windows.update(xWin.id, { top:top, left:left, }); // firefox currently ignores top and left in .create(), so move it here console.log("Async done"); } //newwin(); |
Added gc_lang/fr/webext/content_scripts/communicate.html version [2013884bde].
|
Added gc_lang/fr/webext/content_scripts/communicate.js version [f425809667].
|
Modified gc_lang/fr/webext/content_scripts/modify_page.js from [a5f9d0af95] to [639403006b].
1 2 3 4 | 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 | - + + - + - - - - - - - + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + - - - + + + - - + - - - - - - - - - + + + + + + + + + + + + + + - - - - - - + - - - - - + + + - + - - - - - - - + - - - + - - - - - - + + + + + + + + + + + + + - - - | // Modify page "use strict"; |
︙ |
Modified gc_lang/fr/webext/gce_sharedworker.js from [9a703895dc] to [deea68b2b7].
︙ | |||
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 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 | + + + + + + + + | /* Message Event Object https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent */ let xPort = null; function showError (e) { for (let sParam in e) { console.log(sParam); console.log(e[sParam]); } } onconnect = function(e) { console.log("START CONNECTION"); xPort = e.ports[0]; xPort.onmessage = function (e) { console.log("[Sharedworker] ONMESSAGE"); console.log(e); console.log(e.data[0]); let oParam = e.data[1]; switch (e.data[0]) { case "init": loadGrammarChecker(oParam.sExtensionPath, oParam.sOptions, oParam.sContext); break; |
︙ | |||
100 101 102 103 104 105 106 | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | - + | case "fullTests": fullTests(); break; case "getListOfTokens": getListOfTokens(oParam.sText); break; default: |
︙ | |||
128 129 130 131 132 133 134 | 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | - + | oDict = gc_engine.getDictionary(); oTest = new TestGrammarChecking(gc_engine, sExtensionPath+"/grammalecte/fr/tests_data.json"); oLxg = new Lexicographe(oDict); if (sGCOptions !== "") { gc_engine.setOptions(helpers.objectToMap(JSON.parse(sGCOptions))); } oTokenizer = new Tokenizer("fr"); |
︙ |
Modified gc_lang/fr/webext/manifest.json from [1400a7a766] to [a125616a8e].
︙ | |||
40 41 42 43 44 45 46 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | - + + + + | } ], "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 [152e200e98] to [6809bc8ca4].
︙ | |||
34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | + | </div> --> <div id="page"> <section id="home_page" class="page"> <h1>GRAMMALECTE</h1> <a href="https://www.dicollecte.org/test.html">TEST TEXTAREA</a> </section> <section id="gc_page" class="page"> <h1>CORRECTEUR GRAMMATICAL</h1> <div id="paragraphs_list"></div> </section> |
︙ |