Re: [xsl] Creating namespace nodes

Subject: Re: [xsl] Creating namespace nodes
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 7 Jun 2005 12:10:27 +0100
  Can you please suggest a suitable 1.0 solution ? I'll
  be obliged ..

Just do the natural template, that looks like a fragment of your
requested result. No need to do anything complicated.


<xsl:template match="h">
  <h xmlns:temp="http://whatever"; >
    <xsl:apply-templates select="node() | @*" />
  </h>
</xsl:template>

________________________________________________________________________
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
________________________________________________________________________

Current Thread