Diff for /loncom/interface/statistics/lonstudentsubmissions.pm between versions 1.33 and 1.35

version 1.33, 2005/02/03 00:25:01 version 1.35, 2005/02/23 19:41:27
Line 267  sub prepare_html_output { Line 267  sub prepare_html_output {
                 if ($partid =~/^\d+$/) {                  if ($partid =~/^\d+$/) {
                     $tmpname = $prob->part_display($partid);                      $tmpname = $prob->part_display($partid);
                 }                  }
                   if ($tmpname !~ /^part/) {
                       $tmpname = 'Part '.$tmpname;
                   }
                 $headers{'part'} .= qq{<th colspan="$part_span">$tmpname</th>};                  $headers{'part'} .= qq{<th colspan="$part_span">$tmpname</th>};
                 $nonempty_part_headers = 1;                  $nonempty_part_headers = 1;
             } else {              } else {
Line 756  sub prepare_excel_output { Line 759  sub prepare_excel_output {
             }              }
         }          }
         # Fill in the remaining rows with the students data          # Fill in the remaining rows with the students data
         for (my $row = $student_row+1;$row<=$max_row;$row++) {          for (my $row = $student_row+1;$row<$max_row;$row++) {
             my $cols = 0;              my $cols = 0;
             foreach my $field (@StudentColumns) {              foreach my $field (@StudentColumns) {
                 $worksheet->write($row,$cols++,                  $worksheet->write($row,$cols++,
                                   $student->{$field});                                    $student->{$field});
             }              }
         }          }
         $rows_output++;  
         &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,          &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                                                  'last student');                                                   'last student');
     }      }

Removed from v.1.33  
changed lines
  Added in v.1.35


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