[xsl] Shorter rewrite

Subject: [xsl] Shorter rewrite
From: "Joeri Belis" <joeri.belis@xxxxxxxxxxxx>
Date: Mon, 5 Aug 2002 16:58:56 +0200
This code snipped tests for the presence of the 'text' attribute and then
chooses to copy all the attributes or all except ss:Formula.
My question is can this be written in a shorter verion. Direct in the
copy-of selection.

I find i need alot of 'choose' statements and this feels like overhead of an
inexperienced coder.
thanks, J

<xsl:choose>
  <xsl:when test="$node_detlijn[$node_position]/@type = 'text'">
    <xsl:copy-of select="@*[name() !='ss:Formula']"/>
  </xsl:when>
  <xsl:otherwise>
    <xsl:copy-of select="@*"/>
  </xsl:otherwise>
</xsl:choose>



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


Current Thread