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

XSLTC does not work when parameternames contain '-'

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |



------- Additional Comments From [EMAIL PROTECTED]  2002-01-28 17:29 -------
Sorry for being not clear enough. So here comes the testcase which should show 
the bug in a better way:

XML input file :

<?xml version="1.0" encoding="UTF-8"?>
<root/>

XSL file :

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
        <xsl:template match="/">
                <xsl:call-template name="mytemplate">
                    <xsl:with-param name="name-with-minus-in-it" 
select="'foo'"/>
                </xsl:call-template>
        </xsl:template>

        <xsl:template name="mytemplate">
                <xsl:param name="name-with-minus-in-it" />
                <xsl:value-of select="$name-with-minus-in-it"/>
        </xsl:template>
</xsl:stylesheet>

Expected out (produced by using normal Xalan transformator): foo

The output produced by the compiled translet is empty.

Reply via email to