mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
fixed a stupid error breaking the python API Daniel
* python/generator.py python/libxml2class.txt: fixed a stupid error breaking the python API Daniel
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Thu Sep 26 11:33:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* python/generator.py python/libxml2class.txt: fixed a stupid error
|
||||||
|
breaking the python API
|
||||||
|
|
||||||
Thu Sep 26 00:31:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
Thu Sep 26 00:31:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* trio.c trio.h triodef.h trionan.c trionan.h triop.h
|
* trio.c trio.h triodef.h trionan.c trionan.h triop.h
|
||||||
|
@ -672,9 +672,9 @@ def nameFixup(name, classe, type, file):
|
|||||||
elif name[0:20] == "xmlParserInputBuffer" and file != "python":
|
elif name[0:20] == "xmlParserInputBuffer" and file != "python":
|
||||||
func = name[20:]
|
func = name[20:]
|
||||||
func = string.lower(func[0:1]) + func[1:]
|
func = string.lower(func[0:1]) + func[1:]
|
||||||
elif name[0:9] == "xmlRegexp":
|
elif name[0:9] == "xmlRegexp" and file == "xmlregexp":
|
||||||
func = "regexp" + name[9:]
|
func = "regexp" + name[9:]
|
||||||
elif name[0:6] == "xmlReg":
|
elif name[0:6] == "xmlReg" and file == "xmlregexp":
|
||||||
func = "regexp" + name[6:]
|
func = "regexp" + name[6:]
|
||||||
elif name[0:11] == "xmlACatalog":
|
elif name[0:11] == "xmlACatalog":
|
||||||
func = name[11:]
|
func = name[11:]
|
||||||
|
@ -123,7 +123,7 @@ dumpMemory()
|
|||||||
htmlCreatePushParser()
|
htmlCreatePushParser()
|
||||||
htmlSAXParseFile()
|
htmlSAXParseFile()
|
||||||
newNode()
|
newNode()
|
||||||
regexpisterErrorHandler()
|
registerErrorHandler()
|
||||||
setEntityLoader()
|
setEntityLoader()
|
||||||
|
|
||||||
# functions from module tree
|
# functions from module tree
|
||||||
@ -158,9 +158,9 @@ iOFTPMatch()
|
|||||||
iOHTTPMatch()
|
iOHTTPMatch()
|
||||||
normalizeWindowsPath()
|
normalizeWindowsPath()
|
||||||
parserGetDirectory()
|
parserGetDirectory()
|
||||||
regexpisterDefaultInputCallbacks()
|
registerDefaultInputCallbacks()
|
||||||
regexpisterDefaultOutputCallbacks()
|
registerDefaultOutputCallbacks()
|
||||||
regexpisterHTTPPostCallbacks()
|
registerHTTPPostCallbacks()
|
||||||
|
|
||||||
# functions from module xmlregexp
|
# functions from module xmlregexp
|
||||||
regexpCompile()
|
regexpCompile()
|
||||||
@ -734,7 +734,7 @@ Class xpathContext()
|
|||||||
setContextNode()
|
setContextNode()
|
||||||
|
|
||||||
# functions from module python
|
# functions from module python
|
||||||
regexpisterXPathFunction()
|
registerXPathFunction()
|
||||||
|
|
||||||
# functions from module xpath
|
# functions from module xpath
|
||||||
xpathEval()
|
xpathEval()
|
||||||
|
Reference in New Issue
Block a user