You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2011/07/11 11:32:33 UTC

svn commit: r1145088 - /tomcat/trunk/webapps/examples/jsp/tagplugin/choose.jsp

Author: markt
Date: Mon Jul 11 09:32:32 2011
New Revision: 1145088

URL: http://svn.apache.org/viewvc?rev=1145088&view=rev
Log:
Fix broken HTML

Modified:
    tomcat/trunk/webapps/examples/jsp/tagplugin/choose.jsp

Modified: tomcat/trunk/webapps/examples/jsp/tagplugin/choose.jsp
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/jsp/tagplugin/choose.jsp?rev=1145088&r1=1145087&r2=1145088&view=diff
==============================================================================
--- tomcat/trunk/webapps/examples/jsp/tagplugin/choose.jsp (original)
+++ tomcat/trunk/webapps/examples/jsp/tagplugin/choose.jsp Mon Jul 11 09:32:32 2011
@@ -21,19 +21,15 @@
   <body>
     <h1>Tag Plugin Examples - &lt;c:choose></h1>
 
-    <hr>
-    </br>
-    <a href="notes.html">Plugin Introductory Notes<font <font color="#0000FF"></
-a>
+    <hr/>
     <br/>
-    <a href="howto.html">Brief Instructions for Writing Plugins<font color="#000
-0
-FF"></a>
+    <a href="notes.html">Plugin Introductory Notes</a>
+    <br/>
+    <a href="howto.html">Brief Instructions for Writing Plugins</a>
     <br/> <br/>
-    <hr>
+    <hr/>
 
-    <font color="#000000"/>
-    </br>
+    <br/>
 
     <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
 
@@ -41,16 +37,16 @@ FF"></a>
       # ${index}: 
       <c:choose>
         <c:when test="${index == 1}">
-          One!</br>
+          One!<br/>
         </c:when>
         <c:when test="${index == 4}">
-          Four!</br>
+          Four!<br/>
         </c:when>
         <c:when test="${index == 3}">
-          Three!</br>
+          Three!<br/>
         </c:when>
         <c:otherwise>
-          Huh?</br>
+          Huh?<br/>
         </c:otherwise>
       </c:choose>
     </c:forEach>



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