Overview
Comment: | [build] fix build |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | build |
Files: | files | file ages | folders |
SHA3-256: |
ba196f25219298ec60f1dcebb52d5243 |
User & Date: | olr on 2018-01-03 15:47:03 |
Other Links: | manifest | tags |
Context
2018-01-04
| ||
09:03 | [fr] faux positif avec si bien que + correction d’un bug de suggestion avec flanc check-in: 69ec8495eb user: olr tags: trunk, fr | |
2018-01-03
| ||
15:47 | [build] fix build check-in: ba196f2521 user: olr tags: trunk, build | |
2018-01-02
| ||
10:30 | [graphspell] deprecated code check-in: c915d50f4a user: olr tags: trunk, graphspell | |
Changes
Modified gc_lang/fr/config.ini from [6a6145331a] to [874aca7947].
︙ | |||
13 14 15 16 17 18 19 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | - + | description = Correcteur grammatical pour le français. extras = README_fr.txt logo = logo.png # lexicon source lexicon_src = lexicons/French.lex # binary dictionary name |
︙ |
Modified gc_lang/fr/modules/tests.py from [3069e3edd1] to [f1c386c508].
︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - + | return s.replace("\u2019", "'").replace("\u2013", "–").replace("\u2014", "—") class TestDictionary (unittest.TestCase): @classmethod def setUpClass (cls): |
︙ |
Modified make.py from [219363c68b] to [72eca8b4d4].
︙ | |||
220 221 222 223 224 225 226 | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | - + | helpers.createCleanFolder(spLangPack) for sf in os.listdir("gc_core/py/lang_core"): if not os.path.isdir("gc_core/py/lang_core/"+sf): helpers.copyAndFileTemplate("gc_core/py/lang_core/"+sf, spLangPack+"/"+sf, dVars) print("+ Modules: ", end="") for sf in os.listdir(spLang+"/modules"): if not sf.startswith(("gce_", "__pycache__")): |
︙ | |||
301 302 303 304 305 306 307 | 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | - - + + + - - + + - + | for sf in os.listdir("graphspell-js"): if not os.path.isdir("graphspell-js/"+sf): file_util.copy_file("graphspell-js/"+sf, "grammalecte-js/graphspell") helpers.copyAndFileTemplate("graphspell-js/"+sf, "grammalecte-js/graphspell/"+sf, dVars) def copyGraphspellDictionary (dVars, bJavaScript=False): |
︙ |