Diff for /loncom/interface/statistics/lonstudentassessment.pm between versions 1.81.2.2 and 1.81.2.3

version 1.81.2.2, 2004/04/06 19:09:10 version 1.81.2.3, 2004/04/06 21:42:26
Line 992  END Line 992  END
     $cols_output = 0;      $cols_output = 0;
     $excel_sheet->write($rows_output++,$cols_output++,$datadescription);      $excel_sheet->write($rows_output++,$cols_output++,$datadescription);
     #      #
     if ($data eq 'tries' || $data eq 'scores') {  #    if ($data eq 'tries' || $data eq 'scores') {
         $rows_output++;          $rows_output+=2;
     }  #    }
     #      #
     # Add the student headers      # Add the student headers
     $cols_output = 0;      $cols_output = 0;
Line 1002  END Line 1002  END
         $excel_sheet->write($rows_output,$cols_output++,$field);          $excel_sheet->write($rows_output,$cols_output++,$field);
     }      }
     my $row_offset = 0;      my $row_offset = 0;
     if ($data eq 'tries' || $data eq 'scores') {  #    if ($data eq 'tries' || $data eq 'scores') {
         $row_offset = -1;          $row_offset = -1;
     }  #    }
     #      #
     # Add the remaining column headers      # Add the remaining column headers
     my $total_formula_string = '=0';      my $total_formula_string = '=0';
Line 1067  END Line 1067  END
     $total_formula = $excel_sheet->store_formula($total_formula_string);      $total_formula = $excel_sheet->store_formula($total_formula_string);
     #      #
     # Bookkeeping      # Bookkeeping
     if ($data eq 'sum and total' || $data eq 'parts correct total') {  #    if ($data eq 'sum and total' || $data eq 'parts correct total') {
         $rows_output += 2;  #        $rows_output += 1;
     } else {  #    } else {
         $rows_output += 1;          $rows_output += 1;
     }  #    }
     #      #
     # Output a row for MAX      # Output a row for MAX
     $cols_output = 0;      $cols_output = 0;

Removed from v.1.81.2.2  
changed lines
  Added in v.1.81.2.3


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