ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> xsl-list
xsl-list
RE: [xsl] Copy all elemnts but one, not working
by Michael Haarman other posts by this author
Dec 28 2005 8:09AM messages near this date
[xsl] Copy all elemnts but one, not working | RE: [xsl] Copy all elemnts but one, not working
& XSLT >  -----Original Message-----
>  From: Huerta, Micah

>  image.  Does anyone know why this doesn't work?

Because you are excluding first-order children of chapter who are named
*imagedata*.  The only potential matches for this select:

>  select="chapter/*[not(name()= 'imagedata')]"/>

are named *title* or *para*.

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"/> 

Invoked by an appropriate select expression on an apply-templates
declaration they will give you just what you want.

HTH,

Mike


-----------------------------------
Mike Haarman,
XSL Developer,
Internet Broadcasting Systems, Inc.

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe@[...].com> 
--~--
Thread:
Micah Huerta
Michael Haarman
Michael Haarman
Micah Huerta
Michael Haarman
Micah Huerta

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved