1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

use the URL notation file:// for default catalog paths Daniel

* catalog.c: use the URL notation file:// for default catalog paths
Daniel
This commit is contained in:
Daniel Veillard 2001-11-15 13:54:39 +00:00
parent 0ec986359a
commit f7b094f7ee
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com>
* catalog.c: use the URL notation file:// for default catalog paths
Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com>
* include/libxml/tree.h: better comments for _private fields

View File

@ -55,10 +55,10 @@
#define XML_URN_PUBID "urn:publicid:"
#define XML_CATAL_BREAK ((xmlChar *) -1)
#ifndef XML_XML_DEFAULT_CATALOG
#define XML_XML_DEFAULT_CATALOG "/etc/xml/catalog"
#define XML_XML_DEFAULT_CATALOG "file:///etc/xml/catalog"
#endif
#ifndef XML_SGML_DEFAULT_CATALOG
#define XML_SGML_DEFAULT_CATALOG "/etc/sgml/catalog"
#define XML_SGML_DEFAULT_CATALOG "file:///etc/sgml/catalog"
#endif
static int xmlExpandCatalog(xmlCatalogPtr catal, const char *filename);