Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
BidiMirroring.txt | D | 03-May-2024 | 23.4 KiB | 589 | 584 | |
DerivedCombiningClass.txt | D | 03-May-2024 | 107.2 KiB | 1,882 | 1,656 | |
DerivedGeneralCategory.txt | D | 03-May-2024 | 185.5 KiB | 3,073 | 2,949 | |
GraphemeBreakProperty.txt | D | 03-May-2024 | 72.1 KiB | 1,167 | 1,128 | |
README | D | 03-May-2024 | 925 | 18 | 13 | |
Scripts.txt | D | 03-May-2024 | 106.2 KiB | 1,748 | 1,511 | |
category-parse.py | D | 03-May-2024 | 2.2 KiB | 71 | 58 | |
category-properties.h | D | 03-May-2024 | 111.5 KiB | 2,870 | 2,862 | |
combining-class-parse.py | D | 03-May-2024 | 1.2 KiB | 35 | 28 | |
combining-properties.h | D | 03-May-2024 | 5.6 KiB | 248 | 241 | |
grapheme-break-parse.py | D | 03-May-2024 | 1.6 KiB | 46 | 39 | |
grapheme-break-properties.h | D | 03-May-2024 | 40 KiB | 1,114 | 1,106 | |
mirroring-parse.py | D | 03-May-2024 | 1.6 KiB | 51 | 37 | |
mirroring-properties.h | D | 03-May-2024 | 7.4 KiB | 380 | 373 | |
script-properties.h | D | 03-May-2024 | 11 KiB | 308 | 292 | |
scripts-parse.py | D | 03-May-2024 | 2.5 KiB | 76 | 66 | |
unicode_parse_common.py | D | 03-May-2024 | 2 KiB | 71 | 61 |
README
1This directory contains Python script to parse several of the Unicode tables 2that are downloadable from the web and generate C header files from them. 3 4These are the locations of the files which are parsed. You should download these 5files and put them in this directory. 6 7http://www.unicode.org/Public/5.1.0/ucd/extracted/DerivedGeneralCategory.txt 8http://www.unicode.org/Public/5.1.0/ucd/extracted/DerivedCombiningClass.txt 9http://www.unicode.org/Public/UNIDATA/auxiliary/GraphemeBreakProperty.txt 10http://www.unicode.org/Public/5.1.0/ucd/Scripts.txt 11 12Then you can run the following python scripts to generate the header files: 13 14python category-parse.py DerivedGeneralCategory.txt category-properties.h 15python combining-class-parse.py DerivedCombiningClass.txt combining-properties.h 16python grapheme-break-parse.py GraphemeBreakProperty.txt grapheme-break-properties.h 17python scripts-parse.py Scripts.txt script-properties.h 18