This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Ignore namespaces


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]