Diff for /loncom/interface/Attic/lonspreadsheet.pm between versions 1.124 and 1.125

version 1.124, 2002/10/22 19:47:13 version 1.125, 2002/10/24 14:34:07
Line 122  my $tmpdir; Line 122  my $tmpdir;
 ##  ##
 sub mask {  sub mask {
     my ($lower,$upper)=@_;      my ($lower,$upper)=@_;
       #
     $lower=~/([A-Za-z]|\*)(\d+|\*)/;      my ($la,$ld) = ($lower=~/([A-Za-z]|\*)(\d+|\*)/);
     my $la=$1;      my ($ua,$ud) = ($upper=~/([A-Za-z]|\*)(\d+|\*)/);
     my $ld=$2;      #
   
     $upper=~/([A-Za-z]|\*)(\d+|\*)/;  
     my $ua=$1;  
     my $ud=$2;  
     my $alpha='';      my $alpha='';
     my $num='';      my $num='';
       #
     if (($la eq '*') || ($ua eq '*')) {      if (($la eq '*') || ($ua eq '*')) {
        $alpha='[A-Za-z]';         $alpha='[A-Za-z]';
     } else {      } else {
           
        if (($la=~/[A-Z]/) && ($ua=~/[A-Z]/) ||         if (($la=~/[A-Z]/) && ($ua=~/[A-Z]/) ||
            ($la=~/[a-z]/) && ($ua=~/[a-z]/)) {             ($la=~/[a-z]/) && ($ua=~/[a-z]/)) {
           $alpha='['.$la.'-'.$ua.']';            $alpha='['.$la.'-'.$ua.']';
Line 188  sub mask { Line 185  sub mask {
                }                 }
                $num.=')';                 $num.=')';
            } else {             } else {
                if ($lda[$#lda]!=$uda[$#uda]) {                 if ($lda[-1]!=$uda[-1]) {
                   $num.='['.$lda[$#lda].'-'.$uda[$#uda].']';                    $num.='['.$lda[-1].'-'.$uda[-1].']';
        }         }
            }             }
        }         }
Line 237  undef %c; # Holds the constants for a sh Line 234  undef %c; # Holds the constants for a sh
     # sheets, this is the A column.  Used in &MINPARM, &MAXPARM, &expandnamed,      # sheets, this is the A column.  Used in &MINPARM, &MAXPARM, &expandnamed,
     # &sett, and &setconstants.  There is no &getconstants.      # &sett, and &setconstants.  There is no &getconstants.
     # &setconstants is called by &loadstudent, &loadcourse, &load assessment,      # &setconstants is called by &loadstudent, &loadcourse, &load assessment,
 undef %rowlabel;  # Holds the 'prefix' for each row.  Set by &setrowlabels.  
     # &setrowlabels is called by &updateclasssheet, &updatestudentassesssheet,  
 undef @os;  # Holds the names of other spreadsheets - this is used to specify  undef @os;  # Holds the names of other spreadsheets - this is used to specify
     # the spreadsheets that are available for the assessment sheet.      # the spreadsheets that are available for the assessment sheet.
     # Set by &setothersheets.  &setothersheets is called by &handler.  A      # Set by &setothersheets.  &setothersheets is called by &handler.  A
Line 979  sub outrowassess { Line 974  sub outrowassess {
     if ($n) {      if ($n) {
         my ($usy,$ufn)=split(/__&&&\__/,$sheet->{'f'}->{'A'.$n});          my ($usy,$ufn)=split(/__&&&\__/,$sheet->{'f'}->{'A'.$n});
         if ($sheet->{'rowlabel'}->{$usy}) {          if ($sheet->{'rowlabel'}->{$usy}) {
             $cols[0]=$sheet->{'rowlabel'}->{$usy};              $cols[0]=&format_rowlabel($sheet->{'rowlabel'}->{$usy});
             if (! $csv) {              if (! $csv) {
                 $cols[0].='<br>'.                  $cols[0].='<br>'.
                 '<select name="sel_'.$n.'" onChange="changesheet('.$n.')">'.                  '<select name="sel_'.$n.'" onChange="changesheet('.$n.')">'.
Line 1017  sub outrow { Line 1012  sub outrow {
     my $n=shift;      my $n=shift;
     my @cols=();      my @cols=();
     if ($n) {      if ($n) {
        $cols[0]=$sheet->{'rowlabel'}->{$sheet->{'f'}->{'A'.$n}};          $cols[0]=&format_rowlabel($sheet->{'rowlabel'}->{$sheet->{'f'}->{'A'.$n}});
     } else {      } else {
        $cols[0]='<b><font size=+1>Export</font></b>';         $cols[0]='<b><font size=+1>Export</font></b>';
     }      }
Line 1047  sub setconstants { Line 1042  sub setconstants {
         $constants = \%tmp;          $constants = \%tmp;
     }      }
     $sheet->{'constants'} = $constants;      $sheet->{'constants'} = $constants;
       &Apache::lonnet::logthis("----------------------------------");
       foreach my $c (keys(%{$sheet->{'constants'}})) {
           &Apache::lonnet::logthis('constant '.$c.' = '.
                                    $sheet->{'constants'}->{$c});
       }
     return %{$sheet->{'safe'}->varglob('c')}=%{$sheet->{'constants'}};      return %{$sheet->{'safe'}->varglob('c')}=%{$sheet->{'constants'}};
 }  }
   
Line 1062  sub setothersheets { Line 1062  sub setothersheets {
 # ------------------------------------------------ Add or change formula values  # ------------------------------------------------ Add or change formula values
 sub setrowlabels {  sub setrowlabels {
     my $sheet=shift;      my $sheet=shift;
     %{$sheet->{'safe'}->varglob('rowlabel')}=%{$sheet->{'rowlabel'}};      my ($rowlabel) = @_;
       if (! ref($rowlabel)) {
           my %tmp = @_;
           $rowlabel = \%tmp;
       }
       $sheet->{'rowlabel'}=$rowlabel;
 }  }
   
 # ------------------------------------------------------- Calculate spreadsheet  # ------------------------------------------------------- Calculate spreadsheet
Line 1616  sub parmval { Line 1621  sub parmval {
     return &Apache::lonnet::metadata($fn,$rwhat.'.default');      return &Apache::lonnet::metadata($fn,$rwhat.'.default');
 }  }
   
   sub format_rowlabel {
       my $rowlabel = shift;
       my ($type,$labeldata) = split(':',$rowlabel,2);
       my $result = '';
       if ($type eq 'symb') {
           my ($symb,$uname,$udom,$title) = split(':',$labeldata);
           $symb = &Apache::lonnet::unescape($symb);
           if ($ENV{'form.showcsv'}) {
               $result = $title;
           } else {
               $result = '<a href="/adm/assesscalc?usmb='.$symb.
                   '&uname='.$uname.'&udom='.$udom.'">'.$title.'</a>';
           }
       } elsif ($type eq 'student') {
           my ($sname,$sdom,$fullname,$section,$id) = split(':',$labeldata);
           if ($ENV{'form.showcsv'}) {
               $result = '"'.
                   join('","',($sname,$sdom,$fullname,$section,$id).'"');
           } else {
               $result ='<a href="/adm/studentcalc?uname='.$sname.
                   '&udom='.$sdom.'">';
               $result.=$section.'&nbsp;'.$id."&nbsp;".$fullname.'</a>';
           }
       } elsif ($type eq 'parameter') {
           if ($ENV{'form.showcsv'}) {
               $result = $labeldata =~ s/<br>//g;
           } else {
               $result = $labeldata;
           }
       } else {
           &Apache::lonnet::logthis("lonspreadsheet:bogus rowlabel type: $type");
       }
       return $result;
   }
   
 # ---------------------------------------------- Update rows for course listing  # ---------------------------------------------- Update rows for course listing
 sub updateclasssheet {  sub updateclasssheet {
     my ($sheet) = @_;      my ($sheet) = @_;
Line 1638  sub updateclasssheet { Line 1678  sub updateclasssheet {
         my ($studentDomain,$studentName,$end,$start,$id,$studentSection,          my ($studentDomain,$studentName,$end,$start,$id,$studentSection,
             $fullname,$status)   =   @{$classlist->{$student}};              $fullname,$status)   =   @{$classlist->{$student}};
         if ($ENV{'form.Status'} eq $status || $ENV{'form.Status'} eq 'Any') {          if ($ENV{'form.Status'} eq $status || $ENV{'form.Status'} eq 'Any') {
             my $rowlabel='';              $currentlist{$student}=join(':',('student',$studentName,
             if ($ENV{'form.showcsv'}) {                                               $studentDomain,$fullname,
                 $rowlabel= '"'.join('","',($studentName,$studentDomain,                                               $studentSection,$id));
                                            $fullname,$studentSection,$id).'"');  
             } else {  
                 $rowlabel='<a href="/adm/studentcalc?uname='.$studentName.  
                     '&udom='.$studentDomain.'">';  
                 $rowlabel.=$studentSection.'&nbsp;'.$id."&nbsp;".$fullname;  
                 $rowlabel.='</a>';  
             }  
             $currentlist{$student}=$rowlabel;  
         }          }
     }      }
     #      #
Line 1688  sub updateclasssheet { Line 1720  sub updateclasssheet {
         &setformulas($sheet,%f);           &setformulas($sheet,%f); 
     }      }
     #      #
     $sheet->{'rowlabel'} = \%currentlist;      &setrowlabels($sheet,\%currentlist);
     &setrowlabels($sheet);  
 }  }
   
 # ----------------------------------- Update rows for student and assess sheets  # ----------------------------------- Update rows for student and assess sheets
Line 1713  sub updatestudentassesssheet { Line 1744  sub updatestudentassesssheet {
             return 'Could not access course data';              return 'Could not access course data';
         }          }
         # Get all assessments          # Get all assessments
           #
           # allkeys is used in the assessment sheets to provide labels
           # for the parameters.
         my %allkeys=('timestamp' =>           my %allkeys=('timestamp' => 
                      'Timestamp of Last Transaction<br>timestamp',                       'parameter:Timestamp of Last Transaction<br>timestamp',
                      'subnumber' =>                       'subnumber' =>
                      'Number of Submissions<br>subnumber',                       'parameter:Number of Submissions<br>subnumber',
                      'tutornumber' =>                       'tutornumber' =>
                      'Number of Tutor Responses<br>tutornumber',                       'parameter:Number of Tutor Responses<br>tutornumber',
                      'totalpoints' =>                       'totalpoints' =>
                      'Total Points Granted<br>totalpoints');                       'parameter:Total Points Granted<br>totalpoints');
         my $adduserstr='';          my $adduserstr='';
         if (($uname ne $ENV{'user.name'}) || ($udom ne $ENV{'user.domain'})){          if (($uname ne $ENV{'user.name'}) || ($udom ne $ENV{'user.domain'})){
             $adduserstr='&uname='.$uname.'&udom='.$udom;              $adduserstr='&uname='.$uname.'&udom='.$udom;
         }          }
           #
           # allassess holds the descriptions of all assessments
         my %allassess;          my %allassess;
         if (! $ENV{'form.showcsv'}) {          foreach ('Feedback','Evaluation','Tutoring','Discussion') {
             %allassess =              my $symb = '_'.lc($_);
                 ('_feedback' =>'<a href="/adm/assesscalc?usymb=_feedback'.              $allassess{$symb} = join(':',('symb',$symb,$uname,$udom,$_));
                  $adduserstr.'">Feedback</a>',  
                  '_evaluation' =>'<a href="/adm/assesscalc?usymb=_evaluation'.  
                  $adduserstr.'">Evaluation</a>',  
                  '_tutoring' =>'<a href="/adm/assesscalc?usymb=_tutoring'.  
                  $adduserstr.'">Tutoring</a>',  
                  '_discussion' =>'<a href="/adm/assesscalc?usymb=_discussion'.  
                  $adduserstr.'">Discussion</a>'  
                  );  
         } else {  
             %allassess =  
                 ('_feedback'   => "Feedback",  
                  '_evaluation' => "Evaluation",  
                  '_tutoring'   => "Tutoring",  
                  '_discussion' => "Discussion",  
                  );  
         }          }
         while (($_,undef) = each(%bighash)) {          while (($_,undef) = each(%bighash)) {
             next if ($_!~/^src\_(\d+)\.(\d+)$/);              next if ($_!~/^src\_(\d+)\.(\d+)$/);
Line 1755  sub updatestudentassesssheet { Line 1776  sub updatestudentassesssheet {
                 my $symb=                  my $symb=
                     &Apache::lonnet::declutter($bighash{'map_id_'.$mapid}).                      &Apache::lonnet::declutter($bighash{'map_id_'.$mapid}).
                         '___'.$resid.'___'.&Apache::lonnet::declutter($srcf);                          '___'.$resid.'___'.&Apache::lonnet::declutter($srcf);
                 if (! $ENV{'form.showcsv'}) {                  $allassess{$symb}='symb:'.&Apache::lonnet::escape($symb).':'
                     $allassess{$symb}=                      .$uname.':'.$udom.':'.$bighash{'title_'.$id};
                         '<a href="/adm/assesscalc?usymb='.$symb.$adduserstr.'">'.  
                             $bighash{'title_'.$id}.'</a>';  
                 } else {  
                     $allassess{$symb}=$bighash{'title_'.$id};  
                 }  
                 next if ($stype ne 'assesscalc');                  next if ($stype ne 'assesscalc');
                 foreach my $key (split(/\,/,                  foreach my $key (split(/\,/,
                                        &Apache::lonnet::metadata($srcf,'keys')                                         &Apache::lonnet::metadata($srcf,'keys')
Line 1774  sub updatestudentassesssheet { Line 1790  sub updatestudentassesssheet {
                             &Apache::lonnet::metadata($srcf,$key.'.name');                              &Apache::lonnet::metadata($srcf,$key.'.name');
                     }                      }
                     $display.='<br>'.$key;                      $display.='<br>'.$key;
                     $allkeys{$key}=$display;                      $allkeys{$key}='parameter:'.$display;
                 } # end of foreach                  } # end of foreach
             }              }
         } # end of foreach (keys(%bighash))          } # end of foreach (keys(%bighash))
Line 1829  sub updatestudentassesssheet { Line 1845  sub updatestudentassesssheet {
         $sheet->{'f'} = \%f;          $sheet->{'f'} = \%f;
         &setformulas($sheet);           &setformulas($sheet); 
     }      }
     &setrowlabels($sheet);  
     #      #
     undef %existing;      undef %existing;
 }  }
Line 2046  sub loadassessment { Line 2061  sub loadassessment {
     if (tie(%parmhash,'GDBM_File',      if (tie(%parmhash,'GDBM_File',
             $sheet->{'coursefilename'}.'_parms.db',&GDBM_READER(),0640)) {              $sheet->{'coursefilename'}.'_parms.db',&GDBM_READER(),0640)) {
         my %f=&getformulas($sheet);          my %f=&getformulas($sheet);
         foreach (keys(%f))  {          foreach my $cell (keys(%f))  {
             next if ($_!~/^A/);              next if ($cell !~ /^A/);
             next if  ($f{$_}=~/^[\!\~\-]/);              next if  ($f{$cell} =~/^[\!\~\-]/);
             if ($f{$_}=~/^parameter/) {              if ($f{$cell}=~/^parameter/) {
                 if ($thisassess{$f{$_}}) {                  if (defined($thisassess{$f{$cell}})) {
                     my $val=&parmval($f{$_},$sheet);                      my $val       = &parmval($f{$cell},$sheet);
                     $c{$_}=$val;                      $c{$cell}     = $val;
                     $c{$f{$_}}=$val;                      $c{$f{$cell}} = $val;
                 }                  }
             } else {              } else {
                 my $key=$f{$_};                  my $key=$f{$cell};
                 my $ckey=$key;                  my $ckey=$key;
                 $key=~s/^stores\_/resource\./;                  $key=~s/^stores\_/resource\./;
                 $key=~s/\_/\./g;                  $key=~s/\_/\./g;
                 $c{$_}=$returnhash{$key};                  $c{$cell}=$returnhash{$key};
                 $c{$ckey}=$returnhash{$key};                  $c{$ckey}=$returnhash{$key};
             }              }
         }          }

Removed from v.1.124  
changed lines
  Added in v.1.125


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