xsl-list
[Top] [All Lists]

namespaces gets copied to root node with result-document

2005-07-05 09:24:57
Hello all, 
I am making a new html document with
xsl:result-document, and my namespaces I use in my
stylesheet get copied into the html output and i was
wondering why since its not explicitly set, and how to
stop that.
##########
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:dyn="http://exslt.org/dynamic";
xmlns:saxon="http://saxon.sf.net/";>
...
<xsl:result-document href="html/{$FileName}.html"
method="html">
 <html>
  <head>
....
##########
outputs this html file
##########
<html xmlns:dyn="http://exslt.org/dynamic";
xmlns:saxon="http://saxon.sf.net/";>
 <head>...
##########
thanks in advance.


                
__________________________________ 
Yahoo! Mail Mobile 
Take Yahoo! Mail with you! Check email on your mobile phone. 
http://mobile.yahoo.com/learn/mail 

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