--- jakarta-tomcat-catalina/webapps/docs/appdev/sample/src/mypackage/Hello.java.orig 2004-11-24 11:55:36.000000000 -0500 +++ jakarta-tomcat-catalina/webapps/docs/appdev/sample/src/mypackage/Hello.java 2007-04-27 14:29:32.000000000 -0400 @@ -68,24 +68,11 @@ writer.println(""); writer.println("

Sample Application Servlet

"); writer.println("This is the output of a servlet that is part of"); - writer.println("the Hello, World application. It displays the"); - writer.println("request headers from the request we are currently"); - writer.println("processing."); + writer.println("the Hello, World application."); writer.println(""); writer.println(""); writer.println(""); - writer.println(""); - Enumeration names = request.getHeaderNames(); - while (names.hasMoreElements()) { - String name = (String) names.nextElement(); - writer.println(""); - writer.println(" "); - writer.println(" "); - writer.println(""); - } - writer.println("
" + name + ":" + request.getHeader(name) + "
"); - writer.println(""); writer.println(""); --- jakarta-servletapi-5/jsr152/examples/jsp2/el/implicit-objects.jsp.orig 2004-11-24 11:54:58.000000000 -0500 +++ jakarta-servletapi-5/jsr152/examples/jsp2/el/implicit-objects.jsp 2007-04-27 14:29:32.000000000 -0400 @@ -69,15 +69,15 @@ \${header["host"]} - ${header["host"]} + ${fn:escapeXml(header["host"])}  \${header["accept"]} - ${header["accept"]} + ${fn:escapeXml(header["accept"])}  \${header["user-agent"]} - ${header["user-agent"]} + ${fn:escapeXml(header["user-agent"])}