mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
- catalog.[ch]: fixes and add xmlLoadCatalogs()
- DOCBparser.c: small cleanup - xmllint.c: added a --catalogs option to load catalogs from $SGML_CATALOG_FILES - tree.c: cleanup - configure.in: iconv library fixup, ICONV_LIBS Daniel
This commit is contained in:
parent
af86c7f463
commit
81418e38c8
@ -1,3 +1,12 @@
|
|||||||
|
Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
|
* catalog.[ch]: fixes and add xmlLoadCatalogs()
|
||||||
|
* DOCBparser.c: small cleanup
|
||||||
|
* xmllint.c: added a --catalogs option to load catalogs from
|
||||||
|
$SGML_CATALOG_FILES
|
||||||
|
* tree.c: cleanup
|
||||||
|
* configure.in: iconv library fixup, ICONV_LIBS
|
||||||
|
|
||||||
Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
* catalog.c: handling of CATALOG entries. detection of recursion,
|
* catalog.c: handling of CATALOG entries. detection of recursion,
|
||||||
|
12
DOCBparser.c
12
DOCBparser.c
@ -3392,18 +3392,6 @@ docbParseDocTypeDecl(docbParserCtxtPtr ctxt) {
|
|||||||
*/
|
*/
|
||||||
if (RAW != '[') {
|
if (RAW != '[') {
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/*
|
|
||||||
* We should be at the end of the DOCTYPE declaration.
|
|
||||||
*/
|
|
||||||
if (CUR != '>') {
|
|
||||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
|
||||||
ctxt->sax->error(ctxt->userData,
|
|
||||||
"DOCTYPE unproperly terminated\n");
|
|
||||||
ctxt->wellFormed = 0;
|
|
||||||
/* We shouldn't try to resynchronize ... */
|
|
||||||
}
|
|
||||||
NEXT;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
47
catalog.c
47
catalog.c
@ -65,10 +65,9 @@ struct _xmlCatalogEntry {
|
|||||||
static xmlHashTablePtr xmlDefaultCatalog;
|
static xmlHashTablePtr xmlDefaultCatalog;
|
||||||
|
|
||||||
/* Catalog stack */
|
/* Catalog stack */
|
||||||
const char * catalTab[10]; /* stack of catals */
|
static const char * catalTab[10]; /* stack of catals */
|
||||||
const char * catal; /* Current catal stream */
|
static int catalNr = 0; /* Number of current catal streams */
|
||||||
int catalNr = 0; /* Number of current catal streams */
|
static int catalMax = 10; /* Max number of catal streams */
|
||||||
int catalMax = 10; /* Max number of catal streams */
|
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
@ -478,8 +477,8 @@ xmlParseCatalog(const xmlChar *value, const char *file) {
|
|||||||
* xmlLoadCatalog:
|
* xmlLoadCatalog:
|
||||||
* @filename: a file path
|
* @filename: a file path
|
||||||
*
|
*
|
||||||
* Load the catalog and makes its definition effective for the default
|
* Load the catalog and makes its definitions effective for the default
|
||||||
* external entity loader.
|
* external entity loader. It will recuse in CATALOG entries.
|
||||||
* TODO: this function is not thread safe, catalog initialization should
|
* TODO: this function is not thread safe, catalog initialization should
|
||||||
* be done once at startup
|
* be done once at startup
|
||||||
*
|
*
|
||||||
@ -506,7 +505,8 @@ xmlLoadCatalog(const char *filename) {
|
|||||||
* Prevent loops
|
* Prevent loops
|
||||||
*/
|
*/
|
||||||
for (i = 0;i < catalNr;i++) {
|
for (i = 0;i < catalNr;i++) {
|
||||||
if (xmlStrEqual(catalTab[i], filename)) {
|
if (xmlStrEqual((const xmlChar *)catalTab[i],
|
||||||
|
(const xmlChar *)filename)) {
|
||||||
xmlGenericError(xmlGenericErrorContext,
|
xmlGenericError(xmlGenericErrorContext,
|
||||||
"xmlLoadCatalog: %s seems to induce a loop\n",
|
"xmlLoadCatalog: %s seems to induce a loop\n",
|
||||||
filename);
|
filename);
|
||||||
@ -548,6 +548,39 @@ xmlLoadCatalog(const char *filename) {
|
|||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* xmlLoadCatalogs:
|
||||||
|
* @paths: a list of file path separated by ':' or spaces
|
||||||
|
*
|
||||||
|
* Load the catalogs and makes their definitions effective for the default
|
||||||
|
* external entity loader.
|
||||||
|
* TODO: this function is not thread safe, catalog initialization should
|
||||||
|
* be done once at startup
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
xmlLoadCatalogs(const char *pathss) {
|
||||||
|
const char *cur;
|
||||||
|
const char *paths;
|
||||||
|
xmlChar *path;
|
||||||
|
|
||||||
|
cur = pathss;
|
||||||
|
while ((cur != NULL) && (*cur != 0)) {
|
||||||
|
while (IS_BLANK(*cur)) cur++;
|
||||||
|
if (*cur != 0) {
|
||||||
|
paths = cur;
|
||||||
|
while ((*cur != 0) && (*cur != ':') && (!IS_BLANK(*cur)))
|
||||||
|
cur++;
|
||||||
|
path = xmlStrndup((const xmlChar *)paths, cur - paths);
|
||||||
|
if (path != NULL) {
|
||||||
|
xmlLoadCatalog((const char *) path);
|
||||||
|
xmlFree(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while (*cur == ':')
|
||||||
|
cur++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* xmlCatalogCleanup:
|
* xmlCatalogCleanup:
|
||||||
*
|
*
|
||||||
|
@ -22,6 +22,7 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
int xmlLoadCatalog (const char *URL);
|
int xmlLoadCatalog (const char *URL);
|
||||||
|
void xmlLoadCatalogs (const char *paths);
|
||||||
void xmlCatalogCleanup (void);
|
void xmlCatalogCleanup (void);
|
||||||
void xmlCatalogDump (FILE *out);
|
void xmlCatalogDump (FILE *out);
|
||||||
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);
|
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);
|
||||||
|
@ -154,7 +154,6 @@ AC_CHECK_FUNC(isinf, AC_DEFINE(HAVE_ISINF) , AC_CHECK_LIB(m, isinf,
|
|||||||
|
|
||||||
XML_LIBDIR='-L${libdir}'
|
XML_LIBDIR='-L${libdir}'
|
||||||
XML_INCLUDEDIR='-I${includedir}/libxml -I${includedir}'
|
XML_INCLUDEDIR='-I${includedir}/libxml -I${includedir}'
|
||||||
XML_LIBS="-lxml2 $Z_LIBS -lm $LIBS"
|
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl Extra flags
|
dnl Extra flags
|
||||||
@ -238,6 +237,7 @@ LDFLAGS=${_ldflags}
|
|||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl specific tests to setup DV's devel environment with debug etc ...
|
dnl specific tests to setup DV's devel environment with debug etc ...
|
||||||
|
dnl (-Wunreachable-code)
|
||||||
dnl
|
dnl
|
||||||
if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ; then
|
if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ; then
|
||||||
if test "${with_mem_debug}" = "" ; then
|
if test "${with_mem_debug}" = "" ; then
|
||||||
@ -376,7 +376,7 @@ if test "$with_iconv" = "no" ; then
|
|||||||
else
|
else
|
||||||
AC_CHECK_HEADER(iconv.h,
|
AC_CHECK_HEADER(iconv.h,
|
||||||
AC_CHECK_FUNC(iconv, ,
|
AC_CHECK_FUNC(iconv, ,
|
||||||
AC_CHECK_LIB(iconv, iconv, XML_LIBS="$XML_LIBS -liconv")))
|
AC_CHECK_LIB(iconv, iconv, ICONV_LIBS="-liconv")))
|
||||||
if test "$have_iconv" != "" ; then
|
if test "$have_iconv" != "" ; then
|
||||||
echo Iconv support not found
|
echo Iconv support not found
|
||||||
WITH_ICONV=0
|
WITH_ICONV=0
|
||||||
@ -384,6 +384,7 @@ else
|
|||||||
WITH_ICONV=1
|
WITH_ICONV=1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
XML_LIBS="-lxml2 $Z_LIBS $ICONV_LIBS -lm $LIBS"
|
||||||
AC_SUBST(WITH_ICONV)
|
AC_SUBST(WITH_ICONV)
|
||||||
|
|
||||||
AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])
|
AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])
|
||||||
@ -412,6 +413,7 @@ AC_SUBST(XML_CFLAGS)
|
|||||||
|
|
||||||
AC_SUBST(XML_LIBDIR)
|
AC_SUBST(XML_LIBDIR)
|
||||||
AC_SUBST(XML_LIBS)
|
AC_SUBST(XML_LIBS)
|
||||||
|
AC_SUBST(ICONV_LIBS)
|
||||||
AC_SUBST(XML_INCLUDEDIR)
|
AC_SUBST(XML_INCLUDEDIR)
|
||||||
AC_SUBST(HTML_DIR)
|
AC_SUBST(HTML_DIR)
|
||||||
AC_SUBST(HAVE_ISNAN)
|
AC_SUBST(HAVE_ISNAN)
|
||||||
|
@ -22,6 +22,7 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
int xmlLoadCatalog (const char *URL);
|
int xmlLoadCatalog (const char *URL);
|
||||||
|
void xmlLoadCatalogs (const char *paths);
|
||||||
void xmlCatalogCleanup (void);
|
void xmlCatalogCleanup (void);
|
||||||
void xmlCatalogDump (FILE *out);
|
void xmlCatalogDump (FILE *out);
|
||||||
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);
|
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);
|
||||||
|
5
tree.c
5
tree.c
@ -6271,10 +6271,10 @@ int
|
|||||||
xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
|
xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
|
||||||
xmlOutputBufferPtr buf;
|
xmlOutputBufferPtr buf;
|
||||||
xmlCharEncodingHandlerPtr handler = NULL;
|
xmlCharEncodingHandlerPtr handler = NULL;
|
||||||
|
xmlCharEncoding enc;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (encoding != NULL) {
|
if (encoding != NULL) {
|
||||||
xmlCharEncoding enc;
|
|
||||||
|
|
||||||
enc = xmlParseCharEncoding(encoding);
|
enc = xmlParseCharEncoding(encoding);
|
||||||
if (cur->charset != XML_CHAR_ENCODING_UTF8) {
|
if (cur->charset != XML_CHAR_ENCODING_UTF8) {
|
||||||
@ -6284,9 +6284,8 @@ xmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) {
|
|||||||
}
|
}
|
||||||
if (enc != XML_CHAR_ENCODING_UTF8) {
|
if (enc != XML_CHAR_ENCODING_UTF8) {
|
||||||
handler = xmlFindCharEncodingHandler(encoding);
|
handler = xmlFindCharEncodingHandler(encoding);
|
||||||
if (handler == NULL) {
|
if (handler == NULL)
|
||||||
return(-1);
|
return(-1);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
19
xmllint.c
19
xmllint.c
@ -62,6 +62,9 @@
|
|||||||
#ifdef LIBXML_XINCLUDE_ENABLED
|
#ifdef LIBXML_XINCLUDE_ENABLED
|
||||||
#include <libxml/xinclude.h>
|
#include <libxml/xinclude.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef LIBXML_CATALOG_ENABLED
|
||||||
|
#include <libxml/catalog.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef LIBXML_DEBUG_ENABLED
|
#ifdef LIBXML_DEBUG_ENABLED
|
||||||
static int debug = 0;
|
static int debug = 0;
|
||||||
@ -848,6 +851,19 @@ main(int argc, char **argv) {
|
|||||||
debugent++;
|
debugent++;
|
||||||
xmlParserDebugEntities = 1;
|
xmlParserDebugEntities = 1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
#ifdef LIBXML_CATALOG_ENABLED
|
||||||
|
else if ((!strcmp(argv[i], "-catalogs")) ||
|
||||||
|
(!strcmp(argv[i], "--catalogs"))) {
|
||||||
|
const char *catalogs;
|
||||||
|
|
||||||
|
catalogs = getenv("SGML_CATALOG_FILES");
|
||||||
|
if (catalogs == NULL) {
|
||||||
|
fprintf(stderr, "Variable $SGML_CATALOG_FILES not set\n");
|
||||||
|
} else {
|
||||||
|
xmlLoadCatalogs(catalogs);
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
else if ((!strcmp(argv[i], "-encode")) ||
|
else if ((!strcmp(argv[i], "-encode")) ||
|
||||||
(!strcmp(argv[i], "--encode"))) {
|
(!strcmp(argv[i], "--encode"))) {
|
||||||
@ -947,6 +963,9 @@ main(int argc, char **argv) {
|
|||||||
printf("\t--noblanks : drop (ignorable?) blanks spaces\n");
|
printf("\t--noblanks : drop (ignorable?) blanks spaces\n");
|
||||||
printf("\t--testIO : test user I/O support\n");
|
printf("\t--testIO : test user I/O support\n");
|
||||||
printf("\t--encode encoding : output in the given encoding\n");
|
printf("\t--encode encoding : output in the given encoding\n");
|
||||||
|
#ifdef LIBXML_CATALOG_ENABLED
|
||||||
|
printf("\t--catalogs : use the catalogs from $SGML_CATALOG_FILES\n");
|
||||||
|
#endif
|
||||||
printf("\t--auto : generate a small doc on the fly\n");
|
printf("\t--auto : generate a small doc on the fly\n");
|
||||||
#ifdef LIBXML_XINCLUDE_ENABLED
|
#ifdef LIBXML_XINCLUDE_ENABLED
|
||||||
printf("\t--xinclude : do XInclude processing\n");
|
printf("\t--xinclude : do XInclude processing\n");
|
||||||
|
3
xpath.c
3
xpath.c
@ -161,7 +161,7 @@ int isinf(double x)
|
|||||||
*/
|
*/
|
||||||
double
|
double
|
||||||
xmlXPathDivideBy(double f, double fzero) {
|
xmlXPathDivideBy(double f, double fzero) {
|
||||||
float ret;
|
double ret;
|
||||||
#ifdef HAVE_SIGNAL
|
#ifdef HAVE_SIGNAL
|
||||||
#ifdef SIGFPE
|
#ifdef SIGFPE
|
||||||
#ifdef SIG_IGN
|
#ifdef SIG_IGN
|
||||||
@ -3079,7 +3079,6 @@ xmlXPathCompareNodeSets(int inf, int strict,
|
|||||||
xmlXPathFreeObject(arg1);
|
xmlXPathFreeObject(arg1);
|
||||||
xmlXPathFreeObject(arg2);
|
xmlXPathFreeObject(arg2);
|
||||||
return(ret);
|
return(ret);
|
||||||
return(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user