You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by ka...@apache.org on 2002/03/25 19:33:45 UTC

cvs commit: jakarta-turbine-maven/src/dvsl/xdocs site.dvsl

kaz         02/03/25 10:33:44

  Modified:    src/dvsl/xdocs site.dvsl
  Log:
  Made the changelog have nice alternating colors just like the tables.
  
  Revision  Changes    Path
  1.7       +7 -1      jakarta-turbine-maven/src/dvsl/xdocs/site.dvsl
  
  Index: site.dvsl
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/dvsl/xdocs/site.dvsl,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- site.dvsl	25 Mar 2002 16:49:21 -0000	1.6
  +++ site.dvsl	25 Mar 2002 18:33:44 -0000	1.7
  @@ -253,6 +253,7 @@
   ## -----------------------------------------------------
   
   #match("changelog")
  +  #set ($rowcount = 0)
     <table>
       <tr>
         <th>Date</th><th>Author</th><th>Files / Message</th>
  @@ -262,7 +263,12 @@
   #end
   
   #match( "changelog-entry" )
  -  <tr>
  +  #if ($rowcount % 2 > 0)
  +    <tr class="a"> 
  +  #else
  +    <tr class="b">
  +  #end
  +  #set ($rowcount = $rowcount + 1)
       <td>$node.date.value()</td>
       <td>$node.author.value()</td>
       <td>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>