extra.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  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.
  5. *
  6. * Copy: See Copyright for the status of this software.
  7. *
  8. * Author: Daniel Veillard
  9. */
  10. #ifndef __XML_XSLT_EXTRA_H__
  11. #define __XML_XSLT_EXTRA_H__
  12. #include <libxml/xpath.h>
  13. #include "xsltexports.h"
  14. #include "xsltInternals.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * XSLT_LIBXSLT_NAMESPACE:
  20. *
  21. * This is the libxslt namespace for specific extensions.
  22. */
  23. #define XSLT_LIBXSLT_NAMESPACE ((xmlChar *) "http://xmlsoft.org/XSLT/namespace")
  24. /**
  25. * XSLT_SAXON_NAMESPACE:
  26. *
  27. * This is Michael Kay's Saxon processor namespace for extensions.
  28. */
  29. #define XSLT_SAXON_NAMESPACE ((xmlChar *) "http://icl.com/saxon")
  30. /**
  31. * XSLT_XT_NAMESPACE:
  32. *
  33. * This is James Clark's XT processor namespace for extensions.
  34. */
  35. #define XSLT_XT_NAMESPACE ((xmlChar *) "http://www.jclark.com/xt")
  36. /**
  37. * XSLT_XALAN_NAMESPACE:
  38. *
  39. * This is the Apache project XALAN processor namespace for extensions.
  40. */
  41. #define XSLT_XALAN_NAMESPACE ((xmlChar *) \
  42. "org.apache.xalan.xslt.extensions.Redirect")
  43. /**
  44. * XSLT_NORM_SAXON_NAMESPACE:
  45. *
  46. * This is Norm's namespace for SAXON extensions.
  47. */
  48. #define XSLT_NORM_SAXON_NAMESPACE ((xmlChar *) \
  49. "http://nwalsh.com/xslt/ext/com.nwalsh.saxon.CVS")
  50. XSLTPUBFUN void XSLTCALL
  51. xsltFunctionNodeSet (xmlXPathParserContextPtr ctxt,
  52. int nargs);
  53. XSLTPUBFUN void XSLTCALL
  54. xsltDebug (xsltTransformContextPtr ctxt,
  55. xmlNodePtr node,
  56. xmlNodePtr inst,
  57. xsltStylePreCompPtr comp);
  58. XSLTPUBFUN void XSLTCALL
  59. xsltRegisterExtras (xsltTransformContextPtr ctxt);
  60. XSLTPUBFUN void XSLTCALL
  61. xsltRegisterAllExtras (void);
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65. #endif /* __XML_XSLT_EXTRA_H__ */