[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Answers to review questions in "Beginning XSLT": C

Subject: RE: Answers to review questions in "Beginning XSLT": Chapter 8
From: Americo Albuquerque <aalbuquerque@xxxxxxxxxxxxxxxx>
Date: Wed, 19 Mar 2003 19:18:20 -0000
xslt match any namespace
Hi Jeni and lars

> -----Mensagem original-----
> De: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx 
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] Em nome de 
> Jeni Tennison
> Enviada: quarta-feira, 19 de Marco de 2003 18:54
> Para: Lars Huttar
> Cc: XSL-List (E-mail)
> Assunto: Re:  Answers to review questions in "Beginning 
> XSLT": Chapter 8
> 
> 
(...)
> 
> > 4. Write a template that matches any element in the XHTML 
> namespace and
> >    generates a copy of that element in no namespace.
> >
> > Answer:
> >
> >   <xsl:template match="xhtml:*">
> >     <xsl:element name="{local-name()}" namespace="">
> >       <xsl:apply-templates select="@* | node()" />
> >     </xsl:element>
> >   </xsl:template>
> >
(...)
> 
> Note that you'll need to use an identity template in addition 
> to the template above in order to copy the attributes and the 
> non-XHTML elements that are nested within the XHTML element.
> 

I know that the question was to create a template that matches any
element in the XHTML namespace,
but with your addition  is not copying just the elements in the XHTML
namespace but every very node he finds
so, the new templates could be the normal identity template:

<xsl:template match="@* | node()">
 <xsl:copy>
  <xsl:apply-templates select="@* | node()"/>
 </xsl:copy>
</xsl:template>

But this rases another question that has been bugging me for awaile, how
can I match ANY element of no namespace?
If I do <xsl:template match="*"> I'll match any node even those with a
namespace

The one I remember to solve this is a generic <xsl:template match="*">
and several <xsl:template match="x:*" xmlns:x="..."/> one for each
namespace definition that I want to skip

Is there any other way of doing this???

Thanks.


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.