| OLD | NEW |
| 1 /* | 1 /* |
| 2 * extra.c: Implementation of non-standard features | 2 * extra.c: Implementation of non-standard features |
| 3 * | 3 * |
| 4 * Reference: | 4 * Reference: |
| 5 * Michael Kay "XSLT Programmer's Reference" pp 637-643 | 5 * Michael Kay "XSLT Programmer's Reference" pp 637-643 |
| 6 * The node-set() extension function | 6 * The node-set() extension function |
| 7 * | 7 * |
| 8 * See Copyright for the status of this software. | 8 * See Copyright for the status of this software. |
| 9 * | 9 * |
| 10 * daniel@veillard.com | 10 * daniel@veillard.com |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 (xsltTransformFunction) xsltDocumentElem); | 187 (xsltTransformFunction) xsltDocumentElem); |
| 188 xsltRegisterExtModuleElement((const xmlChar *) "document", | 188 xsltRegisterExtModuleElement((const xmlChar *) "document", |
| 189 XSLT_XT_NAMESPACE, | 189 XSLT_XT_NAMESPACE, |
| 190 xsltDocumentComp, | 190 xsltDocumentComp, |
| 191 (xsltTransformFunction) xsltDocumentElem); | 191 (xsltTransformFunction) xsltDocumentElem); |
| 192 xsltRegisterExtModuleElement((const xmlChar *) "document", | 192 xsltRegisterExtModuleElement((const xmlChar *) "document", |
| 193 XSLT_NAMESPACE, | 193 XSLT_NAMESPACE, |
| 194 xsltDocumentComp, | 194 xsltDocumentComp, |
| 195 (xsltTransformFunction) xsltDocumentElem); | 195 (xsltTransformFunction) xsltDocumentElem); |
| 196 } | 196 } |
| OLD | NEW |