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]
Other format: [Raw text]

Re: Inserting a parent node.


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@tumeric.net
________________________________________
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@it-c.dk>
To: <xsl-list@lists.mulberrytech.com>
Sent: Sunday, May 19, 2002 12:30 PM
Subject: [xsl] 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]