kaz         02/04/27 07:44:46

  Modified:    src/dvsl/xdocs site.dvsl
  Log:
  Combined the Date and Time columns into one so they can be wrapped with
  Date on top of Time.  This helps reduce wasted screen space.
  
  Revision  Changes    Path
  1.31      +2 -3      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.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- site.dvsl 27 Apr 2002 14:10:46 -0000      1.30
  +++ site.dvsl 27 Apr 2002 14:44:46 -0000      1.31
  @@ -358,7 +358,7 @@
     #set ($rowcount = 0)
     <table>
       <tr>
  -      <th>Date</th><th>Time</th><th>Author</th><th>Files/Message</th>
  +      <th>Date</th><th>Author</th><th>Files/Message</th>
       </tr>
       $context.applyTemplates("changelog-entry")
     </table>
  @@ -366,8 +366,7 @@
   
   #match( "changelog-entry" )
     #printRow ($rowcount)
  -    <td>$node.date.value()</td>
  -    <td>$node.time.value()</td>
  +    <td>$node.date.value() $node.time.value()</td>
       <td>$context.toolbox.htmlescape.getText($node.author.value())</td>
       <td>$context.applyTemplates("file")
           <pre>$context.toolbox.htmlescape.getText($node.msg.value())</pre>
  
  
  


Reply via email to