Annotation of loncom/interface/lonspreadsheet.pm, revision 1.102

1.79      matthew     1: #
1.102   ! matthew     2: # $Id: lonspreadsheet.pm,v 1.101 2002/08/21 17:18:08 www Exp $
1.79      matthew     3: #
                      4: # Copyright Michigan State University Board of Trustees
                      5: #
                      6: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      7: #
                      8: # LON-CAPA is free software; you can redistribute it and/or modify
                      9: # it under the terms of the GNU General Public License as published by
                     10: # the Free Software Foundation; either version 2 of the License, or
                     11: # (at your option) any later version.
                     12: #
                     13: # LON-CAPA is distributed in the hope that it will be useful,
                     14: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     15: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     16: # GNU General Public License for more details.
                     17: #
                     18: # You should have received a copy of the GNU General Public License
                     19: # along with LON-CAPA; if not, write to the Free Software
                     20: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     21: #
                     22: # /home/httpd/html/adm/gpl.txt
                     23: #
                     24: # http://www.lon-capa.org/
                     25: #
1.1       www        26: # The LearningOnline Network with CAPA
                     27: # Spreadsheet/Grades Display Handler
                     28: #
1.15      www        29: # 11/11,11/15,11/27,12/04,12/05,12/06,12/07,
1.23      www        30: # 12/08,12/09,12/11,12/12,12/15,12/16,12/18,12/19,12/30,
1.39      www        31: # 01/01/01,02/01,03/01,19/01,20/01,22/01,
1.47      www        32: # 03/05,03/08,03/10,03/12,03/13,03/15,03/17,
1.55      www        33: # 03/19,03/20,03/21,03/27,04/05,04/09,
1.69      www        34: # 07/09,07/14,07/21,09/01,09/10,9/11,9/12,9/13,9/14,9/17,
1.77      www        35: # 10/16,10/17,10/20,11/05,11/28,12/27 Gerd Kortemeyer
1.78      matthew    36: # 01/14/02 Matthew
1.80      matthew    37: # 02/04/02 Matthew
                     38: 
                     39: # POD required stuff:
                     40: 
                     41: =head1 NAME
                     42: 
                     43: lonspreadsheet
                     44: 
                     45: =head1 SYNOPSIS
                     46: 
                     47: Spreadsheet interface to internal LON-CAPA data
                     48: 
                     49: =head1 DESCRIPTION
                     50: 
                     51: Lonspreadsheet provides course coordinators the ability to manage their
                     52: students grades online.  The students are able to view their own grades, but
                     53: not the grades of their peers.  The spreadsheet is highly customizable,
                     54: offering the ability to use Perl code to manipulate data, as well as many
                     55: built-in functions.
                     56: 
                     57: 
                     58: =head2 Functions available to user of lonspreadsheet
                     59: 
                     60: =over 4
                     61: 
                     62: =cut
1.1       www        63: 
                     64: package Apache::lonspreadsheet;
1.36      www        65:             
1.1       www        66: use strict;
                     67: use Safe;
1.3       www        68: use Safe::Hole;
1.1       www        69: use Opcode;
                     70: use Apache::lonnet;
1.7       www        71: use Apache::Constants qw(:common :http);
1.19      www        72: use GDBM_File;
1.3       www        73: use HTML::TokeParser;
1.98      matthew    74: use Apache::lonhtmlcommon;
1.11      www        75: #
1.44      www        76: # Caches for previously calculated spreadsheets
                     77: #
                     78: 
                     79: my %oldsheets;
1.46      www        80: my %loadedcaches;
1.47      www        81: my %expiredates;
1.44      www        82: 
                     83: #
1.39      www        84: # Cache for stores of an individual user
                     85: #
                     86: 
                     87: my $cachedassess;
                     88: my %cachedstores;
                     89: 
                     90: #
1.11      www        91: # These cache hashes need to be independent of user, resource and course
1.27      www        92: # (user and course can/should be in the keys)
1.11      www        93: #
1.33      www        94: 
                     95: my %spreadsheets;
                     96: my %courserdatas;
                     97: my %userrdatas;
                     98: my %defaultsheets;
1.35      www        99: my %updatedata;
1.27      www       100: 
1.11      www       101: #
                    102: # These global hashes are dependent on user, course and resource, 
                    103: # and need to be initialized every time when a sheet is calculated
                    104: #
                    105: my %courseopt;
                    106: my %useropt;
                    107: my %parmhash;
                    108: 
1.95      www       109: #
                    110: # Some hashes for stats on timing and performance
                    111: #
                    112: 
                    113: my %starttimes;
                    114: my %usedtimes;
1.96      www       115: my %numbertimes;
1.95      www       116: 
1.28      www       117: # Stuff that only the screen handler can know
                    118: 
                    119: my $includedir;
                    120: my $tmpdir;
                    121: 
1.5       www       122: # =============================================================================
                    123: # ===================================== Implements an instance of a spreadsheet
1.4       www       124: 
                    125: sub initsheet {
1.36      www       126:     my $safeeval = new Safe(shift);
1.4       www       127:     my $safehole = new Safe::Hole;
                    128:     $safeeval->permit("entereval");
                    129:     $safeeval->permit(":base_math");
                    130:     $safeeval->permit("sort");
                    131:     $safeeval->deny(":base_io");
                    132:     $safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
1.96      www       133:     $safeeval->share('$@');
1.4       www       134:     my $code=<<'ENDDEFS';
                    135: # ---------------------------------------------------- Inside of the safe space
                    136: 
1.3       www       137: #
                    138: # f: formulas
1.4       www       139: # t: intermediate format (variable references expanded)
                    140: # v: output values
1.6       www       141: # c: preloaded constants (A-column)
                    142: # rl: row label
1.55      www       143: # os: other spreadsheets (for student spreadsheet only)
1.3       www       144: 
1.36      www       145: undef %v; 
                    146: undef %t;
                    147: undef %f;
                    148: undef %c;
1.102   ! matthew   149: undef %rowlabel;
1.55      www       150: undef @os;
                    151: 
1.6       www       152: $maxrow=0;
1.5       www       153: $sheettype='';
1.27      www       154: 
                    155: # filename/reference of the sheet
                    156: 
1.5       www       157: $filename='';
1.1       www       158: 
1.27      www       159: # user data
                    160: $uname='';
                    161: $uhome='';
                    162: $udom='';
                    163: 
                    164: # course data
                    165: 
                    166: $csec='';
                    167: $chome='';
                    168: $cnum='';
                    169: $cdom='';
1.28      www       170: $cid='';
1.29      www       171: $cfn='';
1.27      www       172: 
                    173: # symb
                    174: 
                    175: $usymb='';
                    176: 
1.95      www       177: # error messages
                    178: 
                    179: $errormsg='';
                    180: 
1.1       www       181: sub mask {
                    182:     my ($lower,$upper)=@_;
                    183: 
1.7       www       184:     $lower=~/([A-Za-z]|\*)(\d+|\*)/;
1.1       www       185:     my $la=$1;
                    186:     my $ld=$2;
                    187: 
1.7       www       188:     $upper=~/([A-Za-z]|\*)(\d+|\*)/;
1.1       www       189:     my $ua=$1;
                    190:     my $ud=$2;
                    191:     my $alpha='';
                    192:     my $num='';
                    193: 
                    194:     if (($la eq '*') || ($ua eq '*')) {
1.7       www       195:        $alpha='[A-Za-z]';
1.1       www       196:     } else {
1.7       www       197:        if (($la=~/[A-Z]/) && ($ua=~/[A-Z]/) ||
                    198:            ($la=~/[a-z]/) && ($ua=~/[a-z]/)) {
                    199:           $alpha='['.$la.'-'.$ua.']';
                    200:        } else {
                    201:           $alpha='['.$la.'-Za-'.$ua.']';
                    202:        }
1.1       www       203:     }   
                    204: 
                    205:     if (($ld eq '*') || ($ud eq '*')) {
                    206: 	$num='\d+';
                    207:     } else {
                    208:         if (length($ld)!=length($ud)) {
                    209:            $num.='(';
1.78      matthew   210: 	   foreach ($ld=~m/\d/g) {
1.1       www       211:               $num.='['.$_.'-9]';
1.78      matthew   212: 	   }
1.1       www       213:            if (length($ud)-length($ld)>1) {
                    214:               $num.='|\d{'.(length($ld)+1).','.(length($ud)-1).'}';
                    215: 	   }
                    216:            $num.='|';
1.78      matthew   217:            foreach ($ud=~m/\d/g) {
1.1       www       218:                $num.='[0-'.$_.']';
1.78      matthew   219:            }
1.1       www       220:            $num.=')';
                    221:        } else {
                    222:            my @lda=($ld=~m/\d/g);
                    223:            my @uda=($ud=~m/\d/g);
1.7       www       224:            my $i; $j=0; $notdone=1;
                    225:            for ($i=0;($i<=$#lda)&&($notdone);$i++) {
1.1       www       226:                if ($lda[$i]==$uda[$i]) {
                    227: 		   $num.=$lda[$i];
                    228:                    $j=$i;
1.7       www       229:                } else {
                    230:                    $notdone=0;
1.1       www       231:                }
                    232:            }
                    233:            if ($j<$#lda-1) {
                    234: 	       $num.='('.$lda[$j+1];
                    235:                for ($i=$j+2;$i<=$#lda;$i++) {
                    236:                    $num.='['.$lda[$i].'-9]';
                    237:                }
                    238:                if ($uda[$j+1]-$lda[$j+1]>1) {
                    239: 		   $num.='|['.($lda[$j+1]+1).'-'.($uda[$j+1]-1).']\d{'.
                    240:                    ($#lda-$j-1).'}';
                    241:                }
                    242: 	       $num.='|'.$uda[$j+1];
                    243:                for ($i=$j+2;$i<=$#uda;$i++) {
                    244:                    $num.='[0-'.$uda[$i].']';
                    245:                }
                    246:                $num.=')';
                    247:            } else {
1.7       www       248:                if ($lda[$#lda]!=$uda[$#uda]) {
                    249:                   $num.='['.$lda[$#lda].'-'.$uda[$#uda].']';
                    250: 	       }
1.1       www       251:            }
                    252:        }
                    253:     }
1.4       www       254:     return '^'.$alpha.$num."\$";
1.80      matthew   255: }
                    256: 
                    257: #-------------------------------------------------------
                    258: 
                    259: =item UWCALC(hashname,modules,units,date) 
                    260: 
                    261: returns the proportion of the module 
                    262: weights not previously completed by the student.
                    263: 
                    264: =over 4
                    265: 
                    266: =item hashname 
                    267: 
                    268: name of the hash the module dates have been inserted into
                    269: 
                    270: =item modules 
                    271: 
                    272: reference to a cell which contains a comma deliminated list of modules 
                    273: covered by the assignment.
                    274: 
                    275: =item units 
                    276: 
                    277: reference to a cell which contains a comma deliminated list of module 
                    278: weights with respect to the assignment
                    279: 
                    280: =item date 
                    281: 
                    282: reference to a cell which contains the date the assignment was completed.
                    283: 
                    284: =back 
                    285: 
                    286: =cut
                    287: 
                    288: #-------------------------------------------------------
                    289: sub UWCALC {
                    290:     my ($hashname,$modules,$units,$date) = @_;
                    291:     my @Modules = split(/,/,$modules);
                    292:     my @Units   = split(/,/,$units);
                    293:     my $total_weight;
                    294:     foreach (@Units) {
                    295: 	$total_weight += $_;
                    296:     }
                    297:     my $usum=0;
                    298:     for (my $i=0; $i<=$#Modules; $i++) {
                    299: 	if (&HASH($hashname,$Modules[$i]) eq $date) {
                    300: 	    $usum += $Units[$i];
                    301: 	}
                    302:     }
                    303:     return $usum/$total_weight;
                    304: }
                    305: 
                    306: #-------------------------------------------------------
                    307: 
                    308: =item CDLSUM(list) 
                    309: 
                    310: returns the sum of the elements in a cell which contains
                    311: a Comma Deliminate List of numerical values.
                    312: 'list' is a reference to a cell which contains a comma deliminated list.
                    313: 
                    314: =cut
                    315: 
                    316: #-------------------------------------------------------
                    317: sub CDLSUM {
                    318:     my ($list)=@_;
                    319:     my $sum;
                    320:     foreach (split/,/,$list) {
                    321: 	$sum += $_;
                    322:     }
                    323:     return $sum;
                    324: }
                    325: 
                    326: #-------------------------------------------------------
                    327: 
                    328: =item CDLITEM(list,index) 
                    329: 
                    330: returns the item at 'index' in a Comma Deliminated List.
                    331: 
                    332: =over 4
                    333: 
                    334: =item list
                    335: 
                    336: reference to a cell which contains a comma deliminated list.
                    337: 
                    338: =item index 
                    339: 
                    340: the Perl index of the item requested (first element in list has
                    341: an index of 0) 
                    342: 
                    343: =back
                    344: 
                    345: =cut
                    346: 
                    347: #-------------------------------------------------------
                    348: sub CDLITEM {
                    349:     my ($list,$index)=@_;
                    350:     my @Temp = split/,/,$list;
                    351:     return $Temp[$index];
                    352: }
                    353: 
                    354: #-------------------------------------------------------
                    355: 
                    356: =item CDLHASH(name,key,value) 
                    357: 
                    358: loads a comma deliminated list of keys into
                    359: the hash 'name', all with a value of 'value'.
                    360: 
                    361: =over 4
                    362: 
                    363: =item name  
                    364: 
                    365: name of the hash.
                    366: 
                    367: =item key
                    368: 
                    369: (a pointer to) a comma deliminated list of keys.
                    370: 
                    371: =item value
                    372: 
                    373: a single value to be entered for each key.
                    374: 
                    375: =back
                    376: 
                    377: =cut
                    378: 
                    379: #-------------------------------------------------------
                    380: sub CDLHASH {
                    381:     my ($name,$key,$value)=@_;
                    382:     my @Keys;
                    383:     my @Values;
                    384:     # Check to see if we have multiple $key values
                    385:     if ($key =~ /[A-z](\-[A-z])?\d+(\-\d+)?/) {
                    386: 	my $keymask = &mask($key);
                    387: 	# Assume the keys are addresses
                    388: 	my @Temp = grep /$keymask/,keys(%v);
                    389: 	@Keys = $v{@Temp};
                    390:     } else {
                    391: 	$Keys[0]= $key;
                    392:     }
                    393:     my @Temp;
                    394:     foreach $key (@Keys) {
                    395: 	@Temp = (@Temp, split/,/,$key);
                    396:     }
                    397:     @Keys = @Temp;
                    398:     if ($value =~ /[A-z](\-[A-z])?\d+(\-\d+)?/) {
                    399: 	my $valmask = &mask($value);
                    400: 	my @Temp = grep /$valmask/,keys(%v);
                    401: 	@Values =$v{@Temp};
                    402:     } else {
                    403: 	$Values[0]= $value;
                    404:     }
                    405:     $value = $Values[0];
                    406:     # Add values to hash
                    407:     for (my $i = 0; $i<=$#Keys; $i++) {
                    408: 	my $key   = $Keys[$i];
                    409: 	if (! exists ($hashes{$name}->{$key})) {
                    410: 	    $hashes{$name}->{$key}->[0]=$value;
                    411: 	} else {
                    412: 	    my @Temp = sort(@{$hashes{$name}->{$key}},$value);
                    413: 	    $hashes{$name}->{$key} = \@Temp;
                    414: 	}
                    415:     }
                    416:     return "hash '$name' updated";
                    417: }
                    418: 
                    419: #-------------------------------------------------------
                    420: 
                    421: =item GETHASH(name,key,index) 
                    422: 
                    423: returns the element in hash 'name' 
                    424: reference by the key 'key', at index 'index' in the values list.
                    425: 
                    426: =cut
                    427: 
                    428: #-------------------------------------------------------
                    429: sub GETHASH {
                    430:     my ($name,$key,$index)=@_;
                    431:     if (! defined($index)) {
                    432: 	$index = 0;
                    433:     }
                    434:     if ($key =~ /^[A-z]\d+$/) {
                    435: 	$key = $v{$key};
                    436:     }
                    437:     return $hashes{$name}->{$key}->[$index];
                    438: }
                    439: 
                    440: #-------------------------------------------------------
                    441: 
                    442: =item CLEARHASH(name) 
                    443: 
                    444: clears all the values from the hash 'name'
                    445: 
                    446: =item CLEARHASH(name,key) 
                    447: 
                    448: clears all the values from the hash 'name' associated with the given key.
                    449: 
                    450: =cut
                    451: 
                    452: #-------------------------------------------------------
                    453: sub CLEARHASH {
                    454:     my ($name,$key)=@_;
                    455:     if (defined($key)) {
                    456: 	if (exists($hashes{$name}->{$key})) {
                    457: 	    $hashes{$name}->{$key}=undef;
                    458: 	    return "hash '$name' key '$key' cleared";
                    459: 	}
                    460:     } else {
                    461: 	if (exists($hashes{$name})) {
                    462: 	    $hashes{$name}=undef;
                    463: 	    return "hash '$name' cleared";
                    464: 	}
                    465:     }
                    466:     return "Error in clearing hash";
                    467: }
                    468: 
                    469: #-------------------------------------------------------
                    470: 
                    471: =item HASH(name,key,value) 
                    472: 
                    473: loads values into an internal hash.  If a key 
                    474: already has a value associated with it, the values are sorted numerically.  
                    475: 
                    476: =item HASH(name,key) 
                    477: 
                    478: returns the 0th value in the hash 'name' associated with 'key'.
                    479: 
                    480: =cut
                    481: 
                    482: #-------------------------------------------------------
                    483: sub HASH {
                    484:     my ($name,$key,$value)=@_;
                    485:     my @Keys;
                    486:     undef @Keys;
                    487:     my @Values;
                    488:     # Check to see if we have multiple $key values
                    489:     if ($key =~ /[A-z](\-[A-z])?\d+(\-\d+)?/) {
                    490: 	my $keymask = &mask($key);
                    491: 	# Assume the keys are addresses
                    492: 	my @Temp = grep /$keymask/,keys(%v);
                    493: 	@Keys = $v{@Temp};
                    494:     } else {
                    495: 	$Keys[0]= $key;
                    496:     }
                    497:     # If $value is empty, return the first value associated 
                    498:     # with the first key.
                    499:     if (! $value) {
                    500: 	return $hashes{$name}->{$Keys[0]}->[0];
                    501:     }
                    502:     # Check to see if we have multiple $value(s) 
                    503:     if ($value =~ /[A-z](\-[A-z])?\d+(\-\d+)?/) {
                    504: 	my $valmask = &mask($value);
                    505: 	my @Temp = grep /$valmask/,keys(%v);
                    506: 	@Values =$v{@Temp};
                    507:     } else {
                    508: 	$Values[0]= $value;
                    509:     }
                    510:     # Add values to hash
                    511:     for (my $i = 0; $i<=$#Keys; $i++) {
                    512: 	my $key   = $Keys[$i];
                    513: 	my $value = ($i<=$#Values ? $Values[$i] : $Values[0]);
                    514: 	if (! exists ($hashes{$name}->{$key})) {
                    515: 	    $hashes{$name}->{$key}->[0]=$value;
                    516: 	} else {
                    517: 	    my @Temp = sort(@{$hashes{$name}->{$key}},$value);
                    518: 	    $hashes{$name}->{$key} = \@Temp;
                    519: 	}
                    520:     }
                    521:     return $Values[-1];
1.1       www       522: }
                    523: 
1.84      matthew   524: #-------------------------------------------------------
                    525: 
                    526: =item NUM(range)
                    527: 
                    528: returns the number of items in the range.
                    529: 
                    530: =cut
                    531: 
                    532: #-------------------------------------------------------
1.1       www       533: sub NUM {
                    534:     my $mask=mask(@_);
1.78      matthew   535:     my $num= $#{@{grep(/$mask/,keys(%v))}}+1;
1.1       www       536:     return $num;   
                    537: }
                    538: 
                    539: sub BIN {
                    540:     my ($low,$high,$lower,$upper)=@_;
                    541:     my $mask=mask($lower,$upper);
                    542:     my $num=0;
1.78      matthew   543:     foreach (grep /$mask/,keys(%v)) {
1.1       www       544:         if (($v{$_}>=$low) && ($v{$_}<=$high)) {
                    545:             $num++;
                    546:         }
1.78      matthew   547:     }
1.1       www       548:     return $num;   
                    549: }
                    550: 
                    551: 
1.84      matthew   552: #-------------------------------------------------------
                    553: 
                    554: =item SUM(range)
                    555: 
                    556: returns the sum of items in the range.
                    557: 
                    558: =cut
                    559: 
                    560: #-------------------------------------------------------
1.1       www       561: sub SUM {
                    562:     my $mask=mask(@_);
                    563:     my $sum=0;
1.78      matthew   564:     foreach (grep /$mask/,keys(%v)) {
1.1       www       565:         $sum+=$v{$_};
1.78      matthew   566:     }
1.1       www       567:     return $sum;   
                    568: }
                    569: 
1.84      matthew   570: #-------------------------------------------------------
                    571: 
                    572: =item MEAN(range)
                    573: 
                    574: compute the average of the items in the range.
                    575: 
                    576: =cut
                    577: 
                    578: #-------------------------------------------------------
1.1       www       579: sub MEAN {
                    580:     my $mask=mask(@_);
                    581:     my $sum=0; my $num=0;
1.78      matthew   582:     foreach (grep /$mask/,keys(%v)) {
1.1       www       583:         $sum+=$v{$_};
                    584:         $num++;
1.78      matthew   585:     }
1.1       www       586:     if ($num) {
                    587:        return $sum/$num;
                    588:     } else {
                    589:        return undef;
                    590:     }   
                    591: }
                    592: 
1.84      matthew   593: #-------------------------------------------------------
                    594: 
                    595: =item STDDEV(range)
                    596: 
                    597: compute the standard deviation of the items in the range.
                    598: 
                    599: =cut
                    600: 
                    601: #-------------------------------------------------------
1.1       www       602: sub STDDEV {
                    603:     my $mask=mask(@_);
                    604:     my $sum=0; my $num=0;
1.78      matthew   605:     foreach (grep /$mask/,keys(%v)) {
1.1       www       606:         $sum+=$v{$_};
                    607:         $num++;
1.78      matthew   608:     }
1.1       www       609:     unless ($num>1) { return undef; }
                    610:     my $mean=$sum/$num;
                    611:     $sum=0;
1.78      matthew   612:     foreach (grep /$mask/,keys(%v)) {
1.1       www       613:         $sum+=($v{$_}-$mean)**2;
1.78      matthew   614:     }
1.1       www       615:     return sqrt($sum/($num-1));    
                    616: }
                    617: 
1.84      matthew   618: #-------------------------------------------------------
                    619: 
                    620: =item PROD(range)
                    621: 
                    622: compute the product of the items in the range.
                    623: 
                    624: =cut
                    625: 
                    626: #-------------------------------------------------------
1.1       www       627: sub PROD {
                    628:     my $mask=mask(@_);
                    629:     my $prod=1;
1.78      matthew   630:     foreach (grep /$mask/,keys(%v)) {
1.1       www       631:         $prod*=$v{$_};
1.78      matthew   632:     }
1.1       www       633:     return $prod;   
                    634: }
                    635: 
1.84      matthew   636: #-------------------------------------------------------
                    637: 
                    638: =item MAX(range)
                    639: 
                    640: compute the maximum of the items in the range.
                    641: 
                    642: =cut
                    643: 
                    644: #-------------------------------------------------------
1.1       www       645: sub MAX {
                    646:     my $mask=mask(@_);
                    647:     my $max='-';
1.78      matthew   648:     foreach (grep /$mask/,keys(%v)) {
1.1       www       649:         unless ($max) { $max=$v{$_}; }
                    650:         if (($v{$_}>$max) || ($max eq '-')) { $max=$v{$_}; }
1.78      matthew   651:     } 
1.1       www       652:     return $max;   
                    653: }
                    654: 
1.84      matthew   655: #-------------------------------------------------------
                    656: 
                    657: =item MIN(range)
                    658: 
                    659: compute the minimum of the items in the range.
                    660: 
                    661: =cut
                    662: 
                    663: #-------------------------------------------------------
1.1       www       664: sub MIN {
                    665:     my $mask=mask(@_);
                    666:     my $min='-';
1.78      matthew   667:     foreach (grep /$mask/,keys(%v)) {
1.1       www       668:         unless ($max) { $max=$v{$_}; }
                    669:         if (($v{$_}<$min) || ($min eq '-')) { $min=$v{$_}; }
1.78      matthew   670:     }
1.1       www       671:     return $min;   
                    672: }
                    673: 
1.84      matthew   674: #-------------------------------------------------------
                    675: 
                    676: =item SUMMAX(num,lower,upper)
                    677: 
                    678: compute the sum of the largest 'num' items in the range from
                    679: 'lower' to 'upper'
                    680: 
                    681: =cut
                    682: 
                    683: #-------------------------------------------------------
1.1       www       684: sub SUMMAX {
                    685:     my ($num,$lower,$upper)=@_;
                    686:     my $mask=mask($lower,$upper);
                    687:     my @inside=();
1.78      matthew   688:     foreach (grep /$mask/,keys(%v)) {
1.84      matthew   689: 	push (@inside,$v{$_});
1.78      matthew   690:     }
1.1       www       691:     @inside=sort(@inside);
                    692:     my $sum=0; my $i;
                    693:     for ($i=$#inside;(($i>$#inside-$num) && ($i>=0));$i--) { 
                    694:         $sum+=$inside[$i];
                    695:     }
                    696:     return $sum;   
                    697: }
                    698: 
1.84      matthew   699: #-------------------------------------------------------
                    700: 
                    701: =item SUMMIN(num,lower,upper)
                    702: 
                    703: compute the sum of the smallest 'num' items in the range from
                    704: 'lower' to 'upper'
                    705: 
                    706: =cut
                    707: 
                    708: #-------------------------------------------------------
1.1       www       709: sub SUMMIN {
                    710:     my ($num,$lower,$upper)=@_;
                    711:     my $mask=mask($lower,$upper);
                    712:     my @inside=();
1.78      matthew   713:     foreach (grep /$mask/,keys(%v)) {
1.1       www       714: 	$inside[$#inside+1]=$v{$_};
1.78      matthew   715:     }
1.1       www       716:     @inside=sort(@inside);
                    717:     my $sum=0; my $i;
                    718:     for ($i=0;(($i<$num) && ($i<=$#inside));$i++) { 
                    719:         $sum+=$inside[$i];
                    720:     }
                    721:     return $sum;   
                    722: }
                    723: 
1.59      www       724: sub expandnamed {
                    725:     my $expression=shift;
                    726:     if ($expression=~/^\&/) {
                    727: 	my ($func,$var,$formula)=($expression=~/^\&(\w+)\(([^\;]+)\;(.*)\)/);
                    728: 	my @vars=split(/\W+/,$formula);
                    729:         my %values=();
                    730:         undef %values;
1.78      matthew   731: 	foreach ( @vars ) {
1.59      www       732:             my $varname=$_;
                    733:             if ($varname=~/\D/) {
                    734:                $formula=~s/$varname/'$c{\''.$varname.'\'}'/ge;
                    735:                $varname=~s/$var/\(\\w\+\)/g;
1.78      matthew   736: 	       foreach (keys(%c)) {
1.59      www       737: 		  if ($_=~/$varname/) {
                    738: 		      $values{$1}=1;
                    739:                   }
1.78      matthew   740:                }
1.59      www       741: 	    }
1.78      matthew   742:         }
1.59      www       743:         if ($func eq 'EXPANDSUM') {
                    744:             my $result='';
1.78      matthew   745: 	    foreach (keys(%values)) {
1.59      www       746:                 my $thissum=$formula;
                    747:                 $thissum=~s/$var/$_/g;
                    748:                 $result.=$thissum.'+';
1.78      matthew   749:             } 
1.59      www       750:             $result=~s/\+$//;
                    751:             return $result;
                    752:         } else {
                    753: 	    return 0;
                    754:         }
                    755:     } else {
1.88      matthew   756:         # it is not a function, so it is a parameter name
                    757:         # We should do the following:
                    758:         #    1. Take the list of parameter names
                    759:         #    2. look through the list for ones that match the parameter we want
                    760:         #    3. If there are no collisions, return the one that matches
                    761:         #    4. If there is a collision, return 'bad parameter name error'
                    762:         my $returnvalue = '';
                    763:         my @matches = ();
                    764:         $#matches = -1;
                    765:         study $expression;
                    766:         foreach $parameter (keys(%c)) {
                    767:             push @matches,$parameter if ($parameter =~ /$expression/);
                    768:         }
                    769:         if ($#matches == 0) {
                    770:             $returnvalue = '$c{\''.$matches[0].'\'}';
1.100     matthew   771:         } elsif ($#matches > 0) {
                    772:             # more than one match.  Look for a concise one
                    773:             $returnvalue =  "'non-unique parameter name : $expression'";
                    774:             foreach (@matches) {
                    775:                 if (/^$expression$/) {
                    776:                     $returnvalue = '$c{\''.$_.'\'}';
                    777:                 }
                    778:             }
1.88      matthew   779:         } else {
                    780:             $returnvalue =  "'bad parameter name : $expression'";
                    781:         }
                    782:         return $returnvalue;
1.59      www       783:     }
                    784: }
                    785: 
1.1       www       786: sub sett {
                    787:     %t=();
1.16      www       788:     my $pattern='';
                    789:     if ($sheettype eq 'assesscalc') {
                    790: 	$pattern='A';
                    791:     } else {
                    792:         $pattern='[A-Z]';
                    793:     }
1.97      www       794: 
                    795: # Deal with the template row
1.78      matthew   796:     foreach (keys(%f)) {
1.20      www       797: 	if ($_=~/template\_(\w)/) {
                    798: 	  my $col=$1;
                    799:           unless ($col=~/^$pattern/) {
1.78      matthew   800: 	    foreach (keys(%f)) {
1.20      www       801: 	      if ($_=~/A(\d+)/) {
                    802: 		my $trow=$1;
                    803:                 if ($trow) {
1.88      matthew   804:                     # Get the name of this cell
1.20      www       805: 		    my $lb=$col.$trow;
1.88      matthew   806:                     # Grab the template declaration
1.20      www       807:                     $t{$lb}=$f{'template_'.$col};
1.88      matthew   808:                     # Replace '#' with the row number
1.20      www       809:                     $t{$lb}=~s/\#/$trow/g;
1.88      matthew   810:                     # Replace '....' with ','
1.20      www       811:                     $t{$lb}=~s/\.\.+/\,/g;
1.88      matthew   812:                     # Replace 'A0' with the value from 'A0'
1.20      www       813:                     $t{$lb}=~s/(^|[^\"\'])([A-Za-z]\d+)/$1\$v\{\'$2\'\}/g;
1.88      matthew   814:                     # Replace parameters
1.59      www       815:                     $t{$lb}=~s/(^|[^\"\'])\[([^\]]+)\]/$1.&expandnamed($2)/ge;
1.20      www       816:                 }
                    817: 	      }
1.78      matthew   818: 	    }
1.20      www       819: 	  }
                    820:       }
1.78      matthew   821:     }
1.97      www       822: 
                    823: # Deal with the normal cells
1.78      matthew   824:     foreach (keys(%f)) {
1.20      www       825: 	if (($f{$_}) && ($_!~/template\_/)) {
1.42      www       826:             my $matches=($_=~/^$pattern(\d+)/);
                    827:             if  (($matches) && ($1)) {
1.6       www       828: 	        unless ($f{$_}=~/^\!/) {
                    829: 		    $t{$_}=$c{$_};
                    830:                 }
                    831:             } else {
                    832: 	       $t{$_}=$f{$_};
1.7       www       833:                $t{$_}=~s/\.\.+/\,/g;
                    834:                $t{$_}=~s/(^|[^\"\'])([A-Za-z]\d+)/$1\$v\{\'$2\'\}/g;
1.59      www       835:                $t{$_}=~s/(^|[^\"\'])\[([^\]]+)\]/$1.&expandnamed($2)/ge;
1.6       www       836:             }
1.1       www       837:         }
1.78      matthew   838:     }
1.97      www       839: # For inserted lines, [B-Z] is also valid
                    840: 
                    841:     unless ($sheettype eq 'assesscalc') {
                    842:        foreach (keys(%f)) {
                    843: 	   if ($_=~/[B-Z](\d+)/) {
                    844: 	       if ($f{'A'.$1}=~/^[\~\-]/) {
                    845:   	          $t{$_}=$f{$_};
                    846:                   $t{$_}=~s/\.\.+/\,/g;
                    847:                   $t{$_}=~s/(^|[^\"\'])([A-Za-z]\d+)/$1\$v\{\'$2\'\}/g;
                    848:                   $t{$_}=~s/(^|[^\"\'])\[([^\]]+)\]/$1.&expandnamed($2)/ge;
                    849:                }
                    850:            }
                    851:        }
                    852:     }
                    853: 
1.88      matthew   854:     # For some reason 'A0' gets special treatment...  This seems superfluous
                    855:     # but I imagine it is here for a reason.
1.17      www       856:     $t{'A0'}=$f{'A0'};
                    857:     $t{'A0'}=~s/\.\.+/\,/g;
                    858:     $t{'A0'}=~s/(^|[^\"\'])([A-Za-z]\d+)/$1\$v\{\'$2\'\}/g;
1.59      www       859:     $t{'A0'}=~s/(^|[^\"\'])\[([^\]]+)\]/$1.&expandnamed($2)/ge;
1.1       www       860: }
                    861: 
1.4       www       862: sub calc {
1.95      www       863:     undef %v;
1.4       www       864:     &sett();
1.1       www       865:     my $notfinished=1;
1.97      www       866:     my $lastcalc='';
1.1       www       867:     my $depth=0;
                    868:     while ($notfinished) {
                    869: 	$notfinished=0;
1.78      matthew   870:         foreach (keys(%t)) {
1.1       www       871:             my $old=$v{$_};
1.96      www       872:             $v{$_}=eval $t{$_};
1.1       www       873: 	    if ($@) {
1.96      www       874: 		undef %v;
                    875:                 return $_.': '.$@;
1.1       www       876:             }
1.97      www       877: 	    if ($v{$_} ne $old) { $notfinished=1; $lastcalc=$_; }
1.78      matthew   878:         }
1.1       www       879:         $depth++;
                    880:         if ($depth>100) {
1.95      www       881: 	    undef %v;
1.97      www       882:             return $lastcalc.': Maximum calculation depth exceeded';
1.1       www       883:         }
                    884:     }
1.96      www       885:     return '';
1.1       www       886: }
                    887: 
1.21      www       888: sub templaterow {
                    889:     my @cols=();
                    890:     $cols[0]='<b><font size=+1>Template</font></b>';
1.78      matthew   891:     foreach ('A','B','C','D','E','F','G','H','I','J','K','L','M',
                    892: 	     'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
                    893: 	     'a','b','c','d','e','f','g','h','i','j','k','l','m',
                    894: 	     'n','o','p','q','r','s','t','u','v','w','x','y','z') {
1.21      www       895:         my $fm=$f{'template_'.$_};
                    896:         $fm=~s/[\'\"]/\&\#34;/g;
                    897:         $cols[$#cols+1]="'template_$_','$fm'".'___eq___'.$fm;
1.78      matthew   898:     }
1.21      www       899:     return @cols;
                    900: }
                    901: 
1.16      www       902: sub outrowassess {
1.6       www       903:     my $n=shift;
                    904:     my @cols=();
                    905:     if ($n) {
1.55      www       906:        my ($usy,$ufn)=split(/\_\_\&\&\&\_\_/,$f{'A'.$n});
1.102   ! matthew   907:       if ($rowlabel{$usy}) {
        !           908:        $cols[0]=$rowlabel{$usy}.'<br>'.
1.55      www       909:                 '<select name="sel_'.$n.'" onChange="changesheet('.$n.
                    910:                 ')"><option name="default">Default</option>';
1.92      www       911:       } else { $cols[0]=''; }
1.78      matthew   912:        foreach (@os) {
1.55      www       913:            $cols[0].='<option name="'.$_.'"';
                    914:             if ($ufn eq $_) {
                    915:                $cols[0].=' selected';
                    916:             }
                    917:             $cols[0].='>'.$_.'</option>';
1.78      matthew   918:        }
1.55      www       919:        $cols[0].='</select>';
1.6       www       920:     } else {
                    921:        $cols[0]='<b><font size=+1>Export</font></b>';
                    922:     }
1.78      matthew   923:     foreach ('A','B','C','D','E','F','G','H','I','J','K','L','M',
                    924: 	     'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
                    925: 	     'a','b','c','d','e','f','g','h','i','j','k','l','m',
                    926: 	     'n','o','p','q','r','s','t','u','v','w','x','y','z') {
1.6       www       927:         my $fm=$f{$_.$n};
                    928:         $fm=~s/[\'\"]/\&\#34;/g;
1.83      matthew   929:         push(@cols,"'$_$n','$fm'".'___eq___'.$v{$_.$n});
1.78      matthew   930:     }
1.6       www       931:     return @cols;
                    932: }
                    933: 
1.18      www       934: sub outrow {
                    935:     my $n=shift;
                    936:     my @cols=();
                    937:     if ($n) {
1.102   ! matthew   938:        $cols[0]=$rowlabel{$f{'A'.$n}};
1.18      www       939:     } else {
                    940:        $cols[0]='<b><font size=+1>Export</font></b>';
                    941:     }
1.78      matthew   942:     foreach ('A','B','C','D','E','F','G','H','I','J','K','L','M',
                    943: 	     'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
                    944: 	     'a','b','c','d','e','f','g','h','i','j','k','l','m',
                    945: 	     'n','o','p','q','r','s','t','u','v','w','x','y','z') {
1.18      www       946:         my $fm=$f{$_.$n};
                    947:         $fm=~s/[\'\"]/\&\#34;/g;
                    948:         $cols[$#cols+1]="'$_$n','$fm'".'___eq___'.$v{$_.$n};
1.78      matthew   949:     }
1.18      www       950:     return @cols;
                    951: }
                    952: 
1.14      www       953: sub exportrowa {
1.28      www       954:     my @exportarray=();
1.78      matthew   955:     foreach ('A','B','C','D','E','F','G','H','I','J','K','L','M',
                    956: 	     'N','O','P','Q','R','S','T','U','V','W','X','Y','Z') {
1.28      www       957: 	$exportarray[$#exportarray+1]=$v{$_.'0'};
1.78      matthew   958:     } 
1.28      www       959:     return @exportarray;
1.14      www       960: }
                    961: 
1.4       www       962: # ------------------------------------------- End of "Inside of the safe space"
                    963: ENDDEFS
                    964:     $safeeval->reval($code);
                    965:     return $safeeval;
                    966: }
                    967: 
                    968: # ------------------------------------------------ Add or change formula values
                    969: 
                    970: sub setformulas {
1.34      www       971:     my ($safeeval,%f)=@_;
                    972:     %{$safeeval->varglob('f')}=%f;
1.6       www       973: }
                    974: 
                    975: # ------------------------------------------------ Add or change formula values
                    976: 
                    977: sub setconstants {
1.34      www       978:     my ($safeeval,%c)=@_;
                    979:     %{$safeeval->varglob('c')}=%c;
1.6       www       980: }
                    981: 
1.55      www       982: # --------------------------------------------- Set names of other spreadsheets
                    983: 
                    984: sub setothersheets {
                    985:     my ($safeeval,@os)=@_;
                    986:     @{$safeeval->varglob('os')}=@os;
                    987: }
                    988: 
1.6       www       989: # ------------------------------------------------ Add or change formula values
                    990: 
                    991: sub setrowlabels {
1.102   ! matthew   992:     my ($safeeval,%rowlabel)=@_;
        !           993:     %{$safeeval->varglob('rowlabel')}=%rowlabel;
1.4       www       994: }
                    995: 
                    996: # ------------------------------------------------------- Calculate spreadsheet
                    997: 
                    998: sub calcsheet {
                    999:     my $safeeval=shift;
1.95      www      1000:     return $safeeval->reval('&calc();');
1.4       www      1001: }
                   1002: 
                   1003: # ------------------------------------------------------------------ Get values
                   1004: 
                   1005: sub getvalues {
                   1006:     my $safeeval=shift;
                   1007:     return $safeeval->reval('%v');
                   1008: }
                   1009: 
                   1010: # ---------------------------------------------------------------- Get formulas
                   1011: 
                   1012: sub getformulas {
                   1013:     my $safeeval=shift;
1.34      www      1014:     return %{$safeeval->varglob('f')};
1.4       www      1015: }
                   1016: 
1.97      www      1017: # ----------------------------------------------------- Get value of $f{'A'.$n}
                   1018: 
                   1019: sub getfa {
                   1020:     my ($safeeval,$n)=@_;
                   1021:     return $safeeval->reval('$f{"A'.$n.'"}');
                   1022: }
                   1023: 
1.5       www      1024: # -------------------------------------------------------------------- Get type
                   1025: 
                   1026: sub gettype {
                   1027:     my $safeeval=shift;
                   1028:     return $safeeval->reval('$sheettype');
                   1029: }
1.27      www      1030: 
1.6       www      1031: # ------------------------------------------------------------------ Set maxrow
                   1032: 
                   1033: sub setmaxrow {
                   1034:     my ($safeeval,$row)=@_;
                   1035:     $safeeval->reval('$maxrow='.$row.';');
                   1036: }
                   1037: 
                   1038: # ------------------------------------------------------------------ Get maxrow
                   1039: 
                   1040: sub getmaxrow {
                   1041:     my $safeeval=shift;
                   1042:     return $safeeval->reval('$maxrow');
                   1043: }
1.5       www      1044: 
1.6       www      1045: # ---------------------------------------------------------------- Set filename
1.5       www      1046: 
                   1047: sub setfilename {
                   1048:     my ($safeeval,$fn)=@_;
1.11      www      1049:     $safeeval->reval('$filename="'.$fn.'";');
1.5       www      1050: }
                   1051: 
1.6       www      1052: # ---------------------------------------------------------------- Get filename
1.5       www      1053: 
                   1054: sub getfilename {
                   1055:     my $safeeval=shift;
                   1056:     return $safeeval->reval('$filename');
                   1057: }
1.29      www      1058: 
1.28      www      1059: # --------------------------------------------------------------- Get course ID
                   1060: 
                   1061: sub getcid {
                   1062:     my $safeeval=shift;
                   1063:     return $safeeval->reval('$cid');
                   1064: }
1.14      www      1065: 
1.29      www      1066: # --------------------------------------------------------- Get course filename
                   1067: 
                   1068: sub getcfn {
                   1069:     my $safeeval=shift;
                   1070:     return $safeeval->reval('$cfn');
                   1071: }
                   1072: 
1.27      www      1073: # ----------------------------------------------------------- Get course number
                   1074: 
                   1075: sub getcnum {
                   1076:     my $safeeval=shift;
                   1077:     return $safeeval->reval('$cnum');
                   1078: }
                   1079: 
                   1080: # ------------------------------------------------------------- Get course home
                   1081: 
                   1082: sub getchome {
                   1083:     my $safeeval=shift;
                   1084:     return $safeeval->reval('$chome');
                   1085: }
                   1086: 
                   1087: # ----------------------------------------------------------- Get course domain
                   1088: 
                   1089: sub getcdom {
                   1090:     my $safeeval=shift;
                   1091:     return $safeeval->reval('$cdom');
                   1092: }
                   1093: 
                   1094: # ---------------------------------------------------------- Get course section
                   1095: 
                   1096: sub getcsec {
                   1097:     my $safeeval=shift;
                   1098:     return $safeeval->reval('$csec');
                   1099: }
                   1100: 
                   1101: # --------------------------------------------------------------- Get user name
                   1102: 
                   1103: sub getuname {
                   1104:     my $safeeval=shift;
                   1105:     return $safeeval->reval('$uname');
                   1106: }
                   1107: 
                   1108: # ------------------------------------------------------------- Get user domain
                   1109: 
                   1110: sub getudom {
                   1111:     my $safeeval=shift;
                   1112:     return $safeeval->reval('$udom');
                   1113: }
                   1114: 
                   1115: # --------------------------------------------------------------- Get user home
                   1116: 
                   1117: sub getuhome {
                   1118:     my $safeeval=shift;
                   1119:     return $safeeval->reval('$uhome');
                   1120: }
                   1121: 
                   1122: # -------------------------------------------------------------------- Get symb
                   1123: 
                   1124: sub getusymb {
                   1125:     my $safeeval=shift;
                   1126:     return $safeeval->reval('$usymb');
                   1127: }
                   1128: 
1.14      www      1129: # ------------------------------------------------------------- Export of A-row
                   1130: 
1.28      www      1131: sub exportdata {
1.14      www      1132:     my $safeeval=shift;
                   1133:     return $safeeval->reval('&exportrowa()');
                   1134: }
                   1135: 
1.55      www      1136: 
1.5       www      1137: # ========================================================== End of Spreadsheet
                   1138: # =============================================================================
                   1139: 
1.27      www      1140: #
                   1141: # Procedures for screen output
                   1142: #
1.6       www      1143: # --------------------------------------------- Produce output row n from sheet
                   1144: 
                   1145: sub rown {
                   1146:     my ($safeeval,$n)=@_;
1.21      www      1147:     my $defaultbg;
1.24      www      1148:     my $rowdata='';
1.61      www      1149:     my $dataflag=0;
1.21      www      1150:     unless ($n eq '-') {
                   1151:        $defaultbg=((($n-1)/5)==int(($n-1)/5))?'#E0E0':'#FFFF';
                   1152:     } else {
                   1153:        $defaultbg='#E0FF';
                   1154:     }
1.71      www      1155:     unless ($ENV{'form.showcsv'}) {
                   1156:        $rowdata.="\n<tr><td><b><font size=+1>$n</font></b></td>";
                   1157:     } else {
                   1158:        $rowdata.="\n".'"'.$n.'"';
                   1159:     }
1.6       www      1160:     my $showf=0;
1.16      www      1161:     my $proc;
1.97      www      1162:     my $maxred=1;
1.62      www      1163:     my $sheettype=&gettype($safeeval);
                   1164:     if ($sheettype eq 'studentcalc') {
1.55      www      1165:         $proc='&outrowassess';
                   1166:         $maxred=26;
                   1167:     } else {
                   1168:         $proc='&outrow';
                   1169:     }
1.62      www      1170:     if ($sheettype eq 'assesscalc') {
1.18      www      1171:         $maxred=1;
1.16      www      1172:     } else {
1.18      www      1173:         $maxred=26;
1.16      www      1174:     }
1.97      www      1175:     if (&getfa($safeeval,$n)=~/^[\~\-]/) { $maxred=1; }
1.61      www      1176:     if ($n eq '-') { $proc='&templaterow'; $n=-1; $dataflag=1; }
1.78      matthew  1177:     foreach ($safeeval->reval($proc.'('.$n.')')) {
1.9       www      1178:        my $bgcolor=$defaultbg.((($showf-1)/5==int(($showf-1)/5))?'99':'DD');
1.6       www      1179:        my ($fm,$vl)=split(/\_\_\_eq\_\_\_/,$_);
1.62      www      1180:        if ((($vl ne '') || ($vl eq '0')) &&
                   1181:            (($showf==1) || ($sheettype ne 'studentcalc'))) { $dataflag=1; }
1.6       www      1182:        if ($showf==0) { $vl=$_; }
1.71      www      1183:       unless ($ENV{'form.showcsv'}) {
1.18      www      1184:        if ($showf<=$maxred) { $bgcolor='#FFDDDD'; }
1.9       www      1185:        if (($n==0) && ($showf<=26)) { $bgcolor='#CCCCFF'; } 
1.18      www      1186:        if (($showf>$maxred) || ((!$n) && ($showf>0))) {
1.6       www      1187: 	   if ($vl eq '') {
1.9       www      1188: 	       $vl='<font size=+2 color='.$bgcolor.'>&#35;</font>';
1.6       www      1189:            }
                   1190:            $rowdata.=
1.10      www      1191:        '<td bgcolor='.$bgcolor.'><a href="javascript:celledit('.$fm.');">'.$vl.
1.6       www      1192: 	       '</a></td>';
                   1193:        } else {
1.9       www      1194:            $rowdata.='<td bgcolor='.$bgcolor.'>&nbsp;'.$vl.'&nbsp;</td>';
1.6       www      1195:        }
1.71      www      1196:       } else {
                   1197: 	  $rowdata.=',"'.$vl.'"';
                   1198:       }
1.6       www      1199:        $showf++;
1.78      matthew  1200:     }  # End of foreach($safeval...)
1.61      www      1201:     if ($ENV{'form.showall'} || ($dataflag)) {
1.71      www      1202:        return $rowdata.($ENV{'form.showcsv'}?'':'</tr>');
1.61      www      1203:     } else {
1.63      www      1204:        return '';
1.61      www      1205:     }
1.6       www      1206: }
                   1207: 
                   1208: # ------------------------------------------------------------- Print out sheet
                   1209: 
                   1210: sub outsheet {
1.24      www      1211:     my ($r,$safeeval)=@_;
1.18      www      1212:     my $maxred;
                   1213:     my $realm;
                   1214:     if (&gettype($safeeval) eq 'assesscalc') {
                   1215:         $maxred=1;
                   1216:         $realm='Assessment';
                   1217:     } elsif (&gettype($safeeval) eq 'studentcalc') {
                   1218:         $maxred=26;
                   1219:         $realm='User';
                   1220:     } else {
                   1221:         $maxred=26;
                   1222:         $realm='Course';
                   1223:     }
                   1224:     my $maxyellow=52-$maxred;
1.71      www      1225:     my $tabledata;
                   1226:     unless ($ENV{'form.showcsv'}) {
                   1227:        $tabledata=
1.24      www      1228:         '<table border=2><tr><th colspan=2 rowspan=2><font size=+2>'.
1.18      www      1229:                   $realm.'</font></th>'.
                   1230:                   '<td bgcolor=#FFDDDD colspan='.$maxred.
                   1231:                   '><b><font size=+1>Import</font></b></td>'.
                   1232:                   '<td colspan='.$maxyellow.
                   1233: 		  '><b><font size=+1>Calculations</font></b></td></tr><tr>';
1.102   ! matthew  1234:        my $showf=0;
        !          1235:        foreach ('A','B','C','D','E','F','G','H','I','J','K','L','M',
        !          1236:                 'N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
        !          1237:                 'a','b','c','d','e','f','g','h','i','j','k','l','m',
        !          1238:                 'n','o','p','q','r','s','t','u','v','w','x','y','z') {
        !          1239:            $showf++;
        !          1240:            if ($showf<=$maxred) { 
        !          1241:                $tabledata.='<td bgcolor="#FFDDDD">'; 
        !          1242:            } else {
        !          1243:                $tabledata.='<td>';
        !          1244:            }
        !          1245:            $tabledata.="<b><font size=+1>$_</font></b></td>";
        !          1246:        }
        !          1247:        $tabledata.='</tr>'.&rown($safeeval,'-').&rown($safeeval,0);
1.71      www      1248:    } else { $tabledata='<pre>'; }
                   1249: 
                   1250:     $r->print($tabledata);
                   1251: 
1.6       www      1252:     my $row;
                   1253:     my $maxrow=&getmaxrow($safeeval);
1.64      www      1254: 
1.65      www      1255:     my @sortby=();
                   1256:     my @sortidx=();
                   1257:     for ($row=1;$row<=$maxrow;$row++) {
                   1258:        $sortby[$row-1]=$safeeval->reval('$f{"A'.$row.'"}');
                   1259:        $sortidx[$row-1]=$row-1;
                   1260:     }
                   1261:     @sortidx=sort { $sortby[$a] cmp $sortby[$b]; } @sortidx;
1.63      www      1262:         my $what='Student';
                   1263:         if (&gettype($safeeval) eq 'assesscalc') {
                   1264: 	    $what='Item';
                   1265: 	} elsif (&gettype($safeeval) eq 'studentcalc') {
                   1266:             $what='Assessment';
                   1267:         }
1.65      www      1268: 
                   1269:     my $n=0;
                   1270:     for ($row=0;$row<$maxrow;$row++) {
1.102   ! matthew  1271:         my $thisrow=&rown($safeeval,$sortidx[$row]+1);
        !          1272:         if ($thisrow) {
        !          1273:             if (($n/25==int($n/25)) && (!$ENV{'form.showcsv'})) {
        !          1274:                 $r->print("</table>\n<br>\n");
        !          1275:                 $r->rflush();
        !          1276:                 $r->print('<table border=2><tr><td>&nbsp;<td>'.$what.'</td>');
        !          1277:                 $r->print('<td>'.join('</td><td>',
        !          1278:                                       (split(//,'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
        !          1279:                                             'abcdefghijklmnopqrstuvwxyz'))).
        !          1280:                           "</td></tr>\n");
        !          1281:             }
        !          1282:             $n++;
        !          1283:             $r->print($thisrow);
1.78      matthew  1284:         }
1.6       www      1285:     }
1.71      www      1286:     $r->print($ENV{'form.showcsv'}?'</pre>':'</table>');
1.6       www      1287: }
                   1288: 
1.27      www      1289: #
1.55      www      1290: # ----------------------------------------------- Read list of available sheets
                   1291: # 
                   1292: sub othersheets {
                   1293:     my ($safeeval,$stype)=@_;
1.81      matthew  1294:     #
1.55      www      1295:     my $cnum=&getcnum($safeeval);
                   1296:     my $cdom=&getcdom($safeeval);
                   1297:     my $chome=&getchome($safeeval);
1.81      matthew  1298:     #
1.55      www      1299:     my @alternatives=();
1.81      matthew  1300:     my %results=&Apache::lonnet::dump($stype.'_spreadsheets',$cdom,$cnum);
                   1301:     my ($tmp) = keys(%results);
                   1302:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
                   1303:         @alternatives = sort (keys(%results));
                   1304:     }
1.55      www      1305:     return @alternatives; 
                   1306: }
                   1307: 
1.82      matthew  1308: 
                   1309: #
                   1310: # -------------------------------------- Parse a spreadsheet
                   1311: # 
                   1312: sub parse_sheet {
                   1313:     # $sheetxml is a scalar reference or a scalar
                   1314:     my ($sheetxml) = @_;
                   1315:     if (! ref($sheetxml)) {
                   1316:         my $tmp = $sheetxml;
                   1317:         $sheetxml = \$tmp;
                   1318:     }
                   1319:     my %f;
                   1320:     my $parser=HTML::TokeParser->new($sheetxml);
                   1321:     my $token;
                   1322:     while ($token=$parser->get_token) {
                   1323:         if ($token->[0] eq 'S') {
                   1324:             if ($token->[1] eq 'field') {
                   1325:                 $f{$token->[2]->{'col'}.$token->[2]->{'row'}}=
                   1326:                     $parser->get_text('/field');
                   1327:             }
                   1328:             if ($token->[1] eq 'template') {
                   1329:                 $f{'template_'.$token->[2]->{'col'}}=
                   1330:                     $parser->get_text('/template');
                   1331:             }
                   1332:         }
                   1333:     }
                   1334:     return \%f;
                   1335: }
                   1336: 
1.55      www      1337: #
1.27      www      1338: # -------------------------------------- Read spreadsheet formulas for a course
                   1339: #
                   1340: 
                   1341: sub readsheet {
                   1342:   my ($safeeval,$fn)=@_;
                   1343:   my $stype=&gettype($safeeval);
                   1344:   my $cnum=&getcnum($safeeval);
1.28      www      1345:   my $cdom=&getcdom($safeeval);
                   1346:   my $chome=&getchome($safeeval);
1.27      www      1347: 
1.83      matthew  1348:   if (! defined($fn)) {
1.82      matthew  1349:       # There is no filename. Look for defaults in course and global, cache
1.28      www      1350:       unless ($fn=$defaultsheets{$cnum.'_'.$cdom.'_'.$stype}) {
1.82      matthew  1351:           my %tmphash = &Apache::lonnet::get('environment',
                   1352:                                              ['spreadsheet_default_'.$stype],
                   1353:                                              $cdom,$cnum);
                   1354:           my ($tmp) = keys(%tmphash);
                   1355:           if ($tmp =~ /^(con_lost|error|no_such_host)/i) {
                   1356:               $fn = 'default_'.$stype;
                   1357:           } else {
                   1358:               $fn = $tmphash{'spreadsheet_default_'.$stype};
                   1359:           } 
1.90      www      1360:           unless (($fn) && ($fn!~/^error\:/)) {
                   1361:  	     $fn='default_'.$stype;
                   1362:           }
1.82      matthew  1363:           $defaultsheets{$cnum.'_'.$cdom.'_'.$stype}=$fn; 
                   1364:       }
1.27      www      1365:   }
                   1366: 
                   1367: # ---------------------------------------------------------- fn now has a value
                   1368: 
                   1369:   &setfilename($safeeval,$fn);
                   1370: 
                   1371: # ------------------------------------------------------ see if sheet is cached
                   1372:   my $fstring='';
1.28      www      1373:   if ($fstring=$spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}) {
                   1374:       &setformulas($safeeval,split(/\_\_\_\;\_\_\_/,$fstring));
1.27      www      1375:   } else {
1.6       www      1376: 
1.27      www      1377: # ---------------------------------------------------- Not cached, need to read
1.5       www      1378: 
1.27      www      1379:      my %f=();
1.3       www      1380: 
1.27      www      1381:      if ($fn=~/^default\_/) {
1.82      matthew  1382:          my $sheetxml='';
1.10      www      1383:          my $fh;
1.73      www      1384:          my $dfn=$fn;
                   1385:          $dfn=~s/\_/\./g;
                   1386:          if ($fh=Apache::File->new($includedir.'/'.$dfn)) {
1.82      matthew  1387:              $sheetxml=join('',<$fh>);
                   1388:          } else {
1.73      www      1389:              $sheetxml='<field row="0" col="A">"Error"</field>';
1.82      matthew  1390:          }
1.83      matthew  1391:          %f=%{&parse_sheet(\$sheetxml)};
1.82      matthew  1392:      } elsif($fn=~/\/*\.spreadsheet$/) {
1.83      matthew  1393:          my $sheetxml=&Apache::lonnet::getfile
                   1394:              (&Apache::lonnet::filelocation('',$fn));
                   1395:          if ($sheetxml == -1) {
1.82      matthew  1396:              $sheetxml='<field row="0" col="A">"Error loading spreadsheet '
                   1397:                  .$fn.'"</field>';
                   1398:          }
1.83      matthew  1399:          %f=%{&parse_sheet(\$sheetxml)};
1.82      matthew  1400:      } else {
                   1401:          my $sheet='';
                   1402:          my %tmphash = &Apache::lonnet::dump($fn,$cdom,$cnum);
                   1403:          my ($tmp) = keys(%tmphash);
                   1404:          unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
                   1405:              foreach (keys(%tmphash)) {
                   1406:                  $f{$_}=$tmphash{$_};
1.20      www      1407:              }
1.82      matthew  1408:          }
                   1409:      }
1.27      www      1410: # --------------------------------------------------------------- Cache and set
1.28      www      1411:        $spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}=join('___;___',%f);  
1.27      www      1412:        &setformulas($safeeval,%f);
1.3       www      1413:     }
                   1414: }
                   1415: 
1.28      www      1416: # -------------------------------------------------------- Make new spreadsheet
                   1417: 
                   1418: sub makenewsheet {
                   1419:     my ($uname,$udom,$stype,$usymb)=@_;
1.36      www      1420:     my $safeeval=initsheet($stype);
1.28      www      1421:     $safeeval->reval(
1.29      www      1422:        '$uname="'.$uname.
                   1423:       '";$udom="'.$udom.
                   1424:       '";$uhome="'.&Apache::lonnet::homeserver($uname,$udom).
                   1425:       '";$sheettype="'.$stype.
                   1426:       '";$usymb="'.$usymb.
1.30      www      1427:       '";$csec="'.&Apache::lonnet::usection($udom,$uname,
                   1428:                                             $ENV{'request.course.id'}).
1.29      www      1429:       '";$cid="'.$ENV{'request.course.id'}.
                   1430:       '";$cfn="'.$ENV{'request.course.fn'}.
                   1431:       '";$cnum="'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.
                   1432:       '";$cdom="'.$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.
                   1433:       '";$chome="'.$ENV{'course.'.$ENV{'request.course.id'}.'.home'}.'";');
1.28      www      1434:     return $safeeval;
                   1435: }
                   1436: 
1.19      www      1437: # ------------------------------------------------------------ Save spreadsheet
                   1438: 
                   1439: sub writesheet {
1.28      www      1440:   my ($safeeval,$makedef)=@_;
                   1441:   my $cid=&getcid($safeeval);
                   1442:   if (&Apache::lonnet::allowed('opa',$cid)) {
1.19      www      1443:     my %f=&getformulas($safeeval);
1.28      www      1444:     my $stype=&gettype($safeeval);
                   1445:     my $cnum=&getcnum($safeeval);
                   1446:     my $cdom=&getcdom($safeeval);
                   1447:     my $chome=&getchome($safeeval);
                   1448:     my $fn=&getfilename($safeeval);
                   1449: 
                   1450: # ------------------------------------------------------------- Cache new sheet
                   1451:     $spreadsheets{$cnum.'_'.$cdom.'_'.$stype.'_'.$fn}=join('___;___',%f);    
                   1452: # ----------------------------------------------------------------- Write sheet
1.19      www      1453:     my $sheetdata='';
1.78      matthew  1454:     foreach (keys(%f)) {
1.56      www      1455:      unless ($f{$_} eq 'import') {
1.19      www      1456:        $sheetdata.=&Apache::lonnet::escape($_).'='.
                   1457: 	   &Apache::lonnet::escape($f{$_}).'&';
1.56      www      1458:      }
1.78      matthew  1459:     }
1.19      www      1460:     $sheetdata=~s/\&$//;
1.28      www      1461:     my $reply=&Apache::lonnet::reply('put:'.$cdom.':'.$cnum.':'.$fn.':'.
                   1462:               $sheetdata,$chome);
1.22      www      1463:     if ($reply eq 'ok') {
1.28      www      1464:           $reply=&Apache::lonnet::reply('put:'.$cdom.':'.$cnum.':'.
1.30      www      1465:               $stype.'_spreadsheets:'.
1.55      www      1466:               &Apache::lonnet::escape($fn).'='.$ENV{'user.name'}.'@'.
                   1467:                                                $ENV{'user.domain'},
1.28      www      1468:               $chome);
                   1469:           if ($reply eq 'ok') {
                   1470:               if ($makedef) { 
                   1471:                 return &Apache::lonnet::reply('put:'.$cdom.':'.$cnum.
                   1472:                                 ':environment:spreadsheet_default_'.$stype.'='.
                   1473:                                 &Apache::lonnet::escape($fn),
                   1474:                                 $chome);
                   1475: 	      } else {
                   1476: 		  return $reply;
                   1477:     	      }
                   1478: 	   } else {
                   1479: 	       return $reply;
                   1480:            }
1.22      www      1481:       } else {
                   1482: 	  return $reply;
                   1483:       }
                   1484:   }
                   1485:   return 'unauthorized';
1.19      www      1486: }
                   1487: 
1.10      www      1488: # ----------------------------------------------- Make a temp copy of the sheet
1.28      www      1489: # "Modified workcopy" - interactive only
                   1490: #
1.10      www      1491: 
                   1492: sub tmpwrite {
1.28      www      1493:     my $safeeval=shift;
                   1494:     my $fn=$ENV{'user.name'}.'_'.
                   1495:            $ENV{'user.domain'}.'_spreadsheet_'.&getusymb($safeeval).'_'.
                   1496:            &getfilename($safeeval);
1.10      www      1497:     $fn=~s/\W/\_/g;
                   1498:     $fn=$tmpdir.$fn.'.tmp';
                   1499:     my $fh;
                   1500:     if ($fh=Apache::File->new('>'.$fn)) {
                   1501: 	print $fh join("\n",&getformulas($safeeval));
                   1502:     }
                   1503: }
                   1504: 
                   1505: # ---------------------------------------------------------- Read the temp copy
                   1506: 
                   1507: sub tmpread {
1.28      www      1508:     my ($safeeval,$nfield,$nform)=@_;
                   1509:     my $fn=$ENV{'user.name'}.'_'.
                   1510:            $ENV{'user.domain'}.'_spreadsheet_'.&getusymb($safeeval).'_'.
                   1511:            &getfilename($safeeval);
1.10      www      1512:     $fn=~s/\W/\_/g;
                   1513:     $fn=$tmpdir.$fn.'.tmp';
                   1514:     my $fh;
                   1515:     my %fo=();
1.92      www      1516:     my $countrows=0;
1.10      www      1517:     if ($fh=Apache::File->new($fn)) {
                   1518:         my $name;
                   1519:         while ($name=<$fh>) {
                   1520: 	    chomp($name);
                   1521:             my $value=<$fh>;
                   1522:             chomp($value);
                   1523:             $fo{$name}=$value;
1.93      www      1524:             if ($name=~/^A(\d+)$/) {
                   1525: 		if ($1>$countrows) {
                   1526: 		    $countrows=$1;
                   1527:                 }
                   1528:             }
1.10      www      1529:         }
                   1530:     }
1.55      www      1531:     if ($nform eq 'changesheet') {
1.57      www      1532:         $fo{'A'.$nfield}=(split(/\_\_\&\&\&\_\_/,$fo{'A'.$nfield}))[0];
1.55      www      1533:         unless ($ENV{'form.sel_'.$nfield} eq 'Default') {
1.57      www      1534: 	    $fo{'A'.$nfield}.='__&&&__'.$ENV{'form.sel_'.$nfield};
1.55      www      1535:         }
1.92      www      1536:     } elsif ($nfield eq 'insertrow') {
1.93      www      1537:         $countrows++;
1.95      www      1538:         my $newrow=substr('000000'.$countrows,-7);
1.92      www      1539:         if ($nform eq 'top') {
1.94      www      1540: 	    $fo{'A'.$countrows}='--- '.$newrow;
1.92      www      1541:         } else {
1.94      www      1542:             $fo{'A'.$countrows}='~~~ '.$newrow;
1.92      www      1543:         }
1.55      www      1544:     } else {
                   1545:        if ($nfield) { $fo{$nfield}=$nform; }
                   1546:     }
1.10      www      1547:     &setformulas($safeeval,%fo);
                   1548: }
                   1549: 
1.11      www      1550: # ================================================================== Parameters
                   1551: # -------------------------------------------- Figure out a cascading parameter
1.28      www      1552: #
1.29      www      1553: # For this function to work
                   1554: #
                   1555: # * parmhash needs to be tied
                   1556: # * courseopt and useropt need to be initialized for this user and course
                   1557: #
1.11      www      1558: 
                   1559: sub parmval {
1.28      www      1560:     my ($what,$safeeval)=@_;
                   1561:     my $cid=&getcid($safeeval);
                   1562:     my $csec=&getcsec($safeeval);
                   1563:     my $uname=&getuname($safeeval);
                   1564:     my $udom=&getudom($safeeval);
                   1565:     my $symb=&getusymb($safeeval);
1.11      www      1566: 
                   1567:     unless ($symb) { return ''; }
                   1568:     my $result='';
                   1569: 
                   1570:     my ($mapname,$id,$fn)=split(/\_\_\_/,$symb);
                   1571: # ----------------------------------------------------- Cascading lookup scheme
1.12      www      1572:        my $rwhat=$what;
                   1573:        $what=~s/^parameter\_//;
1.68      www      1574:        $what=~s/\_([^\_]+)$/\.$1/;
1.11      www      1575: 
                   1576:        my $symbparm=$symb.'.'.$what;
                   1577:        my $mapparm=$mapname.'___(all).'.$what;
1.29      www      1578:        my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
1.11      www      1579: 
                   1580:        my $seclevel=
1.28      www      1581:             $usercourseprefix.'.['.
1.11      www      1582: 		$csec.'].'.$what;
                   1583:        my $seclevelr=
1.28      www      1584:             $usercourseprefix.'.['.
1.11      www      1585: 		$csec.'].'.$symbparm;
                   1586:        my $seclevelm=
1.28      www      1587:             $usercourseprefix.'.['.
1.11      www      1588: 		$csec.'].'.$mapparm;
                   1589: 
                   1590:        my $courselevel=
1.28      www      1591:             $usercourseprefix.'.'.$what;
1.11      www      1592:        my $courselevelr=
1.28      www      1593:             $usercourseprefix.'.'.$symbparm;
1.11      www      1594:        my $courselevelm=
1.28      www      1595:             $usercourseprefix.'.'.$mapparm;
1.12      www      1596: 
1.11      www      1597: # ---------------------------------------------------------- fourth, check user
                   1598:       
                   1599:       if ($uname) { 
                   1600: 
                   1601:        if ($useropt{$courselevelr}) { return $useropt{$courselevelr}; }
                   1602: 
                   1603:        if ($useropt{$courselevelm}) { return $useropt{$courselevelm}; }
                   1604: 
                   1605:        if ($useropt{$courselevel}) { return $useropt{$courselevel}; }
                   1606: 
                   1607:       }
                   1608: 
                   1609: # --------------------------------------------------------- third, check course
                   1610:      
                   1611:        if ($csec) {
                   1612:  
                   1613:         if ($courseopt{$seclevelr}) { return $courseopt{$seclevelr}; }
                   1614: 
                   1615:         if ($courseopt{$seclevelm}) { return $courseopt{$seclevelm}; }  
                   1616: 
                   1617:         if ($courseopt{$seclevel}) { return $courseopt{$seclevel}; }
                   1618:   
                   1619:       }
                   1620: 
                   1621:        if ($courseopt{$courselevelr}) { return $courseopt{$courselevelr}; }
                   1622: 
                   1623:        if ($courseopt{$courselevelm}) { return $courseopt{$courselevelm}; }
                   1624: 
                   1625:        if ($courseopt{$courselevel}) { return $courseopt{$courselevel}; }
                   1626: 
                   1627: # ----------------------------------------------------- second, check map parms
                   1628: 
                   1629:        my $thisparm=$parmhash{$symbparm};
                   1630:        if ($thisparm) { return $thisparm; }
                   1631: 
                   1632: # -------------------------------------------------------- first, check default
                   1633: 
1.12      www      1634:        return &Apache::lonnet::metadata($fn,$rwhat.'.default');
1.11      www      1635:         
                   1636: }
                   1637: 
1.23      www      1638: # ---------------------------------------------- Update rows for course listing
1.11      www      1639: 
1.28      www      1640: sub updateclasssheet {
1.23      www      1641:     my $safeeval=shift;
1.28      www      1642:     my $cnum=&getcnum($safeeval);
                   1643:     my $cdom=&getcdom($safeeval);
                   1644:     my $cid=&getcid($safeeval);
                   1645:     my $chome=&getchome($safeeval);
1.102   ! matthew  1646:     #
        !          1647:     # Read class list and row labels
        !          1648:     my %classlist;
        !          1649:     my @tmp = &Apache::lonnet::dump('classlist',$cdom,$cnum);
        !          1650:     if ($tmp[0] !~ /^error/) {
        !          1651:         %classlist = @tmp;
        !          1652:     } else {
        !          1653:         return 'Could not access course data';
        !          1654:     }
        !          1655:     undef @tmp;
        !          1656:     #
1.23      www      1657:     my %currentlist=();
                   1658:     my $now=time;
1.102   ! matthew  1659:     foreach my $student (keys(%classlist)) {
        !          1660:         my ($end,$start)=split(/\:/,$classlist{$student});
        !          1661:         my $active=1;
        !          1662:         $active = 0 if (($end) && ($now>$end));
        !          1663:         $active = 1 if ($ENV{'form.Status'} eq 'Any');
        !          1664:         $active = !$active if ($ENV{'form.Status'} eq 'Expired');
        !          1665:         if ($active) {
        !          1666:             my $rowlabel='';
        !          1667:             my ($studentName,$studentDomain)=split(/\:/,$student);
        !          1668:             my $studentSection=&Apache::lonnet::usection($studentDomain,
        !          1669:                                                          $studentName,$cid);
        !          1670:             if ($studentSection==-1) {
        !          1671:                 unless ($ENV{'form.showcsv'}) {
        !          1672:                     $rowlabel='<font color=red>Data not available: '.
        !          1673:                         $studentName.'</font>';
1.24      www      1674:                 } else {
1.102   ! matthew  1675:                     $rowlabel='ERROR","'.$studentName.
        !          1676:                         '","Data not available","","","';
        !          1677:                 }
        !          1678:             } else {
        !          1679:                 my %reply=&Apache::lonnet::idrget($studentDomain,$studentName);
        !          1680:                 my %studentInformation=&Apache::lonnet::get
        !          1681:                     ('environment',
        !          1682:                      ['lastname','generation','firstname','middlename','id'],
        !          1683:                      $studentDomain,$studentName);
        !          1684:                 if (! $ENV{'form.showcsv'}) {
        !          1685:                     $rowlabel='<a href="/adm/studentcalc?uname='.$studentName.
        !          1686:                         '&udom='.$studentDomain.'">'.
        !          1687:                             $studentSection.'&nbsp;';
        !          1688:                     foreach ('id','firstname','middlename',
        !          1689:                              'lastname','generation'){
        !          1690:                         $rowlabel.=$studentInformation{$_}."&nbsp;";
1.78      matthew  1691:                     }
1.45      www      1692:                     $rowlabel.='</a>';
1.102   ! matthew  1693:                 } else {
        !          1694:                     $rowlabel= '"'.join('","',
        !          1695:                                         ($studentSection,
        !          1696:                                          $studentInformation{'id'},
        !          1697:                                          $studentInformation{'firstname'},
        !          1698:                                          $studentInformation{'middlename'},
        !          1699:                                          $studentInformation{'lastname'},
        !          1700:                                          $studentInformation{'generation'})
        !          1701:                                         ).'"';
1.24      www      1702:                 }
1.23      www      1703:             }
1.102   ! matthew  1704:             $currentlist{$student}=$rowlabel;
        !          1705:         } # end of if ($active)
        !          1706:     } # end of foreach my $student (keys(%classlist))
        !          1707:     #
        !          1708:     # Find discrepancies between the course row table and this
        !          1709:     #
        !          1710:     my %f=&getformulas($safeeval);
        !          1711:     my $changed=0;
        !          1712:     #
        !          1713:     my $maxrow=0;
        !          1714:     my %existing=();
        !          1715:     #
        !          1716:     # Now obsolete rows
        !          1717:     foreach (keys(%f)) {
        !          1718:         if ($_=~/^A(\d+)/) {
        !          1719:             $maxrow=($1>$maxrow)?$1:$maxrow;
        !          1720:             $existing{$f{$_}}=1;
        !          1721:             unless ((defined($currentlist{$f{$_}})) || (!$1) ||
        !          1722:                     ($f{$_}=~/^(\~\~\~|\-\-\-)/)) {
        !          1723:                 $f{$_}='!!! Obsolete';
        !          1724:                 $changed=1;
1.23      www      1725:             }
1.78      matthew  1726:         }
1.102   ! matthew  1727:     }
        !          1728:     #
        !          1729:     # New and unknown keys
        !          1730:     foreach (sort keys(%currentlist)) {
        !          1731:         unless ($existing{$_}) {
        !          1732:             $changed=1;
        !          1733:             $maxrow++;
        !          1734:             $f{'A'.$maxrow}=$_;
1.78      matthew  1735:         }
1.23      www      1736:     }
1.102   ! matthew  1737:     if ($changed) { &setformulas($safeeval,%f); }
        !          1738:     #
        !          1739:     &setmaxrow($safeeval,$maxrow);
        !          1740:     &setrowlabels($safeeval,%currentlist);
1.23      www      1741: }
1.5       www      1742: 
1.28      www      1743: # ----------------------------------- Update rows for student and assess sheets
                   1744: 
                   1745: sub updatestudentassesssheet {
1.5       www      1746:     my $safeeval=shift;
                   1747:     my %bighash;
1.35      www      1748:     my $stype=&gettype($safeeval);
                   1749:     my %current=();
                   1750:     unless ($updatedata{$ENV{'request.course.fn'}.'_'.$stype}) {
1.5       www      1751: # -------------------------------------------------------------------- Tie hash
                   1752:       if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.99      albertel 1753:                        &GDBM_READER(),0640)) {
1.5       www      1754: # --------------------------------------------------------- Get all assessments
                   1755: 
1.52      www      1756: 	my %allkeys=('timestamp' => 
1.75      www      1757:                      'Timestamp of Last Transaction<br>timestamp',
                   1758:                      'subnumber' =>
                   1759:                      'Number of Submissions<br>subnumber',
                   1760:                      'tutornumber' =>
                   1761:                      'Number of Tutor Responses<br>tutornumber',
                   1762:                      'totalpoints' =>
                   1763:                      'Total Points Granted<br>totalpoints');
1.5       www      1764: 
1.50      www      1765:         my $adduserstr='';
                   1766:         if ((&getuname($safeeval) ne $ENV{'user.name'}) ||
                   1767:             (&getudom($safeeval) ne $ENV{'user.domain'})) {
                   1768:             $adduserstr='&uname='.&getuname($safeeval).
                   1769: 		'&udom='.&getudom($safeeval);
                   1770:         }
                   1771: 
1.72      www      1772:         my %allassess=('_feedback' =>
                   1773: 	              '<a href="/adm/assesscalc?usymb=_feedback'.$adduserstr.
                   1774:                        '">Feedback</a>',
                   1775:                        '_evaluation' =>
                   1776: 	              '<a href="/adm/assesscalc?usymb=_evaluation'.$adduserstr.
                   1777:                        '">Evaluation</a>',
                   1778:                        '_tutoring' =>
                   1779: 	              '<a href="/adm/assesscalc?usymb=_tutoring'.$adduserstr.
1.74      www      1780:                        '">Tutoring</a>',
                   1781:                        '_discussion' =>
                   1782: 	              '<a href="/adm/assesscalc?usymb=_discussion'.$adduserstr.
                   1783:                        '">Discussion</a>'
1.72      www      1784:         );
                   1785: 
1.78      matthew  1786:         foreach (keys(%bighash)) {
1.5       www      1787: 	    if ($_=~/^src\_(\d+)\.(\d+)$/) {
                   1788: 	       my $mapid=$1;
                   1789:                my $resid=$2;
                   1790:                my $id=$mapid.'.'.$resid;
                   1791:                my $srcf=$bighash{$_};
                   1792:                if ($srcf=~/\.(problem|exam|quiz|assess|survey|form)$/) {
                   1793:                  my $symb=
                   1794:                      &Apache::lonnet::declutter($bighash{'map_id_'.$mapid}).
                   1795: 			    '___'.$resid.'___'.
                   1796: 			    &Apache::lonnet::declutter($srcf);
1.38      www      1797: 		 $allassess{$symb}=
1.50      www      1798: 	            '<a href="/adm/assesscalc?usymb='.$symb.$adduserstr.'">'.
                   1799:                      $bighash{'title_'.$id}.'</a>';
1.6       www      1800:                  if ($stype eq 'assesscalc') {
1.78      matthew  1801: 		     foreach (split(/\,/,
                   1802: 				    &Apache::lonnet::metadata($srcf,'keys'))) {
1.11      www      1803:                        if (($_=~/^stores\_(.*)/) || ($_=~/^parameter\_(.*)/)) {
1.5       www      1804: 			  my $key=$_;
                   1805:                           my $display=
                   1806: 			      &Apache::lonnet::metadata($srcf,$key.'.display');
                   1807:                           unless ($display) {
1.40      www      1808:                               $display.=
1.5       www      1809: 			         &Apache::lonnet::metadata($srcf,$key.'.name');
                   1810:                           }
1.40      www      1811:                           $display.='<br>'.$key;
1.5       www      1812:                           $allkeys{$key}=$display;
                   1813: 		       }
1.78      matthew  1814:                    } # end of foreach
1.5       www      1815: 	         }
                   1816: 	      }
                   1817: 	   }
1.78      matthew  1818:         } # end of foreach (keys(%bighash))
1.5       www      1819:         untie(%bighash);
                   1820:     
                   1821: #
1.11      www      1822: # %allkeys has a list of storage and parameter displays by unikey
1.5       www      1823: # %allassess has a list of all resource displays by symb
                   1824: #
1.6       www      1825: 
                   1826:         if ($stype eq 'assesscalc') {
                   1827: 	    %current=%allkeys;
                   1828:         } elsif ($stype eq 'studentcalc') {
                   1829:             %current=%allassess;
                   1830:         }
1.35      www      1831:         $updatedata{$ENV{'request.course.fn'}.'_'.$stype}=
                   1832: 	    join('___;___',%current);
                   1833:     } else {
                   1834:         return 'Could not access course data';
                   1835:     }
                   1836: # ------------------------------------------------------ Get current from cache
                   1837:     } else {
                   1838:         %current=split(/\_\_\_\;\_\_\_/,
                   1839: 		       $updatedata{$ENV{'request.course.fn'}.'_'.$stype});
                   1840:     }
                   1841: # -------------------- Find discrepancies between the course row table and this
                   1842: #
                   1843:         my %f=&getformulas($safeeval);
                   1844:         my $changed=0;
1.6       www      1845: 
                   1846:         my $maxrow=0;
                   1847:         my %existing=();
                   1848: 
                   1849: # ----------------------------------------------------------- Now obsolete rows
1.78      matthew  1850: 	foreach (keys(%f)) {
1.6       www      1851: 	    if ($_=~/^A(\d+)/) {
                   1852:                 $maxrow=($1>$maxrow)?$1:$maxrow;
1.57      www      1853:                 my ($usy,$ufn)=split(/\_\_\&\&\&\_\_/,$f{$_});
                   1854:                 $existing{$usy}=1;
1.97      www      1855: 		unless ((defined($current{$usy})) || (!$1) ||
                   1856:                         ($f{$_}=~/^(\~\~\~|\-\-\-)/)){
                   1857:  		   $f{$_}='!!! Obsolete';
1.6       www      1858:                    $changed=1;
1.57      www      1859: 	        } elsif ($ufn) {
                   1860: 		    $current{$usy}
                   1861:                        =~s/assesscalc\?usymb\=/assesscalc\?ufn\=$ufn\&usymb\=/;
1.5       www      1862:                 }
                   1863:             }
1.78      matthew  1864:         }
1.6       www      1865: 
                   1866: # -------------------------------------------------------- New and unknown keys
                   1867:      
1.78      matthew  1868:         foreach (keys(%current)) {
1.6       www      1869:             unless ($existing{$_}) {
                   1870: 		$changed=1;
                   1871:                 $maxrow++;
                   1872:                 $f{'A'.$maxrow}=$_;
                   1873:             }
1.78      matthew  1874:         }
1.35      www      1875:     
1.6       www      1876:         if ($changed) { &setformulas($safeeval,%f); }
                   1877: 
                   1878:         &setmaxrow($safeeval,$maxrow);
                   1879:         &setrowlabels($safeeval,%current);
1.35      www      1880:  
                   1881:         undef %current;
                   1882:         undef %existing;
1.5       www      1883: }
1.3       www      1884: 
1.24      www      1885: # ------------------------------------------------ Load data for one assessment
1.16      www      1886: 
1.29      www      1887: sub loadstudent {
1.16      www      1888:     my $safeeval=shift;
                   1889:     my %c=();
                   1890:     my %f=&getformulas($safeeval);
1.39      www      1891:     $cachedassess=&getuname($safeeval).':'.&getudom($safeeval);
1.102   ! matthew  1892:     # Get ALL the student preformance data
        !          1893:     my @tmp = &Apache::lonnet::dump(&getcid($safeeval),
        !          1894:                                     &getudom($safeeval),
        !          1895:                                     &getuname($safeeval),
        !          1896:                                     undef);
        !          1897:     if ($tmp[0] !~ /^error:/) {
        !          1898:         %cachedstores = @tmp;
1.39      www      1899:     }
1.102   ! matthew  1900:     undef @tmp;
        !          1901:     # 
1.36      www      1902:     my @assessdata=();
1.78      matthew  1903:     foreach (keys(%f)) {
1.17      www      1904: 	if ($_=~/^A(\d+)/) {
                   1905: 	   my $row=$1;
1.97      www      1906:            unless (($f{$_}=~/^[\!\~\-]/) || ($row==0)) {
1.102   ! matthew  1907: 	      my ($usy,$ufn)=split(/__&&&\__/,$f{$_});
1.36      www      1908: 	      @assessdata=&exportsheet(&getuname($safeeval),
                   1909:                                        &getudom($safeeval),
1.55      www      1910:                                        'assesscalc',$usy,$ufn);
1.17      www      1911:               my $index=0;
1.78      matthew  1912:               foreach ('A','B','C','D','E','F','G','H','I','J','K','L','M',
                   1913: 	               'N','O','P','Q','R','S','T','U','V','W','X','Y','Z') {
1.30      www      1914:                   if ($assessdata[$index]) {
1.41      www      1915: 		     my $col=$_;
                   1916: 		     if ($assessdata[$index]=~/\D/) {
                   1917:                          $c{$col.$row}="'".$assessdata[$index]."'";
                   1918:  		     } else {
                   1919: 		         $c{$col.$row}=$assessdata[$index];
                   1920: 		     }
                   1921:                      unless ($col eq 'A') { 
                   1922: 			 $f{$col.$row}='import';
1.30      www      1923:                      }
                   1924: 		  }
                   1925:                   $index++;
1.78      matthew  1926:               }
1.16      www      1927: 	   }
                   1928:         }
1.78      matthew  1929:     }
1.39      www      1930:     $cachedassess='';
                   1931:     undef %cachedstores;
1.18      www      1932:     &setformulas($safeeval,%f);
1.16      www      1933:     &setconstants($safeeval,%c);
                   1934: }
                   1935: 
1.24      www      1936: # --------------------------------------------------- Load data for one student
                   1937: 
1.30      www      1938: sub loadcourse {
1.37      www      1939:     my ($safeeval,$r)=@_;
1.24      www      1940:     my %c=();
                   1941:     my %f=&getformulas($safeeval);
1.37      www      1942:     my $total=0;
1.78      matthew  1943:     foreach (keys(%f)) {
1.37      www      1944: 	if ($_=~/^A(\d+)/) {
1.97      www      1945: 	    unless ($f{$_}=~/^[\!\~\-]/) { $total++; }
1.37      www      1946:         }
1.78      matthew  1947:     }
1.37      www      1948:     my $now=0;
                   1949:     my $since=time;
1.39      www      1950:     $r->print(<<ENDPOP);
                   1951: <script>
                   1952:     popwin=open('','popwin','width=400,height=100');
                   1953:     popwin.document.writeln('<html><body bgcolor="#FFFFFF">'+
1.50      www      1954:       '<h3>Spreadsheet Calculation Progress</h3>'+
1.39      www      1955:       '<form name=popremain>'+
                   1956:       '<input type=text size=35 name=remaining value=Starting></form>'+
                   1957:       '</body></html>');
1.42      www      1958:     popwin.document.close();
1.39      www      1959: </script>
                   1960: ENDPOP
1.37      www      1961:     $r->rflush();
1.78      matthew  1962:     foreach (keys(%f)) {
1.24      www      1963: 	if ($_=~/^A(\d+)/) {
                   1964: 	   my $row=$1;
1.97      www      1965:            unless (($f{$_}=~/^[\!\~\-]/)  || ($row==0)) {
1.37      www      1966: 	      my @studentdata=&exportsheet(split(/\:/,$f{$_}),
1.30      www      1967:                                            'studentcalc');
1.37      www      1968:               undef %userrdatas;
                   1969:               $now++;
1.39      www      1970:               $r->print('<script>popwin.document.popremain.remaining.value="'.
1.37      www      1971:                   $now.'/'.$total.': '.int((time-$since)/$now*($total-$now)).
1.39      www      1972:                         ' secs remaining";</script>');
1.37      www      1973:               $r->rflush(); 
                   1974: 
1.24      www      1975:               my $index=0;
1.102   ! matthew  1976:               foreach ('A','B','C','D','E','F','G','H','I','J','K','L','M',
        !          1977:                        'N','O','P','Q','R','S','T','U','V','W','X','Y','Z') {
1.30      www      1978:                   if ($studentdata[$index]) {
1.102   ! matthew  1979:                       my $col=$_;
        !          1980:                       if ($studentdata[$index]=~/\D/) {
        !          1981:                           $c{$col.$row}="'".$studentdata[$index]."'";
        !          1982:                       } else {
        !          1983:                           $c{$col.$row}=$studentdata[$index];
        !          1984:                       }
        !          1985:                       unless ($col eq 'A') { 
        !          1986:                           $f{$col.$row}='import';
        !          1987:                       }
1.30      www      1988: 		  }
                   1989:                   $index++;
1.78      matthew  1990:               }
1.24      www      1991: 	   }
                   1992:         }
1.78      matthew  1993:     }
1.24      www      1994:     &setformulas($safeeval,%f);
                   1995:     &setconstants($safeeval,%c);
1.43      www      1996:     $r->print('<script>popwin.close()</script>');
1.37      www      1997:     $r->rflush(); 
1.24      www      1998: }
                   1999: 
1.6       www      2000: # ------------------------------------------------ Load data for one assessment
                   2001: 
1.29      www      2002: sub loadassessment {
                   2003:     my $safeeval=shift;
                   2004: 
                   2005:     my $uhome=&getuhome($safeeval);
                   2006:     my $uname=&getuname($safeeval);
                   2007:     my $udom=&getudom($safeeval);
                   2008:     my $symb=&getusymb($safeeval);
                   2009:     my $cid=&getcid($safeeval);
                   2010:     my $cnum=&getcnum($safeeval);
                   2011:     my $cdom=&getcdom($safeeval);
                   2012:     my $chome=&getchome($safeeval);
                   2013: 
1.6       www      2014:     my $namespace;
1.29      www      2015:     unless ($namespace=$cid) { return ''; }
1.11      www      2016: 
                   2017: # ----------------------------------------------------------- Get stored values
1.39      www      2018: 
                   2019:    my %returnhash=();
                   2020: 
                   2021:    if ($cachedassess eq $uname.':'.$udom) {
                   2022: #
                   2023: # get data out of the dumped stores
                   2024: # 
                   2025: 
                   2026:        my $version=$cachedstores{'version:'.$symb};
                   2027:        my $scope;
                   2028:        for ($scope=1;$scope<=$version;$scope++) {
1.78      matthew  2029:            foreach (split(/\:/,$cachedstores{$scope.':keys:'.$symb})) {
1.39      www      2030:                $returnhash{$_}=$cachedstores{$scope.':'.$symb.':'.$_};
1.78      matthew  2031:            } 
1.39      www      2032:        }
                   2033: 
                   2034:    } else {
                   2035: #
                   2036: # restore individual
                   2037: #
                   2038: 
1.11      www      2039:     my $answer=&Apache::lonnet::reply(
1.15      www      2040:        "restore:$udom:$uname:".
                   2041:        &Apache::lonnet::escape($namespace).":".
                   2042:        &Apache::lonnet::escape($symb),$uhome);
1.78      matthew  2043:     foreach (split(/\&/,$answer)) {
1.6       www      2044: 	my ($name,$value)=split(/\=/,$_);
1.11      www      2045:         $returnhash{&Apache::lonnet::unescape($name)}=
                   2046:                     &Apache::lonnet::unescape($value);
1.78      matthew  2047:     }
1.6       www      2048:     my $version;
                   2049:     for ($version=1;$version<=$returnhash{'version'};$version++) {
1.78      matthew  2050:        foreach (split(/\:/,$returnhash{$version.':keys'})) {
1.6       www      2051:           $returnhash{$_}=$returnhash{$version.':'.$_};
1.78      matthew  2052:        } 
1.6       www      2053:     }
1.39      www      2054:    }
1.11      www      2055: # ----------------------------- returnhash now has all stores for this resource
1.76      www      2056: 
                   2057: # --------- convert all "_" to "." to be able to use libraries, multiparts, etc
                   2058: 
                   2059:     my @oldkeys=keys %returnhash;
                   2060: 
1.78      matthew  2061:     foreach (@oldkeys) {
1.76      www      2062:         my $name=$_;
                   2063:         my $value=$returnhash{$_};
                   2064:         delete $returnhash{$_};
                   2065:         $name=~s/\_/\./g;
                   2066:         $returnhash{$name}=$value;
1.78      matthew  2067:     }
1.11      www      2068: 
                   2069: # ---------------------------- initialize coursedata and userdata for this user
1.31      www      2070:     undef %courseopt;
                   2071:     undef %useropt;
1.29      www      2072: 
                   2073:     my $userprefix=$uname.'_'.$udom.'_';
                   2074: 
1.11      www      2075:     unless ($uhome eq 'no_host') { 
                   2076: # -------------------------------------------------------------- Get coursedata
1.13      www      2077:       unless
1.32      www      2078:         ((time-$courserdatas{$cid.'.last_cache'})<240) {
1.29      www      2079:          my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
                   2080:               ':resourcedata',$chome);
1.11      www      2081:          if ($reply!~/^error\:/) {
1.29      www      2082:             $courserdatas{$cid}=$reply;
                   2083:             $courserdatas{$cid.'.last_cache'}=time;
1.11      www      2084:          }
                   2085:       }
1.78      matthew  2086:       foreach (split(/\&/,$courserdatas{$cid})) {
1.11      www      2087:          my ($name,$value)=split(/\=/,$_);
1.29      www      2088:          $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
1.11      www      2089:                     &Apache::lonnet::unescape($value);  
1.78      matthew  2090:       }
1.11      www      2091: # --------------------------------------------------- Get userdata (if present)
1.13      www      2092:       unless
1.32      www      2093:         ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
1.11      www      2094:          my $reply=
                   2095:        &Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
                   2096:          if ($reply!~/^error\:/) {
                   2097: 	     $userrdatas{$uname.'___'.$udom}=$reply;
1.13      www      2098: 	     $userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
1.11      www      2099:          }
                   2100:       }
1.78      matthew  2101:       foreach (split(/\&/,$userrdatas{$uname.'___'.$udom})) {
1.11      www      2102:          my ($name,$value)=split(/\=/,$_);
1.29      www      2103:          $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
1.15      www      2104: 	          &Apache::lonnet::unescape($value);
1.78      matthew  2105:       }
1.29      www      2106:     }
                   2107: # ----------------- now courseopt, useropt initialized for this user and course
                   2108: # (used by parmval)
                   2109: 
1.60      www      2110: #
                   2111: # Load keys for this assessment only
                   2112: #
                   2113:     my %thisassess=();
                   2114:     my ($symap,$syid,$srcf)=split(/\_\_\_/,$symb);
                   2115:     
1.78      matthew  2116:     foreach (split(/\,/,&Apache::lonnet::metadata($srcf,'keys'))) {
1.60      www      2117:         $thisassess{$_}=1;
1.78      matthew  2118:     } 
1.60      www      2119: #
                   2120: # Load parameters
                   2121: #
1.29      www      2122:    my %c=();
1.6       www      2123: 
1.29      www      2124:    if (tie(%parmhash,'GDBM_File',
1.99      albertel 2125:            &getcfn($safeeval).'_parms.db',&GDBM_READER(),0640)) {
1.6       www      2126:     my %f=&getformulas($safeeval);
1.78      matthew  2127:     foreach (keys(%f))  {
1.6       www      2128: 	if ($_=~/^A/) {
1.97      www      2129:             unless ($f{$_}=~/^[\!\~\-]/) {
1.11      www      2130:   	       if ($f{$_}=~/^parameter/) {
1.60      www      2131: 		if ($thisassess{$f{$_}}) {
1.40      www      2132:                   my $val=&parmval($f{$_},$safeeval);
                   2133:                   $c{$_}=$val;
                   2134:                   $c{$f{$_}}=$val;
1.60      www      2135: 	        }
1.11      www      2136: 	       } else {
1.15      www      2137: 		  my $key=$f{$_};
1.40      www      2138:                   my $ckey=$key;
1.15      www      2139:                   $key=~s/^stores\_/resource\./;
1.70      www      2140:                   $key=~s/\_/\./g;
1.15      www      2141:  	          $c{$_}=$returnhash{$key};
1.40      www      2142:                   $c{$ckey}=$returnhash{$key};
1.11      www      2143: 	       }
                   2144: 	   }
1.6       www      2145:         }
1.78      matthew  2146:     }
1.29      www      2147:     untie(%parmhash);
                   2148:    }
                   2149:    &setconstants($safeeval,%c);
1.6       www      2150: }
                   2151: 
1.10      www      2152: # --------------------------------------------------------- Various form fields
                   2153: 
                   2154: sub textfield {
                   2155:     my ($title,$name,$value)=@_;
                   2156:     return "\n<p><b>$title:</b><br>".
                   2157:            '<input type=text name="'.$name.'" size=80 value="'.$value.'">';
                   2158: }
                   2159: 
                   2160: sub hiddenfield {
                   2161:     my ($name,$value)=@_;
                   2162:     return "\n".'<input type=hidden name="'.$name.'" value="'.$value.'">';
                   2163: }
                   2164: 
                   2165: sub selectbox {
                   2166:     my ($title,$name,$value,%options)=@_;
                   2167:     my $selout="\n<p><b>$title:</b><br>".'<select name="'.$name.'">';
1.78      matthew  2168:     foreach (sort keys(%options)) {
1.10      www      2169:         $selout.='<option value="'.$_.'"';
                   2170:         if ($_ eq $value) { $selout.=' selected'; }
                   2171:         $selout.='>'.$options{$_}.'</option>';
1.78      matthew  2172:     }
1.10      www      2173:     return $selout.'</select>';
                   2174: }
                   2175: 
1.28      www      2176: # =============================================== Update information in a sheet
                   2177: #
                   2178: # Add new users or assessments, etc.
                   2179: #
                   2180: 
                   2181: sub updatesheet {
                   2182:     my $safeeval=shift;
                   2183:     my $stype=&gettype($safeeval);
                   2184:     if ($stype eq 'classcalc') {
                   2185: 	return &updateclasssheet($safeeval);
                   2186:     } else {
                   2187:         return &updatestudentassesssheet($safeeval);
                   2188:     }
                   2189: }
                   2190: 
                   2191: # =================================================== Load the rows for a sheet
                   2192: #
                   2193: # Import the data for rows
                   2194: #
                   2195: 
1.37      www      2196: sub loadrows {
                   2197:     my ($safeeval,$r)=@_;
1.28      www      2198:     my $stype=&gettype($safeeval);
                   2199:     if ($stype eq 'classcalc') {
1.37      www      2200: 	&loadcourse($safeeval,$r);
1.28      www      2201:     } elsif ($stype eq 'studentcalc') {
1.29      www      2202:         &loadstudent($safeeval);
1.28      www      2203:     } else {
1.29      www      2204:         &loadassessment($safeeval);
1.28      www      2205:     }
                   2206: }
                   2207: 
1.47      www      2208: # ======================================================= Forced recalculation?
                   2209: 
                   2210: sub checkthis {
                   2211:     my ($keyname,$time)=@_;
                   2212:     return ($time<$expiredates{$keyname});
                   2213: }
                   2214: sub forcedrecalc {
                   2215:     my ($uname,$udom,$stype,$usymb)=@_;
                   2216:     my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
                   2217:     my $time=$oldsheets{$key.'.time'};
1.53      www      2218:     if ($ENV{'form.forcerecalc'}) { return 1; }
1.47      www      2219:     unless ($time) { return 1; }
                   2220:     if ($stype eq 'assesscalc') {
                   2221:         my $map=(split(/\_\_\_/,$usymb))[0];
                   2222:         if (&checkthis('::assesscalc:',$time) ||
                   2223:             &checkthis('::assesscalc:'.$map,$time) ||
                   2224:             &checkthis('::assesscalc:'.$usymb,$time) ||
1.49      www      2225:             &checkthis($uname.':'.$udom.':assesscalc:',$time) ||
                   2226:             &checkthis($uname.':'.$udom.':assesscalc:'.$map,$time) ||
                   2227:             &checkthis($uname.':'.$udom.':assesscalc:'.$usymb,$time)) {
1.47      www      2228:             return 1;
                   2229:         } 
                   2230:     } else {
                   2231:         if (&checkthis('::studentcalc:',$time) || 
1.51      www      2232:             &checkthis($uname.':'.$udom.':studentcalc:',$time)) {
1.47      www      2233: 	    return 1;
                   2234:         }
                   2235:     }
                   2236:     return 0; 
                   2237: }
                   2238: 
1.28      www      2239: # ============================================================== Export handler
                   2240: #
                   2241: # Non-interactive call from with program
                   2242: #
                   2243: 
                   2244: sub exportsheet {
1.44      www      2245:  my ($uname,$udom,$stype,$usymb,$fn)=@_;
                   2246:  my @exportarr=();
1.74      www      2247: 
                   2248:  if (($usymb=~/^\_(\w+)/) && (!$fn)) {
                   2249:     $fn='default_'.$1;
                   2250:  }
                   2251: 
1.44      www      2252: #
                   2253: # Check if cached
                   2254: #
1.46      www      2255: 
1.44      www      2256:  my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
                   2257:  my $found='';
                   2258: 
                   2259:  if ($oldsheets{$key}) {
1.78      matthew  2260:      foreach (split(/\_\_\_\&\_\_\_/,$oldsheets{$key})) {
1.44      www      2261:          my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
                   2262:          if ($name eq $fn) {
                   2263: 	     $found=$value;
                   2264:          }
1.78      matthew  2265:      }
1.44      www      2266:  }
                   2267: 
1.46      www      2268:  unless ($found) {
                   2269:      &cachedssheets($uname,$udom,&Apache::lonnet::homeserver($uname,$udom));
                   2270:      if ($oldsheets{$key}) {
1.78      matthew  2271: 	foreach (split(/\_\_\_\&\_\_\_/,$oldsheets{$key})) {
1.46      www      2272:             my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
                   2273:             if ($name eq $fn) {
                   2274: 	        $found=$value;
                   2275:             }
1.78      matthew  2276:         } 
1.46      www      2277:      }
                   2278:  }
1.47      www      2279: #
                   2280: # Check if still valid
                   2281: #
                   2282:  if ($found) {
                   2283:      if (&forcedrecalc($uname,$udom,$stype,$usymb)) {
                   2284: 	 $found='';
                   2285:      }
                   2286:  }
                   2287:  
1.44      www      2288:  if ($found) {
                   2289: #
                   2290: # Return what was cached
                   2291: #
                   2292:      @exportarr=split(/\_\_\_\;\_\_\_/,$found);
                   2293: 
                   2294:  } else {
                   2295: #
                   2296: # Not cached
1.46      www      2297: #        
                   2298: 
1.29      www      2299:     my $thissheet=&makenewsheet($uname,$udom,$stype,$usymb);
1.28      www      2300:     &readsheet($thissheet,$fn);
                   2301:     &updatesheet($thissheet);
                   2302:     &loadrows($thissheet);
1.44      www      2303:     &calcsheet($thissheet); 
                   2304:     @exportarr=&exportdata($thissheet);
                   2305: #
                   2306: # Store now
                   2307: #
                   2308:     my $cid=$ENV{'request.course.id'}; 
1.47      www      2309:     my $current='';
1.46      www      2310:     if ($stype eq 'studentcalc') {
                   2311:        $current=&Apache::lonnet::reply('get:'.
1.44      www      2312:                                      $ENV{'course.'.$cid.'.domain'}.':'.
                   2313:                                      $ENV{'course.'.$cid.'.num'}.
                   2314: 				     ':nohist_calculatedsheets:'.
                   2315:                                      &Apache::lonnet::escape($key),
                   2316:                                      $ENV{'course.'.$cid.'.home'});
1.46      www      2317:     } else {
                   2318:        $current=&Apache::lonnet::reply('get:'.
                   2319:                                      &getudom($thissheet).':'.
                   2320:                                      &getuname($thissheet).
                   2321: 				     ':nohist_calculatedsheets_'.
                   2322:                                      $ENV{'request.course.id'}.':'.
                   2323:                                      &Apache::lonnet::escape($key),
                   2324:                                      &getuhome($thissheet));
                   2325: 
                   2326:     }
1.44      www      2327:     my %currentlystored=();
                   2328:     unless ($current=~/^error\:/) {
1.78      matthew  2329:        foreach (split(/\_\_\_\&\_\_\_/,&Apache::lonnet::unescape($current))) {
1.44      www      2330:            my ($name,$value)=split(/\_\_\_\=\_\_\_/,$_);
                   2331:            $currentlystored{$name}=$value;
1.78      matthew  2332:        }
1.44      www      2333:     }
                   2334:     $currentlystored{$fn}=join('___;___',@exportarr);
                   2335: 
                   2336:     my $newstore='';
1.78      matthew  2337:     foreach (keys(%currentlystored)) {
1.44      www      2338:         if ($newstore) { $newstore.='___&___'; }
                   2339:         $newstore.=$_.'___=___'.$currentlystored{$_};
1.78      matthew  2340:     }
1.47      www      2341:     my $now=time;
1.46      www      2342:     if ($stype eq 'studentcalc') {
                   2343:        &Apache::lonnet::reply('put:'.
1.44      www      2344:                          $ENV{'course.'.$cid.'.domain'}.':'.
                   2345:                          $ENV{'course.'.$cid.'.num'}.
                   2346: 			 ':nohist_calculatedsheets:'.
                   2347:                          &Apache::lonnet::escape($key).'='.
1.47      www      2348: 			 &Apache::lonnet::escape($newstore).'&'.
                   2349:                          &Apache::lonnet::escape($key).'.time='.$now,
1.44      www      2350:                          $ENV{'course.'.$cid.'.home'});
1.46      www      2351:    } else {
                   2352:        &Apache::lonnet::reply('put:'.
                   2353:                          &getudom($thissheet).':'.
                   2354:                          &getuname($thissheet).
                   2355: 			 ':nohist_calculatedsheets_'.
                   2356:                          $ENV{'request.course.id'}.':'.
                   2357:                          &Apache::lonnet::escape($key).'='.
1.47      www      2358: 			 &Apache::lonnet::escape($newstore).'&'.
                   2359:                          &Apache::lonnet::escape($key).'.time='.$now,
1.46      www      2360:                          &getuhome($thissheet));
                   2361:    }
1.44      www      2362:  }
                   2363:  return @exportarr;
                   2364: }
1.48      www      2365: # ============================================================ Expiration Dates
                   2366: #
                   2367: # Load previously cached student spreadsheets for this course
                   2368: #
                   2369: 
                   2370: sub expirationdates {
                   2371:     undef %expiredates;
                   2372:     my $cid=$ENV{'request.course.id'};
                   2373:     my $reply=&Apache::lonnet::reply('dump:'.
                   2374: 				     $ENV{'course.'.$cid.'.domain'}.':'.
                   2375:                                      $ENV{'course.'.$cid.'.num'}.
                   2376: 				     ':nohist_expirationdates',
                   2377:                                      $ENV{'course.'.$cid.'.home'});
                   2378:     unless ($reply=~/^error\:/) {
1.78      matthew  2379: 	foreach (split(/\&/,$reply)) {
1.48      www      2380:             my ($name,$value)=split(/\=/,$_);
                   2381:             $expiredates{&Apache::lonnet::unescape($name)}
                   2382:                         =&Apache::lonnet::unescape($value);
1.78      matthew  2383:         }
1.48      www      2384:     }
                   2385: }
1.44      www      2386: 
                   2387: # ===================================================== Calculated sheets cache
                   2388: #
1.46      www      2389: # Load previously cached student spreadsheets for this course
1.44      www      2390: #
                   2391: 
1.46      www      2392: sub cachedcsheets {
1.44      www      2393:     my $cid=$ENV{'request.course.id'};
                   2394:     my $reply=&Apache::lonnet::reply('dump:'.
                   2395: 				     $ENV{'course.'.$cid.'.domain'}.':'.
                   2396:                                      $ENV{'course.'.$cid.'.num'}.
                   2397: 				     ':nohist_calculatedsheets',
                   2398:                                      $ENV{'course.'.$cid.'.home'});
                   2399:     unless ($reply=~/^error\:/) {
1.78      matthew  2400: 	foreach ( split(/\&/,$reply)) {
1.44      www      2401:             my ($name,$value)=split(/\=/,$_);
                   2402:             $oldsheets{&Apache::lonnet::unescape($name)}
                   2403:                       =&Apache::lonnet::unescape($value);
1.78      matthew  2404:         }
1.44      www      2405:     }
1.28      www      2406: }
                   2407: 
1.46      www      2408: # ===================================================== Calculated sheets cache
                   2409: #
                   2410: # Load previously cached assessment spreadsheets for this student
                   2411: #
                   2412: 
                   2413: sub cachedssheets {
                   2414:   my ($sname,$sdom,$shome)=@_;
                   2415:   unless (($loadedcaches{$sname.'_'.$sdom}) || ($shome eq 'no_host')) {
                   2416:     my $cid=$ENV{'request.course.id'};
                   2417:     my $reply=&Apache::lonnet::reply('dump:'.$sdom.':'.$sname.
                   2418: 			             ':nohist_calculatedsheets_'.
                   2419:                                       $ENV{'request.course.id'},
                   2420:                                      $shome);
                   2421:     unless ($reply=~/^error\:/) {
1.78      matthew  2422: 	foreach ( split(/\&/,$reply)) {
1.46      www      2423:             my ($name,$value)=split(/\=/,$_);
                   2424:             $oldsheets{&Apache::lonnet::unescape($name)}
                   2425:                       =&Apache::lonnet::unescape($value);
1.78      matthew  2426:         }
1.46      www      2427:     }
                   2428:     $loadedcaches{$sname.'_'.$sdom}=1;
                   2429:   }
                   2430: }
                   2431: 
                   2432: # ===================================================== Calculated sheets cache
                   2433: #
                   2434: # Load previously cached assessment spreadsheets for this student
                   2435: #
                   2436: 
1.12      www      2437: # ================================================================ Main handler
1.28      www      2438: #
                   2439: # Interactive call to screen
                   2440: #
                   2441: #
                   2442: 
1.3       www      2443: 
                   2444: sub handler {
1.7       www      2445:     my $r=shift;
                   2446: 
1.28      www      2447:     if ($r->header_only) {
1.7       www      2448:       $r->content_type('text/html');
                   2449:       $r->send_http_header;
                   2450:       return OK;
1.28      www      2451:     }
                   2452: 
                   2453: # ---------------------------------------------------- Global directory configs
                   2454: 
1.29      www      2455: $includedir=$r->dir_config('lonIncludes');
1.28      www      2456: $tmpdir=$r->dir_config('lonDaemons').'/tmp/';
1.3       www      2457: 
1.7       www      2458: # ----------------------------------------------------- Needs to be in a course
1.3       www      2459: 
1.29      www      2460:   if ($ENV{'request.course.fn'}) { 
1.10      www      2461: 
                   2462: # --------------------------- Get query string for limited number of parameters
1.17      www      2463: 
1.89      matthew  2464:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                   2465:                                             ['uname','udom','usymb','ufn']);
1.72      www      2466: 
                   2467:     if (($ENV{'form.usymb'}=~/^\_(\w+)/) && (!$ENV{'form.ufn'})) {
                   2468: 	$ENV{'form.ufn'}='default_'.$1;
                   2469:     }
1.10      www      2470: 
1.55      www      2471: # -------------------------------------- Interactive loading of specific sheet?
                   2472:     if (($ENV{'form.load'}) && ($ENV{'form.loadthissheet'} ne 'Default')) {
                   2473: 	$ENV{'form.ufn'}=$ENV{'form.loadthissheet'};
                   2474:     }
1.10      www      2475: # ------------------------------------------- Nothing there? Must be login user
1.29      www      2476: 
                   2477:     my $aname;
                   2478:     my $adom;
                   2479: 
1.10      www      2480:     unless ($ENV{'form.uname'}) {
1.29      www      2481: 	$aname=$ENV{'user.name'};
                   2482:         $adom=$ENV{'user.domain'};
1.11      www      2483:     } else {
1.29      www      2484:         $aname=$ENV{'form.uname'};
                   2485:         $adom=$ENV{'form.udom'};
1.10      www      2486:     }
1.14      www      2487: 
1.10      www      2488: # ------------------------------------------------------------------- Open page
                   2489: 
1.7       www      2490:     $r->content_type('text/html');
1.11      www      2491:     $r->header_out('Cache-control','no-cache');
                   2492:     $r->header_out('Pragma','no-cache');
1.7       www      2493:     $r->send_http_header;
1.3       www      2494: 
1.14      www      2495: # --------------------------------------------------------------- Screen output
                   2496: 
1.10      www      2497:     $r->print('<html><head><title>LON-CAPA Spreadsheet</title>');
                   2498:     $r->print(<<ENDSCRIPT);
                   2499: <script language="JavaScript">
                   2500: 
                   2501:     function celledit(cn,cf) {
                   2502:         var cnf=prompt(cn,cf);
1.86      matthew  2503:         if (cnf!=null) {
                   2504:             document.sheet.unewfield.value=cn;
1.10      www      2505:             document.sheet.unewformula.value=cnf;
                   2506:             document.sheet.submit();
                   2507:         }
                   2508:     }
                   2509: 
1.55      www      2510:     function changesheet(cn) {
                   2511: 	document.sheet.unewfield.value=cn;
                   2512:         document.sheet.unewformula.value='changesheet';
                   2513:         document.sheet.submit();
                   2514:     }
                   2515: 
1.92      www      2516:     function insertrow(cn) {
                   2517: 	document.sheet.unewfield.value='insertrow';
                   2518:         document.sheet.unewformula.value=cn;
                   2519:         document.sheet.submit();
                   2520:     }
                   2521: 
1.10      www      2522: </script>
                   2523: ENDSCRIPT
1.101     www      2524:    $r->print('</head>'.&Apache::loncommon::bodytag('Grades Spreadsheet').
1.10      www      2525:        '<form action="'.$r->uri.'" name=sheet method=post>'.
                   2526:        &hiddenfield('uname',$ENV{'form.uname'}).
                   2527:        &hiddenfield('udom',$ENV{'form.udom'}).
                   2528:        &hiddenfield('usymb',$ENV{'form.usymb'}).
                   2529:        &hiddenfield('unewfield','').
                   2530:        &hiddenfield('unewformula',''));
1.29      www      2531: 
                   2532: # ---------------------- Make sure that this gets out, even if user hits "stop"
                   2533: 
1.24      www      2534:     $r->rflush();
1.29      www      2535: 
1.54      www      2536: # ---------------------------------------------------------------- Full recalc?
                   2537: 
                   2538: 
                   2539:     if ($ENV{'form.forcerecalc'}) {
                   2540: 	$r->print('<h4>Completely Recalculating Sheet ...</h4>');
                   2541:         undef %spreadsheets;
                   2542:         undef %courserdatas;
                   2543:         undef %userrdatas;
                   2544:         undef %defaultsheets;
                   2545:         undef %updatedata;
                   2546:    }
                   2547:  
1.14      www      2548: # ---------------------------------------- Read new sheet or modified worksheet
                   2549: 
1.19      www      2550:     $r->uri=~/\/(\w+)$/;
1.14      www      2551: 
1.29      www      2552:     my $asheet=&makenewsheet($aname,$adom,$1,$ENV{'form.usymb'});
                   2553: 
1.30      www      2554: # ------------------------ If a new formula had been entered, go from work copy
                   2555: 
                   2556:     if ($ENV{'form.unewfield'}) {
                   2557:         $r->print('<h2>Modified Workcopy</h2>');
                   2558:         $ENV{'form.unewformula'}=~s/\'/\"/g;
                   2559:         $r->print('<p>New formula: '.$ENV{'form.unewfield'}.'='.
                   2560:                   $ENV{'form.unewformula'}.'<p>');
                   2561:         &setfilename($asheet,$ENV{'form.ufn'});
                   2562: 	&tmpread($asheet,
                   2563:                  $ENV{'form.unewfield'},$ENV{'form.unewformula'});
                   2564: 
                   2565:      } elsif ($ENV{'form.saveas'}) {
                   2566:         &setfilename($asheet,$ENV{'form.ufn'});
                   2567: 	&tmpread($asheet);
                   2568:     } else {
                   2569:         &readsheet($asheet,$ENV{'form.ufn'});
                   2570:     }
                   2571: 
                   2572: # -------------------------------------------------- Print out user information
                   2573: 
                   2574:     unless (&gettype($asheet) eq 'classcalc') {
                   2575:         $r->print('<p><b>User:</b> '.&getuname($asheet).
                   2576:                   '<br><b>Domain:</b> '.&getudom($asheet));
                   2577:         if (&getcsec($asheet) eq '-1') {
                   2578:            $r->print('<h3><font color=red>'.
                   2579:                      'Not a student in this course</font></h3>');
                   2580:         } else {
                   2581:            $r->print('<br><b>Section/Group:</b> '.&getcsec($asheet));
                   2582:         }
1.77      www      2583:         if ($ENV{'form.usymb'}) {
                   2584:            $r->print('<br><b>Assessment:</b> <tt>'.$ENV{'form.usymb'}.'</tt>');
                   2585:         }
1.30      www      2586:     }
                   2587: 
1.53      www      2588: # ---------------------------------------------------- See if user can see this
                   2589: 
                   2590:     if ((&gettype($asheet) eq 'classcalc') || 
                   2591:         (&getuname($asheet) ne $ENV{'user.name'}) ||
                   2592:         (&getudom($asheet) ne $ENV{'user.domain'})) {
                   2593:         unless (&Apache::lonnet::allowed('vgr',&getcid($asheet))) {
                   2594: 	    $r->print(
                   2595:            '<h1>Access Permission Denied</h1></form></body></html>');
                   2596:             return OK;
                   2597:         }
                   2598:     }
1.30      www      2599: 
1.53      www      2600: # ---------------------------------------------------------- Additional options
                   2601: 
                   2602:     $r->print(
                   2603:  '<input type=submit name=forcerecalc value="Completely Recalculate Sheet"><p>'
                   2604: 		 );
                   2605:     if (&gettype($asheet) eq 'assesscalc') {
                   2606:        $r->print ('<p><font size=+2><a href="/adm/studentcalc?uname='.
                   2607:                                                &getuname($asheet).
                   2608:                                                '&udom='.&getudom($asheet).
                   2609:                   '">Level up: Student Sheet</a></font><p>');
                   2610:     }
                   2611:     
                   2612:     if ((&gettype($asheet) eq 'studentcalc') && 
                   2613:         (&Apache::lonnet::allowed('vgr',&getcid($asheet)))) {
                   2614:        $r->print (
                   2615:                    '<p><font size=+2><a href="/adm/classcalc">'.
                   2616:                    'Level up: Course Sheet</a></font><p>');
                   2617:     }
                   2618:     
1.30      www      2619: 
                   2620: # ----------------------------------------------------------------- Save dialog
                   2621: 
                   2622: 
                   2623:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
                   2624:         my $fname=$ENV{'form.ufn'};
                   2625:         $fname=~s/\_[^\_]+$//;
                   2626:         if ($fname eq 'default') { $fname='course_default'; }
                   2627:         $r->print('<input type=submit name=saveas value="Save as ...">'.
                   2628:               '<input type=text size=20 name=newfn value="'.$fname.
                   2629:               '"> (make default: <input type=checkbox name="makedefufn">)<p>');
                   2630:     }
                   2631: 
                   2632:     $r->print(&hiddenfield('ufn',&getfilename($asheet)));
1.55      www      2633: 
                   2634: # ----------------------------------------------------------------- Load dialog
                   2635:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
                   2636: 	$r->print('<p><input type=submit name=load value="Load ...">'.
                   2637:                   '<select name="loadthissheet">'.
                   2638:                   '<option name="default">Default</option>');
1.78      matthew  2639:         foreach (&othersheets($asheet,&gettype($asheet))) {
1.55      www      2640: 	    $r->print('<option name="'.$_.'"');
                   2641:             if ($ENV{'form.ufn'} eq $_) {
                   2642:                $r->print(' selected');
                   2643:             }
                   2644:             $r->print('>'.$_.'</option>');
1.78      matthew  2645:         } 
1.55      www      2646:         $r->print('</select><p>');
                   2647:         if (&gettype($asheet) eq 'studentcalc') {
                   2648: 	    &setothersheets($asheet,&othersheets($asheet,'assesscalc'));
                   2649:         }
                   2650:     }
1.30      www      2651: 
1.46      www      2652: # --------------------------------------------------------------- Cached sheets
1.48      www      2653: 
                   2654:     &expirationdates();
1.46      www      2655: 
                   2656:     undef %oldsheets;
                   2657:     undef %loadedcaches;
1.44      www      2658: 
1.46      www      2659:     if (&gettype($asheet) eq 'classcalc') {
                   2660:         $r->print("Loading previously calculated student sheets ...<br>\n");
                   2661:         $r->rflush();
                   2662:         &cachedcsheets();
                   2663:     } elsif (&gettype($asheet) eq 'studentcalc') {
                   2664:         $r->print("Loading previously calculated assessment sheets ...<br>\n");
                   2665:         $r->rflush();
                   2666:         &cachedssheets(&getuname($asheet),&getudom($asheet),
                   2667:                        &getuhome($asheet));
                   2668:     }
1.30      www      2669: 
                   2670: # ----------------------------------------------------- Update sheet, load rows
1.14      www      2671: 
1.44      www      2672:     $r->print("Loaded sheet(s), updating rows ...<br>\n");
1.36      www      2673:     $r->rflush();
                   2674: 
1.29      www      2675:     &updatesheet($asheet);
1.36      www      2676: 
                   2677:     $r->print("Updated rows, loading row data ...<br>\n");
                   2678:     $r->rflush();
                   2679: 
1.37      www      2680:     &loadrows($asheet,$r);
1.14      www      2681: 
1.36      www      2682:     $r->print("Loaded row data, calculating sheet ...<br>\n");
                   2683:     $r->rflush();
1.14      www      2684: 
1.29      www      2685:     my $calcoutput=&calcsheet($asheet);
                   2686:     $r->print('<h3><font color=red>'.$calcoutput.'</h3></font>');
1.56      www      2687: 
                   2688: # ---------------------------------------------------- See if something to save
                   2689: 
                   2690:     if (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'})) {
                   2691:         my $fname='';
                   2692: 	if ($ENV{'form.saveas'} && ($fname=$ENV{'form.newfn'})) {
                   2693:             $fname=~s/\W/\_/g;
                   2694:             if ($fname eq 'default') { $fname='course_default'; }
                   2695:             $fname.='_'.&gettype($asheet);
                   2696:             &setfilename($asheet,$fname);
                   2697:             $ENV{'form.ufn'}=$fname;
                   2698: 	    $r->print('<p>Saving spreadsheet: '.
                   2699:                          &writesheet($asheet,$ENV{'form.makedefufn'}).'<p>');
                   2700: 	}
                   2701:     }
                   2702: 
                   2703: # ------------------------------------------------ Write the modified worksheet
                   2704: 
                   2705:    $r->print('<b>Current sheet:</b> '.&getfilename($asheet).'<p>');
                   2706: 
                   2707:    &tmpwrite($asheet);
1.61      www      2708: 
1.62      www      2709:     if (&gettype($asheet) eq 'studentcalc') {
                   2710: 	$r->print('<br>Show rows with empty A column: ');
                   2711:     } else {
                   2712:         $r->print('<br>Show empty rows: ');
                   2713:     } 
1.77      www      2714: 
                   2715:     $r->print(&hiddenfield('userselhidden','true').
                   2716:              '<input type=checkbox name=showall onClick="submit()"');
                   2717: 
                   2718:     if ($ENV{'form.showall'}) { 
                   2719:        $r->print(' checked'); 
                   2720:     } else {
                   2721: 	unless ($ENV{'form.userselhidden'}) {
                   2722:            unless 
                   2723: 	($ENV{'course.'.$ENV{'request.course.id'}.'.hideemptyrows'} eq 'yes') {
                   2724:           $r->print(' checked');
                   2725:           $ENV{'form.showall'}=1;
                   2726:            }
                   2727:        }
                   2728:     }
1.61      www      2729:     $r->print('>');
1.87      matthew  2730: 
1.69      www      2731:     if (&gettype($asheet) eq 'classcalc') {
                   2732:        $r->print(
                   2733:    ' Output CSV format: <input type=checkbox name=showcsv onClick="submit()"');
                   2734:        if ($ENV{'form.showcsv'}) { $r->print(' checked'); }
                   2735:        $r->print('>');
                   2736:     }
1.92      www      2737: 
                   2738: # ------------------------------------------------------------------ Insertrows
1.98      matthew  2739:     $r->print('&nbsp;Student Status: '.
                   2740:               &Apache::lonhtmlcommon::StatusOptions
                   2741:               ($ENV{'form.Status'},'sheet'));
1.92      www      2742: 
                   2743:    $r->print(<<ENDINSERTBUTTONS);
                   2744: <br>
                   2745: <input type='button' onClick='insertrow("top");' 
                   2746: value='Insert Row Top'>
                   2747: <input type='button' onClick='insertrow("bottom");' 
                   2748: value='Insert Row Bottom'><br>
                   2749: ENDINSERTBUTTONS
                   2750: 
1.56      www      2751: # ------------------------------------------------------------- Print out sheet
1.8       www      2752: 
1.29      www      2753:     &outsheet($r,$asheet);
1.10      www      2754:     $r->print('</form></body></html>');
1.29      www      2755: 
1.14      www      2756: # ------------------------------------------------------------------------ Done
1.7       www      2757:   } else {
                   2758: # ----------------------------- Not in a course, or not allowed to modify parms
                   2759:       $ENV{'user.error.msg'}=
                   2760:         $r->uri.":opa:0:0:Cannot modify spreadsheet";
                   2761:       return HTTP_NOT_ACCEPTABLE; 
                   2762:   }
1.3       www      2763:     return OK;
1.28      www      2764: 
1.1       www      2765: }
                   2766: 
                   2767: 1;
                   2768: __END__
1.77      www      2769: 
                   2770: 
                   2771: 
                   2772: 

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