xsl-list
[Top] [All Lists]

Re: Avoiding dummy xsl:if with apply-templates

2005-02-12 21:43:55
Something like this:

  <xsl:apply-templates select="elements[1]" mode="list">
    <xsl:with-param name="pElements" select="elements"/>
  </xsl:apply-templates>

Then the template to wrap the results in a "ul" is the following:

 <xsl:template match="element" mode="list">
    <xsl:param name="pElements"/>
    <ul>
        <xsl:apply-templates select="$pElements" mode="single"/>
   </ul>
 </xsl:template>


Or in XPath 2.0 most generally:

     if(exists(x))
        then f(g(x))
        else ()


Cheers,
Dimitre Novatchev

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--