mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-18 16:08:59 +03:00
removing xmldwalk module since it got merged with the xmlreader. cleanup
* Makefile.am configure.in xmldwalk.c xmlreader.c include/libxml/Makefile.am include/libxml/xmldwalk.h include/libxml/xmlversion.h.in: removing xmldwalk module since it got merged with the xmlreader. * parser.c: cleanup * win32/libxml2.def.src python/libxml2class.txt doc/libxml2-api.xml: rebuilt the API * python/tests/Makefile.am python/tests/reader7.py python/tests/walker.py: adding regression testing for the new xmlreader APIs, new APIs for reader creation, including makeing reader "walker" operating on preparsed document trees. Daniel
This commit is contained in:
@@ -303,6 +303,24 @@ def skip_function(name):
|
||||
# the next function is defined in libxml.c
|
||||
if name == "xmlRelaxNGFreeValidCtxt":
|
||||
return 1
|
||||
#
|
||||
# Those are skipped because the Const version is used of the bindings
|
||||
# instead.
|
||||
#
|
||||
if name == "xmlTextReaderBaseUri":
|
||||
return 1
|
||||
if name == "xmlTextReaderLocalName":
|
||||
return 1
|
||||
if name == "xmlTextReaderName":
|
||||
return 1
|
||||
if name == "xmlTextReaderNamespaceUri":
|
||||
return 1
|
||||
if name == "xmlTextReaderPrefix":
|
||||
return 1
|
||||
if name == "xmlTextReaderXmlLang":
|
||||
return 1
|
||||
if name == "xmlTextReaderValue":
|
||||
return 1
|
||||
return 0
|
||||
|
||||
def print_function_wrapper(name, output, export, include):
|
||||
@@ -718,8 +736,12 @@ def nameFixup(name, classe, type, file):
|
||||
func = "regexp" + name[6:]
|
||||
elif name[0:20] == "xmlTextReaderLocator" and file == "xmlreader":
|
||||
func = name[20:]
|
||||
elif name[0:18] == "xmlTextReaderConst" and file == "xmlreader":
|
||||
func = name[18:]
|
||||
elif name[0:13] == "xmlTextReader" and file == "xmlreader":
|
||||
func = name[13:]
|
||||
elif name[0:12] == "xmlReaderNew" and file == "xmlreader":
|
||||
func = name[9:]
|
||||
elif name[0:11] == "xmlACatalog":
|
||||
func = name[11:]
|
||||
func = string.lower(func[0:1]) + func[1:]
|
||||
|
Reference in New Issue
Block a user