xsl-list
[Top] [All Lists]

Re: [xsl] Namespace getting carried over to output XML

2006-07-11 13:52:06
Prashanth T S wrote:
Hi,
    I tried to apply a xsl on a xhtml document and once it passes
through the xsl, I am getting the namespace carried over to my output
xhtml document in places unnecessary. Below is an example.

I have given the following line when I start my XSL

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform "
xmlns:xhtml="http://www.w3.org/1999/xhtml " xmlns="
http://www.w3.org/1999/xhtml"; xmlns:abc="abctest"
exclude-result-prefixes="abc">

In the exclude-result-prefixes you should provide the prefixes
you *don't* want to have in the result, rather then prefixes
bound to namespaces you actually use in the result. Try something
like

 <xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
 xmlns:xhtml="http://www.w3.org/1999/xhtml";
 xmlns="http://www.w3.org/1999/xhtml";
 xmlns:abc="abctest"
 exclude-result-prefixes="xhtml">
                          ^^^^^

You should also avoid binding the default namespace if possible.

J.Pietschmann


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