Changes In Branch webext_sharedworker Through [c262fc885d] Excluding Merge-Ins
This is equivalent to a diff from 08f0167b9e to c262fc885d
2017-08-11
| ||
16:33 | [fx] Pas mal de simplifications dans le code, mais le SharedWorker ne se partage toujours pas... Leaf check-in: d51f7da951 user: IllusionPerdu tags: fx, webext_sharedworker | |
10:44 | [fx] Le SharedWorker ne se partage pas dans toutes les fenêtres... Estce à cause de la bidouille ??? check-in: c262fc885d user: IllusionPerdu tags: fx, webext_sharedworker | |
09:48 | [fx] Simple test of previous commit check-in: acd22b9ea0 user: IllusionPerdu 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 [897ba1cfeb].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + - + + + |
|
︙ | |||
53 54 55 56 57 58 59 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | - + | console.log("Unknown command: " + e.data[0]); } } catch (e) { showError(e); } }; |
︙ | |||
154 155 156 157 158 159 160 | 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 | - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | case "conjugueur_tab": xConjTab = browser.tabs.create({ url: browser.extension.getURL("panel/conjugueur.html"), pinned: true }); xConjTab.then(onCreated, onError); break; |
Added gc_lang/fr/webext/content_scripts/communicate.html version [2013884bde].
|
Added gc_lang/fr/webext/content_scripts/communicate.js version [dd49867218].
|
Modified gc_lang/fr/webext/content_scripts/modify_page.js from [a5f9d0af95] to [8eb0661a77].
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 208 209 210 211 | - + + - + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + - - + - - - - - - - - - + + + + + + + + + + + + + + - - - - - - + - - - - - + + + - + - - - - - - - + - - - + - - - - - - + + + + + + + + + + + + + - - - | // Modify page "use strict"; |
︙ |
Modified gc_lang/fr/webext/gce_sharedworker.js from [9a703895dc] to [1348682312].
︙ | |||
55 56 57 58 59 60 61 62 63 | 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 | + + + + + + + + - + - - + + + | /* Message Event Object https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent */ let xListPort = []; let xPort = null; function showError (e) { for (let sParam in e) { console.log(sParam); console.log(e[sParam]); } } |
︙ | |||
99 100 101 102 103 104 105 106 | 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 | + + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + | break; case "fullTests": fullTests(); break; case "getListOfTokens": getListOfTokens(oParam.sText); break; case "other": console.log("[Sharedworker Other] Number of client: "+xListPort.length); console.log("Message to Other"); toReply.Other("Message to Other"); break; case "all": console.log("[Sharedworker All] Number of client: "+xListPort.length); console.log("Message to All"); toReply.All("Message to All"); break; default: |
︙ | |||
128 129 130 131 132 133 134 | 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 | - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + | 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> |
︙ |