Overview
| Comment: | [build] use sValue for paramater in hasSimil() |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | build | rg |
| Files: | files | file ages | folders |
| SHA3-256: |
44aed32859fa61264c2434b46549e7f0 |
| User & Date: | olr on 2018-07-09 15:49:35 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-07-09
| ||
| 15:50 | [fr] faux positifs: ce +être check-in: 072d16ac54 user: olr tags: fr, rg | |
| 15:49 | [build] use sValue for paramater in hasSimil() check-in: 44aed32859 user: olr tags: build, rg | |
| 15:43 | [fr] conversion: regex rules -> graph rules check-in: f7ea386d70 user: olr tags: fr, rg | |
Changes
Modified compile_rules_graph.py from [cca8a6a75e] to [9ae99796bb].
| ︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | - + |
def prepareFunction (s, bTokenValue=False):
"convert simple rule syntax to a string of Python code"
s = s.replace("__also__", "bCondMemo")
s = s.replace("__else__", "not bCondMemo")
s = re.sub(r"(morph|analyse|value|displayInfo)[(]\\(\d+)", 'g_\\1(lToken[\\2+nTokenOffset]', s)
s = re.sub(r"(select|exclude|define)[(][\\](\d+)", 'g_\\1(lToken[\\2+nTokenOffset]', s)
s = re.sub(r"(tag_before|tag_after)[(][\\](\d+)", 'g_\\1(lToken[\\2+nTokenOffset], dTags', s)
|
| ︙ |