mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-11-27 16:21:14 +03:00
* tests/plugins/plugin.* tests/Makefile.am libxslt/extensions.c libxslt/Makefile.am configure.in: Applied another patch from Joel Reed, fixed a segfault and changed the configure code a bit to work in my debug environment. Daniel
13 lines
462 B
XML
13 lines
462 B
XML
<?xml version='1.0'?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:libxslt="http://xmlsoft.org/xslt/testplugin"
|
|
xmlns:test="http://xmlsoft.org/xslt/testplugin"
|
|
xsl:extension-element-prefixes="libxslt test"
|
|
version='1.0'>
|
|
<!-- the prefix is registered twice to check single initialization -->
|
|
<xsl:template match="/">
|
|
<libxslt:testplugin/>
|
|
<xsl:value-of select="libxslt:testplugin('SUCCESS')"/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|