mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2026-01-18 14:21:02 +03:00
* Makefile.am xmlcatalog.c libxml.spec.in: renaming testCatalog as xmlcatalog, making it an installed app adding a shell, and preparing it to be a /etc/xml/catalog management tool, though not ready yet * catalog.c include/libxml/catalog.h: adding support for XML Catalogs http://www.oasis-open.org/committees/entity/ not finished, there is some interesting tradeoffs and a few open questions left. Daniel
58 lines
1.5 KiB
C
58 lines
1.5 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"
|
|
|
|
int xmlLoadCatalog (const char *filename);
|
|
void xmlLoadCatalogs (const char *paths);
|
|
void xmlCatalogCleanup (void);
|
|
void xmlCatalogDump (FILE *out);
|
|
const xmlChar * xmlCatalogGetSystem (const xmlChar *sysID);
|
|
const xmlChar * xmlCatalogGetPublic (const xmlChar *pubID);
|
|
const xmlChar * xmlCatalogResolve (const xmlChar *pubID,
|
|
const xmlChar *sysID);
|
|
int xmlCatalogAdd (const xmlChar *type,
|
|
const xmlChar *orig,
|
|
const xmlChar *replace);
|
|
int xmlCatalogRemove (const xmlChar *value);
|
|
int xmlCatalogSetDebug (int level);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* LIBXML_CATALOG_ENABLED */
|
|
#endif /* __XML_CATALOG_H__ */
|