You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by tm...@apache.org on 2006/08/09 08:40:36 UTC

svn commit: r429978 - in /struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload: upload-success.jsp upload.jsp

Author: tmjee
Date: Tue Aug  8 23:40:35 2006
New Revision: 429978

URL: http://svn.apache.org/viewvc?rev=429978&view=rev
Log:
WW-1340
  - added content-type specific jsp page directive to make sure UTF-8 is used such that character encoding work properly with this example

Modified:
    struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload-success.jsp
    struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload.jsp

Modified: struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload-success.jsp
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload-success.jsp?rev=429978&r1=429977&r2=429978&view=diff
==============================================================================
--- struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload-success.jsp (original)
+++ struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload-success.jsp Tue Aug  8 23:40:35 2006
@@ -1,3 +1,7 @@
+<%@ page 
+	language="java" 
+	contentType="text/html; charset=UTF-8"
+    pageEncoding="UTF-8"%>
 <%@ taglib prefix="s" uri="/tags" %>
 <html>
 <head>

Modified: struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload.jsp
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload.jsp?rev=429978&r1=429977&r2=429978&view=diff
==============================================================================
--- struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload.jsp (original)
+++ struts/struts2/trunk/apps/showcase/src/main/webapp/fileupload/upload.jsp Tue Aug  8 23:40:35 2006
@@ -1,4 +1,7 @@
-
+<%@ page 
+	language="java" 
+	contentType="text/html; charset=UTF-8"
+    pageEncoding="UTF-8"%>
 <%@ taglib prefix="s" uri="/tags" %>
 <html>
 <head>