This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Whose axis am I?



    I believe I am confusing myself with an axis issue.

    Why is it that with xml:

    <root>
           <tag name="greedy"></tag>
           <tag name="lonely"></tag>
    </root>

if I output the tag attributes with

<xsl:template match="tag">
    <xsl:value-of select="@name"/>
</xsl:template match>

I get both of them:

greedylonely

but if I match with

<xsl:template match="tag">
    <xsl:value-of select="../tag/@name"/>
</xsl:template match>

I get:

greedygreedy

that is, the first attribute twice.

Thanks


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]