2 * Summary: Interfaces, constants and types related to the XSLT engine
3 * Description: Interfaces, constants and types related to the XSLT engine
5 * Copy: See Copyright for the status of this software.
7 * Author: Daniel Veillard
10 #ifndef __XML_XSLT_H__
11 #define __XML_XSLT_H__
13 #include <libxml/tree.h>
14 #include "xsltexports.h"
21 * XSLT_DEFAULT_VERSION:
23 * The default version of XSLT supported.
25 #define XSLT_DEFAULT_VERSION "1.0"
28 * XSLT_DEFAULT_VENDOR:
30 * The XSLT "vendor" string for this processor.
32 #define XSLT_DEFAULT_VENDOR "libxslt"
37 * The XSLT "vendor" URL for this processor.
39 #define XSLT_DEFAULT_URL "http://xmlsoft.org/XSLT/"
44 * The XSLT specification namespace.
46 #define XSLT_NAMESPACE ((const xmlChar *)"http://www.w3.org/1999/XSL/Transform")
51 * The set of options to pass to an xmlReadxxx when loading files for
54 #define XSLT_PARSE_OPTIONS \
55 XML_PARSE_NOENT | XML_PARSE_DTDLOAD | XML_PARSE_DTDATTR | XML_PARSE_NOCDATA
60 * This value is used to detect templates loops.
62 XSLTPUBVAR
int xsltMaxDepth
;
67 * * This value is used to detect templates loops.
69 XSLTPUBVAR
int xsltMaxVars
;
74 * The version string for libxslt.
76 XSLTPUBVAR
const char *xsltEngineVersion
;
81 * The version of libxslt compiled.
83 XSLTPUBVAR
const int xsltLibxsltVersion
;
88 * The version of libxml libxslt was compiled against.
90 XSLTPUBVAR
const int xsltLibxmlVersion
;
93 * Global initialization function.
96 XSLTPUBFUN
void XSLTCALL
100 * Global cleanup function.
102 XSLTPUBFUN
void XSLTCALL
103 xsltCleanupGlobals (void);
109 #endif /* __XML_XSLT_H__ */