Re: [xsl] configuring a conditional

Subject: Re: [xsl] configuring a conditional
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 24 May 2005 17:15:08 +0100
As Wendell said you want the linkend attribute of your $cite-ref element

so
        <xsl:if test="$cite-ref is
key('refs',$cite-ref/@linkend)[1]">FIRST</xsl:if>


incidentally it looks like that code requres  $cite-ref to be a single
element node, but you have declared it as

     <xsl:param name="cite-ref" as="element()*"/>

ie you allow it to be the empty sequence or more than one element.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread