sboag       01/10/25 15:37:59

  Modified:    java/src/org/apache/xalan/serialize SerializerToHTML.java
  Log:
  By longstanding request, don't URL-escape spaces.  This is consistent with the
  specification, and the opinion of the right thing to do by several people on 
the
  XSL working group, including Mike Kay, and by the LotusXSLTeam.
  
  Revision  Changes    Path
  1.9       +1 -1      
xml-xalan/java/src/org/apache/xalan/serialize/SerializerToHTML.java
  
  Index: SerializerToHTML.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/serialize/SerializerToHTML.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- SerializerToHTML.java     2001/07/13 19:35:13     1.8
  +++ SerializerToHTML.java     2001/10/25 22:37:59     1.9
  @@ -886,7 +886,7 @@
       {
         char ch = stringArray[i];
   
  -      if ((ch < 33) || (ch > 126))
  +      if ((ch < 32) || (ch > 126))
         {
           if (doURLEscaping)
           {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to