OLD | NEW |
1 /* | 1 /* |
2 * date.c: Implementation of the EXSLT -- Dates and Times module | 2 * date.c: Implementation of the EXSLT -- Dates and Times module |
3 * | 3 * |
4 * References: | 4 * References: |
5 * http://www.exslt.org/date/date.html | 5 * http://www.exslt.org/date/date.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 * Charlie Bozeman <cbozeman@HiWAAY.net> | 10 * Charlie Bozeman <cbozeman@HiWAAY.net> |
(...skipping 3891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3902 (const xmlChar *) EXSLT_DATE_NAMESPACE, | 3902 (const xmlChar *) EXSLT_DATE_NAMESPACE, |
3903 exsltDateWeekInYearFunction) | 3903 exsltDateWeekInYearFunction) |
3904 && !xmlXPathRegisterFuncNS(ctxt, | 3904 && !xmlXPathRegisterFuncNS(ctxt, |
3905 (const xmlChar *) "year", | 3905 (const xmlChar *) "year", |
3906 (const xmlChar *) EXSLT_DATE_NAMESPACE, | 3906 (const xmlChar *) EXSLT_DATE_NAMESPACE, |
3907 exsltDateYearFunction)) { | 3907 exsltDateYearFunction)) { |
3908 return 0; | 3908 return 0; |
3909 } | 3909 } |
3910 return -1; | 3910 return -1; |
3911 } | 3911 } |
OLD | NEW |