|
Subject: RE: [xsl] Copy all elemnts but one, not working From: "Haarman, Michael" <mhaarman@xxxxxxxxx> Date: Wed, 28 Dec 2005 10:09:05 -0600 |
> -----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.
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| [xsl] Copy all elemnts but one, not, Huerta, Micah | Thread | RE: [xsl] Copy all elemnts but one,, Huerta, Micah |
| RE: [xsl] removing namespace, Peter Ivan | Date | RE: RE: RE: [xsl] get variable valu, cknell |
| Month |