craigmcc    01/09/12 19:52:56

  Modified:    webapps/tomcat-docs tomcat-docs.xsl
  Log:
  Remove a width="100%" setting from the <table> generated for attributes lists,
  to see if that helps avoid problems where the right side of the documentation
  pages are cut off for some users.
  
  Revision  Changes    Path
  1.5       +4 -1      jakarta-tomcat-4.0/webapps/tomcat-docs/tomcat-docs.xsl
  
  Index: tomcat-docs.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/tomcat-docs.xsl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- tomcat-docs.xsl   2001/09/12 01:03:51     1.4
  +++ tomcat-docs.xsl   2001/09/13 02:52:56     1.5
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
   <!-- Content Stylesheet for "tomcat-docs" Documentation -->
   
  -<!-- $Id: tomcat-docs.xsl,v 1.4 2001/09/12 01:03:51 craigmcc Exp $ -->
  +<!-- $Id: tomcat-docs.xsl,v 1.5 2001/09/13 02:52:56 craigmcc Exp $ -->
   
   <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
     version="1.0">
  @@ -240,7 +240,10 @@
   
     <!-- Process an attributes list with nested attribute elements -->
     <xsl:template match="attributes">
  +<!--
       <table border="1" cellpadding="5" width="100%">
  +-->
  +    <table border="1" cellpadding="5">
         <tr>
           <th width="15%" bgcolor="{$attributes-color}">
             <font color="#ffffff">Attribute</font>
  
  
  

Reply via email to