1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-27 14:03:36 +03:00

fixed part (2) of bug 119535 (wrong alpha case on filenames)

* doc/parsedecl.py, doc/libxml2-refs.xml, doc/API*.html:
  fixed part (2) of bug 119535 (wrong alpha case on filenames)
This commit is contained in:
William M. Brack 2003-08-16 14:58:33 +00:00
parent a760043485
commit a716ff11ed
3 changed files with 3623 additions and 5562 deletions

View File

@ -1,3 +1,8 @@
Sat Aug 16 22:53:42 HKT 2003 William Brack <wbrack@mmm.com.hk>
* doc/parsedecl.py, doc/libxml2-refs.xml, doc/API*.html:
fixed part (2) of bug 119535 (wrong alpha case on filenames)
Sat Aug 16 20:35:28 HKT 2003 William Brack <wbrack@mmm.com.hk>
* doc/API*.html, doc/html/*: regenerated API documentation

File diff suppressed because it is too large Load Diff

View File

@ -703,7 +703,7 @@ def link(id):
else:
target = string.upper(id)
if hash.has_key(id):
module = string.lower(hash[id])
module = hash[id]
else:
module = 'index'
file = 'html/libxml-' + module + '.html';