Re: [xsl] Attribute name clashes??????????

Subject: Re: [xsl] Attribute name clashes??????????
From: "Jonathan Perret" <jonathan@xxxxxxxxxxxx>
Date: Tue, 19 Feb 2002 11:02:59 +0100
> Problem is there seems to be a name clash with the @name attribute.  To 
> get this idea to
> work at all I have to code the following workaround, changing @name to 
> @metadataItemName :
> 
> <xsl:template match="Item">
>      <xsl:variable name="localName" select="@name"/>
>     <xsl:variable name="metadata" 
> select="$GlobalMetadata/Item[@metadataItemName=$localName]/>

This should work just the same with @name instead of @metadataItemName.
What results are you seeing ?

Your first idea was right too, you just needed a way to write it :

<xsl:template match="Item">
    <xsl:variable name="metadata" 
        select="$GlobalMetadata/Item[@name=context()/@name]/>

Hope this helps,
--Jonathan



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


Current Thread