xsl-list
[Top] [All Lists]

[xsl] Namespace Appearing for No Obvious Reason: What Could Cause It?

2015-03-04 11:36:58
I am generating HTML from a fairly complex transform made of many modules.
These modules declare a number of namespaces that apply to different
function packages, module-specific named templates and modes, etc., but
*not* to either the input elements or result elements (other than possible
an XHTML namespace). I have checked and all of these namespaces are
accounted for in the exclude-result-prefixes declarations for all the
modules involved.

In my transform I'm calling this template, which then applies the
following template:

<xsl:template name="generateMetaBrand">
  <xsl:apply-templates select="." mode="generateMetaBrand"/>
    </xsl:template>

    <xsl:template match="*" mode="generateMetaBrand">
  <meta name="brand" content="XXXX"/>
  <xsl:value-of select="$newline"/>
    </xsl:template>

The resulting element has an unwanted namespace declaration:


<meta xmlns:df="http://dita2indesign.org/dita/functions"; name="brand"
content="XXXX"></meta>

The namespace in question is associated with functions and nothing else.
The namespace is only declared on <xsl:stylesheet> elements and the prefix
is not used on any start tag.

I can't think of anything that would cause this namespace, and only this
namespace (out of the several that are declared on each stylesheet), to be
output in the HTML.

What could cause this sort of rogue namespace declaration? The variable in
my style sheet appears to be the fact that I'm calling a named template in
one module that is declared in a different module. The exact same result
element generation code put into a normal template context does not have
the namespace node (as you would expect).

So this must be some subtlety about namespace declaration at the XSLT
module level, but I have no idea what it might be. I don't remember every
seeing this issue before and I've made pretty much every mistake one can
make in an XSLT 2 transform.

Thanks,

Eliot
—————
Eliot Kimber, Owner
Contrext, LLC
http://contrext.com

--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

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