[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: excluding xml fragments by attributes using copy-o

Subject: Re: excluding xml fragments by attributes using copy-of?
From: Mike Brown <mike@xxxxxxxx>
Date: Fri, 13 Dec 2002 14:05:31 -0700 (MST)
xslt excluding attributes
Carl Yu wrote:
> I'm trying to translate one XML document to another using XSL but I can't come 
> up with the proper XSL.
> 
> lets say the incoming document has this form
> 
> <A>
>  <B>
>   <C value="foo">
>    <D />
>   </C>
>  </B>
>  <B>
>   <C value="bar">
>    <D />
>   </C>
>  </B> 
>  <E />
>  <F />
>  ...
> </A>
> 
> The transformed file would ideally be 
> 
> <A>
>  <B>
>   <C value="foo">
>    <DPRIME />
>   </C>
>  </B>
>  <B>
>   <C value="bar">
>    <D />
>   </C>
>  </B> 
>  <E />
>  <F />
>  ...
> </A>
> 
> Notice how D was changed to DPRIME.  I want to retain all of the nodes and 
> attributes of the rest of the original XML file, but change the contents of
> 
> select="/A/B/C[value='foo']" from D to DPRIME.

Use the identity transformation (a recursive copy-through), as described in
the XSLT spec under "Copying".

Add this template to it:

<xsl:template match="C[value='foo']/D">
  <Dprime/>
</xsl:template>

Mike

-- 
  Mike J. Brown   |  http://skew.org/~mike/resume/
  Denver, CO, USA |  http://skew.org/xml/

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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.