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: <xsl:if ... question



Basically I want to test if the value of the
identifierref attribute in the item element, is equal
to the identifier attribute, in the resource element.

If so, then I want to take the value of the href
attribute from the resource element and use it to
create a link in my html document, along with the
content of the title element, which will be the name
of the link. 



If you are on the item node then

<xsl:variable name="x" select="."/>
<xsl:for-each
select="/topwhateverthisis/resources/resource[@identifier=$x/@identifierref]">
<a href="{@href}"><xsl:apply-templates select="$x/title"/></a>
</xsl:for-each>


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


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