Re: [xsl] Applying text nodes: 2 processors, 2 behaviours

Subject: Re: [xsl] Applying text nodes: 2 processors, 2 behaviours
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 18 Nov 2002 16:40:06 GMT
<xsl:apply-templates select="$body" />

You can only apply templates to a node set (ie a set of nodes in a
source document).

Your parameters are not bound to a node set: to do so requires 
 <xsl:with-param name="title" select="......"/>
they are bound to result tree fragments.

so you should get an error message.

In this case I think you just want
<xsl:copy-of select="$title"/>

rather than apply-templates.

In general if you -do_ want to apply templates then you can use
your processors xx:node-set() extension function to turn a
result tree fragment into a node set, or alternatively 
(and better if possible) use xsl:with-param  with a select attribute so
that a node set is passed in rather than building a result tree
fragment.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread