File:  [LON-CAPA] / loncom / interface / Attic / lonspreadsheet.pm
Revision 1.60: download - view: text, annotated - select for diffs
Tue Sep 11 00:05:13 2001 UTC (22 years, 10 months ago) by www
Branches: MAIN
CVS tags: HEAD
Not load non-existing parameters.

    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 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:     unless ($n eq '-') {
  674:        $defaultbg=((($n-1)/5)==int(($n-1)/5))?'#E0E0':'#FFFF';
  675:     } else {
  676:        $defaultbg='#E0FF';
  677:     }
  678:     if ((($n-1)/25)==int(($n-1)/25)) {
  679:         my $what='Student';
  680:         if (&gettype($safeeval) eq 'assesscalc') {
  681: 	    $what='Item';
  682: 	} elsif (&gettype($safeeval) eq 'studentcalc') {
  683:             $what='Assessment';
  684:         }
  685: 	$rowdata.="</table>\n<br><table border=2>".
  686:         '<tr><td>&nbsp;<td>'.$what.'</td>';
  687:         map {
  688:            $rowdata.='<td>'.$_.'</td>';
  689:         } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  690:            'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  691:            'a','b','c','d','e','f','g','h','i','j','k','l','m',
  692:            'n','o','p','q','r','s','t','u','v','w','x','y','z');
  693:         $rowdata.='</tr>';
  694:     }
  695:     $rowdata.="\n<tr><td><b><font size=+1>$n</font></b></td>";
  696:     my $showf=0;
  697:     my $proc;
  698:     my $maxred;
  699:     if (&gettype($safeeval) eq 'studentcalc') {
  700:         $proc='&outrowassess';
  701:         $maxred=26;
  702:     } else {
  703:         $proc='&outrow';
  704:     }
  705:     if (&gettype($safeeval) eq 'assesscalc') {
  706:         $maxred=1;
  707:     } else {
  708:         $maxred=26;
  709:     }
  710:     if ($n eq '-') { $proc='&templaterow'; $n=-1; }
  711:     map {
  712:        my $bgcolor=$defaultbg.((($showf-1)/5==int(($showf-1)/5))?'99':'DD');
  713:        my ($fm,$vl)=split(/\_\_\_eq\_\_\_/,$_);
  714:        if ($showf==0) { $vl=$_; }
  715:        if ($showf<=$maxred) { $bgcolor='#FFDDDD'; }
  716:        if (($n==0) && ($showf<=26)) { $bgcolor='#CCCCFF'; } 
  717:        if (($showf>$maxred) || ((!$n) && ($showf>0))) {
  718: 	   if ($vl eq '') {
  719: 	       $vl='<font size=+2 color='.$bgcolor.'>&#35;</font>';
  720:            }
  721:            $rowdata.=
  722:        '<td bgcolor='.$bgcolor.'><a href="javascript:celledit('.$fm.');">'.$vl.
  723: 	       '</a></td>';
  724:        } else {
  725:            $rowdata.='<td bgcolor='.$bgcolor.'>&nbsp;'.$vl.'&nbsp;</td>';
  726:        }
  727:        $showf++;
  728:     } $safeeval->reval($proc.'('.$n.')');
  729:     return $rowdata.'</tr>';
  730: }
  731: 
  732: # ------------------------------------------------------------- Print out sheet
  733: 
  734: sub outsheet {
  735:     my ($r,$safeeval)=@_;
  736:     my $maxred;
  737:     my $realm;
  738:     if (&gettype($safeeval) eq 'assesscalc') {
  739:         $maxred=1;
  740:         $realm='Assessment';
  741:     } elsif (&gettype($safeeval) eq 'studentcalc') {
  742:         $maxred=26;
  743:         $realm='User';
  744:     } else {
  745:         $maxred=26;
  746:         $realm='Course';
  747:     }
  748:     my $maxyellow=52-$maxred;
  749:     my $tabledata=
  750:         '<table border=2><tr><th colspan=2 rowspan=2><font size=+2>'.
  751:                   $realm.'</font></th>'.
  752:                   '<td bgcolor=#FFDDDD colspan='.$maxred.
  753:                   '><b><font size=+1>Import</font></b></td>'.
  754:                   '<td colspan='.$maxyellow.
  755: 		  '><b><font size=+1>Calculations</font></b></td></tr><tr>';
  756:     my $showf=0;
  757:     map {
  758:         $showf++;
  759:         if ($showf<=$maxred) { 
  760:            $tabledata.='<td bgcolor="#FFDDDD">'; 
  761:         } else {
  762:            $tabledata.='<td>';
  763:         }
  764:         $tabledata.="<b><font size=+1>$_</font></b></td>";
  765:     } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
  766:        'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
  767:        'a','b','c','d','e','f','g','h','i','j','k','l','m',
  768:        'n','o','p','q','r','s','t','u','v','w','x','y','z');
  769:     $tabledata.='</tr>';
  770:     my $row;
  771:     my $maxrow=&getmaxrow($safeeval);
  772:     $tabledata.=&rown($safeeval,'-');
  773:     $r->print($tabledata);
  774:     for ($row=0;$row<=$maxrow;$row++) {
  775:         $r->print(&rown($safeeval,$row));
  776:     }
  777:     $r->print('</table>');
  778: }
  779: 
  780: #
  781: # ----------------------------------------------- Read list of available sheets
  782: # 
  783: 
  784: sub othersheets {
  785:     my ($safeeval,$stype)=@_;
  786: 
  787:     my $cnum=&getcnum($safeeval);
  788:     my $cdom=&getcdom($safeeval);
  789:     my $chome=&getchome($safeeval);
  790: 
  791:     my @alternatives=();
  792:     my $result=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.':'.
  793:                                       $stype.'_spreadsheets',$chome);
  794:     if ($result!~/^error\:/) {
  795: 	map {
  796:             $alternatives[$#alternatives+1]=
  797:             &Apache::lonnet::unescape((split(/\=/,$_))[0]);
  798:         } split(/\&/,$result);
  799:     } 
  800:     return @alternatives; 
  801: }
  802: 
  803: #
  804: # -------------------------------------- Read spreadsheet formulas for a course
  805: #
  806: 
  807: sub readsheet {
  808:   my ($safeeval,$fn)=@_;
  809:   my $stype=&gettype($safeeval);
  810:   my $cnum=&getcnum($safeeval);
  811:   my $cdom=&getcdom($safeeval);
  812:   my $chome=&getchome($safeeval);
  813: 
  814: # --------- There is no filename. Look for defaults in course and global, cache
  815: 
  816:   unless($fn) {
  817:       unless ($fn=$defaultsheets{$cnum.'_'.$cdom.'_'.$stype}) {
  818:          $fn=&Apache::lonnet::reply('get:'.$cdom.':'.$cnum.
  819:                                     ':environment:spreadsheet_default_'.$stype,
  820:                                     $chome);
  821:          unless (($fn) && ($fn!~/^error\:/)) {
  822: 	     $fn='default_'.$stype;
  823:          }
  824:          $defaultsheets{$cnum.'_'.$cdom.'_'.$stype}=$fn; 
  825:       }
  826:   }
  827: 
  828: # ---------------------------------------------------------- fn now has a value
  829: 
  830:   &setfilename($safeeval,$fn);
  831: 
  832: # ------------------------------------------------------ see if sheet is cached
  833:   my $fstring='';
  834:   if ($fstring=$spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}) {
  835:       &setformulas($safeeval,split(/\_\_\_\;\_\_\_/,$fstring));
  836:   } else {
  837: 
  838: # ---------------------------------------------------- Not cached, need to read
  839: 
  840:      my %f=();
  841: 
  842:      if ($fn=~/^default\_/) {
  843: 	my $sheetxml='';
  844:        {
  845:          my $fh;
  846:          if ($fh=Apache::File->new($includedir.
  847:                          '/default.'.&gettype($safeeval))) {
  848:                $sheetxml=join('',<$fh>);
  849:           }
  850:        }
  851:         my $parser=HTML::TokeParser->new(\$sheetxml);
  852:         my $token;
  853:         while ($token=$parser->get_token) {
  854:           if ($token->[0] eq 'S') {
  855:  	     if ($token->[1] eq 'field') {
  856:  		 $f{$token->[2]->{'col'}.$token->[2]->{'row'}}=
  857:  		     $parser->get_text('/field');
  858:  	     }
  859:              if ($token->[1] eq 'template') {
  860:                  $f{'template_'.$token->[2]->{'col'}}=
  861:                      $parser->get_text('/template');
  862:              }
  863:           }
  864:         }
  865:       } else {
  866:           my $sheet='';
  867:           my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.':'.$fn,
  868:                                          $chome);
  869:           unless ($reply=~/^error\:/) {
  870:              $sheet=$reply;
  871: 	  }
  872:           map {
  873:              my ($name,$value)=split(/\=/,$_);
  874:              $f{&Apache::lonnet::unescape($name)}=
  875: 	        &Apache::lonnet::unescape($value);
  876:           } split(/\&/,$sheet);
  877:        }
  878: # --------------------------------------------------------------- Cache and set
  879:        $spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}=join('___;___',%f);  
  880:        &setformulas($safeeval,%f);
  881:     }
  882: }
  883: 
  884: # -------------------------------------------------------- Make new spreadsheet
  885: 
  886: sub makenewsheet {
  887:     my ($uname,$udom,$stype,$usymb)=@_;
  888:     my $safeeval=initsheet($stype);
  889:     $safeeval->reval(
  890:        '$uname="'.$uname.
  891:       '";$udom="'.$udom.
  892:       '";$uhome="'.&Apache::lonnet::homeserver($uname,$udom).
  893:       '";$sheettype="'.$stype.
  894:       '";$usymb="'.$usymb.
  895:       '";$csec="'.&Apache::lonnet::usection($udom,$uname,
  896:                                             $ENV{'request.course.id'}).
  897:       '";$cid="'.$ENV{'request.course.id'}.
  898:       '";$cfn="'.$ENV{'request.course.fn'}.
  899:       '";$cnum="'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.
  900:       '";$cdom="'.$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.
  901:       '";$chome="'.$ENV{'course.'.$ENV{'request.course.id'}.'.home'}.'";');
  902:     return $safeeval;
  903: }
  904: 
  905: # ------------------------------------------------------------ Save spreadsheet
  906: 
  907: sub writesheet {
  908:   my ($safeeval,$makedef)=@_;
  909:   my $cid=&getcid($safeeval);
  910:   if (&Apache::lonnet::allowed('opa',$cid)) {
  911:     my %f=&getformulas($safeeval);
  912:     my $stype=&gettype($safeeval);
  913:     my $cnum=&getcnum($safeeval);
  914:     my $cdom=&getcdom($safeeval);
  915:     my $chome=&getchome($safeeval);
  916:     my $fn=&getfilename($safeeval);
  917: 
  918: # ------------------------------------------------------------- Cache new sheet
  919:     $spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}=join('___;___',%f);    
  920: # ----------------------------------------------------------------- Write sheet
  921:     my $sheetdata='';
  922:     map {
  923:      unless ($f{$_} eq 'import') {
  924:        $sheetdata.=&Apache::lonnet::escape($_).'='.
  925: 	   &Apache::lonnet::escape($f{$_}).'&';
  926:      }
  927:     } keys %f;
  928:     $sheetdata=~s/\&$//;
  929:     my $reply=&Apache::lonnet::reply('put:'.$cdom.':'.$cnum.':'.$fn.':'.
  930:               $sheetdata,$chome);
  931:     if ($reply eq 'ok') {
  932:           $reply=&Apache::lonnet::reply('put:'.$cdom.':'.$cnum.':'.
  933:               $stype.'_spreadsheets:'.
  934:               &Apache::lonnet::escape($fn).'='.$ENV{'user.name'}.'@'.
  935:                                                $ENV{'user.domain'},
  936:               $chome);
  937:           if ($reply eq 'ok') {
  938:               if ($makedef) { 
  939:                 return &Apache::lonnet::reply('put:'.$cdom.':'.$cnum.
  940:                                 ':environment:spreadsheet_default_'.$stype.'='.
  941:                                 &Apache::lonnet::escape($fn),
  942:                                 $chome);
  943: 	      } else {
  944: 		  return $reply;
  945:     	      }
  946: 	   } else {
  947: 	       return $reply;
  948:            }
  949:       } else {
  950: 	  return $reply;
  951:       }
  952:   }
  953:   return 'unauthorized';
  954: }
  955: 
  956: # ----------------------------------------------- Make a temp copy of the sheet
  957: # "Modified workcopy" - interactive only
  958: #
  959: 
  960: sub tmpwrite {
  961:     my $safeeval=shift;
  962:     my $fn=$ENV{'user.name'}.'_'.
  963:            $ENV{'user.domain'}.'_spreadsheet_'.&getusymb($safeeval).'_'.
  964:            &getfilename($safeeval);
  965:     $fn=~s/\W/\_/g;
  966:     $fn=$tmpdir.$fn.'.tmp';
  967:     my $fh;
  968:     if ($fh=Apache::File->new('>'.$fn)) {
  969: 	print $fh join("\n",&getformulas($safeeval));
  970:     }
  971: }
  972: 
  973: # ---------------------------------------------------------- Read the temp copy
  974: 
  975: sub tmpread {
  976:     my ($safeeval,$nfield,$nform)=@_;
  977:     my $fn=$ENV{'user.name'}.'_'.
  978:            $ENV{'user.domain'}.'_spreadsheet_'.&getusymb($safeeval).'_'.
  979:            &getfilename($safeeval);
  980:     $fn=~s/\W/\_/g;
  981:     $fn=$tmpdir.$fn.'.tmp';
  982:     my $fh;
  983:     my %fo=();
  984:     if ($fh=Apache::File->new($fn)) {
  985:         my $name;
  986:         while ($name=<$fh>) {
  987: 	    chomp($name);
  988:             my $value=<$fh>;
  989:             chomp($value);
  990:             $fo{$name}=$value;
  991:         }
  992:     }
  993:     if ($nform eq 'changesheet') {
  994:         $fo{'A'.$nfield}=(split(/\_\_\&\&\&\_\_/,$fo{'A'.$nfield}))[0];
  995:         unless ($ENV{'form.sel_'.$nfield} eq 'Default') {
  996: 	    $fo{'A'.$nfield}.='__&&&__'.$ENV{'form.sel_'.$nfield};
  997:         }
  998:     } else {
  999:        if ($nfield) { $fo{$nfield}=$nform; }
 1000:     }
 1001:     &setformulas($safeeval,%fo);
 1002: }
 1003: 
 1004: # ================================================================== Parameters
 1005: # -------------------------------------------- Figure out a cascading parameter
 1006: #
 1007: # For this function to work
 1008: #
 1009: # * parmhash needs to be tied
 1010: # * courseopt and useropt need to be initialized for this user and course
 1011: #
 1012: 
 1013: sub parmval {
 1014:     my ($what,$safeeval)=@_;
 1015:     my $cid=&getcid($safeeval);
 1016:     my $csec=&getcsec($safeeval);
 1017:     my $uname=&getuname($safeeval);
 1018:     my $udom=&getudom($safeeval);
 1019:     my $symb=&getusymb($safeeval);
 1020: 
 1021:     unless ($symb) { return ''; }
 1022:     my $result='';
 1023: 
 1024:     my ($mapname,$id,$fn)=split(/\_\_\_/,$symb);
 1025: # ----------------------------------------------------- Cascading lookup scheme
 1026:        my $rwhat=$what;
 1027:        $what=~s/^parameter\_//;
 1028:        $what=~s/\_/\./;
 1029: 
 1030:        my $symbparm=$symb.'.'.$what;
 1031:        my $mapparm=$mapname.'___(all).'.$what;
 1032:        my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
 1033: 
 1034:        my $seclevel=
 1035:             $usercourseprefix.'.['.
 1036: 		$csec.'].'.$what;
 1037:        my $seclevelr=
 1038:             $usercourseprefix.'.['.
 1039: 		$csec.'].'.$symbparm;
 1040:        my $seclevelm=
 1041:             $usercourseprefix.'.['.
 1042: 		$csec.'].'.$mapparm;
 1043: 
 1044:        my $courselevel=
 1045:             $usercourseprefix.'.'.$what;
 1046:        my $courselevelr=
 1047:             $usercourseprefix.'.'.$symbparm;
 1048:        my $courselevelm=
 1049:             $usercourseprefix.'.'.$mapparm;
 1050: 
 1051: # ---------------------------------------------------------- fourth, check user
 1052:       
 1053:       if ($uname) { 
 1054: 
 1055:        if ($useropt{$courselevelr}) { return $useropt{$courselevelr}; }
 1056: 
 1057:        if ($useropt{$courselevelm}) { return $useropt{$courselevelm}; }
 1058: 
 1059:        if ($useropt{$courselevel}) { return $useropt{$courselevel}; }
 1060: 
 1061:       }
 1062: 
 1063: # --------------------------------------------------------- third, check course
 1064:      
 1065:        if ($csec) {
 1066:  
 1067:         if ($courseopt{$seclevelr}) { return $courseopt{$seclevelr}; }
 1068: 
 1069:         if ($courseopt{$seclevelm}) { return $courseopt{$seclevelm}; }  
 1070: 
 1071:         if ($courseopt{$seclevel}) { return $courseopt{$seclevel}; }
 1072:   
 1073:       }
 1074: 
 1075:        if ($courseopt{$courselevelr}) { return $courseopt{$courselevelr}; }
 1076: 
 1077:        if ($courseopt{$courselevelm}) { return $courseopt{$courselevelm}; }
 1078: 
 1079:        if ($courseopt{$courselevel}) { return $courseopt{$courselevel}; }
 1080: 
 1081: # ----------------------------------------------------- second, check map parms
 1082: 
 1083:        my $thisparm=$parmhash{$symbparm};
 1084:        if ($thisparm) { return $thisparm; }
 1085: 
 1086: # -------------------------------------------------------- first, check default
 1087: 
 1088:        return &Apache::lonnet::metadata($fn,$rwhat.'.default');
 1089:         
 1090: }
 1091: 
 1092: # ---------------------------------------------- Update rows for course listing
 1093: 
 1094: sub updateclasssheet {
 1095:     my $safeeval=shift;
 1096:     my $cnum=&getcnum($safeeval);
 1097:     my $cdom=&getcdom($safeeval);
 1098:     my $cid=&getcid($safeeval);
 1099:     my $chome=&getchome($safeeval);
 1100: 
 1101: # ---------------------------------------------- Read class list and row labels
 1102: 
 1103:     my $classlst=&Apache::lonnet::reply
 1104:                                  ('dump:'.$cdom.':'.$cnum.':classlist',$chome);
 1105:     my %currentlist=();
 1106:     my $now=time;
 1107:     unless ($classlst=~/^error\:/) {
 1108:         map {
 1109:             my ($name,$value)=split(/\=/,$_);
 1110:             my ($end,$start)=split(/\:/,&Apache::lonnet::unescape($value));
 1111:             my $active=1;
 1112:             if (($end) && ($now>$end)) { $active=0; }
 1113:             if ($active) {
 1114:                 my $rowlabel='';
 1115:                 $name=&Apache::lonnet::unescape($name);
 1116:                 my ($sname,$sdom)=split(/\:/,$name);
 1117:                 my $ssec=&Apache::lonnet::usection($sdom,$sname,$cid);
 1118:                 if ($ssec==-1) {
 1119:                     $rowlabel='<font color=red>Data not available: '.$name.
 1120: 			      '</font>';
 1121:                 } else {
 1122:                     my %reply=&Apache::lonnet::idrget($sdom,$sname);
 1123:                     my $reply=&Apache::lonnet::reply('get:'.$sdom.':'.$sname.
 1124: 		      ':environment:firstname&middlename&lastname&generation',
 1125:                       &Apache::lonnet::homeserver($sname,$sdom));
 1126:                     $rowlabel='<a href="/adm/studentcalc?uname='.$sname.
 1127:                               '&udom='.$sdom.'">'.
 1128:                               $ssec.'&nbsp;'.$reply{$sname}.'<br>';
 1129:                     map {
 1130:                         $rowlabel.=&Apache::lonnet::unescape($_).' ';
 1131:                     } split(/\&/,$reply);
 1132:                     $rowlabel.='</a>';
 1133:                 }
 1134: 		$currentlist{&Apache::lonnet::unescape($name)}=$rowlabel;
 1135:             }
 1136:         } split(/\&/,$classlst);
 1137: #
 1138: # -------------------- Find discrepancies between the course row table and this
 1139: #
 1140:         my %f=&getformulas($safeeval);
 1141:         my $changed=0;
 1142: 
 1143:         my $maxrow=0;
 1144:         my %existing=();
 1145: 
 1146: # ----------------------------------------------------------- Now obsolete rows
 1147: 	map {
 1148: 	    if ($_=~/^A(\d+)/) {
 1149:                 $maxrow=($1>$maxrow)?$1:$maxrow;
 1150:                 $existing{$f{$_}}=1;
 1151: 		unless ((defined($currentlist{$f{$_}})) || (!$1)) {
 1152: 		   $f{$_}='!!! Obsolete';
 1153:                    $changed=1;
 1154:                 }
 1155:             }
 1156:         } keys %f;
 1157: 
 1158: # -------------------------------------------------------- New and unknown keys
 1159:      
 1160:         map {
 1161:             unless ($existing{$_}) {
 1162: 		$changed=1;
 1163:                 $maxrow++;
 1164:                 $f{'A'.$maxrow}=$_;
 1165:             }
 1166:         } sort keys %currentlist;        
 1167:      
 1168:         if ($changed) { &setformulas($safeeval,%f); }
 1169: 
 1170:         &setmaxrow($safeeval,$maxrow);
 1171:         &setrowlabels($safeeval,%currentlist);
 1172: 
 1173:     } else {
 1174:         return 'Could not access course data';
 1175:     }
 1176: }
 1177: 
 1178: # ----------------------------------- Update rows for student and assess sheets
 1179: 
 1180: sub updatestudentassesssheet {
 1181:     my $safeeval=shift;
 1182:     my %bighash;
 1183:     my $stype=&gettype($safeeval);
 1184:     my %current=();
 1185:     unless ($updatedata{$ENV{'request.course.fn'}.'_'.$stype}) {
 1186: # -------------------------------------------------------------------- Tie hash
 1187:       if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
 1188:                        &GDBM_READER,0640)) {
 1189: # --------------------------------------------------------- Get all assessments
 1190: 
 1191: 	my %allkeys=('timestamp' => 
 1192:                      'Timestamp of Last Transaction<br>timestamp');
 1193:         my %allassess=();
 1194: 
 1195:         my $adduserstr='';
 1196:         if ((&getuname($safeeval) ne $ENV{'user.name'}) ||
 1197:             (&getudom($safeeval) ne $ENV{'user.domain'})) {
 1198:             $adduserstr='&uname='.&getuname($safeeval).
 1199: 		'&udom='.&getudom($safeeval);
 1200:         }
 1201: 
 1202:         map {
 1203: 	    if ($_=~/^src\_(\d+)\.(\d+)$/) {
 1204: 	       my $mapid=$1;
 1205:                my $resid=$2;
 1206:                my $id=$mapid.'.'.$resid;
 1207:                my $srcf=$bighash{$_};
 1208:                if ($srcf=~/\.(problem|exam|quiz|assess|survey|form)$/) {
 1209:                  my $symb=
 1210:                      &Apache::lonnet::declutter($bighash{'map_id_'.$mapid}).
 1211: 			    '___'.$resid.'___'.
 1212: 			    &Apache::lonnet::declutter($srcf);
 1213: 		 $allassess{$symb}=
 1214: 	            '<a href="/adm/assesscalc?usymb='.$symb.$adduserstr.'">'.
 1215:                      $bighash{'title_'.$id}.'</a>';
 1216:                  if ($stype eq 'assesscalc') {
 1217:                    map {
 1218:                        if (($_=~/^stores\_(.*)/) || ($_=~/^parameter\_(.*)/)) {
 1219: 			  my $key=$_;
 1220:                           my $display=
 1221: 			      &Apache::lonnet::metadata($srcf,$key.'.display');
 1222:                           unless ($display) {
 1223:                               $display.=
 1224: 			         &Apache::lonnet::metadata($srcf,$key.'.name');
 1225:                           }
 1226:                           $display.='<br>'.$key;
 1227:                           $allkeys{$key}=$display;
 1228: 		       }
 1229:                    } split(/\,/,&Apache::lonnet::metadata($srcf,'keys'));
 1230: 	         }
 1231: 	      }
 1232: 	   }
 1233:         } keys %bighash;
 1234:         untie(%bighash);
 1235:     
 1236: #
 1237: # %allkeys has a list of storage and parameter displays by unikey
 1238: # %allassess has a list of all resource displays by symb
 1239: #
 1240: 
 1241:         if ($stype eq 'assesscalc') {
 1242: 	    %current=%allkeys;
 1243:         } elsif ($stype eq 'studentcalc') {
 1244:             %current=%allassess;
 1245:         }
 1246:         $updatedata{$ENV{'request.course.fn'}.'_'.$stype}=
 1247: 	    join('___;___',%current);
 1248:     } else {
 1249:         return 'Could not access course data';
 1250:     }
 1251: # ------------------------------------------------------ Get current from cache
 1252:     } else {
 1253:         %current=split(/\_\_\_\;\_\_\_/,
 1254: 		       $updatedata{$ENV{'request.course.fn'}.'_'.$stype});
 1255:     }
 1256: # -------------------- Find discrepancies between the course row table and this
 1257: #
 1258:         my %f=&getformulas($safeeval);
 1259:         my $changed=0;
 1260: 
 1261:         my $maxrow=0;
 1262:         my %existing=();
 1263: 
 1264: # ----------------------------------------------------------- Now obsolete rows
 1265: 	map {
 1266: 	    if ($_=~/^A(\d+)/) {
 1267:                 $maxrow=($1>$maxrow)?$1:$maxrow;
 1268:                 my ($usy,$ufn)=split(/\_\_\&\&\&\_\_/,$f{$_});
 1269:                 $existing{$usy}=1;
 1270: 		unless ((defined($current{$usy})) || (!$1)) {
 1271: 		   $f{$_}='!!! Obsolete';
 1272:                    $changed=1;
 1273: 	        } elsif ($ufn) {
 1274: 		    $current{$usy}
 1275:                        =~s/assesscalc\?usymb\=/assesscalc\?ufn\=$ufn\&usymb\=/;
 1276:                 }
 1277:             }
 1278:         } keys %f;
 1279: 
 1280: # -------------------------------------------------------- New and unknown keys
 1281:      
 1282:         map {
 1283:             unless ($existing{$_}) {
 1284: 		$changed=1;
 1285:                 $maxrow++;
 1286:                 $f{'A'.$maxrow}=$_;
 1287:             }
 1288:         } keys %current;        
 1289:     
 1290:         if ($changed) { &setformulas($safeeval,%f); }
 1291: 
 1292:         &setmaxrow($safeeval,$maxrow);
 1293:         &setrowlabels($safeeval,%current);
 1294:  
 1295:         undef %current;
 1296:         undef %existing;
 1297: }
 1298: 
 1299: # ------------------------------------------------ Load data for one assessment
 1300: 
 1301: sub loadstudent {
 1302:     my $safeeval=shift;
 1303:     my %c=();
 1304:     my %f=&getformulas($safeeval);
 1305:     $cachedassess=&getuname($safeeval).':'.&getudom($safeeval);
 1306:     %cachedstores=();
 1307:     {
 1308:       my $reply=&Apache::lonnet::reply('dump:'.&getudom($safeeval).':'.
 1309:                                                &getuname($safeeval).':'.
 1310:                                                &getcid($safeeval),
 1311:                                                &getuhome($safeeval));
 1312:       unless ($reply=~/^error\:/) {
 1313:          map {
 1314:             my ($name,$value)=split(/\=/,$_);
 1315:             $cachedstores{&Apache::lonnet::unescape($name)}=
 1316: 	                  &Apache::lonnet::unescape($value);
 1317:          } split(/\&/,$reply);
 1318:       }
 1319:     }
 1320:     my @assessdata=();
 1321:     map {
 1322: 	if ($_=~/^A(\d+)/) {
 1323: 	   my $row=$1;
 1324:            unless (($f{$_}=~/^\!/) || ($row==0)) {
 1325: 	      my ($usy,$ufn)=split(/\_\_\&\&\&\_\_/,$f{$_});
 1326: 	      @assessdata=&exportsheet(&getuname($safeeval),
 1327:                                        &getudom($safeeval),
 1328:                                        'assesscalc',$usy,$ufn);
 1329:               my $index=0;
 1330:               map {
 1331:                   if ($assessdata[$index]) {
 1332: 		     my $col=$_;
 1333: 		     if ($assessdata[$index]=~/\D/) {
 1334:                          $c{$col.$row}="'".$assessdata[$index]."'";
 1335:  		     } else {
 1336: 		         $c{$col.$row}=$assessdata[$index];
 1337: 		     }
 1338:                      unless ($col eq 'A') { 
 1339: 			 $f{$col.$row}='import';
 1340:                      }
 1341: 		  }
 1342:                   $index++;
 1343:               } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
 1344:                  'N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
 1345: 	   }
 1346:         }
 1347:     } keys %f;
 1348:     $cachedassess='';
 1349:     undef %cachedstores;
 1350:     &setformulas($safeeval,%f);
 1351:     &setconstants($safeeval,%c);
 1352: }
 1353: 
 1354: # --------------------------------------------------- Load data for one student
 1355: 
 1356: sub loadcourse {
 1357:     my ($safeeval,$r)=@_;
 1358:     my %c=();
 1359:     my %f=&getformulas($safeeval);
 1360:     my $total=0;
 1361:     map {
 1362: 	if ($_=~/^A(\d+)/) {
 1363: 	    unless ($f{$_}=~/^\!/) { $total++; }
 1364:         }
 1365:     } keys %f;
 1366:     my $now=0;
 1367:     my $since=time;
 1368:     $r->print(<<ENDPOP);
 1369: <script>
 1370:     popwin=open('','popwin','width=400,height=100');
 1371:     popwin.document.writeln('<html><body bgcolor="#FFFFFF">'+
 1372:       '<h3>Spreadsheet Calculation Progress</h3>'+
 1373:       '<form name=popremain>'+
 1374:       '<input type=text size=35 name=remaining value=Starting></form>'+
 1375:       '</body></html>');
 1376:     popwin.document.close();
 1377: </script>
 1378: ENDPOP
 1379:     $r->rflush();
 1380:     map {
 1381: 	if ($_=~/^A(\d+)/) {
 1382: 	   my $row=$1;
 1383:            unless (($f{$_}=~/^\!/)  || ($row==0)) {
 1384: 	      my @studentdata=&exportsheet(split(/\:/,$f{$_}),
 1385:                                            'studentcalc');
 1386:               undef %userrdatas;
 1387:               $now++;
 1388:               $r->print('<script>popwin.document.popremain.remaining.value="'.
 1389:                   $now.'/'.$total.': '.int((time-$since)/$now*($total-$now)).
 1390:                         ' secs remaining";</script>');
 1391:               $r->rflush(); 
 1392: 
 1393:               my $index=0;
 1394:               map {
 1395:                   if ($studentdata[$index]) {
 1396: 		     my $col=$_;
 1397: 		     if ($studentdata[$index]=~/\D/) {
 1398:                          $c{$col.$row}="'".$studentdata[$index]."'";
 1399:  		     } else {
 1400: 		         $c{$col.$row}=$studentdata[$index];
 1401: 		     }
 1402:                      unless ($col eq 'A') { 
 1403: 			 $f{$col.$row}='import';
 1404:                      }
 1405: 		  }
 1406:                   $index++;
 1407:               } ('A','B','C','D','E','F','G','H','I','J','K','L','M',
 1408:                  'N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
 1409: 	   }
 1410:         }
 1411:     } keys %f;
 1412:     &setformulas($safeeval,%f);
 1413:     &setconstants($safeeval,%c);
 1414:     $r->print('<script>popwin.close()</script>');
 1415:     $r->rflush(); 
 1416: }
 1417: 
 1418: # ------------------------------------------------ Load data for one assessment
 1419: 
 1420: sub loadassessment {
 1421:     my $safeeval=shift;
 1422: 
 1423:     my $uhome=&getuhome($safeeval);
 1424:     my $uname=&getuname($safeeval);
 1425:     my $udom=&getudom($safeeval);
 1426:     my $symb=&getusymb($safeeval);
 1427:     my $cid=&getcid($safeeval);
 1428:     my $cnum=&getcnum($safeeval);
 1429:     my $cdom=&getcdom($safeeval);
 1430:     my $chome=&getchome($safeeval);
 1431: 
 1432:     my $namespace;
 1433:     unless ($namespace=$cid) { return ''; }
 1434: 
 1435: # ----------------------------------------------------------- Get stored values
 1436: 
 1437:    my %returnhash=();
 1438: 
 1439:    if ($cachedassess eq $uname.':'.$udom) {
 1440: #
 1441: # get data out of the dumped stores
 1442: # 
 1443: 
 1444:        my $version=$cachedstores{'version:'.$symb};
 1445:        my $scope;
 1446:        for ($scope=1;$scope<=$version;$scope++) {
 1447:            map {
 1448:                $returnhash{$_}=$cachedstores{$scope.':'.$symb.':'.$_};
 1449:            } split(/\:/,$cachedstores{$scope.':keys:'.$symb}); 
 1450:        }
 1451: 
 1452:    } else {
 1453: #
 1454: # restore individual
 1455: #
 1456: 
 1457:     my $answer=&Apache::lonnet::reply(
 1458:        "restore:$udom:$uname:".
 1459:        &Apache::lonnet::escape($namespace).":".
 1460:        &Apache::lonnet::escape($symb),$uhome);
 1461:     map {
 1462: 	my ($name,$value)=split(/\=/,$_);
 1463:         $returnhash{&Apache::lonnet::unescape($name)}=
 1464:                     &Apache::lonnet::unescape($value);
 1465:     } split(/\&/,$answer);
 1466:     my $version;
 1467:     for ($version=1;$version<=$returnhash{'version'};$version++) {
 1468:        map {
 1469:           $returnhash{$_}=$returnhash{$version.':'.$_};
 1470:        } split(/\:/,$returnhash{$version.':keys'});
 1471:     }
 1472:    }
 1473: # ----------------------------- returnhash now has all stores for this resource
 1474: 
 1475: # ---------------------------- initialize coursedata and userdata for this user
 1476:     undef %courseopt;
 1477:     undef %useropt;
 1478: 
 1479:     my $userprefix=$uname.'_'.$udom.'_';
 1480: 
 1481:     unless ($uhome eq 'no_host') { 
 1482: # -------------------------------------------------------------- Get coursedata
 1483:       unless
 1484:         ((time-$courserdatas{$cid.'.last_cache'})<240) {
 1485:          my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
 1486:               ':resourcedata',$chome);
 1487:          if ($reply!~/^error\:/) {
 1488:             $courserdatas{$cid}=$reply;
 1489:             $courserdatas{$cid.'.last_cache'}=time;
 1490:          }
 1491:       }
 1492:       map {
 1493:          my ($name,$value)=split(/\=/,$_);
 1494:          $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
 1495:                     &Apache::lonnet::unescape($value);  
 1496:       } split(/\&/,$courserdatas{$cid});
 1497: # --------------------------------------------------- Get userdata (if present)
 1498:       unless
 1499:         ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
 1500:          my $reply=
 1501:        &Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
 1502:          if ($reply!~/^error\:/) {
 1503: 	     $userrdatas{$uname.'___'.$udom}=$reply;
 1504: 	     $userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
 1505:          }
 1506:       }
 1507:       map {
 1508:          my ($name,$value)=split(/\=/,$_);
 1509:          $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
 1510: 	          &Apache::lonnet::unescape($value);
 1511:       } split(/\&/,$userrdatas{$uname.'___'.$udom});
 1512:     }
 1513: # ----------------- now courseopt, useropt initialized for this user and course
 1514: # (used by parmval)
 1515: 
 1516: #
 1517: # Load keys for this assessment only
 1518: #
 1519:     my %thisassess=();
 1520:     my ($symap,$syid,$srcf)=split(/\_\_\_/,$symb);
 1521:     
 1522:     map {
 1523:         $thisassess{$_}=1;
 1524:     } split(/\,/,&Apache::lonnet::metadata($srcf,'keys'));
 1525: #
 1526: # Load parameters
 1527: #
 1528:    my %c=();
 1529: 
 1530:    if (tie(%parmhash,'GDBM_File',
 1531:            &getcfn($safeeval).'_parms.db',&GDBM_READER,0640)) {
 1532:     my %f=&getformulas($safeeval);
 1533:     map {
 1534: 	if ($_=~/^A/) {
 1535:             unless ($f{$_}=~/^\!/) {
 1536:   	       if ($f{$_}=~/^parameter/) {
 1537: 		if ($thisassess{$f{$_}}) {
 1538:                   my $val=&parmval($f{$_},$safeeval);
 1539:                   $c{$_}=$val;
 1540:                   $c{$f{$_}}=$val;
 1541: 	        }
 1542: 	       } else {
 1543: 		  my $key=$f{$_};
 1544:                   my $ckey=$key;
 1545:                   $key=~s/^stores\_/resource\./;
 1546:                   $key=~s/\_/\./;
 1547:  	          $c{$_}=$returnhash{$key};
 1548:                   $c{$ckey}=$returnhash{$key};
 1549: 	       }
 1550: 	   }
 1551:         }
 1552:     } keys %f;
 1553:     untie(%parmhash);
 1554:    }
 1555:    &setconstants($safeeval,%c);
 1556: }
 1557: 
 1558: # --------------------------------------------------------- Various form fields
 1559: 
 1560: sub textfield {
 1561:     my ($title,$name,$value)=@_;
 1562:     return "\n<p><b>$title:</b><br>".
 1563:            '<input type=text name="'.$name.'" size=80 value="'.$value.'">';
 1564: }
 1565: 
 1566: sub hiddenfield {
 1567:     my ($name,$value)=@_;
 1568:     return "\n".'<input type=hidden name="'.$name.'" value="'.$value.'">';
 1569: }
 1570: 
 1571: sub selectbox {
 1572:     my ($title,$name,$value,%options)=@_;
 1573:     my $selout="\n<p><b>$title:</b><br>".'<select name="'.$name.'">';
 1574:     map {
 1575:         $selout.='<option value="'.$_.'"';
 1576:         if ($_ eq $value) { $selout.=' selected'; }
 1577:         $selout.='>'.$options{$_}.'</option>';
 1578:     } sort keys %options;
 1579:     return $selout.'</select>';
 1580: }
 1581: 
 1582: # =============================================== Update information in a sheet
 1583: #
 1584: # Add new users or assessments, etc.
 1585: #
 1586: 
 1587: sub updatesheet {
 1588:     my $safeeval=shift;
 1589:     my $stype=&gettype($safeeval);
 1590:     if ($stype eq 'classcalc') {
 1591: 	return &updateclasssheet($safeeval);
 1592:     } else {
 1593:         return &updatestudentassesssheet($safeeval);
 1594:     }
 1595: }
 1596: 
 1597: # =================================================== Load the rows for a sheet
 1598: #
 1599: # Import the data for rows
 1600: #
 1601: 
 1602: sub loadrows {
 1603:     my ($safeeval,$r)=@_;
 1604:     my $stype=&gettype($safeeval);
 1605:     if ($stype eq 'classcalc') {
 1606: 	&loadcourse($safeeval,$r);
 1607:     } elsif ($stype eq 'studentcalc') {
 1608:         &loadstudent($safeeval);
 1609:     } else {
 1610:         &loadassessment($safeeval);
 1611:     }
 1612: }
 1613: 
 1614: # ======================================================= Forced recalculation?
 1615: 
 1616: sub checkthis {
 1617:     my ($keyname,$time)=@_;
 1618:     return ($time<$expiredates{$keyname});
 1619: }
 1620: sub forcedrecalc {
 1621:     my ($uname,$udom,$stype,$usymb)=@_;
 1622:     my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
 1623:     my $time=$oldsheets{$key.'.time'};
 1624:     if ($ENV{'form.forcerecalc'}) { return 1; }
 1625:     unless ($time) { return 1; }
 1626:     if ($stype eq 'assesscalc') {
 1627:         my $map=(split(/\_\_\_/,$usymb))[0];
 1628:         if (&checkthis('::assesscalc:',$time) ||
 1629:             &checkthis('::assesscalc:'.$map,$time) ||
 1630:             &checkthis('::assesscalc:'.$usymb,$time) ||
 1631:             &checkthis($uname.':'.$udom.':assesscalc:',$time) ||
 1632:             &checkthis($uname.':'.$udom.':assesscalc:'.$map,$time) ||
 1633:             &checkthis($uname.':'.$udom.':assesscalc:'.$usymb,$time)) {
 1634:             return 1;
 1635:         } 
 1636:     } else {
 1637:         if (&checkthis('::studentcalc:',$time) || 
 1638:             &checkthis($uname.':'.$udom.':studentcalc:',$time)) {
 1639: 	    return 1;
 1640:         }
 1641:     }
 1642:     return 0; 
 1643: }
 1644: 
 1645: # ============================================================== Export handler
 1646: #
 1647: # Non-interactive call from with program
 1648: #
 1649: 
 1650: sub exportsheet {
 1651:  my ($uname,$udom,$stype,$usymb,$fn)=@_;
 1652:  my @exportarr=();
 1653: #
 1654: # Check if cached
 1655: #
 1656: 
 1657:  my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
 1658:  my $found='';
 1659: 
 1660:  if ($oldsheets{$key}) {
 1661:      map {
 1662:          my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
 1663:          if ($name eq $fn) {
 1664: 	     $found=$value;
 1665:          }
 1666:      } split(/\_\_\_\&\_\_\_/,$oldsheets{$key});
 1667:  }
 1668: 
 1669:  unless ($found) {
 1670:      &cachedssheets($uname,$udom,&Apache::lonnet::homeserver($uname,$udom));
 1671:      if ($oldsheets{$key}) {
 1672:         map {
 1673:             my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
 1674:             if ($name eq $fn) {
 1675: 	        $found=$value;
 1676:             }
 1677:         } split(/\_\_\_\&\_\_\_/,$oldsheets{$key});
 1678:      }
 1679:  }
 1680: #
 1681: # Check if still valid
 1682: #
 1683:  if ($found) {
 1684:      if (&forcedrecalc($uname,$udom,$stype,$usymb)) {
 1685: 	 $found='';
 1686:      }
 1687:  }
 1688:  
 1689:  if ($found) {
 1690: #
 1691: # Return what was cached
 1692: #
 1693:      @exportarr=split(/\_\_\_\;\_\_\_/,$found);
 1694: 
 1695:  } else {
 1696: #
 1697: # Not cached
 1698: #        
 1699: 
 1700:     my $thissheet=&makenewsheet($uname,$udom,$stype,$usymb);
 1701:     &readsheet($thissheet,$fn);
 1702:     &updatesheet($thissheet);
 1703:     &loadrows($thissheet);
 1704:     &calcsheet($thissheet); 
 1705:     @exportarr=&exportdata($thissheet);
 1706: #
 1707: # Store now
 1708: #
 1709:     my $cid=$ENV{'request.course.id'}; 
 1710:     my $current='';
 1711:     if ($stype eq 'studentcalc') {
 1712:        $current=&Apache::lonnet::reply('get:'.
 1713:                                      $ENV{'course.'.$cid.'.domain'}.':'.
 1714:                                      $ENV{'course.'.$cid.'.num'}.
 1715: 				     ':nohist_calculatedsheets:'.
 1716:                                      &Apache::lonnet::escape($key),
 1717:                                      $ENV{'course.'.$cid.'.home'});
 1718:     } else {
 1719:        $current=&Apache::lonnet::reply('get:'.
 1720:                                      &getudom($thissheet).':'.
 1721:                                      &getuname($thissheet).
 1722: 				     ':nohist_calculatedsheets_'.
 1723:                                      $ENV{'request.course.id'}.':'.
 1724:                                      &Apache::lonnet::escape($key),
 1725:                                      &getuhome($thissheet));
 1726: 
 1727:     }
 1728:     my %currentlystored=();
 1729:     unless ($current=~/^error\:/) {
 1730:        map {
 1731:            my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
 1732:            $currentlystored{$name}=$value;
 1733:        } split(/\_\_\_\&\_\_\_/,&Apache::lonnet::unescape($current));
 1734:     }
 1735:     $currentlystored{$fn}=join('___;___',@exportarr);
 1736: 
 1737:     my $newstore='';
 1738:     map {
 1739:         if ($newstore) { $newstore.='___&___'; }
 1740:         $newstore.=$_.'___=___'.$currentlystored{$_};
 1741:     } keys %currentlystored;
 1742:     my $now=time;
 1743:     if ($stype eq 'studentcalc') {
 1744:        &Apache::lonnet::reply('put:'.
 1745:                          $ENV{'course.'.$cid.'.domain'}.':'.
 1746:                          $ENV{'course.'.$cid.'.num'}.
 1747: 			 ':nohist_calculatedsheets:'.
 1748:                          &Apache::lonnet::escape($key).'='.
 1749: 			 &Apache::lonnet::escape($newstore).'&'.
 1750:                          &Apache::lonnet::escape($key).'.time='.$now,
 1751:                          $ENV{'course.'.$cid.'.home'});
 1752:    } else {
 1753:        &Apache::lonnet::reply('put:'.
 1754:                          &getudom($thissheet).':'.
 1755:                          &getuname($thissheet).
 1756: 			 ':nohist_calculatedsheets_'.
 1757:                          $ENV{'request.course.id'}.':'.
 1758:                          &Apache::lonnet::escape($key).'='.
 1759: 			 &Apache::lonnet::escape($newstore).'&'.
 1760:                          &Apache::lonnet::escape($key).'.time='.$now,
 1761:                          &getuhome($thissheet));
 1762:    }
 1763:  }
 1764:  return @exportarr;
 1765: }
 1766: # ============================================================ Expiration Dates
 1767: #
 1768: # Load previously cached student spreadsheets for this course
 1769: #
 1770: 
 1771: sub expirationdates {
 1772:     undef %expiredates;
 1773:     my $cid=$ENV{'request.course.id'};
 1774:     my $reply=&Apache::lonnet::reply('dump:'.
 1775: 				     $ENV{'course.'.$cid.'.domain'}.':'.
 1776:                                      $ENV{'course.'.$cid.'.num'}.
 1777: 				     ':nohist_expirationdates',
 1778:                                      $ENV{'course.'.$cid.'.home'});
 1779:     unless ($reply=~/^error\:/) {
 1780: 	map {
 1781:             my ($name,$value)=split(/\=/,$_);
 1782:             $expiredates{&Apache::lonnet::unescape($name)}
 1783:                         =&Apache::lonnet::unescape($value);
 1784:         } split(/\&/,$reply);
 1785:     }
 1786: }
 1787: 
 1788: # ===================================================== Calculated sheets cache
 1789: #
 1790: # Load previously cached student spreadsheets for this course
 1791: #
 1792: 
 1793: sub cachedcsheets {
 1794:     my $cid=$ENV{'request.course.id'};
 1795:     my $reply=&Apache::lonnet::reply('dump:'.
 1796: 				     $ENV{'course.'.$cid.'.domain'}.':'.
 1797:                                      $ENV{'course.'.$cid.'.num'}.
 1798: 				     ':nohist_calculatedsheets',
 1799:                                      $ENV{'course.'.$cid.'.home'});
 1800:     unless ($reply=~/^error\:/) {
 1801: 	map {
 1802:             my ($name,$value)=split(/\=/,$_);
 1803:             $oldsheets{&Apache::lonnet::unescape($name)}
 1804:                       =&Apache::lonnet::unescape($value);
 1805:         } split(/\&/,$reply);
 1806:     }
 1807: }
 1808: 
 1809: # ===================================================== Calculated sheets cache
 1810: #
 1811: # Load previously cached assessment spreadsheets for this student
 1812: #
 1813: 
 1814: sub cachedssheets {
 1815:   my ($sname,$sdom,$shome)=@_;
 1816:   unless (($loadedcaches{$sname.'_'.$sdom}) || ($shome eq 'no_host')) {
 1817:     my $cid=$ENV{'request.course.id'};
 1818:     my $reply=&Apache::lonnet::reply('dump:'.$sdom.':'.$sname.
 1819: 			             ':nohist_calculatedsheets_'.
 1820:                                       $ENV{'request.course.id'},
 1821:                                      $shome);
 1822:     unless ($reply=~/^error\:/) {
 1823: 	map {
 1824:             my ($name,$value)=split(/\=/,$_);
 1825:             $oldsheets{&Apache::lonnet::unescape($name)}
 1826:                       =&Apache::lonnet::unescape($value);
 1827:         } split(/\&/,$reply);
 1828:     }
 1829:     $loadedcaches{$sname.'_'.$sdom}=1;
 1830:   }
 1831: }
 1832: 
 1833: # ===================================================== Calculated sheets cache
 1834: #
 1835: # Load previously cached assessment spreadsheets for this student
 1836: #
 1837: 
 1838: # ================================================================ Main handler
 1839: #
 1840: # Interactive call to screen
 1841: #
 1842: #
 1843: 
 1844: 
 1845: sub handler {
 1846:     my $r=shift;
 1847: 
 1848:     if ($r->header_only) {
 1849:       $r->content_type('text/html');
 1850:       $r->send_http_header;
 1851:       return OK;
 1852:     }
 1853: 
 1854: # ---------------------------------------------------- Global directory configs
 1855: 
 1856: $includedir=$r->dir_config('lonIncludes');
 1857: $tmpdir=$r->dir_config('lonDaemons').'/tmp/';
 1858: 
 1859: # ----------------------------------------------------- Needs to be in a course
 1860: 
 1861:   if ($ENV{'request.course.fn'}) { 
 1862: 
 1863: # --------------------------- Get query string for limited number of parameters
 1864: 
 1865:     map {
 1866:        my ($name, $value) = split(/=/,$_);
 1867:        $value =~ tr/+/ /;
 1868:        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 1869:        if (($name eq 'uname') || ($name eq 'udom') || 
 1870:            ($name eq 'usymb') || ($name eq 'ufn')) {
 1871:            unless ($ENV{'form.'.$name}) {
 1872:               $ENV{'form.'.$name}=$value;
 1873: 	   }
 1874:        }
 1875:     } (split(/&/,$ENV{'QUERY_STRING'}));
 1876: 
 1877: # -------------------------------------- Interactive loading of specific sheet?
 1878:     if (($ENV{'form.load'}) && ($ENV{'form.loadthissheet'} ne 'Default')) {
 1879: 	$ENV{'form.ufn'}=$ENV{'form.loadthissheet'};
 1880:     }
 1881: # ------------------------------------------- Nothing there? Must be login user
 1882: 
 1883:     my $aname;
 1884:     my $adom;
 1885: 
 1886:     unless ($ENV{'form.uname'}) {
 1887: 	$aname=$ENV{'user.name'};
 1888:         $adom=$ENV{'user.domain'};
 1889:     } else {
 1890:         $aname=$ENV{'form.uname'};
 1891:         $adom=$ENV{'form.udom'};
 1892:     }
 1893: 
 1894: # ------------------------------------------------------------------- Open page
 1895: 
 1896:     $r->content_type('text/html');
 1897:     $r->header_out('Cache-control','no-cache');
 1898:     $r->header_out('Pragma','no-cache');
 1899:     $r->send_http_header;
 1900: 
 1901: # --------------------------------------------------------------- Screen output
 1902: 
 1903:     $r->print('<html><head><title>LON-CAPA Spreadsheet</title>');
 1904:     $r->print(<<ENDSCRIPT);
 1905: <script language="JavaScript">
 1906: 
 1907:     function celledit(cn,cf) {
 1908:         var cnf=prompt(cn,cf);
 1909: 	if (cnf!=null) {
 1910: 	    document.sheet.unewfield.value=cn;
 1911:             document.sheet.unewformula.value=cnf;
 1912:             document.sheet.submit();
 1913:         }
 1914:     }
 1915: 
 1916:     function changesheet(cn) {
 1917: 	document.sheet.unewfield.value=cn;
 1918:         document.sheet.unewformula.value='changesheet';
 1919:         document.sheet.submit();
 1920:     }
 1921: 
 1922: </script>
 1923: ENDSCRIPT
 1924:     $r->print('</head><body bgcolor="#FFFFFF">'.
 1925:        '<img align=right src=/adm/lonIcons/lonlogos.gif>'.
 1926:        '<h1>LON-CAPA Spreadsheet</h1>'.
 1927:        '<form action="'.$r->uri.'" name=sheet method=post>'.
 1928:        &hiddenfield('uname',$ENV{'form.uname'}).
 1929:        &hiddenfield('udom',$ENV{'form.udom'}).
 1930:        &hiddenfield('usymb',$ENV{'form.usymb'}).
 1931:        &hiddenfield('unewfield','').
 1932:        &hiddenfield('unewformula',''));
 1933: 
 1934: # ---------------------- Make sure that this gets out, even if user hits "stop"
 1935: 
 1936:     $r->rflush();
 1937: 
 1938: # ---------------------------------------------------------------- Full recalc?
 1939: 
 1940: 
 1941:     if ($ENV{'form.forcerecalc'}) {
 1942: 	$r->print('<h4>Completely Recalculating Sheet ...</h4>');
 1943:         undef %spreadsheets;
 1944:         undef %courserdatas;
 1945:         undef %userrdatas;
 1946:         undef %defaultsheets;
 1947:         undef %updatedata;
 1948:    }
 1949:  
 1950: # ---------------------------------------- Read new sheet or modified worksheet
 1951: 
 1952:     $r->uri=~/\/(\w+)$/;
 1953: 
 1954:     my $asheet=&makenewsheet($aname,$adom,$1,$ENV{'form.usymb'});
 1955: 
 1956: # ------------------------ If a new formula had been entered, go from work copy
 1957: 
 1958:     if ($ENV{'form.unewfield'}) {
 1959:         $r->print('<h2>Modified Workcopy</h2>');
 1960:         $ENV{'form.unewformula'}=~s/\'/\"/g;
 1961:         $r->print('<p>New formula: '.$ENV{'form.unewfield'}.'='.
 1962:                   $ENV{'form.unewformula'}.'<p>');
 1963:         &setfilename($asheet,$ENV{'form.ufn'});
 1964: 	&tmpread($asheet,
 1965:                  $ENV{'form.unewfield'},$ENV{'form.unewformula'});
 1966: 
 1967:      } elsif ($ENV{'form.saveas'}) {
 1968:         &setfilename($asheet,$ENV{'form.ufn'});
 1969: 	&tmpread($asheet);
 1970:     } else {
 1971:         &readsheet($asheet,$ENV{'form.ufn'});
 1972:     }
 1973: 
 1974: # -------------------------------------------------- Print out user information
 1975: 
 1976:     unless (&gettype($asheet) eq 'classcalc') {
 1977:         $r->print('<p><b>User:</b> '.&getuname($asheet).
 1978:                   '<br><b>Domain:</b> '.&getudom($asheet));
 1979:         if (&getcsec($asheet) eq '-1') {
 1980:            $r->print('<h3><font color=red>'.
 1981:                      'Not a student in this course</font></h3>');
 1982:         } else {
 1983:            $r->print('<br><b>Section/Group:</b> '.&getcsec($asheet));
 1984:         }
 1985:     }
 1986: 
 1987: # ---------------------------------------------------------------- Course title
 1988: 
 1989:     $r->print('<h1>'.
 1990:             $ENV{'course.'.$ENV{'request.course.id'}.'.description'}.'</h1>');
 1991: 
 1992: # ---------------------------------------------------- See if user can see this
 1993: 
 1994:     if ((&gettype($asheet) eq 'classcalc') || 
 1995:         (&getuname($asheet) ne $ENV{'user.name'}) ||
 1996:         (&getudom($asheet) ne $ENV{'user.domain'})) {
 1997:         unless (&Apache::lonnet::allowed('vgr',&getcid($asheet))) {
 1998: 	    $r->print(
 1999:            '<h1>Access Permission Denied</h1></form></body></html>');
 2000:             return OK;
 2001:         }
 2002:     }
 2003: 
 2004: # ---------------------------------------------------------- Additional options
 2005: 
 2006:     $r->print(
 2007:  '<input type=submit name=forcerecalc value="Completely Recalculate Sheet"><p>'
 2008: 		 );
 2009:     if (&gettype($asheet) eq 'assesscalc') {
 2010:        $r->print ('<p><font size=+2><a href="/adm/studentcalc?uname='.
 2011:                                                &getuname($asheet).
 2012:                                                '&udom='.&getudom($asheet).
 2013:                   '">Level up: Student Sheet</a></font><p>');
 2014:     }
 2015:     
 2016:     if ((&gettype($asheet) eq 'studentcalc') && 
 2017:         (&Apache::lonnet::allowed('vgr',&getcid($asheet)))) {
 2018:        $r->print (
 2019:                    '<p><font size=+2><a href="/adm/classcalc">'.
 2020:                    'Level up: Course Sheet</a></font><p>');
 2021:     }
 2022:     
 2023: 
 2024: # ----------------------------------------------------------------- Save dialog
 2025: 
 2026: 
 2027:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
 2028:         my $fname=$ENV{'form.ufn'};
 2029:         $fname=~s/\_[^\_]+$//;
 2030:         if ($fname eq 'default') { $fname='course_default'; }
 2031:         $r->print('<input type=submit name=saveas value="Save as ...">'.
 2032:               '<input type=text size=20 name=newfn value="'.$fname.
 2033:               '"> (make default: <input type=checkbox name="makedefufn">)<p>');
 2034:     }
 2035: 
 2036:     $r->print(&hiddenfield('ufn',&getfilename($asheet)));
 2037: 
 2038: # ----------------------------------------------------------------- Load dialog
 2039:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
 2040: 	$r->print('<p><input type=submit name=load value="Load ...">'.
 2041:                   '<select name="loadthissheet">'.
 2042:                   '<option name="default">Default</option>');
 2043:         map {
 2044: 	    $r->print('<option name="'.$_.'"');
 2045:             if ($ENV{'form.ufn'} eq $_) {
 2046:                $r->print(' selected');
 2047:             }
 2048:             $r->print('>'.$_.'</option>');
 2049:         } &othersheets($asheet,&gettype($asheet));
 2050:         $r->print('</select><p>');
 2051:         if (&gettype($asheet) eq 'studentcalc') {
 2052: 	    &setothersheets($asheet,&othersheets($asheet,'assesscalc'));
 2053:         }
 2054:     }
 2055: 
 2056: # --------------------------------------------------------------- Cached sheets
 2057: 
 2058:     &expirationdates();
 2059: 
 2060:     undef %oldsheets;
 2061:     undef %loadedcaches;
 2062: 
 2063:     if (&gettype($asheet) eq 'classcalc') {
 2064:         $r->print("Loading previously calculated student sheets ...<br>\n");
 2065:         $r->rflush();
 2066:         &cachedcsheets();
 2067:     } elsif (&gettype($asheet) eq 'studentcalc') {
 2068:         $r->print("Loading previously calculated assessment sheets ...<br>\n");
 2069:         $r->rflush();
 2070:         &cachedssheets(&getuname($asheet),&getudom($asheet),
 2071:                        &getuhome($asheet));
 2072:     }
 2073: 
 2074: # ----------------------------------------------------- Update sheet, load rows
 2075: 
 2076:     $r->print("Loaded sheet(s), updating rows ...<br>\n");
 2077:     $r->rflush();
 2078: 
 2079:     &updatesheet($asheet);
 2080: 
 2081:     $r->print("Updated rows, loading row data ...<br>\n");
 2082:     $r->rflush();
 2083: 
 2084:     &loadrows($asheet,$r);
 2085: 
 2086:     $r->print("Loaded row data, calculating sheet ...<br>\n");
 2087:     $r->rflush();
 2088: 
 2089:     my $calcoutput=&calcsheet($asheet);
 2090:     $r->print('<h3><font color=red>'.$calcoutput.'</h3></font>');
 2091: 
 2092: # ---------------------------------------------------- See if something to save
 2093: 
 2094:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
 2095:         my $fname='';
 2096: 	if ($ENV{'form.saveas'} && ($fname=$ENV{'form.newfn'})) {
 2097:             $fname=~s/\W/\_/g;
 2098:             if ($fname eq 'default') { $fname='course_default'; }
 2099:             $fname.='_'.&gettype($asheet);
 2100:             &setfilename($asheet,$fname);
 2101:             $ENV{'form.ufn'}=$fname;
 2102: 	    $r->print('<p>Saving spreadsheet: '.
 2103:                          &writesheet($asheet,$ENV{'form.makedefufn'}).'<p>');
 2104: 	}
 2105:     }
 2106: 
 2107: # ------------------------------------------------ Write the modified worksheet
 2108: 
 2109:    $r->print('<b>Current sheet:</b> '.&getfilename($asheet).'<p>');
 2110: 
 2111:    &tmpwrite($asheet);
 2112: 
 2113: # ------------------------------------------------------------- Print out sheet
 2114: 
 2115:     &outsheet($r,$asheet);
 2116:     $r->print('</form></body></html>');
 2117: 
 2118: # ------------------------------------------------------------------------ Done
 2119:   } else {
 2120: # ----------------------------- Not in a course, or not allowed to modify parms
 2121:       $ENV{'user.error.msg'}=
 2122:         $r->uri.":opa:0:0:Cannot modify spreadsheet";
 2123:       return HTTP_NOT_ACCEPTABLE; 
 2124:   }
 2125:     return OK;
 2126: 
 2127: }
 2128: 
 2129: 1;
 2130: __END__

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