Re: [xsl] Accessing the source nodetree while in another context

Subject: Re: [xsl] Accessing the source nodetree while in another context
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 20 Nov 2002 16:24:55 GMT
> If I want to use templates, they are going
> to be in a global scope and I won't be able to access my variable as it
> isn't in the same scope.
just have a global variable at the top level of the stylesheet:

<xsl:variable name="originaldoc" select="/"/>


...
<xsl:variable name="mydoc" select="document('mydoc.xml')"/>
<xsl:apply-templates select="$mydoc//*"/>
...
<xsl:value-of select="$originaldoc/a/b/c"/>




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