PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2948 *** shadow/2948 Wed Aug 1 08:32:58 2001 --- shadow/2948.tmp.4312 Mon Aug 6 07:02:17 2001 *************** *** 77,79 **** --- 77,184 ---- <P>�</P> <P>�</P> </HTML> + + ------- Additional Comments From [EMAIL PROTECTED] 2001-08-06 07:02 ------- + conf test output31 tests the ESC of non-ASCII chars in URI attribute values + using method cited in Section B.2.1 of HTML 4.0 Spec. Its more extensive then + output04. + + Obtained Output + =============== + <out> + + 1. "&" + <A HREF="&"></A> + 2. "<" + <A href="<"></A> + 3. ">" + <A href=">"></A> + 4. """ + <A href="""></A> + 5. "'" + <A href="'"></A> + 6. "©" + <A HREF="©"></A> + 7. "#" + <A href="#"></A> + 8. "¥" + <A href="¥"></A> + 9. "" + <A href=" "></A> + <img src="Test 31 Gif.gif"> + 10."%" + <A href="%"></A> + 11."" + <A href=" "></A> + 12."" + <A href=""></A> + 13."�?" + <A href="�?"></A> + 14."�?" + <A href="�?"></A> + <A href="phnix.html">test1</A> + <A href="ph�?�?nix.html">test2</A> + </out> + + Expected Ouput + ==============<out> + + 1. "&" <A HREF="&"></A> + 2. "<" <A href="<"></A> + 3. ">" <A href=">"></A> + 4. """ <A href="%22"></A> + 5. "'" <A href="'"></A> + 6. "©" <A HREF="%C2%A9"></A> + 7. "#" <A href="#"></A> + 8. "¥" <A href="%C2%A5"></A> + 9. " " <A href="%20"></A><img src="Test%2031%20Gif.gif"> + 10."%" <A href="%25"></A> + 11." " <A href="%09"></A> + 12."" <A href="%7F"></A> + 13."Ñ" <A href="%C3%91"></A> + 14."Œ" <A href="%C5%92"></A><A href="phnix.html">test1</A><A + href="ph%C3%85%C2%92nix.html">test2</A> + </out> + + XSL + === + <?xml version="1.0" encoding="ISO-8859-1"?> + <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + <xsl:output method="html"/> + + <!-- FileName: outp31 --> + <!-- Document: http://www.w3.org/TR/xslt --> + <!-- DocVersion: 19991116 --> + <!-- Section: 16.2 HTML Output Method --> + <!-- Purpose: ESC of non-ASCII chars in URI attribute values using method + cited in Section B.2.1 of HTML 4.0 Spec. --> + + <xsl:template match="/"> + <out> + + 1. "&" <A HREF="&"/> + 2. "<" <A href="<"/> + 3. ">" <A href=">"/> + 4. """ <A href="""/> + 5. "'" <A href="'"/> + 6. "©" <A HREF="©"/> <!-- Copyright --> + 7. "#" <A href="#"/> <!-- Hashmark --> + 8. "¥" <A href="¥"/> <!-- yen --> + 9. " " <A href=" "/> <img src="Test 31 Gif.gif"/> + 10."%" <A href="%"/> <!-- percent --> + 11."	" <A href="	"/> <!-- tab --> + 12."" <A href=""/> <!-- delete --> + 13."Ñ" <A href="Ñ"/> <!-- N-tilde --> + 14."Œ" <A href="Œ"/> <!-- OE Ligature --> + <A href="phnix.html">test1</A> + <A href="ph�?nix.html">test2</A> + </out> + </xsl:template> + + </xsl:stylesheet> + + XML + === + <?xml version="1.0"?> + <doc> + </doc>
