Overview
Comment: | [build] use one dictionary name instead of two |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | build |
Files: | files | file ages | folders |
SHA3-256: |
cfc69abb68684fd5093873d5434f544e |
User & Date: | olr on 2017-06-23 19:23:42 |
Other Links: | manifest | tags |
Context
2017-06-23
| ||
21:05 | [fr] nr: confusion <ce à quoi> check-in: 27b298ee05 user: olr tags: trunk, fr | |
19:23 | [build] use one dictionary name instead of two check-in: cfc69abb68 user: olr tags: trunk, build | |
17:25 | [core] str_transform: change functions names check-in: 766f20e23c user: olr tags: trunk, core | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [908b008d84] to [c712d65b9e].
︙ | ︙ | |||
293 294 295 296 297 298 299 | } //////// init function load () { try { | | | 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | } //////// init function load () { try { _oDict = new ibdawg.IBDAWG("${dic_name}.json"); } catch (e) { helpers.logerror(e); } } function setOption (sOpt, bVal) { |
︙ | ︙ |
Modified gc_core/py/lang_core/gc_engine.py from [dfad6de958] to [25f4682d72].
︙ | ︙ | |||
284 285 286 287 288 289 290 | except ImportError: _createError = _createDictError def load (): global _oDict try: | | | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | except ImportError: _createError = _createDictError def load (): global _oDict try: _oDict = IBDAWG("${dic_name}.bdic") except: traceback.print_exc() def setOption (sOpt, bVal): if sOpt in _dOptions: _dOptions[sOpt] = bVal |
︙ | ︙ |
Modified gc_lang/fr/build.py from [9b9cd2c271] to [580d1c8153].
︙ | ︙ | |||
49 50 51 52 53 54 55 | def createThunderbirdExtension (sLang, dVars, spLangPack): "create extension for Thunderbird" print("Building extension for Thunderbird") sExtensionName = dVars['tb_identifier'] + "-v" + dVars['version'] + '.xpi' spfZip = "_build/" + sExtensionName hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) | | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | def createThunderbirdExtension (sLang, dVars, spLangPack): "create extension for Thunderbird" print("Building extension for Thunderbird") sExtensionName = dVars['tb_identifier'] + "-v" + dVars['version'] + '.xpi' spfZip = "_build/" + sExtensionName hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) _copyGrammalecteJSPackageInZipFile(hZip, spLangPack, dVars['dic_name']+".json") for spf in ["LICENSE.txt", "LICENSE.fr.txt"]: hZip.write(spf) dVars = _createOptionsForThunderbird(dVars) helpers.addFolderToZipAndFileFile(hZip, "gc_lang/"+sLang+"/tb", "", dVars, True) hZip.write("gc_lang/"+sLang+"/xpi/gce_worker.js", "worker/gce_worker.js") spDict = "gc_lang/"+sLang+"/xpi/data/dictionaries" for sp in os.listdir(spDict): |
︙ | ︙ |
Modified gc_lang/fr/config.ini from [5ccf0657e5] to [c79f625391].
︙ | ︙ | |||
13 14 15 16 17 18 19 | extras = README_fr.txt logo = logo.png # lexicon source lexicon_src = lexicons/French.lex # binary dictionary name dic_name = French | < < | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | extras = README_fr.txt logo = logo.png # lexicon source lexicon_src = lexicons/French.lex # binary dictionary name dic_name = French # Finite state automaton compression: 1, 2 (experimental) or 3 (experimental) fsa_method = 1 # stemming method: S for suffixes only, A for prefixes and suffixes stemming_method = S # LibreOffice unopkg = C:/Program Files/LibreOffice 5/program/unopkg.com |
︙ | ︙ |
Modified make.py from [50653d3e54] to [830a4cf1cb].
︙ | ︙ | |||
72 73 74 75 76 77 78 | def createOXT (spLang, dVars, dOxt, spLangPack, bInstall): "create extension for Writer" print("Building extension for Writer") spfZip = "_build/" + dVars['name'] + "-"+ dVars['lang'] +"-v" + dVars['version'] + '.oxt' hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) # Package and parser | | | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | def createOXT (spLang, dVars, dOxt, spLangPack, bInstall): "create extension for Writer" print("Building extension for Writer") spfZip = "_build/" + dVars['name'] + "-"+ dVars['lang'] +"-v" + dVars['version'] + '.oxt' hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) # Package and parser copyGrammalectePyPackageInZipFile(hZip, spLangPack, dVars['dic_name']+".bdic", "pythonpath/") hZip.write("cli.py", "pythonpath/cli.py") # Extension files hZip.writestr("META-INF/manifest.xml", helpers.fileFile("gc_core/py/oxt/manifest.xml", dVars)) hZip.writestr("description.xml", helpers.fileFile("gc_core/py/oxt/description.xml", dVars)) hZip.writestr("Linguistic.xcu", helpers.fileFile("gc_core/py/oxt/Linguistic.xcu", dVars)) hZip.writestr("Grammalecte.py", helpers.fileFile("gc_core/py/oxt/Grammalecte.py", dVars)) |
︙ | ︙ | |||
150 151 152 153 154 155 156 | hDst.write("html = 1\n") def createServerZip (sLang, dVars, spLangPack): "create server zip" spfZip = "_build/" + dVars['name'] + "-"+ dVars['lang'] +"-v" + dVars['version'] + '.zip' hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) | | | 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | hDst.write("html = 1\n") def createServerZip (sLang, dVars, spLangPack): "create server zip" spfZip = "_build/" + dVars['name'] + "-"+ dVars['lang'] +"-v" + dVars['version'] + '.zip' hZip = zipfile.ZipFile(spfZip, mode='w', compression=zipfile.ZIP_DEFLATED) copyGrammalectePyPackageInZipFile(hZip, spLangPack, dVars['dic_name']+".bdic") for spf in ["cli.py", "server.py", "bottle.py", "server_options._global.ini", "server_options."+sLang+".ini", \ "README.txt", "LICENSE.txt", "LICENSE.fr.txt"]: hZip.write(spf) hZip.writestr("setup.py", helpers.fileFile("gc_lang/fr/setup.py", dVars)) def copyGrammalectePyPackageInZipFile (hZip, spLangPack, sDicName, sAddPath=""): |
︙ | ︙ |