xsl-list
[Top] [All Lists]

Re: Why doesn't exclude-result-prefixes rid me of xmlns=""?

2004-04-14 02:23:23
  I've found that it only puts this in when you use xsl:copy (it aught to have
  a parameter to avoid that, I think). Here is my solution:

    <xsl:template match="xhtml:*">
      <!-- This is an identity template for XHTML elements -->
      <!-- xsl:copy is no good because it explicitly gives the namespace
       <xsl:element name="{name(.)}">

You have this backwards.

xsl:copy would give an identity transform, preserving the xhtml
namespace.


xsl:element is not an identity transform: it renames the element from
being in the xhtml namespace to teh default namespace declared in the
stylesheet. You didn't say what that was, but since you said that it
resulted in fewer xmlns="" I asume that your default namespace is no
namespace. So your result is not xhtml at all but elements with the same
local names but in the wrong namespace.

David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________