http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2578 *** shadow/2578 Wed Jul 11 09:01:16 2001 --- shadow/2578.tmp.23763 Thu Jul 12 12:08:35 2001 *************** *** 45,48 **** Actual Output ============= <?xml version="1.0" encoding="utf-8" ?> ! <out>Male: JohnFemale: JaneWho knows?: HermaphroditeWho knows?: Prince</out> --- 45,77 ---- Actual Output ============= <?xml version="1.0" encoding="utf-8" ?> ! <out>Male: JohnFemale: JaneWho knows?: HermaphroditeWho knows?: Prince</out> ! ! ------- Additional Comments From [EMAIL PROTECTED] 2001-07-12 12:08 ------- ! Conf tests copy19 and copy20 also deal with character entities and fail, so they ! may be affected by the same bug. ! ! copy19 has following xsl ! ! <xsl:output method="xml" encoding="ISO-8859-1"/> ! <!-- With this output encoding, should get one byte of xE8 for the è --> ! ! <xsl:template match="/"> ! <out> ! <xsl:copy-of select="'abcdèfgh'"/> ! </out> ! </xsl:template> ! ! copy20 has the following xsl ! ! <xsl:output method="xml" encoding="UTF-8"/> ! <!-- With this output encoding, should get two bytes (xC3,xA6) for the æ ! --> ! ! <xsl:template match="/"> ! <out> ! <xsl:copy-of select="'abcdæfgh'"/> ! </out> ! </xsl:template> ! ! Both tests have null output.
