Altova Mailing List Archives
>xsl-list Archive Home
>Recent entries
>Thread Prev -
>Thread Next - RE: [xsl] xsl query to determine image
RE: [xsl] xsl query to determine image
To:
Date: 5/23/2003 9:51:00 AM
Dave,
Thanks for the input. I plugged that in, and played with it a bit, and it
doesn't work. Any thoughts?
Thanks,
Larry
-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Friday, May 23, 2003 11:16 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] xsl query to determine image
<xsl:variable name="tmpSite"><xsl:value-of
select="site"/></xsl:variable>
it's more efficient to go
<xsl:variable name="tmpSite" select="site"/>
as otherwise you are making a result tree fragment, which is relatively
expensive.
I think you just want
<td><xsl:value-of select="site"/><br>
<img>
<xsl:attribute name="src">
<xsl:choose>
<xsl:when test="severity = 'MINOR'">Image2</xsl:when>
<xsl:when test="severity = 'CRITICAL'">Image3</xsl:when>
<xsl:otherwise>Image1</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</img>
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-listDisclaimer
These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

