IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an
email to Administrator. User accounts are meant only to access repo
and report issues and/or generate pull requests.
This is a purpose-specific Git hosting for
BaseALT
projects. Thank you for your understanding!
Только зарегистрированные пользователи имеют доступ к сервису!
Для получения аккаунта, обратитесь к администратору.
- parser.c: fixed an I18N breakage on the new parser due
to the usage of an old routine
- test/i18n.xml result/i18n.xml: added a small first test
Daniel
- 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
where the problem could arose:
- parser.c: remove some cases where an encoding error
disable loading corrupted documents generated by previous version
Daniel
The best way to solve the I18N problen is unfortunately to fix libxml1
parser to at least deal correctly with UTF8 and ISO-Latin-1 encodings.
I have plugged in the 2.3.5 (or what will be it's not released yet) core
XML parser in the libxml1 framework. No changes API wise. The only changes
will be backward binary compatible extensions of some of the parser
structures and the number of parser states.
- configure.in: version will be 1.8.12
- Makefile.am: added .memdump tests
- SAX.c entities.[ch] parser.[ch] tree.c valid.c xml-error.h
xmlIO.[ch]: plugged the 2.3.5 libxml2 XML parser in, while
preserving binary compatibility
- uri.[ch]: the parser code really requires URI manipulation
add this from 2.3.5 too
- results/* : of course this changed the output of a number of tests
- test/dtd12 : this test was actually not wellformed, the new
parser pukes at it, fixed ...
Daniel
- parser.c: fixing bug 52299 strange condition leading
to a parser crash due to a buffer overflow
- result/attrib.xml test/attrib.xml:
added the specific test case
Daniel
Sun Dec 24 20:10:11 2000 Ali Abdin <aliabdin@aucegypt.edu>
* parser.c: in xmlParseReference, do not split up an entity into the
'&' and the rest of it (e.g. 'gt;'). This throws off the SAX parser
in a certain case and makes it do SAX.characters ('&') and then
SAX.characters ('gt;'). The code is only #if 0'd out. I ran 'make
tests' and no errors were generated.
Sun Nov 12 12:12:22 2000 George Lebl <jirka@5z.com>
* tree.c: xmlAddPrevSibling and xmlAddNextSibling had reverse
semantics from those documented. And the only use on gnome-cvs
I could find was bonobo-ui which used the documented semantics
apparently. Thus I switched the bodies of these two functions.
Sat Nov 04 18:36:52 2000 George Lebl <jirka@5z.com>
* tree.c: When messing with the child list by adding children,
don't just update the last pointer, but set the parent pointers
as well for all the children, during the traversal. Also in
xmlUnlinkNode, if the node is the doc->root node, set doc->root
to NULL.
2000-09-30 Martin Baulig <baulig@suse.de>
* libxml.pc.in: Provide pkg-config script.
* configure.in: Create the libxml.pc script from the
libxml.pc.in templates.
* Makefile.am (pkgconfig_DATA): Install the libxml.pc
script in `$(libexecdir)/pkgconfig'.