User: sits    
  Date: 07/06/29 05:36:46

  Modified:    .        CHANGELOG
               template/en/default listtopics.html.tmpl
  Log:
  * Bottom coloured row on topic list screen didn't extend across full
    width of browser window if bug-tracking or custom comment metrics
    were defined.  This has now been fixed.
  
  
  
  Index: CHANGELOG
  ===================================================================
  RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
  retrieving revision 1.206
  retrieving revision 1.207
  diff -u -r1.206 -r1.207
  --- CHANGELOG 29 Jun 2007 07:13:59 -0000      1.206
  +++ CHANGELOG 29 Jun 2007 12:36:44 -0000      1.207
  @@ -21,6 +21,10 @@
   
   * CSS cleanups from Kannan Goundan <[EMAIL PROTECTED]>.
   
  +* Bottom coloured row on topic list screen didn't extend across full
  +  width of browser window if bug-tracking or custom comment metrics
  +  were defined.  This has now been fixed.
  +
   Version 1.9.3
   
   * The project list screen now displays for each project, the total
  
  
  
  
  
  Index: listtopics.html.tmpl
  ===================================================================
  RCS file: 
/cvsroot/codestriker/codestriker/template/en/default/listtopics.html.tmpl,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- listtopics.html.tmpl      29 Jun 2007 07:13:59 -0000      1.41
  +++ listtopics.html.tmpl      29 Jun 2007 12:36:45 -0000      1.42
  @@ -33,6 +33,7 @@
   <table width="100%">
   
       [%# Display the table header #%]
  +    [% SET number_columns = 7 %]
       <tr class="tlh">
           <th colspan="2"><a href="[% list_sort_url | html_entity 
%]&amp;topic_sort_change=title">Title</a></th>
           <th><a href="[% list_sort_url | html_entity 
%]&amp;topic_sort_change=author">Author</a></th>
  @@ -40,10 +41,12 @@
           <th>Cc</th>
           <th><a href="[% list_sort_url | html_entity 
%]&amp;topic_sort_change=created">Created</a></th>
           [% FOREACH commentmetric = commentmetrics %]
  +            [% SET number_columns = number_columns + 1 %]
               <th>[% commentmetric.value | html_entity %]</th>
           [% END %]
        [% IF bugdb_enabled != 0 %]
  -        <th>Bug IDs</th>
  +            <th>Bug IDs</th>
  +            [% SET number_columns = number_columns + 1 %]
        [% END %]
           <th><a href="[% list_sort_url | html_entity 
%]&amp;topic_sort_change=state">State</a></th>
       </tr>
  @@ -71,7 +74,7 @@
       [% END %]
   
       <tr class="tlh">
  -        <td colspan="8">&nbsp;</td>
  +        <td colspan="[% number_columns %]">&nbsp;</td>
       </tr>
   </table>
   
  
  
  

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Codestriker-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/codestriker-commits

Reply via email to