Overview
Comment: | [graphspell][js] tokenizer: tag SEPARATOR -> PUNC |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | graphspell |
Files: | files | file ages | folders |
SHA3-256: |
75bf92c9c21972be78c3966b56b7293f |
User & Date: | olr on 2019-05-22 08:24:17 |
Other Links: | manifest | tags |
Context
2019-05-22
| ||
08:27 | [fx] gc panel: fix default size check-in: 0d0699cca2 user: olr tags: trunk, fx | |
08:24 | [graphspell][js] tokenizer: tag SEPARATOR -> PUNC check-in: 75bf92c9c2 user: olr tags: trunk, graphspell | |
07:59 | [core][graphspell][js] fix regex for \w substitution check-in: e40149ad94 user: olr tags: trunk, core, graphspell | |
Changes
Modified graphspell-js/tokenizer.js from [5b1f96af0f] to [3e1b39918e].
︙ | |||
11 12 13 14 15 16 17 | 11 12 13 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 | - + - + | 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ø-ÿØ-ßĀ-ʯff-st_.()-]+)*/, 'FOLDERUNIX'], [/^[a-zA-Z]:\\(?:Program Files(?: \(x86\)|)|[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st.()]+)(?:\\[a-zA-Zà-öÀ-Ö0-9ø-ÿØ-ßĀ-ʯff-st_.()-]+)*/, 'FOLDERWIN'], |
︙ |