xsl-list
[Top] [All Lists]

Re: [xsl] Stylesheet to output XML Tags (node names)

2006-04-20 12:30:20
I changed the stylesheet to output also attributes, and changed a few things:

<?xml version='1.0' encoding='ISO-8859-1'?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
        <xsl:key name="nodenames" match="*" use="name()" />
        <xsl:template match="/">
                <nodes>
                        <xsl:apply-templates select="*[count(. | 
key('nodenames', name())[1]) = 1]"/>
                </nodes>
        </xsl:template>
        <xsl:template match="*">
                <node>
                        <xsl:attribute name="name">
                                <xsl:value-of select="name()" />
                        </xsl:attribute>
                        <xsl:apply-templates select="@*"/>
                </node>
                <xsl:apply-templates select="*[count(. | key('nodenames', 
name())[1]) = 1]"/>
        </xsl:template>
        <xsl:template match="@*">
                <attr>
                        <xsl:attribute name="name">
                                <xsl:value-of select="name()" />
                        </xsl:attribute>
                </attr>
        </xsl:template>
</xsl:transform>

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>