| OLD | NEW |
| 1 /* | 1 /* |
| 2 * imports.c: Implementation of the XSLT imports | 2 * imports.c: Implementation of the XSLT imports |
| 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 */ | 10 */ |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 xmlHashLookup2(style->namedTemplates, name, nameURI); | 405 xmlHashLookup2(style->namedTemplates, name, nameURI); |
| 406 if (cur != NULL) | 406 if (cur != NULL) |
| 407 return(cur); | 407 return(cur); |
| 408 } | 408 } |
| 409 | 409 |
| 410 style = xsltNextImport(style); | 410 style = xsltNextImport(style); |
| 411 } | 411 } |
| 412 return(NULL); | 412 return(NULL); |
| 413 } | 413 } |
| 414 | 414 |
| OLD | NEW |