Subject: Re: Conflicting Node Values
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 25 May 2000 13:09:00 +0100 (BST)
|
<xsl:if test="current() = ../ALIAS[1]"><h5>ALIASES: </h5></xsl:if>
This is equivalent to "see if the current node does not have any preceding
siblings that are also called ALIAS". In other words:
<xsl:if test="not(preceding-sibling::ALIAS)"><h5>ALIASES: </h5></xsl:if>
I don't know which gives better performance.
They test different things. the first tests if the string value of the
current node's content is equal to the string value of the first ALIAS
The second tests if there is an earlier ALIAS node.
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|