remm        01/09/13 19:29:28

  Modified:    src/doc  changelog.xml
               src/doc/stylesheets slide.xsl
  Log:
  - Changelog update.
  - A few fixes in the stylesheet, courtesy of Craig.
  
  Revision  Changes    Path
  1.57      +7 -3      jakarta-slide/src/doc/changelog.xml
  
  Index: changelog.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/changelog.xml,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- changelog.xml     2001/09/11 00:37:36     1.56
  +++ changelog.xml     2001/09/14 02:29:28     1.57
  @@ -36,7 +36,7 @@
             loader (RM)
           </update>
           <add>
  -          Add new method in the Lock healper to allow enumerating only 
  +          Add new method in the Lock helper to allow enumerating only 
             non-inherited locks (CL)
           </add>
           <scode> 
  @@ -53,9 +53,13 @@
           <fix>
             Prevent dirty reads for UNLOCK, MKCOL, LOCK, DELETE methods (JP)
           </fix>
  -        <update>
  +        <docs>
             Update the documentation to the latest Jakarta look (RM)
  -        </update>
  +        </docs>
  +        <fix>
  +          Fix a bug where unlocking would also try to unlock inherited 
  +          locks (JP)
  +        </fix>
         </changelog>
   
       </p>
  
  
  
  1.3       +26 -40    jakarta-slide/src/doc/stylesheets/slide.xsl
  
  Index: slide.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/stylesheets/slide.xsl,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- slide.xsl 2001/09/11 00:37:37     1.2
  +++ slide.xsl 2001/09/14 02:29:28     1.3
  @@ -1,6 +1,6 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
   <!-- Temporary Stylesheet for Catalina Developer Documentation -->
  -<!-- $Id: slide.xsl,v 1.2 2001/09/11 00:37:37 remm Exp $ -->
  +<!-- $Id: slide.xsl,v 1.3 2001/09/14 02:29:28 remm Exp $ -->
   
   <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
     version="1.0">
  @@ -230,7 +230,7 @@
   
     <!-- 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>
  @@ -314,48 +314,34 @@
       </tr>
     </xsl:template>
   
  -  <!-- Status page tags -->
  +  <!-- Process an attributes list with nested attribute elements -->
     <xsl:template match="status">
  -    <table border="1" width="90%">
  +    <table border="1" cellpadding="5">
         <tr>
  -        <th width="10%">Priority</th>
  -        <th width="60%">Action Item</th>
  -        <th width="30%">Volunteers</th>
  +        <th width="15%" bgcolor="{$attributes-color}">
  +          <font color="#ffffff">Priority</font>
  +        </th>
  +        <th width="50%" bgcolor="{$attributes-color}">
  +          <font color="#ffffff">Action Item</font>
  +        </th>
  +        <th width="25%" bgcolor="{$attributes-color}">
  +          <font color="#ffffff">Volunteers</font>
  +        </th>
  +        <xsl:for-each select="item">
  +        <tr>
  +          <td align="left" valign="center">
  +            <xsl:value-of select="@priority"/>
  +          </td>
  +          <td align="left" valign="center">
  +            <xsl:apply-templates/>
  +          </td>
  +          <td align="left" valign="center">
  +            <xsl:value-of select="@owner"/>
  +          </td>
  +        </tr>
  +        </xsl:for-each>
         </tr>
  -      <xsl:apply-templates/>
       </table>
     </xsl:template>
   
  -  <xsl:template match="status/item">
  -    <tr>
  -      <td align="center"><xsl:value-of select="@priority"/></td>
  -      <td>
  -        <xsl:apply-templates/>
  -      </td>
  -      <td><xsl:value-of select="@owner"/></td>
  -    </tr>
  -  </xsl:template>
  -
  -
  -  <!-- Match an attribute list -->
  -  <xsl:template match="attribute-list">
  -                <table border="1" cellpadding="2" cellspacing="0">
  -                  <tr>
  -                    <td>
  -                      Name
  -                    </td>
  -                    <td>
  -                      Description
  -                    </td>
  -                    <td>
  -                      Required
  -                    </td>
  -                  </tr>
  -    <xsl:for-each select="attribute">
  -      <tr><td><xsl:value-of select="@name"/></td><td>
  -      <xsl:value-of select="@description"/></td><td>
  -      <xsl:value-of select="@required"/></td></tr>
  -    </xsl:for-each>
  -                </table>
  -  </xsl:template>
   </xsl:stylesheet>
  
  
  

Reply via email to