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

conf tests axes56 now has extra spaces in output

           Summary: conf tests axes56 now has extra spaces in output
           Product: XalanJ2
           Version: 2.0.0
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: org.apache.xalan.xsltc
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Obtained Output
---------------
<?xml version="1.0" encoding="utf-8" ?>
<out> xxchild    xxchild   childofxx   xxsub  xxsubsub   </out>

Expected Output
---------------
<?xml version="1.0" encoding="UTF-8"?>
<out>xxchild xxchild childofxx xxsub xxsubsub </out>

Transform
---------
<xsl:template match="doc">
  <out>

  <xsl:for-each select="//xx/descendant::*">
    <xsl:value-of select="name(.)"/><xsl:text> </xsl:text>
  </xsl:for-each>

  </out>
</xsl:template>

Reply via email to