DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26075>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26075

non-prefixed attributes should not be in default namespace





------- Additional Comments From [EMAIL PROTECTED]  2004-02-03 20:58 -------
I just try a test-case with xalan from the latest CVS.
It seems to be OK. 
I need to ask for a test-case to repro the problem.
I also need to know the xalan version.

test.xml
<?xml version="1.0" encoding="UTF-8"?>
 <file path="my_path" xmlns="http://www.sevencs.com"/>

test.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0"
 xmlns="http://www.sevencs.com";  xmlns:s="http://www.sevencs.com";  >
<xsl:template match="s:file">
    <xsl:text>following file was added:</xsl:text>
     <xsl:value-of select="./@path"/>
   </xsl:template>       
</xsl:stylesheet>

Reply via email to