Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: third_party/libxslt/libxslt/extra.h

Issue 2777943003: Roll libxslt to ac341cbd792ee572941cc9a66e73800219a1a386 (Closed)
Patch Set: Update README.chromium. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libxslt/libxslt/Makefile.in ('k') | third_party/libxslt/libxslt/extra.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/libxslt/libxslt/Makefile.in ('k') | third_party/libxslt/libxslt/extra.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698