[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: template name in attributes

Subject: RE: template name in attributes
From: "Aron Bock" <aronbock@xxxxxxxxxxx>
Date: Mon, 30 May 2005 22:34:19 +0000
match name
i have the xml:

<left>
    <box name="login"/>
    <box name="quicksearch"/>
    <box name="t_news"/>
    <box name="t_threads"/>
</left>

and the xsl:

<xsl:template match="left">
    <xsl:for-each select="box">
        <xsl:apply-templates select="@name"/>
    </xsl:for-each>
</xsl:template>

This much is kosher.



<xsl:template match="quicksearch">
   ...
</xsl:template>


This, however, doesn't work as expected because the value of the match attribute should [usually] be the name of the matched element or attribute, not their values. Thus, it would something like:

match="@name"

or

match="@name[. = 'quicksearch']"

The "usually" above is because it's possible to match using non name-specific expressions: node() to match any node, text() for text nodes, @* for attributes, etc.


why is the output only the value of the attribute not the template that matches the value of the attribute?

So now we know why the template doesn't fire. The "value of the attribute" is being output because XSLT has default, behind-the-scenes templates that automatically output certain nodes, if not overridden. Thus, if you left things as they were, then add the following template, you wouldn't get even the attribute value output:


<xsl:template match="@*"/>


Regards,


--A

_________________________________________________________________
On the road to retirement? Check out MSN Life Events for advice on how to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.