Re: [xsl] passing in a variable to the DOCUMENT()

Subject: Re: [xsl] passing in a variable to the DOCUMENT()
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 11 Jan 2002 16:56:48 GMT
> <xsl:variable name="xmlfile" select="gfile">

so if the current node has a <grfile> element child looking like
<gfile>../cgi-bin/xml/thisdatafile.xml</gfile> then
$xmlfile will be set to (the set of) gfile element nodes which are
children of the current node.

then 

<xsl:variable name="datafile" select="document($xmlfile)"/>

should produce you a node set consisting of one root node for each
gfile element in your xmlfile node set.

the documenet associated with each of these document nodes will be the
document add the uri specified in the text of the gfile element, taking
relative URI relative to the URI of the stylesheet.

> Is this allowed?  
yes

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