Changes In Branch rg Through [fd12f98d29] Excluding Merge-Ins
This is equivalent to a diff from f2d8271145 to fd12f98d29
| 2018-06-03 | ||
| 13:51 | [build][core] gc engine update check-in: 1d9246b161 user: olr tags: core, build, rg | |
| 09:05 | [graphspell] default suggestions for French language check-in: fd12f98d29 user: olr tags: graphspell, rg | |
| 08:32 | [graphspell] default suggestions for French language check-in: 7290d51bd9 user: olr tags: graphspell, rg | |
| 2018-05-16 | ||
| 16:22 | [fr] pt: descente aux enfers/flambeaux check-in: b5310203be user: olr tags: trunk, fr | |
| 16:14 | [build][core] rules graph: first draft check-in: 061252f41e user: olr tags: core, build, rg | |
| 11:58 | [graphspell][bug] fix affixes occurrences calculation check-in: f2d8271145 user: olr tags: trunk, graphspell | |
| 2018-05-15 | ||
| 12:51 | [fr] test contre faux positif check-in: f8bf9c3922 user: olr tags: trunk, fr | |
Modified compile_rules.py from [1ea2b6d97a] to [394c512707].
| ︙ | |||
| 456 457 458 459 460 461 462 | 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | - + | 
            m = re.match("DEF: +([a-zA-Z_][a-zA-Z_0-9]*) +(.+)$", sLine.strip())
            if m:
                dDEF["{"+m.group(1)+"}"] = m.group(2)
            else:
                print("Error in definition: ", end="")
                print(sLine.strip())
        elif sLine.startswith("TEST:"):
 | 
| ︙ | |||
| 540 541 542 543 544 545 546 | 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 | - - + + | 
    displayStats(lParagraphRules, lSentenceRules)
    print("Unnamed rules: " + str(nRULEWITHOUTNAME))
    d = { "callables": sPyCallables,
          "callablesJS": sJSCallables,
 | 
Added compile_rules_graph.py version [e2184e369e].