You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2002/05/06 15:07:29 UTC

DO NOT REPLY [Bug 8821] New: - XSLTC has a different output than normal XSLT ...

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

XSLTC has a different output than normal XSLT ...

           Summary: XSLTC has a different output than normal XSLT ...
           Product: XalanJ2
           Version: 2.3
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Xalan-Xsltc
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: markgraf@esr.ruhr-uni-bochum.de


If you have a XML-file with this line:

<eqn>x^2</eqn>

and an XSL-file with something like this:

<xsl:valiable name="eqn" select="/eqn" />
<xsl:element name="test">
 <xsl:attribute name="eqn" select="$eqn" />
</xsl:element>

XSLT will output correctly: <test eqn="x^2" /> 
But the XSLTC output will be: <test eqn="x#5e2" />