File:  [LON-CAPA] / loncom / interface / Attic / lonspreadsheet.pm
Revision 1.68: download - view: text, annotated - select for diffs
Tue Oct 16 20:50:28 2001 UTC (22 years, 8 months ago) by www
Branches: MAIN
CVS tags: HEAD
Get parmvals out of response-id labelled stuff

    1: # The LearningOnline Network with CAPA
    2: # Spreadsheet/Grades Display Handler
    3: #
    4: # 11/11,11/15,11/27,12/04,12/05,12/06,12/07,
    5: # 12/08,12/09,12/11,12/12,12/15,12/16,12/18,12/19,12/30,
    6: # 01/01/01,02/01,03/01,19/01,20/01,22/01,
    7: # 03/05,03/08,03/10,03/12,03/13,03/15,03/17,
    8: # 03/19,03/20,03/21,03/27,04/05,04/09,
    9: # 07/09,07/14,07/21,09/01,09/10,9/11,9/12,9/13,9/14,9/17,10/16 Gerd Kortemeyer
   10: 
   11: package Apache::lonspreadsheet;
   12:             
   13: use strict;
   14: use Safe;
   15: use Safe::Hole;
   16: use Opcode;
   17: use Apache::lonnet;
   18: use Apache::Constants qw(:common :http);
   19: use GDBM_File;
   20: use HTML::TokeParser;
   21: 
   22: #
   23: # Caches for previously calculated spreadsheets
   24: #
   25: 
   26: my %oldsheets;
   27: my %loadedcaches;
   28: my %expiredates;
   29: 
   30: #
   31: # Cache for stores of an individual user
   32: #
   33: 
   34: my $cachedassess;
   35: my %cachedstores;
   36: 
   37: #
   38: # These cache hashes need to be independent of user, resource and course
   39: # (user and course can/should be in the keys)
   40: #
   41: 
   42: my %spreadsheets;
   43: my %courserdatas;
   44: my %userrdatas;
   45: my %defaultsheets;
   46: my %updatedata;
   47: 
   48: #
   49: # These global hashes are dependent on user, course and resource, 
   50: # and need to be initialized every time when a sheet is calculated
   51: #
   52: my %courseopt;
   53: my %useropt;
   54: my %parmhash;
   55: 
   56: # Stuff that only the screen handler can know
   57: 
   58: my $includedir;
   59: my $tmpdir;
   60: 
   61: # =============================================================================
   62: # ===================================== Implements an instance of a spreadsheet
   63: 
   64: sub initsheet {
   65:     my $safeeval = new Safe(shift);
   66:     my $safehole = new Safe::Hole;
   67:     $safeeval->permit("entereval");
   68:     $safeeval->permit(":base_math");
   69:     $safeeval->permit("sort");
   70:     $safeeval->deny(":base_io");
   71:     $safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
   72:     my $code=<<'ENDDEFS';
   73: # ---------------------------------------------------- Inside of the safe space
   74: 
   75: #
   76: # f: formulas
   77: # t: intermediate format (variable references expanded)
   78: # v: output values
   79: # c: preloaded constants (A-column)
   80: # rl: row label
   81: # os: other spreadsheets (for student spreadsheet only)
   82: 
   83: undef %v; 
   84: undef %t;
   85: undef %f;
   86: undef %c;
   87: undef %rl;
   88: undef @os;
   89: 
   90: $maxrow=0;
   91: $sheettype='';
   92: 
   93: # filename/reference of the sheet
   94: 
   95: $filename='';
   96: 
   97: # user data
   98: $uname='';
   99: $uhome='';
  100: $udom='';
  101: 
  102: # course data
  103: 
  104: $csec='';
  105: $chome='';
  106: $cnum='';
  107: $cdom='';
  108: $cid='';
  109: $cfn='';
  110: 
  111: # symb
  112: 
  113: $usymb='';
  114: 
  115: sub mask {
  116:     my ($lower,$upper)=@_;
  117: 
  118:     $lower=~/([A-Za-z]|\*)(\d+|\*)/;
  119:     my $la=$1;
  120:     my $ld=$2;
  121: 
  122:     $upper=~/([A-Za-z]|\*)(\d+|\*)/;
  123:     my $ua=$1;
  124:     my $ud=$2;
  125:     my $alpha='';
  126:     my $num='';
  127: 
  128:     if (($la eq '*') || ($ua eq '*')) {
  129:        $alpha='[A-Za-z]';
  130:     } else {
  131:        if (($la=~/[A-Z]/) && ($ua=~/[A-Z]/) ||
  132:            ($la=~/[a-z]/) && ($ua=~/[a-z]/)) {
  133:           $alpha='['.$la.'-'.$ua.']';
  134:        } else {
  135:           $alpha='['.$la.'-Za-'.$ua.']';
  136:        }
  137:     }   
  138: 
  139:     if (($ld eq '*') || ($ud eq '*')) {
  140: 	$num='\d+';
  141:     } else {
  142:         if (length($ld)!=length($ud)) {
  143:            $num.='(';
  144: 	   map {
  145:               $num.='['.$_.'-9]';
  146:            } ($ld=~m/\d/g);
  147:            if (length($ud)-length($ld)>1) {
  148:               $num.='|\d{'.(length($ld)+1).','.(length($ud)-1).'}';
  149: 	   }
  150:            $num.='|';
  151:            map {
  152:                $num.='[0-'.$_.']';
  153:            } ($ud=~m/\d/g);
  154:            $num.=')';
  155:        } else {
  156:            my @lda=($ld=~m/\d/g);
  157:            my @uda=($ud=~m/\d/g);
  158:            my $i; $j=0; $notdone=1;
  159:            for ($i=0;($i<=$#lda)&&($notdone);$i++) {
  160:                if ($lda[$i]==$uda[$i]) {
  161: 		   $num.=$lda[$i];
  162:                    $j=$i;
  163:                } else {
  164:                    $notdone=0;
  165:                }
  166:            }
  167:            if ($j<$#lda-1) {
  168: 	       $num.='('.$lda[$j+1];
  169:                for ($i=$j+2;$i<=$#lda;$i++) {
  170:                    $num.='['.$lda[$i].'-9]';
  171:                }
  172:                if ($uda[$j+1]-$lda[$j+1]>1) {
  173: 		   $num.='|['.($lda[$j+1]+1).'-'.($uda[$j+1]-1).']\d{'.
  174:                    ($#lda-$j-1).'}';
  175:                }
  176: 	       $num.='|'.$uda[$j+1];
  177:                for ($i=$j+2;$i<=$#uda;$i++) {
  178:                    $num.='[0-'.$uda[$i].']';
  179:                }
  180:                $num.=')';
  181:            } else {
  182:                if ($lda[$#lda]!=$uda[$#uda]) {
  183:                   $num.='['.$lda[$#lda].'-'.$uda[$#uda].']';
  184: 	       }
  185:            }
  186:        }
  187:     }
  188:     return '^'.$alpha.$num."\$";
  189: }
  190: 
  191: sub NUM {
  192:     my $mask=mask(@_);
  193:     my $num=0;
  194:     map {
  195:         $num++;
  196:     } grep /$mask/,keys %v;
  197:     return $num;   
  198: }
  199: 
  200: sub BIN {
  201:     my ($low,$high,$lower,$upper)=@_;
  202:     my $mask=mask($lower,$upper);
  203:     my $num=0;
  204:     map {
  205:         if (($v{$_}>=$low) && ($v{$_}<=$high)) {
  206:             $num++;
  207:         }
  208:     } grep /$mask/,keys %v;
  209:     return $num;   
  210: }
  211: 
  212: 
  213: sub SUM {
  214:     my $mask=mask(@_);
  215:     my $sum=0;
  216:     map {
  217:         $sum+=$v{$_};
  218:     } grep /$mask/,keys %v;
  219:     return $sum;   
  220: }
  221: 
  222: sub MEAN {
  223:     my $mask=mask(@_);
  224:     my $sum=0; my $num=0;
  225:     map {
  226:         $sum+=$v{$_};
  227:         $num++;
  228:     } grep /$mask/,keys %v;
  229:     if ($num) {
  230:        return $sum/$num;
  231:     } else {
  232:        return undef;
  233:     }   
  234: }
  235: 
  236: sub STDDEV {
  237:     my $mask=mask(@_);
  238:     my $sum=0; my $num=0;
  239:     map {
  240:         $sum+=$v{$_};
  241:         $num++;
  242:     } grep /$mask/,keys %v;
  243:     unless ($num>1) { return undef; }
  244:     my $mean=$sum/$num;
  245:     $sum=0;
  246:     map {
  247:         $sum+=($v{$_}-$mean)**2;
  248:     } grep /$mask/,keys %v;
  249:     return sqrt($sum/($num-1));    
  250: }
  251: 
  252: sub PROD {
  253:     my $mask=mask(@_);
  254:     my $prod=1;
  255:     map {
  256:         $prod*=$v{$_};
  257:     } grep /$mask/,keys %v;
  258:     return $prod;   
  259: }
  260: 
  261: sub MAX {
  262:     my $mask=mask(@_);
  263:     my $max='-';
  264:     map {
  265:         unless ($max) { $max=$v{$_}; }
  266:         if (($v{$_}>$max) || ($max eq '-')) { $max=$v{$_}; }
  267:     } grep /$mask/,keys %v;
  268:     return $max;   
  269: }
  270: 
  271: sub MIN {
  272:     my $mask=mask(@_);
  273:     my $min='-';
  274:     map {
  275:         unless ($max) { $max=$v{$_}; }
  276:         if (($v{$_}<$min) || ($min eq '-')) { $min=$v{$_}; }
  277:     } grep /$mask/,keys %v;
  278:     return $min;   
  279: }
  280: 
  281: sub SUMMAX {
  282:     my ($num,$lower,$upper)=@_;
  283:     my $mask=mask($lower,$upper);
  284:     my @inside=();
  285:     map {
  286: 	$inside[$#inside+1]=$v{$_};
  287:     } grep /$mask/,keys %v;
  288:     @inside=sort(@inside);
  289:     my $sum=0; my $i;
  290:     for ($i=$#inside;(($i>$#inside-$num) && ($i>=0));$i--) { 
  291:         $sum+=$inside[$i];
  292:     }
  293:     return $sum;   
  294: }
  295: 
  296: sub SUMMIN {
  297:     my ($num,$lower,$upper)=@_;
  298:     my $mask=mask($lower,$upper);
  299:     my @inside=();
  300:     map {
  301: 	$inside[$#inside+1]=$v{$_};
  302:     } grep /$mask/,keys %v;
  303:     @inside=sort(@inside);
  304:     my $sum=0; my $i;
  305:     for ($i=0;(($i<$num) && ($i<=$#inside));$i++) { 
  306:         $sum+=$inside[$i];
  307:     }
  308:     return $sum;   
  309: }
  310: 
  311: sub expandnamed {
  312:     my $expression=shift;
  313:     if ($expression=~/^\&/) {
  314: 	my ($func,$var,$formula)=($expression=~/^\&(\w+)\(([^\;]+)\;(.*)\)/);
  315: 	my @vars=split(/\W+/,$formula);
  316:         my %values=();
  317:         undef %values;
  318:         map {
  319:             my $varname=$_;
  320:             if ($varname=~/\D/) {
  321:                $formula=~s/$varname/'$c{\''.$varname.'\'}'/ge;
  322:                $varname=~s/$var/\(\\w\+\)/g;
  323: 	       map {
  324: 		  if ($_=~/$varname/) {
  325: 		      $values{$1}=1;
  326:                   }
  327:                } keys %c;
  328: 	    }
  329:         } @vars;
  330:         if ($func eq 'EXPANDSUM') {
  331:             my $result='';
  332: 	    map {
  333:                 my $thissum=$formula;
  334:                 $thissum=~s/$var/$_/g;
  335:                 $result.=$thissum.'+';
  336:             } keys %values;
  337:             $result=~s/\+$//;
  338:             return $result;
  339:         } else {
  340: 	    return 0;
  341:         }
  342:     } else {
  343:         return '$c{\''.$expression.'\'}';
  344:     }
  345: }
  346: 
  347: sub sett {
  348:     %t=();
  349:     my $pattern='';
  350:     if ($sheettype eq 'assesscalc') {
  351: 	$pattern='A';
  352:     } else {
  353:         $pattern='[A-Z]';
  354:     }
  355:     map {
  356: 	if ($_=~/template\_(\w)/) {
  357: 	  my $col=$1;
  358:           unless ($col=~/^$pattern/) {
  359:             map {
  360: 	      if ($_=~/A(\d+)/) {
  361: 		my $trow=$1;
  362:                 if ($trow) {
  363: 		    my $lb=$col.$trow;
  364:                     $t{$lb}=$f{'template_'.$col};
  365:                     $t{$lb}=~s/\#/$trow/g;
  366:                     $t{$lb}=~s/\.\.+/\,/g;
  367:                     $t{$lb}=~s/(^|[^\"\'])([A-Za-z]\d+)/$1\$v\{\'$2\'\}/g;
  368:                     $t{$lb}=~s/(^|[^\"\'])\[([^\]]+)\]/$1.&expandnamed($2)/ge;
  369:                 }
  370: 	      }
  371:             } keys %f;
  372: 	  }
  373:       }
  374:     } keys %f;
  375:     map {
  376: 	if (($f{$_}) && ($_!~/template\_/)) {
  377:             my $matches=($_=~/^$pattern(\d+)/);
  378:             if  (($matches) && ($1)) {
  379: 	        unless ($f{$_}=~/^\!/) {
  380: 		    $t{$_}=$c{$_};
  381:                 }
  382:             } else {
  383: 	       $t{$_}=$f{$_};
  384:                $t{$_}=~s/\.\.+/\,/g;
  385:                $t{$_}=~s/(^|[^\"\'])([A-Za-z]\d+)/$1\$v\{\'$2\'\}/g;
  386:                $t{$_}=~s/(^|[^\"\'])\[([^\]]+)\]/$1.&expandnamed($2)/ge;
  387:             }
  388:         }
  389:     } keys %f;
  390:     $t{'A0'}=$f{'A0'};
  391:     $t{'A0'}=~s/\.\.+/\,/g;
  392:     $t{'A0'}=~s/(^|[^\"\'])([A-Za-z]\d+)/$1\$v\{\'$2\'\}/g;
  393:     $t{'A0'}=~s/(^|[^\"\'])\[([^\]]+)\]/$1.&expandnamed($2)/ge;
  394: }
  395: 
  396: sub calc {
  397:     %v=();
  398:     &sett();
  399:     my $notfinished=1;
  400:     my $depth=0;
  401:     while ($notfinished) {
  402: 	$notfinished=0;
  403:         map {
  404:             my $old=$v{$_};
  405:             $v{$_}=eval($t{$_});
  406: 	    if ($@) {
  407: 		%v=();
  408:                 return $@;
  409:             }
  410: 	    if ($v{$_} ne $old) { $notfinished=1; }
  411:         } keys %t;
  412:         $depth++;
  413:         if ($depth>100) {
  414: 	    %v=();
  415:             return 'Maximum calculation depth exceeded';
  416:         }
  417:     }
  418:     return '';
  419: }
  420: 
  421: sub templaterow {
  422:     my @cols=();
  423:     $cols[0]='<b><font size=+1>Template</font></b>';
  424:     map {
  425:         my $fm=$f{'template_'.$_};
  426:         $fm=~s/[\'\"]/\&\#34;/g;
  427:         $cols[$#cols+1]="'template_$_','$fm'".'___eq___'.$fm;
  428:     } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  429:        'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  430:        'a','b','c','d','e','f','g','h','i','j','k','l','m',
  431:        'n','o','p','q','r','s','t','u','v','w','x','y','z');
  432:     return @cols;
  433: }
  434: 
  435: sub outrowassess {
  436:     my $n=shift;
  437:     my @cols=();
  438:     if ($n) {
  439:        my ($usy,$ufn)=split(/\_\_\&\&\&\_\_/,$f{'A'.$n});
  440:        $cols[0]=$rl{$usy}.'<br>'.
  441:                 '<select name="sel_'.$n.'" onChange="changesheet('.$n.
  442:                 ')"><option name="default">Default</option>';
  443:        map {
  444:            $cols[0].='<option name="'.$_.'"';
  445:             if ($ufn eq $_) {
  446:                $cols[0].=' selected';
  447:             }
  448:             $cols[0].='>'.$_.'</option>';
  449:        } @os;
  450:        $cols[0].='</select>';
  451:     } else {
  452:        $cols[0]='<b><font size=+1>Export</font></b>';
  453:     }
  454:     map {
  455:         my $fm=$f{$_.$n};
  456:         $fm=~s/[\'\"]/\&\#34;/g;
  457:         $cols[$#cols+1]="'$_$n','$fm'".'___eq___'.$v{$_.$n};
  458:     } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  459:        'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  460:        'a','b','c','d','e','f','g','h','i','j','k','l','m',
  461:        'n','o','p','q','r','s','t','u','v','w','x','y','z');
  462:     return @cols;
  463: }
  464: 
  465: sub outrow {
  466:     my $n=shift;
  467:     my @cols=();
  468:     if ($n) {
  469:        $cols[0]=$rl{$f{'A'.$n}};
  470:     } else {
  471:        $cols[0]='<b><font size=+1>Export</font></b>';
  472:     }
  473:     map {
  474:         my $fm=$f{$_.$n};
  475:         $fm=~s/[\'\"]/\&\#34;/g;
  476:         $cols[$#cols+1]="'$_$n','$fm'".'___eq___'.$v{$_.$n};
  477:     } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  478:        'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  479:        'a','b','c','d','e','f','g','h','i','j','k','l','m',
  480:        'n','o','p','q','r','s','t','u','v','w','x','y','z');
  481:     return @cols;
  482: }
  483: 
  484: sub exportrowa {
  485:     my @exportarray=();
  486:     map {
  487: 	$exportarray[$#exportarray+1]=$v{$_.'0'};
  488:     } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  489:        'N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
  490:     return @exportarray;
  491: }
  492: 
  493: # ------------------------------------------- End of "Inside of the safe space"
  494: ENDDEFS
  495:     $safeeval->reval($code);
  496:     return $safeeval;
  497: }
  498: 
  499: # ------------------------------------------------ Add or change formula values
  500: 
  501: sub setformulas {
  502:     my ($safeeval,%f)=@_;
  503:     %{$safeeval->varglob('f')}=%f;
  504: }
  505: 
  506: # ------------------------------------------------ Add or change formula values
  507: 
  508: sub setconstants {
  509:     my ($safeeval,%c)=@_;
  510:     %{$safeeval->varglob('c')}=%c;
  511: }
  512: 
  513: # --------------------------------------------- Set names of other spreadsheets
  514: 
  515: sub setothersheets {
  516:     my ($safeeval,@os)=@_;
  517:     @{$safeeval->varglob('os')}=@os;
  518: }
  519: 
  520: # ------------------------------------------------ Add or change formula values
  521: 
  522: sub setrowlabels {
  523:     my ($safeeval,%rl)=@_;
  524:     %{$safeeval->varglob('rl')}=%rl;
  525: }
  526: 
  527: # ------------------------------------------------------- Calculate spreadsheet
  528: 
  529: sub calcsheet {
  530:     my $safeeval=shift;
  531:     $safeeval->reval('&calc();');
  532: }
  533: 
  534: # ------------------------------------------------------------------ Get values
  535: 
  536: sub getvalues {
  537:     my $safeeval=shift;
  538:     return $safeeval->reval('%v');
  539: }
  540: 
  541: # ---------------------------------------------------------------- Get formulas
  542: 
  543: sub getformulas {
  544:     my $safeeval=shift;
  545:     return %{$safeeval->varglob('f')};
  546: }
  547: 
  548: # -------------------------------------------------------------------- Get type
  549: 
  550: sub gettype {
  551:     my $safeeval=shift;
  552:     return $safeeval->reval('$sheettype');
  553: }
  554: 
  555: # ------------------------------------------------------------------ Set maxrow
  556: 
  557: sub setmaxrow {
  558:     my ($safeeval,$row)=@_;
  559:     $safeeval->reval('$maxrow='.$row.';');
  560: }
  561: 
  562: # ------------------------------------------------------------------ Get maxrow
  563: 
  564: sub getmaxrow {
  565:     my $safeeval=shift;
  566:     return $safeeval->reval('$maxrow');
  567: }
  568: 
  569: # ---------------------------------------------------------------- Set filename
  570: 
  571: sub setfilename {
  572:     my ($safeeval,$fn)=@_;
  573:     $safeeval->reval('$filename="'.$fn.'";');
  574: }
  575: 
  576: # ---------------------------------------------------------------- Get filename
  577: 
  578: sub getfilename {
  579:     my $safeeval=shift;
  580:     return $safeeval->reval('$filename');
  581: }
  582: 
  583: # --------------------------------------------------------------- Get course ID
  584: 
  585: sub getcid {
  586:     my $safeeval=shift;
  587:     return $safeeval->reval('$cid');
  588: }
  589: 
  590: # --------------------------------------------------------- Get course filename
  591: 
  592: sub getcfn {
  593:     my $safeeval=shift;
  594:     return $safeeval->reval('$cfn');
  595: }
  596: 
  597: # ----------------------------------------------------------- Get course number
  598: 
  599: sub getcnum {
  600:     my $safeeval=shift;
  601:     return $safeeval->reval('$cnum');
  602: }
  603: 
  604: # ------------------------------------------------------------- Get course home
  605: 
  606: sub getchome {
  607:     my $safeeval=shift;
  608:     return $safeeval->reval('$chome');
  609: }
  610: 
  611: # ----------------------------------------------------------- Get course domain
  612: 
  613: sub getcdom {
  614:     my $safeeval=shift;
  615:     return $safeeval->reval('$cdom');
  616: }
  617: 
  618: # ---------------------------------------------------------- Get course section
  619: 
  620: sub getcsec {
  621:     my $safeeval=shift;
  622:     return $safeeval->reval('$csec');
  623: }
  624: 
  625: # --------------------------------------------------------------- Get user name
  626: 
  627: sub getuname {
  628:     my $safeeval=shift;
  629:     return $safeeval->reval('$uname');
  630: }
  631: 
  632: # ------------------------------------------------------------- Get user domain
  633: 
  634: sub getudom {
  635:     my $safeeval=shift;
  636:     return $safeeval->reval('$udom');
  637: }
  638: 
  639: # --------------------------------------------------------------- Get user home
  640: 
  641: sub getuhome {
  642:     my $safeeval=shift;
  643:     return $safeeval->reval('$uhome');
  644: }
  645: 
  646: # -------------------------------------------------------------------- Get symb
  647: 
  648: sub getusymb {
  649:     my $safeeval=shift;
  650:     return $safeeval->reval('$usymb');
  651: }
  652: 
  653: # ------------------------------------------------------------- Export of A-row
  654: 
  655: sub exportdata {
  656:     my $safeeval=shift;
  657:     return $safeeval->reval('&exportrowa()');
  658: }
  659: 
  660: 
  661: # ========================================================== End of Spreadsheet
  662: # =============================================================================
  663: 
  664: #
  665: # Procedures for screen output
  666: #
  667: # --------------------------------------------- Produce output row n from sheet
  668: 
  669: sub rown {
  670:     my ($safeeval,$n)=@_;
  671:     my $defaultbg;
  672:     my $rowdata='';
  673:     my $dataflag=0;
  674:     unless ($n eq '-') {
  675:        $defaultbg=((($n-1)/5)==int(($n-1)/5))?'#E0E0':'#FFFF';
  676:     } else {
  677:        $defaultbg='#E0FF';
  678:     }
  679:     $rowdata.="\n<tr><td><b><font size=+1>$n</font></b></td>";
  680:     my $showf=0;
  681:     my $proc;
  682:     my $maxred;
  683:     my $sheettype=&gettype($safeeval);
  684:     if ($sheettype eq 'studentcalc') {
  685:         $proc='&outrowassess';
  686:         $maxred=26;
  687:     } else {
  688:         $proc='&outrow';
  689:     }
  690:     if ($sheettype eq 'assesscalc') {
  691:         $maxred=1;
  692:     } else {
  693:         $maxred=26;
  694:     }
  695:     if ($n eq '-') { $proc='&templaterow'; $n=-1; $dataflag=1; }
  696:     map {
  697:        my $bgcolor=$defaultbg.((($showf-1)/5==int(($showf-1)/5))?'99':'DD');
  698:        my ($fm,$vl)=split(/\_\_\_eq\_\_\_/,$_);
  699:        if ((($vl ne '') || ($vl eq '0')) &&
  700:            (($showf==1) || ($sheettype ne 'studentcalc'))) { $dataflag=1; }
  701:        if ($showf==0) { $vl=$_; }
  702:        if ($showf<=$maxred) { $bgcolor='#FFDDDD'; }
  703:        if (($n==0) && ($showf<=26)) { $bgcolor='#CCCCFF'; } 
  704:        if (($showf>$maxred) || ((!$n) && ($showf>0))) {
  705: 	   if ($vl eq '') {
  706: 	       $vl='<font size=+2 color='.$bgcolor.'>&#35;</font>';
  707:            }
  708:            $rowdata.=
  709:        '<td bgcolor='.$bgcolor.'><a href="javascript:celledit('.$fm.');">'.$vl.
  710: 	       '</a></td>';
  711:        } else {
  712:            $rowdata.='<td bgcolor='.$bgcolor.'>&nbsp;'.$vl.'&nbsp;</td>';
  713:        }
  714:        $showf++;
  715:     } $safeeval->reval($proc.'('.$n.')');
  716:     if ($ENV{'form.showall'} || ($dataflag)) {
  717:        return $rowdata.'</tr>';
  718:     } else {
  719:        return '';
  720:     }
  721: }
  722: 
  723: # ------------------------------------------------------------- Print out sheet
  724: 
  725: sub outsheet {
  726:     my ($r,$safeeval)=@_;
  727:     my $maxred;
  728:     my $realm;
  729:     if (&gettype($safeeval) eq 'assesscalc') {
  730:         $maxred=1;
  731:         $realm='Assessment';
  732:     } elsif (&gettype($safeeval) eq 'studentcalc') {
  733:         $maxred=26;
  734:         $realm='User';
  735:     } else {
  736:         $maxred=26;
  737:         $realm='Course';
  738:     }
  739:     my $maxyellow=52-$maxred;
  740:     my $tabledata=
  741:         '<table border=2><tr><th colspan=2 rowspan=2><font size=+2>'.
  742:                   $realm.'</font></th>'.
  743:                   '<td bgcolor=#FFDDDD colspan='.$maxred.
  744:                   '><b><font size=+1>Import</font></b></td>'.
  745:                   '<td colspan='.$maxyellow.
  746: 		  '><b><font size=+1>Calculations</font></b></td></tr><tr>';
  747:     my $showf=0;
  748:     map {
  749:         $showf++;
  750:         if ($showf<=$maxred) { 
  751:            $tabledata.='<td bgcolor="#FFDDDD">'; 
  752:         } else {
  753:            $tabledata.='<td>';
  754:         }
  755:         $tabledata.="<b><font size=+1>$_</font></b></td>";
  756:     } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  757:        'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  758:        'a','b','c','d','e','f','g','h','i','j','k','l','m',
  759:        'n','o','p','q','r','s','t','u','v','w','x','y','z');
  760:     $tabledata.='</tr>';
  761:     my $row;
  762:     my $maxrow=&getmaxrow($safeeval);
  763:     $tabledata.=&rown($safeeval,'-').&rown($safeeval,0);
  764:     $r->print($tabledata);
  765: 
  766:     my @sortby=();
  767:     my @sortidx=();
  768:     for ($row=1;$row<=$maxrow;$row++) {
  769:        $sortby[$row-1]=$safeeval->reval('$f{"A'.$row.'"}');
  770:        $sortidx[$row-1]=$row-1;
  771:     }
  772:     @sortidx=sort { $sortby[$a] cmp $sortby[$b]; } @sortidx;
  773: 
  774:         my $what='Student';
  775:         if (&gettype($safeeval) eq 'assesscalc') {
  776: 	    $what='Item';
  777: 	} elsif (&gettype($safeeval) eq 'studentcalc') {
  778:             $what='Assessment';
  779:         }
  780: 
  781:     my $n=0;
  782:     for ($row=0;$row<$maxrow;$row++) {
  783:      my $thisrow=&rown($safeeval,$sortidx[$row]+1);
  784:      if ($thisrow) {
  785:        if ($n/25==int($n/25)) {
  786: 	$r->print("</table>\n<br>\n");
  787:         $r->rflush();
  788:         $r->print('<table border=2><tr><td>&nbsp;<td>'.$what.'</td>');
  789:         map {
  790:            $r->print('<td>'.$_.'</td>');
  791:         } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  792:            'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  793:            'a','b','c','d','e','f','g','h','i','j','k','l','m',
  794:            'n','o','p','q','r','s','t','u','v','w','x','y','z');
  795:         $r->print('</tr>');
  796:        }
  797:        $n++;
  798:        $r->print($thisrow);
  799:       }
  800:     }
  801:     $r->print('</table>');
  802: }
  803: 
  804: #
  805: # ----------------------------------------------- Read list of available sheets
  806: # 
  807: 
  808: sub othersheets {
  809:     my ($safeeval,$stype)=@_;
  810: 
  811:     my $cnum=&getcnum($safeeval);
  812:     my $cdom=&getcdom($safeeval);
  813:     my $chome=&getchome($safeeval);
  814: 
  815:     my @alternatives=();
  816:     my $result=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.':'.
  817:                                       $stype.'_spreadsheets',$chome);
  818:     if ($result!~/^error\:/) {
  819: 	map {
  820:             $alternatives[$#alternatives+1]=
  821:             &Apache::lonnet::unescape((split(/\=/,$_))[0]);
  822:         } split(/\&/,$result);
  823:     } 
  824:     return @alternatives; 
  825: }
  826: 
  827: #
  828: # -------------------------------------- Read spreadsheet formulas for a course
  829: #
  830: 
  831: sub readsheet {
  832:   my ($safeeval,$fn)=@_;
  833:   my $stype=&gettype($safeeval);
  834:   my $cnum=&getcnum($safeeval);
  835:   my $cdom=&getcdom($safeeval);
  836:   my $chome=&getchome($safeeval);
  837: 
  838: # --------- There is no filename. Look for defaults in course and global, cache
  839: 
  840:   unless($fn) {
  841:       unless ($fn=$defaultsheets{$cnum.'_'.$cdom.'_'.$stype}) {
  842:          $fn=&Apache::lonnet::reply('get:'.$cdom.':'.$cnum.
  843:                                     ':environment:spreadsheet_default_'.$stype,
  844:                                     $chome);
  845:          unless (($fn) && ($fn!~/^error\:/)) {
  846: 	     $fn='default_'.$stype;
  847:          }
  848:          $defaultsheets{$cnum.'_'.$cdom.'_'.$stype}=$fn; 
  849:       }
  850:   }
  851: 
  852: # ---------------------------------------------------------- fn now has a value
  853: 
  854:   &setfilename($safeeval,$fn);
  855: 
  856: # ------------------------------------------------------ see if sheet is cached
  857:   my $fstring='';
  858:   if ($fstring=$spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}) {
  859:       &setformulas($safeeval,split(/\_\_\_\;\_\_\_/,$fstring));
  860:   } else {
  861: 
  862: # ---------------------------------------------------- Not cached, need to read
  863: 
  864:      my %f=();
  865: 
  866:      if ($fn=~/^default\_/) {
  867: 	my $sheetxml='';
  868:        {
  869:          my $fh;
  870:          if ($fh=Apache::File->new($includedir.
  871:                          '/default.'.&gettype($safeeval))) {
  872:                $sheetxml=join('',<$fh>);
  873:           }
  874:        }
  875:         my $parser=HTML::TokeParser->new(\$sheetxml);
  876:         my $token;
  877:         while ($token=$parser->get_token) {
  878:           if ($token->[0] eq 'S') {
  879:  	     if ($token->[1] eq 'field') {
  880:  		 $f{$token->[2]->{'col'}.$token->[2]->{'row'}}=
  881:  		     $parser->get_text('/field');
  882:  	     }
  883:              if ($token->[1] eq 'template') {
  884:                  $f{'template_'.$token->[2]->{'col'}}=
  885:                      $parser->get_text('/template');
  886:              }
  887:           }
  888:         }
  889:       } else {
  890:           my $sheet='';
  891:           my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.':'.$fn,
  892:                                          $chome);
  893:           unless ($reply=~/^error\:/) {
  894:              $sheet=$reply;
  895: 	  }
  896:           map {
  897:              my ($name,$value)=split(/\=/,$_);
  898:              $f{&Apache::lonnet::unescape($name)}=
  899: 	        &Apache::lonnet::unescape($value);
  900:           } split(/\&/,$sheet);
  901:        }
  902: # --------------------------------------------------------------- Cache and set
  903:        $spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}=join('___;___',%f);  
  904:        &setformulas($safeeval,%f);
  905:     }
  906: }
  907: 
  908: # -------------------------------------------------------- Make new spreadsheet
  909: 
  910: sub makenewsheet {
  911:     my ($uname,$udom,$stype,$usymb)=@_;
  912:     my $safeeval=initsheet($stype);
  913:     $safeeval->reval(
  914:        '$uname="'.$uname.
  915:       '";$udom="'.$udom.
  916:       '";$uhome="'.&Apache::lonnet::homeserver($uname,$udom).
  917:       '";$sheettype="'.$stype.
  918:       '";$usymb="'.$usymb.
  919:       '";$csec="'.&Apache::lonnet::usection($udom,$uname,
  920:                                             $ENV{'request.course.id'}).
  921:       '";$cid="'.$ENV{'request.course.id'}.
  922:       '";$cfn="'.$ENV{'request.course.fn'}.
  923:       '";$cnum="'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.
  924:       '";$cdom="'.$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.
  925:       '";$chome="'.$ENV{'course.'.$ENV{'request.course.id'}.'.home'}.'";');
  926:     return $safeeval;
  927: }
  928: 
  929: # ------------------------------------------------------------ Save spreadsheet
  930: 
  931: sub writesheet {
  932:   my ($safeeval,$makedef)=@_;
  933:   my $cid=&getcid($safeeval);
  934:   if (&Apache::lonnet::allowed('opa',$cid)) {
  935:     my %f=&getformulas($safeeval);
  936:     my $stype=&gettype($safeeval);
  937:     my $cnum=&getcnum($safeeval);
  938:     my $cdom=&getcdom($safeeval);
  939:     my $chome=&getchome($safeeval);
  940:     my $fn=&getfilename($safeeval);
  941: 
  942: # ------------------------------------------------------------- Cache new sheet
  943:     $spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}=join('___;___',%f);    
  944: # ----------------------------------------------------------------- Write sheet
  945:     my $sheetdata='';
  946:     map {
  947:      unless ($f{$_} eq 'import') {
  948:        $sheetdata.=&Apache::lonnet::escape($_).'='.
  949: 	   &Apache::lonnet::escape($f{$_}).'&';
  950:      }
  951:     } keys %f;
  952:     $sheetdata=~s/\&$//;
  953:     my $reply=&Apache::lonnet::reply('put:'.$cdom.':'.$cnum.':'.$fn.':'.
  954:               $sheetdata,$chome);
  955:     if ($reply eq 'ok') {
  956:           $reply=&Apache::lonnet::reply('put:'.$cdom.':'.$cnum.':'.
  957:               $stype.'_spreadsheets:'.
  958:               &Apache::lonnet::escape($fn).'='.$ENV{'user.name'}.'@'.
  959:                                                $ENV{'user.domain'},
  960:               $chome);
  961:           if ($reply eq 'ok') {
  962:               if ($makedef) { 
  963:                 return &Apache::lonnet::reply('put:'.$cdom.':'.$cnum.
  964:                                 ':environment:spreadsheet_default_'.$stype.'='.
  965:                                 &Apache::lonnet::escape($fn),
  966:                                 $chome);
  967: 	      } else {
  968: 		  return $reply;
  969:     	      }
  970: 	   } else {
  971: 	       return $reply;
  972:            }
  973:       } else {
  974: 	  return $reply;
  975:       }
  976:   }
  977:   return 'unauthorized';
  978: }
  979: 
  980: # ----------------------------------------------- Make a temp copy of the sheet
  981: # "Modified workcopy" - interactive only
  982: #
  983: 
  984: sub tmpwrite {
  985:     my $safeeval=shift;
  986:     my $fn=$ENV{'user.name'}.'_'.
  987:            $ENV{'user.domain'}.'_spreadsheet_'.&getusymb($safeeval).'_'.
  988:            &getfilename($safeeval);
  989:     $fn=~s/\W/\_/g;
  990:     $fn=$tmpdir.$fn.'.tmp';
  991:     my $fh;
  992:     if ($fh=Apache::File->new('>'.$fn)) {
  993: 	print $fh join("\n",&getformulas($safeeval));
  994:     }
  995: }
  996: 
  997: # ---------------------------------------------------------- Read the temp copy
  998: 
  999: sub tmpread {
 1000:     my ($safeeval,$nfield,$nform)=@_;
 1001:     my $fn=$ENV{'user.name'}.'_'.
 1002:            $ENV{'user.domain'}.'_spreadsheet_'.&getusymb($safeeval).'_'.
 1003:            &getfilename($safeeval);
 1004:     $fn=~s/\W/\_/g;
 1005:     $fn=$tmpdir.$fn.'.tmp';
 1006:     my $fh;
 1007:     my %fo=();
 1008:     if ($fh=Apache::File->new($fn)) {
 1009:         my $name;
 1010:         while ($name=<$fh>) {
 1011: 	    chomp($name);
 1012:             my $value=<$fh>;
 1013:             chomp($value);
 1014:             $fo{$name}=$value;
 1015:         }
 1016:     }
 1017:     if ($nform eq 'changesheet') {
 1018:         $fo{'A'.$nfield}=(split(/\_\_\&\&\&\_\_/,$fo{'A'.$nfield}))[0];
 1019:         unless ($ENV{'form.sel_'.$nfield} eq 'Default') {
 1020: 	    $fo{'A'.$nfield}.='__&&&__'.$ENV{'form.sel_'.$nfield};
 1021:         }
 1022:     } else {
 1023:        if ($nfield) { $fo{$nfield}=$nform; }
 1024:     }
 1025:     &setformulas($safeeval,%fo);
 1026: }
 1027: 
 1028: # ================================================================== Parameters
 1029: # -------------------------------------------- Figure out a cascading parameter
 1030: #
 1031: # For this function to work
 1032: #
 1033: # * parmhash needs to be tied
 1034: # * courseopt and useropt need to be initialized for this user and course
 1035: #
 1036: 
 1037: sub parmval {
 1038:     my ($what,$safeeval)=@_;
 1039:     my $cid=&getcid($safeeval);
 1040:     my $csec=&getcsec($safeeval);
 1041:     my $uname=&getuname($safeeval);
 1042:     my $udom=&getudom($safeeval);
 1043:     my $symb=&getusymb($safeeval);
 1044: 
 1045:     unless ($symb) { return ''; }
 1046:     my $result='';
 1047: 
 1048:     my ($mapname,$id,$fn)=split(/\_\_\_/,$symb);
 1049: # ----------------------------------------------------- Cascading lookup scheme
 1050:        my $rwhat=$what;
 1051:        $what=~s/^parameter\_//;
 1052:        $what=~s/\_([^\_]+)$/\.$1/;
 1053: 
 1054:        my $symbparm=$symb.'.'.$what;
 1055:        my $mapparm=$mapname.'___(all).'.$what;
 1056:        my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
 1057: 
 1058:        my $seclevel=
 1059:             $usercourseprefix.'.['.
 1060: 		$csec.'].'.$what;
 1061:        my $seclevelr=
 1062:             $usercourseprefix.'.['.
 1063: 		$csec.'].'.$symbparm;
 1064:        my $seclevelm=
 1065:             $usercourseprefix.'.['.
 1066: 		$csec.'].'.$mapparm;
 1067: 
 1068:        my $courselevel=
 1069:             $usercourseprefix.'.'.$what;
 1070:        my $courselevelr=
 1071:             $usercourseprefix.'.'.$symbparm;
 1072:        my $courselevelm=
 1073:             $usercourseprefix.'.'.$mapparm;
 1074: 
 1075: # ---------------------------------------------------------- fourth, check user
 1076:       
 1077:       if ($uname) { 
 1078: 
 1079:        if ($useropt{$courselevelr}) { return $useropt{$courselevelr}; }
 1080: 
 1081:        if ($useropt{$courselevelm}) { return $useropt{$courselevelm}; }
 1082: 
 1083:        if ($useropt{$courselevel}) { return $useropt{$courselevel}; }
 1084: 
 1085:       }
 1086: 
 1087: # --------------------------------------------------------- third, check course
 1088:      
 1089:        if ($csec) {
 1090:  
 1091:         if ($courseopt{$seclevelr}) { return $courseopt{$seclevelr}; }
 1092: 
 1093:         if ($courseopt{$seclevelm}) { return $courseopt{$seclevelm}; }  
 1094: 
 1095:         if ($courseopt{$seclevel}) { return $courseopt{$seclevel}; }
 1096:   
 1097:       }
 1098: 
 1099:        if ($courseopt{$courselevelr}) { return $courseopt{$courselevelr}; }
 1100: 
 1101:        if ($courseopt{$courselevelm}) { return $courseopt{$courselevelm}; }
 1102: 
 1103:        if ($courseopt{$courselevel}) { return $courseopt{$courselevel}; }
 1104: 
 1105: # ----------------------------------------------------- second, check map parms
 1106: 
 1107:        my $thisparm=$parmhash{$symbparm};
 1108:        if ($thisparm) { return $thisparm; }
 1109: 
 1110: # -------------------------------------------------------- first, check default
 1111: 
 1112:        return &Apache::lonnet::metadata($fn,$rwhat.'.default');
 1113:         
 1114: }
 1115: 
 1116: # ---------------------------------------------- Update rows for course listing
 1117: 
 1118: sub updateclasssheet {
 1119:     my $safeeval=shift;
 1120:     my $cnum=&getcnum($safeeval);
 1121:     my $cdom=&getcdom($safeeval);
 1122:     my $cid=&getcid($safeeval);
 1123:     my $chome=&getchome($safeeval);
 1124: 
 1125: # ---------------------------------------------- Read class list and row labels
 1126: 
 1127:     my $classlst=&Apache::lonnet::reply
 1128:                                  ('dump:'.$cdom.':'.$cnum.':classlist',$chome);
 1129:     my %currentlist=();
 1130:     my $now=time;
 1131:     unless ($classlst=~/^error\:/) {
 1132:         map {
 1133:             my ($name,$value)=split(/\=/,$_);
 1134:             my ($end,$start)=split(/\:/,&Apache::lonnet::unescape($value));
 1135:             my $active=1;
 1136:             if (($end) && ($now>$end)) { $active=0; }
 1137:             if ($active) {
 1138:                 my $rowlabel='';
 1139:                 $name=&Apache::lonnet::unescape($name);
 1140:                 my ($sname,$sdom)=split(/\:/,$name);
 1141:                 my $ssec=&Apache::lonnet::usection($sdom,$sname,$cid);
 1142:                 if ($ssec==-1) {
 1143:                     $rowlabel='<font color=red>Data not available: '.$name.
 1144: 			      '</font>';
 1145:                 } else {
 1146:                     my %reply=&Apache::lonnet::idrget($sdom,$sname);
 1147:                     my $reply=&Apache::lonnet::reply('get:'.$sdom.':'.$sname.
 1148: 		      ':environment:firstname&middlename&lastname&generation',
 1149:                       &Apache::lonnet::homeserver($sname,$sdom));
 1150:                     $rowlabel='<a href="/adm/studentcalc?uname='.$sname.
 1151:                               '&udom='.$sdom.'">'.
 1152:                               $ssec.'&nbsp;'.$reply{$sname}.'<br>';
 1153:                     map {
 1154:                         $rowlabel.=&Apache::lonnet::unescape($_).' ';
 1155:                     } split(/\&/,$reply);
 1156:                     $rowlabel.='</a>';
 1157:                 }
 1158: 		$currentlist{&Apache::lonnet::unescape($name)}=$rowlabel;
 1159:             }
 1160:         } split(/\&/,$classlst);
 1161: #
 1162: # -------------------- Find discrepancies between the course row table and this
 1163: #
 1164:         my %f=&getformulas($safeeval);
 1165:         my $changed=0;
 1166: 
 1167:         my $maxrow=0;
 1168:         my %existing=();
 1169: 
 1170: # ----------------------------------------------------------- Now obsolete rows
 1171: 	map {
 1172: 	    if ($_=~/^A(\d+)/) {
 1173:                 $maxrow=($1>$maxrow)?$1:$maxrow;
 1174:                 $existing{$f{$_}}=1;
 1175: 		unless ((defined($currentlist{$f{$_}})) || (!$1)) {
 1176: 		   $f{$_}='!!! Obsolete';
 1177:                    $changed=1;
 1178:                 }
 1179:             }
 1180:         } keys %f;
 1181: 
 1182: # -------------------------------------------------------- New and unknown keys
 1183:      
 1184:         map {
 1185:             unless ($existing{$_}) {
 1186: 		$changed=1;
 1187:                 $maxrow++;
 1188:                 $f{'A'.$maxrow}=$_;
 1189:             }
 1190:         } sort keys %currentlist;        
 1191:      
 1192:         if ($changed) { &setformulas($safeeval,%f); }
 1193: 
 1194:         &setmaxrow($safeeval,$maxrow);
 1195:         &setrowlabels($safeeval,%currentlist);
 1196: 
 1197:     } else {
 1198:         return 'Could not access course data';
 1199:     }
 1200: }
 1201: 
 1202: # ----------------------------------- Update rows for student and assess sheets
 1203: 
 1204: sub updatestudentassesssheet {
 1205:     my $safeeval=shift;
 1206:     my %bighash;
 1207:     my $stype=&gettype($safeeval);
 1208:     my %current=();
 1209:     unless ($updatedata{$ENV{'request.course.fn'}.'_'.$stype}) {
 1210: # -------------------------------------------------------------------- Tie hash
 1211:       if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
 1212:                        &GDBM_READER,0640)) {
 1213: # --------------------------------------------------------- Get all assessments
 1214: 
 1215: 	my %allkeys=('timestamp' => 
 1216:                      'Timestamp of Last Transaction<br>timestamp');
 1217:         my %allassess=();
 1218: 
 1219:         my $adduserstr='';
 1220:         if ((&getuname($safeeval) ne $ENV{'user.name'}) ||
 1221:             (&getudom($safeeval) ne $ENV{'user.domain'})) {
 1222:             $adduserstr='&uname='.&getuname($safeeval).
 1223: 		'&udom='.&getudom($safeeval);
 1224:         }
 1225: 
 1226:         map {
 1227: 	    if ($_=~/^src\_(\d+)\.(\d+)$/) {
 1228: 	       my $mapid=$1;
 1229:                my $resid=$2;
 1230:                my $id=$mapid.'.'.$resid;
 1231:                my $srcf=$bighash{$_};
 1232:                if ($srcf=~/\.(problem|exam|quiz|assess|survey|form)$/) {
 1233:                  my $symb=
 1234:                      &Apache::lonnet::declutter($bighash{'map_id_'.$mapid}).
 1235: 			    '___'.$resid.'___'.
 1236: 			    &Apache::lonnet::declutter($srcf);
 1237: 		 $allassess{$symb}=
 1238: 	            '<a href="/adm/assesscalc?usymb='.$symb.$adduserstr.'">'.
 1239:                      $bighash{'title_'.$id}.'</a>';
 1240:                  if ($stype eq 'assesscalc') {
 1241:                    map {
 1242:                        if (($_=~/^stores\_(.*)/) || ($_=~/^parameter\_(.*)/)) {
 1243: 			  my $key=$_;
 1244:                           my $display=
 1245: 			      &Apache::lonnet::metadata($srcf,$key.'.display');
 1246:                           unless ($display) {
 1247:                               $display.=
 1248: 			         &Apache::lonnet::metadata($srcf,$key.'.name');
 1249:                           }
 1250:                           $display.='<br>'.$key;
 1251:                           $allkeys{$key}=$display;
 1252: 		       }
 1253:                    } split(/\,/,&Apache::lonnet::metadata($srcf,'keys'));
 1254: 	         }
 1255: 	      }
 1256: 	   }
 1257:         } keys %bighash;
 1258:         untie(%bighash);
 1259:     
 1260: #
 1261: # %allkeys has a list of storage and parameter displays by unikey
 1262: # %allassess has a list of all resource displays by symb
 1263: #
 1264: 
 1265:         if ($stype eq 'assesscalc') {
 1266: 	    %current=%allkeys;
 1267:         } elsif ($stype eq 'studentcalc') {
 1268:             %current=%allassess;
 1269:         }
 1270:         $updatedata{$ENV{'request.course.fn'}.'_'.$stype}=
 1271: 	    join('___;___',%current);
 1272:     } else {
 1273:         return 'Could not access course data';
 1274:     }
 1275: # ------------------------------------------------------ Get current from cache
 1276:     } else {
 1277:         %current=split(/\_\_\_\;\_\_\_/,
 1278: 		       $updatedata{$ENV{'request.course.fn'}.'_'.$stype});
 1279:     }
 1280: # -------------------- Find discrepancies between the course row table and this
 1281: #
 1282:         my %f=&getformulas($safeeval);
 1283:         my $changed=0;
 1284: 
 1285:         my $maxrow=0;
 1286:         my %existing=();
 1287: 
 1288: # ----------------------------------------------------------- Now obsolete rows
 1289: 	map {
 1290: 	    if ($_=~/^A(\d+)/) {
 1291:                 $maxrow=($1>$maxrow)?$1:$maxrow;
 1292:                 my ($usy,$ufn)=split(/\_\_\&\&\&\_\_/,$f{$_});
 1293:                 $existing{$usy}=1;
 1294: 		unless ((defined($current{$usy})) || (!$1)) {
 1295: 		   $f{$_}='!!! Obsolete';
 1296:                    $changed=1;
 1297: 	        } elsif ($ufn) {
 1298: 		    $current{$usy}
 1299:                        =~s/assesscalc\?usymb\=/assesscalc\?ufn\=$ufn\&usymb\=/;
 1300:                 }
 1301:             }
 1302:         } keys %f;
 1303: 
 1304: # -------------------------------------------------------- New and unknown keys
 1305:      
 1306:         map {
 1307:             unless ($existing{$_}) {
 1308: 		$changed=1;
 1309:                 $maxrow++;
 1310:                 $f{'A'.$maxrow}=$_;
 1311:             }
 1312:         } keys %current;        
 1313:     
 1314:         if ($changed) { &setformulas($safeeval,%f); }
 1315: 
 1316:         &setmaxrow($safeeval,$maxrow);
 1317:         &setrowlabels($safeeval,%current);
 1318:  
 1319:         undef %current;
 1320:         undef %existing;
 1321: }
 1322: 
 1323: # ------------------------------------------------ Load data for one assessment
 1324: 
 1325: sub loadstudent {
 1326:     my $safeeval=shift;
 1327:     my %c=();
 1328:     my %f=&getformulas($safeeval);
 1329:     $cachedassess=&getuname($safeeval).':'.&getudom($safeeval);
 1330:     %cachedstores=();
 1331:     {
 1332:       my $reply=&Apache::lonnet::reply('dump:'.&getudom($safeeval).':'.
 1333:                                                &getuname($safeeval).':'.
 1334:                                                &getcid($safeeval),
 1335:                                                &getuhome($safeeval));
 1336:       unless ($reply=~/^error\:/) {
 1337:          map {
 1338:             my ($name,$value)=split(/\=/,$_);
 1339:             $cachedstores{&Apache::lonnet::unescape($name)}=
 1340: 	                  &Apache::lonnet::unescape($value);
 1341:          } split(/\&/,$reply);
 1342:       }
 1343:     }
 1344:     my @assessdata=();
 1345:     map {
 1346: 	if ($_=~/^A(\d+)/) {
 1347: 	   my $row=$1;
 1348:            unless (($f{$_}=~/^\!/) || ($row==0)) {
 1349: 	      my ($usy,$ufn)=split(/\_\_\&\&\&\_\_/,$f{$_});
 1350: 	      @assessdata=&exportsheet(&getuname($safeeval),
 1351:                                        &getudom($safeeval),
 1352:                                        'assesscalc',$usy,$ufn);
 1353:               my $index=0;
 1354:               map {
 1355:                   if ($assessdata[$index]) {
 1356: 		     my $col=$_;
 1357: 		     if ($assessdata[$index]=~/\D/) {
 1358:                          $c{$col.$row}="'".$assessdata[$index]."'";
 1359:  		     } else {
 1360: 		         $c{$col.$row}=$assessdata[$index];
 1361: 		     }
 1362:                      unless ($col eq 'A') { 
 1363: 			 $f{$col.$row}='import';
 1364:                      }
 1365: 		  }
 1366:                   $index++;
 1367:               } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
 1368:                  'N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
 1369: 	   }
 1370:         }
 1371:     } keys %f;
 1372:     $cachedassess='';
 1373:     undef %cachedstores;
 1374:     &setformulas($safeeval,%f);
 1375:     &setconstants($safeeval,%c);
 1376: }
 1377: 
 1378: # --------------------------------------------------- Load data for one student
 1379: 
 1380: sub loadcourse {
 1381:     my ($safeeval,$r)=@_;
 1382:     my %c=();
 1383:     my %f=&getformulas($safeeval);
 1384:     my $total=0;
 1385:     map {
 1386: 	if ($_=~/^A(\d+)/) {
 1387: 	    unless ($f{$_}=~/^\!/) { $total++; }
 1388:         }
 1389:     } keys %f;
 1390:     my $now=0;
 1391:     my $since=time;
 1392:     $r->print(<<ENDPOP);
 1393: <script>
 1394:     popwin=open('','popwin','width=400,height=100');
 1395:     popwin.document.writeln('<html><body bgcolor="#FFFFFF">'+
 1396:       '<h3>Spreadsheet Calculation Progress</h3>'+
 1397:       '<form name=popremain>'+
 1398:       '<input type=text size=35 name=remaining value=Starting></form>'+
 1399:       '</body></html>');
 1400:     popwin.document.close();
 1401: </script>
 1402: ENDPOP
 1403:     $r->rflush();
 1404:     map {
 1405: 	if ($_=~/^A(\d+)/) {
 1406: 	   my $row=$1;
 1407:            unless (($f{$_}=~/^\!/)  || ($row==0)) {
 1408: 	      my @studentdata=&exportsheet(split(/\:/,$f{$_}),
 1409:                                            'studentcalc');
 1410:               undef %userrdatas;
 1411:               $now++;
 1412:               $r->print('<script>popwin.document.popremain.remaining.value="'.
 1413:                   $now.'/'.$total.': '.int((time-$since)/$now*($total-$now)).
 1414:                         ' secs remaining";</script>');
 1415:               $r->rflush(); 
 1416: 
 1417:               my $index=0;
 1418:               map {
 1419:                   if ($studentdata[$index]) {
 1420: 		     my $col=$_;
 1421: 		     if ($studentdata[$index]=~/\D/) {
 1422:                          $c{$col.$row}="'".$studentdata[$index]."'";
 1423:  		     } else {
 1424: 		         $c{$col.$row}=$studentdata[$index];
 1425: 		     }
 1426:                      unless ($col eq 'A') { 
 1427: 			 $f{$col.$row}='import';
 1428:                      }
 1429: 		  }
 1430:                   $index++;
 1431:               } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
 1432:                  'N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
 1433: 	   }
 1434:         }
 1435:     } keys %f;
 1436:     &setformulas($safeeval,%f);
 1437:     &setconstants($safeeval,%c);
 1438:     $r->print('<script>popwin.close()</script>');
 1439:     $r->rflush(); 
 1440: }
 1441: 
 1442: # ------------------------------------------------ Load data for one assessment
 1443: 
 1444: sub loadassessment {
 1445:     my $safeeval=shift;
 1446: 
 1447:     my $uhome=&getuhome($safeeval);
 1448:     my $uname=&getuname($safeeval);
 1449:     my $udom=&getudom($safeeval);
 1450:     my $symb=&getusymb($safeeval);
 1451:     my $cid=&getcid($safeeval);
 1452:     my $cnum=&getcnum($safeeval);
 1453:     my $cdom=&getcdom($safeeval);
 1454:     my $chome=&getchome($safeeval);
 1455: 
 1456:     my $namespace;
 1457:     unless ($namespace=$cid) { return ''; }
 1458: 
 1459: # ----------------------------------------------------------- Get stored values
 1460: 
 1461:    my %returnhash=();
 1462: 
 1463:    if ($cachedassess eq $uname.':'.$udom) {
 1464: #
 1465: # get data out of the dumped stores
 1466: # 
 1467: 
 1468:        my $version=$cachedstores{'version:'.$symb};
 1469:        my $scope;
 1470:        for ($scope=1;$scope<=$version;$scope++) {
 1471:            map {
 1472:                $returnhash{$_}=$cachedstores{$scope.':'.$symb.':'.$_};
 1473:            } split(/\:/,$cachedstores{$scope.':keys:'.$symb}); 
 1474:        }
 1475: 
 1476:    } else {
 1477: #
 1478: # restore individual
 1479: #
 1480: 
 1481:     my $answer=&Apache::lonnet::reply(
 1482:        "restore:$udom:$uname:".
 1483:        &Apache::lonnet::escape($namespace).":".
 1484:        &Apache::lonnet::escape($symb),$uhome);
 1485:     map {
 1486: 	my ($name,$value)=split(/\=/,$_);
 1487:         $returnhash{&Apache::lonnet::unescape($name)}=
 1488:                     &Apache::lonnet::unescape($value);
 1489:     } split(/\&/,$answer);
 1490:     my $version;
 1491:     for ($version=1;$version<=$returnhash{'version'};$version++) {
 1492:        map {
 1493:           $returnhash{$_}=$returnhash{$version.':'.$_};
 1494:        } split(/\:/,$returnhash{$version.':keys'});
 1495:     }
 1496:    }
 1497: # ----------------------------- returnhash now has all stores for this resource
 1498: 
 1499: # ---------------------------- initialize coursedata and userdata for this user
 1500:     undef %courseopt;
 1501:     undef %useropt;
 1502: 
 1503:     my $userprefix=$uname.'_'.$udom.'_';
 1504: 
 1505:     unless ($uhome eq 'no_host') { 
 1506: # -------------------------------------------------------------- Get coursedata
 1507:       unless
 1508:         ((time-$courserdatas{$cid.'.last_cache'})<240) {
 1509:          my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
 1510:               ':resourcedata',$chome);
 1511:          if ($reply!~/^error\:/) {
 1512:             $courserdatas{$cid}=$reply;
 1513:             $courserdatas{$cid.'.last_cache'}=time;
 1514:          }
 1515:       }
 1516:       map {
 1517:          my ($name,$value)=split(/\=/,$_);
 1518:          $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
 1519:                     &Apache::lonnet::unescape($value);  
 1520:       } split(/\&/,$courserdatas{$cid});
 1521: # --------------------------------------------------- Get userdata (if present)
 1522:       unless
 1523:         ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
 1524:          my $reply=
 1525:        &Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
 1526:          if ($reply!~/^error\:/) {
 1527: 	     $userrdatas{$uname.'___'.$udom}=$reply;
 1528: 	     $userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
 1529:          }
 1530:       }
 1531:       map {
 1532:          my ($name,$value)=split(/\=/,$_);
 1533:          $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
 1534: 	          &Apache::lonnet::unescape($value);
 1535:       } split(/\&/,$userrdatas{$uname.'___'.$udom});
 1536:     }
 1537: # ----------------- now courseopt, useropt initialized for this user and course
 1538: # (used by parmval)
 1539: 
 1540: #
 1541: # Load keys for this assessment only
 1542: #
 1543:     my %thisassess=();
 1544:     my ($symap,$syid,$srcf)=split(/\_\_\_/,$symb);
 1545:     
 1546:     map {
 1547:         $thisassess{$_}=1;
 1548:     } split(/\,/,&Apache::lonnet::metadata($srcf,'keys'));
 1549: #
 1550: # Load parameters
 1551: #
 1552:    my %c=();
 1553: 
 1554:    if (tie(%parmhash,'GDBM_File',
 1555:            &getcfn($safeeval).'_parms.db',&GDBM_READER,0640)) {
 1556:     my %f=&getformulas($safeeval);
 1557:     map {
 1558: 	if ($_=~/^A/) {
 1559:             unless ($f{$_}=~/^\!/) {
 1560:   	       if ($f{$_}=~/^parameter/) {
 1561: 		if ($thisassess{$f{$_}}) {
 1562:                   my $val=&parmval($f{$_},$safeeval);
 1563:                   $c{$_}=$val;
 1564:                   $c{$f{$_}}=$val;
 1565: 	        }
 1566: 	       } else {
 1567: 		  my $key=$f{$_};
 1568:                   my $ckey=$key;
 1569:                   $key=~s/^stores\_/resource\./;
 1570:                   $key=~s/\_/\./;
 1571:  	          $c{$_}=$returnhash{$key};
 1572:                   $c{$ckey}=$returnhash{$key};
 1573: 	       }
 1574: 	   }
 1575:         }
 1576:     } keys %f;
 1577:     untie(%parmhash);
 1578:    }
 1579:    &setconstants($safeeval,%c);
 1580: }
 1581: 
 1582: # --------------------------------------------------------- Various form fields
 1583: 
 1584: sub textfield {
 1585:     my ($title,$name,$value)=@_;
 1586:     return "\n<p><b>$title:</b><br>".
 1587:            '<input type=text name="'.$name.'" size=80 value="'.$value.'">';
 1588: }
 1589: 
 1590: sub hiddenfield {
 1591:     my ($name,$value)=@_;
 1592:     return "\n".'<input type=hidden name="'.$name.'" value="'.$value.'">';
 1593: }
 1594: 
 1595: sub selectbox {
 1596:     my ($title,$name,$value,%options)=@_;
 1597:     my $selout="\n<p><b>$title:</b><br>".'<select name="'.$name.'">';
 1598:     map {
 1599:         $selout.='<option value="'.$_.'"';
 1600:         if ($_ eq $value) { $selout.=' selected'; }
 1601:         $selout.='>'.$options{$_}.'</option>';
 1602:     } sort keys %options;
 1603:     return $selout.'</select>';
 1604: }
 1605: 
 1606: # =============================================== Update information in a sheet
 1607: #
 1608: # Add new users or assessments, etc.
 1609: #
 1610: 
 1611: sub updatesheet {
 1612:     my $safeeval=shift;
 1613:     my $stype=&gettype($safeeval);
 1614:     if ($stype eq 'classcalc') {
 1615: 	return &updateclasssheet($safeeval);
 1616:     } else {
 1617:         return &updatestudentassesssheet($safeeval);
 1618:     }
 1619: }
 1620: 
 1621: # =================================================== Load the rows for a sheet
 1622: #
 1623: # Import the data for rows
 1624: #
 1625: 
 1626: sub loadrows {
 1627:     my ($safeeval,$r)=@_;
 1628:     my $stype=&gettype($safeeval);
 1629:     if ($stype eq 'classcalc') {
 1630: 	&loadcourse($safeeval,$r);
 1631:     } elsif ($stype eq 'studentcalc') {
 1632:         &loadstudent($safeeval);
 1633:     } else {
 1634:         &loadassessment($safeeval);
 1635:     }
 1636: }
 1637: 
 1638: # ======================================================= Forced recalculation?
 1639: 
 1640: sub checkthis {
 1641:     my ($keyname,$time)=@_;
 1642:     return ($time<$expiredates{$keyname});
 1643: }
 1644: sub forcedrecalc {
 1645:     my ($uname,$udom,$stype,$usymb)=@_;
 1646:     my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
 1647:     my $time=$oldsheets{$key.'.time'};
 1648:     if ($ENV{'form.forcerecalc'}) { return 1; }
 1649:     unless ($time) { return 1; }
 1650:     if ($stype eq 'assesscalc') {
 1651:         my $map=(split(/\_\_\_/,$usymb))[0];
 1652:         if (&checkthis('::assesscalc:',$time) ||
 1653:             &checkthis('::assesscalc:'.$map,$time) ||
 1654:             &checkthis('::assesscalc:'.$usymb,$time) ||
 1655:             &checkthis($uname.':'.$udom.':assesscalc:',$time) ||
 1656:             &checkthis($uname.':'.$udom.':assesscalc:'.$map,$time) ||
 1657:             &checkthis($uname.':'.$udom.':assesscalc:'.$usymb,$time)) {
 1658:             return 1;
 1659:         } 
 1660:     } else {
 1661:         if (&checkthis('::studentcalc:',$time) || 
 1662:             &checkthis($uname.':'.$udom.':studentcalc:',$time)) {
 1663: 	    return 1;
 1664:         }
 1665:     }
 1666:     return 0; 
 1667: }
 1668: 
 1669: # ============================================================== Export handler
 1670: #
 1671: # Non-interactive call from with program
 1672: #
 1673: 
 1674: sub exportsheet {
 1675:  my ($uname,$udom,$stype,$usymb,$fn)=@_;
 1676:  my @exportarr=();
 1677: #
 1678: # Check if cached
 1679: #
 1680: 
 1681:  my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
 1682:  my $found='';
 1683: 
 1684:  if ($oldsheets{$key}) {
 1685:      map {
 1686:          my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
 1687:          if ($name eq $fn) {
 1688: 	     $found=$value;
 1689:          }
 1690:      } split(/\_\_\_\&\_\_\_/,$oldsheets{$key});
 1691:  }
 1692: 
 1693:  unless ($found) {
 1694:      &cachedssheets($uname,$udom,&Apache::lonnet::homeserver($uname,$udom));
 1695:      if ($oldsheets{$key}) {
 1696:         map {
 1697:             my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
 1698:             if ($name eq $fn) {
 1699: 	        $found=$value;
 1700:             }
 1701:         } split(/\_\_\_\&\_\_\_/,$oldsheets{$key});
 1702:      }
 1703:  }
 1704: #
 1705: # Check if still valid
 1706: #
 1707:  if ($found) {
 1708:      if (&forcedrecalc($uname,$udom,$stype,$usymb)) {
 1709: 	 $found='';
 1710:      }
 1711:  }
 1712:  
 1713:  if ($found) {
 1714: #
 1715: # Return what was cached
 1716: #
 1717:      @exportarr=split(/\_\_\_\;\_\_\_/,$found);
 1718: 
 1719:  } else {
 1720: #
 1721: # Not cached
 1722: #        
 1723: 
 1724:     my $thissheet=&makenewsheet($uname,$udom,$stype,$usymb);
 1725:     &readsheet($thissheet,$fn);
 1726:     &updatesheet($thissheet);
 1727:     &loadrows($thissheet);
 1728:     &calcsheet($thissheet); 
 1729:     @exportarr=&exportdata($thissheet);
 1730: #
 1731: # Store now
 1732: #
 1733:     my $cid=$ENV{'request.course.id'}; 
 1734:     my $current='';
 1735:     if ($stype eq 'studentcalc') {
 1736:        $current=&Apache::lonnet::reply('get:'.
 1737:                                      $ENV{'course.'.$cid.'.domain'}.':'.
 1738:                                      $ENV{'course.'.$cid.'.num'}.
 1739: 				     ':nohist_calculatedsheets:'.
 1740:                                      &Apache::lonnet::escape($key),
 1741:                                      $ENV{'course.'.$cid.'.home'});
 1742:     } else {
 1743:        $current=&Apache::lonnet::reply('get:'.
 1744:                                      &getudom($thissheet).':'.
 1745:                                      &getuname($thissheet).
 1746: 				     ':nohist_calculatedsheets_'.
 1747:                                      $ENV{'request.course.id'}.':'.
 1748:                                      &Apache::lonnet::escape($key),
 1749:                                      &getuhome($thissheet));
 1750: 
 1751:     }
 1752:     my %currentlystored=();
 1753:     unless ($current=~/^error\:/) {
 1754:        map {
 1755:            my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
 1756:            $currentlystored{$name}=$value;
 1757:        } split(/\_\_\_\&\_\_\_/,&Apache::lonnet::unescape($current));
 1758:     }
 1759:     $currentlystored{$fn}=join('___;___',@exportarr);
 1760: 
 1761:     my $newstore='';
 1762:     map {
 1763:         if ($newstore) { $newstore.='___&___'; }
 1764:         $newstore.=$_.'___=___'.$currentlystored{$_};
 1765:     } keys %currentlystored;
 1766:     my $now=time;
 1767:     if ($stype eq 'studentcalc') {
 1768:        &Apache::lonnet::reply('put:'.
 1769:                          $ENV{'course.'.$cid.'.domain'}.':'.
 1770:                          $ENV{'course.'.$cid.'.num'}.
 1771: 			 ':nohist_calculatedsheets:'.
 1772:                          &Apache::lonnet::escape($key).'='.
 1773: 			 &Apache::lonnet::escape($newstore).'&'.
 1774:                          &Apache::lonnet::escape($key).'.time='.$now,
 1775:                          $ENV{'course.'.$cid.'.home'});
 1776:    } else {
 1777:        &Apache::lonnet::reply('put:'.
 1778:                          &getudom($thissheet).':'.
 1779:                          &getuname($thissheet).
 1780: 			 ':nohist_calculatedsheets_'.
 1781:                          $ENV{'request.course.id'}.':'.
 1782:                          &Apache::lonnet::escape($key).'='.
 1783: 			 &Apache::lonnet::escape($newstore).'&'.
 1784:                          &Apache::lonnet::escape($key).'.time='.$now,
 1785:                          &getuhome($thissheet));
 1786:    }
 1787:  }
 1788:  return @exportarr;
 1789: }
 1790: # ============================================================ Expiration Dates
 1791: #
 1792: # Load previously cached student spreadsheets for this course
 1793: #
 1794: 
 1795: sub expirationdates {
 1796:     undef %expiredates;
 1797:     my $cid=$ENV{'request.course.id'};
 1798:     my $reply=&Apache::lonnet::reply('dump:'.
 1799: 				     $ENV{'course.'.$cid.'.domain'}.':'.
 1800:                                      $ENV{'course.'.$cid.'.num'}.
 1801: 				     ':nohist_expirationdates',
 1802:                                      $ENV{'course.'.$cid.'.home'});
 1803:     unless ($reply=~/^error\:/) {
 1804: 	map {
 1805:             my ($name,$value)=split(/\=/,$_);
 1806:             $expiredates{&Apache::lonnet::unescape($name)}
 1807:                         =&Apache::lonnet::unescape($value);
 1808:         } split(/\&/,$reply);
 1809:     }
 1810: }
 1811: 
 1812: # ===================================================== Calculated sheets cache
 1813: #
 1814: # Load previously cached student spreadsheets for this course
 1815: #
 1816: 
 1817: sub cachedcsheets {
 1818:     my $cid=$ENV{'request.course.id'};
 1819:     my $reply=&Apache::lonnet::reply('dump:'.
 1820: 				     $ENV{'course.'.$cid.'.domain'}.':'.
 1821:                                      $ENV{'course.'.$cid.'.num'}.
 1822: 				     ':nohist_calculatedsheets',
 1823:                                      $ENV{'course.'.$cid.'.home'});
 1824:     unless ($reply=~/^error\:/) {
 1825: 	map {
 1826:             my ($name,$value)=split(/\=/,$_);
 1827:             $oldsheets{&Apache::lonnet::unescape($name)}
 1828:                       =&Apache::lonnet::unescape($value);
 1829:         } split(/\&/,$reply);
 1830:     }
 1831: }
 1832: 
 1833: # ===================================================== Calculated sheets cache
 1834: #
 1835: # Load previously cached assessment spreadsheets for this student
 1836: #
 1837: 
 1838: sub cachedssheets {
 1839:   my ($sname,$sdom,$shome)=@_;
 1840:   unless (($loadedcaches{$sname.'_'.$sdom}) || ($shome eq 'no_host')) {
 1841:     my $cid=$ENV{'request.course.id'};
 1842:     my $reply=&Apache::lonnet::reply('dump:'.$sdom.':'.$sname.
 1843: 			             ':nohist_calculatedsheets_'.
 1844:                                       $ENV{'request.course.id'},
 1845:                                      $shome);
 1846:     unless ($reply=~/^error\:/) {
 1847: 	map {
 1848:             my ($name,$value)=split(/\=/,$_);
 1849:             $oldsheets{&Apache::lonnet::unescape($name)}
 1850:                       =&Apache::lonnet::unescape($value);
 1851:         } split(/\&/,$reply);
 1852:     }
 1853:     $loadedcaches{$sname.'_'.$sdom}=1;
 1854:   }
 1855: }
 1856: 
 1857: # ===================================================== Calculated sheets cache
 1858: #
 1859: # Load previously cached assessment spreadsheets for this student
 1860: #
 1861: 
 1862: # ================================================================ Main handler
 1863: #
 1864: # Interactive call to screen
 1865: #
 1866: #
 1867: 
 1868: 
 1869: sub handler {
 1870:     my $r=shift;
 1871: 
 1872:     if ($r->header_only) {
 1873:       $r->content_type('text/html');
 1874:       $r->send_http_header;
 1875:       return OK;
 1876:     }
 1877: 
 1878: # ---------------------------------------------------- Global directory configs
 1879: 
 1880: $includedir=$r->dir_config('lonIncludes');
 1881: $tmpdir=$r->dir_config('lonDaemons').'/tmp/';
 1882: 
 1883: # ----------------------------------------------------- Needs to be in a course
 1884: 
 1885:   if ($ENV{'request.course.fn'}) { 
 1886: 
 1887: # --------------------------- Get query string for limited number of parameters
 1888: 
 1889:     map {
 1890:        my ($name, $value) = split(/=/,$_);
 1891:        $value =~ tr/+/ /;
 1892:        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 1893:        if (($name eq 'uname') || ($name eq 'udom') || 
 1894:            ($name eq 'usymb') || ($name eq 'ufn')) {
 1895:            unless ($ENV{'form.'.$name}) {
 1896:               $ENV{'form.'.$name}=$value;
 1897: 	   }
 1898:        }
 1899:     } (split(/&/,$ENV{'QUERY_STRING'}));
 1900: 
 1901: # -------------------------------------- Interactive loading of specific sheet?
 1902:     if (($ENV{'form.load'}) && ($ENV{'form.loadthissheet'} ne 'Default')) {
 1903: 	$ENV{'form.ufn'}=$ENV{'form.loadthissheet'};
 1904:     }
 1905: # ------------------------------------------- Nothing there? Must be login user
 1906: 
 1907:     my $aname;
 1908:     my $adom;
 1909: 
 1910:     unless ($ENV{'form.uname'}) {
 1911: 	$aname=$ENV{'user.name'};
 1912:         $adom=$ENV{'user.domain'};
 1913:     } else {
 1914:         $aname=$ENV{'form.uname'};
 1915:         $adom=$ENV{'form.udom'};
 1916:     }
 1917: 
 1918: # ------------------------------------------------------------------- Open page
 1919: 
 1920:     $r->content_type('text/html');
 1921:     $r->header_out('Cache-control','no-cache');
 1922:     $r->header_out('Pragma','no-cache');
 1923:     $r->send_http_header;
 1924: 
 1925: # --------------------------------------------------------------- Screen output
 1926: 
 1927:     $r->print('<html><head><title>LON-CAPA Spreadsheet</title>');
 1928:     $r->print(<<ENDSCRIPT);
 1929: <script language="JavaScript">
 1930: 
 1931:     function celledit(cn,cf) {
 1932:         var cnf=prompt(cn,cf);
 1933: 	if (cnf!=null) {
 1934: 	    document.sheet.unewfield.value=cn;
 1935:             document.sheet.unewformula.value=cnf;
 1936:             document.sheet.submit();
 1937:         }
 1938:     }
 1939: 
 1940:     function changesheet(cn) {
 1941: 	document.sheet.unewfield.value=cn;
 1942:         document.sheet.unewformula.value='changesheet';
 1943:         document.sheet.submit();
 1944:     }
 1945: 
 1946: </script>
 1947: ENDSCRIPT
 1948:     $r->print('</head><body bgcolor="#FFFFFF">'.
 1949:        '<img align=right src=/adm/lonIcons/lonlogos.gif>'.
 1950:        '<h1>LON-CAPA Spreadsheet</h1>'.
 1951:        '<form action="'.$r->uri.'" name=sheet method=post>'.
 1952:        &hiddenfield('uname',$ENV{'form.uname'}).
 1953:        &hiddenfield('udom',$ENV{'form.udom'}).
 1954:        &hiddenfield('usymb',$ENV{'form.usymb'}).
 1955:        &hiddenfield('unewfield','').
 1956:        &hiddenfield('unewformula',''));
 1957: 
 1958: # ---------------------- Make sure that this gets out, even if user hits "stop"
 1959: 
 1960:     $r->rflush();
 1961: 
 1962: # ---------------------------------------------------------------- Full recalc?
 1963: 
 1964: 
 1965:     if ($ENV{'form.forcerecalc'}) {
 1966: 	$r->print('<h4>Completely Recalculating Sheet ...</h4>');
 1967:         undef %spreadsheets;
 1968:         undef %courserdatas;
 1969:         undef %userrdatas;
 1970:         undef %defaultsheets;
 1971:         undef %updatedata;
 1972:    }
 1973:  
 1974: # ---------------------------------------- Read new sheet or modified worksheet
 1975: 
 1976:     $r->uri=~/\/(\w+)$/;
 1977: 
 1978:     my $asheet=&makenewsheet($aname,$adom,$1,$ENV{'form.usymb'});
 1979: 
 1980: # ------------------------ If a new formula had been entered, go from work copy
 1981: 
 1982:     if ($ENV{'form.unewfield'}) {
 1983:         $r->print('<h2>Modified Workcopy</h2>');
 1984:         $ENV{'form.unewformula'}=~s/\'/\"/g;
 1985:         $r->print('<p>New formula: '.$ENV{'form.unewfield'}.'='.
 1986:                   $ENV{'form.unewformula'}.'<p>');
 1987:         &setfilename($asheet,$ENV{'form.ufn'});
 1988: 	&tmpread($asheet,
 1989:                  $ENV{'form.unewfield'},$ENV{'form.unewformula'});
 1990: 
 1991:      } elsif ($ENV{'form.saveas'}) {
 1992:         &setfilename($asheet,$ENV{'form.ufn'});
 1993: 	&tmpread($asheet);
 1994:     } else {
 1995:         &readsheet($asheet,$ENV{'form.ufn'});
 1996:     }
 1997: 
 1998: # -------------------------------------------------- Print out user information
 1999: 
 2000:     unless (&gettype($asheet) eq 'classcalc') {
 2001:         $r->print('<p><b>User:</b> '.&getuname($asheet).
 2002:                   '<br><b>Domain:</b> '.&getudom($asheet));
 2003:         if (&getcsec($asheet) eq '-1') {
 2004:            $r->print('<h3><font color=red>'.
 2005:                      'Not a student in this course</font></h3>');
 2006:         } else {
 2007:            $r->print('<br><b>Section/Group:</b> '.&getcsec($asheet));
 2008:         }
 2009:     }
 2010: 
 2011: # ---------------------------------------------------------------- Course title
 2012: 
 2013:     $r->print('<h1>'.
 2014:             $ENV{'course.'.$ENV{'request.course.id'}.'.description'}.
 2015:              '</h1><h3>'.localtime().'</h3>');
 2016: 
 2017: # ---------------------------------------------------- See if user can see this
 2018: 
 2019:     if ((&gettype($asheet) eq 'classcalc') || 
 2020:         (&getuname($asheet) ne $ENV{'user.name'}) ||
 2021:         (&getudom($asheet) ne $ENV{'user.domain'})) {
 2022:         unless (&Apache::lonnet::allowed('vgr',&getcid($asheet))) {
 2023: 	    $r->print(
 2024:            '<h1>Access Permission Denied</h1></form></body></html>');
 2025:             return OK;
 2026:         }
 2027:     }
 2028: 
 2029: # ---------------------------------------------------------- Additional options
 2030: 
 2031:     $r->print(
 2032:  '<input type=submit name=forcerecalc value="Completely Recalculate Sheet"><p>'
 2033: 		 );
 2034:     if (&gettype($asheet) eq 'assesscalc') {
 2035:        $r->print ('<p><font size=+2><a href="/adm/studentcalc?uname='.
 2036:                                                &getuname($asheet).
 2037:                                                '&udom='.&getudom($asheet).
 2038:                   '">Level up: Student Sheet</a></font><p>');
 2039:     }
 2040:     
 2041:     if ((&gettype($asheet) eq 'studentcalc') && 
 2042:         (&Apache::lonnet::allowed('vgr',&getcid($asheet)))) {
 2043:        $r->print (
 2044:                    '<p><font size=+2><a href="/adm/classcalc">'.
 2045:                    'Level up: Course Sheet</a></font><p>');
 2046:     }
 2047:     
 2048: 
 2049: # ----------------------------------------------------------------- Save dialog
 2050: 
 2051: 
 2052:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
 2053:         my $fname=$ENV{'form.ufn'};
 2054:         $fname=~s/\_[^\_]+$//;
 2055:         if ($fname eq 'default') { $fname='course_default'; }
 2056:         $r->print('<input type=submit name=saveas value="Save as ...">'.
 2057:               '<input type=text size=20 name=newfn value="'.$fname.
 2058:               '"> (make default: <input type=checkbox name="makedefufn">)<p>');
 2059:     }
 2060: 
 2061:     $r->print(&hiddenfield('ufn',&getfilename($asheet)));
 2062: 
 2063: # ----------------------------------------------------------------- Load dialog
 2064:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
 2065: 	$r->print('<p><input type=submit name=load value="Load ...">'.
 2066:                   '<select name="loadthissheet">'.
 2067:                   '<option name="default">Default</option>');
 2068:         map {
 2069: 	    $r->print('<option name="'.$_.'"');
 2070:             if ($ENV{'form.ufn'} eq $_) {
 2071:                $r->print(' selected');
 2072:             }
 2073:             $r->print('>'.$_.'</option>');
 2074:         } &othersheets($asheet,&gettype($asheet));
 2075:         $r->print('</select><p>');
 2076:         if (&gettype($asheet) eq 'studentcalc') {
 2077: 	    &setothersheets($asheet,&othersheets($asheet,'assesscalc'));
 2078:         }
 2079:     }
 2080: 
 2081: # --------------------------------------------------------------- Cached sheets
 2082: 
 2083:     &expirationdates();
 2084: 
 2085:     undef %oldsheets;
 2086:     undef %loadedcaches;
 2087: 
 2088:     if (&gettype($asheet) eq 'classcalc') {
 2089:         $r->print("Loading previously calculated student sheets ...<br>\n");
 2090:         $r->rflush();
 2091:         &cachedcsheets();
 2092:     } elsif (&gettype($asheet) eq 'studentcalc') {
 2093:         $r->print("Loading previously calculated assessment sheets ...<br>\n");
 2094:         $r->rflush();
 2095:         &cachedssheets(&getuname($asheet),&getudom($asheet),
 2096:                        &getuhome($asheet));
 2097:     }
 2098: 
 2099: # ----------------------------------------------------- Update sheet, load rows
 2100: 
 2101:     $r->print("Loaded sheet(s), updating rows ...<br>\n");
 2102:     $r->rflush();
 2103: 
 2104:     &updatesheet($asheet);
 2105: 
 2106:     $r->print("Updated rows, loading row data ...<br>\n");
 2107:     $r->rflush();
 2108: 
 2109:     &loadrows($asheet,$r);
 2110: 
 2111:     $r->print("Loaded row data, calculating sheet ...<br>\n");
 2112:     $r->rflush();
 2113: 
 2114:     my $calcoutput=&calcsheet($asheet);
 2115:     $r->print('<h3><font color=red>'.$calcoutput.'</h3></font>');
 2116: 
 2117: # ---------------------------------------------------- See if something to save
 2118: 
 2119:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
 2120:         my $fname='';
 2121: 	if ($ENV{'form.saveas'} && ($fname=$ENV{'form.newfn'})) {
 2122:             $fname=~s/\W/\_/g;
 2123:             if ($fname eq 'default') { $fname='course_default'; }
 2124:             $fname.='_'.&gettype($asheet);
 2125:             &setfilename($asheet,$fname);
 2126:             $ENV{'form.ufn'}=$fname;
 2127: 	    $r->print('<p>Saving spreadsheet: '.
 2128:                          &writesheet($asheet,$ENV{'form.makedefufn'}).'<p>');
 2129: 	}
 2130:     }
 2131: 
 2132: # ------------------------------------------------ Write the modified worksheet
 2133: 
 2134:    $r->print('<b>Current sheet:</b> '.&getfilename($asheet).'<p>');
 2135: 
 2136:    &tmpwrite($asheet);
 2137: 
 2138:     if (&gettype($asheet) eq 'studentcalc') {
 2139: 	$r->print('<br>Show rows with empty A column: ');
 2140:     } else {
 2141:         $r->print('<br>Show empty rows: ');
 2142:     } 
 2143:     $r->print('<input type=checkbox name=showall onClick="submit()"');
 2144:     if ($ENV{'form.showall'}) { $r->print(' checked'); }
 2145:     $r->print('>');
 2146: 
 2147: # ------------------------------------------------------------- Print out sheet
 2148: 
 2149:     &outsheet($r,$asheet);
 2150:     $r->print('</form></body></html>');
 2151: 
 2152: # ------------------------------------------------------------------------ Done
 2153:   } else {
 2154: # ----------------------------- Not in a course, or not allowed to modify parms
 2155:       $ENV{'user.error.msg'}=
 2156:         $r->uri.":opa:0:0:Cannot modify spreadsheet";
 2157:       return HTTP_NOT_ACCEPTABLE; 
 2158:   }
 2159:     return OK;
 2160: 
 2161: }
 2162: 
 2163: 1;
 2164: __END__

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