Re: [xsl] Variables in attribute expressions - version of standard?

Subject: Re: [xsl] Variables in attribute expressions - version of standard?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 17 Oct 2002 19:49:57 +0100
msxml is right you can't  use variables in match patterns (a half
hearted attempt to avoid circularity in variable definitions)

so don't do this

do this

<xsl:template match="fred">
<xsl:choose>
<xsl:when test="@id = $foo">
    <b>
    <xsl:value-of select="baz/name" />
    </b>
</xsl:when>
<xsl:otherwise>
something else
</xsl:otherwise>
</xsl:choose>
</xsl:template>

note you _never_ want to begin a match  pattern with // in any case.


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread