This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: passing in a variable to the DOCUMENT()



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]