[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Error trapping in xsl

Subject: RE: Error trapping in xsl
From: Jarno.Elovirta@xxxxxxxxx
Date: Thu, 12 Jul 2001 12:06:47 +0300
RE:  Error trapping in xsl
> <xsl:choose>
>          <xsl:when test="foo"><!--ELEMENT CONTENT NOT EMPTY-->
>                 <!--SHOW IMAGE LINK VALUE-->
>                 <img><xsl:attribute name="src"><xsl:value-of
> select="image_link" /></xsl:attribute></img>
>          </xsl:when>
>          <xsl:otherwise><!--ELEMENT CONTENT EMPTY-->
>                 <!--SHOW NULL IMAGE-->
>                 <img><xsl:attribute
> name="src">null.gif</xsl:attribute></img>
>         </xsl:otherwise>
> </xsl:choose
> 
> Is this the best/only method to use?

Do you mean the error trapping thingy to which Mike K. already answered, or
whether that is the best way of doing that particular thingy above? If
latter, you could write

  <img>
    <xsl:attribute name="src">
      <xsl:choose>
        <xsl:when test="image_link != ''">
          <xsl:value-of select="image_link" />
        </xsl:when>
        <xsl:otherwise>null.gif</xsl:otherwise>
      </xsl:choose>
    </xsl:attribute>
  </img>

Which would be a bit shorter, or

  <img src="{substring(concat('null.gif', image_link), not(image_link = '')
* 9, 1 div 0)}" />

Which would be even shorter. Hope this helps,

Jarno

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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.