Author: kpreisser Date: Tue Oct 1 18:46:55 2013 New Revision: 1528178 URL: http://svn.apache.org/r1528178 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=55383 Improve markup of HTML page. Fix broken link to "ServletToJsp.java.html" - it is generated by Ant txt2html task.
Modified: tomcat/trunk/webapps/examples/jsp/jsptoserv/jts.html Modified: tomcat/trunk/webapps/examples/jsp/jsptoserv/jts.html URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/jsp/jsptoserv/jts.html?rev=1528178&r1=1528177&r2=1528178&view=diff ============================================================================== --- tomcat/trunk/webapps/examples/jsp/jsptoserv/jts.html (original) +++ tomcat/trunk/webapps/examples/jsp/jsptoserv/jts.html Tue Oct 1 18:46:55 2013 @@ -1,4 +1,4 @@ -<html> +<!DOCTYPE html> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with @@ -15,20 +15,22 @@ See the License for the specific language governing permissions and limitations under the License. --> - +<html> <head> +<meta charset="UTF-8" /> <title>Untitled Document</title> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> +<style type="text/css"> +img { border: 0; } +</style> </head> -<body bgcolor="#FFFFFF"> -<p><font color="#0000FF"><a href="jsptoservlet.jsp"><img src="../images/execute.gif" align="right" border="0"></a><a href="../index.html"><img src="../images/return.gif" width="24" height="24" align="right" border="0"></a></font></p> +<body> +<p><a href="jsptoservlet.jsp"><img src="../images/execute.gif" alt=""> Execute</a><br /> +<a href="../index.html"><img src="../images/return.gif" alt=""> Return</a></p> -<h3><a href="jsptoservlet.jsp.html">Source Code for JSP calling servlet <font color="#0000FF"></a> - </font> </h3> +<p style="font-size: 1.4em;"><a href="jsptoservlet.jsp.html">Source Code for JSP calling servlet</a></p> -<h3><a href="servletToJsp.java.html">Source Code for Servlet calling JSP -<font color="#0000FF"></a> </font> </h3> +<p style="font-size: 1.4em;"><a href="ServletToJsp.java.html">Source Code for Servlet calling JSP</a></p> </body> </html> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org