Author: kpreisser Date: Wed Sep 25 14:15:05 2013 New Revision: 1526185 URL: http://svn.apache.org/r1526185 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 Use UTF-8 as encoding for the ROOT index.jsp.
Modified: tomcat/trunk/webapps/ROOT/index.jsp Modified: tomcat/trunk/webapps/ROOT/index.jsp URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/ROOT/index.jsp?rev=1526185&r1=1526184&r2=1526185&view=diff ============================================================================== --- tomcat/trunk/webapps/ROOT/index.jsp (original) +++ tomcat/trunk/webapps/ROOT/index.jsp Wed Sep 25 14:15:05 2013 @@ -14,8 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY See the License for the specific language governing permissions and limitations under the License. --%> -<!DOCTYPE html> -<%@ page session="false" %> +<%@ page session="false" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %> <% java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy"); request.setAttribute("year", sdf.format(new java.util.Date())); @@ -23,8 +22,10 @@ request.setAttribute("tomcatUrl", "http: request.setAttribute("tomcatDocUrl", "/docs/"); request.setAttribute("tomcatExamplesUrl", "/examples/"); %> +<!DOCTYPE html> <html lang="en"> <head> + <meta charset="UTF-8" /> <title><%=request.getServletContext().getServerInfo() %></title> <link href="favicon.ico" rel="icon" type="image/x-icon" /> <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" /> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org