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

RE: Copy all elemnts but one, not working

Subject: RE: Copy all elemnts but one, not working
From: "Haarman, Michael" <mhaarman@xxxxxxxxx>
Date: Wed, 28 Dec 2005 11:44:06 -0600
elemnts
> From: Huerta, Micah

> Great!  I'm glad to know that it is indeed possible.  Can you 
> please elaborate on the invocation part?  Are you saying that 
> instead of excluding an element, expressly include only 
> wanted elements?  What would a sample select expression 


Micah,

xsl:copy-of performs a *deep* copy, including all descendant elements and
attributes.  I believe that is the source of your confusion.  Your original
template simply matched all first order children of chapter and copied them
(the title and para elements) and their children and attributes.

Your problem (element exclusion) is a FAQ and the answer involves what is
termed the identity transform:

http://www.dpawson.co.uk/xsl/sect2/identity.html#d5442e43

Other links on that page will help clarify what is going on.  I'm not
entirely clear what your output needs to be, but it seemed you wanted to
build a tree rooted on chapter and containing everything but the *imagedata*
element.  To invoke the templates I provided to accomplish this, use an
apply-templates like this:

  <xsl:template match="/">
    <xsl:apply-templates select="/SIGNATURES/SIGNATURE/chapter"/>
  </xsl:template>

To collect everthing but the *imagedata* from your input, invoke the
identity transform like this:

  <xsl:template match="/">
    <xsl:apply-templates select="*"/>
  </xsl:template>


The second template provided in my original response simply matches
*imagedata* elements and ignores them.  Because its match is explicit, it
supercedes the invocation of the identity transform which would otherwise
match *imagedata* with the wildcard.

HTH,

Mike


> 
> Try a pair of templates like this:
> 
>   <xsl:template match="*">
>     <xsl:copy>
>       <xsl:copy-of select="@*"/>
>       <xsl:apply-templates/>
>     </xsl:copy> 
>   </xsl:template>
> 
>   <xsl:template match="imagedata"/>

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.