Altova Mailing List Archives>Archive Index >xsl-list Archive Home >Recent entries >Thread Prev - [xsl] namespace generation in the output. [Thread Next] Re: [xsl] namespace generation in the output.To: Date: 6/1/2005 4:05:00 PM so I can write, in xslt 2.0,
<xsl:template match="....">
<xsl:element name="xsl:stylesheet" xsl:namespace="http://example.com">
No, In 2.0 you'd do:
<xsl:template match="....">
<xsl:element name="xsl:stylesheet">
<xsl:namespace name="" select="'http://example.com'"/>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
In xslt1 I'd have used namespace aliasing then you could have gone
<xsl:template match="xsl:stylesheet" >
<axsl:stylesheet xmlns="http://www.w3.org/1999/xhtml">
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</axsl:stylesheet>
</xsl:template>
where axsl is aliased to xsl. That way you don't need any node set
extension or explict namespace node copying.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________ | ||||||
| Company | Legal | Press | Partners | Careers | Sitemap | Contact Us | Altova Blog | Mobile | Full Site | |||
|
