Re: [xsl] Match node() with exception

Subject: Re: [xsl] Match node() with exception
From: "cking" <cking@xxxxxxxxxx>
Date: Mon, 30 Aug 2004 23:17:50 +0200
> Select='local-name != "SchemaVersion"'

or (if you want to process all elements except SchemaVersion),
you can omit them by using an empty template:

...
    <xsl:apply-templates select="*"/>
...
<xsl:template match="SchemaVersion"/>

Cheers
Anton Triest

Current Thread