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 | 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | - + | } //////// init function load () { try { |
︙ |
Modified gc_core/py/lang_core/gc_engine.py from [dfad6de958] to [25f4682d72].
︙ | |||
284 285 286 287 288 289 290 | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | - + | except ImportError: _createError = _createDictError def load (): global _oDict try: |
︙ |
Modified gc_lang/fr/build.py from [9b9cd2c271] to [580d1c8153].
︙ | |||
49 50 51 52 53 54 55 | 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) |
︙ |
Modified gc_lang/fr/config.ini from [5ccf0657e5] to [c79f625391].
︙ | |||
13 14 15 16 17 18 19 | 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 |
︙ |
Modified make.py from [50653d3e54] to [830a4cf1cb].
︙ | |||
72 73 74 75 76 77 78 | 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 |
︙ | |||
150 151 152 153 154 155 156 | 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) |
︙ |