mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-04-20 02:50:06 +03:00
- added back the old parser - make it the default - allow people to switch easilly Few changes except the old parser where all names were changed and made static except 3 entry points: - Makefile.am parserold.c: added back the 1.8.11 parser for compatibility - README: updated - SAX.c: integrate back 1.8.11 callback code and call it when we are using the old parser - entities.c: fixed a small problem - parser.[ch]: allow to use either parser, add xmlUseNewParser(), and modify the Initialization code to check LIBXML_USE_NEW_PARSER or LIBXML_USE_OLD_PARSER - tester.c: make it use the new parser by default, but check LIBXML_USE_OLD_PARSER and add the --oldparser option Daniel
24 lines
763 B
Plaintext
24 lines
763 B
Plaintext
|
|
XML version 1 parser for Gnome
|
|
|
|
This is the old parser, the new version libxml2 is in the CVS head of
|
|
the gnome-xml module.
|
|
This parser embbed the old 1.8.11 parser and a new one based on 2.3.5
|
|
which is far more compliant. You can toggle libxml to use the new parser
|
|
by using xmlUseNewParser(1) or setting up the LIBXML_USE_NEW_PARSER
|
|
environment variable. The old parser is the default and can be forced
|
|
by calling xmlUseNewParser(0) or setting up the LIBXML_USE_OLD_PARSER
|
|
environment variable.
|
|
|
|
Documentation is available on-line at
|
|
http://xmlsoft.org/
|
|
|
|
There is also a mailing-list xml@gnome.org for libxml
|
|
List page at
|
|
http://mail.gnome.org/mailman/listinfo/xml
|
|
Archive at
|
|
http://xmlsoft.org/messages/
|
|
|
|
|
|
Daniel.Veillard@w3.org
|