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]

expression comparing node and variable


I'm probably overlooking something simple here... i hope.

I have this variable:
<xsl:variable name="currentsection>other stuff</xsl:variable>

then I have 3 elements:
<section>some stuff</section>
<section>more stuff</section>
<section>other stuff</section>

I want them to appear as
<section>some stuff</section>
<section>more stuff</section>
<highlight><section>other stuff</section></highlight>

I've put in my stylesheet:
<xsl:for-each select="section">
   <xsl:choose>
	<xsl:when test="section=$currentsection">
		<highlight><xsl:value-of select="section"/></highlight>
	</xsl:when>
	<xsl:when test="not(section=$currentsection)">
		<xsl:value-of select="section"/>
	</xsl:when>
   </xsl:choose>
</xsl:for each

but the first <xsl:when> stuff never gets executed... have i messed up the
expressions, or is it something else?


 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]