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]
Other format: [Raw text]

Re: Attribute name clashes??????????


> 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


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