Hello,

as you might have already noticed, the generated HTML-Documentation is
not valid HTML, i.e. the body-tag is included twice. This prevents
e.g. Mozilla 0.9 from rendering the struts documentation at all.

I appended a simple patch, which fixes struts.xsl.

cu.....
-- 
                                                        ...roland huss
                                                             consol.de

? src/upload/org/apache/struts/webapp/upload/@
Index: doc/stylesheets/struts.xsl
===================================================================
RCS file: /home/cvspublic/jakarta-struts/doc/stylesheets/struts.xsl,v
retrieving revision 1.1
diff -u -r1.1 struts.xsl
--- doc/stylesheets/struts.xsl	2001/03/18 17:48:59	1.1
+++ doc/stylesheets/struts.xsl	2001/05/31 08:12:50
@@ -110,6 +110,11 @@
     </tr>
   </xsl:template>
 
+  <!-- Process body -->
+  <xsl:template match="body">
+    <xsl:apply-templates/>
+  </xsl:template>
+
   <!-- Process a documentation section -->
   <xsl:template match="section">
     <xsl:choose>

Reply via email to