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. &quot;&amp;&quot;   
+   <A HREF="&amp;"></A>
+     2. &quot;&lt;&quot;    
+   <A href="&lt;"></A>
+     3. &quot;&gt;&quot;    
+   <A href="&gt;"></A>
+     4. &quot;&quot;&quot;  
+   <A href="&quot;"></A>
+     5. &quot;'&quot;  
+   <A href="'"></A>
+     6. &quot;©&quot;  
+   <A HREF="©"></A>
+     7. &quot;#&quot;  
+   <A href="#"></A>
+     8. &quot;¥&quot;  
+   <A href="¥"></A>
+     9. &quot;&quot;  
+   <A href=" "></A>
+   <img src="Test 31 Gif.gif">
+    10.&quot;%&quot;  
+   <A href="%"></A>
+    11.&quot;&quot;  
+   <A href="     "></A>
+    12.&quot;&quot;  
+   <A href=""></A>
+    13.&quot;�?&quot;  
+   <A href="�?"></A>
+    14.&quot;�?&quot;  
+   <A href="�?"></A>
+   <A href="phnix.html">test1</A>
+   <A href="ph�?�?nix.html">test2</A>
+ </out>
+ 
+ Expected Ouput
+ ==============<out>
+ 
+     1. "&amp;"   <A HREF="&"></A>
+     2. "&lt;"    <A href="<"></A>
+     3. "&gt;"    <A href=">"></A>
+     4. """  <A href="%22"></A>
+     5. "'"  <A href="'"></A>
+     6. "&copy;"  <A HREF="%C2%A9"></A>  
+     7. "#"  <A href="#"></A>    
+     8. "&yen;"  <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."&Ntilde;"  <A href="%C3%91"></A> 
+    14."&OElig;"  <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. "&amp;"   <A HREF="&amp;"/>
+     2. "&lt;"    <A href="&lt;"/>
+     3. "&gt;"    <A href="&gt;"/>
+     4. "&quot;"  <A href="&quot;"/>
+     5. "&apos;"  <A href="&apos;"/>
+     6. "&#169;"  <A HREF="&#169;"/>     <!-- Copyright -->
+     7. "&#035;"  <A href="&#035;"/>     <!-- Hashmark -->
+     8. "&#165;"  <A href="&#165;"/>     <!-- yen      -->
+     9. "&#032;"  <A href="&#032;"/>     <img src="Test 31 Gif.gif"/>
+    10."&#037;"  <A href="&#037;"/>      <!-- percent -->
+    11."&#009;"  <A href="&#009;"/>      <!-- tab    -->
+    12."&#127;"  <A href="&#127;"/>      <!-- delete  -->
+    13."&#209;"  <A href="&#209;"/>      <!-- N-tilde -->
+    14."&#338;"  <A href="&#338;"/>  <!-- 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>

Reply via email to