Subject: Re: namespace generation in the output.
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 1 Jun 2005 16:53:21 +0100
|
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
________________________________________________________________________
|