summaryrefslogtreecommitdiff
path: root/testReader.c
Commit message (Collapse)AuthorAgeFilesLines
* a lot of small cleanups based on Linus' sparse check output. DanielDaniel Veillard2005-07-281-6/+6
| | | | | | | | | * HTMLparser.c SAX2.c encoding.c globals.c parser.c relaxng.c runsuite.c runtest.c schematron.c testHTML.c testReader.c testRegexp.c testSAX.c testThreads.c valid.c xinclude.c xmlIO.c xmllint.c xmlmodule.c xmlschemas.c xpath.c xpointer.c: a lot of small cleanups based on Linus' sparse check output. Daniel
* applied patch from Aron Stansvik to add xmlTextReaderByteConsumed() addedDaniel Veillard2005-02-181-0/+6
| | | | | | | | * xmlreader.c include/libxml/xmlreader.h: applied patch from Aron Stansvik to add xmlTextReaderByteConsumed() * testReader.c: added a test option * xmlschemastypes.c: fix a lack of pointer checking in APIs Daniel
* added 2 new configure option: --with-reader --with-sax1 to allow removingDaniel Veillard2003-09-301-0/+7
| | | | | | | | | * Makefile.am SAX.c SAX2.c configure.in globals.c parser.c parserInternals.c testReader.c testSAX.c xmlIO.c xmllint.c xmlreader.c example/gjobread.c include/libxml/xmlversion.h.in: added 2 new configure option: --with-reader --with-sax1 to allow removing the reader or non-xmlReadxxx() interfaces. Daniel
* working on DTD validation on top of xml reader interfaces. Allows toDaniel Veillard2002-12-201-12/+8
| | | | | | | | | | | * testReader.c xmlreader.c valid.c include/libxml/tree.h include/libxml/valid.h include/libxml/xmlreader.h: working on DTD validation on top of xml reader interfaces. Allows to validate arbitrary large instances. This required some extensions to the valid module interface and augmenting the size of xmlID and xmlRef structs a bit. * uri.c xmlregexp.c: simple cleanup. Daniel
* Adding a new set of APIs based on the C# TextXmlReader API but convertedDaniel Veillard2002-12-091-0/+136
* Makefile.am xmlreader.c include/libxml/Makefile.am include/libxml/xmlreader.h: Adding a new set of APIs based on the C# TextXmlReader API but converted to C. Allow to parse in constant memory usage, far simpler to program and explain than the SAX like APIs, unfinished but working. * testReader.c: test program Daniel