xsl-list
[Top] [All Lists]

RE: conditional instruction vs. conditional expression

2005-01-27 11:11:57
In the first case, you aren't actually passing a string: you are passing a
tree consisting of a document node and a text node as its child. This is a
much more heavyweight structure than the string which you pass in the second
case, because nodes have identity, base URI, parent pointers, etc.

Michael Kay
http://www.saxonica.com/ 

-----Original Message-----
From: Kevin Rodgers [mailto:kevin(_dot_)rodgers(_at_)ihs(_dot_)com] 
Sent: 27 January 2005 15:10
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] conditional instruction vs. conditional expression

What are the advantages and disadvantages of passing a string 
parameter
via a conditional instruction (XPath 1.0):

    <xsl:with-param name="content">
      <xsl:if test="mb3e:org_list/mb3e:org_code[(_at_)type='APPR' and
                                                text()='ANSI']">
        <xsl:text>*</xsl:text>
      </xsl:if>
    </xsl:with-param>

vs. via a conditional expression (XPath 2.0):

    <xsl:with-param name="content"
         select="if (mb3e:org_list/mb3e:org_code[(_at_)type='APPR' and
                                                 text()='ANSI'])
                 then '*'
                 else ''"/>

Thanks,
-- 
Kevin Rodgers


--~------------------------------------------------------------------
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>
--~--



--~------------------------------------------------------------------
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>
--~--



<Prev in Thread] Current Thread [Next in Thread>