Re: [xsl] Ignore namespaces

Subject: Re: [xsl] Ignore namespaces
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Fri, 28 Jun 2002 16:25:20 +0100
Hi Filipe,

> would adding a template like the following to my stylesheet do the
> trick?
>
> <xsl:template match="*:*">
>    <xsl:apply-templates select="local-name(.)"/>
> </xsl:template>

No. First, the match attribute isn't legal -- you mean simply
match="*" (match any element in any namespace). Second, the select
attribute of xsl:apply-templates isn't legal -- it has to select a
node set to which to apply templates, but the expression
'local-name(.)' returns a string.

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread