| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Summary: interface for the non-standard features | 2 * Summary: interface for the non-standard features |
| 3 * Description: implement some extension outside the XSLT namespace | 3 * Description: implement some extension outside the XSLT namespace |
| 4 * but not EXSLT with is in a different library. | 4 * but not EXSLT with is in a different library. |
| 5 * | 5 * |
| 6 * Copy: See Copyright for the status of this software. | 6 * Copy: See Copyright for the status of this software. |
| 7 * | 7 * |
| 8 * Author: Daniel Veillard | 8 * Author: Daniel Veillard |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #define XSLT_XT_NAMESPACE ((xmlChar *) "http://www.jclark.com/xt") | 41 #define XSLT_XT_NAMESPACE ((xmlChar *) "http://www.jclark.com/xt") |
| 42 | 42 |
| 43 /** | 43 /** |
| 44 * XSLT_XALAN_NAMESPACE: | 44 * XSLT_XALAN_NAMESPACE: |
| 45 * | 45 * |
| 46 * This is the Apache project XALAN processor namespace for extensions. | 46 * This is the Apache project XALAN processor namespace for extensions. |
| 47 */ | 47 */ |
| 48 #define XSLT_XALAN_NAMESPACE ((xmlChar *) \ | 48 #define XSLT_XALAN_NAMESPACE ((xmlChar *) \ |
| 49 "org.apache.xalan.xslt.extensions.Redirect") | 49 "org.apache.xalan.xslt.extensions.Redirect") |
| 50 | 50 |
| 51 /** | |
| 52 * XSLT_NORM_SAXON_NAMESPACE: | |
| 53 * | |
| 54 * This is Norm's namespace for SAXON extensions. | |
| 55 */ | |
| 56 #define XSLT_NORM_SAXON_NAMESPACE ((xmlChar *) \ | |
| 57 "http://nwalsh.com/xslt/ext/com.nwalsh.saxon.CVS") | |
| 58 | |
| 59 | 51 |
| 60 XSLTPUBFUN void XSLTCALL | 52 XSLTPUBFUN void XSLTCALL |
| 61 xsltFunctionNodeSet (xmlXPathParserContextPtr ctxt, | 53 xsltFunctionNodeSet (xmlXPathParserContextPtr ctxt, |
| 62 int nargs); | 54 int nargs); |
| 63 XSLTPUBFUN void XSLTCALL | 55 XSLTPUBFUN void XSLTCALL |
| 64 xsltDebug (xsltTransformContextPtr ctxt, | 56 xsltDebug (xsltTransformContextPtr ctxt, |
| 65 xmlNodePtr node, | 57 xmlNodePtr node, |
| 66 xmlNodePtr inst, | 58 xmlNodePtr inst, |
| 67 xsltStylePreCompPtr comp); | 59 xsltStylePreCompPtr comp); |
| 68 | 60 |
| 69 | 61 |
| 70 XSLTPUBFUN void XSLTCALL | 62 XSLTPUBFUN void XSLTCALL |
| 71 xsltRegisterExtras (xsltTransformContextPtr ctxt); | 63 xsltRegisterExtras (xsltTransformContextPtr ctxt); |
| 72 XSLTPUBFUN void XSLTCALL | 64 XSLTPUBFUN void XSLTCALL |
| 73 xsltRegisterAllExtras (void); | 65 xsltRegisterAllExtras (void); |
| 74 | 66 |
| 75 #ifdef __cplusplus | 67 #ifdef __cplusplus |
| 76 } | 68 } |
| 77 #endif | 69 #endif |
| 78 | 70 |
| 79 #endif /* __XML_XSLT_EXTRA_H__ */ | 71 #endif /* __XML_XSLT_EXTRA_H__ */ |
| 80 | 72 |
| OLD | NEW |