Name | Date | Size | |
---|---|---|---|
.. | 11-Jul-2014 | 4 KiB | |
BidiMirroring.txt | 11-Jul-2014 | 23.4 KiB | |
category-parse.py | 11-Jul-2014 | 2.2 KiB | |
category-properties.h | 11-Jul-2014 | 111.5 KiB | |
combining-class-parse.py | 11-Jul-2014 | 1.2 KiB | |
combining-properties.h | 11-Jul-2014 | 5.6 KiB | |
DerivedCombiningClass.txt | 11-Jul-2014 | 107.2 KiB | |
DerivedGeneralCategory.txt | 11-Jul-2014 | 185.5 KiB | |
grapheme-break-parse.py | 11-Jul-2014 | 1.6 KiB | |
grapheme-break-properties.h | 11-Jul-2014 | 40 KiB | |
GraphemeBreakProperty.txt | 11-Jul-2014 | 72.1 KiB | |
mirroring-parse.py | 11-Jul-2014 | 1.6 KiB | |
mirroring-properties.h | 11-Jul-2014 | 7.4 KiB | |
README | 11-Jul-2014 | 925 | |
script-properties.h | 11-Jul-2014 | 11 KiB | |
scripts-parse.py | 11-Jul-2014 | 2.5 KiB | |
Scripts.txt | 11-Jul-2014 | 106.2 KiB | |
unicode_parse_common.py | 11-Jul-2014 | 2 KiB |
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