| OLD | NEW |
| (Empty) |
| 1 This directory contains Python script to parse several of the Unicode tables | |
| 2 that are downloadable from the web and generate C header files from them. | |
| 3 | |
| 4 These are the locations of the files which are parsed. You should download these | |
| 5 files and put them in this directory. | |
| 6 | |
| 7 http://www.unicode.org/Public/5.1.0/ucd/extracted/DerivedGeneralCategory.txt | |
| 8 http://www.unicode.org/Public/5.1.0/ucd/extracted/DerivedCombiningClass.txt | |
| 9 http://www.unicode.org/Public/UNIDATA/auxiliary/GraphemeBreakProperty.txt | |
| 10 http://www.unicode.org/Public/5.1.0/ucd/Scripts.txt | |
| 11 | |
| 12 Then you can run the following python scripts to generate the header files: | |
| 13 | |
| 14 python category-parse.py DerivedGeneralCategory.txt category-properties.h | |
| 15 python combining-class-parse.py DerivedCombiningClass.txt combining-properties.h | |
| 16 python grapheme-break-parse.py GraphemeBreakProperty.txt grapheme-break-properti
es.h | |
| 17 python scripts-parse.py Scripts.txt script-properties.h | |
| OLD | NEW |