|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: getting rid of namespaces
copy-namespaces and exclude-result-prefixes affect whether namespace
nodes are copied to the result, but they don't affect the name of any
elements placed in the result. If you generate an element with name
consisting of local name p in the xhtml namespace then if the result is
linearised a namespace declaration will have to be produced.
So what you want to do is not copy the element, but rather generate a
new element, with a different name. use apply templates not copy of
together with something like
<xsl:template match="html:*">
<xsl:element name="{local-name()}">
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
David
________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






