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="//@secur.dissem='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 |
- RE: RE: Attribute test problem solved, (continued)
- Medina, Edward - Thu, 13 Apr 2000 13:25:08 -0400
- Medina, Edward - Thu, 13 Apr 2000 13:37:45 -0400
- Wendell Piez - Thu, 13 Apr 2000 17:07:59 +0100
- David Carlisle - Thu, 13 Apr 2000 19:48:58 +0100 (BST) <=
- Medina, Edward - Fri, 14 Apr 2000 11:32:56 -0400
- Selva, Francis - Fri, 14 Apr 2000 10:12:45 -0700
- Medina, Edward - Fri, 14 Apr 2000 15:22:25 -0400
|
|