You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2010/03/03 16:34:10 UTC

svn commit: r918513 - in /tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin: howto.html notes.html

Author: kkolinko
Date: Wed Mar  3 15:34:10 2010
New Revision: 918513

URL: http://svn.apache.org/viewvc?rev=918513&view=rev
Log:
Properly close <head> tags
(backport of r893499 from TC6)

Modified:
    tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/howto.html
    tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/notes.html

Modified: tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/howto.html
URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/howto.html?rev=918513&r1=918512&r2=918513&view=diff
==============================================================================
--- tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/howto.html (original)
+++ tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/howto.html Wed Mar  3 15:34:10 2010
@@ -17,6 +17,8 @@
 <html>
   <head>
     <title>Tag Plugin Implementation</title>
+  </head>
+  <body>
     <h2>How to write tag plugins</h2>
     <p>
       To write a plugin, you'll need to download the source for Tomcat 5.
@@ -39,5 +41,5 @@
         classes.
       </li>
     </ol>
-  </head>
+  </body>
 </html>

Modified: tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/notes.html
URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/notes.html?rev=918513&r1=918512&r2=918513&view=diff
==============================================================================
--- tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/notes.html (original)
+++ tomcat/tc5.5.x/trunk/servletapi/jsr152/examples/tagplugin/notes.html Wed Mar  3 15:34:10 2010
@@ -17,6 +17,8 @@
 <html>
   <head>
     <title>Tag Plugin Introduction</title>
+  </head>
+  <body>
     <h2>Tag Plugins: Introductory Notes</h2>
     <p>
       Tomcat 5 provides a framework for implementing tag plugins.  The
@@ -34,6 +36,6 @@
       They do serve as examples to show plugins in action (just
       examine the generated Java files), and how they can be implemented.
     </p>
-  </head>
+  </body>
 </html>
 



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