Overview
Comment: | [graphspell][fix] tokenizer: new signs |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | graphspell | rg |
Files: | files | file ages | folders |
SHA3-256: |
303c416286fcab7c8f0de0a9777e291e |
User & Date: | olr on 2018-06-18 20:13:29 |
Other Links: | branch diff | manifest | tags |
Context
2018-06-19
| ||
06:58 | [fr] conversion: regex rules -> graph rules check-in: 086df67518 user: olr tags: fr, rg | |
2018-06-18
| ||
20:13 | [graphspell][fix] tokenizer: new signs check-in: 303c416286 user: olr tags: graphspell, rg | |
20:12 | [graphspell] tokenizer: new signs check-in: da0d308818 user: olr tags: graphspell, rg | |
Changes
Modified graphspell-js/tokenizer.js from [1ab7d18bed] to [5f94dc04ea].
︙ | |||
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | - + - + | const aTkzPatterns = { // All regexps must start with ^. "default": [ [/^[ \t]+/, 'SPACE'], [/^\/(?:~|bin|boot|dev|etc|home|lib|mnt|opt|root|sbin|tmp|usr|var|Bureau|Documents|Images|Musique|Public|Téléchargements|Vidéos)(?:\/[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-st_.()-]+)*/, 'FOLDERUNIX'], [/^[a-zA-Z]:\\(?:Program Files(?: \(x86\)|)|[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-st.()]+)(?:\\[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯfi-st_.()-]+)*/, 'FOLDERWIN'], |
︙ |