mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
"xmllint unusable on win32" so applied a libxml2 patch from Christian
* xmllint.c catalog.c: "xmllint unusable on win32" so applied a libxml2 patch from Christian Ehrlicher Daniel svn path=/trunk/; revision=3599
This commit is contained in:
parent
42720248e6
commit
ed12138b18
@ -1,3 +1,8 @@
|
||||
Tue Apr 17 14:34:45 CEST 2007 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmllint.c catalog.c: "xmllint unusable on win32" so applied
|
||||
a libxml2 patch from Christian Ehrlicher
|
||||
|
||||
Mon Apr 16 09:05:01 CEST 2007 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* HTMLparser.c: change the way script/style are parsed to
|
||||
|
21
catalog.c
21
catalog.c
@ -44,6 +44,12 @@
|
||||
#define MAX_DELEGATE 50
|
||||
#define MAX_CATAL_DEPTH 50
|
||||
|
||||
#ifdef _WIN32
|
||||
# define PATH_SEAPARATOR ';'
|
||||
#else
|
||||
# define PATH_SEAPARATOR ':'
|
||||
#endif
|
||||
|
||||
/**
|
||||
* TODO:
|
||||
*
|
||||
@ -3209,6 +3215,9 @@ xmlLoadCatalogs(const char *pathss) {
|
||||
const char *cur;
|
||||
const char *paths;
|
||||
xmlChar *path;
|
||||
#ifdef _WIN32
|
||||
int i, iLen;
|
||||
#endif
|
||||
|
||||
if (pathss == NULL)
|
||||
return;
|
||||
@ -3218,15 +3227,23 @@ xmlLoadCatalogs(const char *pathss) {
|
||||
while (xmlIsBlank_ch(*cur)) cur++;
|
||||
if (*cur != 0) {
|
||||
paths = cur;
|
||||
while ((*cur != 0) && (*cur != ':') && (!xmlIsBlank_ch(*cur)))
|
||||
while ((*cur != 0) && (*cur != PATH_SEAPARATOR) && (!xmlIsBlank_ch(*cur)))
|
||||
cur++;
|
||||
path = xmlStrndup((const xmlChar *)paths, cur - paths);
|
||||
#ifdef _WIN32
|
||||
iLen = strlen(path);
|
||||
for(i = 0; i < iLen; i++) {
|
||||
if(path[i] == '\\') {
|
||||
path[i] = '/';
|
||||
}
|
||||
}
|
||||
#endif
|
||||
if (path != NULL) {
|
||||
xmlLoadCatalog((const char *) path);
|
||||
xmlFree(path);
|
||||
}
|
||||
}
|
||||
while (*cur == ':')
|
||||
while (*cur == PATH_SEAPARATOR)
|
||||
cur++;
|
||||
}
|
||||
}
|
||||
|
@ -209,6 +209,11 @@ static int sax = 0;
|
||||
* *
|
||||
************************************************************************/
|
||||
#define MAX_PATHS 64
|
||||
#ifdef _WIN32
|
||||
# define PATH_SEPARATOR ';'
|
||||
#else
|
||||
# define PATH_SEPARATOR ':'
|
||||
#endif
|
||||
static xmlChar *paths[MAX_PATHS + 1];
|
||||
static int nbpaths = 0;
|
||||
static int load_trace = 0;
|
||||
@ -225,10 +230,10 @@ void parsePath(const xmlChar *path) {
|
||||
return;
|
||||
}
|
||||
cur = path;
|
||||
while ((*cur == ' ') || (*cur == ':'))
|
||||
while ((*cur == ' ') || (*cur == PATH_SEPARATOR))
|
||||
cur++;
|
||||
path = cur;
|
||||
while ((*cur != 0) && (*cur != ' ') && (*cur != ':'))
|
||||
while ((*cur != 0) && (*cur != ' ') && (*cur != PATH_SEPARATOR))
|
||||
cur++;
|
||||
if (cur != path) {
|
||||
paths[nbpaths] = xmlStrndup(path, cur - path);
|
||||
|
Loading…
x
Reference in New Issue
Block a user