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=13384>.
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=13384

Test harness problems





------- Additional Comments From [EMAIL PROTECTED]  2002-10-08 18:14 -------
I disagree that we should move the test-cases  from conf. 
It is important test-cases. Conf bucket is our "sanity" test.
We would like to run them on both XSLT and XSLTC.
I don't think it is complicated to fix the test-harness. 

Take a look at http://www.w3.org/TR/xslt20/
11.1.4 Namespace Aliasing
"�The namespace prefix that will be used in the
       serialized output document is implementation-dependent�"

////Output namespace19 conf-gold\namespace
<?xml version="1.0" encoding="UTF-8"?>
<axsl:stylesheet xmlns:axsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
<axsl:template match="h1">
<axsl:apply-templates/>
</axsl:template>
</axsl:stylesheet>

////Output namespace19 XSLTC 

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

<xsl:template match="h1">
<xsl:apply-templates/>
</xsl:template>

</xsl:stylesheet>

Reply via email to