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]

Attribute test problem solved


Hello there!

I solved my attribute test in the following manner

<xsl:choose>
	<xsl:when test="//@secur.classif='P'">
		<xsl:text>PRIORITY</xsl:text>
	</xsl:when>
	<xsl:otherwise>
		<xsl:choose>
			<xsl:when test="//@secur.classif='F'">
				<xsl:text>FAST</xsl:text>	
			</xsl:when>	
			<xsl:otherwise>
			<xsl:choose>
				<xsl:when test="//@secur.classif='R'">
					<xsl:text>ROUTINE</xsl:text>
				</xsl:when>	
				<xsl:otherwise>
			         		<xsl:text>SLOW</xsl:text>
				</xsl:otherwise>
			</xsl:choose>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:otherwise>
</xsl:choose> 

I tried what Mike Kay sent me, but could not make it work,
with my situation.  Would there be a simpler way to test than 
this since I have to repeat this process with other priorities 
about five more times.

Any help is appreciated.

Thanks,

Eddy


 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]