1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

preparing 2.5.0 release only warn in pedantic mode about namespace name

* configure.in NEWS: preparing 2.5.0 release
* SAX.c: only warn in pedantic mode about namespace name
  brokeness
* globals.c: fix a doc generation problem
* uri.c: fix #101520
* doc/*: updated and rebuilt the doc for the release, includuding
  stylesheet update
* python/Makefile.am: fix a filename bug
Daniel
This commit is contained in:
Daniel Veillard
2003-01-06 13:11:20 +00:00
parent e0ed10cb0f
commit 7b4b2f9d8f
66 changed files with 8009 additions and 36 deletions

7
uri.c
View File

@ -1754,6 +1754,13 @@ xmlBuildURI(const xmlChar *URI, const xmlChar *base) {
}
if (ret != 0)
goto done;
if ((ref != NULL) && (ref->scheme != NULL)) {
/*
* The URI is absolute don't modify.
*/
val = xmlStrdup(URI);
goto done;
}
if (base == NULL)
ret = -1;
else {