mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-01 14:06:55 +03:00
- libxslt/extensions.c: fixed stoopid bug - libxslt/Makefile.am libxslt/extra.[ch]: added a new module carrying extensions to the specification. Added node-set() for existing saxon and xt namespaces and debug() in libxslt namespace (http://xmlsoft.org/XSLT/namespace) - libxslt/xsltutils.[ch] transform.c: moved xsltDebug to extra.c plus cleanup. - configure.in tests/Makefile.am tests/namespaces: added some namespaces tests, including a test calling the extra debugging function in libxslt namespace, worked first time !!! Daniel
10 lines
253 B
XML
10 lines
253 B
XML
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns="http://www.w3.org/TR/xhtml1/strict"
|
|
xmlns:tst="http://example.org/">
|
|
|
|
<xsl:template match="tst:doc[5]">
|
|
success
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|