Subject: Re: Inserting a parent node.
From: Chuck White <chuckwh@xxxxxxxxxxx>
Date: Sun, 19 May 2002 13:40:43 -0700
|
It sounds like you want access to other nodes in the tree brought in via the
document function, which of course is possible. Check out the FAQ for this
at:
http://www.dpawson.co.uk/xsl/sect2/N2602.html
best regards,
Charles White
The Tumeric Partnership
http://www.tumeric.net
chuck@xxxxxxxxxxx
________________________________________
Author, Mastering XSLT
Sybex Books, May, 2002
Co-Author, Mastering XML, Premium Edition
Sybex Books, May, 2001
http://www.javertising.com
----- Original Message -----
From: "Morten Primdahl" <morten@xxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Sunday, May 19, 2002 12:30 PM
Subject: Inserting a parent node.
>
> Hi.
>
> I need to insert a parent node on a node-set read by
> URL.
>
> <xsl:template match="ref">
> <xsl:variable name="content" select="document(@url)"/>
> <xsl:apply-templates select="$content"/>
> </xsl:template>
>
> The content variable may hold an element "f", in the template
> for that, I need to match a parent - and not the implicit
> document root.
>
> <xsl:template match="f">
> <xsl:if test="parent::stuff">
>
> </xsl:if>
> </xsl:template>
>
> Can this be done by somehow creating the content variable in
> another fashion?
>
> Thanks,
>
> Morten
>
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|