xsl-list
[Top] [All Lists]

Re: namespace generation in the output.

2005-06-01 08:53:21
  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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>