Diff for /loncom/interface/spreadsheet/classcalc.pm between versions 1.4 and 1.10

version 1.4, 2003/05/23 21:03:29 version 1.10, 2003/06/23 19:58:18
Line 51  use Apache::loncoursedata(); Line 51  use Apache::loncoursedata();
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
 use Apache::Spreadsheet;  use Apache::Spreadsheet;
 use Apache::studentcalc;  use Apache::studentcalc;
   use Apache::lonstatistics();
 use HTML::Entities();  use HTML::Entities();
 use Spreadsheet::WriteExcel;  use Spreadsheet::WriteExcel;
 use Apache::lonnet;  use Apache::lonnet;
Line 58  use Time::HiRes; Line 59  use Time::HiRes;
   
 @Apache::classcalc::ISA = ('Apache::Spreadsheet');  @Apache::classcalc::ISA = ('Apache::Spreadsheet');
   
   ##
   ## Package variable
   ##
   
   my @Students;
   
   sub initialize {
       &Apache::lonstatistics::clear_classlist_variables();
       @Students = &Apache::lonstatistics::get_students();
       return;
   }
   
 sub html_header {  sub html_header {
     my $self = shift;      my $self = shift;
     my ($toprow,$bottomrow);      my ($toprow,$bottomrow);
     foreach (['Sections','Section selector goes here'],      &Apache::lonstatistics::clear_classlist_variables();
       foreach (['Sections',&Apache::lonstatistics::SectionSelect('Section','multpile',3)],
              ['Enrollment Status',&Apache::lonhtmlcommon::StatusOptions(undef,undef,3)],               ['Enrollment Status',&Apache::lonhtmlcommon::StatusOptions(undef,undef,3)],
              ['Output Format',&Apache::Spreadsheet::output_selector()]) {               ['Output Format',&Apache::Spreadsheet::output_selector()]) {
         my ($name,$selector) = @{$_};          my ($name,$selector) = @{$_};
Line 74  sub html_header { Line 88  sub html_header {
         "</table>\n</p>";          "</table>\n</p>";
 }  }
   
 sub get_classlist {  
     my $self = shift;  
     # Retrieve the classlist  
     my @Students = ();  
     my ($classlist,$field_names) = &Apache::loncoursedata::get_classlist  
         ($self->{'cid'},$self->{'cdom'},$self->{'cnum'});  
     while (my ($student,$student_data) = each (%$classlist)) {  
         my $studenthash = ();  
         for (my $i=0; $i< scalar(@$field_names);$i++) {  
             my $field = $field_names->[$i];  
             $studenthash->{$field}=$student_data->[$i];  
         }  
         # This is where we can skip students because they are in   
         # the wrong section, have expired or pending roles, whatever...  
         push (@Students,$studenthash);  
     }  
     my @SortedStudents = sort { $a->{'fullname'} cmp $b->{'fullname'} } @Students;  
     return @SortedStudents;  
 }  
   
 sub get_title {  sub get_title {
     my $self = shift;      my $self = shift;
     # Section info should be included      # Section info should be included
Line 118  sub outsheet_html { Line 112  sub outsheet_html {
     ###################################      ###################################
     # Determine table structure      # Determine table structure
     ###################################      ###################################
       my $importcolor = '#88FF88';
       my $exportcolor = '#BBBBFF';
     my $num_uneditable = 26;      my $num_uneditable = 26;
     my $num_left = 52-$num_uneditable;      my $num_left = 52-$num_uneditable;
     my $tableheader =<<"END";      my $tableheader =<<"END";
Line 125  sub outsheet_html { Line 121  sub outsheet_html {
 <table border="2">  <table border="2">
 <tr>  <tr>
   <th colspan="2" rowspan="2"><font size="+2">Course</font></th>    <th colspan="2" rowspan="2"><font size="+2">Course</font></th>
   <td bgcolor="#FFDDDD" colspan="$num_uneditable">    <td bgcolor="$importcolor" colspan="$num_uneditable">
       <b><font size="+1">Import</font></b></td>        <b><font size="+1">Import</font></b></td>
   <td colspan="$num_left">    <td colspan="$num_left">
       <b><font size="+1">Calculations</font></b></td>        <b><font size="+1">Calculations</font></b></td>
Line 134  END Line 130  END
     my $label_num = 0;      my $label_num = 0;
     foreach (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')){      foreach (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')){
         if ($label_num<$num_uneditable) {           if ($label_num<$num_uneditable) { 
             $tableheader.='<th bgcolor="#FFDDDD">';              $tableheader.='<th bgcolor="'.$importcolor.'">';
         } else {          } else {
             $tableheader.='<th>';              $tableheader.='<th>';
         }          }
Line 147  END Line 143  END
     #      #
     # Print out template row      # Print out template row
     $r->print('<tr><td>Template</td><td>&nbsp;</td>'.      $r->print('<tr><td>Template</td><td>&nbsp;</td>'.
       $self->html_template_row($num_uneditable)."</tr>\n");        $self->html_template_row($num_uneditable,$importcolor).
                 "</tr>\n");
     #      #
     # Print out summary/export row      # Print out summary/export row
     $r->print('<tr><td>Summary</td><td>0</td>'.      $r->print('<tr><td>Summary</td><td>0</td>'.
       $self->html_export_row()."</tr>\n");        $self->html_export_row($exportcolor)."</tr>\n");
     #      #
     # Prepare to output rows      # Prepare to output rows
     $tableheader =<<"END";      $tableheader =<<"END";
Line 163  END Line 160  END
 END  END
     foreach (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')){      foreach (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')){
  if ($label_num<$num_uneditable) {    if ($label_num<$num_uneditable) { 
             $tableheader.='<th bgcolor="#FFDDDD">';              $tableheader.='<th bgcolor="'.$importcolor.'">';
         } else {          } else {
             $tableheader.='<th>';              $tableheader.='<th>';
         }          }
Line 171  END Line 168  END
     }      }
     #      #
     my $num_output = 0;      my $num_output = 0;
     foreach my $student ($self->get_classlist()) {      foreach my $student (@Students) {
  if ($num_output++ % 50 == 0) {   if ($num_output++ % 50 == 0) {
     $r->print("</table>\n".$tableheader);      $r->print("</table>\n".$tableheader);
  }   }
Line 181  END Line 178  END
             '&sdomain='.$student->{'domain'}.'">';              '&sdomain='.$student->{'domain'}.'">';
         $student->{'section'} = 'none' if ($student->{'section'} eq '-1');          $student->{'section'} = 'none' if ($student->{'section'} eq '-1');
  $r->print('<tr>'.'<td>'.$rownum.'</td>'.   $r->print('<tr>'.'<td>'.$rownum.'</td>'.
   '<td>'.$link.$student->{'fullname'}.'</a></td>'.    '<td>'.$student->{'fullname'}.'</td>'.
   '<td>'.$student->{'username'}.'</td>'.    '<td>'.$link.$student->{'username'}.'</a></td>'.
   '<td>'.$student->{'domain'}  .'</td>'.    '<td>'.$student->{'domain'}  .'</td>'.
   '<td>'.$student->{'section'} .'</td>'.    '<td>'.$student->{'section'} .'</td>'.
   '<td>'.$student->{'status'}  .'</td>'.    '<td>'.$student->{'status'}  .'</td>'.
   $self->html_row($num_uneditable,$rownum)."</tr>\n");    $self->html_row($num_uneditable,$rownum,$exportcolor,
                                     $importcolor).
                     "</tr>\n");
     }      }
     $r->print("</table></p>\n");      $r->print("</table></p>\n");
     return;      return;
Line 206  sub excel_rows { Line 205  sub excel_rows {
     $rows_output++;          $rows_output++;    
     #      #
     # Write each students row      # Write each students row
     foreach my $student ($self->get_classlist()) {      foreach my $student (@Students) {
         $cols_output = 0;          $cols_output = 0;
  my $rownum = $self->get_row_number_from_key   my $rownum = $self->get_row_number_from_key
     ($student->{'username'}.':'.$student->{'domain'});      ($student->{'username'}.':'.$student->{'domain'});
Line 234  sub csv_rows { Line 233  sub csv_rows {
                           ('fullname','username','domain','section','status'));                            ('fullname','username','domain','section','status'));
     #      #
     # Write each students row      # Write each students row
     foreach my $student ($self->get_classlist()) {      foreach my $student (@Students) {
  my $rownum = $self->get_row_number_from_key   my $rownum = $self->get_row_number_from_key
     ($student->{'username'}.':'.$student->{'domain'});      ($student->{'username'}.':'.$student->{'domain'});
         $student->{'section'} = 'none' if ($student->{'section'} eq '-1');          $student->{'section'} = 'none' if ($student->{'section'} eq '-1');
Line 259  sub compute { Line 258  sub compute {
     $self->initialize_safe_space();      $self->initialize_safe_space();
     my %c = $self->constants();      my %c = $self->constants();
     my %f = $self->formulas();      my %f = $self->formulas();
     my @Students = $self->get_classlist();  
     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin      my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin
         ($r,'Spreadsheet Computation Status',          ($r,'Spreadsheet Computation Status',
          'Spreadsheet Computation', scalar(@Students));           'Spreadsheet Computation', scalar(@Students));
       &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
                                             'Processing course structure');
     &Apache::studentcalc::initialize_package();      &Apache::studentcalc::initialize_package();
     foreach my $student ($self->get_classlist()) {      &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
                                             'Processing first student');
       foreach my $student (@Students) {
         my $sname = $student->{'username'}.':'.$student->{'domain'};          my $sname = $student->{'username'}.':'.$student->{'domain'};
  my $studentsheet = Apache::studentcalc->new   my $studentsheet = Apache::studentcalc->new
     ($student->{'username'},$student->{'domain'},undef);      ($student->{'username'},$student->{'domain'},undef);
Line 289  sub compute { Line 291  sub compute {
     $self->constants(\%c);      $self->constants(\%c);
     $self->formulas(\%f);      $self->formulas(\%f);
     $self->calcsheet();      $self->calcsheet();
       $self->save() if ($self->need_to_save());
 }  }
   
 1;  1;

Removed from v.1.4  
changed lines
  Added in v.1.10


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