RE: [xsl] Copy all elemnts but one, not working
by Micah Huerta other posts by this author
Dec 28 2005 8:49AM messages near this date
RE: [xsl] Copy all elemnts but one, not working
|
[xsl] Could not compile stylesheet message upon running transformation in java
& XSLT 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 on
ly wanted elements? What would a sample select expression look like?
Many Thanks!
Micah
-----Original Message-----
From: Haarman, Michael [mailto:mhaarman@[...].com]
Sent: Wednesday, December 28, 2005 11:09 AM
To: 'xsl-list@lists.mulberrytech.com'
Subject: RE: [xsl] Copy all elemnts but one, not working
> -----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>
--~--
--~------------------------------------------------------------------
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
|