| OLD | NEW |
| 1 /* | 1 /* |
| 2 * functions.c: Implementation of the XSLT extra functions | 2 * functions.c: Implementation of the XSLT extra functions |
| 3 * | 3 * |
| 4 * Reference: | 4 * Reference: |
| 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 | 5 * http://www.w3.org/TR/1999/REC-xslt-19991116 |
| 6 * | 6 * |
| 7 * See Copyright for the status of this software. | 7 * See Copyright for the status of this software. |
| 8 * | 8 * |
| 9 * daniel@veillard.com | 9 * daniel@veillard.com |
| 10 * Bjorn Reese <breese@users.sourceforge.net> for number formatting | 10 * Bjorn Reese <breese@users.sourceforge.net> for number formatting |
| (...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 xsltFormatNumberFunction); | 996 xsltFormatNumberFunction); |
| 997 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "generate-id", | 997 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "generate-id", |
| 998 xsltGenerateIdFunction); | 998 xsltGenerateIdFunction); |
| 999 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "system-property", | 999 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "system-property", |
| 1000 xsltSystemPropertyFunction); | 1000 xsltSystemPropertyFunction); |
| 1001 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "element-available", | 1001 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "element-available", |
| 1002 xsltElementAvailableFunction); | 1002 xsltElementAvailableFunction); |
| 1003 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "function-available", | 1003 xmlXPathRegisterFunc(ctxt, (const xmlChar *) "function-available", |
| 1004 xsltFunctionAvailableFunction); | 1004 xsltFunctionAvailableFunction); |
| 1005 } | 1005 } |
| OLD | NEW |