Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: XSLT to Remove Elements with Specific Attributes?

From: Aaron Davies <aaron.davies@-----.--->
To: NULL
Date: 2/8/2009 5:43:00 PM
On Feb 6, 7:31=A0pm, Martin Honnen <mahotr...@yahoo.de> wrote:
> Aaron Davies wrote:
> > I'm new to XSLT, and thought I'd start off with (what I hoped was) a
> > fairly simple transform, but I can't make heads or tails of the
> > example code I've found around the web. I'd like to a transform that
> > copies input to output, except that elements of a specific type with
> > attributes with specific values (and all their content) are omitted
> > completely. An example would be processing XHTML and dropping all P
> > paragraphs with class=3D"foo". I assume this is fairly easily derivable
> > from an identity filter, but I'm not sure where to start. Any help
> > would be much appreciated.
>
> <xsl:stylesheet
> =A0 =A0xmlns:xsl=3D"http://www.w3.org/1999/XSL/Transform"
> =A0 =A0xmlns:xhtml=3D"http://www.w3.org/1999/xhtml"
> =A0 =A0version=3D"1.0">
>
> =A0 =A0<xsl:template match=3D"xhtml:p[@class =3D 'foo']"/>
>
> =A0 =A0<xsl:template match=3D"@* | node()">
> =A0 =A0 =A0<xsl:copy>
> =A0 =A0 =A0 =A0<xsl:apply-templates select=3D"@* | node()"/>
> =A0 =A0 =A0</xsl:copy>
> =A0 =A0</xsl:template>
>
> </xsl:stylesheet>

hmm. looks reasonable, but doesn't seem to work on the actual document
i'm trying to change.

i'm trying to hack up an rss feed, and the paragraphs i want to remove
are in the description section. actually, i'm not sure this is doable
with XSLT at all--on closer inspection, the description is a blob of
presumably opaque text, and what ends up as tags in the browser is
ampersand encoded in the actual feed.

should i give up and use sed? :)


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent