mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
* tests/docs/Makefile.am tests/docs/bug-87.xml tests/general/Makefile.am tests/general/bug-87.*: added a example in the regression tests for a case where the XML default namespace was missing from the namespace axis * xsltproc/xsltproc.c: added the informations that parameter strings are expected to be UTF8 * libxslt/attributes.c: fixes on attribute group implementation Daniel
17 lines
423 B
XML
17 lines
423 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
|
|
version="1.0">
|
|
<xsl:output method="text"/>
|
|
<xsl:template match="/XML_DATA//*">
|
|
<xsl:value-of select="name()"/>
|
|
<xsl:text> - </xsl:text>
|
|
<xsl:for-each select="namespace::*">
|
|
<xsl:text> "</xsl:text>
|
|
<xsl:value-of select="name()"/>
|
|
<xsl:text>" </xsl:text>
|
|
</xsl:for-each>
|
|
<xsl:text>
|
|
</xsl:text>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|