Re: [xsl] Resetting context to main document with "document()"?

Subject: Re: [xsl] Resetting context to main document with "document()"?
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Tue, 05 Mar 2002 12:57:18 +0100
But this won't solve his problem. He needs a second variable storing the root of the current document:

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

<xsl:variable name="doc2" select="document(...)"/>

Now you can switch via <xsl:for-each select="$doc1"> or select="$doc2".

Regards,

Joerg


cutlass wrote:
instead of using xsl:for-each

place the document in a variable

<xsl:variable name="thedoc" select="document('somdoc.xml')"/>

then use $thedoc in your template or for-each

cheers, jim fuller


----- Original Message ----- From: "Costantino Sertorio" <costantino.sertorio@xxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, March 05, 2002 11:08 AM
Subject: [xsl] Resetting context to main document with "document()"?




Hello,
in my XSL, I am parsing a few other documents besides the main one. In
several places in the XSL, I need to switch the context to some other
document, using:
<xsl:for-each select="document(...)"/>
How can I switch again to the main document?

Thanks,
Costantino


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





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





--

System Development
VIRBUS AG
Fon  +49(0)341-979-7411
Fax  +49(0)341-979-7409
joerg.heinicke@xxxxxxxxx
www.virbus.de


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



Current Thread