2001-09-11 Gregory Leblanc <gleblanc@linuxweasel.com>
* NEWS: Tiny bit of whitespace added, in order to test a fix to
the cvs-commits-list generating code. Sorry Daniel.
2001-09-11 Gregory Leblanc <gleblanc@linuxweasel.com>
* NEWS: Tiny bit of whitespace added, in order to test a fix to
the cvs-commits-list generating code. Sorry Daniel.
* tree.c: oops forgot to zero terminate that string seems
to break bonobo_ui which expect mem[size] == 0 while that
0 is outside the range actually ...
Daniel
2001-08-13 Alex Larsson <alexl@redhat.com>
* parserold.c:
Fix a parser bug. When reading attribute values with " the parser
thought this was the ending quote. Also fixes problems with some other
escaped values (<, & and escaped whitespace).
This fixes a bug in nautilus where sometimes the tree view didn't show
up.
Made xmlParseChunk behaving the same way as xmlParseFile
(no matter if it's the correct behaviour or not ;-)
* parser.c
(xmlParseChunk): Use the old parser if xmlUseNewParserDefault is not
set.
Added xmlOldParseChunk declaration.
* oldparser.c (xmlOldParseChunk): Made non-static.
- 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.