2001-02-23 17:55:21 +00:00
|
|
|
/*
|
|
|
|
* xinclude.c : API to handle XInclude processing
|
|
|
|
*
|
|
|
|
* World Wide Web Consortium Working Draft 26 October 2000
|
|
|
|
* http://www.w3.org/TR/2000/WD-xinclude-20001026
|
|
|
|
*
|
|
|
|
* See Copyright for the status of this software.
|
|
|
|
*
|
2001-06-24 12:13:24 +00:00
|
|
|
* daniel@veillard.com
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_XINCLUDE_H__
|
|
|
|
#define __XML_XINCLUDE_H__
|
|
|
|
|
2003-08-25 09:05:12 +00:00
|
|
|
#include <libxml/xmlversion.h>
|
2001-02-23 17:55:21 +00:00
|
|
|
#include <libxml/tree.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2003-11-03 12:31:38 +00:00
|
|
|
#define XINCLUDE_NS (const xmlChar *) "http://www.w3.org/2001/XInclude"
|
|
|
|
#define XINCLUDE_NODE (const xmlChar *) "include"
|
|
|
|
#define XINCLUDE_FALLBACK (const xmlChar *) "fallback"
|
|
|
|
#define XINCLUDE_HREF (const xmlChar *) "href"
|
|
|
|
#define XINCLUDE_PARSE (const xmlChar *) "parse"
|
|
|
|
#define XINCLUDE_PARSE_XML (const xmlChar *) "xml"
|
|
|
|
#define XINCLUDE_PARSE_TEXT (const xmlChar *) "text"
|
|
|
|
#define XINCLUDE_PARSE_ENCODING (const xmlChar *) "encoding"
|
|
|
|
|
|
|
|
typedef struct _xmlXIncludeCtxt xmlXIncludeCtxt;
|
|
|
|
typedef xmlXIncludeCtxt *xmlXIncludeCtxtPtr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* standalone processing
|
|
|
|
*/
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-11-03 12:31:38 +00:00
|
|
|
xmlXIncludeProcess (xmlDocPtr doc);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
2003-11-03 12:31:38 +00:00
|
|
|
xmlXIncludeProcessTree (xmlNodePtr tree);
|
|
|
|
/*
|
|
|
|
* contextual processing
|
|
|
|
*/
|
|
|
|
XMLPUBFUN xmlXIncludeCtxtPtr XMLCALL
|
|
|
|
xmlXIncludeNewContext (xmlDocPtr doc);
|
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlXIncludeFreeContext (xmlXIncludeCtxtPtr ctxt);
|
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlXIncludeProcessNode (xmlXIncludeCtxtPtr ctxt,
|
|
|
|
xmlNodePtr tree);
|
2001-02-23 17:55:21 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __XML_XINCLUDE_H__ */
|