Re: [xsl] a Real Quickie

Subject: Re: [xsl] a Real Quickie
From: "Kevinjohn Gallagher" <web_design_guru@xxxxxxxxxxx>
Date: Tue, 21 Sep 2004 17:25:38 +0100
Thanks for this,

Sorry about the subject, was in a rush and not thinking.

Kev


From: David Carlisle <davidc@xxxxxxxxx>
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] a Real Quickie
Date: Tue, 21 Sep 2004 16:48:17 +0100

> I have an xml file, and I want to strip all of tags with the node ME if they

XSLT has no access to tags in the file (only to nodes derived from those
tags).

Copy the identity transform from the XSLT spec or the FAQ for this
list, then add one extra tenmplate that doesn't copy empty ME nodes:

<xsl:template match="ME[not(node())]" />

David

PS the useability of the archives of this list is improved if subject
lines give a hint of the subject.

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread