Grammalecte  Diff

Differences From Artifact [834b678ac5]:

To Artifact [3fef4d51d6]:


189
190
191
192
193
194
195
196

197
198
199
200
201
202

203
204
205
206
207
208
209
189
190
191
192
193
194
195

196






197
198
199
200
201
202
203
204







-
+
-
-
-
-
-
-
+







    spLang = "gc_lang/" + sLang

    dVars = xConfig._sections['args']
    dVars['locales'] = dVars["locales"].replace("_", "-")
    dVars['loc'] = str(dict([ [s, [s[0:2], s[3:5], ""]] for s in dVars["locales"].split(" ") ]))

    ## COMPILE RULES
    print("> read rules file...")
    dResult = compile_rules.make(spLang, dVars['lang'], bJavaScript)
    try:
        lRules = open(spLang + "/rules.grx", 'r', encoding="utf-8").readlines()
    except:
        print("Rules file in project [" + sLang + "] not found")
        return
    dVars.update(compile_rules.make(lRules, dVars['lang'], bJavaScript))
    dVars.update(dResult)

    ## READ GRAMMAR CHECKER PLUGINS
    print("PYTHON:")
    print("+ Plugins: ", end="")
    sCodePlugins = ""
    for sf in os.listdir(spLang+"/modules"):
        if re.match(r"gce_\w+[.]py$", sf):