Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [graphspell][js] fucking \w substitution again |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | graphspell |
Files: | files | file ages | folders |
SHA3-256: | 78254a66290943eadb1aa037aab1de0e |
User & Date: | olr 2018-12-26 18:10:38 |
Context
2018-12-26
| ||
18:25 | [graphspell][js] fucking \w substitution again check-in: 7f03f6c55a user: olr tags: graphspell, trunk | |
18:10 | [graphspell][js] fucking \w substitution again check-in: 78254a6629 user: olr tags: graphspell, trunk | |
12:01 | [fr] faux positifs check-in: f9acbc2537 user: olr tags: fr, trunk | |
Changes
Changes to graphspell-js/tokenizer.js.
40 40 [/^\[\/?[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-st]+\]/, 'PSEUDOHTML'], 41 41 [/^&\w+;(?:\w+;|)/, 'HTMLENTITY'], 42 42 [/^(?:l|d|n|m|t|s|j|c|ç|lorsqu|puisqu|jusqu|quoiqu|qu)['’`]/i, 'WORD_ELIDED'], 43 43 [/^\d\d?[hm]\d\d\b/, 'HOUR'], 44 44 [/^\d+(?:ers?\b|nds?\b|es?\b|des?\b|ièmes?\b|èmes?\b|emes?\b|ᵉʳˢ?|ⁿᵈˢ?|ᵉˢ?|ᵈᵉˢ?)/, 'WORD_ORDINAL'], 45 45 [/^\d+(?:[.,]\d+|)/, 'NUM'], 46 46 [/^[%‰+=*/<>⩾⩽-]/, 'SIGN'], 47 - [/^[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-stᴀ-ᶿ_]+(?:[’'`-][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-stᴀ-ᶿ_]+)*/, 'WORD'] 47 + [/^[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-stᴀ-ᶿˢᵈ_]+(?:[’'`-][a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-stᴀ-ᶿˢᵈ_]+)*/, 'WORD'] 48 48 ] 49 49 }; 50 50 51 51 52 52 class Tokenizer { 53 53 54 54 constructor (sLang) {