[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: Attribute test problem solved


Subject: Re: Attribute test problem solved
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 13 Apr 2000 19:48:58 +0100 (BST)

> how could I do the code below with a variable

Just put it inside xsl:variable.

<xsl:variable name="x">
<xsl:choose>
<xsl:when test="something">something</xsl:when>
<xsl:otherwise>
<xsl:text>U N C L A S S I F I E D</xsl:text>
	<xsl:if test="//@...='FOUO'">
 	<xsl:text>//FOR OFFICIAL USE ONLY</xsl:text>
	</xsl:if>
</xsl:otherwise>
</xsl:choose> 
</xsl:variable>

then just use

<xsl:value-of select="$x"/>

in two places, rather than searching over the entire document twice.

David


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread