Diff for /loncom/interface/loncommon.pm between versions 1.388 and 1.389

version 1.388, 2006/06/22 19:11:13 version 1.389, 2006/06/22 20:09:51
Line 3333  table#LC_portfolio_actions td.LC_value { Line 3333  table#LC_portfolio_actions td.LC_value {
   background: $tabbg;    background: $tabbg;
 }  }
   
 table.LC_brower {  table#LC_browser {
    
 }  }
 table.LC_browser tr.LC_browser_file {  table#LC_browser tr th {
   background: #CCFF88    background: #DDDDDD;
 }  }
 table.LC_browser tr.LC_browser_file_locked {  table#LC_browser tr.LC_browser_file,
   background: #FFAA99  table#LC_browser tr.LC_browser_file_published {
     background: #CCFF88;
 }  }
 table.LC_browser tr.LC_browser_folder {  table#LC_browser tr.LC_browser_file_locked,
   background: #CCCCFF  table#LC_browser tr.LC_browser_file_unpublished {
     background: #FFAA99;
   }
   table#LC_browser tr.LC_browser_file_obsolete {
     background: #AAAAAA;
   }
   table#LC_browser tr.LC_browser_file_modified {
     background: #FFFF77;
   }
   table#LC_browser tr.LC_browser_folder {
     background: #CCCCFF;
 }  }
 span.LC_current_location {  span.LC_current_location {
   font-size: x-large;    font-size: x-large;
Line 3714  sub simple_error_page { Line 3726  sub simple_error_page {
     my $row_count;      my $row_count;
     sub start_data_table {      sub start_data_table {
  undef($row_count);   undef($row_count);
  return '<table class="LC_data_table">';   return '<table class="LC_data_table">'."\n";
     }      }
   
     sub end_data_table {      sub end_data_table {
  undef($row_count);   undef($row_count);
  return '</table>';   return '</table>'."\n";;
     }      }
   
     sub start_data_table_row {      sub start_data_table_row {
  $row_count++;   $row_count++;
  return  '<tr '.(($row_count % 2)?'':'class="LC_even_row"').'>';   return  '<tr '.(($row_count % 2)?'':'class="LC_even_row"').'>'."\n";;
     }      }
   
     sub end_data_table_row {      sub end_data_table_row {
  return '</tr>';   return '</tr>'."\n";;
     }      }
   
     sub start_data_table_header_row {      sub start_data_table_header_row {
  return  '<tr class="LC_header_row">';   return  '<tr class="LC_header_row">'."\n";;
     }      }
   
     sub end_data_table_header_row {      sub end_data_table_header_row {
  return '</tr>';   return '</tr>'."\n";;
     }      }
 }  }
   

Removed from v.1.388  
changed lines
  Added in v.1.389


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>