Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: [xsl] Identity without namespaces

From: "Michael Kay" <mike@------------>
To:
Date: 10/2/2005 8:11:00 PM
It's basically OK.

But your match="/" template is the same as the built-in template for
document nodes; and you only want the match="node()" template to handle
elements, so it would be better to say so by writing match="*".

You need to be aware that if your source document contains attributes such
as xml:space, xml:lang, or xsi:type, they will get mangled. 

Michael Kay
http://www.saxonica.com/ 

> -----Original Message-----
> From: Joe Fawcett [mailto:joefawcett@xxxxxxxxxxx] 
> Sent: 02 October 2005 19:01
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] Identity without namespaces
> 
> Dear All
> 
> I'm trying to write a transform that is basically an identity 
> transform but 
> without any namespaces being copied.
> I know this is easier in version 2.0 but would anyone comment 
> on my effort 
> below, it seems to work but have I missed anything or could 
> it be simplified?
> 
> <xsl:stylesheet version="1.0" 
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> 
>   <xsl:template match="/">
>     <xsl:copy>
>       <xsl:apply-templates select="node()|@*"/>
>     </xsl:copy>
>   </xsl:template>
> 
> 
>   <xsl:template match="@*">
>     <xsl:attribute name="{local-name()}">
>       <xsl:value-of select="." />
>     </xsl:attribute>
>   </xsl:template>
> 
>   <xsl:template match="comment() | processing-instruction() | text()">
>     <xsl:copy />
>   </xsl:template>
> 
>   <xsl:template match="node()">
>     <xsl:element name="{local-name()}">
>       <xsl:apply-templates select="node()|@*"/>
>     </xsl:element>
>   </xsl:template>
> 
> </xsl:stylesheet>
> 
> 
> Thanks
> 
> Joe


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent