| OLD | NEW |
| 1 /* | 1 /* |
| 2 * transform.c: Implementation of the XSL Transformation 1.0 engine | 2 * transform.c: Implementation of the XSL Transformation 1.0 engine |
| 3 * transform part, i.e. applying a Stylesheet to a document | 3 * transform part, i.e. applying a Stylesheet to a document |
| 4 * | 4 * |
| 5 * References: | 5 * References: |
| 6 * http://www.w3.org/TR/1999/REC-xslt-19991116 | 6 * http://www.w3.org/TR/1999/REC-xslt-19991116 |
| 7 * | 7 * |
| 8 * Michael Kay "XSLT Programmer's Reference" pp 637-643 | 8 * Michael Kay "XSLT Programmer's Reference" pp 637-643 |
| 9 * Writing Multiple Output Files | 9 * Writing Multiple Output Files |
| 10 * | 10 * |
| (...skipping 6444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6455 XSLT_NAMESPACE, | 6455 XSLT_NAMESPACE, |
| 6456 (xsltTransformFunction) xsltDebug); | 6456 (xsltTransformFunction) xsltDebug); |
| 6457 xsltRegisterExtElement(ctxt, (const xmlChar *) "otherwise", | 6457 xsltRegisterExtElement(ctxt, (const xmlChar *) "otherwise", |
| 6458 XSLT_NAMESPACE, | 6458 XSLT_NAMESPACE, |
| 6459 (xsltTransformFunction) xsltDebug); | 6459 (xsltTransformFunction) xsltDebug); |
| 6460 xsltRegisterExtElement(ctxt, (const xmlChar *) "fallback", | 6460 xsltRegisterExtElement(ctxt, (const xmlChar *) "fallback", |
| 6461 XSLT_NAMESPACE, | 6461 XSLT_NAMESPACE, |
| 6462 (xsltTransformFunction) xsltDebug); | 6462 (xsltTransformFunction) xsltDebug); |
| 6463 | 6463 |
| 6464 } | 6464 } |
| OLD | NEW |