Overview
Comment: | [core][fr] suggestions: gestion des verbes composés |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fr | core | rg |
Files: | files | file ages | folders |
SHA3-256: |
36063d3f6e75afb72facc997984bb1f4 |
User & Date: | olr on 2018-08-14 10:14:19 |
Other Links: | branch diff | manifest | tags |
Context
2018-08-14
| ||
16:24 | [fr] conversion: regex rules -> graph rules (formes impératives) check-in: 531af6d204 user: olr tags: fr, rg | |
10:14 | [core][fr] suggestions: gestion des verbes composés check-in: 36063d3f6e user: olr tags: fr, core, rg | |
10:09 | [fr] conversion: regex rules -> graph rules (formes interrogatives + réorganisation) check-in: ac492b2ae2 user: olr tags: fr, rg | |
Changes
Modified gc_lang/fr/modules/gce_suggestions.py from [2926468975] to [98d695754d].
1 2 3 4 5 6 7 8 9 | #### GRAMMAR CHECKING ENGINE PLUGIN: Suggestion mechanisms from . import conj from . import mfsp from . import phonet ## Verbs | > > > > > > > > > > > > | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #### GRAMMAR CHECKING ENGINE PLUGIN: Suggestion mechanisms from . import conj from . import mfsp from . import phonet ## Verbs def splitVerb (sVerb): "renvoie le verbe et les pronoms séparément" iRight = sVerb.rfind("-") sSuffix = sVerb[iRight:] sVerb = sVerb[:iRight] if sVerb.endswith(("-t", "-le", "-la", "-les")): iRight = sVerb.rfind("-") sSuffix = sVerb[iRight:] + sSuffix sVerb = sVerb[:iRight] return sVerb, sSuffix def suggVerb (sFlex, sWho, funcSugg2=None, bVC=False): "change <sFlex> conjugation according to <sWho>" if bVC: sFlex, sSfx = splitVerb(sFlex) aSugg = set() for sStem in _oSpellChecker.getLemma(sFlex): tTags = conj._getTags(sStem) if tTags: # we get the tense aTense = set() for sMorph in _oSpellChecker.getMorph(sFlex): |
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | if conj._hasConjWithTags(tTags, sTense, sWho): aSugg.add(conj._getConjWithTags(sStem, tTags, sTense, sWho)) if funcSugg2: aSugg2 = funcSugg2(sFlex) if aSugg2: aSugg.add(aSugg2) if aSugg: return "|".join(aSugg) return "" def suggVerbPpas (sFlex, sPattern=None): "suggest past participles for <sFlex>" aSugg = set() | > > | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | if conj._hasConjWithTags(tTags, sTense, sWho): aSugg.add(conj._getConjWithTags(sStem, tTags, sTense, sWho)) if funcSugg2: aSugg2 = funcSugg2(sFlex) if aSugg2: aSugg.add(aSugg2) if aSugg: if bVC: aSugg = list(map(lambda sSug: sSug + sSfx, aSugg)) return "|".join(aSugg) return "" def suggVerbPpas (sFlex, sPattern=None): "suggest past participles for <sFlex>" aSugg = set() |
︙ | ︙ | |||
375 376 377 378 379 380 381 | def hasSimil (sWord, sPattern=None): "return True if there is words phonetically similar to <sWord> (according to <sPattern> if required)" return phonet.hasSimil(sWord, sPattern) | | > > > > | 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 | def hasSimil (sWord, sPattern=None): "return True if there is words phonetically similar to <sWord> (according to <sPattern> if required)" return phonet.hasSimil(sWord, sPattern) def suggSimil (sWord, sPattern=None, bSubst=False, bVC=False): "return list of words phonetically similar to sWord and whom POS is matching sPattern" if bVC: sWord, sSfx = splitVerb(sWord) aSugg = phonet.selectSimil(sWord, sPattern) for sMorph in _oSpellChecker.getMorph(sWord): aSugg.update(conj.getSimil(sWord, sMorph, bSubst)) break if aSugg: if bVC: aSugg = list(map(lambda sSug: sSug + sSfx, aSugg)) return "|".join(aSugg) return "" def suggCeOrCet (sWord): "suggest “ce” or “cet” or both according to the first letter of <sWord>" if re.match("(?i)[aeéèêiouyâîï]", sWord): |
︙ | ︙ |