mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

* include/libxml/catalog.h catalog.c xmlcatalog.c: added a --convert option to xmlcatalog to convert SGML ones to the XML syntax. * xmllint.c: small cleanup for $SGML_CATALOG_FILES support. Daniel
103 lines
2.8 KiB
C
103 lines
2.8 KiB
C
/**
|
|
* uri.c: interfaces of the Catalog handling system
|
|
*
|
|
* Reference: SGML Open Technical Resolution TR9401:1997.
|
|
* http://www.jclark.com/sp/catalog.htm
|
|
*
|
|
* XML Catalogs Working Draft 12 Jun 2001
|
|
* http://www.oasis-open.org/committees/entity/spec-2001-06-12.html
|
|
*
|
|
* See Copyright for the status of this software.
|
|
*
|
|
* daniel@veillard.com
|
|
*/
|
|
|
|
#ifndef __XML_CATALOG_H__
|
|
#define __XML_CATALOG_H__
|
|
|
|
#include <stdio.h>
|
|
|
|
#if defined(WIN32) && defined(_MSC_VER)
|
|
#include <libxml/xmlwin32version.h>
|
|
#else
|
|
#include <libxml/xmlversion.h>
|
|
#endif
|
|
#ifdef LIBXML_CATALOG_ENABLED
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* XML_CATALOGS_NAMESPACE:
|
|
*
|
|
* The namespace for the XML Catalogs elements
|
|
*/
|
|
#define XML_CATALOGS_NAMESPACE \
|
|
(const xmlChar *) "urn:oasis:names:tc:entity:xmlns:xml:catalog"
|
|
#define XML_CATALOG_PI \
|
|
(const xmlChar *) "oasis-xml-catalog"
|
|
|
|
/*
|
|
* The API is voluntarily limited to general cataloging
|
|
*/
|
|
typedef enum {
|
|
XML_CATA_PREFER_NONE = 0,
|
|
XML_CATA_PREFER_PUBLIC = 1,
|
|
XML_CATA_PREFER_SYSTEM
|
|
} xmlCatalogPrefer;
|
|
|
|
typedef enum {
|
|
XML_CATA_ALLOW_NONE = 0,
|
|
XML_CATA_ALLOW_GLOBAL = 1,
|
|
XML_CATA_ALLOW_DOCUMENT = 2,
|
|
XML_CATA_ALLOW_ALL = 3
|
|
} xmlCatalogAllow;
|
|
|
|
void xmlInitializeCatalog (void);
|
|
int xmlLoadCatalog (const char *filename);
|
|
void xmlLoadCatalogs (const char *paths);
|
|
void xmlCatalogCleanup (void);
|
|
void xmlCatalogDump (FILE *out);
|
|
xmlChar * xmlCatalogResolve (const xmlChar *pubID,
|
|
const xmlChar *sysID);
|
|
xmlChar * xmlCatalogResolveSystem (const xmlChar *sysID);
|
|
xmlChar * xmlCatalogResolvePublic (const xmlChar *pubID);
|
|
xmlChar * xmlCatalogResolveURI (const xmlChar *URI);
|
|
int xmlCatalogAdd (const xmlChar *type,
|
|
const xmlChar *orig,
|
|
const xmlChar *replace);
|
|
int xmlCatalogRemove (const xmlChar *value);
|
|
xmlDocPtr xmlParseCatalogFile (const char *filename);
|
|
int xmlCatalogConvert (void);
|
|
|
|
/*
|
|
* Strictly minimal interfaces for per-document catalogs used
|
|
* by the parser.
|
|
*/
|
|
void xmlCatalogFreeLocal (void *catalogs);
|
|
void * xmlCatalogAddLocal (void *catalogs,
|
|
const xmlChar *URL);
|
|
xmlChar * xmlCatalogLocalResolve (void *catalogs,
|
|
const xmlChar *pubID,
|
|
const xmlChar *sysID);
|
|
xmlChar * xmlCatalogLocalResolveURI(void *catalogs,
|
|
const xmlChar *URI);
|
|
/*
|
|
* Preference settings
|
|
*/
|
|
int xmlCatalogSetDebug (int level);
|
|
xmlCatalogPrefer xmlCatalogSetDefaultPrefer(xmlCatalogPrefer prefer);
|
|
void xmlCatalogSetDefaults (xmlCatalogAllow allow);
|
|
xmlCatalogAllow xmlCatalogGetDefaults (void);
|
|
|
|
/* DEPRECATED interfaces */
|
|
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);
|
|
const xmlChar * xmlCatalogGetPublic (const xmlChar *pubID);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* LIBXML_CATALOG_ENABLED */
|
|
#endif /* __XML_CATALOG_H__ */
|