You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ki...@apache.org on 2003/11/04 20:28:49 UTC

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime JspRuntimeLibrary.java

kinman      2003/11/04 11:28:49

  Modified:    jasper2/src/share/org/apache/jasper/runtime
                        JspRuntimeLibrary.java
  Log:
  - Use ISO-8859-1 as the default encoding for <jsp:param> since it is the
    default encoding for the request object.
  
  Revision  Changes    Path
  1.25      +4 -4      jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/JspRuntimeLibrary.java
  
  Index: JspRuntimeLibrary.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/JspRuntimeLibrary.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- JspRuntimeLibrary.java	2 Sep 2003 21:39:59 -0000	1.24
  +++ JspRuntimeLibrary.java	4 Nov 2003 19:28:49 -0000	1.25
  @@ -1020,7 +1020,7 @@
   	}
   
   	if (enc == null) {
  -	    enc = "UTF-8";	// Is this right?
  +	    enc = "ISO-8859-1";	// The default request encoding 
   	}
   
   	StringBuffer out = new StringBuffer(s.length());
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org