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]

Re: Remote source document


Hi,

> I have a problem with a remote ducument. I use 'for-each' to itterate 
> through som elements in a remote document using 'document()'. However 
> beeing in the loop i seem to loose scope of the original document. How 
> do i acces elements in the original source document within the loop?

Save the original root node in a variable:

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

Then, inside xsl:for-each (which isn't really a loop), do

<xsl:for-each select="document(...)/...">
   ...
   <xsl:value-of select="$root/..." />
   ...
</xsl:for-each>

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@informatik.hu-berlin.de             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


 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]