Overview
Comment: | [build][core][fr] rename function |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fr | core | build |
Files: | files | file ages | folders |
SHA3-256: |
261ec1c90bb719b1049b51d84b7c5393 |
User & Date: | olr on 2020-11-26 12:30:38 |
Other Links: | manifest | tags |
Context
2020-11-27
| ||
09:52 | [core] tests: extend neutralization for spellchecker check-in: f667bcada7 user: olr tags: trunk, core | |
2020-11-26
| ||
12:30 | [build][core][fr] rename function check-in: 261ec1c90b user: olr tags: trunk, fr, core, build | |
07:12 | [build][core][fr][doc] rename functions check-in: b316995bfc user: olr tags: trunk, fr, core, build, doc | |
Changes
Modified compile_rules_graph.py from [7091a2b5a1] to [ae796c907e].
︙ | |||
42 43 44 45 46 47 48 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | - - + + | sCode = re.sub(r"\b(morph0?|morphVC|value|tag|meta|info)[(]\\-(\d+)", 'g_\\1(lToken[nLastToken-\\2+1]', sCode) sCode = re.sub(r"\b(select|exclude|define|definefrom|rewrite|addmorph|setmeta)[(][\\](\d+)", 'g_\\1(lToken[nTokenOffset+\\2]', sCode) sCode = re.sub(r"\b(select|exclude|define|definefrom|rewrite|addmorph|setmeta)[(][\\]-(\d+)", 'g_\\1(lToken[nLastToken-\\2+1]', sCode) sCode = re.sub(r"\b(tagbefore|tagafter)[(][\\](\d+)", 'g_\\1(lToken[nTokenOffset+\\2], dTags', sCode) sCode = re.sub(r"\b(tagbefore|tagafter)[(][\\]-(\d+)", 'g_\\1(lToken[nLastToken-\\2+1], dTags', sCode) sCode = re.sub(r"\bspace[(][\\](\d+)", 'g_space(lToken[nTokenOffset+\\1], lToken[nTokenOffset+\\1+1]', sCode) sCode = re.sub(r"\bspace[(][\\]-(\d+)", 'g_space(lToken[nLastToken-\\1+1], lToken[nLastToken-\\1+2]', sCode) |
︙ |
Modified gc_core/js/lang_core/gc_functions.js from [56e86460e7] to [1f04b155c5].
︙ | |||
265 266 267 268 269 270 271 | 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | - + | } } } // search sPattern return lMorph.some(sMorph => (sMorph.search(sPattern) !== -1)); } |
︙ |
Modified gc_core/py/lang_core/gc_functions.py from [5fef80fdf0] to [fb2b86ce70].
︙ | |||
219 220 221 222 223 224 225 | 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | - + | if any(zNegPattern.search(sMorph) for sMorph in lMorph): return False # search sPattern zPattern = re.compile(sPattern) return any(zPattern.search(sMorph) for sMorph in lMorph) |
︙ |
Modified gc_lang/fr/rules.grx from [5ff861bc84] to [bcfa5485c2].
︙ | |||
2764 2765 2766 2767 2768 2769 2770 | 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 | - + | <<- =>> define(\1, ":N:e:i") Mai 68 <<- ~>> ␣ <<- =>> define(\1, ":MP:m:i") ~^[A-ZÀÂÉÈÊÎÔ]. ~^[A-ZÀÂÉÈÊÎÔ]. |
︙ | |||
5083 5084 5085 5086 5087 5088 5089 | 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 | - + - + - + - + - + | TEST: des {{franco américains}} TEST: {{franco américaine}} ->> franco-américaine TEST: l’{{israélo belge}} __tu_préfixe_xxxo__ [macro|magnéto|micro|paléo|rétro|rhino|stéréo] *WORD |
︙ | |||
5134 5135 5136 5137 5138 5139 5140 | 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 | - + - + - + - + | TEST: il n’avait contracté qu’un {{pseudo mariage}}. TEST: elle connaissait de {{cet}} pseudo-prêtresse uniquement de nom. TEST: la {{pseudo taxe}} carbone __tu_mots_composés_verbe_nom__ [contre|entre] *WORD |
︙ |
Modified misc/grammalecte.sublime-syntax from [575daf5fb0] to [215e477290].
︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - + | # other. - match: '\b(?:if|else|and|or|not|in)\b' scope: keyword.python - match: '\b(?:True|False|None)\b' scope: constant.language |
︙ |