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: changing the nodeset


> In the root of the target I want to add a entity,
> ..
>		<!-- now I create a new entity -->
>		<xsl:element name="START">

Please don't call elements by the name "entity" it makes your
descriptions very confusing for anyone trying to help. In XML "entity"
has a well defined meaning, and it means something different to
"element" which is what you are creating here.

To answer your qustion, at the top level of your stylesheet go
<xsl:variable name="x" select="."/>
<xsl:for-each
select="document('start.xml')/START/*">
......
then at any point you can get back to the original node by
eg <xsl:apply-templates select="$x/some/x/path/from/the/original/node"/>


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]