Grammalecte  Check-in [fa0b1a589f]

Overview
Comment:[build] code clarification in make.py [fr] ajustements
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | fr | build
Files: files | file ages | folders
SHA3-256: fa0b1a589f5d731b41248ee16b5a2b0fafa271dffc5193bfd39ec16c4a44bd74
User & Date: olr on 2020-04-02 19:09:57
Original Comment: [build] code clarificationin make.py
Other Links: manifest | tags
Context
2020-04-02
22:14
[fr] ajustements check-in: a8252cd6f4 user: olr tags: trunk, fr
19:09
[build] code clarification in make.py [fr] ajustements check-in: fa0b1a589f user: olr tags: trunk, fr, build
16:29
[fx] fix button popping up check-in: dbc7721c60 user: olr tags: trunk, fx
Changes

Modified gc_lang/fr/rules.grx from [6b1de9b024] to [305f070c07].

12700
12701
12702
12703
12704
12705
12706

12707
12708
12709
12710
12711
12712
12713
12700
12701
12702
12703
12704
12705
12706
12707
12708
12709
12710
12711
12712
12713
12714







+







    sans difficulté ?[apparente|aucune|financière|majeure|particulière]¿
    sans dire mot
    sans en avoir conscience
    sans états d’ âme
    sans [m’|t’|s’|nous|vous] en apercevoir
    sans [m’|t’|s’|nous|vous] en rendre compte
    sans [me|m’|te|t’|se|s’|nous|vous] faire [attendre|avoir|comprendre|désirer|entendre|prier|remarquer|repérer|surprendre|voir]
    sans [me|m’|te|t’|se|s’|nous|vous] douter de rien
    sans faire [de|d’] vagues
    sans foi ?,¿ ni loi
    sans [le|l’] faire exprès
    sans [le|l’] vouloir
    sans l’ aide [de|d’] personne
    sans l’ ombre d’ un doute
    sans mot dire

Modified make.py from [88a0d18ea6] to [1c6f30e738].

453
454
455
456
457
458
459

460

461
462
463
464
465
466






467
468
469




470
471
472
473
474
475
476
453
454
455
456
457
458
459
460

461
462





463
464
465
466
467
468



469
470
471
472
473
474
475
476
477
478
479







+
-
+

-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
+
+
+







                    if xArgs.tests:
                        xTestSuite = unittest.TestLoader().loadTestsFromModule(tests)
                        unittest.TextTestRunner().run(xTestSuite)
                    if xArgs.perf or xArgs.perf_memo:
                        hDst = open("./gc_lang/"+sLang+"/perf_memo.txt", "a", encoding="utf-8", newline="\n")  if xArgs.perf_memo  else None
                        tests.perf(sVersion, hDst)

            # JavaScript linter
            if xArgs.firefox or xArgs.firefox_nightly:
            if xArgs.lint_web_ext:
                with helpers.CD("_build/webext/"+sLang):
                    if xArgs.lint_web_ext:
                        os.system(r'web-ext lint -o text')
                    if xArgs.firefox:
                        # Firefox Developper edition
                        spfFirefox = dVars['win_fx_dev_path']  if platform.system() == "Windows"  else dVars['linux_fx_dev_path']
                    os.system(r'web-ext lint -o text')

            # Firefox
            if xArgs.firefox:           # Firefox Developer edition
                with helpers.CD("_build/webext/"+sLang):
                    spfFirefox = dVars['win_fx_dev_path']  if platform.system() == "Windows"  else dVars['linux_fx_dev_path']
                    else:
                        # Firefox Nightly edition
                        spfFirefox = dVars['win_fx_nightly_path']  if platform.system() == "Windows"  else dVars['linux_fx_nightly_path']
                    os.system(r'web-ext run --firefox="' + spfFirefox + '" --browser-console')
            if xArgs.firefox_nightly:   # Firefox Nightly edition
                with helpers.CD("_build/webext/"+sLang):
                    spfFirefox = dVars['win_fx_nightly_path']  if platform.system() == "Windows"  else dVars['linux_fx_nightly_path']
                    os.system(r'web-ext run --firefox="' + spfFirefox + '" --browser-console')
                    # https://github.com/mozilla/web-ext/issues/932
                    # os.system(r'web-ext run --firefox="' + spfFirefox + r'" --browser-console --firefox-profile=C:\Users\EAK\AppData\Roaming\Mozilla\Firefox\Profiles\e26559tw.debug --keep-profile-changes')

            # Thunderbird
            if xArgs.thunderbird:
                spfThunderbird = '"'+dVars['win_tb_path']+'"'  if platform.system() == "Windows"  else dVars['linux_tb_path']