Properly close <head> tags in tagplugin documentation pages.
authorkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 23 Dec 2009 12:36:57 +0000 (12:36 +0000)
committerkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 23 Dec 2009 12:36:57 +0000 (12:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@893493 13f79535-47bb-0310-9956-ffa450edef68

webapps/examples/jsp/tagplugin/howto.html
webapps/examples/jsp/tagplugin/notes.html

index 0c54dea..bc40e86 100644 (file)
@@ -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>
index 1a21a1b..bbd2277 100644 (file)
@@ -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>