OLD | NEW |
1 /* | 1 /* |
2 * dynamic.c: Implementation of the EXSLT -- Dynamic module | 2 * dynamic.c: Implementation of the EXSLT -- Dynamic module |
3 * | 3 * |
4 * References: | 4 * References: |
5 * http://www.exslt.org/dyn/dyn.html | 5 * http://www.exslt.org/dyn/dyn.html |
6 * | 6 * |
7 * See Copyright for the status of this software. | 7 * See Copyright for the status of this software. |
8 * | 8 * |
9 * Authors: | 9 * Authors: |
10 * Mark Vakoc <mark_vakoc@jdedwards.com> | 10 * Mark Vakoc <mark_vakoc@jdedwards.com> |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 void | 292 void |
293 exsltDynRegister (void) { | 293 exsltDynRegister (void) { |
294 xsltRegisterExtModuleFunction ((const xmlChar *) "evaluate", | 294 xsltRegisterExtModuleFunction ((const xmlChar *) "evaluate", |
295 EXSLT_DYNAMIC_NAMESPACE, | 295 EXSLT_DYNAMIC_NAMESPACE, |
296 exsltDynEvaluateFunction); | 296 exsltDynEvaluateFunction); |
297 xsltRegisterExtModuleFunction ((const xmlChar *) "map", | 297 xsltRegisterExtModuleFunction ((const xmlChar *) "map", |
298 EXSLT_DYNAMIC_NAMESPACE, | 298 EXSLT_DYNAMIC_NAMESPACE, |
299 exsltDynMapFunction); | 299 exsltDynMapFunction); |
300 | 300 |
301 } | 301 } |
OLD | NEW |