OLD | NEW |
1 /** | 1 /** |
2 * Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. | 2 * Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. |
3 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 3 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
4 * | 4 * |
5 * Permission is hereby granted, free of charge, to any person obtaining a copy | 5 * Permission is hereby granted, free of charge, to any person obtaining a copy |
6 * of this software and associated documentation files (the "Software"), to deal | 6 * of this software and associated documentation files (the "Software"), to deal |
7 * in the Software without restriction, including without limitation the rights | 7 * in the Software without restriction, including without limitation the rights |
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
9 * copies of the Software, and to permit persons to whom the Software is fur- | 9 * copies of the Software, and to permit persons to whom the Software is fur- |
10 * nished to do so, subject to the following conditions: | 10 * nished to do so, subject to the following conditions: |
11 * | 11 * |
12 * The above copyright notice and this permission notice shall be included in | 12 * The above copyright notice and this permission notice shall be included in |
13 * all copies or substantial portions of the Software. | 13 * all copies or substantial portions of the Software. |
14 * | 14 * |
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- | 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- |
17 * NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 17 * NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
18 * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | 18 * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
19 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- | 19 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- |
20 * NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 20 * NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
21 * | 21 * |
22 * Except as contained in this notice, the name of the authors shall not | 22 * Except as contained in this notice, the name of the authors shall not |
23 * be used in advertising or otherwise to promote the sale, use or other deal- | 23 * be used in advertising or otherwise to promote the sale, use or other deal- |
24 * ings in this Software without prior written authorization from him. | 24 * ings in this Software without prior written authorization from him. |
25 */ | 25 */ |
26 | 26 |
27 #include "core/xml/XSLTExtensions.h" | 27 #include "core/xml/XSLTExtensions.h" |
28 | 28 |
29 #include "platform/RuntimeEnabledFeatures.h" | |
30 #include "wtf/Assertions.h" | |
31 #include <libxml/xpathInternals.h> | 29 #include <libxml/xpathInternals.h> |
32 #include <libxslt/extensions.h> | 30 #include <libxslt/extensions.h> |
33 #include <libxslt/extra.h> | 31 #include <libxslt/extra.h> |
34 #include <libxslt/xsltutils.h> | 32 #include <libxslt/xsltutils.h> |
| 33 #include "platform/RuntimeEnabledFeatures.h" |
| 34 #include "wtf/Assertions.h" |
35 | 35 |
36 namespace blink { | 36 namespace blink { |
37 | 37 |
38 // FIXME: This code is taken from libexslt 1.1.11; should sync with newer | 38 // FIXME: This code is taken from libexslt 1.1.11; should sync with newer |
39 // versions. | 39 // versions. |
40 static void exsltNodeSetFunction(xmlXPathParserContextPtr ctxt, int nargs) { | 40 static void exsltNodeSetFunction(xmlXPathParserContextPtr ctxt, int nargs) { |
41 xmlChar* strval; | 41 xmlChar* strval; |
42 xmlNodePtr retNode; | 42 xmlNodePtr retNode; |
43 xmlXPathObjectPtr ret; | 43 xmlXPathObjectPtr ret; |
44 | 44 |
(...skipping 23 matching lines...) Expand all Loading... |
68 } | 68 } |
69 | 69 |
70 void registerXSLTExtensions(xsltTransformContextPtr ctxt) { | 70 void registerXSLTExtensions(xsltTransformContextPtr ctxt) { |
71 DCHECK(RuntimeEnabledFeatures::xsltEnabled()); | 71 DCHECK(RuntimeEnabledFeatures::xsltEnabled()); |
72 xsltRegisterExtFunction(ctxt, (const xmlChar*)"node-set", | 72 xsltRegisterExtFunction(ctxt, (const xmlChar*)"node-set", |
73 (const xmlChar*)"http://exslt.org/common", | 73 (const xmlChar*)"http://exslt.org/common", |
74 exsltNodeSetFunction); | 74 exsltNodeSetFunction); |
75 } | 75 } |
76 | 76 |
77 } // namespace blink | 77 } // namespace blink |
OLD | NEW |