summaryrefslogtreecommitdiff
path: root/genUnicode.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove XMLCALL and XMLCDECL macros from public headersNick Wellnhofer2022-12-081-4/+4
|
* Use python3 not pythonRoss Burton2022-12-071-1/+1
| | | | | | | | | | | | | As per https://peps.python.org/pep-0394/, the python binary can be one of the following options: - Python 2 - Python 3 - Not exist All of the scripts in libxml2 use 'python', which may not exist. As Python 2 reached EOL on the 1st January 2020, it's safe to move the scripts to use python3 explicitly.
* Port genUnicode.py to Python 3Nick Wellnhofer2022-04-231-40/+40
|
* Use portable python shebangsDavid Seifert2022-04-061-1/+1
| | | | | * In conda or Gentoo Prefix, we don't want to use the system python and instead rely on PATH lookup.
* Remove elfgcchack.hNick Wellnhofer2022-02-201-2/+0
| | | | | The same optimization can be enabled with -fno-semantic-interposition since GCC 5. clang has always used this option by default.
* Add const in five places to move 1 KiB to .rdataBruce Dawson2017-08-281-2/+2
| | | | | xmlUnicodeBlocks is logically const but was not marked as such. This fixes that, thus moving it to the read-only data segment.
* applied patches from Aivars Kalvans to make unicode tables const, fixesDaniel Veillard2006-03-271-7/+15
| | | | | | | | | * chvalid.c genChRanges.py genUnicode.py xmlunicode.c include/libxml/chvalid.h include/libxml/xmlunicode.h: applied patches from Aivars Kalvans to make unicode tables const, fixes bug #336096, this also updates to Unicode 4.01 final with a couple of character ranges fixes. Daniel
* modified the file header to add more informations, painful... updated toDaniel Veillard2003-11-181-2/+3
| | | | | | | | | | | | * include/libxml/*.h include/libxml/*.h.in: modified the file header to add more informations, painful... * genChRanges.py genUnicode.py: updated to generate said changes in headers * doc/apibuild.py: extract headers, add them to libxml2-api.xml * *.html *.xsl *.xml: updated the stylesheets to flag geprecated APIs modules. Updated the stylesheets, some cleanups, regenerated * doc/html/*.html: regenerated added back book1 and libxml-lib.html Daniel
* fixed missing '-' in block names, enhanced the hack for ABI aliasing.William M. Brack2003-11-101-74/+41
| | | | | | * genUnicode.py, xmlunicode.c, include/libxml/xmlunicode.h: fixed missing '-' in block names, enhanced the hack for ABI aliasing.
* enhanced for range checking, updated to Unicode version 4.0.1 (API docsWilliam M. Brack2003-11-091-109/+353
| | | | | | | * genUnicode.py, xmlunicode.c, include/libxml/xmlunicode.h, python/libxml2class.txt: enhanced for range checking, updated to Unicode version 4.0.1 (API docs also updated) * python/generator.py: minor change to fix a warning
* Exportability taint of the headersIgor Zlatkovic2003-08-251-4/+6
|
* merged the current state of XML Schemas implementation, it is notDaniel Veillard2002-04-161-0/+256
* Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c include/libxml/Makefile.am include/libxml/schemasInternals.h include/libxml/xmlautomata.h include/libxml/xmlregexp.h include/libxml/xmlschemas.h include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h include/libxml/xmlversion.h.in : merged the current state of XML Schemas implementation, it is not configured in by default, a specific --schemas configure option has been added. * test/automata test/regexp test/schemas Makefile.am result/automata result/regexp result/schemas: merged automata/regexp/schemas regression tests Daniel