mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
preparing 2.4.16 updated and rebuilt the docs, rebuilt the API and web
* configure.in include/libxml/xmlwin32version.h: preparing 2.4.16 * doc/* python/libxml2class.txt: updated and rebuilt the docs, rebuilt the API and web site * xpath.c: fixed #71978 portability bugs Daniel
This commit is contained in:
@ -32,6 +32,8 @@ index = {}
|
||||
|
||||
|
||||
def indexString(id, str):
|
||||
if str == None:
|
||||
return
|
||||
str = string.replace(str, "'", ' ')
|
||||
str = string.replace(str, '"', ' ')
|
||||
str = string.replace(str, "/", ' ')
|
||||
@ -798,7 +800,11 @@ def link(id):
|
||||
target = string.upper(ids[id])
|
||||
else:
|
||||
target = string.upper(id)
|
||||
file = 'html/libxml-' + string.lower(hash[id]) + '.html';
|
||||
if hash.has_key(id):
|
||||
module = string.lower(hash[id])
|
||||
else:
|
||||
module = 'index'
|
||||
file = 'html/libxml-' + module + '.html';
|
||||
return file + '#' + target
|
||||
|
||||
print "Saving XML crossreferences libxml2-refs.xml"
|
||||
|
Reference in New Issue
Block a user