Changes In Branch webext_sharedworker Through [db25c98bc2] Excluding Merge-Ins
This is equivalent to a diff from 08f0167b9e to db25c98bc2
| 2017-08-11 | ||
| 06:05 | [fx] some code cleaning + another test check-in: b1dd1ce191 user: olr tags: fx, webext_sharedworker | |
| 2017-08-10 | ||
| 21:20 | [fx] Use only the Sharedworker (cleanup code in background) check-in: db25c98bc2 user: IllusionPerdu tags: fx, webext_sharedworker | |
| 18:25 | [fx] Fix previous commit check-in: 438b74bcdf user: IllusionPerdu tags: fx, webext_sharedworker | |
| 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/comunicate.html version [5f977884e2].
| 
 | 
Added gc_lang/fr/webext/content_scripts/comunicate.js version [9a6ca194be].
| 
 | 
Modified gc_lang/fr/webext/content_scripts/modify_page.js from [a5f9d0af95] to [64fb970984].
| 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 | - + + - + + - - - + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + - - - - + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + - - - + + + - - + - - - - - - - - - + + + + + + + + + + + + + + - - - - - - + - - - - - + + + - + - - - - - - - + - - - + - - - - - - + + + + + + + + + + + + - - - | // 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 [9c74237e70].
| ︙ | |||
| 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",
 | 
| ︙ |