From 540a31a361d846cd9a1e73fb5c08326d6298c54a Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Tue, 21 Jan 2003 11:21:07 +0000 Subject: [PATCH] =?UTF-8?q?applied=20a=20new=20patch=20from=20St=E9phane?= =?UTF-8?q?=20Bidoul=20for=20cleanups=20rebuilt=20the=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * xmlreader.c doc/apibuild.py: applied a new patch from Stéphane Bidoul for cleanups * doc/libxml2-api.xml: rebuilt the API description with new entry points Daniel --- ChangeLog | 7 + doc/apibuild.py | 4 +- doc/libxml2-api.xml | 543 +++++++++++++++++++++++++++------------- python/libxml2class.txt | 5 + xmlreader.c | 4 +- 5 files changed, 380 insertions(+), 183 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2c5064ca..2fccb606 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Tue Jan 21 13:19:35 CET 2003 Daniel Veillard + + * xmlreader.c doc/apibuild.py: applied a new patch from + Stéphane Bidoul for cleanups + * doc/libxml2-api.xml: rebuilt the API description with + new entry points + Mon Jan 20 23:25:00 CET 2003 Daniel Veillard * xmlreader.c python/drv_libxml2.py python/generator.py diff --git a/doc/apibuild.py b/doc/apibuild.py index 7f3158e1..be2f934c 100755 --- a/doc/apibuild.py +++ b/doc/apibuild.py @@ -7,7 +7,7 @@ # # daniel@veillard.com # -import sys +import os, sys import string import glob @@ -1307,7 +1307,7 @@ class docBuilder: self.scanModules() def modulename_file(self, file): - module = string.split(file, '/')[-1] + module = os.path.basename(file) if module[-2:] == '.h': module = module[:-2] return module diff --git a/doc/libxml2-api.xml b/doc/libxml2-api.xml index 8c772cc9..37db31ea 100644 --- a/doc/libxml2-api.xml +++ b/doc/libxml2-api.xml @@ -61,47 +61,141 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -626,6 +720,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1092,12 +1322,17 @@ + + + + + @@ -1105,9 +1340,11 @@ + + @@ -1115,6 +1352,9 @@ + + + @@ -1135,6 +1375,7 @@ + @@ -1203,6 +1444,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1649,142 +1932,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -2391,6 +2538,10 @@ + + + + @@ -2857,6 +3008,7 @@ actually an xmlCharEncoding'/> + @@ -2922,6 +3074,7 @@ actually an xmlCharEncoding'/> + @@ -5051,8 +5204,8 @@ actually an xmlCharEncoding'/> - input from FILE *, supports compressed input if @filename is " " then the standard input is used - + Wrapper around xmlFileOpen_real that try it with an unescaped version of @filename, if this fails fallback to @filename + @@ -7969,6 +8122,14 @@ actually an xmlCharEncoding'/> + + + + + + + + Provides the value of the attribute with the specified qualified name. @@ -7988,6 +8149,13 @@ actually an xmlCharEncoding'/> + + Retrieve the error callback function and user argument. + + + + + Read the parser internal property. @@ -8024,6 +8192,16 @@ actually an xmlCharEncoding'/> + + Obtain the base URI for the given locator. + + + + + Obtain the line number for the given locator. + + + Resolves a namespace prefix in the scope of the current element. @@ -8124,6 +8302,13 @@ actually an xmlCharEncoding'/> + + Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored. + + + + + Change the parser processing behaviour by changing some of its internal properties. Note that some properties can only be changed before any read has been done. diff --git a/python/libxml2class.txt b/python/libxml2class.txt index a116126e..08d3c37b 100644 --- a/python/libxml2class.txt +++ b/python/libxml2class.txt @@ -788,6 +788,11 @@ Class outputBuffer(ioWriteWrapper) flush() write() writeString() +Class xmlTextReaderLocator() + + # functions from module xmlreader + BaseURI() + LineNumber() Class URI() # accessors authority() diff --git a/xmlreader.c b/xmlreader.c index 36323762..84aba20c 100644 --- a/xmlreader.c +++ b/xmlreader.c @@ -2282,7 +2282,7 @@ xmlTextReaderBuildMessage(const char *msg, va_list ap) { } /** - * xmlTextReaderLocatorLineNumber + * xmlTextReaderLocatorLineNumber: * @locator: the xmlTextReaderLocatorPtr used * * Obtain the line number for the given locator. @@ -2316,7 +2316,7 @@ xmlTextReaderLocatorLineNumber(xmlTextReaderLocatorPtr locator) { } /** - * xmlTextReaderLocatorBaseURI + * xmlTextReaderLocatorBaseURI: * @locator: the xmlTextReaderLocatorPtr used * * Obtain the base URI for the given locator.