mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-08 21:42:07 +03:00
libxslt/xsltproc.c: counting errors and warnings at compilation time. Stop processing in case of error. - tests/docs/bug-1[89]* tests/general/-1[89]* tests/general/inner.xsl: added more namespace related bug checks Daniel
13 lines
293 B
XML
13 lines
293 B
XML
<?xml version= "1.0"?>
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:my="http://my/namespace"
|
|
exclude-result-prefixes="my">
|
|
|
|
<xsl:template match="my:document">
|
|
Big <xsl:apply-templates select="my:item"/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|