Re: [xsl] Re: xsl-list Digest 30 May 2006 05:10:00 -0000 Issue 791

Subject: Re: [xsl] Re: xsl-list Digest 30 May 2006 05:10:00 -0000 Issue 791
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 31 May 2006 22:06:56 +0100
<document>
	<title>
	<subtitle>

<document>
	<group>
		<titile>
		<subtitle>



you just need a standard identity template, plus one for document that
looks like

<xsl:template match="document">
<xsl:copy>
<group>
<xsl:apply-templates select="title|subtitle"/>
</group>
<xsl:apply-templates select="*[not(self::title or self::subtitle)]"/>
</xsl:copy>
</xsl:template>

if you are using xslt2 you can write that second one as

<xsl:apply-templates select="* except (title|subtitle)"/>

which is perhaps a bit clearer (but means the same thing)

David

________________________________________________________________________
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