You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@locus.apache.org on 2000/11/22 06:31:32 UTC

cvs commit: jakarta-slide/src/doc/style/images add.gif design.gif docs.gif fix.gif update.gif

remm        00/11/21 21:31:31

  Modified:    src/doc  changelog.xml
               src/doc/style slide.xsl
  Added:       src/doc/style/images add.gif design.gif docs.gif fix.gif
                        update.gif
  Log:
  - Update to the stylesheet + added some cute Apache icons for changelogs.
  
  Revision  Changes    Path
  1.5       +18 -1     jakarta-slide/src/doc/changelog.xml
  
  Index: changelog.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/changelog.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- changelog.xml	2000/11/19 21:02:17	1.4
  +++ changelog.xml	2000/11/22 05:31:26	1.5
  @@ -6,7 +6,24 @@
       
     <title>Changes</title>
     
  -  <section title="November 2000 - Slide 1.0M1">
  +  <section title="Slide 1.0M2">
  +    
  +    <p>
  +
  +      <changelog>
  +        <update>Major update to the WebDAV client library, which should now be
  +          functional (BC).
  +        </update>
  +        <add>Add a WebDAV Ant taskdef, to showcase the capabilities of the DAV
  +          client library (BC).
  +        </add>
  +      </changelog>
  +
  +    </p>
  +    
  +  </section>
  +  
  +  <section title="Slide 1.0M1">
       
       <p>
         First official test release. Much work has been done to the original code
  
  
  
  1.7       +45 -3     jakarta-slide/src/doc/style/slide.xsl
  
  Index: slide.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/style/slide.xsl,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- slide.xsl	2000/09/22 22:59:32	1.6
  +++ slide.xsl	2000/11/22 05:31:27	1.7
  @@ -1,7 +1,8 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<!-- Content Stylesheet                             -->
  -<!-- Ismael Ghalimi ghalimi@exoffice.com            -->
  -<!-- Copyright (c) Exoffice Technologies, Inc. 1999 -->
  +<!-- Content Stylesheet -->
  +<!-- Ismael Ghalimi ghalimi@intalio.com -->
  +<!-- Remy Maucherat remm@apache.org -->
  +<!-- Copyright (c) Intalio Inc. 1999 -->
   
   <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   
  @@ -238,6 +239,47 @@
       </xsl:for-each>
     </xsl:template>
   
  +
  +  <xsl:template match="changelog">
  +    <table border="0" cellpadding="2" cellspacing="2">
  +      <xsl:apply-templates/>
  +    </table>
  +  </xsl:template>
  +
  +  <xsl:template match="changelog/add">
  +    <tr>
  +      <td><img alt="add" class="icon" src="style/images/add.gif"/></td>
  +      <td><xsl:apply-templates/></td>
  +    </tr>
  +  </xsl:template>
  +
  +  <xsl:template match="changelog/update">
  +    <tr>
  +      <td><img alt="update" class="icon" src="style/images/update.gif"/></td>
  +      <td><xsl:apply-templates/></td>
  +    </tr>
  +  </xsl:template>
  +
  +  <xsl:template match="changelog/design">
  +    <tr>
  +      <td><img alt="design" class="icon" src="style/images/design.gif"/></td>
  +      <td><xsl:apply-templates/></td>
  +    </tr>
  +  </xsl:template>
  +
  +  <xsl:template match="changelog/docs">
  +    <tr>
  +      <td><img alt="docs" class="icon" src="style/images/docs.gif"/></td>
  +      <td><xsl:apply-templates/></td>
  +    </tr>
  +  </xsl:template>
  +
  +  <xsl:template match="changelog/fix">
  +    <tr>
  +      <td><img alt="fix" class="icon" src="style/images/fix.gif"/></td>
  +      <td><xsl:apply-templates/></td>
  +    </tr>
  +  </xsl:template>
   
     <xsl:template name="link-convertor">
       <xsl:param name="href" select="empty"/>
  
  
  
  1.1                  jakarta-slide/src/doc/style/images/add.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-slide/src/doc/style/images/design.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-slide/src/doc/style/images/docs.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-slide/src/doc/style/images/fix.gif
  
  	<<Binary file>>
  
  
  1.1                  jakarta-slide/src/doc/style/images/update.gif
  
  	<<Binary file>>