2 * Summary: interface for the non-standard features
3 * Description: implement some extension outside the XSLT namespace
4 * but not EXSLT with is in a different library.
6 * Copy: See Copyright for the status of this software.
8 * Author: Daniel Veillard
11 #ifndef __XML_XSLT_EXTRA_H__
12 #define __XML_XSLT_EXTRA_H__
14 #include <libxml/xpath.h>
15 #include "xsltexports.h"
16 #include "xsltInternals.h"
23 * XSLT_LIBXSLT_NAMESPACE:
25 * This is the libxslt namespace for specific extensions.
27 #define XSLT_LIBXSLT_NAMESPACE ((xmlChar *) "http://xmlsoft.org/XSLT/namespace")
30 * XSLT_SAXON_NAMESPACE:
32 * This is Michael Kay's Saxon processor namespace for extensions.
34 #define XSLT_SAXON_NAMESPACE ((xmlChar *) "http://icl.com/saxon")
39 * This is James Clark's XT processor namespace for extensions.
41 #define XSLT_XT_NAMESPACE ((xmlChar *) "http://www.jclark.com/xt")
44 * XSLT_XALAN_NAMESPACE:
46 * This is the Apache project XALAN processor namespace for extensions.
48 #define XSLT_XALAN_NAMESPACE ((xmlChar *) \
49 "org.apache.xalan.xslt.extensions.Redirect")
52 XSLTPUBFUN
void XSLTCALL
53 xsltFunctionNodeSet (xmlXPathParserContextPtr ctxt
,
55 XSLTPUBFUN
void XSLTCALL
56 xsltDebug (xsltTransformContextPtr ctxt
,
59 xsltElemPreCompPtr comp
);
62 XSLTPUBFUN
void XSLTCALL
63 xsltRegisterExtras (xsltTransformContextPtr ctxt
);
64 XSLTPUBFUN
void XSLTCALL
65 xsltRegisterAllExtras (void);
71 #endif /* __XML_XSLT_EXTRA_H__ */