Annotation of loncom/homework/grades.pm, revision 1.310

1.17      albertel    1: # The LearningOnline Network with CAPA
1.13      albertel    2: # The LON-CAPA Grading handler
1.17      albertel    3: #
1.310   ! banghart    4: # $Id: grades.pm,v 1.309 2006/02/06 23:39:44 albertel Exp $
1.17      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.1       albertel   28: 
                     29: package Apache::grades;
                     30: use strict;
                     31: use Apache::style;
                     32: use Apache::lonxml;
                     33: use Apache::lonnet;
1.3       albertel   34: use Apache::loncommon;
1.112     ng         35: use Apache::lonhtmlcommon;
1.68      ng         36: use Apache::lonnavmaps;
1.1       albertel   37: use Apache::lonhomework;
1.55      matthew    38: use Apache::loncoursedata;
1.38      ng         39: use Apache::lonmsg qw(:user_normal_msg);
1.1       albertel   40: use Apache::Constants qw(:common);
1.167     sakharuk   41: use Apache::lonlocal;
1.170     albertel   42: use String::Similarity;
1.87      www        43: 
                     44: my %oldessays=();
1.103     albertel   45: my %perm=();
1.1       albertel   46: 
1.68      ng         47: # ----- These first few routines are general use routines.----
1.44      ng         48: #
1.146     albertel   49: # --- Retrieve the parts from the metadata file.---
1.44      ng         50: sub getpartlist {
1.146     albertel   51:     my ($url,$symb) = @_;
                     52:     my $partorder = &Apache::lonnet::metadata($url, 'partorder');
                     53:     my @parts;
                     54:     if ($partorder) {
                     55: 	for my $part (split (/,/,$partorder)) {
                     56: 	    if (!&Apache::loncommon::check_if_partid_hidden($part,$symb)) {
                     57: 		push(@parts, $part);
                     58: 	    }
                     59: 	}	    
                     60:     } else {
                     61: 	my $metadata = &Apache::lonnet::metadata($url, 'packages');
                     62: 	foreach (split(/\,/,$metadata)) {
                     63: 	    if ($_ =~ /^part_(.*)$/) {
                     64: 		if (!&Apache::loncommon::check_if_partid_hidden($1,$symb)) {
                     65: 		    push(@parts, $1);
                     66: 		}
                     67: 	    }
1.41      ng         68: 	}
1.16      albertel   69:     }
1.146     albertel   70:     my @stores;
                     71:     foreach my $part (@parts) {
                     72: 	my (@metakeys) = split(/,/,&Apache::lonnet::metadata($url,'keys'));
                     73: 	foreach my $key (@metakeys) {
                     74: 	    if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
                     75: 	}
                     76:     }
                     77:     return @stores;
1.2       albertel   78: }
                     79: 
1.44      ng         80: # --- Get the symbolic name of a problem and the url
                     81: sub get_symb_and_url {
1.173     albertel   82:     my ($request,$silent) = @_;
1.257     albertel   83:     (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
                     84:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
1.173     albertel   85:     if ($symb eq '') { 
                     86: 	if (!$silent) {
                     87: 	    $request->print("Unable to handle ambiguous references:$url:.");
                     88: 	    return ();
                     89: 	}
                     90:     }
1.44      ng         91:     return ($symb,$url);
1.32      ng         92: }
                     93: 
1.129     ng         94: #--- Format fullname, username:domain if different for display
                     95: #--- Use anywhere where the student names are listed
                     96: sub nameUserString {
                     97:     my ($type,$fullname,$uname,$udom) = @_;
                     98:     if ($type eq 'header') {
1.250     albertel   99: 	return '<b>&nbsp;Fullname&nbsp;</b><font color="#999999">(Username)</font>';
1.129     ng        100:     } else {
                    101: 	return '&nbsp;'.$fullname.'<font color="#999999">&nbsp;('.$uname.
1.257     albertel  102: 	    ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</font>';
1.129     ng        103:     }
                    104: }
                    105: 
1.44      ng        106: #--- Get the partlist and the response type for a given problem. ---
                    107: #--- Indicate if a response type is coded handgraded or not. ---
1.39      ng        108: sub response_type {
1.125     ng        109:     my ($url,$symb) = shift;
1.257     albertel  110:     $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url))) if ($symb eq '');
1.41      ng        111:     my $allkeys = &Apache::lonnet::metadata($url,'keys');
1.154     albertel  112:     my %vPart;
                    113:     foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
                    114: 	$vPart{$partid}=1;
                    115:     }
1.41      ng        116:     my %seen = ();
1.147     albertel  117:     my (@partlist,%handgrade,%responseType);
1.41      ng        118:     foreach (split(/,/,&Apache::lonnet::metadata($url,'packages'))) {
1.147     albertel  119: 	if (/^\w+response_.*/) {
1.41      ng        120: 	    my ($responsetype,$part) = split(/_/,$_,2);
                    121: 	    my ($partid,$respid) = split(/_/,$part);
1.146     albertel  122: 	    if (&Apache::loncommon::check_if_partid_hidden($partid,$symb)) {
                    123: 		next;
                    124: 	    }
1.154     albertel  125: 	    if (%vPart && !exists($vPart{$partid})) {
                    126: 		next;
                    127: 	    }
1.118     ng        128: 	    $responsetype =~ s/response$//; # make it compatible w/ navmaps - should move to that!!
1.127     ng        129: 	    my ($value) = &Apache::lonnet::EXT('resource.'.$part.'.handgrade',$symb);
1.147     albertel  130: 	    $handgrade{$part} = ($value eq 'yes' ? 'yes' : 'no'); 
                    131: 	    if (!exists($responseType{$partid})) { $responseType{$partid}={}; }
                    132: 	    $responseType{$partid}->{$respid}=$responsetype;
1.41      ng        133: 	    next if ($seen{$partid} > 0);
                    134: 	    $seen{$partid}++;
                    135: 	    push @partlist,$partid;
                    136: 	}
                    137:     }
1.147     albertel  138:     return \@partlist,\%handgrade,\%responseType;
1.39      ng        139: }
                    140: 
1.207     albertel  141: sub get_display_part {
                    142:     my ($partID,$url,$symb)=@_;
                    143:     if (!defined($symb) || $symb eq '') {
1.257     albertel  144: 	$symb=$env{'form.symb'};
1.207     albertel  145: 	if ($symb eq '') { $symb=&Apache::lonnet::symbread($url) }
                    146:     }
                    147:     my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
                    148:     if (defined($display) and $display ne '') {
                    149: 	$display.= " (<font color=\"#999900\">id $partID</font>)";
                    150:     } else {
                    151: 	$display=$partID;
                    152:     }
                    153:     return $display;
                    154: }
1.269     raeburn   155: 
1.118     ng        156: #--- Show resource title
                    157: #--- and parts and response type
                    158: sub showResourceInfo {
1.154     albertel  159:     my ($url,$probTitle,$checkboxes) = @_;
                    160:     my $col=3;
                    161:     if ($checkboxes) { $col=4; }
1.118     ng        162:     my $result ='<table border="0">'.
1.167     sakharuk  163: 	'<tr><td colspan="'.$col.'"><font size="+1"><b>'.&mt('Current Resource').': </b>'.
1.154     albertel  164: 	$probTitle.'</font></td></tr>'."\n";
1.147     albertel  165:     my ($partlist,$handgrade,$responseType) = &response_type($url);
1.126     ng        166:     my %resptype = ();
1.122     ng        167:     my $hdgrade='no';
1.154     albertel  168:     my %partsseen;
1.147     albertel  169:     for my $part_resID (sort keys(%$handgrade)) {
                    170: 	my $handgrade=$$handgrade{$part_resID};
                    171: 	my ($partID,$resID) = split(/_/,$part_resID);
                    172: 	my $responsetype = $responseType->{$partID}->{$resID};
1.118     ng        173: 	$hdgrade = $handgrade if ($handgrade eq 'yes');
1.154     albertel  174: 	$result.='<tr>';
                    175: 	if ($checkboxes) {
                    176: 	    if (exists($partsseen{$partID})) {
                    177: 		$result.="<td>&nbsp;</td>";
                    178: 	    } else {
                    179: 		$result.="<td><input type='checkbox' name='vPart' value='$partID' checked='on' /></td>";
                    180: 	    }
                    181: 	    $partsseen{$partID}=1;
                    182: 	}
1.207     albertel  183: 	my $display_part=&get_display_part($partID,$url);
                    184: 	$result.='<td><b>Part: </b>'.$display_part.' <font color="#999999">'.
1.147     albertel  185: 	    $resID.'</font></td>'.
1.118     ng        186: 	    '<td><b>Type: </b>'.$responsetype.'</td></tr>';
                    187: #	    '<td><b>Handgrade: </b>'.$handgrade.'</td></tr>';
                    188:     }
                    189:     $result.='</table>'."\n";
1.147     albertel  190:     return $result,$responseType,$hdgrade,$partlist,$handgrade;
1.118     ng        191: }
                    192: 
1.148     albertel  193: 
                    194: sub get_order {
                    195:     my ($partid,$respid,$symb,$uname,$udom)=@_;
                    196:     my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
                    197:     $url=&Apache::lonnet::clutter($url);
                    198:     my $subresult=&Apache::lonnet::ssi($url,
                    199: 				       ('grade_target' => 'analyze'),
                    200: 				       ('grade_domain' => $udom),
                    201: 				       ('grade_symb' => $symb),
                    202: 				       ('grade_courseid' => 
1.257     albertel  203: 					        $env{'request.course.id'}),
1.148     albertel  204: 				       ('grade_username' => $uname));
1.149     albertel  205:     (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
1.148     albertel  206:     my %analyze=&Apache::lonnet::str2hash($subresult);
                    207:     return ($analyze{"$partid.$respid.shown"});
                    208: }
1.118     ng        209: #--- Clean response type for display
1.148     albertel  210: #--- Currently filters option/rank/radiobutton/match/essay response types only.
1.118     ng        211: sub cleanRecord {
1.148     albertel  212:     my ($answer,$response,$symb,$partid,$respid,$record,$order,$version) = @_;
                    213:     my $grayFont = '<font color="#999999">';
                    214:     if ($response =~ /^(option|rank)$/) {
                    215: 	my %answer=&Apache::lonnet::str2hash($answer);
                    216: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    217: 	my ($toprow,$bottomrow);
                    218: 	foreach my $foil (@$order) {
                    219: 	    if ($grading{$foil} == 1) {
                    220: 		$toprow.='<td><b>'.$answer{$foil}.'&nbsp;</b></td>';
                    221: 	    } else {
                    222: 		$toprow.='<td><i>'.$answer{$foil}.'&nbsp;</i></td>';
                    223: 	    }
                    224: 	    $bottomrow.='<td>'.$grayFont.$foil.'</font>&nbsp;</td>';
                    225: 	}
                    226: 	return '<blockquote><table border="1">'.
                    227: 	    '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
                    228: 	    '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
                    229: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
                    230:     } elsif ($response eq 'match') {
                    231: 	my %answer=&Apache::lonnet::str2hash($answer);
                    232: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    233: 	my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
                    234: 	my ($toprow,$middlerow,$bottomrow);
                    235: 	foreach my $foil (@$order) {
                    236: 	    my $item=shift(@items);
                    237: 	    if ($grading{$foil} == 1) {
                    238: 		$toprow.='<td><b>'.$item.'&nbsp;</b></td>';
                    239: 		$middlerow.='<td><b>'.$grayFont.$answer{$foil}.'&nbsp;</font></b></td>';
                    240: 	    } else {
                    241: 		$toprow.='<td><i>'.$item.'&nbsp;</i></td>';
                    242: 		$middlerow.='<td><i>'.$grayFont.$answer{$foil}.'&nbsp;</font></i></td>';
                    243: 	    }
                    244: 	    $bottomrow.='<td>'.$grayFont.$foil.'</font>&nbsp;</td>';
1.118     ng        245: 	}
1.126     ng        246: 	return '<blockquote><table border="1">'.
1.148     albertel  247: 	    '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
                    248: 	    '<tr valign="top"><td>'.$grayFont.'Item ID</font></td>'.
                    249: 	    $middlerow.'</tr>'.
                    250: 	    '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
                    251: 	    $bottomrow.'</tr>'.'</table></blockquote>';
                    252:     } elsif ($response eq 'radiobutton') {
                    253: 	my %answer=&Apache::lonnet::str2hash($answer);
                    254: 	my ($toprow,$bottomrow);
                    255: 	my $correct=($order->[0])+1;
                    256: 	for (my $i=1;$i<=$#$order;$i++) {
                    257: 	    my $foil=$order->[$i];
                    258: 	    if (exists($answer{$foil})) {
                    259: 		if ($i == $correct) {
                    260: 		    $toprow.='<td><b>true</b></td>';
                    261: 		} else {
                    262: 		    $toprow.='<td><i>true</i></td>';
                    263: 		}
                    264: 	    } else {
                    265: 		$toprow.='<td>false</td>';
                    266: 	    }
                    267: 	    $bottomrow.='<td>'.$grayFont.$foil.'</font>&nbsp;</td>';
                    268: 	}
                    269: 	return '<blockquote><table border="1">'.
                    270: 	    '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
                    271: 	    '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
                    272: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
                    273:     } elsif ($response eq 'essay') {
1.257     albertel  274: 	if (! exists ($env{'form.'.$symb})) {
1.122     ng        275: 	    my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257     albertel  276: 						  $env{'course.'.$env{'request.course.id'}.'.domain'},
                    277: 						  $env{'course.'.$env{'request.course.id'}.'.num'});
1.122     ng        278: 
1.257     albertel  279: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
                    280: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                    281: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                    282: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                    283: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                    284: 	    $env{'form.'.$symb} = 1; # so that we don't have to read it from disk for multiple sub of the same prob.
1.122     ng        285: 	}
1.166     albertel  286: 	$answer =~ s-\n-<br />-g;
                    287: 	return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268     albertel  288:     } elsif ( $response eq 'organic') {
                    289: 	my $result='Smile representation: "<tt>'.$answer.'</tt>"';
                    290: 	my $jme=$record->{$version."resource.$partid.$respid.molecule"};
                    291: 	$result.=&Apache::chemresponse::jme_img($jme,$answer,400);
                    292: 	return $result;
1.122     ng        293:     }
1.118     ng        294:     return $answer;
                    295: }
                    296: 
                    297: #-- A couple of common js functions
                    298: sub commonJSfunctions {
                    299:     my $request = shift;
                    300:     $request->print(<<COMMONJSFUNCTIONS);
                    301: <script type="text/javascript" language="javascript">
                    302:     function radioSelection(radioButton) {
                    303: 	var selection=null;
                    304: 	if (radioButton.length > 1) {
                    305: 	    for (var i=0; i<radioButton.length; i++) {
                    306: 		if (radioButton[i].checked) {
                    307: 		    return radioButton[i].value;
                    308: 		}
                    309: 	    }
                    310: 	} else {
                    311: 	    if (radioButton.checked) return radioButton.value;
                    312: 	}
                    313: 	return selection;
                    314:     }
                    315: 
                    316:     function pullDownSelection(selectOne) {
                    317: 	var selection="";
                    318: 	if (selectOne.length > 1) {
                    319: 	    for (var i=0; i<selectOne.length; i++) {
                    320: 		if (selectOne[i].selected) {
                    321: 		    return selectOne[i].value;
                    322: 		}
                    323: 	    }
                    324: 	} else {
1.138     albertel  325:             // only one value it must be the selected one
                    326: 	    return selectOne.value;
1.118     ng        327: 	}
                    328:     }
                    329: </script>
                    330: COMMONJSFUNCTIONS
                    331: }
                    332: 
1.44      ng        333: #--- Dumps the class list with usernames,list of sections,
                    334: #--- section, ids and fullnames for each user.
                    335: sub getclasslist {
1.76      ng        336:     my ($getsec,$filterlist) = @_;
1.291     albertel  337:     my @getsec;
                    338:     if (!ref($getsec)) {
                    339: 	if ($getsec ne '' && $getsec ne 'all') {
                    340: 	    @getsec=($getsec);
                    341: 	}
                    342:     } else {
                    343: 	@getsec=@{$getsec};
                    344:     }
                    345:     if (grep(/^all$/,@getsec)) { undef(@getsec); }
                    346: 
1.56      matthew   347:     my $classlist=&Apache::loncoursedata::get_classlist();
1.49      albertel  348:     # Bail out if we were unable to get the classlist
1.56      matthew   349:     return if (! defined($classlist));
                    350:     #
                    351:     my %sections;
                    352:     my %fullnames;
1.205     matthew   353:     foreach my $student (keys(%$classlist)) {
                    354:         my $end      = 
                    355:             $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
                    356:         my $start    = 
                    357:             $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
                    358:         my $id       = 
                    359:             $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
                    360:         my $section  = 
                    361:             $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
                    362:         my $fullname = 
                    363:             $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
                    364:         my $status   = 
                    365:             $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.76      ng        366: 	# filter students according to status selected
1.257     albertel  367: 	if ($filterlist && $env{'form.Status'} ne 'Any') {
                    368: 	    if ($env{'form.Status'} ne $status) {
1.205     matthew   369: 		delete ($classlist->{$student});
1.76      ng        370: 		next;
                    371: 	    }
                    372: 	}
1.205     matthew   373: 	$section = ($section ne '' ? $section : 'none');
1.106     albertel  374: 	if (&canview($section)) {
1.291     albertel  375: 	    if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103     albertel  376: 		$sections{$section}++;
1.205     matthew   377: 		$fullnames{$student}=$fullname;
1.103     albertel  378: 	    } else {
1.205     matthew   379: 		delete($classlist->{$student});
1.103     albertel  380: 	    }
                    381: 	} else {
1.205     matthew   382: 	    delete($classlist->{$student});
1.103     albertel  383: 	}
1.44      ng        384:     }
                    385:     my %seen = ();
1.56      matthew   386:     my @sections = sort(keys(%sections));
                    387:     return ($classlist,\@sections,\%fullnames);
1.44      ng        388: }
                    389: 
1.103     albertel  390: sub canmodify {
                    391:     my ($sec)=@_;
                    392:     if ($perm{'mgr'}) {
                    393: 	if (!defined($perm{'mgr_section'})) {
                    394: 	    # can modify whole class
                    395: 	    return 1;
                    396: 	} else {
                    397: 	    if ($sec eq $perm{'mgr_section'}) {
                    398: 		#can modify the requested section
                    399: 		return 1;
                    400: 	    } else {
                    401: 		# can't modify the request section
                    402: 		return 0;
                    403: 	    }
                    404: 	}
                    405:     }
                    406:     #can't modify
                    407:     return 0;
                    408: }
                    409: 
                    410: sub canview {
                    411:     my ($sec)=@_;
                    412:     if ($perm{'vgr'}) {
                    413: 	if (!defined($perm{'vgr_section'})) {
                    414: 	    # can modify whole class
                    415: 	    return 1;
                    416: 	} else {
                    417: 	    if ($sec eq $perm{'vgr_section'}) {
                    418: 		#can modify the requested section
                    419: 		return 1;
                    420: 	    } else {
                    421: 		# can't modify the request section
                    422: 		return 0;
                    423: 	    }
                    424: 	}
                    425:     }
                    426:     #can't modify
                    427:     return 0;
                    428: }
                    429: 
1.44      ng        430: #--- Retrieve the grade status of a student for all the parts
                    431: sub student_gradeStatus {
                    432:     my ($url,$symb,$udom,$uname,$partlist) = @_;
1.257     albertel  433:     my %record     = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44      ng        434:     my %partstatus = ();
                    435:     foreach (@$partlist) {
1.128     ng        436: 	my ($status,undef)   = split(/_/,$record{"resource.$_.solved"},2);
1.44      ng        437: 	$status              = 'nothing' if ($status eq '');
                    438: 	$partstatus{$_}      = $status;
                    439: 	my $subkey           = "resource.$_.submitted_by";
                    440: 	$partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
                    441:     }
                    442:     return %partstatus;
                    443: }
                    444: 
1.45      ng        445: # hidden form and javascript that calls the form
                    446: # Use by verifyscript and viewgrades
                    447: # Shows a student's view of problem and submission
                    448: sub jscriptNform {
                    449:     my ($url,$symb) = @_;
                    450:     my $jscript='<script type="text/javascript" language="javascript">'."\n".
                    451: 	'    function viewOneStudent(user,domain) {'."\n".
                    452: 	'	document.onestudent.student.value = user;'."\n".
                    453: 	'	document.onestudent.userdom.value = domain;'."\n".
                    454: 	'	document.onestudent.submit();'."\n".
                    455: 	'    }'."\n".
                    456: 	'</script>'."\n";
                    457:     $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
                    458: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
                    459: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
1.257     albertel  460: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
                    461: 	'<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
                    462: 	'<input type="hidden" name="Status"  value="'.$env{'form.Status'}.'" />'."\n".
1.45      ng        463: 	'<input type="hidden" name="command" value="submission" />'."\n".
                    464: 	'<input type="hidden" name="student" value="" />'."\n".
                    465: 	'<input type="hidden" name="userdom" value="" />'."\n".
                    466: 	'</form>'."\n";
                    467:     return $jscript;
                    468: }
1.39      ng        469: 
1.44      ng        470: #------------------ End of general use routines --------------------
1.87      www       471: 
                    472: #
                    473: # Find most similar essay
                    474: #
                    475: 
                    476: sub most_similar {
                    477:     my ($uname,$udom,$uessay)=@_;
                    478: 
                    479: # ignore spaces and punctuation
                    480: 
                    481:     $uessay=~s/\W+/ /gs;
                    482: 
1.282     www       483: # ignore empty submissions (occuring when only files are sent)
                    484: 
                    485:     unless ($uessay=~/\w+/) { return ''; }
                    486: 
1.87      www       487: # these will be returned. Do not care if not at least 50 percent similar
1.88      www       488:     my $limit=0.6;
1.87      www       489:     my $sname='';
                    490:     my $sdom='';
                    491:     my $scrsid='';
                    492:     my $sessay='';
                    493: # go through all essays ...
                    494:     foreach my $tkey (keys %oldessays) {
                    495: 	my ($tname,$tdom,$tcrsid)=split(/\./,$tkey);
                    496: # ... except the same student
1.88      www       497:         if (($tname ne $uname) || ($tdom ne $udom)) {
1.87      www       498: 	    my $tessay=$oldessays{$tkey};
                    499:             $tessay=~s/\W+/ /gs;
                    500: # String similarity gives up if not even limit
1.88      www       501:             my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87      www       502: # Found one
                    503:             if ($tsimilar>$limit) {
                    504: 		$limit=$tsimilar;
                    505:                 $sname=$tname;
1.88      www       506:                 $sdom=$tdom;
1.87      www       507:                 $scrsid=$tcrsid;
                    508:                 $sessay=$oldessays{$tkey};
                    509:             }
                    510:         } 
                    511:     }
1.88      www       512:     if ($limit>0.6) {
1.87      www       513:        return ($sname,$sdom,$scrsid,$sessay,$limit);
                    514:     } else {
                    515:        return ('','','','',0);
                    516:     }
                    517: }
                    518: 
1.44      ng        519: #-------------------------------------------------------------------
                    520: 
                    521: #------------------------------------ Receipt Verification Routines
1.45      ng        522: #
1.44      ng        523: #--- Check whether a receipt number is valid.---
                    524: sub verifyreceipt {
                    525:     my $request  = shift;
                    526: 
1.257     albertel  527:     my $courseid = $env{'request.course.id'};
1.184     www       528:     my $receipt  = &Apache::lonnet::recprefix($courseid).'-'.
1.257     albertel  529: 	$env{'form.receipt'};
1.44      ng        530:     $receipt     =~ s/[^\-\d]//g;
1.257     albertel  531:     my $url      = $env{'form.url'};
                    532:     my $symb     = $env{'form.symb'};
1.44      ng        533:     unless ($symb) {
                    534: 	$symb    = &Apache::lonnet::symbread($url);
                    535:     }
                    536: 
1.45      ng        537:     my $title.='<h3><font color="#339933">Verifying Submission Receipt '.
                    538: 	$receipt.'</h3></font>'."\n".
1.257     albertel  539: 	'<font size=+1><b>Resource: </b>'.$env{'form.probTitle'}.'</font><br><br>'."\n";
1.44      ng        540: 
                    541:     my ($string,$contents,$matches) = ('','',0);
1.56      matthew   542:     my (undef,undef,$fullname) = &getclasslist('all','0');
1.177     albertel  543:     
                    544:     my $receiptparts=0;
1.257     albertel  545:     if ($env{"course.$courseid.receiptalg"} eq 'receipt2') { $receiptparts=1; }
1.177     albertel  546:     my $parts=['0'];
                    547:     if ($receiptparts) { ($parts)=&response_type($url,$symb); }
1.294     albertel  548:     foreach (sort 
                    549: 	     {
                    550: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                    551: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                    552: 		 }
                    553: 		 return $a cmp $b;
                    554: 	     } (keys(%$fullname))) {
1.44      ng        555: 	my ($uname,$udom)=split(/\:/);
1.177     albertel  556: 	foreach my $part (@$parts) {
                    557: 	    if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
                    558: 		$contents.='<tr bgcolor="#ffffe6"><td>&nbsp;'."\n".
                    559: 		    '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
                    560: 		    '\')"; TARGET=_self>'.$$fullname{$_}.'</a>&nbsp;</td>'."\n".
                    561: 		    '<td>&nbsp;'.$uname.'&nbsp;</td>'.
                    562: 		    '<td>&nbsp;'.$udom.'&nbsp;</td>';
                    563: 		if ($receiptparts) {
                    564: 		    $contents.='<td>&nbsp;'.$part.'&nbsp;</td>';
                    565: 		}
                    566: 		$contents.='</tr>'."\n";
                    567: 		
                    568: 		$matches++;
                    569: 	    }
1.44      ng        570: 	}
                    571:     }
                    572:     if ($matches == 0) {
                    573: 	$string = $title.'No match found for the above receipt.';
                    574:     } else {
1.45      ng        575: 	$string = &jscriptNform($url,$symb).$title.
1.44      ng        576: 	    'The above receipt matches the following student'.
                    577: 	    ($matches <= 1 ? '.' : 's.')."\n".
                    578: 	    '<table border="0"><tr><td bgcolor="#777777">'."\n".
                    579: 	    '<table border="0"><tr bgcolor="#e6ffff">'."\n".
                    580: 	    '<td><b>&nbsp;Fullname&nbsp;</b></td>'."\n".
                    581: 	    '<td><b>&nbsp;Username&nbsp;</b></td>'."\n".
1.177     albertel  582: 	    '<td><b>&nbsp;Domain&nbsp;</b></td>';
                    583: 	if ($receiptparts) {
                    584: 	    $string.='<td>&nbsp;Problem Part&nbsp;</td>';
                    585: 	}
                    586: 	$string.='</tr>'."\n".$contents.
1.44      ng        587: 	    '</table></td></tr></table>'."\n";
                    588:     }
1.50      albertel  589:     return $string.&show_grading_menu_form($symb,$url);
1.44      ng        590: }
                    591: 
                    592: #--- This is called by a number of programs.
                    593: #--- Called from the Grading Menu - View/Grade an individual student
                    594: #--- Also called directly when one clicks on the subm button 
                    595: #    on the problem page.
1.30      ng        596: sub listStudents {
1.41      ng        597:     my ($request) = shift;
1.49      albertel  598: 
1.72      ng        599:     my ($symb,$url) = &get_symb_and_url($request);
1.257     albertel  600:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                    601:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                    602:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
                    603:     my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
                    604: 
                    605:     my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
                    606:     $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ? 
                    607: 	&Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.49      albertel  608: 
1.118     ng        609:     my $result='<h3><font color="#339933">&nbsp;'.$viewgrade.
                    610: 	' Submissions for a Student or a Group of Students</font></h3>';
                    611: 
1.257     albertel  612:     my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($url,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
1.49      albertel  613: 
1.45      ng        614:     $request->print(<<LISTJAVASCRIPT);
                    615: <script type="text/javascript" language="javascript">
1.110     ng        616:     function checkSelect(checkBox) {
                    617: 	var ctr=0;
                    618: 	var sense="";
                    619: 	if (checkBox.length > 1) {
                    620: 	    for (var i=0; i<checkBox.length; i++) {
                    621: 		if (checkBox[i].checked) {
                    622: 		    ctr++;
                    623: 		}
                    624: 	    }
                    625: 	    sense = "a student or group of students";
                    626: 	} else {
                    627: 	    if (checkBox.checked) {
                    628: 		ctr = 1;
                    629: 	    }
                    630: 	    sense = "the student";
                    631: 	}
                    632: 	if (ctr == 0) {
1.126     ng        633: 	    alert("Please select "+sense+" before clicking on the Next button.");
1.110     ng        634: 	    return false;
                    635: 	}
                    636: 	document.gradesub.submit();
                    637:     }
                    638: 
                    639:     function reLoadList(formname) {
1.112     ng        640: 	if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110     ng        641: 	formname.command.value = 'submission';
                    642: 	formname.submit();
                    643:     }
1.45      ng        644: </script>
                    645: LISTJAVASCRIPT
                    646: 
1.118     ng        647:     &commonJSfunctions($request);
1.41      ng        648:     $request->print($result);
1.39      ng        649: 
1.257     albertel  650:     my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked' : '';
1.119     ng        651:     my $checklastsub = $checkhdgrade eq '' ? 'checked' : '';
1.154     albertel  652:     my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
                    653: 	"\n".$table.
1.267     albertel  654: 	'&nbsp;<b>View Problem Text: </b><label><input type="radio" name="vProb" value="no" checked="on" /> no </label>'."\n".
                    655: 	'<label><input type="radio" name="vProb" value="yes" /> one student </label>'."\n".
                    656: 	'<label><input type="radio" name="vProb" value="all" /> all students </label><br />'."\n".
                    657: 	'&nbsp;<b>View Answer: </b><label><input type="radio" name="vAns" value="no"  /> no </label>'."\n".
                    658: 	'<label><input type="radio" name="vAns" value="yes" /> one student </label>'."\n".
                    659: 	'<label><input type="radio" name="vAns" value="all" checked="on" /> all students </label><br />'."\n".
1.49      albertel  660: 	'&nbsp;<b>Submissions: </b>'."\n";
1.257     albertel  661:     if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
1.267     albertel  662: 	$gradeTable.='<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> essay part only </label>'."\n";
1.49      albertel  663:     }
1.110     ng        664: 
1.257     albertel  665:     my $saveStatus = $env{'form.Status'} eq '' ? 'Active' : $env{'form.Status'};
                    666:     $env{'form.Status'} = $saveStatus;
1.110     ng        667: 
1.267     albertel  668:     $gradeTable.='<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> last submission only </label>'."\n".
                    669: 	'<label><input type="radio" name="lastSub" value="last" /> last submission & parts info </label>'."\n".
                    670: 	'<label><input type="radio" name="lastSub" value="datesub" /> by dates and submissions </label>'."\n".
                    671: 	'<label><input type="radio" name="lastSub" value="all" /> all details</label>'."\n".
1.45      ng        672: 	'<input type="hidden" name="section"     value="'.$getsec.'" />'."\n".
                    673: 	'<input type="hidden" name="submitonly"  value="'.$submitonly.'" />'."\n".
1.257     albertel  674: 	'<input type="hidden" name="handgrade"   value="'.$env{'form.handgrade'}.'" /><br />'."\n".
                    675: 	'<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
                    676: 	'<input type="hidden" name="saveState"   value="'.$env{'form.saveState'}.'" />'."\n".
                    677: 	'<input type="hidden" name="probTitle"   value="'.$env{'form.probTitle'}.'" />'."\n".
1.48      albertel  678: 	'<input type="hidden" name="url"  value="'.$url.'" />'."\n".
                    679: 	'<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.110     ng        680: 	'<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
                    681: 
1.257     albertel  682:     if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
                    683: 	$gradeTable.='<input type="hidden" name="Status"   value="'.$env{'form.Status'}.'" />'."\n";
1.124     ng        684:     } else {
                    685: 	$gradeTable.='<b>Student Status:</b> '.
                    686: 	    &Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,'javascript:reLoadList(this.form);').'<br />';
                    687:     }
1.112     ng        688: 
1.126     ng        689:     $gradeTable.='To '.lc($viewgrade).' a submission or a group of submissions, click on the check box(es) '.
                    690: 	'next to the student\'s name(s). Then click on the Next button.<br />'."\n".
1.110     ng        691: 	'<input type="hidden" name="command" value="processGroup" />'."\n";
1.249     albertel  692: 
                    693: # checkall buttons
                    694:     $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110     ng        695:     $gradeTable.='<input type="button" '."\n".
1.45      ng        696: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1.249     albertel  697: 	'value="Next->" /> <br />'."\n";
                    698:     $gradeTable.=&check_buttons();
1.267     albertel  699:     $gradeTable.='<label><input type="checkbox" name="checkPlag" checked="on" />Check For Plagiarism</label>';
1.249     albertel  700:     my ($classlist, undef, $fullname) = &getclasslist($getsec,'1');
1.45      ng        701:     $gradeTable.='<table border="0"><tr><td bgcolor="#777777">'.
1.110     ng        702: 	'<table border="0"><tr bgcolor="#e6ffff">';
                    703:     my $loop = 0;
                    704:     while ($loop < 2) {
1.126     ng        705: 	$gradeTable.='<td><b>&nbsp;No.</b>&nbsp;</td><td><b>&nbsp;Select&nbsp;</b></td>'.
1.250     albertel  706: 	    '<td>'.&nameUserString('header').'&nbsp;Section/Group</td>';
1.301     albertel  707: 	if ($env{'form.showgrading'} eq 'yes' 
                    708: 	    && $submitonly ne 'queued'
                    709: 	    && $submitonly ne 'all') {
1.110     ng        710: 	    foreach (sort(@$partlist)) {
1.207     albertel  711: 		my $display_part=&get_display_part((split(/_/))[0],$url,$symb);
                    712: 		$gradeTable.='<td><b>&nbsp;Part: '.$display_part.
                    713: 		    ' Status&nbsp;</b></td>';
1.110     ng        714: 	    }
1.301     albertel  715: 	} elsif ($submitonly eq 'queued') {
                    716: 	    $gradeTable.='<td><b>&nbsp;'.&mt('Queue Status').'&nbsp;</b></td>';
1.110     ng        717: 	}
                    718: 	$loop++;
1.126     ng        719: #	$gradeTable.='<td></td>' if ($loop%2 ==1);
1.41      ng        720:     }
1.45      ng        721:     $gradeTable.='</tr>'."\n";
1.41      ng        722: 
1.45      ng        723:     my $ctr = 0;
1.294     albertel  724:     foreach my $student (sort 
                    725: 			 {
                    726: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                    727: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                    728: 			     }
                    729: 			     return $a cmp $b;
                    730: 			 }
                    731: 			 (keys(%$fullname))) {
1.41      ng        732: 	my ($uname,$udom) = split(/:/,$student);
1.301     albertel  733: 
1.110     ng        734: 	my %status = ();
1.301     albertel  735: 
                    736: 	if ($submitonly eq 'queued') {
                    737: 	    my %queue_status = 
                    738: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
                    739: 							$udom,$uname);
                    740: 	    next if (!defined($queue_status{'gradingqueue'}));
                    741: 	    $status{'gradingqueue'} = $queue_status{'gradingqueue'};
                    742: 	}
                    743: 
                    744: 	if ($env{'form.showgrading'} eq 'yes' 
                    745: 	    && $submitonly ne 'queued'
                    746: 	    && $submitonly ne 'all') {
1.110     ng        747: 	    (%status) =&student_gradeStatus($url,$symb,$udom,$uname,$partlist);
1.145     albertel  748: 	    my $submitted = 0;
1.164     albertel  749: 	    my $graded = 0;
1.248     albertel  750: 	    my $incorrect = 0;
1.110     ng        751: 	    foreach (keys(%status)) {
1.145     albertel  752: 		$submitted = 1 if ($status{$_} ne 'nothing');
1.248     albertel  753: 		$graded = 1 if ($status{$_} =~ /^ungraded/);
                    754: 		$incorrect = 1 if ($status{$_} =~ /^incorrect/);
                    755: 		
1.110     ng        756: 		my ($foo,$partid,$foo1) = split(/\./,$_);
                    757: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145     albertel  758: 		    $submitted = 0;
1.150     albertel  759: 		    my ($part)=split(/\./,$partid);
1.110     ng        760: 		    $gradeTable.='<input type="hidden" name="'.
1.150     albertel  761: 			$student.':'.$part.':submitted_by" value="'.
1.110     ng        762: 			$status{'resource.'.$partid.'.submitted_by'}.'" />';
                    763: 		}
1.41      ng        764: 	    }
1.248     albertel  765: 	    
1.156     albertel  766: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                    767: 				     $submitonly eq 'incorrect' ||
                    768: 				     $submitonly eq 'graded'));
1.248     albertel  769: 	    next if (!$graded && ($submitonly eq 'graded'));
                    770: 	    next if (!$incorrect && $submitonly eq 'incorrect');
1.41      ng        771: 	}
1.34      ng        772: 
1.45      ng        773: 	$ctr++;
1.249     albertel  774: 	my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
                    775: 
1.104     albertel  776: 	if ( $perm{'vgr'} eq 'F' ) {
1.110     ng        777: 	    $gradeTable.='<tr bgcolor="#ffffe6">' if ($ctr%2 ==1);
1.126     ng        778: 	    $gradeTable.='<td align="right">'.$ctr.'&nbsp;</td>'.
1.249     albertel  779:                '<td align="center"><label><input type=checkbox name="stuinfo" value="'.
                    780:                $student.':'.$$fullname{$student}.':::SECTION'.$section.
                    781: 	       ')&nbsp;" />&nbsp;&nbsp;</label></td>'."\n".'<td>'.
                    782: 	       &nameUserString(undef,$$fullname{$student},$uname,$udom).
                    783: 	       '&nbsp;'.$section.'</td>'."\n";
1.110     ng        784: 
1.257     albertel  785: 	    if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.110     ng        786: 		foreach (sort keys(%status)) {
                    787: 		    next if (/^resource.*?submitted_by$/);
1.276     albertel  788: 		    $gradeTable.='<td align="center">&nbsp;'.$status{$_}.'&nbsp;</td>'."\n";
1.110     ng        789: 		}
1.41      ng        790: 	    }
1.126     ng        791: #	    $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.110     ng        792: 	    $gradeTable.='</tr>'."\n" if ($ctr%2 ==0);
1.41      ng        793: 	}
                    794:     }
1.110     ng        795:     if ($ctr%2 ==1) {
1.126     ng        796: 	$gradeTable.='<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';
1.301     albertel  797: 	    if ($env{'form.showgrading'} eq 'yes' 
                    798: 		&& $submitonly ne 'queued'
                    799: 		&& $submitonly ne 'all') {
1.110     ng        800: 		foreach (@$partlist) {
                    801: 		    $gradeTable.='<td>&nbsp;</td>';
                    802: 		}
1.301     albertel  803: 	    } elsif ($submitonly eq 'queued') {
                    804: 		$gradeTable.='<td>&nbsp;</td>';
1.110     ng        805: 	    }
                    806: 	$gradeTable.='</tr>';
                    807:     }
                    808: 
1.249     albertel  809:     $gradeTable.='</table></td></tr></table>'."\n".
1.45      ng        810: 	'<input type="button" '.
                    811: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '.
1.126     ng        812: 	'value="Next->" /></form>'."\n";
1.45      ng        813:     if ($ctr == 0) {
1.96      albertel  814: 	my $num_students=(scalar(keys(%$fullname)));
                    815: 	if ($num_students eq 0) {
                    816: 	    $gradeTable='<br />&nbsp;<font color="red">There are no students currently enrolled.</font>';
                    817: 	} else {
1.171     albertel  818: 	    my $submissions='submissions';
                    819: 	    if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
                    820: 	    if ($submitonly eq 'graded'   ) { $submissions = 'ungraded submissions'; }
1.301     albertel  821: 	    if ($submitonly eq 'queued'   ) { $submissions = 'queued submissions'; }
1.96      albertel  822: 	    $gradeTable='<br />&nbsp;<font color="red">'.
1.171     albertel  823: 		'No '.$submissions.' found for this resource for any students. ('.$num_students.
                    824: 		' students checked for '.$submissions.')</font><br />';
1.96      albertel  825: 	}
1.46      ng        826:     } elsif ($ctr == 1) {
                    827: 	$gradeTable =~ s/type=checkbox/type=checkbox checked/;
1.45      ng        828:     }
1.50      albertel  829:     $gradeTable.=&show_grading_menu_form($symb,$url);
1.45      ng        830:     $request->print($gradeTable);
1.44      ng        831:     return '';
1.10      ng        832: }
                    833: 
1.44      ng        834: #---- Called from the listStudents routine
1.249     albertel  835: 
                    836: sub check_script {
                    837:     my ($form, $type)=@_;
                    838:     my $chkallscript='<script type="text/javascript">
                    839:     function checkall() {
                    840:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                    841:             ele = document.forms.'.$form.'.elements[i];
                    842:             if (ele.name == "'.$type.'") {
                    843:             document.forms.'.$form.'.elements[i].checked=true;
                    844:                                        }
                    845:         }
                    846:     }
                    847: 
                    848:     function checksec() {
                    849:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                    850:             ele = document.forms.'.$form.'.elements[i];
                    851:            string = document.forms.'.$form.'.chksec.value;
                    852:            if
                    853:           (ele.value.indexOf(":::SECTION"+string)>0) {
                    854:               document.forms.'.$form.'.elements[i].checked=true;
                    855:             }
                    856:         }
                    857:     }
                    858: 
                    859: 
                    860:     function uncheckall() {
                    861:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                    862:             ele = document.forms.'.$form.'.elements[i];
                    863:             if (ele.name == "'.$type.'") {
                    864:             document.forms.'.$form.'.elements[i].checked=false;
                    865:                                        }
                    866:         }
                    867:     }
                    868: 
                    869: </script>'."\n";
                    870:     return $chkallscript;
                    871: }
                    872: 
                    873: sub check_buttons {
                    874:     my $buttons.='<input type="button" onclick="checkall()" value="Check All" />';
                    875:     $buttons.='<input type="button" onclick="uncheckall()" value="Uncheck All" />&nbsp;';
                    876:     $buttons.='<input type="button" onclick="checksec()" value="Check Section/Group" />';
                    877:     $buttons.='<input type="text" size="5" name="chksec" />&nbsp;';
                    878:     return $buttons;
                    879: }
                    880: 
1.44      ng        881: #     Displays the submissions for one student or a group of students
1.34      ng        882: sub processGroup {
1.41      ng        883:     my ($request)  = shift;
                    884:     my $ctr        = 0;
1.155     albertel  885:     my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41      ng        886:     my $total      = scalar(@stuchecked)-1;
1.45      ng        887: 
1.41      ng        888:     foreach (@stuchecked) {
                    889: 	my ($uname,$udom,$fullname) = split(/:/);
1.257     albertel  890: 	$env{'form.student'}        = $uname;
                    891: 	$env{'form.userdom'}        = $udom;
                    892: 	$env{'form.fullname'}       = $fullname;
1.41      ng        893: 	&submission($request,$ctr,$total);
                    894: 	$ctr++;
                    895:     }
                    896:     return '';
1.35      ng        897: }
1.34      ng        898: 
1.44      ng        899: #------------------------------------------------------------------------------------
                    900: #
                    901: #-------------------------- Next few routines handles grading by student, essentially
                    902: #                           handles essay response type problem/part
                    903: #
                    904: #--- Javascript to handle the submission page functionality ---
                    905: sub sub_page_js {
                    906:     my $request = shift;
                    907:     $request->print(<<SUBJAVASCRIPT);
                    908: <script type="text/javascript" language="javascript">
1.71      ng        909:     function updateRadio(formname,id,weight) {
1.125     ng        910: 	var gradeBox = formname["GD_BOX"+id];
                    911: 	var radioButton = formname["RADVAL"+id];
                    912: 	var oldpts = formname["oldpts"+id].value;
1.72      ng        913: 	var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71      ng        914: 	gradeBox.value = pts;
                    915: 	var resetbox = false;
                    916: 	if (isNaN(pts) || pts < 0) {
                    917: 	    alert("A number equal or greater than 0 is expected. Entered value = "+pts);
                    918: 	    for (var i=0; i<radioButton.length; i++) {
                    919: 		if (radioButton[i].checked) {
                    920: 		    gradeBox.value = i;
                    921: 		    resetbox = true;
                    922: 		}
                    923: 	    }
                    924: 	    if (!resetbox) {
                    925: 		formtextbox.value = "";
                    926: 	    }
                    927: 	    return;
1.44      ng        928: 	}
1.71      ng        929: 
                    930: 	if (pts > weight) {
                    931: 	    var resp = confirm("You entered a value ("+pts+
                    932: 			       ") greater than the weight for the part. Accept?");
                    933: 	    if (resp == false) {
1.125     ng        934: 		gradeBox.value = oldpts;
1.71      ng        935: 		return;
                    936: 	    }
1.44      ng        937: 	}
1.13      albertel  938: 
1.71      ng        939: 	for (var i=0; i<radioButton.length; i++) {
                    940: 	    radioButton[i].checked=false;
                    941: 	    if (pts == i && pts != "") {
                    942: 		radioButton[i].checked=true;
                    943: 	    }
                    944: 	}
                    945: 	updateSelect(formname,id);
1.125     ng        946: 	formname["stores"+id].value = "0";
1.41      ng        947:     }
1.5       albertel  948: 
1.72      ng        949:     function writeBox(formname,id,pts) {
1.125     ng        950: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng        951: 	if (checkSolved(formname,id) == 'update') {
                    952: 	    gradeBox.value = pts;
                    953: 	} else {
1.125     ng        954: 	    var oldpts = formname["oldpts"+id].value;
1.72      ng        955: 	    gradeBox.value = oldpts;
1.125     ng        956: 	    var radioButton = formname["RADVAL"+id];
1.71      ng        957: 	    for (var i=0; i<radioButton.length; i++) {
                    958: 		radioButton[i].checked=false;
1.72      ng        959: 		if (i == oldpts) {
1.71      ng        960: 		    radioButton[i].checked=true;
                    961: 		}
                    962: 	    }
1.41      ng        963: 	}
1.125     ng        964: 	formname["stores"+id].value = "0";
1.71      ng        965: 	updateSelect(formname,id);
                    966: 	return;
1.41      ng        967:     }
1.44      ng        968: 
1.71      ng        969:     function clearRadBox(formname,id) {
                    970: 	if (checkSolved(formname,id) == 'noupdate') {
                    971: 	    updateSelect(formname,id);
                    972: 	    return;
                    973: 	}
1.125     ng        974: 	gradeSelect = formname["GD_SEL"+id];
1.71      ng        975: 	for (var i=0; i<gradeSelect.length; i++) {
                    976: 	    if (gradeSelect[i].selected) {
                    977: 		var selectx=i;
                    978: 	    }
                    979: 	}
1.125     ng        980: 	var stores = formname["stores"+id];
1.71      ng        981: 	if (selectx == stores.value) { return };
1.125     ng        982: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng        983: 	gradeBox.value = "";
1.125     ng        984: 	var radioButton = formname["RADVAL"+id];
1.71      ng        985: 	for (var i=0; i<radioButton.length; i++) {
                    986: 	    radioButton[i].checked=false;
                    987: 	}
                    988: 	stores.value = selectx;
                    989:     }
1.5       albertel  990: 
1.71      ng        991:     function checkSolved(formname,id) {
1.125     ng        992: 	if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118     ng        993: 	    var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
                    994: 	    if (!reply) {return "noupdate";}
1.120     ng        995: 	    formname.overRideScore.value = 'yes';
1.41      ng        996: 	}
1.71      ng        997: 	return "update";
1.13      albertel  998:     }
1.71      ng        999: 
                   1000:     function updateSelect(formname,id) {
1.125     ng       1001: 	formname["GD_SEL"+id][0].selected = true;
1.71      ng       1002: 	return;
1.41      ng       1003:     }
1.33      ng       1004: 
1.121     ng       1005: //=========== Check that a point is assigned for all the parts  ============
1.71      ng       1006:     function checksubmit(formname,val,total,parttot) {
1.121     ng       1007: 	formname.gradeOpt.value = val;
1.71      ng       1008: 	if (val == "Save & Next") {
                   1009: 	    for (i=0;i<=total;i++) {
                   1010: 		for (j=0;j<parttot;j++) {
1.125     ng       1011: 		    var partid = formname["partid"+i+"_"+j].value;
1.127     ng       1012: 		    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng       1013: 			var points = formname["GD_BOX"+i+"_"+partid].value;
1.71      ng       1014: 			if (points == "") {
1.125     ng       1015: 			    var name = formname["name"+i].value;
1.129     ng       1016: 			    var studentID = (name != '' ? name : formname["unamedom"+i].value);
                   1017: 			    var resp = confirm("You did not assign a score for "+studentID+
                   1018: 					       ", part "+partid+". Continue?");
1.71      ng       1019: 			    if (resp == false) {
1.125     ng       1020: 				formname["GD_BOX"+i+"_"+partid].focus();
1.71      ng       1021: 				return false;
                   1022: 			    }
                   1023: 			}
                   1024: 		    }
                   1025: 		    
                   1026: 		}
                   1027: 	    }
                   1028: 	    
                   1029: 	}
1.121     ng       1030: 	if (val == "Grade Student") {
                   1031: 	    formname.showgrading.value = "yes";
                   1032: 	    if (formname.Status.value == "") {
                   1033: 		formname.Status.value = "Active";
                   1034: 	    }
                   1035: 	    formname.studentNo.value = total;
                   1036: 	}
1.120     ng       1037: 	formname.submit();
                   1038:     }
                   1039: 
1.71      ng       1040: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
                   1041:     function checkSubmitPage(formname,total) {
                   1042: 	noscore = new Array(100);
                   1043: 	var ptr = 0;
                   1044: 	for (i=1;i<total;i++) {
1.125     ng       1045: 	    var partid = formname["q_"+i].value;
1.127     ng       1046: 	    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng       1047: 		var points = formname["GD_BOX"+i+"_"+partid].value;
                   1048: 		var status = formname["solved"+i+"_"+partid].value;
1.71      ng       1049: 		if (points == "" && status != "correct_by_student") {
                   1050: 		    noscore[ptr] = i;
                   1051: 		    ptr++;
                   1052: 		}
                   1053: 	    }
                   1054: 	}
                   1055: 	if (ptr != 0) {
                   1056: 	    var sense = ptr == 1 ? ": " : "s: ";
                   1057: 	    var prolist = "";
                   1058: 	    if (ptr == 1) {
                   1059: 		prolist = noscore[0];
                   1060: 	    } else {
                   1061: 		var i = 0;
                   1062: 		while (i < ptr-1) {
                   1063: 		    prolist += noscore[i]+", ";
                   1064: 		    i++;
                   1065: 		}
                   1066: 		prolist += "and "+noscore[i];
                   1067: 	    }
                   1068: 	    var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
                   1069: 	    if (resp == false) {
                   1070: 		return false;
                   1071: 	    }
                   1072: 	}
1.45      ng       1073: 
1.71      ng       1074: 	formname.submit();
                   1075:     }
                   1076: </script>
                   1077: SUBJAVASCRIPT
                   1078: }
1.45      ng       1079: 
1.71      ng       1080: #--- javascript for essay type problem --
                   1081: sub sub_page_kw_js {
                   1082:     my $request = shift;
1.80      ng       1083:     my $iconpath = $request->dir_config('lonIconsURL');
1.118     ng       1084:     &commonJSfunctions($request);
1.219     www      1085:     my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236     albertel 1086:     $docopen=~s/^document\.//;
1.71      ng       1087:     $request->print(<<SUBJAVASCRIPT);
                   1088: <script type="text/javascript" language="javascript">
1.45      ng       1089: 
1.44      ng       1090: //===================== Show list of keywords ====================
1.122     ng       1091:   function keywords(formname) {
                   1092:     var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
1.44      ng       1093:     if (nret==null) return;
1.122     ng       1094:     formname.keywords.value = nret;
1.44      ng       1095: 
1.122     ng       1096:     if (formname.keywords.value != "") {
1.128     ng       1097: 	formname.refresh.value = "on";
1.122     ng       1098: 	formname.submit();
1.44      ng       1099:     }
                   1100:     return;
                   1101:   }
                   1102: 
                   1103: //===================== Script to view submitted by ==================
                   1104:   function viewSubmitter(submitter) {
                   1105:     document.SCORE.refresh.value = "on";
                   1106:     document.SCORE.NCT.value = "1";
                   1107:     document.SCORE.unamedom0.value = submitter;
                   1108:     document.SCORE.submit();
                   1109:     return;
                   1110:   }
                   1111: 
                   1112: //===================== Script to add keyword(s) ==================
                   1113:   function getSel() {
                   1114:     if (document.getSelection) txt = document.getSelection();
                   1115:     else if (document.selection) txt = document.selection.createRange().text;
                   1116:     else return;
                   1117:     var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
                   1118:     if (cleantxt=="") {
1.46      ng       1119: 	alert("Please select a word or group of words from document and then click this link.");
1.44      ng       1120: 	return;
                   1121:     }
                   1122:     var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
                   1123:     if (nret==null) return;
1.127     ng       1124:     document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44      ng       1125:     if (document.SCORE.keywords.value != "") {
1.127     ng       1126: 	document.SCORE.refresh.value = "on";
1.44      ng       1127: 	document.SCORE.submit();
                   1128:     }
                   1129:     return;
                   1130:   }
                   1131: 
                   1132: //====================== Script for composing message ==============
1.80      ng       1133:    // preload images
                   1134:    img1 = new Image();
                   1135:    img1.src = "$iconpath/mailbkgrd.gif";
                   1136:    img2 = new Image();
                   1137:    img2.src = "$iconpath/mailto.gif";
                   1138: 
1.44      ng       1139:   function msgCenter(msgform,usrctr,fullname) {
                   1140:     var Nmsg  = msgform.savemsgN.value;
                   1141:     savedMsgHeader(Nmsg,usrctr,fullname);
                   1142:     var subject = msgform.msgsub.value;
1.127     ng       1143:     var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44      ng       1144:     re = /msgsub/;
                   1145:     var shwsel = "";
                   1146:     if (re.test(msgchk)) { shwsel = "checked" }
1.123     ng       1147:     subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
                   1148:     displaySubject(checkEntities(subject),shwsel);
1.44      ng       1149:     for (var i=1; i<=Nmsg; i++) {
1.123     ng       1150: 	var testmsg = "savemsg"+i+",";
                   1151: 	re = new RegExp(testmsg,"g");
1.44      ng       1152: 	shwsel = "";
                   1153: 	if (re.test(msgchk)) { shwsel = "checked" }
1.125     ng       1154: 	var message = document.SCORE["savemsg"+i].value;
1.126     ng       1155: 	message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123     ng       1156: 	displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
                   1157: 	                                   //any &lt; is already converted to <, etc. However, only once!!
1.44      ng       1158:     }
1.125     ng       1159:     newmsg = document.SCORE["newmsg"+usrctr].value;
1.44      ng       1160:     shwsel = "";
                   1161:     re = /newmsg/;
                   1162:     if (re.test(msgchk)) { shwsel = "checked" }
                   1163:     newMsg(newmsg,shwsel);
                   1164:     msgTail(); 
                   1165:     return;
                   1166:   }
                   1167: 
1.123     ng       1168:   function checkEntities(strx) {
                   1169:     if (strx.length == 0) return strx;
                   1170:     var orgStr = ["&", "<", ">", '"']; 
                   1171:     var newStr = ["&amp;", "&lt;", "&gt;", "&quot;"];
                   1172:     var counter = 0;
                   1173:     while (counter < 4) {
                   1174: 	strx = strReplace(strx,orgStr[counter],newStr[counter]);
                   1175: 	counter++;
                   1176:     }
                   1177:     return strx;
                   1178:   }
                   1179: 
                   1180:   function strReplace(strx, orgStr, newStr) {
                   1181:     return strx.split(orgStr).join(newStr);
                   1182:   }
                   1183: 
1.44      ng       1184:   function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76      ng       1185:     var height = 70*Nmsg+250;
1.44      ng       1186:     var scrollbar = "no";
                   1187:     if (height > 600) {
                   1188: 	height = 600;
                   1189: 	scrollbar = "yes";
                   1190:     }
1.118     ng       1191:     var xpos = (screen.width-600)/2;
                   1192:     xpos = (xpos < 0) ? '0' : xpos;
                   1193:     var ypos = (screen.height-height)/2-30;
                   1194:     ypos = (ypos < 0) ? '0' : ypos;
                   1195: 
1.206     albertel 1196:     pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
1.76      ng       1197:     pWin.focus();
                   1198:     pDoc = pWin.document;
1.219     www      1199:     pDoc.$docopen;
1.76      ng       1200:     pDoc.write("<html><head>");
                   1201:     pDoc.write("<title>Message Central</title>");
                   1202: 
                   1203:     pDoc.write("<script language=javascript>");
                   1204:     pDoc.write("function checkInput() {");
1.123     ng       1205:     pDoc.write("  opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);");
1.76      ng       1206:     pDoc.write("  var nmsg   = opener.document.SCORE.savemsgN.value;");
                   1207:     pDoc.write("  var usrctr = document.msgcenter.usrctr.value;");
1.125     ng       1208:     pDoc.write("  var newval = opener.document.SCORE[\\"newmsg\\"+usrctr];");
1.123     ng       1209:     pDoc.write("  newval.value = opener.checkEntities(document.msgcenter.newmsg.value);");
1.76      ng       1210: 
                   1211:     pDoc.write("  var msgchk = \\"\\";");
                   1212:     pDoc.write("  if (document.msgcenter.subchk.checked) {");
                   1213:     pDoc.write("     msgchk = \\"msgsub,\\";");
                   1214:     pDoc.write("  }");
1.80      ng       1215:     pDoc.write("  var includemsg = 0;");
                   1216:     pDoc.write("  for (var i=1; i<=nmsg; i++) {");
1.125     ng       1217:     pDoc.write("      var opnmsg = opener.document.SCORE[\\"savemsg\\"+i];");
                   1218:     pDoc.write("      var frmmsg = document.msgcenter[\\"msg\\"+i];");
1.123     ng       1219:     pDoc.write("      opnmsg.value = opener.checkEntities(frmmsg.value);");
1.125     ng       1220:     pDoc.write("      var showflg = opener.document.SCORE[\\"shownOnce\\"+i];");
1.123     ng       1221:     pDoc.write("      showflg.value = \\"1\\";");
1.125     ng       1222:     pDoc.write("      var chkbox = document.msgcenter[\\"msgn\\"+i];");
1.76      ng       1223:     pDoc.write("      if (chkbox.checked) {");
                   1224:     pDoc.write("         msgchk += \\"savemsg\\"+i+\\",\\";");
1.80      ng       1225:     pDoc.write("         includemsg = 1;");
1.76      ng       1226:     pDoc.write("      }");
                   1227:     pDoc.write("  }");
                   1228:     pDoc.write("  if (document.msgcenter.newmsgchk.checked) {");
                   1229:     pDoc.write("     msgchk += \\"newmsg\\"+usrctr;");
1.80      ng       1230:     pDoc.write("     includemsg = 1;");
                   1231:     pDoc.write("  }");
1.125     ng       1232:     pDoc.write("  imgformname = opener.document.SCORE[\\"mailicon\\"+usrctr];");
1.84      ng       1233:     pDoc.write("  imgformname.src = \\"$iconpath/\\"+((includemsg) ? \\"mailto.gif\\" : \\"mailbkgrd.gif\\");");
1.125     ng       1234:     pDoc.write("  var includemsg = opener.document.SCORE[\\"includemsg\\"+usrctr];");
1.76      ng       1235:     pDoc.write("  includemsg.value = msgchk;");
                   1236: 
                   1237:     pDoc.write("  self.close()");
                   1238: 
                   1239:     pDoc.write("}");
                   1240: 
                   1241:     pDoc.write("<");
                   1242:     pDoc.write("/script>");
                   1243: 
                   1244:     pDoc.write("</head><body bgcolor=white>");
                   1245: 
                   1246:     pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
                   1247:     pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
                   1248:     pDoc.write("<font color=\\"green\\" size=+1>&nbsp;Compose Message for \"+fullname+\"</font><br><br>");
                   1249: 
                   1250:     pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
                   1251:     pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
                   1252:     pDoc.write("<td><b>Type</b></td><td><b>Include</b></td><td><b>Message</td></tr>");
1.44      ng       1253: }
                   1254:     function displaySubject(msg,shwsel) {
1.76      ng       1255:     pDoc = pWin.document;
                   1256:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1257:     pDoc.write("<td>Subject</td>");
                   1258:     pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"></td>");
                   1259:     pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"></td></tr>");
1.44      ng       1260: }
                   1261: 
1.72      ng       1262:   function displaySavedMsg(ctr,msg,shwsel) {
1.76      ng       1263:     pDoc = pWin.document;
                   1264:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1265:     pDoc.write("<td align=\\"center\\">"+ctr+"</td>");
                   1266:     pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"></td>");
                   1267:     pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"</textarea></td></tr>");
1.44      ng       1268: }
                   1269: 
                   1270:   function newMsg(newmsg,shwsel) {
1.76      ng       1271:     pDoc = pWin.document;
                   1272:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1273:     pDoc.write("<td align=\\"center\\">New</td>");
                   1274:     pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"></td>");
                   1275:     pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"</textarea></td></tr>");
1.44      ng       1276: }
                   1277: 
                   1278:   function msgTail() {
1.76      ng       1279:     pDoc = pWin.document;
                   1280:     pDoc.write("</table>");
                   1281:     pDoc.write("</td></tr></table>&nbsp;");
                   1282:     pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\">&nbsp;&nbsp;");
                   1283:     pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br><br>");
                   1284:     pDoc.write("</form>");
                   1285:     pDoc.write("</body></html>");
1.128     ng       1286:     pDoc.close();
1.44      ng       1287: }
                   1288: 
                   1289: //====================== Script for keyword highlight options ==============
                   1290:   function kwhighlight() {
                   1291:     var kwclr    = document.SCORE.kwclr.value;
                   1292:     var kwsize   = document.SCORE.kwsize.value;
                   1293:     var kwstyle  = document.SCORE.kwstyle.value;
                   1294:     var redsel = "";
                   1295:     var grnsel = "";
                   1296:     var blusel = "";
                   1297:     if (kwclr=="red")   {var redsel="checked"};
                   1298:     if (kwclr=="green") {var grnsel="checked"};
                   1299:     if (kwclr=="blue")  {var blusel="checked"};
                   1300:     var sznsel = "";
                   1301:     var sz1sel = "";
                   1302:     var sz2sel = "";
                   1303:     if (kwsize=="0")  {var sznsel="checked"};
                   1304:     if (kwsize=="+1") {var sz1sel="checked"};
                   1305:     if (kwsize=="+2") {var sz2sel="checked"};
                   1306:     var synsel = "";
                   1307:     var syisel = "";
                   1308:     var sybsel = "";
                   1309:     if (kwstyle=="")    {var synsel="checked"};
                   1310:     if (kwstyle=="<i>") {var syisel="checked"};
                   1311:     if (kwstyle=="<b>") {var sybsel="checked"};
                   1312:     highlightCentral();
                   1313:     highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
                   1314:     highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
                   1315:     highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
                   1316:     highlightend();
                   1317:     return;
                   1318:   }
                   1319: 
                   1320:   function highlightCentral() {
1.76      ng       1321: //    if (window.hwdWin) window.hwdWin.close();
1.118     ng       1322:     var xpos = (screen.width-400)/2;
                   1323:     xpos = (xpos < 0) ? '0' : xpos;
                   1324:     var ypos = (screen.height-330)/2-30;
                   1325:     ypos = (ypos < 0) ? '0' : ypos;
                   1326: 
1.206     albertel 1327:     hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76      ng       1328:     hwdWin.focus();
                   1329:     var hDoc = hwdWin.document;
1.219     www      1330:     hDoc.$docopen;
1.76      ng       1331:     hDoc.write("<html><head>");
                   1332:     hDoc.write("<title>Highlight Central</title>");
                   1333: 
                   1334:     hDoc.write("<script language=javascript>");
                   1335:     hDoc.write("function updateChoice(flag) {");
1.118     ng       1336:     hDoc.write("  opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);");
                   1337:     hDoc.write("  opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);");
                   1338:     hDoc.write("  opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);");
1.76      ng       1339:     hDoc.write("  opener.document.SCORE.refresh.value = \\"on\\";");
                   1340:     hDoc.write("  if (opener.document.SCORE.keywords.value!=\\"\\"){");
                   1341:     hDoc.write("     opener.document.SCORE.submit();");
                   1342:     hDoc.write("  }");
                   1343:     hDoc.write("  self.close()");
                   1344:     hDoc.write("}");
                   1345: 
                   1346:     hDoc.write("<");
                   1347:     hDoc.write("/script>");
                   1348: 
                   1349:     hDoc.write("</head><body bgcolor=white>");
                   1350: 
                   1351:     hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
                   1352:     hDoc.write("<font color=\\"green\\" size=+1>&nbsp;Keyword Highlight Options</font><br><br>");
                   1353: 
                   1354:     hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
                   1355:     hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
                   1356:     hDoc.write("<td><b>Text Color</b></td><td><b>Font Size</b></td><td><b>Font Style</td></tr>");
1.44      ng       1357:   }
                   1358: 
                   1359:   function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) { 
1.76      ng       1360:     var hDoc = hwdWin.document;
                   1361:     hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1362:     hDoc.write("<td align=\\"left\\">");
                   1363:     hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+">&nbsp;"+clrtxt+"</td>");
                   1364:     hDoc.write("<td align=\\"left\\">");
                   1365:     hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+">&nbsp;"+sztxt+"</td>");
                   1366:     hDoc.write("<td align=\\"left\\">");
                   1367:     hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+">&nbsp;"+sytxt+"</td>");
                   1368:     hDoc.write("</tr>");
1.44      ng       1369:   }
                   1370: 
                   1371:   function highlightend() { 
1.76      ng       1372:     var hDoc = hwdWin.document;
                   1373:     hDoc.write("</table>");
                   1374:     hDoc.write("</td></tr></table>&nbsp;");
                   1375:     hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\">&nbsp;&nbsp;");
                   1376:     hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br><br>");
                   1377:     hDoc.write("</form>");
                   1378:     hDoc.write("</body></html>");
1.128     ng       1379:     hDoc.close();
1.44      ng       1380:   }
                   1381: 
                   1382: </script>
                   1383: SUBJAVASCRIPT
                   1384: }
                   1385: 
1.71      ng       1386: #--- displays the grading box, used in essay type problem and grading by page/sequence
                   1387: sub gradeBox {
                   1388:     my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
                   1389: 
                   1390:     my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
                   1391: 	'/check.gif" height="16" border="0" />';
                   1392: 
                   1393:     my $wgt    = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
                   1394:     my $wgtmsg = ($wgt > 0 ? '(problem weight)' : 
                   1395: 		  '<font color="red">problem weight assigned by computer</font>');
                   1396:     $wgt       = ($wgt > 0 ? $wgt : '1');
                   1397:     my $score  = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
                   1398: 		  '' : $$record{'resource.'.$partid.'.awarded'}*$wgt);
                   1399:     my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
                   1400: 
1.207     albertel 1401:     my $display_part=&get_display_part($partid,undef,$symb);
1.270     albertel 1402: 
                   1403:     my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
                   1404: 				       [$partid]);
                   1405:     my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269     raeburn  1406:     if ($last_resets{$partid}) {
                   1407:         $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
                   1408:     }
1.270     albertel 1409: 
1.71      ng       1410:     $result.='<table border="0"><tr><td>'.
1.207     albertel 1411: 	'<b>Part: </b>'.$display_part.' <b>Points: </b></td><td>'."\n";
1.71      ng       1412: 
                   1413:     my $ctr = 0;
                   1414:     $result.='<table border="0"><tr>'."\n";  # display radio buttons in a nice table 10 across
                   1415:     while ($ctr<=$wgt) {
1.288     albertel 1416: 	$result.= '<td><nobr><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.71      ng       1417: 	    'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.72      ng       1418: 	    $ctr.')" value="'.$ctr.'" '.
1.288     albertel 1419: 	    ($score eq $ctr ? 'checked':'').' /> '.$ctr."</label></nobr></td>\n";
1.71      ng       1420: 	$result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
                   1421: 	$ctr++;
                   1422:     }
                   1423:     $result.='</tr></table>';
                   1424: 
                   1425:     $result.='</td><td>&nbsp;<b>or</b>&nbsp;</td>'."\n";
                   1426:     $result.='<td><input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
                   1427: 	($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
                   1428: 	'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
                   1429: 	$wgt.')" /></td>'."\n";
                   1430:     $result.='<td>/'.$wgt.' '.$wgtmsg.
                   1431: 	($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? '&nbsp;'.$checkIcon : '').
                   1432: 	' </td><td>'."\n";
                   1433: 
                   1434:     $result.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
                   1435: 	'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
                   1436:     if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
                   1437: 	$result.='<option> </option>'.
1.125     ng       1438: 	    '<option selected="on">excused</option>';
1.71      ng       1439:     } else {
                   1440: 	$result.='<option selected="on"> </option>'.
1.125     ng       1441: 	    '<option>excused</option>';
1.71      ng       1442:     }
1.125     ng       1443:     $result.='<option>reset status</option></select>'."\n";
1.71      ng       1444:     $result.="&nbsp&nbsp\n";
                   1445:     $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
                   1446: 	'<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
                   1447: 	'<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269     raeburn  1448: 	$$record{'resource.'.$partid.'.solved'}.'" />'."\n".
                   1449:         '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
                   1450:         $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
                   1451:         '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
                   1452:         $aggtries.'" />'."\n";
1.71      ng       1453:     $result.='</td></tr></table>'."\n";
                   1454:     return $result;
                   1455: }
1.44      ng       1456: 
1.58      albertel 1457: sub show_problem {
1.144     albertel 1458:     my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode) = @_;
                   1459:     my $rendered;
                   1460:     if ($mode eq 'both' or $mode eq 'text') {
                   1461: 	$rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.257     albertel 1462: 					     $env{'request.course.id'});
1.144     albertel 1463:     }
1.58      albertel 1464:     if ($removeform) {
                   1465: 	$rendered=~s|<form(.*?)>||g;
                   1466: 	$rendered=~s|</form>||g;
                   1467: 	$rendered=~s|name="submit"|name="would_have_been_submit"|g;
                   1468:     }
1.144     albertel 1469:     my $companswer;
                   1470:     if ($mode eq 'both' or $mode eq 'answer') {
                   1471: 	$companswer=&Apache::loncommon::get_student_answers($symb,$uname,$udom,
1.257     albertel 1472: 						    $env{'request.course.id'});
1.144     albertel 1473:     }
1.58      albertel 1474:     if ($removeform) {
                   1475: 	$companswer=~s|<form(.*?)>||g;
                   1476: 	$companswer=~s|</form>||g;
1.144     albertel 1477: 	$companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58      albertel 1478:     }
                   1479:     my $result.='<table border="0" width="100%"><tr><td bgcolor="#777777">';
1.71      ng       1480:     $result.='<table border="0" width="100%">';
1.144     albertel 1481:     if ($viewon) {
                   1482: 	$result.='<tr><td bgcolor="#e6ffff"><b> ';
                   1483: 	if ($mode eq 'both' or $mode eq 'text') {
                   1484: 	    $result.='View of the problem - ';
                   1485: 	} else {
                   1486: 	    $result.='Correct answer: ';
                   1487: 	}
1.257     albertel 1488: 	$result.=$env{'form.fullname'}.'</b></td></tr>';
1.144     albertel 1489:     }
                   1490:     if ($mode eq 'both') {
                   1491: 	$result.='<tr><td bgcolor="#ffffff">'.$rendered.'<br />';
                   1492: 	$result.='<b>Correct answer:</b><br />'.$companswer;
                   1493:     } elsif ($mode eq 'text') {
                   1494: 	$result.='<tr><td bgcolor="#ffffff">'.$rendered;
                   1495:     } elsif ($mode eq 'answer') {
                   1496: 	$result.='<tr><td bgcolor="#ffffff">'.$companswer;
                   1497:     }
1.58      albertel 1498:     $result.='</td></tr></table>';
                   1499:     $result.='</td></tr></table><br />';
1.71      ng       1500:     return $result;
1.58      albertel 1501: }
                   1502: 
1.44      ng       1503: # --------------------------- show submissions of a student, option to grade 
                   1504: sub submission {
                   1505:     my ($request,$counter,$total) = @_;
                   1506: 
1.257     albertel 1507:     (my $url=$env{'form.url'})=~s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
                   1508:     my ($uname,$udom)     = ($env{'form.student'},$env{'form.userdom'});
                   1509:     $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
                   1510:     my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
                   1511:     $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.41      ng       1512: 
1.257     albertel 1513:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
1.41      ng       1514:     if ($symb eq '') { $request->print("Unable to handle ambiguous references:$url:."); return ''; }
1.104     albertel 1515: 
                   1516:     if (!&canview($usec)) {
1.116     ng       1517: 	$request->print('<font color="red">Unable to view requested student.('.
1.222     albertel 1518: 			$uname.'@'.$udom.' in section '.$usec.' in course id '.
1.257     albertel 1519: 			$env{'request.course.id'}.')</font>');
1.104     albertel 1520: 	$request->print(&show_grading_menu_form($symb,$url));
                   1521: 	return;
                   1522:     }
                   1523: 
1.257     albertel 1524:     if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
                   1525:     if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
                   1526:     if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
                   1527:     my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.122     ng       1528:     my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
                   1529: 	'/check.gif" height="16" border="0" />';
1.41      ng       1530: 
                   1531:     # header info
                   1532:     if ($counter == 0) {
                   1533: 	&sub_page_js($request);
1.257     albertel 1534: 	&sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
                   1535: 	$env{'form.probTitle'} = $env{'form.probTitle'} eq '' ? 
                   1536: 	    &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.76      ng       1537: 
1.45      ng       1538: 	$request->print('<h3>&nbsp;<font color="#339933">Submission Record</font></h3>'."\n".
1.257     albertel 1539: 			'<font size=+1>&nbsp;<b>Resource: </b>'.$env{'form.probTitle'}.'</font>'."\n");
1.118     ng       1540: 
1.257     albertel 1541: 	if ($env{'form.handgrade'} eq 'no') {
1.118     ng       1542: 	    my $checkMark='<br /><br />&nbsp;<b>Note:</b> Part(s) graded correct by the computer is marked with a '.
                   1543: 		$checkIcon.' symbol.'."\n";
                   1544: 	    $request->print($checkMark);
                   1545: 	}
1.41      ng       1546: 
1.44      ng       1547: 	# option to display problem, only once else it cause problems 
                   1548:         # with the form later since the problem has a form.
1.257     albertel 1549: 	if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144     albertel 1550: 	    my $mode;
1.257     albertel 1551: 	    if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144     albertel 1552: 		$mode='both';
1.257     albertel 1553: 	    } elsif ($env{'form.vProb'} eq 'yes') {
1.144     albertel 1554: 		$mode='text';
1.257     albertel 1555: 	    } elsif ($env{'form.vAns'} eq 'yes') {
1.144     albertel 1556: 		$mode='answer';
                   1557: 	    }
                   1558: 	    $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41      ng       1559: 	}
                   1560: 	
1.44      ng       1561: 	# kwclr is the only variable that is guaranteed to be non blank 
                   1562:         # if this subroutine has been called once.
1.41      ng       1563: 	my %keyhash = ();
1.257     albertel 1564: 	if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41      ng       1565: 	    %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257     albertel 1566: 					     $env{'course.'.$env{'request.course.id'}.'.domain'},
                   1567: 					     $env{'course.'.$env{'request.course.id'}.'.num'});
1.41      ng       1568: 
1.257     albertel 1569: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
                   1570: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                   1571: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                   1572: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                   1573: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                   1574: 	    $env{'form.msgsub'}   = $keyhash{$symb.'_subject'} ne '' ? 
                   1575: 		$keyhash{$symb.'_subject'} : $env{'form.probTitle'};
                   1576: 	    $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41      ng       1577: 	}
1.257     albertel 1578: 	my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.44      ng       1579: 
1.303     banghart 1580: 	$request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41      ng       1581: 			'<input type="hidden" name="command"    value="handgrade" />'."\n".
1.257     albertel 1582: 			'<input type="hidden" name="saveState"  value="'.$env{'form.saveState'}.'" />'."\n".
                   1583: 			'<input type="hidden" name="Status"     value="'.$env{'form.Status'}.'" />'."\n".
1.120     ng       1584: 			'<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257     albertel 1585: 			'<input type="hidden" name="probTitle"  value="'.$env{'form.probTitle'}.'" />'."\n".
1.41      ng       1586: 			'<input type="hidden" name="refresh"    value="off" />'."\n".
1.120     ng       1587: 			'<input type="hidden" name="studentNo"  value="" />'."\n".
                   1588: 			'<input type="hidden" name="gradeOpt"   value="" />'."\n".
1.41      ng       1589: 			'<input type="hidden" name="symb"       value="'.$symb.'" />'."\n".
                   1590: 			'<input type="hidden" name="url"        value="'.$url.'" />'."\n".
1.257     albertel 1591: 			'<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
                   1592: 			'<input type="hidden" name="vProb"      value="'.$env{'form.vProb'}.'" />'."\n".
                   1593: 			'<input type="hidden" name="vAns"       value="'.$env{'form.vAns'}.'" />'."\n".
                   1594: 			'<input type="hidden" name="lastSub"    value="'.$env{'form.lastSub'}.'" />'."\n".
                   1595: 			'<input type="hidden" name="section"    value="'.$env{'form.section'}.'">'."\n".
                   1596: 			'<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'">'."\n".
                   1597: 			'<input type="hidden" name="handgrade"  value="'.$env{'form.handgrade'}.'">'."\n".
1.41      ng       1598: 			'<input type="hidden" name="NCT"'.
1.257     albertel 1599: 			' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
                   1600: 	if ($env{'form.handgrade'} eq 'yes') {
                   1601: 	    $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
                   1602: 			    '<input type="hidden" name="kwclr"    value="'.$env{'form.kwclr'}.'" />'."\n".
                   1603: 			    '<input type="hidden" name="kwsize"   value="'.$env{'form.kwsize'}.'" />'."\n".
                   1604: 			    '<input type="hidden" name="kwstyle"  value="'.$env{'form.kwstyle'}.'" />'."\n".
                   1605: 			    '<input type="hidden" name="msgsub"   value="'.$env{'form.msgsub'}.'" />'."\n".
1.123     ng       1606: 			    '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257     albertel 1607: 			    '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154     albertel 1608: 	    foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
                   1609: 		$request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
                   1610: 	    }
1.123     ng       1611: 	}
1.41      ng       1612: 	
                   1613: 	my ($cts,$prnmsg) = (1,'');
1.257     albertel 1614: 	while ($cts <= $env{'form.savemsgN'}) {
1.41      ng       1615: 	    $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123     ng       1616: 		(!exists($keyhash{$symb.'_savemsg'.$cts}) ? 
1.257     albertel 1617: 		 &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80      ng       1618: 		 &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123     ng       1619: 		'" />'."\n".
                   1620: 		'<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41      ng       1621: 	    $cts++;
                   1622: 	}
                   1623: 	$request->print($prnmsg);
1.32      ng       1624: 
1.257     albertel 1625: 	if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.88      www      1626: #
                   1627: # Print out the keyword options line
                   1628: #
1.41      ng       1629: 	    $request->print(<<KEYWORDS);
1.38      ng       1630: &nbsp;<b>Keyword Options:</b>&nbsp;
1.122     ng       1631: <a href="javascript:keywords(document.SCORE)"; TARGET=_self>List</a>&nbsp; &nbsp;
1.38      ng       1632: <a href="#" onMouseDown="javascript:getSel(); return false"
                   1633:  CLASS="page">Paste Selection to List</a>&nbsp; &nbsp;
                   1634: <a href="javascript:kwhighlight()"; TARGET=_self>Highlight Attribute</a><br /><br />
                   1635: KEYWORDS
1.88      www      1636: #
                   1637: # Load the other essays for similarity check
                   1638: #
                   1639:             my $essayurl=&Apache::lonnet::declutter($url);
                   1640: 	    my ($adom,$aname,$apath)=($essayurl=~/^(\w+)\/(\w+)\/(.*)$/);
                   1641: 	    $apath=&Apache::lonnet::escape($apath);
                   1642: 	    $apath=~s/\W/\_/gs;
                   1643: 	    %oldessays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
1.41      ng       1644:         }
                   1645:     }
1.44      ng       1646: 
1.257     albertel 1647:     if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.71      ng       1648: 	$request->print('<br /><br /><br />') if ($counter > 0);
1.144     albertel 1649: 	my $mode;
1.257     albertel 1650: 	if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144     albertel 1651: 	    $mode='both';
1.257     albertel 1652: 	} elsif ($env{'form.vProb'} eq 'all' ) {
1.144     albertel 1653: 	    $mode='text';
1.257     albertel 1654: 	} elsif ($env{'form.vAns'} eq 'all') {
1.144     albertel 1655: 	    $mode='answer';
                   1656: 	}
                   1657: 	$request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode));
1.58      albertel 1658:     }
1.144     albertel 1659: 
1.257     albertel 1660:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.147     albertel 1661:     my ($partlist,$handgrade,$responseType) = &response_type($url,$symb);
1.41      ng       1662: 
1.44      ng       1663:     # Display student info
1.41      ng       1664:     $request->print(($counter == 0 ? '' : '<br />'));
1.45      ng       1665:     my $result='<table border="0" width=100%><tr><td bgcolor="#777777">'."\n".
                   1666: 	'<table border="0" width=100%><tr bgcolor="#edffff"><td>'."\n";
1.44      ng       1667: 
1.257     albertel 1668:     $result.='<b>Fullname: </b>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'<br />'."\n";
1.45      ng       1669:     $result.='<input type="hidden" name="name'.$counter.
1.257     albertel 1670: 	'" value="'.$env{'form.fullname'}.'" />'."\n";
1.41      ng       1671: 
1.118     ng       1672:     # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.45      ng       1673:     my @col_fullnames;
1.56      matthew  1674:     my ($classlist,$fullname);
1.257     albertel 1675:     if ($env{'form.handgrade'} eq 'yes') {
1.80      ng       1676: 	($classlist,undef,$fullname) = &getclasslist('all','0');
1.41      ng       1677: 	for (keys (%$handgrade)) {
1.44      ng       1678: 	    my $ncol = &Apache::lonnet::EXT('resource.'.$_.
1.57      matthew  1679: 					    '.maxcollaborators',
                   1680:                                             $symb,$udom,$uname);
                   1681: 	    next if ($ncol <= 0);
                   1682:             s/\_/\./g;
                   1683:             next if ($record{'resource.'.$_.'.collaborators'} eq '');
1.86      ng       1684:             my @goodcollaborators = ();
                   1685:             my @badcollaborators  = ();
                   1686: 	    foreach (split(/,?\s+/,$record{'resource.'.$_.'.collaborators'})) { 
                   1687: 		$_ =~ s/[\$\^\(\)]//g;
                   1688: 		next if ($_ eq '');
1.80      ng       1689: 		my ($co_name,$co_dom) = split /\@|:/,$_;
1.86      ng       1690: 		$co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
1.80      ng       1691: 		next if ($co_name eq $uname && $co_dom eq $udom);
1.86      ng       1692: 		# Doing this grep allows 'fuzzy' specification
                   1693: 		my @Matches = grep /^$co_name:$co_dom$/i,keys %$classlist;
                   1694: 		if (! scalar(@Matches)) {
                   1695: 		    push @badcollaborators,$_;
                   1696: 		} else {
                   1697: 		    push @goodcollaborators, @Matches;
                   1698: 		}
1.80      ng       1699: 	    }
1.86      ng       1700:             if (scalar(@goodcollaborators) != 0) {
1.57      matthew  1701:                 $result.='<b>Collaborators: </b>';
1.86      ng       1702:                 foreach (@goodcollaborators) {
                   1703: 		    my ($lastname,$givenn) = split(/,/,$$fullname{$_});
                   1704: 		    push @col_fullnames, $givenn.' '.$lastname;
                   1705: 		    $result.=$$fullname{$_}.'&nbsp; &nbsp; &nbsp;';
                   1706: 		}
1.57      matthew  1707:                 $result.='<br />'."\n";
1.150     albertel 1708: 		my ($part)=split(/\./,$_);
1.86      ng       1709: 		$result.='<input type="hidden" name="collaborator'.$counter.
1.150     albertel 1710: 		    '" value="'.$part.':'.(join ':',@goodcollaborators).'" />'.
                   1711: 		    "\n";
1.86      ng       1712: 	    }
                   1713: 	    if (scalar(@badcollaborators) > 0) {
                   1714: 		$result.='<table border="0"><tr bgcolor="#ffbbbb"><td>';
                   1715: 		$result.='This student has submitted ';
                   1716: 		$result.=(scalar(@badcollaborators) == 1) ? 'an invalid collaborator' : 'invalid collaborators';
                   1717: 		$result .= ': '.join(', ',@badcollaborators);
                   1718: 		$result .= '</td></tr></table>';
                   1719: 	    }         
                   1720: 	    if (scalar(@badcollaborators > $ncol)) {
                   1721: 		$result .= '<table border="0"><tr bgcolor="#ffbbbb"><td>';
                   1722: 		$result .= 'This student has submitted too many '.
                   1723: 		    'collaborators.  Maximum is '.$ncol.'.';
                   1724: 		$result .= '</td></tr></table>';
                   1725: 	    }
1.41      ng       1726: 	}
                   1727:     }
1.44      ng       1728:     $request->print($result."\n");
1.33      ng       1729: 
1.44      ng       1730:     # print student answer/submission
                   1731:     # Options are (1) Handgaded submission only
                   1732:     #             (2) Last submission, includes submission that is not handgraded 
                   1733:     #                  (for multi-response type part)
                   1734:     #             (3) Last submission plus the parts info
                   1735:     #             (4) The whole record for this student
1.257     albertel 1736:     if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151     albertel 1737: 	my ($string,$timestamp)= &get_last_submission(\%record);
                   1738: 	my $lastsubonly=''.
                   1739: 	    ($$timestamp eq '' ? '' : '<b>Date Submitted:</b> '.
                   1740: 	     $$timestamp)."</td></tr>\n";
                   1741: 	if ($$timestamp eq '') {
                   1742: 	    $lastsubonly.='<tr><td bgcolor="#ffffe6">'.$$string[0]; 
                   1743: 	} else {
                   1744: 	    my %seenparts;
                   1745: 	    for my $part (sort keys(%$handgrade)) {
                   1746: 		my ($partid,$respid) = split(/_/,$part);
1.207     albertel 1747: 		my $display_part=&get_display_part($partid,$url,$symb);
1.257     albertel 1748: 		if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151     albertel 1749: 		    if (exists($seenparts{$partid})) { next; }
                   1750: 		    $seenparts{$partid}=1;
1.207     albertel 1751: 		    my $submitby='<b>Part:</b> '.$display_part.
                   1752: 			' <b>Collaborative submission by:</b> '.
1.151     albertel 1753: 			'<a href="javascript:viewSubmitter(\''.
1.257     albertel 1754: 			$env{"form.$uname:$udom:$partid:submitted_by"}.
1.151     albertel 1755: 			'\')"; TARGET=_self>'.
1.257     albertel 1756: 			$$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151     albertel 1757: 		    $request->print($submitby);
                   1758: 		    next;
                   1759: 		}
                   1760: 		my $responsetype = $responseType->{$partid}->{$respid};
                   1761: 		if (!exists($record{"resource.$partid.$respid.submission"})) {
1.207     albertel 1762: 		    $lastsubonly.='<tr><td bgcolor="#ffffe6"><b>Part:</b> '.
                   1763: 			$display_part.' <font color="#999999">( ID '.$respid.
1.151     albertel 1764: 			' )</font>&nbsp; &nbsp;'.
                   1765: 			'<font color="red">Nothing submitted - no attempts</font><br /><br />';
                   1766: 		    next;
                   1767: 		}
                   1768: 		foreach (@$string) {
                   1769: 		    my ($partid,$respid) = /^resource\.([^\.]*)\.([^\.]*)\.submission/;
                   1770: 		    if ($part ne ($partid.'_'.$respid)) { next; }
                   1771: 		    my ($ressub,$subval) = split(/:/,$_,2);
                   1772: 		    # Similarity check
                   1773: 		    my $similar='';
1.257     albertel 1774: 		    if($env{'form.checkPlag'}){
1.151     albertel 1775: 			my ($oname,$odom,$ocrsid,$oessay,$osim)=
                   1776: 			    &most_similar($uname,$udom,$subval);
                   1777: 			if ($osim) {
                   1778: 			    $osim=int($osim*100.0);
                   1779: 			    $similar="<hr /><h3><font color=\"#FF0000\">Essay".
                   1780: 				" is $osim% similar to an essay by ".
                   1781: 				&Apache::loncommon::plainname($oname,$odom).
                   1782: 				'</font></h3><blockquote><i>'.
                   1783: 				&keywords_highlight($oessay).
                   1784: 				'</i></blockquote><hr />';
                   1785: 			}
1.150     albertel 1786: 		    }
1.151     albertel 1787: 		    my $order=&get_order($partid,$respid,$symb,$uname,$udom);
1.257     albertel 1788: 		    if ($env{'form.lastSub'} eq 'lastonly' || 
                   1789: 			($env{'form.lastSub'} eq 'hdgrade' && 
1.151     albertel 1790: 			 $$handgrade{$part} eq 'yes')) {
1.207     albertel 1791: 			my $display_part=&get_display_part($partid,$url,$symb);
                   1792: 			$lastsubonly.='<tr><td bgcolor="#ffffe6"><b>Part:</b> '.
                   1793: 			    $display_part.' <font color="#999999">( ID '.$respid.
1.151     albertel 1794: 			    ' )</font>&nbsp; &nbsp;';
1.232     albertel 1795: 			my @files;
1.230     banghart 1796: 			if ($record{"resource.$partid.$respid.portfiles"}) {
1.232     albertel 1797: 			    my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
                   1798: 			    foreach my $file (split(',',$record{"resource.$partid.$respid.portfiles"})) {
                   1799: 				push(@files,$file_url.$file);
                   1800: 			    
                   1801: 				&Apache::lonnet::logthis("found a portfolio file".$record{"resource.$partid.$respid.portfiles"});
                   1802: 				&Apache::lonnet::logthis("uploaded URL file".$record{"resource.$partid.$respid.uploadedurl"});
                   1803: 			    }
                   1804: 			}
                   1805: 			if ($record{"resource.$partid.$respid.uploadedurl"}) {
                   1806: 			    push(@files,$record{"resource.$partid.$respid.uploadedurl"});
1.230     banghart 1807: 			}
1.232     albertel 1808: 			if (@files) {
                   1809: 			    $lastsubonly.='<br /><font color="red" size="1">Like all files provided by users, this file may contain virusses</font><br />';
1.303     banghart 1810: 			    my $file_counter = 0;
1.232     albertel 1811: 			    foreach my $file (@files) {
1.303     banghart 1812: 			        $file_counter ++;
1.232     albertel 1813: 				&Apache::lonnet::allowuploaded('/adm/grades',$file);
                   1814: 				$lastsubonly.='<br /><a href="'.$file.'" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border=0"> '.$file.'</a>';
1.310   ! banghart 1815: 				$lastsubonly.=' Return commented document to student. <input type="file" name="part'.$partid.'_returndoc';
        !          1816: 				$lastsubonly.=$file_counter.'" />'."\n";
1.303     banghart 1817: 				$lastsubonly.='<input type="hidden" name="returndocorig'.$file_counter.'" value="'.$file.'" />';
                   1818: 
1.232     albertel 1819: 			    }
1.236     albertel 1820: 			    $lastsubonly.='<br />';
1.41      ng       1821: 			}
1.151     albertel 1822: 			$lastsubonly.='<b>Submitted Answer: </b>'.
                   1823: 			    &cleanRecord($subval,$responsetype,$symb,$partid,
                   1824: 					 $respid,\%record,$order);
                   1825: 			if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.41      ng       1826: 		    }
                   1827: 		}
                   1828: 	    }
1.151     albertel 1829: 	}
                   1830: 	$lastsubonly.='</td></tr><tr bgcolor="#ffffff"><td>'."\n";
                   1831: 	$request->print($lastsubonly);
1.257     albertel 1832:     } elsif ($env{'form.lastSub'} eq 'datesub') {
1.122     ng       1833: 	my (undef,$responseType,undef,$parts) = &showResourceInfo($url);
1.148     albertel 1834: 	$request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257     albertel 1835:     } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41      ng       1836: 	$request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257     albertel 1837: 								 $env{'request.course.id'},
1.44      ng       1838: 								 $last,'.submission',
                   1839: 								 'Apache::grades::keywords_highlight'));
1.41      ng       1840:     }
1.120     ng       1841: 
1.121     ng       1842:     $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
                   1843: 	.$udom.'" />'."\n");
1.41      ng       1844:     
1.44      ng       1845:     # return if view submission with no grading option
1.257     albertel 1846:     if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120     ng       1847: 	my $toGrade.='<input type="button" value="Grade Student" '.
1.121     ng       1848: 	    'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
                   1849: 	    .$counter.'\');" TARGET=_self> &nbsp;'."\n" if (&canmodify($usec));
1.169     albertel 1850: 	$toGrade.='</td></tr></table></td></tr></table>'."\n";
1.257     albertel 1851: 	if (($env{'form.command'} eq 'submission') || 
                   1852: 	    ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.169     albertel 1853: 	    $toGrade.='</form>'.&show_grading_menu_form($symb,$url) 
                   1854: 	}
1.180     albertel 1855: 	$request->print($toGrade);
1.41      ng       1856: 	return;
1.180     albertel 1857:     } else {
                   1858: 	$request->print('</td></tr></table></td></tr></table>'."\n");
1.41      ng       1859:     }
1.33      ng       1860: 
1.121     ng       1861:     # essay grading message center
1.257     albertel 1862:     if ($env{'form.handgrade'} eq 'yes') {
                   1863: 	my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118     ng       1864: 	my $msgfor = $givenn.' '.$lastname;
                   1865: 	if (scalar(@col_fullnames) > 0) {
                   1866: 	    my $lastone = pop @col_fullnames;
                   1867: 	    $msgfor .= ', '.(join ', ',@col_fullnames).' and '.$lastone.'.';
                   1868: 	}
                   1869: 	$msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.121     ng       1870: 	$result='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
                   1871: 	    '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
                   1872: 	$result.='&nbsp;<a href="javascript:msgCenter(document.SCORE,'.$counter.
1.118     ng       1873: 	    ',\''.$msgfor.'\')"; TARGET=_self>'.
1.298     www      1874: 	    &mt('Compose message to student').(scalar(@col_fullnames) >= 1 ? 's' : '').'</a> ('.
                   1875: 	    &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" />)'.
1.118     ng       1876: 	    '<img src="'.$request->dir_config('lonIconsURL').
                   1877: 	    '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298     www      1878: 	    '<br />&nbsp;('.
                   1879: 	    &mt('Message will be sent when you click on Save & Next below.').")\n";
1.121     ng       1880: 	$request->print($result);
1.118     ng       1881:     }
1.300     albertel 1882:     if ($perm{'vgr'}) {
1.297     www      1883: 	$request->print('<br />'.
1.300     albertel 1884: 	    &Apache::loncommon::track_student_link(&mt('View recent activity'),
                   1885: 						   $uname,$udom,'check'));
1.297     www      1886:     }
1.300     albertel 1887:     if ($perm{'opa'}) {
1.297     www      1888: 	$request->print('<br />'.
1.300     albertel 1889: 	    &Apache::loncommon::pprmlink(&mt('Set/Change parameters'),
                   1890: 					 $uname,$udom,$symb,'check'));
1.297     www      1891:     }
1.41      ng       1892: 
                   1893:     my %seen = ();
                   1894:     my @partlist;
1.129     ng       1895:     my @gradePartRespid;
1.41      ng       1896:     for (sort keys(%$handgrade)) {
                   1897: 	my ($partid,$respid) = split(/_/);
                   1898: 	next if ($seen{$partid} > 0);
                   1899: 	$seen{$partid}++;
1.257     albertel 1900: 	next if ($$handgrade{$_} =~ /:no$/ && $env{'form.lastSub'} =~ /^(hdgrade)$/);
1.41      ng       1901: 	push @partlist,$partid;
1.129     ng       1902: 	push @gradePartRespid,$partid.'.'.$respid;
1.41      ng       1903: 
1.71      ng       1904: 	$request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41      ng       1905:     }
1.45      ng       1906:     $result='<input type="hidden" name="partlist'.$counter.
                   1907: 	'" value="'.(join ":",@partlist).'" />'."\n";
1.129     ng       1908:     $result.='<input type="hidden" name="gradePartRespid'.
                   1909: 	'" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45      ng       1910:     my $ctr = 0;
                   1911:     while ($ctr < scalar(@partlist)) {
                   1912: 	$result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
                   1913: 	    $partlist[$ctr].'" />'."\n";
                   1914: 	$ctr++;
                   1915:     }
                   1916:     $request->print($result.'</td></tr></table></td></tr></table>'."\n");
1.41      ng       1917: 
                   1918:     # print end of form
                   1919:     if ($counter == $total) {
1.297     www      1920: 	my $endform='<table border="0"><tr><td>'."\n";
1.119     ng       1921: 	$endform.='<input type="button" value="Save & Next" '.
                   1922: 	    'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
                   1923: 	    $total.','.scalar(@partlist).');" TARGET=_self> &nbsp;'."\n";
                   1924: 	my $ntstu ='<select name="NTSTU">'.
                   1925: 	    '<option>1</option><option>2</option>'.
                   1926: 	    '<option>3</option><option>5</option>'.
                   1927: 	    '<option>7</option><option>10</option></select>'."\n";
1.257     albertel 1928: 	my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.119     ng       1929: 	$ntstu =~ s/<option>$nsel</<option selected="on">$nsel</;
                   1930: 	$endform.=$ntstu.'student(s) &nbsp;&nbsp;';
1.126     ng       1931: 	$endform.='<input type="button" value="Previous" '.
                   1932: 	    'onClick="javascript:checksubmit(this.form,\'Previous\');" TARGET=_self> &nbsp;'."\n".
                   1933: 	    '<input type="button" value="Next" '.
                   1934: 	    'onClick="javascript:checksubmit(this.form,\'Next\');" TARGET=_self> &nbsp;';
                   1935: 	$endform.='(Next and Previous (student) do not save the scores.)'."\n" ;
1.45      ng       1936: 	$endform.='</td><tr></table></form>';
1.50      albertel 1937: 	$endform.=&show_grading_menu_form($symb,$url);
1.41      ng       1938: 	$request->print($endform);
                   1939:     }
                   1940:     return '';
1.38      ng       1941: }
                   1942: 
1.44      ng       1943: #--- Retrieve the last submission for all the parts
1.38      ng       1944: sub get_last_submission {
1.119     ng       1945:     my ($returnhash)=@_;
1.46      ng       1946:     my (@string,$timestamp);
1.119     ng       1947:     if ($$returnhash{'version'}) {
1.46      ng       1948: 	my %lasthash=();
                   1949: 	my ($version);
1.119     ng       1950: 	for ($version=1;$version<=$$returnhash{'version'};$version++) {
                   1951: 	    foreach (sort(split(/\:/,$$returnhash{$version.':keys'}))) {
                   1952: 		$lasthash{$_}=$$returnhash{$version.':'.$_};
                   1953: 		   $timestamp = scalar(localtime($$returnhash{$version.':timestamp'}));
1.46      ng       1954: 	    }
                   1955: 	}
                   1956: 	foreach ((keys %lasthash)) {
                   1957: 	    if ($_ =~ /\.submission$/) {
                   1958: 		my ($partid,$foo) = split(/submission$/,$_);
                   1959: 		my $draft  = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
                   1960: 		    '<font color="red">Draft Copy</font> ' : '';
                   1961: 		push @string, (join(':',$_,$draft.$lasthash{$_}));
1.41      ng       1962: 	    }
                   1963: 	}
                   1964:     }
1.125     ng       1965:     @string = $string[0] eq '' ? '<font color="red">Nothing submitted - no attempts.</font>' : @string;
1.46      ng       1966:     return \@string,\$timestamp;
1.38      ng       1967: }
1.35      ng       1968: 
1.44      ng       1969: #--- High light keywords, with style choosen by user.
1.38      ng       1970: sub keywords_highlight {
1.44      ng       1971:     my $string    = shift;
1.257     albertel 1972:     my $size      = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
                   1973:     my $styleon   = $env{'form.kwstyle'} eq ''  ? '' : $env{'form.kwstyle'};
1.41      ng       1974:     (my $styleoff = $styleon) =~ s/\</\<\//;
1.257     albertel 1975:     my @keylist   = split(/[,\s+]/,$env{'form.keywords'});
1.41      ng       1976:     foreach (@keylist) {
1.257     albertel 1977: 	$string =~ s/\b\Q$_\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$_$styleoff<\/font>/gi;
1.41      ng       1978:     }
                   1979:     return $string;
1.38      ng       1980: }
1.36      ng       1981: 
1.44      ng       1982: #--- Called from submission routine
1.38      ng       1983: sub processHandGrade {
1.41      ng       1984:     my ($request) = shift;
1.257     albertel 1985:     my $url    = $env{'form.url'};
                   1986:     my $symb   = $env{'form.symb'};
                   1987:     my $button = $env{'form.gradeOpt'};
                   1988:     my $ngrade = $env{'form.NCT'};
                   1989:     my $ntstu  = $env{'form.NTSTU'};
1.301     albertel 1990:     my $cdom   = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1991:     my $cnum   = $env{'course.'.$env{'request.course.id'}.'.num'};
                   1992: 
1.44      ng       1993:     if ($button eq 'Save & Next') {
                   1994: 	my $ctr = 0;
                   1995: 	while ($ctr < $ngrade) {
1.257     albertel 1996: 	    my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.77      ng       1997: 	    my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$url,$symb,$uname,$udom,$ctr);
1.71      ng       1998: 	    if ($errorflag eq 'no_score') {
                   1999: 		$ctr++;
                   2000: 		next;
                   2001: 	    }
1.104     albertel 2002: 	    if ($errorflag eq 'not_allowed') {
                   2003: 		$request->print("<font color=\"red\">Not allowed to modify grades for $uname:$udom</font>");
                   2004: 		$ctr++;
                   2005: 		next;
                   2006: 	    }
1.257     albertel 2007: 	    my $includemsg = $env{'form.includemsg'.$ctr};
1.44      ng       2008: 	    my ($subject,$message,$msgstatus) = ('','','');
1.62      albertel 2009: 	    if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298     www      2010: 		$subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295     www      2011: 		unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.44      ng       2012: 		my (@msgnum) = split(/,/,$includemsg);
                   2013: 		foreach (@msgnum) {
1.257     albertel 2014: 		    $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44      ng       2015: 		}
1.80      ng       2016: 		$message =&Apache::lonfeedback::clear_out_html($message);
1.298     www      2017: 		if ($env{'form.withgrades'.$ctr}) {
                   2018: 		    $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
                   2019: 		    $message.=" for <a href=\"".
1.80      ng       2020: 		    &Apache::lonnet::clutter($url).
1.257     albertel 2021: 		    "?symb=$symb\">$env{'form.probTitle'}</a>";
1.298     www      2022: 		}
1.44      ng       2023: 		$msgstatus = &Apache::lonmsg::user_normal_msg ($uname,$udom,
1.298     www      2024: 							       $subject.' ['.
1.295     www      2025: 							       &Apache::lonnet::declutter($url).']',$message);
1.296     www      2026: 		$request->print('<br />'.&mt('Sending message to [_1]@[_2]',$uname,$udom).': '.
                   2027: 				$msgstatus);
1.44      ng       2028: 	    }
1.257     albertel 2029: 	    if ($env{'form.collaborator'.$ctr}) {
1.155     albertel 2030: 		my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150     albertel 2031: 		foreach my $collabstr (@collabstrs) {
                   2032: 		    my ($part,@collaborators) = split(/:/,$collabstr);
1.310   ! banghart 2033: 		    foreach my $collaborator (@collaborators) {
1.150     albertel 2034: 			my ($errorflag,$pts,$wgt) = 
1.310   ! banghart 2035: 			    &saveHandGrade($request,$url,$symb,$collaborator,$udom,$ctr,
1.257     albertel 2036: 					   $env{'form.unamedom'.$ctr},$part);
1.150     albertel 2037: 			if ($errorflag eq 'not_allowed') {
1.310   ! banghart 2038: 			    $request->print("<font color=\"red\">Not allowed to modify grades for $collaborator:$udom</font>");
1.150     albertel 2039: 			    next;
                   2040: 			} else {
                   2041: 			    if ($message ne '') {
1.310   ! banghart 2042: 				$msgstatus = &Apache::lonmsg::user_normal_msg($collaborator,$udom,$env{'form.msgsub'},$message);
1.150     albertel 2043: 			    }
1.104     albertel 2044: 			}
1.44      ng       2045: 		    }
                   2046: 		}
                   2047: 	    }
                   2048: 	    $ctr++;
                   2049: 	}
                   2050:     }
                   2051: 
1.257     albertel 2052:     if ($env{'form.handgrade'} eq 'yes') {
1.119     ng       2053: 	# Keywords sorted in alphabatical order
1.257     albertel 2054: 	my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119     ng       2055: 	my %keyhash = ();
1.257     albertel 2056: 	$env{'form.keywords'}           =~ s/,\s{0,}|\s+/ /g;
                   2057: 	$env{'form.keywords'}           =~ s/^\s+|\s+$//;
                   2058: 	my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
                   2059: 	$env{'form.keywords'} = join(' ',@keywords);
                   2060: 	$keyhash{$symb.'_keywords'}     = $env{'form.keywords'};
                   2061: 	$keyhash{$symb.'_subject'}      = $env{'form.msgsub'};
                   2062: 	$keyhash{$loginuser.'_kwclr'}   = $env{'form.kwclr'};
                   2063: 	$keyhash{$loginuser.'_kwsize'}  = $env{'form.kwsize'};
                   2064: 	$keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119     ng       2065: 
                   2066: 	# message center - Order of message gets changed. Blank line is eliminated.
1.257     albertel 2067: 	# New messages are saved in env for the next student.
1.119     ng       2068: 	# All messages are saved in nohist_handgrade.db
                   2069: 	my ($ctr,$idx) = (1,1);
1.257     albertel 2070: 	while ($ctr <= $env{'form.savemsgN'}) {
                   2071: 	    if ($env{'form.savemsg'.$ctr} ne '') {
                   2072: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119     ng       2073: 		$idx++;
                   2074: 	    }
                   2075: 	    $ctr++;
1.41      ng       2076: 	}
1.119     ng       2077: 	$ctr = 0;
                   2078: 	while ($ctr < $ngrade) {
1.257     albertel 2079: 	    if ($env{'form.newmsg'.$ctr} ne '') {
                   2080: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
                   2081: 		$env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119     ng       2082: 		$idx++;
                   2083: 	    }
                   2084: 	    $ctr++;
1.41      ng       2085: 	}
1.257     albertel 2086: 	$env{'form.savemsgN'} = --$idx;
                   2087: 	$keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119     ng       2088: 	my $putresult = &Apache::lonnet::put
1.301     albertel 2089: 	    ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41      ng       2090:     }
1.44      ng       2091:     # Called by Save & Refresh from Highlight Attribute Window
1.257     albertel 2092:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
                   2093:     if ($env{'form.refresh'} eq 'on') {
1.86      ng       2094: 	my ($ctr,$total) = (0,0);
                   2095: 	while ($ctr < $ngrade) {
1.257     albertel 2096: 	    $total++ if  $env{'form.unamedom'.$ctr} ne '';
1.86      ng       2097: 	    $ctr++;
                   2098: 	}
1.257     albertel 2099: 	$env{'form.NTSTU'}=$ngrade;
1.86      ng       2100: 	$ctr = 0;
                   2101: 	while ($ctr < $total) {
1.257     albertel 2102: 	    my $processUser = $env{'form.unamedom'.$ctr};
                   2103: 	    ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
                   2104: 	    $env{'form.fullname'} = $$fullname{$processUser};
1.86      ng       2105: 	    &submission($request,$ctr,$total-1);
1.41      ng       2106: 	    $ctr++;
                   2107: 	}
                   2108: 	return '';
                   2109:     }
1.36      ng       2110: 
1.121     ng       2111: # Go directly to grade student - from submission or link from chart page
1.120     ng       2112:     if ($button eq 'Grade Student') {
1.257     albertel 2113: 	(undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($url);
                   2114: 	my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
                   2115: 	($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
                   2116: 	$env{'form.fullname'} = $$fullname{$processUser};
1.120     ng       2117: 	&submission($request,0,0);
                   2118: 	return '';
                   2119:     }
                   2120: 
1.44      ng       2121:     # Get the next/previous one or group of students
1.257     albertel 2122:     my $firststu = $env{'form.unamedom0'};
                   2123:     my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119     ng       2124:     my $ctr = 2;
1.41      ng       2125:     while ($laststu eq '') {
1.257     albertel 2126: 	$laststu  = $env{'form.unamedom'.($ngrade-$ctr)};
1.41      ng       2127: 	$ctr++;
                   2128: 	$laststu = $firststu if ($ctr > $ngrade);
                   2129:     }
1.44      ng       2130: 
1.41      ng       2131:     my (@parsedlist,@nextlist);
                   2132:     my ($nextflg) = 0;
1.294     albertel 2133:     foreach (sort 
                   2134: 	     {
                   2135: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   2136: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   2137: 		 }
                   2138: 		 return $a cmp $b;
                   2139: 	     } (keys(%$fullname))) {
1.41      ng       2140: 	if ($nextflg == 1 && $button =~ /Next$/) {
                   2141: 	    push @parsedlist,$_;
                   2142: 	}
                   2143: 	$nextflg = 1 if ($_ eq $laststu);
                   2144: 	if ($button eq 'Previous') {
                   2145: 	    last if ($_ eq $firststu);
                   2146: 	    push @parsedlist,$_;
                   2147: 	}
                   2148:     }
                   2149:     $ctr = 0;
                   2150:     @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.145     albertel 2151:     my ($partlist) = &response_type($url);
1.41      ng       2152:     foreach my $student (@parsedlist) {
1.257     albertel 2153: 	my $submitonly=$env{'form.submitonly'};
1.41      ng       2154: 	my ($uname,$udom) = split(/:/,$student);
1.301     albertel 2155: 	
                   2156: 	if ($submitonly eq 'queued') {
                   2157: 	    my %queue_status = 
                   2158: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
                   2159: 							$udom,$uname);
                   2160: 	    next if (!defined($queue_status{'gradingqueue'}));
                   2161: 	}
                   2162: 
1.156     albertel 2163: 	if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257     albertel 2164: #	    my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.145     albertel 2165: 	    my %status=&student_gradeStatus($url,$symb,$udom,$uname,$partlist);
                   2166: 	    my $submitted = 0;
1.248     albertel 2167: 	    my $ungraded = 0;
                   2168: 	    my $incorrect = 0;
1.145     albertel 2169: 	    foreach (keys(%status)) {
                   2170: 		$submitted = 1 if ($status{$_} ne 'nothing');
1.248     albertel 2171: 		$ungraded = 1 if ($status{$_} =~ /^ungraded/);
                   2172: 		$incorrect = 1 if ($status{$_} =~ /^incorrect/);
1.145     albertel 2173: 		my ($foo,$partid,$foo1) = split(/\./,$_);
                   2174: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
                   2175: 		    $submitted = 0;
                   2176: 		}
1.41      ng       2177: 	    }
1.156     albertel 2178: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                   2179: 				     $submitonly eq 'incorrect' ||
                   2180: 				     $submitonly eq 'graded'));
1.248     albertel 2181: 	    next if (!$ungraded && ($submitonly eq 'graded'));
                   2182: 	    next if (!$incorrect && $submitonly eq 'incorrect');
1.41      ng       2183: 	}
                   2184: 	push @nextlist,$student if ($ctr < $ntstu);
1.129     ng       2185: 	last if ($ctr == $ntstu);
1.41      ng       2186: 	$ctr++;
                   2187:     }
1.36      ng       2188: 
1.41      ng       2189:     $ctr = 0;
                   2190:     my $total = scalar(@nextlist)-1;
1.39      ng       2191: 
1.41      ng       2192:     foreach (sort @nextlist) {
                   2193: 	my ($uname,$udom,$submitter) = split(/:/);
1.257     albertel 2194: 	$env{'form.student'}  = $uname;
                   2195: 	$env{'form.userdom'}  = $udom;
                   2196: 	$env{'form.fullname'} = $$fullname{$_};
1.41      ng       2197: 	&submission($request,$ctr,$total);
                   2198: 	$ctr++;
                   2199:     }
                   2200:     if ($total < 0) {
                   2201: 	my $the_end = '<h3><font color="red">LON-CAPA User Message</font></h3><br />'."\n";
                   2202: 	$the_end.='<b>Message: </b> No more students for this section or class.<br /><br />'."\n";
                   2203: 	$the_end.='Click on the button below to return to the grading menu.<br /><br />'."\n";
1.301     albertel 2204: 	$the_end.=&show_grading_menu_form($symb,$url);
1.41      ng       2205: 	$request->print($the_end);
                   2206:     }
                   2207:     return '';
1.38      ng       2208: }
1.36      ng       2209: 
1.44      ng       2210: #---- Save the score and award for each student, if changed
1.38      ng       2211: sub saveHandGrade {
1.150     albertel 2212:     my ($request,$url,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.262     banghart 2213:     my @v_flag;
1.104     albertel 2214:     my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257     albertel 2215: 					   $env{'request.course.id'});
1.104     albertel 2216:     if (!&canmodify($usec)) { return('not_allowed'); }
1.257     albertel 2217:     my %record     = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251     banghart 2218:     my @parts_graded;
1.77      ng       2219:     my %newrecord  = ();
                   2220:     my ($pts,$wgt) = ('','');
1.269     raeburn  2221:     my %aggregate = ();
                   2222:     my $aggregateflag = 0;
1.301     albertel 2223: 
                   2224:     my @parts = split(/:/,$env{'form.partlist'.$newflg});
                   2225:     foreach my $new_part (@parts) {
1.150     albertel 2226: 	#collaborator may vary for different parts
1.310   ! banghart 2227: 	$request->print('form.part'.$new_part.'_returndoc1');
1.259     banghart 2228: 	if ($submitter && $new_part ne $part) { next; }
                   2229: 	my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125     ng       2230: 	if ($dropMenu eq 'excused') {
1.259     banghart 2231: 	    if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
                   2232: 		$newrecord{'resource.'.$new_part.'.solved'} = 'excused';
                   2233: 		if (exists($record{'resource.'.$new_part.'.awarded'})) {
                   2234: 		    $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58      albertel 2235: 		}
1.259     banghart 2236: 	    $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58      albertel 2237: 	    }
1.125     ng       2238: 	} elsif ($dropMenu eq 'reset status'
1.259     banghart 2239: 		 && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.197     albertel 2240: 	    foreach my $key (keys (%record)) {
1.259     banghart 2241: 		if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197     albertel 2242: 	    }
1.259     banghart 2243: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
1.257     albertel 2244: 		"$env{'user.name'}:$env{'user.domain'}";
1.270     albertel 2245:             my $totaltries = $record{'resource.'.$part.'.tries'};
                   2246: 
                   2247:             my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
                   2248: 					       [$new_part]);
                   2249:             my $aggtries =$totaltries;
1.269     raeburn  2250:             if ($last_resets{$new_part}) {
1.270     albertel 2251:                 $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
                   2252: 					   $new_part);
1.269     raeburn  2253:             }
1.270     albertel 2254: 
                   2255:             my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269     raeburn  2256:             if ($aggtries > 0) {
                   2257:                 &decrement($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
                   2258:                 $aggregateflag = 1;
                   2259:             }
1.125     ng       2260: 	} elsif ($dropMenu eq '') {
1.259     banghart 2261: 	    $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ? 
                   2262: 		    $env{'form.GD_BOX'.$newflg.'_'.$new_part} : 
                   2263: 		    $env{'form.RADVAL'.$newflg.'_'.$new_part});
                   2264: 	    if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153     albertel 2265: 		next;
                   2266: 	    }
1.259     banghart 2267: 	    $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 : 
                   2268: 		$env{'form.WGT'.$newflg.'_'.$new_part};
1.41      ng       2269: 	    my $partial= $pts/$wgt;
1.259     banghart 2270: 	    if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153     albertel 2271: 		#do not update score for part if not changed.
                   2272: 		next;
1.251     banghart 2273: 	    } else {
1.259     banghart 2274: 	        push @parts_graded, $new_part;
1.153     albertel 2275: 	    }
1.259     banghart 2276: 	    if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
                   2277: 		$newrecord{'resource.'.$new_part.'.awarded'}  = $partial;
1.153     albertel 2278: 	    }
1.259     banghart 2279: 	    my $reckey = 'resource.'.$new_part.'.solved';
1.41      ng       2280: 	    if ($partial == 0) {
1.153     albertel 2281: 		if ($record{$reckey} ne 'incorrect_by_override') {
                   2282: 		    $newrecord{$reckey} = 'incorrect_by_override';
                   2283: 		}
1.41      ng       2284: 	    } else {
1.153     albertel 2285: 		if ($record{$reckey} ne 'correct_by_override') {
                   2286: 		    $newrecord{$reckey} = 'correct_by_override';
                   2287: 		}
                   2288: 	    }	    
                   2289: 	    if ($submitter && 
1.259     banghart 2290: 		($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
                   2291: 		$newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41      ng       2292: 	    }
1.259     banghart 2293: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
1.257     albertel 2294: 		"$env{'user.name'}:$env{'user.domain'}";
1.41      ng       2295: 	}
1.310   ! banghart 2296: 	$request->print('form.part'.$new_part.'_returndoc1');
        !          2297:         if ($env{'form.part'.$new_part.'_returndoc1'}) {
        !          2298:             # if multiple files are uploaded names will be 'returndoc2', 'returndoc3'
        !          2299:             my $portfolio_root = &Apache::loncommon::propath($domain,
        !          2300:     					 $stuname).
        !          2301:     					'/userfiles/portfolio';
        !          2302:                 $request->print('<br>'.$portfolio_root.'<br>');
        !          2303:     #                my $result=&Apache::lonnet::userfileupload('uploaddoc','',
        !          2304:     #	        	 'portfolio'.$env{'form.currentpath'});
        !          2305:     
        !          2306:             my $file_counter = 1;
        !          2307:             while ($env{'form.'.$new_part.'_returndoc'.$file_counter}) {
        !          2308:                 my $fname=$env{'form.returndoc'.$file_counter.'.filename'};
        !          2309:                 $request->print("<br />".$fname." will be the uploaded file name");
        !          2310:                 $request->print("<font color=\"red\">Will upload document</font>".$env{'form.returndocorig'.$file_counter});
        !          2311:                 $file_counter++;
        !          2312:             }
        !          2313:         }
        !          2314: 	
1.259     banghart 2315: 	# unless problem has been graded, set flag to version the submitted files
1.305     banghart 2316: 	unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/  || 
                   2317: 	        $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
                   2318: 	        $dropMenu eq 'reset status')
                   2319: 	   {
1.262     banghart 2320: 	    push (@v_flag,$new_part);
1.259     banghart 2321: 	}
1.41      ng       2322:     }
1.301     albertel 2323:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   2324:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   2325: 
1.44      ng       2326:     if (scalar(keys(%newrecord)) > 0) {
1.263     banghart 2327:         if (scalar(@v_flag)) {
                   2328:             &version_portfiles(\%record, \@parts_graded, $env{'request.course.id'}, $symb, $domain, $stuname, \@v_flag);
1.259     banghart 2329:         }
1.44      ng       2330: 	&Apache::lonnet::cstore(\%newrecord,$symb,
1.257     albertel 2331: 				$env{'request.course.id'},$domain,$stuname);
1.301     albertel 2332: 	
                   2333: 	my @ungraded_parts;
                   2334: 	foreach my $part (@parts) {
                   2335: 	    if ( !defined($record{'resource.'.$part.'.awarded'})
                   2336: 		 && !defined($newrecord{'resource.'.$part.'.awarded'}) ) {
                   2337: 		push(@ungraded_parts, $part);
                   2338: 	    }
                   2339: 	}
                   2340: 	if ( !@ungraded_parts ) {
                   2341: 	    &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
                   2342: 						   $cnum,$domain,$stuname);
                   2343: 	}
1.41      ng       2344:     }
1.269     raeburn  2345:     if ($aggregateflag) {
                   2346:         &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301     albertel 2347: 			      $cdom,$cnum);
1.269     raeburn  2348:     }
1.301     albertel 2349:     return ('',$pts,$wgt);
1.36      ng       2350: }
1.38      ng       2351: 
1.269     raeburn  2352: # ----------- Provides number of tries since last reset.
                   2353: sub get_num_tries {
                   2354:     my ($record,$last_reset,$part) = @_;
                   2355:     my $timestamp = '';
                   2356:     my $num_tries = 0;
                   2357:     if ($$record{'version'}) {
                   2358:         for (my $version=$$record{'version'};$version>=1;$version--) {
                   2359:             if (exists($$record{$version.':resource.'.$part.'.solved'})) {
                   2360:                 $timestamp = $$record{$version.':timestamp'};
                   2361:                 if ($timestamp > $last_reset) {
                   2362:                     $num_tries ++;
                   2363:                 } else {
                   2364:                     last;
                   2365:                 }
                   2366:             }
                   2367:         }
                   2368:     }
                   2369:     return $num_tries;
                   2370: }
                   2371: 
                   2372: # ----------- Determine decrements required in aggregate totals 
                   2373: sub decrement_aggs {
                   2374:     my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
                   2375:     my %decrement = (
                   2376:                         attempts => 0,
                   2377:                         users => 0,
                   2378:                         correct => 0
                   2379:                     );
                   2380:     $decrement{'attempts'} = $aggtries;
                   2381:     if ($solvedstatus =~ /^correct/) {
                   2382:         $decrement{'correct'} = 1;
                   2383:     }
                   2384:     if ($aggtries == $totaltries) {
                   2385:         $decrement{'users'} = 1;
                   2386:     }
                   2387:     foreach my $type (keys (%decrement)) {
                   2388:         $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
                   2389:     }
                   2390:     return;
                   2391: }
                   2392: 
                   2393: # ----------- Determine timestamps for last reset of aggregate totals for parts  
                   2394: sub get_last_resets {
1.270     albertel 2395:     my ($symb,$courseid,$partids) =@_;
                   2396:     my %last_resets;
1.269     raeburn  2397:     my $cdom = $env{'course.'.$courseid.'.domain'};
                   2398:     my $cname = $env{'course.'.$courseid.'.num'};
1.271     albertel 2399:     my @keys;
                   2400:     foreach my $part (@{$partids}) {
                   2401: 	push(@keys,"$symb\0$part\0resettime");
                   2402:     }
                   2403:     my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
                   2404: 				     $cdom,$cname);
                   2405:     foreach my $part (@{$partids}) {
                   2406: 	$last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269     raeburn  2407:     }
1.270     albertel 2408:     return %last_resets;
1.269     raeburn  2409: }
                   2410: 
1.251     banghart 2411: # ----------- Handles creating versions for portfolio files as answers
                   2412: sub version_portfiles {
1.306     banghart 2413:     my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263     banghart 2414:     my $version_parts = join('|',@$v_flag);
1.255     banghart 2415:     my $parts = join('|', @$parts_graded);
1.252     banghart 2416:     my $portfolio_root = &Apache::loncommon::propath($domain,
1.306     banghart 2417: 						 $stu_name).
1.252     banghart 2418: 						'/userfiles/portfolio';
1.277     albertel 2419:     foreach my $key (keys(%$record)) {
1.259     banghart 2420:         my $new_portfiles;
1.263     banghart 2421:         if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.259     banghart 2422:             my @v_portfiles;
1.255     banghart 2423:             my @portfiles = split(/,/,$$record{$key});
1.252     banghart 2424:             foreach my $file (@portfiles) {
1.306     banghart 2425:                 &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304     albertel 2426:                 my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
1.252     banghart 2427:                 my $version = 0;
1.304     albertel 2428: 		my ($answer_name,$answer_ver,$answer_ext) =
                   2429: 		    &file_name_version_ext($answer_file);
1.306     banghart 2430:                 my @dir_list = &Apache::lonnet::dirlist($directory,$domain,$stu_name,$portfolio_root);
1.307     banghart 2431:                 $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.306     banghart 2432:                 my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
                   2433:                 if ($new_answer ne 'problem getting file') {
1.304     albertel 2434:                     push(@v_portfiles, $directory.$new_answer);
1.306     banghart 2435:                     &Apache::lonnet::mark_as_readonly($domain,$stu_name,
                   2436:                         ['/portfolio'.$directory.$new_answer],
                   2437:                         [$symb,$env{'request.course.id'},'graded']);
1.259     banghart 2438:                 }
1.306     banghart 2439:                 
1.252     banghart 2440:             }
1.261     albertel 2441:             $$record{$key} = join(',',@v_portfiles);
1.251     banghart 2442:         }
                   2443:     } 
1.259     banghart 2444:     return 'ok';   
1.305     banghart 2445: }
                   2446: 
1.307     banghart 2447: sub get_next_version {
                   2448:     my ($answer_name, $answer_ext, $dir_list);
                   2449:     my $version;
                   2450:     foreach my $row (@$dir_list) {
                   2451:         my ($file) = split(/\&/,$row,2);
                   2452:         my ($file_name,$file_version,$file_ext) =
                   2453: 	    &file_name_version_ext($file);
                   2454:         if (($file_name eq $answer_name) && 
                   2455: 	    ($file_ext eq $answer_ext)) {
                   2456:                 # gets here if filename and extension match, regardless of version
                   2457:                 if ($file_version ne '') {
                   2458:                 # a versioned file is found  so save it for later
                   2459:                 if ($file_version > $version) {
                   2460: 		    $version = $file_version;
                   2461: 	        }
                   2462:             }
                   2463:         }
                   2464:     } 
                   2465:     $version ++;
                   2466:     return($version);
                   2467: }
                   2468: 
1.305     banghart 2469: sub version_selected_portfile {
1.306     banghart 2470:     my ($domain,$stu_name,$directory,$file_name,$version) = @_;
                   2471:     my ($answer_name,$answer_ver,$answer_ext) =
                   2472:         &file_name_version_ext($file_name);
                   2473:     my $new_answer;
                   2474:     $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
                   2475:     if($env{'form.copy'} eq '-1') {
                   2476:         &Apache::lonnet::logthis('problem getting file '.$file_name);
                   2477:         $new_answer = 'problem getting file';
                   2478:     } else {
                   2479:         $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
                   2480:         my $copy_result = &Apache::lonnet::finishuserfileupload(
                   2481:                             $stu_name,$domain,'copy',
                   2482: 		        '/portfolio'.$directory.$new_answer);
                   2483:     }    
                   2484:     return ($new_answer);
1.251     banghart 2485: }
                   2486: 
1.304     albertel 2487: sub file_name_version_ext {
                   2488:     my ($file)=@_;
                   2489:     my @file_parts = split(/\./, $file);
                   2490:     my ($name,$version,$ext);
                   2491:     if (@file_parts > 1) {
                   2492: 	$ext=pop(@file_parts);
                   2493: 	if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
                   2494: 	    $version=pop(@file_parts);
                   2495: 	}
                   2496: 	$name=join('.',@file_parts);
                   2497:     } else {
                   2498: 	$name=join('.',@file_parts);
                   2499:     }
                   2500:     return($name,$version,$ext);
                   2501: }
                   2502: 
1.44      ng       2503: #--------------------------------------------------------------------------------------
                   2504: #
                   2505: #-------------------------- Next few routines handles grading by section or whole class
                   2506: #
                   2507: #--- Javascript to handle grading by section or whole class
1.42      ng       2508: sub viewgrades_js {
                   2509:     my ($request) = shift;
                   2510: 
1.41      ng       2511:     $request->print(<<VIEWJAVASCRIPT);
                   2512: <script type="text/javascript" language="javascript">
1.45      ng       2513:    function writePoint(partid,weight,point) {
1.125     ng       2514: 	var radioButton = document.classgrade["RADVAL_"+partid];
                   2515: 	var textbox = document.classgrade["TEXTVAL_"+partid];
1.42      ng       2516: 	if (point == "textval") {
1.125     ng       2517: 	    point = document.classgrade["TEXTVAL_"+partid].value;
1.109     matthew  2518: 	    if (isNaN(point) || parseFloat(point) < 0) {
                   2519: 		alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.42      ng       2520: 		var resetbox = false;
                   2521: 		for (var i=0; i<radioButton.length; i++) {
                   2522: 		    if (radioButton[i].checked) {
                   2523: 			textbox.value = i;
                   2524: 			resetbox = true;
                   2525: 		    }
                   2526: 		}
                   2527: 		if (!resetbox) {
                   2528: 		    textbox.value = "";
                   2529: 		}
                   2530: 		return;
                   2531: 	    }
1.109     matthew  2532: 	    if (parseFloat(point) > parseFloat(weight)) {
                   2533: 		var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       2534: 				   ") greater than the weight for the part. Accept?");
                   2535: 		if (resp == false) {
                   2536: 		    textbox.value = "";
                   2537: 		    return;
                   2538: 		}
                   2539: 	    }
1.42      ng       2540: 	    for (var i=0; i<radioButton.length; i++) {
                   2541: 		radioButton[i].checked=false;
1.109     matthew  2542: 		if (parseFloat(point) == i) {
1.42      ng       2543: 		    radioButton[i].checked=true;
                   2544: 		}
                   2545: 	    }
1.41      ng       2546: 
1.42      ng       2547: 	} else {
1.125     ng       2548: 	    textbox.value = parseFloat(point);
1.42      ng       2549: 	}
1.41      ng       2550: 	for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2551: 	    var user = document.classgrade["ctr"+i].value;
1.289     albertel 2552: 	    user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       2553: 	    var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2554: 	    var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2555: 	    var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       2556: 	    if (saveval != "correct") {
                   2557: 		scorename.value = point;
1.43      ng       2558: 		if (selname[0].selected != true) {
                   2559: 		    selname[0].selected = true;
                   2560: 		}
1.42      ng       2561: 	    }
                   2562: 	}
1.125     ng       2563: 	document.classgrade["SELVAL_"+partid][0].selected = true;
1.42      ng       2564:     }
                   2565: 
                   2566:     function writeRadText(partid,weight) {
1.125     ng       2567: 	var selval   = document.classgrade["SELVAL_"+partid];
                   2568: 	var radioButton = document.classgrade["RADVAL_"+partid];
1.265     www      2569:         var override = document.classgrade["FORCE_"+partid].checked;
1.125     ng       2570: 	var textbox = document.classgrade["TEXTVAL_"+partid];
                   2571: 	if (selval[1].selected || selval[2].selected) {
1.42      ng       2572: 	    for (var i=0; i<radioButton.length; i++) {
                   2573: 		radioButton[i].checked=false;
                   2574: 
                   2575: 	    }
                   2576: 	    textbox.value = "";
                   2577: 
                   2578: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2579: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 2580: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       2581: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2582: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2583: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265     www      2584: 		if ((saveval != "correct") || override) {
1.42      ng       2585: 		    scorename.value = "";
1.125     ng       2586: 		    if (selval[1].selected) {
                   2587: 			selname[1].selected = true;
                   2588: 		    } else {
                   2589: 			selname[2].selected = true;
                   2590: 			if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value)) 
                   2591: 			{document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
                   2592: 		    }
1.42      ng       2593: 		}
                   2594: 	    }
1.43      ng       2595: 	} else {
                   2596: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2597: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 2598: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       2599: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2600: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2601: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265     www      2602: 		if ((saveval != "correct") || override) {
1.125     ng       2603: 		    scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43      ng       2604: 		    selname[0].selected = true;
                   2605: 		}
                   2606: 	    }
                   2607: 	}	    
1.42      ng       2608:     }
                   2609: 
                   2610:     function changeSelect(partid,user) {
1.125     ng       2611: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   2612: 	var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44      ng       2613: 	var point  = textbox.value;
1.125     ng       2614: 	var weight = document.classgrade["weight_"+partid].value;
1.44      ng       2615: 
1.109     matthew  2616: 	if (isNaN(point) || parseFloat(point) < 0) {
                   2617: 	    alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.44      ng       2618: 	    textbox.value = "";
                   2619: 	    return;
                   2620: 	}
1.109     matthew  2621: 	if (parseFloat(point) > parseFloat(weight)) {
                   2622: 	    var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       2623: 			       ") greater than the weight of the part. Accept?");
                   2624: 	    if (resp == false) {
                   2625: 		textbox.value = "";
                   2626: 		return;
                   2627: 	    }
                   2628: 	}
1.42      ng       2629: 	selval[0].selected = true;
                   2630:     }
                   2631: 
                   2632:     function changeOneScore(partid,user) {
1.125     ng       2633: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   2634: 	if (selval[1].selected || selval[2].selected) {
                   2635: 	    document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
                   2636: 	    if (selval[2].selected) {
                   2637: 		document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
                   2638: 	    }
1.269     raeburn  2639:         }
1.42      ng       2640:     }
                   2641: 
                   2642:     function resetEntry(numpart) {
                   2643: 	for (ctpart=0;ctpart<numpart;ctpart++) {
1.125     ng       2644: 	    var partid = document.classgrade["partid_"+ctpart].value;
                   2645: 	    var radioButton = document.classgrade["RADVAL_"+partid];
                   2646: 	    var textbox = document.classgrade["TEXTVAL_"+partid];
                   2647: 	    var selval  = document.classgrade["SELVAL_"+partid];
1.42      ng       2648: 	    for (var i=0; i<radioButton.length; i++) {
                   2649: 		radioButton[i].checked=false;
                   2650: 
                   2651: 	    }
                   2652: 	    textbox.value = "";
                   2653: 	    selval[0].selected = true;
                   2654: 
                   2655: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2656: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 2657: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       2658: 		var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2659: 		resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
                   2660: 		var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
                   2661: 		resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
                   2662: 		var saveselval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2663: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       2664: 		if (saveselval == "excused") {
1.43      ng       2665: 		    if (selname[1].selected == false) { selname[1].selected = true;}
1.42      ng       2666: 		} else {
1.43      ng       2667: 		    if (selname[0].selected == false) {selname[0].selected = true};
1.42      ng       2668: 		}
                   2669: 	    }
1.41      ng       2670: 	}
1.42      ng       2671:     }
                   2672: 
1.41      ng       2673: </script>
                   2674: VIEWJAVASCRIPT
1.42      ng       2675: }
                   2676: 
1.44      ng       2677: #--- show scores for a section or whole class w/ option to change/update a score
1.42      ng       2678: sub viewgrades {
                   2679:     my ($request) = shift;
                   2680:     &viewgrades_js($request);
1.41      ng       2681: 
1.257     albertel 2682:     my ($symb,$url) = ($env{'form.symb'},$env{'form.url'}); 
1.168     albertel 2683:     #need to make sure we have the correct data for later EXT calls, 
                   2684:     #thus invalidate the cache
                   2685:     &Apache::lonnet::devalidatecourseresdata(
1.257     albertel 2686:                  $env{'course.'.$env{'request.course.id'}.'.num'},
                   2687:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168     albertel 2688:     &Apache::lonnet::clear_EXT_cache_status();
                   2689: 
1.167     sakharuk 2690:     my $result='<h3><font color="#339933">'.&mt('Manual Grading').'</font></h3>';
1.257     albertel 2691:     $result.='<font size=+1><b>Current Resource: </b>'.$env{'form.probTitle'}.'</font>'."\n";
1.41      ng       2692: 
                   2693:     #view individual student submission form - called using Javascript viewOneStudent
1.45      ng       2694:     $result.=&jscriptNform($url,$symb);
1.41      ng       2695: 
1.44      ng       2696:     #beginning of class grading form
1.41      ng       2697:     $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.106     albertel 2698: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
1.41      ng       2699: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
1.38      ng       2700: 	'<input type="hidden" name="command" value="editgrades" />'."\n".
1.257     albertel 2701: 	'<input type="hidden" name="section" value="'.$env{'form.section'}.'" />'."\n".
                   2702: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
                   2703: 	'<input type="hidden" name="Status" value="'.$env{'form.Status'}.'" />'."\n".
                   2704: 	'<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72      ng       2705: 
1.126     ng       2706:     my $sectionClass;
1.257     albertel 2707:     if ($env{'form.section'} eq 'all') {
1.126     ng       2708: 	$sectionClass='Class </h3>';
1.257     albertel 2709:     } elsif ($env{'form.section'} eq 'none') {
1.126     ng       2710: 	$sectionClass='Students in no Section </h3>';
1.52      albertel 2711:     } else {
1.257     albertel 2712: 	$sectionClass='Students in Section '.$env{'form.section'}.'</h3>';
1.52      albertel 2713:     }
1.126     ng       2714:     $result.='<h3>Assign Common Grade To '.$sectionClass;
1.52      albertel 2715:     $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
                   2716: 	'<table border=0><tr bgcolor="#ffffdd"><td>';
1.44      ng       2717:     #radio buttons/text box for assigning points for a section or class.
                   2718:     #handles different parts of a problem
1.125     ng       2719:     my ($partlist,$handgrade) = &response_type($url,$symb);
1.42      ng       2720:     my %weight = ();
                   2721:     my $ctsparts = 0;
1.41      ng       2722:     $result.='<table border="0">';
1.45      ng       2723:     my %seen = ();
1.42      ng       2724:     for (sort keys(%$handgrade)) {
1.54      albertel 2725: 	my ($partid,$respid) = split (/_/,$_,2);
1.45      ng       2726: 	next if $seen{$partid};
                   2727: 	$seen{$partid}++;
1.147     albertel 2728: 	my $handgrade=$$handgrade{$_};
1.42      ng       2729: 	my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
                   2730: 	$weight{$partid} = $wgt eq '' ? '1' : $wgt;
                   2731: 
1.44      ng       2732: 	$result.='<input type="hidden" name="partid_'.
                   2733: 	    $ctsparts.'" value="'.$partid.'" />'."\n";
                   2734: 	$result.='<input type="hidden" name="weight_'.
                   2735: 	    $partid.'" value="'.$weight{$partid}.'" />'."\n";
1.207     albertel 2736: 	my $display_part=&get_display_part($partid,$url,$symb);
                   2737: 	$result.='<tr><td><b>Part:</b> '.$display_part.'&nbsp; &nbsp;<b>Point:</b> </td><td>';
1.42      ng       2738: 	$result.='<table border="0"><tr>';  
1.41      ng       2739: 	my $ctr = 0;
1.42      ng       2740: 	while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.288     albertel 2741: 	    $result.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54      albertel 2742: 		'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288     albertel 2743: 		','.$ctr.')" />'.$ctr."</label></td>\n";
1.41      ng       2744: 	    $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
                   2745: 	    $ctr++;
                   2746: 	}
                   2747: 	$result.='</tr></table>';
1.44      ng       2748: 	$result.= '</td><td><b> or </b><input type="text" name="TEXTVAL_'.
1.54      albertel 2749: 	    $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
                   2750: 		$partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.42      ng       2751: 	    $weight{$partid}.' (problem weight)</td>'."\n";
                   2752: 	$result.= '</td><td><select name="SELVAL_'.$partid.'"'.
1.54      albertel 2753: 	    'onChange="javascript:writeRadText(\''.$partid.'\','.
1.59      albertel 2754: 		$weight{$partid}.')"> '.
1.42      ng       2755: 	    '<option selected="on"> </option>'.
1.125     ng       2756: 	    '<option>excused</option>'.
1.265     www      2757: 	    '<option>reset status</option></select></td>'.
1.266     albertel 2758:             '<td><label><input type="checkbox" name="FORCE_'.$partid.'" /> Override "Correct"</label></td></tr>'."\n";
1.42      ng       2759: 	$ctsparts++;
1.41      ng       2760:     }
1.52      albertel 2761:     $result.='</table>'.'</td></tr></table>'.'</td></tr></table>'."\n".
                   2762: 	'<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.42      ng       2763:     $result.='<input type="button" value="Reset" '.
1.111     ng       2764: 	'onClick="javascript:resetEntry('.$ctsparts.');" TARGET=_self>';
1.41      ng       2765: 
1.44      ng       2766:     #table listing all the students in a section/class
                   2767:     #header of table
1.126     ng       2768:     $result.= '<h3>Assign Grade to Specific Students in '.$sectionClass;
1.42      ng       2769:     $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
1.126     ng       2770: 	'<table border=0><tr bgcolor="#deffff"><td>&nbsp;<b>No.</b>&nbsp;</td>'.
1.129     ng       2771: 	'<td>'.&nameUserString('header')."</td>\n";
1.146     albertel 2772:     my (@parts) = sort(&getpartlist($url,$symb));
1.269     raeburn  2773:     my @partids = ();
1.41      ng       2774:     foreach my $part (@parts) {
                   2775: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.126     ng       2776: 	$display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
1.41      ng       2777: 	if  (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207     albertel 2778: 	my ($partid) = &split_part_type($part);
1.269     raeburn  2779:         push(@partids, $partid);
1.207     albertel 2780: 	my $display_part=&get_display_part($partid,$url,$symb);
1.41      ng       2781: 	if ($display =~ /^Partial Credit Factor/) {
1.207     albertel 2782: 	    $result.='<td><b>Score Part:</b> '.$display_part.
                   2783: 		' <br /><b>(weight = '.$weight{$partid}.')</b></td>'."\n";
1.41      ng       2784: 	    next;
1.207     albertel 2785: 	} else {
                   2786: 	    $display =~s/\[Part: \Q$partid\E\]/Part:<\/b> $display_part/;
1.41      ng       2787: 	}
1.53      albertel 2788: 	$display =~ s|Problem Status|Grade Status<br />|;
1.207     albertel 2789: 	$result.='<td><b>'.$display.'</td>'."\n";
1.41      ng       2790:     }
                   2791:     $result.='</tr>';
1.44      ng       2792: 
1.270     albertel 2793:     my %last_resets = 
                   2794: 	&get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269     raeburn  2795: 
1.41      ng       2796:     #get info for each student
1.44      ng       2797:     #list all the students - with points and grade status
1.257     albertel 2798:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41      ng       2799:     my $ctr = 0;
1.294     albertel 2800:     foreach (sort 
                   2801: 	     {
                   2802: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   2803: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   2804: 		 }
                   2805: 		 return $a cmp $b;
                   2806: 	     } (keys(%$fullname))) {
1.126     ng       2807: 	$ctr++;
1.257     albertel 2808: 	$result.=&viewstudentgrade($url,$symb,$env{'request.course.id'},
1.269     raeburn  2809: 				   $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41      ng       2810:     }
                   2811:     $result.='</table></td></tr></table>';
                   2812:     $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.126     ng       2813:     $result.='<input type="button" value="Save" '.
1.45      ng       2814: 	'onClick="javascript:submit();" TARGET=_self /></form>'."\n";
1.96      albertel 2815:     if (scalar(%$fullname) eq 0) {
                   2816: 	my $colspan=3+scalar(@parts);
1.257     albertel 2817: 	$result='<font color="red">There are no students in section "'.$env{'form.section'}.
                   2818: 	    '" with enrollment status "'.$env{'form.Status'}.'" to modify or grade.</font>';
1.96      albertel 2819:     }
1.41      ng       2820:     $result.=&show_grading_menu_form($symb,$url);
                   2821:     return $result;
                   2822: }
                   2823: 
1.44      ng       2824: #--- call by previous routine to display each student
1.41      ng       2825: sub viewstudentgrade {
1.269     raeburn  2826:     my ($url,$symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44      ng       2827:     my ($uname,$udom) = split(/:/,$student);
                   2828:     my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269     raeburn  2829:     my %aggregates = (); 
1.233     albertel 2830:     my $result='<tr bgcolor="#ffffdd"><td align="right">'.
                   2831: 	'<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
                   2832: 	"\n".$ctr.'&nbsp;</td><td>&nbsp;'.
1.44      ng       2833: 	'<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.112     ng       2834: 	'\')"; TARGET=_self>'.$fullname.'</a> '.
1.257     albertel 2835: 	'<font color="#999999">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</font></td>'."\n";
1.281     albertel 2836:     $student=~s/:/_/; # colon doen't work in javascript for names
1.63      albertel 2837:     foreach my $apart (@$parts) {
                   2838: 	my ($part,$type) = &split_part_type($apart);
1.41      ng       2839: 	my $score=$record{"resource.$part.$type"};
1.276     albertel 2840:         $result.='<td align="center">';
1.269     raeburn  2841:         my ($aggtries,$totaltries);
                   2842:         unless (exists($aggregates{$part})) {
1.270     albertel 2843: 	    $totaltries = $record{'resource.'.$part.'.tries'};
                   2844: 
                   2845: 	    $aggtries = $totaltries;
1.269     raeburn  2846:             if ($$last_resets{$part}) {  
1.270     albertel 2847:                 $aggtries = &get_num_tries(\%record,$$last_resets{$part},
                   2848: 					   $part);
                   2849:             }
1.269     raeburn  2850:             $result.='<input type="hidden" name="'.
                   2851:                 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
                   2852:             $result.='<input type="hidden" name="'.
                   2853:                 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
                   2854:             $aggregates{$part} = 1;
                   2855:         }
1.41      ng       2856: 	if ($type eq 'awarded') {
1.42      ng       2857: 	    my $pts = $score eq '' ? '' : $score*$$weight{$part};
                   2858: 	    $result.='<input type="hidden" name="'.
1.89      albertel 2859: 		'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233     albertel 2860: 	    $result.='<input type="text" name="'.
1.89      albertel 2861: 		'GD_'.$student.'_'.$part.'_awarded" '.
                   2862: 		'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44      ng       2863: 		'\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41      ng       2864: 	} elsif ($type eq 'solved') {
                   2865: 	    my ($status,$foo)=split(/_/,$score,2);
                   2866: 	    $status = 'nothing' if ($status eq '');
1.89      albertel 2867: 	    $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54      albertel 2868: 		$part.'_solved_s" value="'.$status.'" />'."\n";
1.233     albertel 2869: 	    $result.='&nbsp;<select name="'.
1.89      albertel 2870: 		'GD_'.$student.'_'.$part.'_solved" '.
                   2871: 		'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.125     ng       2872: 	    $result.= (($status eq 'excused') ? '<option> </option><option selected="on">excused</option>' 
                   2873: 		: '<option selected="on"> </option><option>excused</option>')."\n";
                   2874: 	    $result.='<option>reset status</option>';
1.126     ng       2875: 	    $result.="</select>&nbsp;</td>\n";
1.122     ng       2876: 	} else {
                   2877: 	    $result.='<input type="hidden" name="'.
                   2878: 		'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
                   2879: 		    "\n";
1.233     albertel 2880: 	    $result.='<input type="text" name="'.
1.122     ng       2881: 		'GD_'.$student.'_'.$part.'_'.$type.'" '.
                   2882: 		'value="'.$score.'" size="4" /></td>'."\n";
1.41      ng       2883: 	}
                   2884:     }
                   2885:     $result.='</tr>';
                   2886:     return $result;
1.38      ng       2887: }
                   2888: 
1.44      ng       2889: #--- change scores for all the students in a section/class
                   2890: #    record does not get update if unchanged
1.38      ng       2891: sub editgrades {
1.41      ng       2892:     my ($request) = @_;
                   2893: 
1.257     albertel 2894:     my $symb=$env{'form.symb'};
                   2895:     my $url =$env{'form.url'};
1.45      ng       2896:     my $title='<h3><font color="#339933">Current Grade Status</font></h3>';
1.257     albertel 2897:     $title.='<font size=+1><b>Current Resource: </b>'.$env{'form.probTitle'}.'</font><br />'."\n";
                   2898:     $title.='<font size=+1><b>Section: </b>'.$env{'form.section'}.'</font>'."\n";
1.126     ng       2899: 
1.44      ng       2900:     my $result= '<table border="0"><tr><td bgcolor="#777777">'."\n";
1.129     ng       2901:     $result.= '<table border="0"><tr bgcolor="#deffff">'.
                   2902: 	'<td rowspan=2 valign="center">&nbsp;<b>No.</b>&nbsp;</td>'.
                   2903: 	'<td rowspan=2 valign="center">'.&nameUserString('header')."</td>\n";
1.43      ng       2904: 
                   2905:     my %scoreptr = (
                   2906: 		    'correct'  =>'correct_by_override',
                   2907: 		    'incorrect'=>'incorrect_by_override',
                   2908: 		    'excused'  =>'excused',
                   2909: 		    'ungraded' =>'ungraded_attempted',
                   2910: 		    'nothing'  => '',
                   2911: 		    );
1.257     albertel 2912:     my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34      ng       2913: 
1.44      ng       2914:     my (@partid);
                   2915:     my %weight = ();
1.54      albertel 2916:     my %columns = ();
1.44      ng       2917:     my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54      albertel 2918: 
1.146     albertel 2919:     my (@parts) = sort(&getpartlist($url,$symb));
1.54      albertel 2920:     my $header;
1.257     albertel 2921:     while ($ctr < $env{'form.totalparts'}) {
                   2922: 	my $partid = $env{'form.partid_'.$ctr};
1.44      ng       2923: 	push @partid,$partid;
1.257     albertel 2924: 	$weight{$partid} = $env{'form.weight_'.$partid};
1.44      ng       2925: 	$ctr++;
1.54      albertel 2926:     }
                   2927:     foreach my $partid (@partid) {
                   2928: 	$header .= '<td align="center">&nbsp;<b>Old Score</b>&nbsp;</td>'.
                   2929: 	    '<td align="center">&nbsp;<b>New Score</b>&nbsp;</td>';
                   2930: 	$columns{$partid}=2;
                   2931: 	foreach my $stores (@parts) {
                   2932: 	    my ($part,$type) = &split_part_type($stores);
                   2933: 	    if ($part !~ m/^\Q$partid\E/) { next;}
                   2934: 	    if ($type eq 'awarded' || $type eq 'solved') { next; }
                   2935: 	    my $display=&Apache::lonnet::metadata($url,$stores.'.display');
                   2936: 	    $display =~ s/\[Part: (\w)+\]//;
1.125     ng       2937: 	    $display =~ s/Number of Attempts/Tries/;
                   2938: 	    $header .= '<td align="center">&nbsp;<b>Old '.$display.'</b>&nbsp;</td>'.
                   2939: 		'<td align="center">&nbsp;<b>New '.$display.'</b>&nbsp;</td>';
1.54      albertel 2940: 	    $columns{$partid}+=2;
                   2941: 	}
                   2942:     }
                   2943:     foreach my $partid (@partid) {
1.207     albertel 2944: 	my $display_part=&get_display_part($partid,$url,$symb);
1.54      albertel 2945: 	$result .= '<td colspan="'.$columns{$partid}.
1.207     albertel 2946: 	    '" align="center"><b>Part:</b> '.$display_part.
                   2947: 	    ' (Weight = '.$weight{$partid}.')</td>';
1.54      albertel 2948: 
1.44      ng       2949:     }
                   2950:     $result .= '</tr><tr bgcolor="#deffff">';
1.54      albertel 2951:     $result .= $header;
1.44      ng       2952:     $result .= '</tr>'."\n";
1.93      albertel 2953:     my $noupdate;
1.126     ng       2954:     my ($updateCtr,$noupdateCtr) = (1,1);
1.257     albertel 2955:     for ($i=0; $i<$env{'form.total'}; $i++) {
1.93      albertel 2956: 	my $line;
1.257     albertel 2957: 	my $user = $env{'form.ctr'.$i};
1.281     albertel 2958: 	my ($uname,$udom)=split(/:/,$user);
1.44      ng       2959: 	my %newrecord;
                   2960: 	my $updateflag = 0;
1.281     albertel 2961: 	$line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108     albertel 2962: 	my $usec=$classlist->{"$uname:$udom"}[5];
1.105     albertel 2963: 	if (!&canmodify($usec)) {
1.126     ng       2964: 	    my $numcols=scalar(@partid)*4+2;
1.105     albertel 2965: 	    $noupdate.=$line."<td colspan=\"$numcols\"><font color=\"red\">Not allowed to modify student</font></td></tr>";
                   2966: 	    next;
                   2967: 	}
1.269     raeburn  2968:         my %aggregate = ();
                   2969:         my $aggregateflag = 0;
1.281     albertel 2970: 	$user=~s/:/_/; # colon doen't work in javascript for names
1.44      ng       2971: 	foreach (@partid) {
1.257     albertel 2972: 	    my $old_aw    = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54      albertel 2973: 	    my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
                   2974: 	    my $old_part  = $old_aw eq '' ? '' : $old_part_pcr;
1.257     albertel 2975: 	    my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
                   2976: 	    my $awarded   = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54      albertel 2977: 	    my $pcr       = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
                   2978: 	    my $partial   = $awarded eq '' ? '' : $pcr;
1.44      ng       2979: 	    my $score;
                   2980: 	    if ($partial eq '') {
1.257     albertel 2981: 		$score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44      ng       2982: 	    } elsif ($partial > 0) {
                   2983: 		$score = 'correct_by_override';
                   2984: 	    } elsif ($partial == 0) {
                   2985: 		$score = 'incorrect_by_override';
                   2986: 	    }
1.257     albertel 2987: 	    my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125     ng       2988: 	    $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
                   2989: 
1.292     albertel 2990: 	    $newrecord{'resource.'.$_.'.regrader'}=
                   2991: 		"$env{'user.name'}:$env{'user.domain'}";
1.125     ng       2992: 	    if ($dropMenu eq 'reset status' &&
                   2993: 		$old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299     albertel 2994: 		$newrecord{'resource.'.$_.'.tries'} = '';
1.125     ng       2995: 		$newrecord{'resource.'.$_.'.solved'} = '';
                   2996: 		$newrecord{'resource.'.$_.'.award'} = '';
1.299     albertel 2997: 		$newrecord{'resource.'.$_.'.awarded'} = '';
1.125     ng       2998: 		$updateflag = 1;
1.269     raeburn  2999:                 if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
                   3000:                     my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
                   3001:                     my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
                   3002:                     my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
                   3003:                     &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
                   3004:                     $aggregateflag = 1;
                   3005:                 }
1.139     albertel 3006: 	    } elsif (!($old_part eq $partial && $old_score eq $score)) {
                   3007: 		$updateflag = 1;
                   3008: 		$newrecord{'resource.'.$_.'.awarded'}  = $partial if $partial ne '';
                   3009: 		$newrecord{'resource.'.$_.'.solved'}   = $score;
                   3010: 		$rec_update++;
1.125     ng       3011: 	    }
                   3012: 
1.93      albertel 3013: 	    $line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.44      ng       3014: 		'<td align="center">'.$awarded.
                   3015: 		($score eq 'excused' ? $score : '').'&nbsp;</td>';
1.5       albertel 3016: 
1.54      albertel 3017: 
                   3018: 	    my $partid=$_;
                   3019: 	    foreach my $stores (@parts) {
                   3020: 		my ($part,$type) = &split_part_type($stores);
                   3021: 		if ($part !~ m/^\Q$partid\E/) { next;}
                   3022: 		if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257     albertel 3023: 		my $old_aw    = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
                   3024: 		my $awarded   = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54      albertel 3025: 		if ($awarded ne '' && $awarded ne $old_aw) {
                   3026: 		    $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257     albertel 3027: 		    $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54      albertel 3028: 		    $updateflag=1;
                   3029: 		}
1.93      albertel 3030: 		$line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.54      albertel 3031: 		    '<td align="center">'.$awarded.'&nbsp;</td>';
                   3032: 	    }
1.44      ng       3033: 	}
1.93      albertel 3034: 	$line.='</tr>'."\n";
1.301     albertel 3035: 
                   3036: 	my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3037: 	my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3038: 
1.44      ng       3039: 	if ($updateflag) {
                   3040: 	    $count++;
1.257     albertel 3041: 	    &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89      albertel 3042: 				    $udom,$uname);
1.301     albertel 3043: 
                   3044: 	    if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
                   3045: 					      $cnum,$udom,$uname)) {
                   3046: 		# need to figure out if should be in queue.
                   3047: 		my %record =  
                   3048: 		    &Apache::lonnet::restore($symb,$env{'request.course.id'},
                   3049: 					     $udom,$uname);
                   3050: 		my $all_graded = 1;
                   3051: 		my $none_graded = 1;
                   3052: 		foreach my $part (@parts) {
                   3053: 		    if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
                   3054: 			$all_graded = 0;
                   3055: 		    } else {
                   3056: 			$none_graded = 0;
                   3057: 		    }
                   3058: 		}
                   3059: 
                   3060: 		if ($all_graded || $none_graded) {
                   3061: 		    &Apache::bridgetask::remove_from_queue('gradingqueue',
                   3062: 							   $symb,$cdom,$cnum,
                   3063: 							   $udom,$uname);
                   3064: 		}
                   3065: 	    }
                   3066: 
1.126     ng       3067: 	    $result.='<tr bgcolor="#ffffde"><td align="right">&nbsp;'.$updateCtr.'&nbsp;</td>'.$line;
                   3068: 	    $updateCtr++;
1.93      albertel 3069: 	} else {
1.126     ng       3070: 	    $noupdate.='<tr bgcolor="#ffffde"><td align="right">&nbsp;'.$noupdateCtr.'&nbsp;</td>'.$line;
                   3071: 	    $noupdateCtr++;
1.44      ng       3072: 	}
1.269     raeburn  3073:         if ($aggregateflag) {
                   3074:             &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301     albertel 3075: 				  $cdom,$cnum);
1.269     raeburn  3076:         }
1.93      albertel 3077:     }
                   3078:     if ($noupdate) {
1.126     ng       3079: #	my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
                   3080: 	my $numcols=scalar(@partid)*4+2;
1.204     albertel 3081: 	$result .= '<tr bgcolor="#ffffff"><td align="center" colspan="'.$numcols.'">No Changes Occurred For the Students Below</td></tr><tr bgcolor="#ffffde">'.$noupdate;
1.44      ng       3082:     }
1.72      ng       3083:     $result .= '</table></td></tr></table>'."\n".
                   3084: 	&show_grading_menu_form ($symb,$url);
1.125     ng       3085:     my $msg = '<br /><b>Number of records updated = '.$rec_update.
1.44      ng       3086: 	' for '.$count.' student'.($count <= 1 ? '' : 's').'.</b><br />'.
1.257     albertel 3087: 	'<b>Total number of students = '.$env{'form.total'}.'</b><br />';
1.44      ng       3088:     return $title.$msg.$result;
1.5       albertel 3089: }
1.54      albertel 3090: 
                   3091: sub split_part_type {
                   3092:     my ($partstr) = @_;
                   3093:     my ($temp,@allparts)=split(/_/,$partstr);
                   3094:     my $type=pop(@allparts);
                   3095:     my $part=join('.',@allparts);
                   3096:     return ($part,$type);
                   3097: }
                   3098: 
1.44      ng       3099: #------------- end of section for handling grading by section/class ---------
                   3100: #
                   3101: #----------------------------------------------------------------------------
                   3102: 
1.5       albertel 3103: 
1.44      ng       3104: #----------------------------------------------------------------------------
                   3105: #
                   3106: #-------------------------- Next few routines handles grading by csv upload
                   3107: #
                   3108: #--- Javascript to handle csv upload
1.27      albertel 3109: sub csvupload_javascript_reverse_associate {
1.246     albertel 3110:     my $error1=&mt('You need to specify the username or ID');
                   3111:     my $error2=&mt('You need to specify at least one grading field');
1.27      albertel 3112:   return(<<ENDPICK);
                   3113:   function verify(vf) {
                   3114:     var foundsomething=0;
                   3115:     var founduname=0;
1.243     albertel 3116:     var foundID=0;
1.27      albertel 3117:     for (i=0;i<=vf.nfields.value;i++) {
                   3118:       tw=eval('vf.f'+i+'.selectedIndex');
1.243     albertel 3119:       if (i==0 && tw!=0) { foundID=1; }
                   3120:       if (i==1 && tw!=0) { founduname=1; }
                   3121:       if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27      albertel 3122:     }
1.246     albertel 3123:     if (founduname==0 && foundID==0) {
                   3124: 	alert('$error1');
                   3125: 	return;
1.27      albertel 3126:     }
                   3127:     if (foundsomething==0) {
1.246     albertel 3128: 	alert('$error2');
                   3129: 	return;
1.27      albertel 3130:     }
                   3131:     vf.submit();
                   3132:   }
                   3133:   function flip(vf,tf) {
                   3134:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   3135:     var i;
                   3136:     for (i=0;i<=vf.nfields.value;i++) {
                   3137:       //can not pick the same destination field for both name and domain
                   3138:       if (((i ==0)||(i ==1)) && 
                   3139:           ((tf==0)||(tf==1)) && 
                   3140:           (i!=tf) &&
                   3141:           (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   3142:         eval('vf.f'+i+'.selectedIndex=0;')
                   3143:       }
                   3144:     }
                   3145:   }
                   3146: ENDPICK
                   3147: }
                   3148: 
                   3149: sub csvupload_javascript_forward_associate {
1.246     albertel 3150:     my $error1=&mt('You need to specify the username or ID');
                   3151:     my $error2=&mt('You need to specify at least one grading field');
1.27      albertel 3152:   return(<<ENDPICK);
                   3153:   function verify(vf) {
                   3154:     var foundsomething=0;
                   3155:     var founduname=0;
1.243     albertel 3156:     var foundID=0;
1.27      albertel 3157:     for (i=0;i<=vf.nfields.value;i++) {
                   3158:       tw=eval('vf.f'+i+'.selectedIndex');
1.243     albertel 3159:       if (tw==1) { foundID=1; }
                   3160:       if (tw==2) { founduname=1; }
                   3161:       if (tw>3) { foundsomething=1; }
1.27      albertel 3162:     }
1.246     albertel 3163:     if (founduname==0 && foundID==0) {
                   3164: 	alert('$error1');
                   3165: 	return;
1.27      albertel 3166:     }
                   3167:     if (foundsomething==0) {
1.246     albertel 3168: 	alert('$error2');
                   3169: 	return;
1.27      albertel 3170:     }
                   3171:     vf.submit();
                   3172:   }
                   3173:   function flip(vf,tf) {
                   3174:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   3175:     var i;
                   3176:     //can not pick the same destination field twice
                   3177:     for (i=0;i<=vf.nfields.value;i++) {
                   3178:       if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   3179:         eval('vf.f'+i+'.selectedIndex=0;')
                   3180:       }
                   3181:     }
                   3182:   }
                   3183: ENDPICK
                   3184: }
                   3185: 
1.26      albertel 3186: sub csvuploadmap_header {
1.41      ng       3187:     my ($request,$symb,$url,$datatoken,$distotal)= @_;
                   3188:     my $javascript;
1.257     albertel 3189:     if ($env{'form.upfile_associate'} eq 'reverse') {
1.41      ng       3190: 	$javascript=&csvupload_javascript_reverse_associate();
                   3191:     } else {
                   3192: 	$javascript=&csvupload_javascript_forward_associate();
                   3193:     }
1.45      ng       3194: 
1.257     albertel 3195:     my ($result) = &showResourceInfo($url,$env{'form.probTitle'});
                   3196:     my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245     albertel 3197:     my $ignore=&mt('Ignore First Line');
1.41      ng       3198:     $request->print(<<ENDPICK);
1.26      albertel 3199: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.45      ng       3200: <h3><font color="#339933">Uploading Class Grades</font></h3>
                   3201: $result
1.26      albertel 3202: <hr>
                   3203: <h3>Identify fields</h3>
                   3204: Total number of records found in file: $distotal <hr />
                   3205: Enter as many fields as you can. The system will inform you and bring you back
                   3206: to this page if the data selected is insufficient to run your class.<hr />
                   3207: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245     albertel 3208: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26      albertel 3209: <input type="hidden" name="associate"  value="" />
                   3210: <input type="hidden" name="phase"      value="three" />
                   3211: <input type="hidden" name="datatoken"  value="$datatoken" />
1.257     albertel 3212: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
                   3213: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26      albertel 3214: <input type="hidden" name="upfile_associate" 
1.257     albertel 3215:                                        value="$env{'form.upfile_associate'}" />
1.26      albertel 3216: <input type="hidden" name="symb"       value="$symb" />
                   3217: <input type="hidden" name="url"        value="$url" />
1.257     albertel 3218: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
                   3219: <input type="hidden" name="probTitle"  value="$env{'form.probTitle'}" />
1.246     albertel 3220: <input type="hidden" name="command"    value="csvuploadoptions" />
1.26      albertel 3221: <hr />
                   3222: <script type="text/javascript" language="Javascript">
                   3223: $javascript
                   3224: </script>
                   3225: ENDPICK
1.118     ng       3226:     return '';
1.26      albertel 3227: 
                   3228: }
                   3229: 
                   3230: sub csvupload_fields {
1.146     albertel 3231:     my ($url,$symb) = @_;
                   3232:     my (@parts) = &getpartlist($url,$symb);
1.243     albertel 3233:     my @fields=(['ID','Student ID'],
                   3234: 		['username','Student Username'],
                   3235: 		['domain','Student Domain']);
1.41      ng       3236:     foreach my $part (sort(@parts)) {
                   3237: 	my @datum;
                   3238: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
                   3239: 	my $name=$part;
                   3240: 	if  (!$display) { $display = $name; }
                   3241: 	@datum=($name,$display);
1.244     albertel 3242: 	if ($name=~/^stores_(.*)_awarded/) {
                   3243: 	    push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
                   3244: 	}
1.41      ng       3245: 	push(@fields,\@datum);
                   3246:     }
                   3247:     return (@fields);
1.26      albertel 3248: }
                   3249: 
                   3250: sub csvuploadmap_footer {
1.41      ng       3251:     my ($request,$i,$keyfields) =@_;
                   3252:     $request->print(<<ENDPICK);
1.26      albertel 3253: </table>
                   3254: <input type="hidden" name="nfields" value="$i" />
                   3255: <input type="hidden" name="keyfields" value="$keyfields" />
                   3256: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
                   3257: </form>
                   3258: ENDPICK
                   3259: }
                   3260: 
1.283     albertel 3261: sub checkforfile_js {
1.86      ng       3262:     my $result =<<CSVFORMJS;
                   3263: <script type="text/javascript" language="javascript">
                   3264:     function checkUpload(formname) {
                   3265: 	if (formname.upfile.value == "") {
                   3266: 	    alert("Please use the browse button to select a file from your local directory.");
                   3267: 	    return false;
                   3268: 	}
                   3269: 	formname.submit();
                   3270:     }
                   3271:     </script>
                   3272: CSVFORMJS
1.283     albertel 3273:     return $result;
                   3274: }
                   3275: 
                   3276: sub upcsvScores_form {
                   3277:     my ($request) = shift;
                   3278:     my ($symb,$url)=&get_symb_and_url($request);
                   3279:     if (!$symb) {return '';}
                   3280:     my $result=&checkforfile_js();
1.257     albertel 3281:     $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
                   3282:     my ($table) = &showResourceInfo($url,$env{'form.probTitle'});
1.118     ng       3283:     $result.=$table;
1.86      ng       3284:     $result.='<br /><table width=100% border=0><tr><td bgcolor="#777777">'."\n";
                   3285:     $result.='<table width=100% border=0><tr bgcolor="#e6ffff"><td>'."\n";
1.118     ng       3286:     $result.='&nbsp;<b>Specify a file containing the class scores for current resource'.
1.86      ng       3287: 	'.</b></td></tr>'."\n";
                   3288:     $result.='<tr bgcolor=#ffffe6><td>'."\n";
                   3289:     my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245     albertel 3290:     my $ignore=&mt('Ignore First Line');
1.86      ng       3291:     $result.=<<ENDUPFORM;
1.106     albertel 3292: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86      ng       3293: <input type="hidden" name="symb" value="$symb" />
                   3294: <input type="hidden" name="url" value="$url" />
                   3295: <input type="hidden" name="command" value="csvuploadmap" />
1.257     albertel 3296: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
                   3297: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
1.86      ng       3298: $upfile_select
                   3299: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scores" />
1.283     albertel 3300: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86      ng       3301: </form>
                   3302: ENDUPFORM
                   3303:     $result.='</td></tr></table>'."\n";
                   3304:     $result.='</td></tr></table><br /><br />'."\n";
                   3305:     $result.=&show_grading_menu_form($symb,$url);
                   3306:     return $result;
                   3307: }
                   3308: 
                   3309: 
1.26      albertel 3310: sub csvuploadmap {
1.41      ng       3311:     my ($request)= @_;
                   3312:     my ($symb,$url)=&get_symb_and_url($request);
                   3313:     if (!$symb) {return '';}
1.72      ng       3314: 
1.41      ng       3315:     my $datatoken;
1.257     albertel 3316:     if (!$env{'form.datatoken'}) {
1.41      ng       3317: 	$datatoken=&Apache::loncommon::upfile_store($request);
1.26      albertel 3318:     } else {
1.257     albertel 3319: 	$datatoken=$env{'form.datatoken'};
1.41      ng       3320: 	&Apache::loncommon::load_tmp_file($request);
1.26      albertel 3321:     }
1.41      ng       3322:     my @records=&Apache::loncommon::upfile_record_sep();
1.257     albertel 3323:     if ($env{'form.noFirstLine'}) { shift(@records); }
1.41      ng       3324:     &csvuploadmap_header($request,$symb,$url,$datatoken,$#records+1);
                   3325:     my ($i,$keyfields);
                   3326:     if (@records) {
1.146     albertel 3327: 	my @fields=&csvupload_fields($url,$symb);
1.45      ng       3328: 
1.257     albertel 3329: 	if ($env{'form.upfile_associate'} eq 'reverse') {	
1.41      ng       3330: 	    &Apache::loncommon::csv_print_samples($request,\@records);
                   3331: 	    $i=&Apache::loncommon::csv_print_select_table($request,\@records,
                   3332: 							  \@fields);
                   3333: 	    foreach (@fields) { $keyfields.=$_->[0].','; }
                   3334: 	    chop($keyfields);
                   3335: 	} else {
                   3336: 	    unshift(@fields,['none','']);
                   3337: 	    $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
                   3338: 							    \@fields);
1.309     albertel 3339: 	    foreach my $rec (@records) {
                   3340: 		my %temp = &Apache::loncommon::record_sep($rec);
                   3341: 		if (%temp) {
                   3342: 		    $keyfields=join(',',sort(keys(%temp)));
                   3343: 		    last;
                   3344: 		}
                   3345: 	    }
1.41      ng       3346: 	}
                   3347:     }
                   3348:     &csvuploadmap_footer($request,$i,$keyfields);
1.72      ng       3349:     $request->print(&show_grading_menu_form($symb,$url));
                   3350: 
1.41      ng       3351:     return '';
1.27      albertel 3352: }
                   3353: 
1.246     albertel 3354: sub csvuploadoptions {
1.41      ng       3355:     my ($request)= @_;
                   3356:     my ($symb,$url)=&get_symb_and_url($request);
1.257     albertel 3357:     my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246     albertel 3358:     my $ignore=&mt('Ignore First Line');
                   3359:     $request->print(<<ENDPICK);
                   3360: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
                   3361: <h3><font color="#339933">Uploading Class Grade Options</font></h3>
                   3362: <input type="hidden" name="command"    value="csvuploadassign" />
1.302     albertel 3363: <!--
1.246     albertel 3364: <p>
                   3365: <label>
                   3366:    <input type="checkbox" name="show_full_results" />
                   3367:    Show a table of all changes
                   3368: </label>
                   3369: </p>
1.302     albertel 3370: -->
1.246     albertel 3371: <p>
                   3372: <label>
                   3373:    <input type="checkbox" name="overwite_scores" checked="checked" />
                   3374:    Overwrite any existing score
                   3375: </label>
                   3376: </p>
                   3377: ENDPICK
                   3378:     my %fields=&get_fields();
                   3379:     if (!defined($fields{'domain'})) {
1.257     albertel 3380: 	my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246     albertel 3381: 	$request->print("\n<p> Users are in domain: ".$domform."</p>\n");
                   3382:     }
1.257     albertel 3383:     foreach my $key (sort(keys(%env))) {
1.246     albertel 3384: 	if ($key !~ /^form\.(.*)$/) { next; }
                   3385: 	my $cleankey=$1;
                   3386: 	if ($cleankey eq 'command') { next; }
                   3387: 	$request->print('<input type="hidden" name="'.$cleankey.
1.257     albertel 3388: 			'"  value="'.$env{$key}.'" />'."\n");
1.246     albertel 3389:     }
                   3390:     # FIXME do a check for any duplicated user ids...
                   3391:     # FIXME do a check for any invalid user ids?...
1.290     albertel 3392:     $request->print('<input type="submit" value="Assign Grades" /><br />
                   3393: <hr /></form>'."\n");
1.246     albertel 3394:     $request->print(&show_grading_menu_form($symb,$url));
                   3395:     return '';
                   3396: }
                   3397: 
                   3398: sub get_fields {
                   3399:     my %fields;
1.257     albertel 3400:     my @keyfields = split(/\,/,$env{'form.keyfields'});
                   3401:     for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
                   3402: 	if ($env{'form.upfile_associate'} eq 'reverse') {
                   3403: 	    if ($env{'form.f'.$i} ne 'none') {
                   3404: 		$fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41      ng       3405: 	    }
                   3406: 	} else {
1.257     albertel 3407: 	    if ($env{'form.f'.$i} ne 'none') {
                   3408: 		$fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41      ng       3409: 	    }
                   3410: 	}
1.27      albertel 3411:     }
1.246     albertel 3412:     return %fields;
                   3413: }
                   3414: 
                   3415: sub csvuploadassign {
                   3416:     my ($request)= @_;
                   3417:     my ($symb,$url)=&get_symb_and_url($request);
                   3418:     if (!$symb) {return '';}
                   3419:     &Apache::loncommon::load_tmp_file($request);
                   3420:     my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257     albertel 3421:     if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246     albertel 3422:     my %fields=&get_fields();
1.41      ng       3423:     $request->print('<h3>Assigning Grades</h3>');
1.257     albertel 3424:     my $courseid=$env{'request.course.id'};
1.97      albertel 3425:     my ($classlist) = &getclasslist('all',0);
1.106     albertel 3426:     my @notallowed;
1.41      ng       3427:     my @skipped;
                   3428:     my $countdone=0;
                   3429:     foreach my $grade (@gradedata) {
                   3430: 	my %entries=&Apache::loncommon::record_sep($grade);
1.246     albertel 3431: 	my $domain;
                   3432: 	if ($entries{$fields{'domain'}}) {
                   3433: 	    $domain=$entries{$fields{'domain'}};
                   3434: 	} else {
1.257     albertel 3435: 	    $domain=$env{'form.default_domain'};
1.246     albertel 3436: 	}
1.243     albertel 3437: 	$domain=~s/\s//g;
1.41      ng       3438: 	my $username=$entries{$fields{'username'}};
1.160     albertel 3439: 	$username=~s/\s//g;
1.243     albertel 3440: 	if (!$username) {
                   3441: 	    my $id=$entries{$fields{'ID'}};
1.247     albertel 3442: 	    $id=~s/\s//g;
1.243     albertel 3443: 	    my %ids=&Apache::lonnet::idget($domain,$id);
                   3444: 	    $username=$ids{$id};
                   3445: 	}
1.41      ng       3446: 	if (!exists($$classlist{"$username:$domain"})) {
1.247     albertel 3447: 	    my $id=$entries{$fields{'ID'}};
                   3448: 	    $id=~s/\s//g;
                   3449: 	    if ($id) {
                   3450: 		push(@skipped,"$id:$domain");
                   3451: 	    } else {
                   3452: 		push(@skipped,"$username:$domain");
                   3453: 	    }
1.41      ng       3454: 	    next;
                   3455: 	}
1.108     albertel 3456: 	my $usec=$classlist->{"$username:$domain"}[5];
1.106     albertel 3457: 	if (!&canmodify($usec)) {
                   3458: 	    push(@notallowed,"$username:$domain");
                   3459: 	    next;
                   3460: 	}
1.244     albertel 3461: 	my %points;
1.41      ng       3462: 	my %grades;
                   3463: 	foreach my $dest (keys(%fields)) {
1.244     albertel 3464: 	    if ($dest eq 'ID' || $dest eq 'username' ||
                   3465: 		$dest eq 'domain') { next; }
                   3466: 	    if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
                   3467: 	    if ($dest=~/stores_(.*)_points/) {
                   3468: 		my $part=$1;
                   3469: 		my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
                   3470: 					      $symb,$domain,$username);
1.247     albertel 3471: 		$entries{$fields{$dest}}=~s/\s//g;
1.244     albertel 3472: 		my $pcr=$entries{$fields{$dest}} / $wgt;
                   3473: 		my $award='correct_by_override';
                   3474: 		$grades{"resource.$part.awarded"}=$pcr;
                   3475: 		$grades{"resource.$part.solved"}=$award;
                   3476: 		$points{$part}=1;
                   3477: 	    } else {
                   3478: 		if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
                   3479: 		if ($dest=~/stores_(.*)_solved/)  { if ($points{$1}) {next;} }
                   3480: 		my $store_key=$dest;
                   3481: 		$store_key=~s/^stores/resource/;
                   3482: 		$store_key=~s/_/\./g;
                   3483: 		$grades{$store_key}=$entries{$fields{$dest}};
                   3484: 	    }
1.41      ng       3485: 	}
1.244     albertel 3486: 	if (! %grades) { push(@skipped,"$username:$domain no data to store"); }
1.257     albertel 3487: 	$grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
1.244     albertel 3488: #	&Apache::lonnet::logthis(" storing ".(join('-',%grades)));
1.302     albertel 3489: 	my $result=&Apache::lonnet::cstore(\%grades,$symb,
                   3490: 					   $env{'request.course.id'},
                   3491: 					   $domain,$username);
                   3492: 	if ($result eq 'ok') {
                   3493: 	    $request->print('.');
                   3494: 	} else {
                   3495: 	    $request->print("<p>
                   3496:                               <font color='red'>
                   3497:                                  Failed to store student $username\@$domain.
                   3498:                                  Message when trying to store was ($result)
                   3499:                               </font>
                   3500:                              </p>" );
                   3501: 	}
1.41      ng       3502: 	$request->rflush();
                   3503: 	$countdone++;
                   3504:     }
                   3505:     $request->print("<br />Stored $countdone students\n");
                   3506:     if (@skipped) {
1.106     albertel 3507: 	$request->print('<p<font size="+1"><b>Skipped Students</b></font></p>');
                   3508: 	foreach my $student (@skipped) { $request->print("$student<br />\n"); }
                   3509:     }
                   3510:     if (@notallowed) {
                   3511: 	$request->print('<p><font size="+1" color="red"><b>Students Not Allowed to Modify</b></font></p>');
                   3512: 	foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
1.41      ng       3513:     }
1.106     albertel 3514:     $request->print("<br />\n");
1.41      ng       3515:     $request->print(&show_grading_menu_form($symb,$url));
                   3516:     return '';
1.26      albertel 3517: }
1.44      ng       3518: #------------- end of section for handling csv file upload ---------
                   3519: #
                   3520: #-------------------------------------------------------------------
                   3521: #
1.122     ng       3522: #-------------- Next few routines handle grading by page/sequence
1.72      ng       3523: #
                   3524: #--- Select a page/sequence and a student to grade
1.68      ng       3525: sub pickStudentPage {
                   3526:     my ($request) = shift;
                   3527: 
                   3528:     $request->print(<<LISTJAVASCRIPT);
                   3529: <script type="text/javascript" language="javascript">
                   3530: 
                   3531: function checkPickOne(formname) {
1.76      ng       3532:     if (radioSelection(formname.student) == null) {
1.68      ng       3533: 	alert("Please select the student you wish to grade.");
                   3534: 	return;
                   3535:     }
1.125     ng       3536:     ptr = pullDownSelection(formname.selectpage);
                   3537:     formname.page.value = formname["page"+ptr].value;
                   3538:     formname.title.value = formname["title"+ptr].value;
1.68      ng       3539:     formname.submit();
                   3540: }
                   3541: 
                   3542: </script>
                   3543: LISTJAVASCRIPT
1.118     ng       3544:     &commonJSfunctions($request);
1.72      ng       3545:     my ($symb,$url) = &get_symb_and_url($request);
1.257     albertel 3546:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   3547:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   3548:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68      ng       3549: 
                   3550:     my $result='<h3><font color="#339933">&nbsp;'.
                   3551: 	'Manual Grading by Page or Sequence</font></h3>';
                   3552: 
1.80      ng       3553:     $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.70      ng       3554:     $result.='&nbsp;<b>Problems from:</b> <select name="selectpage">'."\n";
1.74      albertel 3555:     my ($titles,$symbx) = &getSymbMap($request);
1.137     albertel 3556:     my ($curpage) =&Apache::lonnet::decode_symb($symb); 
                   3557: #    my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb); 
                   3558: #    my $type=($curpage =~ /\.(page|sequence)/);
1.70      ng       3559:     my $ctr=0;
1.68      ng       3560:     foreach (@$titles) {
                   3561: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.70      ng       3562: 	$result.='<option value="'.$ctr.'" '.
1.71      ng       3563: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="on"' : '').
                   3564: 	    '>'.$showtitle.'</option>'."\n";
1.70      ng       3565: 	$ctr++;
1.68      ng       3566:     }
                   3567:     $result.= '</select>'."<br>\n";
1.70      ng       3568:     $ctr=0;
                   3569:     foreach (@$titles) {
                   3570: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   3571: 	$result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
                   3572: 	$result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
                   3573: 	$ctr++;
                   3574:     }
1.72      ng       3575:     $result.='<input type="hidden" name="page" />'."\n".
                   3576: 	'<input type="hidden" name="title" />'."\n";
1.68      ng       3577: 
1.288     albertel 3578:     $result.='&nbsp;<b>View Problems Text: </b><label><input type="radio" name="vProb" value="no" checked="on" /> no </label>'."\n".
                   3579: 	'<label><input type="radio" name="vProb" value="yes" /> yes </label>'."<br />\n";
1.72      ng       3580: 
1.71      ng       3581:     $result.='&nbsp;<b>Submission Details: </b>'.
1.288     albertel 3582: 	'<label><input type="radio" name="lastSub" value="none" /> none</label>'."\n".
                   3583: 	'<label><input type="radio" name="lastSub" value="datesub" checked /> by dates and submissions</label>'."\n".
                   3584: 	'<label><input type="radio" name="lastSub" value="all" /> all details</label>'."\n";
1.72      ng       3585: 
1.68      ng       3586:     $result.='<input type="hidden" name="section"     value="'.$getsec.'" />'."\n".
1.257     albertel 3587: 	'<input type="hidden" name="Status"  value="'.$env{'form.Status'}.'" />'."\n".
1.72      ng       3588: 	'<input type="hidden" name="command" value="displayPage" />'."\n".
                   3589: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
1.80      ng       3590: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
1.257     albertel 3591: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72      ng       3592: 
1.80      ng       3593:     $result.='&nbsp;<input type="button" '.
1.126     ng       3594: 	'onClick="javascript:checkPickOne(this.form);"value="Next->" /><br />'."\n";
1.72      ng       3595: 
1.68      ng       3596:     $request->print($result);
                   3597: 
1.126     ng       3598:     my $studentTable.='&nbsp;<b>Select a student you wish to grade and then click on the Next button.</b><br>'.
1.68      ng       3599: 	'<table border="0"><tr><td bgcolor="#777777">'.
                   3600: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.126     ng       3601: 	'<td align="right">&nbsp;<b>No.</b></td>'.
1.129     ng       3602: 	'<td>'.&nameUserString('header').'</td>'.
1.126     ng       3603: 	'<td align="right">&nbsp;<b>No.</b></td>'.
1.129     ng       3604: 	'<td>'.&nameUserString('header').'</td></tr>';
1.68      ng       3605:  
1.76      ng       3606:     my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68      ng       3607:     my $ptr = 1;
1.294     albertel 3608:     foreach my $student (sort 
                   3609: 			 {
                   3610: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   3611: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   3612: 			     }
                   3613: 			     return $a cmp $b;
                   3614: 			 } (keys(%$fullname))) {
1.68      ng       3615: 	my ($uname,$udom) = split(/:/,$student);
1.126     ng       3616: 	$studentTable.=($ptr%2 == 1 ? '<tr bgcolor="#ffffe6">' : '</td>');
                   3617: 	$studentTable.='<td align="right">'.$ptr.'&nbsp;</td>';
1.288     albertel 3618: 	$studentTable.='<td>&nbsp;<label><input type="radio" name="student" value="'.$student.'" /> '
                   3619: 	    .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.126     ng       3620: 	$studentTable.=($ptr%2 == 0 ? '</td></tr>' : '');
1.68      ng       3621: 	$ptr++;
                   3622:     }
1.126     ng       3623:     $studentTable.='</td><td>&nbsp;</td><td>&nbsp;' if ($ptr%2 == 0);
1.68      ng       3624:     $studentTable.='</td></tr></table></td></tr></table>'."\n";
1.126     ng       3625:     $studentTable.='<input type="button" '.
                   3626: 	'onClick="javascript:checkPickOne(this.form);"value="Next->" /></form>'."\n";
1.68      ng       3627: 
                   3628:     $studentTable.=&show_grading_menu_form($symb,$url);
                   3629:     $request->print($studentTable);
                   3630: 
                   3631:     return '';
                   3632: }
                   3633: 
                   3634: sub getSymbMap {
1.74      albertel 3635:     my ($request) = @_;
1.132     bowersj2 3636:     my $navmap = Apache::lonnavmaps::navmap->new();
1.68      ng       3637: 
                   3638:     my %symbx = ();
                   3639:     my @titles = ();
1.117     bowersj2 3640:     my $minder = 0;
                   3641: 
                   3642:     # Gather every sequence that has problems.
1.240     albertel 3643:     my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
                   3644: 					       1,0,1);
1.117     bowersj2 3645:     for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241     albertel 3646: 	if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.117     bowersj2 3647: 	    my $title = $minder.'.'.$sequence->compTitle();
                   3648: 	    push @titles, $title; # minder in case two titles are identical
                   3649: 	    $symbx{$title} = $sequence->symb();
                   3650: 	    $minder++;
1.241     albertel 3651: 	}
1.68      ng       3652:     }
                   3653:     return \@titles,\%symbx;
                   3654: }
                   3655: 
1.72      ng       3656: #
                   3657: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68      ng       3658: sub displayPage {
                   3659:     my ($request) = shift;
                   3660: 
1.72      ng       3661:     my ($symb,$url) = &get_symb_and_url($request);
1.257     albertel 3662:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   3663:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   3664:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
                   3665:     my $pageTitle = $env{'form.page'};
1.103     albertel 3666:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257     albertel 3667:     my ($uname,$udom) = split(/:/,$env{'form.student'});
                   3668:     my $usec=$classlist->{$env{'form.student'}}[5];
1.168     albertel 3669: 
                   3670:     #need to make sure we have the correct data for later EXT calls, 
                   3671:     #thus invalidate the cache
                   3672:     &Apache::lonnet::devalidatecourseresdata(
1.257     albertel 3673:                  $env{'course.'.$env{'request.course.id'}.'.num'},
                   3674:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168     albertel 3675:     &Apache::lonnet::clear_EXT_cache_status();
                   3676: 
1.103     albertel 3677:     if (!&canview($usec)) {
1.257     albertel 3678: 	$request->print('<font color="red">Unable to view requested student.('.$env{'form.student'}.')</font>');
1.103     albertel 3679: 	$request->print(&show_grading_menu_form($symb,$url));
                   3680: 	return;
                   3681:     }
1.257     albertel 3682:     my $result='<h3><font color="#339933">&nbsp;'.$env{'form.title'}.'</font></h3>';
                   3683:     $result.='<h3>&nbsp;Student: '.&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom).
1.129     ng       3684: 	'</h3>'."\n";
1.71      ng       3685:     &sub_page_js($request);
                   3686:     $request->print($result);
                   3687: 
1.132     bowersj2 3688:     my $navmap = Apache::lonnavmaps::navmap->new();
1.257     albertel 3689:     my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68      ng       3690:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288     albertel 3691:     if (!$map) {
                   3692: 	$request->print('<font color="red">Unable to view requested sequence. ('.$resUrl.')</font>');
                   3693: 	$request->print(&show_grading_menu_form($symb,$url));
                   3694: 	return; 
                   3695:     }
1.68      ng       3696:     my $iterator = $navmap->getIterator($map->map_start(),
                   3697: 					$map->map_finish());
                   3698: 
1.71      ng       3699:     my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72      ng       3700: 	'<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257     albertel 3701: 	'<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
                   3702: 	'<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72      ng       3703: 	'<input type="hidden" name="page"    value="'.$pageTitle.'" />'."\n".
1.257     albertel 3704: 	'<input type="hidden" name="title"   value="'.$env{'form.title'}.'" />'."\n".
1.72      ng       3705: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
                   3706: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
1.125     ng       3707: 	'<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257     albertel 3708: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71      ng       3709: 
                   3710:     my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
                   3711: 	'/check.gif" height="16" border="0" />';
                   3712: 
1.118     ng       3713:     $studentTable.='&nbsp;<b>Note:</b> Problems graded correct by the computer are marked with a '.$checkIcon.
                   3714: 	' symbol.'."\n".
1.71      ng       3715: 	'<table border="0"><tr><td bgcolor="#777777">'.
                   3716: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.118     ng       3717: 	'<td align="center"><b>&nbsp;Prob.&nbsp;</b></td>'.
1.257     albertel 3718: 	'<td><b>&nbsp;'.($env{'form.vProb'} eq 'no' ? 'Title' : 'Problem Text').'/Grade</b></td></tr>';
1.71      ng       3719: 
1.196     albertel 3720:     my ($depth,$question,$prob) = (1,1,1);
1.68      ng       3721:     $iterator->next(); # skip the first BEGIN_MAP
                   3722:     my $curRes = $iterator->next(); # for "current resource"
1.101     albertel 3723:     while ($depth > 0) {
1.68      ng       3724:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 3725:         if($curRes == $iterator->END_MAP) { $depth--; }
1.68      ng       3726: 
1.235     albertel 3727:         if (ref($curRes) && $curRes->is_problem() && !$curRes->randomout) {
1.91      albertel 3728: 	    my $parts = $curRes->parts();
1.68      ng       3729:             my $title = $curRes->compTitle();
1.71      ng       3730: 	    my $symbx = $curRes->symb();
1.196     albertel 3731: 	    $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.71      ng       3732: 		(scalar(@{$parts}) == 1 ? '' : '<br>('.scalar(@{$parts}).'&nbsp;parts)').'</td>';
                   3733: 	    $studentTable.='<td valign="top">';
1.257     albertel 3734: 	    if ($env{'form.vProb'} eq 'yes' ) {
1.144     albertel 3735: 		$studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
                   3736: 					     undef,'both');
1.71      ng       3737: 	    } else {
1.257     albertel 3738: 		my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'});
1.80      ng       3739: 		$companswer =~ s|<form(.*?)>||g;
                   3740: 		$companswer =~ s|</form>||g;
1.71      ng       3741: #		while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116     ng       3742: #		    $companswer =~ s/$1/ /ms;
                   3743: #		    $request->print('match='.$1."<br>\n");
1.71      ng       3744: #		}
1.116     ng       3745: #		$companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.71      ng       3746: 		$studentTable.='&nbsp;<b>'.$title.'</b>&nbsp;<br>&nbsp;<b>Correct answer:</b><br>'.$companswer;
                   3747: 	    }
                   3748: 
1.257     albertel 3749: 	    my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125     ng       3750: 
1.257     albertel 3751: 	    if ($env{'form.lastSub'} eq 'datesub') {
1.71      ng       3752: 		if ($record{'version'} eq '') {
                   3753: 		    $studentTable.='<br />&nbsp;<font color="red">No recorded submission for this problem</font><br />';
                   3754: 		} else {
1.116     ng       3755: 		    my %responseType = ();
                   3756: 		    foreach my $partid (@{$parts}) {
1.147     albertel 3757: 			my @responseIds =$curRes->responseIds($partid);
                   3758: 			my @responseType =$curRes->responseType($partid);
                   3759: 			my %responseIds;
                   3760: 			for (my $i=0;$i<=$#responseIds;$i++) {
                   3761: 			    $responseIds{$responseIds[$i]}=$responseType[$i];
                   3762: 			}
                   3763: 			$responseType{$partid} = \%responseIds;
1.116     ng       3764: 		    }
1.148     albertel 3765: 		    $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147     albertel 3766: 
1.71      ng       3767: 		}
1.257     albertel 3768: 	    } elsif ($env{'form.lastSub'} eq 'all') {
                   3769: 		my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71      ng       3770: 		$studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257     albertel 3771: 									$env{'request.course.id'},
1.71      ng       3772: 									'','.submission');
                   3773:  
                   3774: 	    }
1.103     albertel 3775: 	    if (&canmodify($usec)) {
                   3776: 		foreach my $partid (@{$parts}) {
                   3777: 		    $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
                   3778: 		    $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
                   3779: 		    $question++;
                   3780: 		}
1.196     albertel 3781: 		$prob++;
1.71      ng       3782: 	    }
                   3783: 	    $studentTable.='</td></tr>';
1.68      ng       3784: 
1.103     albertel 3785: 	}
1.68      ng       3786:         $curRes = $iterator->next();
                   3787:     }
                   3788: 
1.71      ng       3789:     $studentTable.='</td></tr></table></td></tr></table>'."\n".
1.125     ng       3790: 	'<input type="button" value="Save" '.
1.71      ng       3791: 	'onClick="javascript:checkSubmitPage(this.form,'.$question.');" TARGET=_self />'.
                   3792: 	'</form>'."\n";
                   3793:     $studentTable.=&show_grading_menu_form($symb,$url);
                   3794:     $request->print($studentTable);
                   3795: 
                   3796:     return '';
1.119     ng       3797: }
                   3798: 
                   3799: sub displaySubByDates {
1.148     albertel 3800:     my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224     albertel 3801:     my $isCODE=0;
                   3802:     if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.119     ng       3803:     my $studentTable='<table border="0" width="100%"><tr><td bgcolor="#777777">'.
                   3804: 	'<table border="0" width="100%"><tr bgcolor="#e6ffff">'.
                   3805: 	'<td><b>Date/Time</b></td>'.
1.224     albertel 3806: 	($isCODE?'<td><b>CODE</b></td>':'').
1.119     ng       3807: 	'<td><b>Submission</b></td>'.
                   3808: 	'<td><b>Status&nbsp;</b></td></tr>';
                   3809:     my ($version);
                   3810:     my %mark;
1.148     albertel 3811:     my %orders;
1.119     ng       3812:     $mark{'correct_by_student'} = $checkIcon;
1.147     albertel 3813:     if (!exists($$record{'1:timestamp'})) {
                   3814: 	return '<br />&nbsp;<font color="red">Nothing submitted - no attempts</font><br />';
                   3815:     }
1.119     ng       3816:     for ($version=1;$version<=$$record{'version'};$version++) {
                   3817: 	my $timestamp = scalar(localtime($$record{$version.':timestamp'}));
                   3818: 	$studentTable.='<tr bgcolor="#ffffff" valign="top"><td>'.$timestamp.'</td>';
1.224     albertel 3819: 	if ($isCODE) {
                   3820: 	    $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
                   3821: 	}
1.119     ng       3822: 	my @versionKeys = split(/\:/,$$record{$version.':keys'});
                   3823: 	my @displaySub = ();
                   3824: 	foreach my $partid (@{$parts}) {
1.147     albertel 3825: 	    my @matchKey = sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys);
1.122     ng       3826: #	    next if ($$record{"$version:resource.$partid.solved"} eq '');
1.207     albertel 3827: 	    my $display_part=&get_display_part($partid,undef,$symb);
1.147     albertel 3828: 	    foreach my $matchKey (@matchKey) {
1.198     albertel 3829: 		if (exists($$record{$version.':'.$matchKey}) &&
                   3830: 		    $$record{$version.':'.$matchKey} ne '') {
1.147     albertel 3831: 		    my ($responseId)=($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/);
1.207     albertel 3832: 		    $displaySub[0].='<b>Part:</b>&nbsp;'.$display_part.'&nbsp;';
1.147     albertel 3833: 		    $displaySub[0].='<font color="#999999">(ID&nbsp;'.
1.207     albertel 3834: 			$responseId.')</font>&nbsp;<b>';
1.147     albertel 3835: 		    if ($$record{"$version:resource.$partid.tries"} eq '') {
                   3836: 			$displaySub[0].='Trial&nbsp;not&nbsp;counted';
                   3837: 		    } else {
                   3838: 			$displaySub[0].='Trial&nbsp;'.
                   3839: 			    $$record{"$version:resource.$partid.tries"};
                   3840: 		    }
                   3841: 		    my $responseType=$responseType->{$partid}->{$responseId};
1.148     albertel 3842: 		    if (!exists($orders{$partid})) { $orders{$partid}={}; }
                   3843: 		    if (!exists($orders{$partid}->{$responseId})) {
                   3844: 			$orders{$partid}->{$responseId}=
                   3845: 			    &get_order($partid,$responseId,$symb,$uname,$udom);
                   3846: 		    }
1.147     albertel 3847: 		    $displaySub[0].='</b>&nbsp; '.
1.148     albertel 3848: 			&cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:").'<br />';
1.147     albertel 3849: 		}
                   3850: 	    }
                   3851: 	    if (exists $$record{"$version:resource.$partid.award"}) {
1.207     albertel 3852: 		$displaySub[1].='<b>Part:</b>&nbsp;'.$display_part.' &nbsp;'.
1.147     albertel 3853: 		    lc($$record{"$version:resource.$partid.award"}).' '.
                   3854: 		    $mark{$$record{"$version:resource.$partid.solved"}}.
                   3855: 		    '<br />';
                   3856: 	    }
                   3857: 	    if (exists $$record{"$version:resource.$partid.regrader"}) {
                   3858: 		$displaySub[2].=$$record{"$version:resource.$partid.regrader"}.
1.207     albertel 3859: 		    ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147     albertel 3860: 	    }
                   3861: 	}
                   3862: 	# needed because old essay regrader has not parts info
                   3863: 	if (exists $$record{"$version:resource.regrader"}) {
                   3864: 	    $displaySub[2].=$$record{"$version:resource.regrader"};
                   3865: 	}
                   3866: 	$studentTable.='<td>'.$displaySub[0].'&nbsp;</td><td>'.$displaySub[1];
                   3867: 	if ($displaySub[2]) {
                   3868: 	    $studentTable.='Manually graded by '.$displaySub[2];
                   3869: 	}
                   3870: 	$studentTable.='&nbsp;</td></tr>';
                   3871:     
1.119     ng       3872:     }
                   3873:     $studentTable.='</table></td></tr></table>';
                   3874:     return $studentTable;
1.71      ng       3875: }
                   3876: 
                   3877: sub updateGradeByPage {
                   3878:     my ($request) = shift;
                   3879: 
1.257     albertel 3880:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   3881:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   3882:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
                   3883:     my $pageTitle = $env{'form.page'};
1.103     albertel 3884:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257     albertel 3885:     my ($uname,$udom) = split(/:/,$env{'form.student'});
                   3886:     my $usec=$classlist->{$env{'form.student'}}[5];
1.103     albertel 3887:     if (!&canmodify($usec)) {
1.257     albertel 3888: 	$request->print('<font color="red">Unable to modify requested student.('.$env{'form.student'}.'</font>');
                   3889: 	$request->print(&show_grading_menu_form($env{'form.symb'},$env{'form.url'}));
1.103     albertel 3890: 	return;
                   3891:     }
1.257     albertel 3892:     my $result='<h3><font color="#339933">&nbsp;'.$env{'form.title'}.'</font></h3>';
                   3893:     $result.='<h3>&nbsp;Student: '.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129     ng       3894: 	'</h3>'."\n";
1.70      ng       3895: 
1.68      ng       3896:     $request->print($result);
                   3897: 
1.132     bowersj2 3898:     my $navmap = Apache::lonnavmaps::navmap->new();
1.257     albertel 3899:     my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71      ng       3900:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288     albertel 3901:     if (!$map) {
                   3902: 	$request->print('<font color="red">Unable to grade requested sequence. ('.$resUrl.')</font>');
                   3903: 	my ($symb,$url)=&get_symb_and_url($request);
                   3904: 	$request->print(&show_grading_menu_form($symb,$url));
                   3905: 	return; 
                   3906:     }
1.71      ng       3907:     my $iterator = $navmap->getIterator($map->map_start(),
                   3908: 					$map->map_finish());
1.70      ng       3909: 
1.71      ng       3910:     my $studentTable='<table border="0"><tr><td bgcolor="#777777">'.
1.68      ng       3911: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.125     ng       3912: 	'<td align="center"><b>&nbsp;Prob.&nbsp;</b></td>'.
1.71      ng       3913: 	'<td><b>&nbsp;Title&nbsp;</b></td>'.
                   3914: 	'<td><b>&nbsp;Previous Score&nbsp;</b></td>'.
                   3915: 	'<td><b>&nbsp;New Score&nbsp;</b></td></tr>';
                   3916: 
                   3917:     $iterator->next(); # skip the first BEGIN_MAP
                   3918:     my $curRes = $iterator->next(); # for "current resource"
1.196     albertel 3919:     my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101     albertel 3920:     while ($depth > 0) {
1.71      ng       3921:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 3922:         if($curRes == $iterator->END_MAP) { $depth--; }
1.71      ng       3923: 
                   3924:         if (ref($curRes) && $curRes->is_problem() && !$curRes->randomout) {
1.91      albertel 3925: 	    my $parts = $curRes->parts();
1.71      ng       3926:             my $title = $curRes->compTitle();
                   3927: 	    my $symbx = $curRes->symb();
1.196     albertel 3928: 	    $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.71      ng       3929: 		(scalar(@{$parts}) == 1 ? '' : '<br>('.scalar(@{$parts}).'&nbsp;parts)').'</td>';
                   3930: 	    $studentTable.='<td valign="top">&nbsp;<b>'.$title.'</b>&nbsp;</td>';
                   3931: 
                   3932: 	    my %newrecord=();
                   3933: 	    my @displayPts=();
1.269     raeburn  3934:             my %aggregate = ();
                   3935:             my $aggregateflag = 0;
1.71      ng       3936: 	    foreach my $partid (@{$parts}) {
1.257     albertel 3937: 		my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
                   3938: 		my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71      ng       3939: 
1.257     albertel 3940: 		my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ? 
                   3941: 		    $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71      ng       3942: 		my $partial = $newpts/$wgt;
                   3943: 		my $score;
                   3944: 		if ($partial > 0) {
                   3945: 		    $score = 'correct_by_override';
1.125     ng       3946: 		} elsif ($newpts ne '') { #empty is taken as 0
1.71      ng       3947: 		    $score = 'incorrect_by_override';
                   3948: 		}
1.257     albertel 3949: 		my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125     ng       3950: 		if ($dropMenu eq 'excused') {
1.71      ng       3951: 		    $partial = '';
                   3952: 		    $score = 'excused';
1.125     ng       3953: 		} elsif ($dropMenu eq 'reset status'
1.257     albertel 3954: 			 && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125     ng       3955: 		    $newrecord{'resource.'.$partid.'.tries'} = 0;
                   3956: 		    $newrecord{'resource.'.$partid.'.solved'} = '';
                   3957: 		    $newrecord{'resource.'.$partid.'.award'} = '';
                   3958: 		    $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257     albertel 3959: 		    $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125     ng       3960: 		    $changeflag++;
                   3961: 		    $newpts = '';
1.269     raeburn  3962:                     
                   3963:                     my $aggtries =  $env{'form.aggtries'.$question.'_'.$partid};
                   3964:                     my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
                   3965:                     my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
                   3966:                     if ($aggtries > 0) {
                   3967:                         &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
                   3968:                         $aggregateflag = 1;
                   3969:                     }
1.71      ng       3970: 		}
1.207     albertel 3971: 		my $display_part=&get_display_part($partid,undef,
                   3972: 						   $curRes->symb());
1.257     albertel 3973: 		my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.207     albertel 3974: 		$displayPts[0].='&nbsp;<b>Part:</b> '.$display_part.' = '.
1.71      ng       3975: 		    (($oldstatus eq 'excused') ? 'excused' : $oldpts).
                   3976: 		    '&nbsp;<br>';
1.207     albertel 3977: 		$displayPts[1].='&nbsp;<b>Part:</b> '.$display_part.' = '.
1.125     ng       3978: 		     (($score eq 'excused') ? 'excused' : $newpts).
1.71      ng       3979: 		    '&nbsp;<br>';
                   3980: 
                   3981: 		$question++;
1.125     ng       3982: 		next if ($dropMenu eq 'reset status' || ($newpts == $oldpts && $score ne 'excused'));
                   3983: 
1.71      ng       3984: 		$newrecord{'resource.'.$partid.'.awarded'}  = $partial if $partial ne '';
1.125     ng       3985: 		$newrecord{'resource.'.$partid.'.solved'}   = $score if $score ne '';
1.257     albertel 3986: 		$newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125     ng       3987: 		    if (scalar(keys(%newrecord)) > 0);
1.71      ng       3988: 
                   3989: 		$changeflag++;
                   3990: 	    }
                   3991: 	    if (scalar(keys(%newrecord)) > 0) {
1.257     albertel 3992: 		&Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71      ng       3993: 					$udom,$uname);
                   3994: 	    }
1.269     raeburn  3995:             if ($aggregateflag) {
                   3996:                 &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
                   3997:                       $env{'course.'.$env{'request.course.id'}.'.domain'},
                   3998:                       $env{'course.'.$env{'request.course.id'}.'.num'});
                   3999:             }
1.125     ng       4000: 
1.71      ng       4001: 	    $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
                   4002: 		'<td valign="top">'.$displayPts[1].'</td>'.
                   4003: 		'</tr>';
1.68      ng       4004: 
1.196     albertel 4005: 	    $prob++;
1.68      ng       4006: 	}
1.71      ng       4007:         $curRes = $iterator->next();
1.68      ng       4008:     }
1.98      albertel 4009: 
1.71      ng       4010:     $studentTable.='</td></tr></table></td></tr></table>';
1.257     albertel 4011:     $studentTable.=&show_grading_menu_form($env{'form.symb'},$env{'form.url'});
1.76      ng       4012:     my $grademsg=($changeflag == 0 ? 'No score was changed or updated.' :
                   4013: 		  'The scores were changed for '.
                   4014: 		  $changeflag.' problem'.($changeflag == 1 ? '.' : 's.'));
                   4015:     $request->print($grademsg.$studentTable);
1.68      ng       4016: 
1.70      ng       4017:     return '';
                   4018: }
                   4019: 
1.72      ng       4020: #-------- end of section for handling grading by page/sequence ---------
                   4021: #
                   4022: #-------------------------------------------------------------------
                   4023: 
1.75      albertel 4024: #--------------------Scantron Grading-----------------------------------
                   4025: #
                   4026: #------ start of section for handling grading by page/sequence ---------
                   4027: 
1.81      albertel 4028: sub defaultFormData {
                   4029:     my ($symb,$url)=@_;
                   4030:     return '
                   4031:       <input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
                   4032:      '<input type="hidden" name="url"     value="'.$url.'" />'."\n".
1.257     albertel 4033:      '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
                   4034:      '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81      albertel 4035: }
                   4036: 
1.75      albertel 4037: sub getSequenceDropDown {
                   4038:     my ($request,$symb)=@_;
                   4039:     my $result='<select name="selectpage">'."\n";
                   4040:     my ($titles,$symbx) = &getSymbMap($request);
1.137     albertel 4041:     my ($curpage)=&Apache::lonnet::decode_symb($symb); 
1.75      albertel 4042:     my $ctr=0;
                   4043:     foreach (@$titles) {
                   4044: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   4045: 	$result.='<option value="'.$$symbx{$_}.'" '.
                   4046: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="on"' : '').
                   4047: 	    '>'.$showtitle.'</option>'."\n";
                   4048: 	$ctr++;
                   4049:     }
                   4050:     $result.= '</select>';
                   4051:     return $result;
                   4052: }
                   4053: 
1.202     albertel 4054: sub scantron_filenames {
1.257     albertel 4055:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   4056:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.157     albertel 4057:     my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
1.162     albertel 4058: 				    &Apache::loncommon::propath($cdom,$cname));
1.202     albertel 4059:     my @possiblenames;
1.201     albertel 4060:     foreach my $filename (sort(@files)) {
1.157     albertel 4061: 	($filename)=split(/&/,$filename);
                   4062: 	if ($filename!~/^scantron_orig_/) { next ; }
                   4063: 	$filename=~s/^scantron_orig_//;
1.202     albertel 4064: 	push(@possiblenames,$filename);
                   4065:     }
                   4066:     return @possiblenames;
                   4067: }
                   4068: 
                   4069: sub scantron_uploads {
1.209     ng       4070:     my ($file2grade) = @_;
1.202     albertel 4071:     my $result=	'<select name="scantron_selectfile">';
                   4072:     $result.="<option></option>";
                   4073:     foreach my $filename (sort(&scantron_filenames())) {
1.209     ng       4074: 	$result.="<option".($filename eq $file2grade ? ' selected="on"':'').">$filename</option>\n";
1.81      albertel 4075:     }
                   4076:     $result.="</select>";
                   4077:     return $result;
                   4078: }
                   4079: 
1.82      albertel 4080: sub scantron_scantab {
                   4081:     my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
                   4082:     my $result='<select name="scantron_format">'."\n";
1.191     albertel 4083:     $result.='<option></option>'."\n";
1.82      albertel 4084:     foreach my $line (<$fh>) {
                   4085: 	my ($name,$descrip)=split(/:/,$line);
                   4086: 	if ($name =~ /^\#/) { next; }
                   4087: 	$result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
                   4088:     }
                   4089:     $result.='</select>'."\n";
                   4090: 
                   4091:     return $result;
                   4092: }
                   4093: 
1.186     albertel 4094: sub scantron_CODElist {
1.257     albertel 4095:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4096:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186     albertel 4097:     my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
                   4098:     my $namechoice='<option></option>';
1.225     albertel 4099:     foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191     albertel 4100: 	if ($name =~ /^error: 2 /) { next; }
1.278     albertel 4101: 	if ($name =~ /^type\0/) { next; }
1.186     albertel 4102: 	$namechoice.='<option value="'.$name.'">'.$name.'</option>';
                   4103:     }
                   4104:     $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
                   4105:     return $namechoice;
                   4106: }
                   4107: 
                   4108: sub scantron_CODEunique {
                   4109:     my $result='<nobr>
1.272     albertel 4110:                  <label><input type="radio" name="scantron_CODEunique"
1.308     albertel 4111:                         value="yes" checked="checked" /> Yes </label>
1.186     albertel 4112:                 </nobr>
                   4113:                 <nobr>
1.272     albertel 4114:                  <label><input type="radio" name="scantron_CODEunique"
1.308     albertel 4115:                         value="no" /> No </label>
1.186     albertel 4116:                 </nobr>';
                   4117:     return $result;
                   4118: }
                   4119: 
1.75      albertel 4120: sub scantron_selectphase {
1.209     ng       4121:     my ($r,$file2grade) = @_;
1.75      albertel 4122:     my ($symb,$url)=&get_symb_and_url($r);
                   4123:     if (!$symb) {return '';}
                   4124:     my $sequence_selector=&getSequenceDropDown($r,$symb);
1.81      albertel 4125:     my $default_form_data=&defaultFormData($symb,$url);
                   4126:     my $grading_menu_button=&show_grading_menu_form($symb,$url);
1.209     ng       4127:     my $file_selector=&scantron_uploads($file2grade);
1.82      albertel 4128:     my $format_selector=&scantron_scantab();
1.186     albertel 4129:     my $CODE_selector=&scantron_CODElist();
                   4130:     my $CODE_unique=&scantron_CODEunique();
1.75      albertel 4131:     my $result;
1.157     albertel 4132:     #FIXME allow instructor to be able to download the scantron file
                   4133:     # and to upload it,
1.75      albertel 4134:     $result.= <<SCANTRONFORM;
1.162     albertel 4135:     <table width="100%" border="0">
1.75      albertel 4136:     <tr>
1.226     albertel 4137:      <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
1.75      albertel 4138:       <td bgcolor="#777777">
1.203     albertel 4139:        <input type="hidden" name="command" value="scantron_warning" />
1.162     albertel 4140:         $default_form_data
1.75      albertel 4141:         <table width="100%" border="0">
                   4142:           <tr bgcolor="#e6ffff">
1.174     albertel 4143:             <td colspan="2">
                   4144:               &nbsp;<b>Specify file and which Folder/Sequence to grade</b>
1.75      albertel 4145:             </td>
                   4146:           </tr>
                   4147:           <tr bgcolor="#ffffe6">
1.174     albertel 4148:             <td> Sequence to grade: </td><td> $sequence_selector </td>
1.75      albertel 4149:           </tr>
                   4150:           <tr bgcolor="#ffffe6">
1.174     albertel 4151:             <td> Filename of scoring office file: </td><td> $file_selector </td>
1.75      albertel 4152:           </tr>
1.82      albertel 4153:           <tr bgcolor="#ffffe6">
1.174     albertel 4154:             <td> Format of data file: </td><td> $format_selector </td>
1.82      albertel 4155:           </tr>
1.157     albertel 4156:           <tr bgcolor="#ffffe6">
1.186     albertel 4157:             <td> Saved CODEs to validate against: </td><td> $CODE_selector</td>
                   4158:           </tr>
                   4159:           <tr bgcolor="#ffffe6">
                   4160:             <td> Each CODE is only to be used once:</td><td> $CODE_unique </td>
                   4161:           </tr>
                   4162:           <tr bgcolor="#ffffe6">
1.187     albertel 4163: 	    <td> Options: </td>
                   4164:             <td>
1.272     albertel 4165: 	       <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> Do only previously skipped records</label> <br />
                   4166:                <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> Remove all exisiting corrections</label>
1.187     albertel 4167: 	    </td>
                   4168:           </tr>
                   4169:           <tr bgcolor="#ffffe6">
1.174     albertel 4170:             <td colspan="2">
1.265     www      4171:               <input type="submit" value="Grading: Validate Scantron Records" />
1.162     albertel 4172:             </td>
                   4173:           </tr>
                   4174:         </table>
1.226     albertel 4175:        </td>
                   4176:      </form>
1.162     albertel 4177:     </tr>
                   4178: SCANTRONFORM
                   4179:    
                   4180:     $r->print($result);
                   4181: 
1.257     albertel 4182:     if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
                   4183:         &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162     albertel 4184: 
                   4185:         $r->print(<<SCANTRONFORM);
                   4186:     <tr>
                   4187:       <td bgcolor="#777777">
                   4188:         <table width="100%" border="0">
                   4189:           <tr bgcolor="#e6ffff">
                   4190:             <td>
1.174     albertel 4191:               &nbsp;<b>Specify a Scantron data file to upload.</b>
1.162     albertel 4192:             </td>
                   4193:           </tr>
                   4194:           <tr bgcolor="#ffffe6">
                   4195:             <td>
                   4196: SCANTRONFORM
1.174     albertel 4197:     my $default_form_data=&defaultFormData(&get_symb_and_url($r,1));
1.257     albertel 4198:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4199:     my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.174     albertel 4200:     $r->print(<<UPLOAD);
                   4201:               <script type="text/javascript" language="javascript">
                   4202:     function checkUpload(formname) {
                   4203: 	if (formname.upfile.value == "") {
                   4204: 	    alert("Please use the browse button to select a file from your local directory.");
                   4205: 	    return false;
                   4206: 	}
                   4207: 	formname.submit();
                   4208:     }
                   4209:               </script>
                   4210: 
                   4211:               <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
                   4212:                 $default_form_data
                   4213:                 <input name='courseid' type='hidden' value='$cnum' />
                   4214:                 <input name='domainid' type='hidden' value='$cdom' />
                   4215:                 <input name='command' value='scantronupload_save' type='hidden' />
                   4216:                 File to upload:<input type="file" name="upfile" size="50" />
                   4217:                 <br />
                   4218:                 <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
                   4219:               </form>
                   4220: UPLOAD
1.162     albertel 4221: 
                   4222:         $r->print(<<SCANTRONFORM);
                   4223:             </td>
                   4224:           </tr>
1.75      albertel 4225:         </table>
                   4226:       </td>
                   4227:     </tr>
1.162     albertel 4228: SCANTRONFORM
                   4229:     }
1.187     albertel 4230:     $r->print(<<SCANTRONFORM);
                   4231:     <tr>
1.226     albertel 4232:       <form action='/adm/grades' name='scantron_download'>
                   4233:         <td bgcolor="#777777">
1.187     albertel 4234:           <input type="hidden" name="command" value="scantron_download" />
                   4235:           <table width="100%" border="0">
                   4236:             <tr bgcolor="#e6ffff">
                   4237:               <td colspan="2">
                   4238:                 &nbsp;<b>Download a scoring office file</b>
                   4239:               </td>
                   4240:             </tr>
                   4241:             <tr bgcolor="#ffffe6">
                   4242:               <td> Filename of scoring office file: </td><td> $file_selector </td>
                   4243:             </tr>
                   4244:             <tr bgcolor="#ffffe6">
                   4245:               <td colspan="2">
1.293     www      4246:                 <input type="submit" value="Download: Show List of Associated Files" />
1.187     albertel 4247:               </td>
                   4248:             </tr>
                   4249:           </table>
1.226     albertel 4250:         </td>
                   4251:       </form>
1.187     albertel 4252:     </tr>
                   4253: SCANTRONFORM
1.162     albertel 4254: 
                   4255:     $r->print(<<SCANTRONFORM);
1.75      albertel 4256:   </table>
1.81      albertel 4257: $grading_menu_button
1.75      albertel 4258: SCANTRONFORM
                   4259: 
1.162     albertel 4260:     return
1.75      albertel 4261: }
                   4262: 
1.82      albertel 4263: sub get_scantron_config {
                   4264:     my ($which) = @_;
                   4265:     my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
                   4266:     my %config;
1.157     albertel 4267:     #FIXME probably should move to XML it has already gotten a bit much now
1.82      albertel 4268:     foreach my $line (<$fh>) {
                   4269: 	my ($name,$descrip)=split(/:/,$line);
                   4270: 	if ($name ne $which ) { next; }
                   4271: 	chomp($line);
                   4272: 	my @config=split(/:/,$line);
                   4273: 	$config{'name'}=$config[0];
                   4274: 	$config{'description'}=$config[1];
                   4275: 	$config{'CODElocation'}=$config[2];
                   4276: 	$config{'CODEstart'}=$config[3];
                   4277: 	$config{'CODElength'}=$config[4];
                   4278: 	$config{'IDstart'}=$config[5];
                   4279: 	$config{'IDlength'}=$config[6];
                   4280: 	$config{'Qstart'}=$config[7];
                   4281: 	$config{'Qlength'}=$config[8];
                   4282: 	$config{'Qoff'}=$config[9];
                   4283: 	$config{'Qon'}=$config[10];
1.157     albertel 4284: 	$config{'PaperID'}=$config[11];
                   4285: 	$config{'PaperIDlength'}=$config[12];
                   4286: 	$config{'FirstName'}=$config[13];
                   4287: 	$config{'FirstNamelength'}=$config[14];
                   4288: 	$config{'LastName'}=$config[15];
                   4289: 	$config{'LastNamelength'}=$config[16];
1.82      albertel 4290: 	last;
                   4291:     }
                   4292:     return %config;
                   4293: }
                   4294: 
                   4295: sub username_to_idmap {
                   4296:     my ($classlist)= @_;
                   4297:     my %idmap;
                   4298:     foreach my $student (keys(%$classlist)) {
                   4299: 	$idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
                   4300: 	    $student;
                   4301:     }
                   4302:     return %idmap;
                   4303: }
                   4304: 
1.157     albertel 4305: sub scantron_fixup_scanline {
                   4306:     my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
                   4307:     if ($field eq 'ID') {
                   4308: 	if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186     albertel 4309: 	    return ($line,1,'New value too large');
1.157     albertel 4310: 	}
                   4311: 	if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
                   4312: 	    $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
                   4313: 				     $args->{'newid'});
                   4314: 	}
                   4315: 	substr($line,$$scantron_config{'IDstart'}-1,
                   4316: 	       $$scantron_config{'IDlength'})=$args->{'newid'};
                   4317: 	if ($args->{'newid'}=~/^\s*$/) {
                   4318: 	    &scan_data($scan_data,"$whichline.user",
                   4319: 		       $args->{'username'}.':'.$args->{'domain'});
                   4320: 	}
1.186     albertel 4321:     } elsif ($field eq 'CODE') {
1.192     albertel 4322: 	if ($args->{'CODE_ignore_dup'}) {
                   4323: 	    &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
                   4324: 	}
                   4325: 	&scan_data($scan_data,"$whichline.useCODE",'1');
                   4326: 	if ($args->{'CODE'} ne 'use_unfound') {
1.191     albertel 4327: 	    if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
                   4328: 		return ($line,1,'New CODE value too large');
                   4329: 	    }
                   4330: 	    if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
                   4331: 		$args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
                   4332: 	    }
                   4333: 	    substr($line,$$scantron_config{'CODEstart'}-1,
                   4334: 		   $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186     albertel 4335: 	}
1.157     albertel 4336:     } elsif ($field eq 'answer') {
                   4337: 	my $length=$scantron_config->{'Qlength'};
                   4338: 	my $off=$scantron_config->{'Qoff'};
                   4339: 	my $on=$scantron_config->{'Qon'};
                   4340: 	my $answer=${off}x$length;
                   4341: 	if ($args->{'response'} eq 'none') {
                   4342: 	    &scan_data($scan_data,
                   4343: 		       "$whichline.no_bubble.".$args->{'question'},'1');
                   4344: 	} else {
1.274     albertel 4345: 	    if ($on eq 'letter') {
                   4346: 		my @alphabet=('A'..'Z');
                   4347: 		$answer=$alphabet[$args->{'response'}];
                   4348: 	    } elsif ($on eq 'number') {
                   4349: 		$answer=$args->{'response'}+1;
                   4350: 	    } else {
                   4351: 		substr($answer,$args->{'response'},1)=$on;
                   4352: 	    }
1.157     albertel 4353: 	    &scan_data($scan_data,
                   4354: 		       "$whichline.no_bubble.".$args->{'question'},undef,'1');
                   4355: 	}
                   4356: 	my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
                   4357: 	substr($line,$where-1,$length)=$answer;
                   4358:     }
                   4359:     return $line;
                   4360: }
                   4361: 
                   4362: sub scan_data {
                   4363:     my ($scan_data,$key,$value,$delete)=@_;
1.257     albertel 4364:     my $filename=$env{'form.scantron_selectfile'};
1.157     albertel 4365:     if (defined($value)) {
                   4366: 	$scan_data->{$filename.'_'.$key} = $value;
                   4367:     }
                   4368:     if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
                   4369:     return $scan_data->{$filename.'_'.$key};
                   4370: }
                   4371: 
1.82      albertel 4372: sub scantron_parse_scanline {
1.194     albertel 4373:     my ($line,$whichline,$scantron_config,$scan_data,$justHeader)=@_;
1.82      albertel 4374:     my %record;
                   4375:     my $questions=substr($line,$$scantron_config{'Qstart'}-1);
                   4376:     my $data=substr($line,0,$$scantron_config{'Qstart'}-1);
1.278     albertel 4377:     if (!($$scantron_config{'CODElocation'} eq 0 ||
                   4378: 	  $$scantron_config{'CODElocation'} eq 'none')) {
                   4379: 	if ($$scantron_config{'CODElocation'} < 0 ||
                   4380: 	    $$scantron_config{'CODElocation'} eq 'letter' ||
                   4381: 	    $$scantron_config{'CODElocation'} eq 'number') {
1.191     albertel 4382: 	    $record{'scantron.CODE'}=substr($data,
                   4383: 					    $$scantron_config{'CODEstart'}-1,
1.83      albertel 4384: 					    $$scantron_config{'CODElength'});
1.191     albertel 4385: 	    if (&scan_data($scan_data,"$whichline.useCODE")) {
                   4386: 		$record{'scantron.useCODE'}=1;
                   4387: 	    }
1.192     albertel 4388: 	    if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
                   4389: 		$record{'scantron.CODE_ignore_dup'}=1;
                   4390: 	    }
1.82      albertel 4391: 	} else {
                   4392: 	    #FIXME interpret first N questions
                   4393: 	}
                   4394:     }
1.83      albertel 4395:     $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
                   4396: 				  $$scantron_config{'IDlength'});
1.157     albertel 4397:     $record{'scantron.PaperID'}=
                   4398: 	substr($data,$$scantron_config{'PaperID'}-1,
                   4399: 	       $$scantron_config{'PaperIDlength'});
                   4400:     $record{'scantron.FirstName'}=
                   4401: 	substr($data,$$scantron_config{'FirstName'}-1,
                   4402: 	       $$scantron_config{'FirstNamelength'});
                   4403:     $record{'scantron.LastName'}=
                   4404: 	substr($data,$$scantron_config{'LastName'}-1,
                   4405: 	       $$scantron_config{'LastNamelength'});
1.194     albertel 4406:     if ($justHeader) { return \%record; }
                   4407: 
1.82      albertel 4408:     my @alphabet=('A'..'Z');
                   4409:     my $questnum=0;
                   4410:     while ($questions) {
                   4411: 	$questnum++;
                   4412: 	my $currentquest=substr($questions,0,$$scantron_config{'Qlength'});
                   4413: 	substr($questions,0,$$scantron_config{'Qlength'})='';
1.83      albertel 4414: 	if (length($currentquest) < $$scantron_config{'Qlength'}) { next; }
1.239     albertel 4415: 	if ($$scantron_config{'Qon'} eq 'letter') {
1.274     albertel 4416: 	    if ($currentquest eq '?') {
                   4417: 		push(@{$record{'scantron.doubleerror'}},$questnum);
                   4418: 		$record{"scantron.$questnum.answer"}='';
                   4419: 	    } elsif (!$currentquest 
                   4420: 		     || $currentquest eq $$scantron_config{'Qoff'}
                   4421: 		     || $currentquest !~ /^[A-Z]$/) {
1.239     albertel 4422: 		$record{"scantron.$questnum.answer"}='';
                   4423: 		if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
                   4424: 		    push(@{$record{"scantron.missingerror"}},$questnum);
                   4425: 		}
                   4426: 	    } else {
                   4427: 		$record{"scantron.$questnum.answer"}=$currentquest;
                   4428: 	    }
                   4429: 	} elsif ($$scantron_config{'Qon'} eq 'number') {
1.274     albertel 4430: 	    if ($currentquest eq '?') {
                   4431: 		push(@{$record{'scantron.doubleerror'}},$questnum);
                   4432: 		$record{"scantron.$questnum.answer"}='';
                   4433: 		} elsif (!$currentquest 
                   4434: 			 || $currentquest eq $$scantron_config{'Qoff'} 
                   4435: 			 || $currentquest !~ /^\d$/) {
1.239     albertel 4436: 		$record{"scantron.$questnum.answer"}='';
                   4437: 		if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
                   4438: 		    push(@{$record{"scantron.missingerror"}},$questnum);
                   4439: 		}
                   4440: 	    } else {
                   4441: 		$record{"scantron.$questnum.answer"}=
                   4442: 		    $alphabet[$currentquest-1];
                   4443: 	    }
1.82      albertel 4444: 	} else {
1.239     albertel 4445: 	    my @array=split($$scantron_config{'Qon'},$currentquest,-1);
                   4446: 	    if (length($array[0]) eq $$scantron_config{'Qlength'}) {
                   4447: 		$record{"scantron.$questnum.answer"}='';
                   4448: 		if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
                   4449: 		    push(@{$record{"scantron.missingerror"}},$questnum);
                   4450: 		}
                   4451: 	    } else {
                   4452: 		$record{"scantron.$questnum.answer"}=
                   4453: 		    $alphabet[length($array[0])];
                   4454: 	    }
                   4455: 	    if (scalar(@array) gt 2) {
                   4456: 		push(@{$record{'scantron.doubleerror'}},$questnum);
                   4457: 		my @ans=@array;
                   4458: 		my $i=length($ans[0]);shift(@ans);
                   4459: 		while ($#ans) {
                   4460: 		    $i+=length($ans[0])+1;
                   4461: 		    $record{"scantron.$questnum.answer"}.=$alphabet[$i];
                   4462: 		    shift(@ans);
                   4463: 		}
                   4464: 	    }
1.82      albertel 4465: 	}
                   4466:     }
1.83      albertel 4467:     $record{'scantron.maxquest'}=$questnum;
                   4468:     return \%record;
1.82      albertel 4469: }
                   4470: 
                   4471: sub scantron_add_delay {
1.140     albertel 4472:     my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
                   4473:     push(@$delayqueue,
                   4474: 	 {'line' => $scanline, 'emsg' => $errormessage,
                   4475: 	  'ecode' => $errorcode }
                   4476: 	 );
1.82      albertel 4477: }
                   4478: 
                   4479: sub scantron_find_student {
1.157     albertel 4480:     my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83      albertel 4481:     my $scanID=$$scantron_record{'scantron.ID'};
1.157     albertel 4482:     if ($scanID =~ /^\s*$/) {
                   4483:  	return &scan_data($scan_data,"$line.user");
                   4484:     }
1.83      albertel 4485:     foreach my $id (keys(%$idmap)) {
1.157     albertel 4486:  	if (lc($id) eq lc($scanID)) {
                   4487:  	    return $$idmap{$id};
                   4488:  	}
1.83      albertel 4489:     }
                   4490:     return undef;
                   4491: }
                   4492: 
                   4493: sub scantron_filter {
                   4494:     my ($curres)=@_;
1.215     albertel 4495:                         # randomout is dysfunctional at best for this purpose
                   4496:     if (ref($curres) && $curres->is_problem()) { #&& !$curres->randomout) {
1.83      albertel 4497: 	return 1;
                   4498:     }
                   4499:     return 0;
1.82      albertel 4500: }
                   4501: 
1.157     albertel 4502: sub scantron_process_corrections {
                   4503:     my ($r) = @_;
1.257     albertel 4504:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 4505:     my ($scanlines,$scan_data)=&scantron_getfile();
                   4506:     my $classlist=&Apache::loncoursedata::get_classlist();
1.257     albertel 4507:     my $which=$env{'form.scantron_line'};
1.200     albertel 4508:     my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157     albertel 4509:     my ($skip,$err,$errmsg);
1.257     albertel 4510:     if ($env{'form.scantron_skip_record'}) {
1.157     albertel 4511: 	$skip=1;
1.257     albertel 4512:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
                   4513: 	my $newstudent=$env{'form.scantron_username'}.':'.
                   4514: 	    $env{'form.scantron_domain'};
1.157     albertel 4515: 	my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
                   4516: 	($line,$err,$errmsg)=
                   4517: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
                   4518: 				     'ID',{'newid'=>$newid,
1.257     albertel 4519: 				    'username'=>$env{'form.scantron_username'},
                   4520: 				    'domain'=>$env{'form.scantron_domain'}});
                   4521:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
                   4522: 	my $resolution=$env{'form.scantron_CODE_resolution'};
1.190     albertel 4523: 	my $newCODE;
1.192     albertel 4524: 	my %args;
1.190     albertel 4525: 	if      ($resolution eq 'use_unfound') {
1.191     albertel 4526: 	    $newCODE='use_unfound';
1.190     albertel 4527: 	} elsif ($resolution eq 'use_found') {
1.257     albertel 4528: 	    $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190     albertel 4529: 	} elsif ($resolution eq 'use_typed') {
1.257     albertel 4530: 	    $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194     albertel 4531: 	} elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257     albertel 4532: 	    $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190     albertel 4533: 	}
1.257     albertel 4534: 	if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192     albertel 4535: 	    $args{'CODE_ignore_dup'}=1;
                   4536: 	}
                   4537: 	$args{'CODE'}=$newCODE;
1.186     albertel 4538: 	($line,$err,$errmsg)=
                   4539: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192     albertel 4540: 				     'CODE',\%args);
1.257     albertel 4541:     } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
                   4542: 	foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157     albertel 4543: 	    ($line,$err,$errmsg)=
                   4544: 		&scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
                   4545: 					 $which,'answer',
                   4546: 					 { 'question'=>$question,
1.257     albertel 4547: 		       'response'=>$env{"form.scantron_correct_Q_$question"}});
1.157     albertel 4548: 	    if ($err) { last; }
                   4549: 	}
                   4550:     }
                   4551:     if ($err) {
1.287     albertel 4552: 	$r->print("<font color='red'>Unable to accept last correction, an error occurred :$errmsg:</font>");
1.157     albertel 4553:     } else {
1.200     albertel 4554: 	&scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157     albertel 4555: 	&scantron_putfile($scanlines,$scan_data);
                   4556:     }
                   4557: }
                   4558: 
1.200     albertel 4559: sub reset_skipping_status {
                   4560:     my ($scanlines,$scan_data)=&scantron_getfile();
                   4561:     &scan_data($scan_data,'remember_skipping',undef,1);
                   4562:     &scantron_putfile(undef,$scan_data);
                   4563: }
                   4564: 
                   4565: sub allow_skipping {
                   4566:     my ($scan_data,$i)=@_;
                   4567:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
                   4568:     delete($remembered{$i});
                   4569:     &scan_data($scan_data,'remember_skipping',join(':',%remembered));
                   4570: }
                   4571: 
                   4572: sub should_be_skipped {
                   4573:     my ($scan_data,$i)=@_;
1.257     albertel 4574:     if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200     albertel 4575: 	# not redoing old skips
                   4576: 	return 0;
                   4577:     }
                   4578:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
                   4579:     if (exists($remembered{$i})) { return 0; }
                   4580:     return 1;
                   4581: }
                   4582: 
                   4583: sub remember_current_skipped {
                   4584:     my ($scanlines,$scan_data)=&scantron_getfile();
                   4585:     my %to_remember;
                   4586:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   4587: 	if ($scanlines->{'skipped'}[$i]) {
                   4588: 	    $to_remember{$i}=1;
                   4589: 	}
                   4590:     }
                   4591:     &Apache::lonnet::logthis('remembering '.join(':',%to_remember));
                   4592:     &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
                   4593:     &scantron_putfile(undef,$scan_data);
                   4594: }
                   4595: 
                   4596: sub check_for_error {
                   4597:     my ($r,$result)=@_;
                   4598:     if ($result ne 'ok' && $result ne 'not_found' ) {
                   4599: 	$r->print("An error occured ($result) when trying to Remove the existing corrections.");
                   4600:     }
                   4601: }
1.157     albertel 4602: 
1.203     albertel 4603: sub scantron_warning_screen {
                   4604:     my ($button_text)=@_;
1.257     albertel 4605:     my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284     albertel 4606:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
                   4607:     my $CODElist="a";
                   4608:     if ($scantron_config{'CODElocation'} &&
                   4609: 	$scantron_config{'CODEstart'} &&
                   4610: 	$scantron_config{'CODElength'}) {
                   4611: 	$CODElist=$env{'form.scantron_CODElist'};
                   4612: 	if ($CODElist eq '') { $CODElist='<font color="red">None</font>'; }
                   4613: 	$CODElist=
                   4614: 	    '<tr><td><b>List of CODES to validate against:</b></td><td><tt>'.
                   4615: 	    $CODElist.'</tt></td></tr>';
                   4616:     }
1.203     albertel 4617:     return (<<STUFF);
                   4618: <p>
                   4619: <font color="red">Please double check the information
                   4620:                  below before clicking on '$button_text'</font>
                   4621: </p>
                   4622: <table>
1.284     albertel 4623: <tr><td><b>Sequence to be Graded:</b></td><td>$title</td></tr>
1.257     albertel 4624: <tr><td><b>Data File that will be used:</b></td><td><tt>$env{'form.scantron_selectfile'}</tt></td></tr>
1.284     albertel 4625: $CODElist
1.203     albertel 4626: </table>
                   4627: </font>
                   4628: <br />
                   4629: <p> If this information is correct, please click on '$button_text'.</p>
                   4630: <p> If something is incorrect, please click the 'Grading Menu' button to start over.</p>
                   4631: 
                   4632: <br />
                   4633: STUFF
                   4634: }
                   4635: 
                   4636: sub scantron_do_warning {
                   4637:     my ($r)=@_;
                   4638:     my ($symb,$url)=&get_symb_and_url($r);
                   4639:     if (!$symb) {return '';}
                   4640:     my $default_form_data=&defaultFormData($symb,$url);
                   4641:     $r->print(&scantron_form_start().$default_form_data);
1.257     albertel 4642:     if ( $env{'form.selectpage'} eq '' ||
                   4643: 	 $env{'form.scantron_selectfile'} eq '' ||
                   4644: 	 $env{'form.scantron_format'} eq '' ) {
1.237     albertel 4645: 	$r->print("<p>You have forgetten to specify some information. Please go Back and try again.</p>");
1.257     albertel 4646: 	if ( $env{'form.selectpage'} eq '') {
1.237     albertel 4647: 	    $r->print('<p><font color="red">You have not selected a Sequence to grade</font></p>');
                   4648: 	} 
1.257     albertel 4649: 	if ( $env{'form.scantron_selectfile'} eq '') {
1.237     albertel 4650: 	    $r->print('<p><font color="red">You have not selected a file that contains the student\'s response data.</font></p>');
                   4651: 	} 
1.257     albertel 4652: 	if ( $env{'form.scantron_format'} eq '') {
1.237     albertel 4653: 	    $r->print('<p><font color="red">You have not selected a the format of the student\'s response data.</font></p>');
                   4654: 	} 
                   4655:     } else {
1.265     www      4656: 	my $warning=&scantron_warning_screen('Grading: Validate Records');
1.237     albertel 4657: 	$r->print(<<STUFF);
1.203     albertel 4658: $warning
1.265     www      4659: <input type="submit" name="submit" value="Grading: Validate Records" />
1.203     albertel 4660: <input type="hidden" name="command" value="scantron_validate" />
                   4661: STUFF
1.237     albertel 4662:     }
                   4663:     $r->print("</form><br />".&show_grading_menu_form($symb,$url)."</body></html>");
1.203     albertel 4664:     return '';
                   4665: }
                   4666: 
                   4667: sub scantron_form_start {
                   4668:     my ($max_bubble)=@_;
                   4669:     my $result= <<SCANTRONFORM;
                   4670: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257     albertel 4671:   <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
                   4672:   <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
                   4673:   <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218     albertel 4674:   <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257     albertel 4675:   <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
                   4676:   <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
                   4677:   <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
                   4678:   <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.203     albertel 4679: SCANTRONFORM
                   4680:     return $result;
                   4681: }
                   4682: 
1.157     albertel 4683: sub scantron_validate_file {
                   4684:     my ($r) = @_;
                   4685:     my ($symb,$url)=&get_symb_and_url($r);
                   4686:     if (!$symb) {return '';}
                   4687:     my $default_form_data=&defaultFormData($symb,$url);
1.200     albertel 4688:     
                   4689:     # do the detection of only doing skipped records first befroe we delete
                   4690:     # them  when doing the corrections reset
1.257     albertel 4691:     if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200     albertel 4692: 	&reset_skipping_status();
                   4693:     }
1.257     albertel 4694:     if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200     albertel 4695: 	&remember_current_skipped();
                   4696: 	&scantron_remove_file('skipped');
1.257     albertel 4697: 	$env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200     albertel 4698:     }
                   4699: 
1.257     albertel 4700:     if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200     albertel 4701: 	&check_for_error($r,&scantron_remove_file('corrected'));
                   4702: 	&check_for_error($r,&scantron_remove_file('skipped'));
                   4703: 	&check_for_error($r,&scantron_remove_scan_data());
1.257     albertel 4704: 	$env{'form.scantron_options_ignore'}='done';
1.192     albertel 4705:     }
1.200     albertel 4706: 
1.257     albertel 4707:     if ($env{'form.scantron_corrections'}) {
1.157     albertel 4708: 	&scantron_process_corrections($r);
                   4709:     }
1.191     albertel 4710:     $r->print("<p>Gathering neccessary info.</p>");$r->rflush();
1.157     albertel 4711:     #get the student pick code ready
                   4712:     $r->print(&Apache::loncommon::studentbrowser_javascript());
1.203     albertel 4713:     my $max_bubble=&scantron_get_maxbubble($r);
                   4714:     my $result=&scantron_form_start($max_bubble).$default_form_data;
1.157     albertel 4715:     $r->print($result);
                   4716:     
                   4717:     my @validate_phases=( 'ID',
                   4718: 			  'CODE',
                   4719: 			  'doublebubble',
                   4720: 			  'missingbubbles');
1.257     albertel 4721:     if (!$env{'form.validatepass'}) {
                   4722: 	$env{'form.validatepass'} = 0;
1.157     albertel 4723:     }
1.257     albertel 4724:     my $currentphase=$env{'form.validatepass'};
1.157     albertel 4725: 
                   4726:     my $stop=0;
                   4727:     while (!$stop && $currentphase < scalar(@validate_phases)) {
                   4728: 	$r->print("<p> Validating ".$validate_phases[$currentphase]."</p>");
                   4729: 	$r->rflush();
                   4730: 	my $which="scantron_validate_".$validate_phases[$currentphase];
                   4731: 	{
                   4732: 	    no strict 'refs';
                   4733: 	    ($stop,$currentphase)=&$which($r,$currentphase);
                   4734: 	}
                   4735:     }
                   4736:     if (!$stop) {
1.203     albertel 4737: 	my $warning=&scantron_warning_screen('Start Grading');
                   4738: 	$r->print(<<STUFF);
                   4739: Validation process complete.<br />
                   4740: $warning
                   4741: <input type="submit" name="submit" value="Start Grading" />
                   4742: <input type="hidden" name="command" value="scantron_process" />
                   4743: STUFF
                   4744: 
1.157     albertel 4745:     } else {
                   4746: 	$r->print('<input type="hidden" name="command" value="scantron_validate" />');
                   4747: 	$r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
                   4748:     }
                   4749:     if ($stop) {
                   4750: 	$r->print('<input type="submit" name="submit" value="Continue ->" />');
                   4751: 	$r->print(' using corrected info <br />');
                   4752: 	$r->print("<input type='submit' value='Skip' name='scantron_skip_record' />");
                   4753: 	$r->print(" this scanline saving it for later.");
                   4754:     }
                   4755:     $r->print(" </form><br />".&show_grading_menu_form($symb,$url).
                   4756: 	      "</body></html>");
                   4757:     return '';
                   4758: }
                   4759: 
1.200     albertel 4760: sub scantron_remove_file {
1.192     albertel 4761:     my ($which)=@_;
1.257     albertel 4762:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   4763:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192     albertel 4764:     my $file='scantron_';
1.200     albertel 4765:     if ($which eq 'corrected' || $which eq 'skipped') {
                   4766: 	$file.=$which.'_';
1.192     albertel 4767:     } else {
                   4768: 	return 'refused';
                   4769:     }
1.257     albertel 4770:     $file.=$env{'form.scantron_selectfile'};
1.200     albertel 4771:     return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
                   4772: }
                   4773: 
                   4774: sub scantron_remove_scan_data {
1.257     albertel 4775:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   4776:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192     albertel 4777:     my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
                   4778:     my @todelete;
1.257     albertel 4779:     my $filename=$env{'form.scantron_selectfile'};
1.192     albertel 4780:     foreach my $key (@keys) {
                   4781: 	if ($key=~/^\Q$filename\E_/) {
1.257     albertel 4782: 	    if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200     albertel 4783: 		$key=~/remember_skipping/) {
                   4784: 		next;
                   4785: 	    }
1.192     albertel 4786: 	    push(@todelete,$key);
                   4787: 	}
                   4788:     }
1.200     albertel 4789:     my $result;
1.192     albertel 4790:     if (@todelete) {
1.200     albertel 4791: 	$result=&Apache::lonnet::del('nohist_scantrondata',\@todelete,$cdom,$cname);
1.192     albertel 4792:     }
                   4793:     return $result;
                   4794: }
                   4795: 
1.157     albertel 4796: sub scantron_getfile {
1.200     albertel 4797:     #FIXME really would prefer a scantron directory
1.257     albertel 4798:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   4799:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157     albertel 4800:     my $lines;
                   4801:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 4802: 		       'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157     albertel 4803:     my %scanlines;
                   4804:     $scanlines{'orig'}=[(split("\n",$lines,-1))];
                   4805:     my $temp=$scanlines{'orig'};
                   4806:     $scanlines{'count'}=$#$temp;
                   4807: 
                   4808:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 4809: 		       'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157     albertel 4810:     if ($lines eq '-1') {
                   4811: 	$scanlines{'corrected'}=[];
                   4812:     } else {
                   4813: 	$scanlines{'corrected'}=[(split("\n",$lines,-1))];
                   4814:     }
                   4815:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 4816: 		       'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157     albertel 4817:     if ($lines eq '-1') {
                   4818: 	$scanlines{'skipped'}=[];
                   4819:     } else {
                   4820: 	$scanlines{'skipped'}=[(split("\n",$lines,-1))];
                   4821:     }
1.175     albertel 4822:     my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157     albertel 4823:     if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
                   4824:     my %scan_data = @tmp;
                   4825:     return (\%scanlines,\%scan_data);
                   4826: }
                   4827: 
                   4828: sub lonnet_putfile {
                   4829:     my ($contents,$filename)=@_;
1.257     albertel 4830:     my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   4831:     my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   4832:     $env{'form.sillywaytopassafilearound'}=$contents;
1.275     albertel 4833:     &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157     albertel 4834: 
                   4835: }
                   4836: 
                   4837: sub scantron_putfile {
                   4838:     my ($scanlines,$scan_data) = @_;
1.200     albertel 4839:     #FIXME really would prefer a scantron directory
1.257     albertel 4840:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   4841:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200     albertel 4842:     if ($scanlines) {
                   4843: 	my $prefix='scantron_';
1.157     albertel 4844: # no need to update orig, shouldn't change
                   4845: #   &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257     albertel 4846: #		    $env{'form.scantron_selectfile'});
1.200     albertel 4847: 	&lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
                   4848: 			$prefix.'corrected_'.
1.257     albertel 4849: 			$env{'form.scantron_selectfile'});
1.200     albertel 4850: 	&lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
                   4851: 			$prefix.'skipped_'.
1.257     albertel 4852: 			$env{'form.scantron_selectfile'});
1.200     albertel 4853:     }
1.175     albertel 4854:     &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157     albertel 4855: }
                   4856: 
                   4857: sub scantron_get_line {
1.200     albertel 4858:     my ($scanlines,$scan_data,$i)=@_;
                   4859:     if (&should_be_skipped($scan_data,$i)) { return undef; }
                   4860:     if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157     albertel 4861:     if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
                   4862:     return $scanlines->{'orig'}[$i]; 
                   4863: }
                   4864: 
1.200     albertel 4865: sub get_todo_count {
                   4866:     my ($scanlines,$scan_data)=@_;
                   4867:     my $count=0;
                   4868:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   4869: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
                   4870: 	if ($line=~/^[\s\cz]*$/) { next; }
                   4871: 	$count++;
                   4872:     }
                   4873:     return $count;
                   4874: }
                   4875: 
1.157     albertel 4876: sub scantron_put_line {
1.200     albertel 4877:     my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157     albertel 4878:     if ($skip) {
                   4879: 	$scanlines->{'skipped'}[$i]=$newline;
1.200     albertel 4880: 	&allow_skipping($scan_data,$i);
1.157     albertel 4881: 	return;
                   4882:     }
                   4883:     $scanlines->{'corrected'}[$i]=$newline;
                   4884: }
                   4885: 
                   4886: sub scantron_validate_ID {
                   4887:     my ($r,$currentphase) = @_;
                   4888:     
                   4889:     #get student info
                   4890:     my $classlist=&Apache::loncoursedata::get_classlist();
                   4891:     my %idmap=&username_to_idmap($classlist);
                   4892: 
                   4893:     #get scantron line setup
1.257     albertel 4894:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 4895:     my ($scanlines,$scan_data)=&scantron_getfile();
                   4896: 
                   4897:     my %found=('ids'=>{},'usernames'=>{});
                   4898:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 4899: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 4900: 	if ($line=~/^[\s\cz]*$/) { next; }
                   4901: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   4902: 						 $scan_data);
                   4903: 	my $id=$$scan_record{'scantron.ID'};
                   4904: 	my $found;
                   4905: 	foreach my $checkid (keys(%idmap)) {
                   4906: 	    if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
                   4907: 	}
                   4908: 	if ($found) {
                   4909: 	    my $username=$idmap{$found};
                   4910: 	    if ($found{'ids'}{$found}) {
                   4911: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   4912: 					 $line,'duplicateID',$found);
1.194     albertel 4913: 		return(1,$currentphase);
1.157     albertel 4914: 	    } elsif ($found{'usernames'}{$username}) {
                   4915: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   4916: 					 $line,'duplicateID',$username);
1.194     albertel 4917: 		return(1,$currentphase);
1.157     albertel 4918: 	    }
1.186     albertel 4919: 	    #FIXME store away line we previously saw the ID on to use above
1.157     albertel 4920: 	    $found{'ids'}{$found}++;
                   4921: 	    $found{'usernames'}{$username}++;
                   4922: 	} else {
                   4923: 	    if ($id =~ /^\s*$/) {
1.158     albertel 4924: 		my $username=&scan_data($scan_data,"$i.user");
1.157     albertel 4925: 		if (defined($username) && $found{'usernames'}{$username}) {
                   4926: 		    &scantron_get_correction($r,$i,$scan_record,
                   4927: 					     \%scantron_config,
                   4928: 					     $line,'duplicateID',$username);
1.194     albertel 4929: 		    return(1,$currentphase);
1.157     albertel 4930: 		} elsif (!defined($username)) {
                   4931: 		    &scantron_get_correction($r,$i,$scan_record,
                   4932: 					     \%scantron_config,
                   4933: 					     $line,'incorrectID');
1.194     albertel 4934: 		    return(1,$currentphase);
1.157     albertel 4935: 		}
                   4936: 		$found{'usernames'}{$username}++;
                   4937: 	    } else {
                   4938: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   4939: 					 $line,'incorrectID');
1.194     albertel 4940: 		return(1,$currentphase);
1.157     albertel 4941: 	    }
                   4942: 	}
                   4943:     }
                   4944: 
                   4945:     return (0,$currentphase+1);
                   4946: }
                   4947: 
                   4948: sub scantron_get_correction {
                   4949:     my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
                   4950: 
                   4951: #FIXME in the case of a duplicated ID the previous line, probaly need
                   4952: #to show both the current line and the previous one and allow skipping
                   4953: #the previous one or the current one
                   4954: 
1.161     albertel 4955:     $r->print("<p><b>An error was detected ($error)</b>");
1.157     albertel 4956:     if ( defined($$scan_record{'scantron.PaperID'}) ) {
                   4957: 	$r->print(" for PaperID <tt>".
                   4958: 		  $$scan_record{'scantron.PaperID'}."</tt> \n");
                   4959:     } else {
                   4960: 	$r->print(" in scanline $i <pre>".
                   4961: 		  $line."</pre> \n");
                   4962:     }
1.242     albertel 4963:     my $message="<p>The ID on the form is  <tt>".
                   4964: 	$$scan_record{'scantron.ID'}."</tt><br />\n".
                   4965: 	"The name on the paper is ".
                   4966: 	$$scan_record{'scantron.LastName'}.",".
                   4967: 	$$scan_record{'scantron.FirstName'}."</p>";
                   4968: 
1.157     albertel 4969:     $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
                   4970:     $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
                   4971:     if ($error =~ /ID$/) {
1.186     albertel 4972: 	if ($error eq 'incorrectID') {
1.157     albertel 4973: 	    $r->print("The encoded ID is not in the classlist</p>\n");
                   4974: 	} elsif ($error eq 'duplicateID') {
                   4975: 	    $r->print("The encoded ID has also been used by a previous paper $arg</p>\n");
                   4976: 	}
1.242     albertel 4977: 	$r->print($message);
1.157     albertel 4978: 	$r->print("<p>How should I handle this? <br /> \n");
                   4979: 	$r->print("\n<ul><li> ");
                   4980: 	#FIXME it would be nice if this sent back the user ID and
                   4981: 	#could do partial userID matches
                   4982: 	$r->print(&Apache::loncommon::selectstudent_link('scantronupload',
                   4983: 				       'scantron_username','scantron_domain'));
                   4984: 	$r->print(": <input type='text' name='scantron_username' value='' />");
                   4985: 	$r->print("\n@".
1.257     albertel 4986: 		 &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157     albertel 4987: 
                   4988: 	$r->print('</li>');
1.186     albertel 4989:     } elsif ($error =~ /CODE$/) {
                   4990: 	if ($error eq 'incorrectCODE') {
1.187     albertel 4991: 	    $r->print("</p><p>The encoded CODE is not in the list of possible CODEs</p>\n");
1.186     albertel 4992: 	} elsif ($error eq 'duplicateCODE') {
1.194     albertel 4993: 	    $r->print("</p><p>The encoded CODE has also been used by a previous paper ".join(', ',@{$arg}).", and CODEs are supposed to be unique</p>\n");
1.186     albertel 4994: 	}
1.224     albertel 4995: 	$r->print("<p>The CODE on the form is  <tt>'".
                   4996: 		  $$scan_record{'scantron.CODE'}."'</tt><br />\n");
1.242     albertel 4997: 	$r->print($message);
1.186     albertel 4998: 	$r->print("<p>How should I handle this? <br /> \n");
1.187     albertel 4999: 	$r->print("\n<br /> ");
1.194     albertel 5000: 	my $i=0;
1.273     albertel 5001: 	if ($error eq 'incorrectCODE' 
                   5002: 	    && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194     albertel 5003: 	    my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278     albertel 5004: 	    if ($closest > 0) {
                   5005: 		foreach my $testcode (@{$closest}) {
                   5006: 		    my $checked='';
                   5007: 		    if (!$i) { $checked=' checked="on" '; }
                   5008: 		    $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_closest_$i' $checked /> Use the similar CODE <b><tt>".$testcode."</tt></b> instead.</label><input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
                   5009: 		    $r->print("\n<br />");
                   5010: 		    $i++;
                   5011: 		}
1.194     albertel 5012: 	    }
                   5013: 	}
1.273     albertel 5014: 	if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
                   5015: 	    my $checked; if (!$i) { $checked=' checked="on" '; }
                   5016: 	    $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_unfound' $checked /> Use the CODE <b><tt>".$$scan_record{'scantron.CODE'}."</tt></b> that is was on the paper, ignoring the error.</label>");
                   5017: 	    $r->print("\n<br />");
                   5018: 	}
1.194     albertel 5019: 
1.188     albertel 5020: 	$r->print(<<ENDSCRIPT);
                   5021: <script type="text/javascript">
                   5022: function change_radio(field) {
1.190     albertel 5023:     var slct=document.scantronupload.scantron_CODE_resolution;
1.188     albertel 5024:     var i;
                   5025:     for (i=0;i<slct.length;i++) {
                   5026:         if (slct[i].value==field) { slct[i].checked=true; }
                   5027:     }
                   5028: }
                   5029: </script>
                   5030: ENDSCRIPT
1.187     albertel 5031: 	my $href="/adm/pickcode?".
                   5032: 	   "form=".&Apache::lonnet::escape("scantronupload").
1.257     albertel 5033: 	   "&scantron_format=".&Apache::lonnet::escape($env{'form.scantron_format'}).
                   5034: 	   "&scantron_CODElist=".&Apache::lonnet::escape($env{'form.scantron_CODElist'}).
1.187     albertel 5035: 	   "&curCODE=".&Apache::lonnet::escape($$scan_record{'scantron.CODE'}).
1.257     albertel 5036: 	   "&scantron_selectfile=".&Apache::lonnet::escape($env{'form.scantron_selectfile'});
1.272     albertel 5037: 	$r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_found' /> <a target='_blank' href='$href'>Select</a> a CODE from the list of all CODEs and use it.</label> Selected CODE is <input readonly='true' type='text' size='8' name='scantron_CODE_selectedvalue' onfocus=\"javascript:change_radio('use_found')\" onchange=\"javascript:change_radio('use_found')\" />");
1.187     albertel 5038: 	$r->print("\n<br />");
1.272     albertel 5039: 	$r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_typed' /> Use </label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" /> as the CODE.");
1.187     albertel 5040: 	$r->print("\n<br /><br />");
1.157     albertel 5041:     } elsif ($error eq 'doublebubble') {
                   5042: 	$r->print("<p>There have been multiple bubbles scanned for a some question(s)</p>\n");
                   5043: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
                   5044: 		  join(',',@{$arg}).'" />');
1.242     albertel 5045: 	$r->print($message);
1.157     albertel 5046: 	$r->print("<p>Please indicate which bubble should be used for grading</p>");
                   5047: 	foreach my $question (@{$arg}) {
                   5048: 	    my $selected=$$scan_record{"scantron.$question.answer"};
                   5049: 	    &scantron_bubble_selector($r,$scan_config,$question,split('',$selected));
                   5050: 	}
                   5051:     } elsif ($error eq 'missingbubble') {
                   5052: 	$r->print("<p>There have been <b>no</b> bubbles scanned for some question(s)</p>\n");
1.242     albertel 5053: 	$r->print($message);
1.157     albertel 5054: 	$r->print("<p>Please indicate which bubble should be used for grading</p>");
                   5055: 	$r->print("Some questions have no scanned bubbles\n");
                   5056: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
                   5057: 		  join(',',@{$arg}).'" />');
                   5058: 	foreach my $question (@{$arg}) {
                   5059: 	    my $selected=$$scan_record{"scantron.$question.answer"};
                   5060: 	    &scantron_bubble_selector($r,$scan_config,$question);
                   5061: 	}
                   5062:     } else {
                   5063: 	$r->print("\n<ul>");
                   5064:     }
                   5065:     $r->print("\n</li></ul>");
                   5066: 
                   5067: }
                   5068: 
                   5069: sub scantron_bubble_selector {
                   5070:     my ($r,$scan_config,$quest,@selected)=@_;
                   5071:     my $max=$$scan_config{'Qlength'};
1.274     albertel 5072: 
                   5073:     my $scmode=$$scan_config{'Qon'};
                   5074:     if ($scmode eq 'number' || $scmode eq 'letter') { $max=10; }	     
                   5075: 
1.157     albertel 5076:     my @alphabet=('A'..'Z');
                   5077:     $r->print("<table border='1'><tr><td rowspan='2'>$quest</td>");
                   5078:     for (my $i=0;$i<$max+1;$i++) {
1.274     albertel 5079: 	$r->print("\n".'<td align="center">');
1.157     albertel 5080: 	if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
                   5081: 	else { $r->print('&nbsp;'); }
                   5082: 	$r->print('</td>');
                   5083:     }
1.274     albertel 5084:     $r->print('</tr><tr>');
1.157     albertel 5085:     for (my $i=0;$i<$max;$i++) {
1.274     albertel 5086: 	$r->print("\n".
                   5087: 		  '<td><label><input type="radio" name="scantron_correct_Q_'.
1.272     albertel 5088: 		  $quest.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
1.157     albertel 5089:     }
1.272     albertel 5090:     $r->print('<td><label><input type="radio" name="scantron_correct_Q_'.
                   5091: 	      $quest.'" value="none" /> No bubble </label></td>');
1.157     albertel 5092:     $r->print('</tr></table>');
                   5093: }
                   5094: 
1.194     albertel 5095: sub num_matches {
                   5096:     my ($orig,$code) = @_;
                   5097:     my @code=split(//,$code);
                   5098:     my @orig=split(//,$orig);
                   5099:     my $same=0;
                   5100:     for (my $i=0;$i<scalar(@code);$i++) {
                   5101: 	if ($code[$i] eq $orig[$i]) { $same++; }
                   5102:     }
                   5103:     return $same;
                   5104: }
                   5105: 
                   5106: sub scantron_get_closely_matching_CODEs {
                   5107:     my ($allcodes,$CODE)=@_;
                   5108:     my @CODEs;
                   5109:     foreach my $testcode (sort(keys(%{$allcodes}))) {
                   5110: 	push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
                   5111:     }
                   5112: 
                   5113:     return ($#CODEs,$CODEs[-1]);
                   5114: }
                   5115: 
                   5116: sub get_codes {
1.280     foxr     5117:     my ($old_name, $cdom, $cnum) = @_;
                   5118:     if (!$old_name) {
                   5119: 	$old_name=$env{'form.scantron_CODElist'};
                   5120:     }
                   5121:     if (!$cdom) {
                   5122: 	$cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
                   5123:     }
                   5124:     if (!$cnum) {
                   5125: 	$cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
                   5126:     }
1.278     albertel 5127:     my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
                   5128: 				    $cdom,$cnum);
                   5129:     my %allcodes;
                   5130:     if ($result{"type\0$old_name"} eq 'number') {
                   5131: 	%allcodes=map {($_,1)} split(',',$result{$old_name});
                   5132:     } else {
                   5133: 	%allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
                   5134:     }
1.194     albertel 5135:     return %allcodes;
                   5136: }
                   5137: 
1.157     albertel 5138: sub scantron_validate_CODE {
                   5139:     my ($r,$currentphase) = @_;
1.257     albertel 5140:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186     albertel 5141:     if ($scantron_config{'CODElocation'} &&
                   5142: 	$scantron_config{'CODEstart'} &&
                   5143: 	$scantron_config{'CODElength'}) {
1.257     albertel 5144: 	if (!defined($env{'form.scantron_CODElist'})) {
1.186     albertel 5145: 	    &FIXME_blow_up()
                   5146: 	}
                   5147:     } else {
                   5148: 	return (0,$currentphase+1);
                   5149:     }
                   5150:     
                   5151:     my %usedCODEs;
                   5152: 
1.194     albertel 5153:     my %allcodes=&get_codes();
1.186     albertel 5154: 
                   5155:     my ($scanlines,$scan_data)=&scantron_getfile();
                   5156:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 5157: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186     albertel 5158: 	if ($line=~/^[\s\cz]*$/) { next; }
                   5159: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   5160: 						 $scan_data);
                   5161: 	my $CODE=$$scan_record{'scantron.CODE'};
                   5162: 	my $error=0;
1.224     albertel 5163: 	if (!&Apache::lonnet::validCODE($CODE)) {
                   5164: 	    &scantron_get_correction($r,$i,$scan_record,
                   5165: 				     \%scantron_config,
                   5166: 				     $line,'incorrectCODE',\%allcodes);
                   5167: 	    return(1,$currentphase);
                   5168: 	}
1.221     albertel 5169: 	if (%allcodes && !exists($allcodes{$CODE}) 
                   5170: 	    && !$$scan_record{'scantron.useCODE'}) {
1.186     albertel 5171: 	    &scantron_get_correction($r,$i,$scan_record,
                   5172: 				     \%scantron_config,
1.194     albertel 5173: 				     $line,'incorrectCODE',\%allcodes);
                   5174: 	    return(1,$currentphase);
1.186     albertel 5175: 	}
1.214     albertel 5176: 	if (exists($usedCODEs{$CODE}) 
1.257     albertel 5177: 	    && $env{'form.scantron_CODEunique'} eq 'yes'
1.192     albertel 5178: 	    && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186     albertel 5179: 	    &scantron_get_correction($r,$i,$scan_record,
                   5180: 				     \%scantron_config,
1.194     albertel 5181: 				     $line,'duplicateCODE',$usedCODEs{$CODE});
                   5182: 	    return(1,$currentphase);
1.186     albertel 5183: 	}
1.194     albertel 5184: 	push (@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186     albertel 5185:     }
1.157     albertel 5186:     return (0,$currentphase+1);
                   5187: }
                   5188: 
                   5189: sub scantron_validate_doublebubble {
                   5190:     my ($r,$currentphase) = @_;
                   5191:     #get student info
                   5192:     my $classlist=&Apache::loncoursedata::get_classlist();
                   5193:     my %idmap=&username_to_idmap($classlist);
                   5194: 
                   5195:     #get scantron line setup
1.257     albertel 5196:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 5197:     my ($scanlines,$scan_data)=&scantron_getfile();
                   5198:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 5199: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 5200: 	if ($line=~/^[\s\cz]*$/) { next; }
                   5201: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   5202: 						 $scan_data);
                   5203: 	if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
                   5204: 	&scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
                   5205: 				 'doublebubble',
                   5206: 				 $$scan_record{'scantron.doubleerror'});
                   5207:     	return (1,$currentphase);
                   5208:     }
                   5209:     return (0,$currentphase+1);
                   5210: }
                   5211: 
1.191     albertel 5212: sub scantron_get_maxbubble {
                   5213:     my ($r)=@_;
1.257     albertel 5214:     if (defined($env{'form.scantron_maxbubble'}) &&
                   5215: 	$env{'form.scantron_maxbubble'}) {
                   5216: 	return $env{'form.scantron_maxbubble'};
1.191     albertel 5217:     }
                   5218:     my $navmap=Apache::lonnavmaps::navmap->new();
                   5219:     my (undef,undef,$sequence)=
1.257     albertel 5220: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.191     albertel 5221:     my $map=$navmap->getResourceByUrl($sequence);
                   5222:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
                   5223:     &Apache::lonnet::delenv('form.counter');
                   5224:     foreach my $resource (@resources) {
1.234     albertel 5225: 	my $result=&Apache::lonnet::ssi($resource->src().'?symb='.&Apache::lonnet::escape($resource->symb()));
1.191     albertel 5226:     }
                   5227:     &Apache::lonnet::delenv('scantron\.');
1.257     albertel 5228:     my $envfile=$env{'user.environment'};
1.191     albertel 5229:     $envfile=~/\/([^\/]+)\.id$/;
                   5230:     $envfile=$1;
                   5231:     &Apache::lonnet::transfer_profile_to_env($r->dir_config('lonIDsDir'),
                   5232: 					     $envfile);
1.257     albertel 5233:     $env{'form.scantron_maxbubble'}=$env{'form.counter'}-1;
                   5234:     return $env{'form.scantron_maxbubble'};
1.191     albertel 5235: }
                   5236: 
1.157     albertel 5237: sub scantron_validate_missingbubbles {
                   5238:     my ($r,$currentphase) = @_;
                   5239:     #get student info
                   5240:     my $classlist=&Apache::loncoursedata::get_classlist();
                   5241:     my %idmap=&username_to_idmap($classlist);
                   5242: 
                   5243:     #get scantron line setup
1.257     albertel 5244:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 5245:     my ($scanlines,$scan_data)=&scantron_getfile();
1.191     albertel 5246:     my $max_bubble=&scantron_get_maxbubble();
1.157     albertel 5247:     if (!$max_bubble) { $max_bubble=2**31; }
                   5248:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 5249: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 5250: 	if ($line=~/^[\s\cz]*$/) { next; }
                   5251: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   5252: 						 $scan_data);
                   5253: 	if (!defined($$scan_record{'scantron.missingerror'})) { next; }
                   5254: 	my @to_correct;
                   5255: 	foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
                   5256: 	    if ($missing > $max_bubble) { next; }
                   5257: 	    push(@to_correct,$missing);
                   5258: 	}
                   5259: 	if (@to_correct) {
                   5260: 	    &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   5261: 				     $line,'missingbubble',\@to_correct);
                   5262: 	    return (1,$currentphase);
                   5263: 	}
                   5264: 
                   5265:     }
                   5266:     return (0,$currentphase+1);
                   5267: }
                   5268: 
1.82      albertel 5269: sub scantron_process_students {
1.75      albertel 5270:     my ($r) = @_;
1.257     albertel 5271:     my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.81      albertel 5272:     my ($symb,$url)=&get_symb_and_url($r);
                   5273:     if (!$symb) {return '';}
                   5274:     my $default_form_data=&defaultFormData($symb,$url);
1.82      albertel 5275: 
1.257     albertel 5276:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 5277:     my ($scanlines,$scan_data)=&scantron_getfile();
1.82      albertel 5278:     my $classlist=&Apache::loncoursedata::get_classlist();
                   5279:     my %idmap=&username_to_idmap($classlist);
1.132     bowersj2 5280:     my $navmap=Apache::lonnavmaps::navmap->new();
1.83      albertel 5281:     my $map=$navmap->getResourceByUrl($sequence);
                   5282:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.140     albertel 5283: #    $r->print("geto ".scalar(@resources)."<br />");
1.82      albertel 5284:     my $result= <<SCANTRONFORM;
1.81      albertel 5285: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
                   5286:   <input type="hidden" name="command" value="scantron_configphase" />
                   5287:   $default_form_data
                   5288: SCANTRONFORM
1.82      albertel 5289:     $r->print($result);
                   5290: 
                   5291:     my @delayqueue;
1.140     albertel 5292:     my %completedstudents;
                   5293:     
1.200     albertel 5294:     my $count=&get_todo_count($scanlines,$scan_data);
1.157     albertel 5295:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
1.200     albertel 5296:  				    'Scantron Progress',$count,
1.195     albertel 5297: 				    'inline',undef,'scantronupload');
1.140     albertel 5298:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
                   5299: 					  'Processing first student');
                   5300:     my $start=&Time::HiRes::time();
1.158     albertel 5301:     my $i=-1;
1.200     albertel 5302:     my ($uname,$udom,$started);
1.157     albertel 5303:     while ($i<$scanlines->{'count'}) {
                   5304:  	($uname,$udom)=('','');
                   5305:  	$i++;
1.200     albertel 5306:  	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 5307:  	if ($line=~/^[\s\cz]*$/) { next; }
1.200     albertel 5308: 	if ($started) {
                   5309: 	    &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                   5310: 						     'last student');
                   5311: 	}
                   5312: 	$started=1;
1.157     albertel 5313:  	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   5314:  						 $scan_data);
                   5315:  	unless ($uname=&scantron_find_student($scan_record,$scan_data,
                   5316:  					      \%idmap,$i)) {
                   5317:   	    &scantron_add_delay(\@delayqueue,$line,
                   5318:  				'Unable to find a student that matches',1);
                   5319:  	    next;
                   5320:   	}
                   5321:  	if (exists $completedstudents{$uname}) {
                   5322:  	    &scantron_add_delay(\@delayqueue,$line,
                   5323:  				'Student '.$uname.' has multiple sheets',2);
                   5324:  	    next;
                   5325:  	}
                   5326:   	($uname,$udom)=split(/:/,$uname);
                   5327:   	&Apache::lonnet::delenv('form.counter');
                   5328:   	&Apache::lonnet::appenv(%$scan_record);
1.161     albertel 5329: 	
                   5330: 	my $i=0;
1.83      albertel 5331: 	foreach my $resource (@resources) {
1.85      albertel 5332: 	    $i++;
1.193     albertel 5333: 	    my %form=('submitted'     =>'scantron',
                   5334: 		      'grade_target'  =>'grade',
                   5335: 		      'grade_username'=>$uname,
                   5336: 		      'grade_domain'  =>$udom,
1.257     albertel 5337: 		      'grade_courseid'=>$env{'request.course.id'},
1.193     albertel 5338: 		      'grade_symb'    =>$resource->symb());
                   5339: 	    if (exists($scan_record->{'scantron.CODE'}) &&
                   5340: 		$scan_record->{'scantron.CODE'}) {
                   5341: 		$form{'CODE'}=$scan_record->{'scantron.CODE'};
1.224     albertel 5342: 	    } else {
                   5343: 		$form{'CODE'}='';
1.193     albertel 5344: 	    }
                   5345: 	    my $result=&Apache::lonnet::ssi($resource->src(),%form);
1.227     albertel 5346: 	    if ($result ne '') {
                   5347: 		&Apache::lonnet::logthis("scantron grading error -> $result");
1.257     albertel 5348: 		&Apache::lonnet::logthis("scantron grading error info name $uname domain $udom course $env{'request.course.id'} url ".$resource->src());
1.227     albertel 5349: 	    }
1.213     albertel 5350: 	    if (&Apache::loncommon::connection_aborted($r)) { last; }
1.83      albertel 5351: 	}
1.140     albertel 5352: 	$completedstudents{$uname}={'line'=>$line};
1.213     albertel 5353: 	if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140     albertel 5354:     } continue {
1.85      albertel 5355: 	&Apache::lonnet::delenv('form.counter');
1.83      albertel 5356: 	&Apache::lonnet::delenv('scantron\.');
1.82      albertel 5357:     }
1.140     albertel 5358:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.172     albertel 5359: #    my $lasttime = &Time::HiRes::time()-$start;
                   5360: #    $r->print("<p>took $lasttime</p>");
1.140     albertel 5361: 
1.200     albertel 5362:     $r->print("</form>");
1.157     albertel 5363:     $r->print(&show_grading_menu_form($symb,$url));
                   5364:     return '';
1.75      albertel 5365: }
1.157     albertel 5366: 
                   5367: sub scantron_upload_scantron_data {
                   5368:     my ($r)=@_;
1.257     albertel 5369:     $r->print(&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}));
1.157     albertel 5370:     my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181     albertel 5371: 							  'domainid',
                   5372: 							  'coursename');
1.257     albertel 5373:     my $domsel=&Apache::loncommon::select_dom_form($env{'request.role.domain'},
1.157     albertel 5374: 						   'domainid');
1.173     albertel 5375:     my $default_form_data=&defaultFormData(&get_symb_and_url($r,1));
1.157     albertel 5376:     $r->print(<<UPLOAD);
                   5377: <script type="text/javascript" language="javascript">
                   5378:     function checkUpload(formname) {
                   5379: 	if (formname.upfile.value == "") {
                   5380: 	    alert("Please use the browse button to select a file from your local directory.");
                   5381: 	    return false;
                   5382: 	}
                   5383: 	formname.submit();
                   5384:     }
                   5385: </script>
                   5386: 
                   5387: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
1.162     albertel 5388: $default_form_data
1.181     albertel 5389: <table>
                   5390: <tr><td>$select_link </td></tr>
                   5391: <tr><td>Course ID:   </td><td><input name='courseid' type='text' />  </td></tr>
                   5392: <tr><td>Course Name: </td><td><input name='coursename' type='text' /></td></tr>
                   5393: <tr><td>Domain:      </td><td>$domsel                                </td></tr>
                   5394: <tr><td>File to upload:</td><td><input type="file" name="upfile" size="50" /></td></tr>
                   5395: </table>
1.157     albertel 5396: <input name='command' value='scantronupload_save' type='hidden' />
                   5397: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
                   5398: </form>
                   5399: UPLOAD
                   5400:     return '';
                   5401: }
                   5402: 
                   5403: sub scantron_upload_scantron_data_save {
                   5404:     my($r)=@_;
1.182     albertel 5405:     my ($symb,$url)=&get_symb_and_url($r,1);
                   5406:     my $doanotherupload=
                   5407: 	'<br /><form action="/adm/grades" method="post">'."\n".
                   5408: 	'<input type="hidden" name="command" value="scantronupload" />'."\n".
                   5409: 	'<input type="submit" name="submit" value="Do Another Upload" />'."\n".
                   5410: 	'</form>'."\n";
1.257     albertel 5411:     if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162     albertel 5412: 	!&Apache::lonnet::allowed('usc',
1.257     albertel 5413: 			    $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.162     albertel 5414: 	$r->print("You are not allowed to upload Scantron data to the requested course.<br />");
1.182     albertel 5415: 	if ($symb) {
                   5416: 	    $r->print(&show_grading_menu_form($symb,$url));
                   5417: 	} else {
                   5418: 	    $r->print($doanotherupload);
                   5419: 	}
1.162     albertel 5420: 	return '';
                   5421:     }
1.257     albertel 5422:     my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.211     ng       5423:     $r->print("Doing upload to ".$coursedata{'description'}." <br />");
1.257     albertel 5424:     my $fname=$env{'form.upfile.filename'};
1.157     albertel 5425:     #FIXME
                   5426:     #copied from lonnet::userfileupload()
                   5427:     #make that function able to target a specified course
                   5428:     # Replace Windows backslashes by forward slashes
                   5429:     $fname=~s/\\/\//g;
                   5430:     # Get rid of everything but the actual filename
                   5431:     $fname=~s/^.*\/([^\/]+)$/$1/;
                   5432:     # Replace spaces by underscores
                   5433:     $fname=~s/\s+/\_/g;
                   5434:     # Replace all other weird characters by nothing
                   5435:     $fname=~s/[^\w\.\-]//g;
                   5436:     # See if there is anything left
                   5437:     unless ($fname) { return 'error: no uploaded file'; }
1.209     ng       5438:     my $uploadedfile=$fname;
1.157     albertel 5439:     $fname='scantron_orig_'.$fname;
1.257     albertel 5440:     if (length($env{'form.upfile'}) < 2) {
                   5441: 	$r->print("<font color='red'>Error:</font> The file you attempted to upload, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>, contained no information. Please check that you entered the correct filename.");
1.183     albertel 5442:     } else {
1.275     albertel 5443: 	my $result=&Apache::lonnet::finishuserfileupload($env{'form.courseid'},$env{'form.domainid'},'upfile',$fname);
1.210     albertel 5444: 	if ($result =~ m|^/uploaded/|) {
1.257     albertel 5445: 	    $r->print("<font color='green'>Success:</font> Successfully uploaded ".(length($env{'form.upfile'})-1)." bytes of data into location <tt>".$result."</tt>");
1.210     albertel 5446: 	} else {
1.257     albertel 5447: 	    $r->print("<font color='red'>Error:</font> An error (".$result.") occurred when attempting to upload the file, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>");
1.183     albertel 5448: 	}
                   5449:     }
1.174     albertel 5450:     if ($symb) {
1.209     ng       5451: 	$r->print(&scantron_selectphase($r,$uploadedfile));
1.174     albertel 5452:     } else {
1.182     albertel 5453: 	$r->print($doanotherupload);
1.174     albertel 5454:     }
1.157     albertel 5455:     return '';
                   5456: }
                   5457: 
1.202     albertel 5458: sub valid_file {
                   5459:     my ($requested_file)=@_;
                   5460:     foreach my $filename (sort(&scantron_filenames())) {
                   5461: 	&Apache::lonnet::logthis("$requested_file  $filename");
                   5462: 	if ($requested_file eq $filename) { return 1; }
                   5463:     }
                   5464:     return 0;
                   5465: }
                   5466: 
                   5467: sub scantron_download_scantron_data {
                   5468:     my ($r)=@_;
                   5469:     my $default_form_data=&defaultFormData(&get_symb_and_url($r,1));
1.257     albertel 5470:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   5471:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   5472:     my $file=$env{'form.scantron_selectfile'};
1.202     albertel 5473:     if (! &valid_file($file)) {
                   5474: 	$r->print(<<ERROR);
                   5475: 	<p>
                   5476: 	    The requested file name was invalid.
                   5477:         </p>
                   5478: ERROR
                   5479: 	$r->print(&show_grading_menu_form(&get_symb_and_url($r,1)));
                   5480: 	return;
                   5481:     }
                   5482:     my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
                   5483:     my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
                   5484:     my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
                   5485:     &Apache::lonnet::allowuploaded('/adm/grades',$orig);
                   5486:     &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
                   5487:     &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
                   5488:     $r->print(<<DOWNLOAD);
                   5489:     <p>
                   5490: 	<a href="$orig">Original</a> file as uploaded by the scantron office.
                   5491:     </p>
                   5492:     <p>
                   5493: 	<a href="$corrected">Corrections</a>, a file of corrected records that were used in grading.
                   5494:     </p>
                   5495:     <p>
                   5496: 	<a href="$skipped">Skipped</a>, a file of records that were skipped.
                   5497:     </p>
                   5498: DOWNLOAD
                   5499:     $r->print(&show_grading_menu_form(&get_symb_and_url($r,1)));
                   5500:     return '';
                   5501: }
1.157     albertel 5502: 
1.75      albertel 5503: #-------- end of section for handling grading scantron forms -------
                   5504: #
                   5505: #-------------------------------------------------------------------
                   5506: 
1.72      ng       5507: #-------------------------- Menu interface -------------------------
                   5508: #
                   5509: #--- Show a Grading Menu button - Calls the next routine ---
                   5510: sub show_grading_menu_form {
                   5511:     my ($symb,$url)=@_;
1.125     ng       5512:     my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.72      ng       5513: 	'<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
                   5514: 	'<input type="hidden" name="url" value="'.$url.'" />'."\n".
1.257     albertel 5515: 	'<input type="hidden" name="saveState"  value="'.$env{'form.saveState'}.'" />'."\n".
1.72      ng       5516: 	'<input type="hidden" name="command" value="gradingmenu" />'."\n".
                   5517: 	'<input type="submit" name="submit" value="Grading Menu" />'."\n".
                   5518: 	'</form>'."\n";
                   5519:     return $result;
                   5520: }
                   5521: 
1.77      ng       5522: # -- Retrieve choices for grading form
                   5523: sub savedState {
                   5524:     my %savedState = ();
1.257     albertel 5525:     if ($env{'form.saveState'}) {
                   5526: 	foreach (split(/:/,$env{'form.saveState'})) {
1.77      ng       5527: 	    my ($key,$value) = split(/=/,$_,2);
                   5528: 	    $savedState{$key} = $value;
                   5529: 	}
                   5530:     }
                   5531:     return \%savedState;
                   5532: }
1.76      ng       5533: 
1.72      ng       5534: #--- Displays the main menu page -------
                   5535: sub gradingmenu {
                   5536:     my ($request) = @_;
                   5537:     my ($symb,$url)=&get_symb_and_url($request);
                   5538:     if (!$symb) {return '';}
1.76      ng       5539:     my $probTitle = &Apache::lonnet::gettitle($symb);
1.72      ng       5540: 
                   5541:     $request->print(<<GRADINGMENUJS);
                   5542: <script type="text/javascript" language="javascript">
1.116     ng       5543:     function checkChoice(formname,val,cmdx) {
                   5544: 	if (val <= 2) {
                   5545: 	    var cmd = radioSelection(formname.radioChoice);
1.118     ng       5546: 	    var cmdsave = cmd;
1.116     ng       5547: 	} else {
                   5548: 	    cmd = cmdx;
1.118     ng       5549: 	    cmdsave = 'submission';
1.116     ng       5550: 	}
                   5551: 	formname.command.value = cmd;
1.118     ng       5552: 	formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145     albertel 5553: 	    ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116     ng       5554: 	if (val < 5) formname.submit();
                   5555: 	if (val == 5) {
1.72      ng       5556: 	    if (!checkReceiptNo(formname,'notOK')) { return false;}
                   5557: 	    formname.submit();
                   5558: 	}
1.238     albertel 5559: 	if (val < 7) formname.submit();
1.72      ng       5560:     }
                   5561: 
                   5562:     function checkReceiptNo(formname,nospace) {
                   5563: 	var receiptNo = formname.receipt.value;
                   5564: 	var checkOpt = false;
                   5565: 	if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
                   5566: 	if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
                   5567: 	if (checkOpt) {
                   5568: 	    alert("Please enter a receipt number given by a student in the receipt box.");
                   5569: 	    formname.receipt.value = "";
                   5570: 	    formname.receipt.focus();
                   5571: 	    return false;
                   5572: 	}
                   5573: 	return true;
                   5574:     }
                   5575: </script>
                   5576: GRADINGMENUJS
1.118     ng       5577:     &commonJSfunctions($request);
                   5578:     my $result='<h3>&nbsp;<font color="#339933">Manual Grading/View Submission</font></h3>';
1.122     ng       5579:     my ($table,undef,$hdgrade) = &showResourceInfo($url,$probTitle);
1.118     ng       5580:     $result.=$table;
1.76      ng       5581:     my (undef,$sections) = &getclasslist('all','0');
1.77      ng       5582:     my $savedState = &savedState();
1.118     ng       5583:     my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77      ng       5584:     my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118     ng       5585:     my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77      ng       5586:     my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72      ng       5587: 
                   5588:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
                   5589: 	'<input type="hidden" name="symb"        value="'.$symb.'" />'."\n".
                   5590: 	'<input type="hidden" name="url"         value="'.$url.'" />'."\n".
                   5591: 	'<input type="hidden" name="handgrade"   value="'.$hdgrade.'" />'."\n".
                   5592: 	'<input type="hidden" name="probTitle"   value="'.$probTitle.'" />'."\n".
1.116     ng       5593: 	'<input type="hidden" name="command"     value="" />'."\n".
1.77      ng       5594: 	'<input type="hidden" name="saveState"   value="" />'."\n".
1.124     ng       5595: 	'<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72      ng       5596: 	'<input type="hidden" name="showgrading" value="yes" />'."\n";
                   5597: 
1.116     ng       5598:     $result.='<table width="100%" border=0><tr><td bgcolor=#777777>'."\n".
                   5599: 	'<table width=100% border=0><tr bgcolor="#e6ffff"><td colspan="2">'."\n".
1.72      ng       5600: 	'&nbsp;<b>Select a Grading/Viewing Option</b></td></tr>'."\n".
1.116     ng       5601: 	'<tr bgcolor="#ffffe6" valign="top"><td>'."\n";
                   5602: 
                   5603:     $result.='<table width="100%" border=0>';
                   5604:     $result.='<tr bgcolor="#ffffe6" valign="top"><td>'."\n".
1.167     sakharuk 5605: 	'&nbsp;'.&mt('Select Section').': <select name="section">'."\n";
1.116     ng       5606:     if (ref($sections)) {
1.155     albertel 5607: 	foreach (sort (@$sections)) {
                   5608: 	    $result.='<option value="'.$_.'" '.
                   5609: 		($saveSec eq $_ ? 'selected="on"':'').'>'.$_.'</option>'."\n";
                   5610: 	}
1.116     ng       5611:     }
1.238     albertel 5612:     $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="on"' : ''). '>all</option></select> &nbsp; ';
1.116     ng       5613: 
1.167     sakharuk 5614:     $result.=&mt('Student Status').':</b>'.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,undef);
1.72      ng       5615: 
1.116     ng       5616:     $result.='</td></tr>';
                   5617: 
1.288     albertel 5618:     $result.='<tr bgcolor="#ffffe6"valign="top"><td><label>'.
1.118     ng       5619: 	'<input type="radio" name="radioChoice" value="submission" '.
1.167     sakharuk 5620: 	($saveCmd eq 'submission' ? 'checked' : '').'> '.'<b>'.&mt('Current Resource').':</b> '.&mt('For one or more students').
1.288     albertel 5621: 	'</label> <select name="submitonly">'.
1.145     albertel 5622: 	'<option value="yes" '.
1.301     albertel 5623: 	($saveSub eq 'yes' ? 'selected="on"' : '').'>'.&mt('with submissions').'</option>'.
                   5624: 	'<option value="queued" '.
                   5625: 	($saveSub eq 'queued' ? 'selected="on"' : '').'>'.&mt('in grading queue').'</option>'.
1.145     albertel 5626: 	'<option value="graded" '.
1.301     albertel 5627: 	($saveSub eq 'graded' ? 'selected="on"' : '').'>'.&mt('with ungraded submissions').'</option>'.
1.156     albertel 5628: 	'<option value="incorrect" '.
1.301     albertel 5629: 	($saveSub eq 'incorrect' ? 'selected="on"' : '').'>'.&mt('with incorrect submissions').'</option>'.
1.145     albertel 5630: 	'<option value="all" '.
1.301     albertel 5631: 	($saveSub eq 'all' ? 'selected="on"' : '').'>'.&mt('with any status').'</option></select></td></tr>'."\n";
1.72      ng       5632: 
1.116     ng       5633:     $result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
1.288     albertel 5634: 	'<label><input type="radio" name="radioChoice" value="viewgrades" '.
1.76      ng       5635: 	($saveCmd eq 'viewgrades' ? 'checked' : '').'> '.
1.288     albertel 5636: 	'<b>Current Resource:</b> For all students in selected section or course</label></td></tr>'."\n";
1.72      ng       5637: 
1.118     ng       5638:     $result.='<tr bgcolor="#ffffe6" valign="top"><td>'.
1.288     albertel 5639: 	'<label><input type="radio" name="radioChoice" value="pickStudentPage" '.
1.118     ng       5640: 	($saveCmd eq 'pickStudentPage' ? 'checked' : '').'> '.
1.288     albertel 5641: 	'The <b>complete</b> set/page/sequence: For one student</label></td></tr>'."\n";
1.46      ng       5642: 
1.116     ng       5643:     $result.='<tr bgcolor="#ffffe6"><td><br />'.
1.126     ng       5644: 	'<input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="Next->" />'.
1.116     ng       5645: 	'</td></tr></table>'."\n";
                   5646: 
                   5647:     $result.='</td><td valign="top">';
                   5648: 
                   5649:     $result.='<table width="100%" border=0>';
                   5650:     $result.='<tr bgcolor="#ffffe6"><td>'.
1.184     www      5651: 	'<input type="button" onClick="javascript:checkChoice(this.form,\'3\',\'csvform\');" value="'.&mt('Upload').'" />'.
                   5652: 	' '.&mt('scores from file').' </td></tr>'."\n";
1.72      ng       5653: 
1.75      albertel 5654:     $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
1.116     ng       5655: 	'<input type="button" onClick="javascript:checkChoice(this.form,\'4\',\'scantron_selectphase\');'.
1.184     www      5656: 	'" value="'.&mt('Grade').'" /> scantron forms</td></tr>'."\n";
1.75      albertel 5657: 
1.257     albertel 5658:     if ((&Apache::lonnet::allowed('mgr',$env{'request.course.id'})) && ($symb)) {
1.72      ng       5659: 	$result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
1.184     www      5660: 	    '<input type="button" onClick="javascript:checkChoice(this.form,\'5\',\'verify\');" value="'.&mt('Verify').'" />'.
                   5661: 	    ' '.&mt('receipt').': '.
1.257     albertel 5662: 	    &Apache::lonnet::recprefix($env{'request.course.id'}).
1.72      ng       5663: 	    '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')">'.
                   5664: 	    '</td></tr>'."\n";
                   5665:     } 
1.238     albertel 5666:     $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
                   5667: 	'<input type="button" onClick="javascript:this.form.action=\'/adm/helper/resettimes.helper\';this.form.submit();'.
                   5668: 	'" value="'.&mt('Manage').'" /> access times.</td></tr>'."\n";
1.279     albertel 5669:     $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
                   5670: 	'<input type="button" onClick="javascript:this.form.command.value=\'codelist\';this.form.action=\'/adm/pickcode\';this.form.submit();'.
                   5671: 	'" value="'.&mt('View').'" /> saved CODEs.</td></tr>'."\n";
1.44      ng       5672: 
1.116     ng       5673:     $result.='</form></td></tr></table>'."\n".
1.72      ng       5674: 	'</td></tr></table>'."\n".
                   5675: 	'</td></tr></table>'."\n";
1.44      ng       5676:     return $result;
1.2       albertel 5677: }
                   5678: 
1.285     albertel 5679: sub reset_perm {
                   5680:     undef(%perm);
                   5681: }
                   5682: 
                   5683: sub init_perm {
                   5684:     &reset_perm();
1.300     albertel 5685:     foreach my $test_perm ('vgr','mgr','opa') {
                   5686: 
                   5687: 	my $scope = $env{'request.course.id'};
                   5688: 	if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
                   5689: 
                   5690: 	    $scope .= '/'.$env{'request.course.sec'};
                   5691: 	    if ( $perm{$test_perm}=
                   5692: 		 &Apache::lonnet::allowed($test_perm,$scope)) {
                   5693: 		$perm{$test_perm.'_section'}=$env{'request.course.sec'};
                   5694: 	    } else {
                   5695: 		delete($perm{$test_perm});
                   5696: 	    }
1.285     albertel 5697: 	}
                   5698:     }
                   5699: }
                   5700: 
1.1       albertel 5701: sub handler {
1.41      ng       5702:     my $request=$_[0];
1.102     albertel 5703: 
1.285     albertel 5704:     &reset_perm();
1.257     albertel 5705:     if ($env{'browser.mathml'}) {
1.141     www      5706: 	&Apache::loncommon::content_type($request,'text/xml');
1.41      ng       5707:     } else {
1.141     www      5708: 	&Apache::loncommon::content_type($request,'text/html');
1.41      ng       5709:     }
                   5710:     $request->send_http_header;
1.44      ng       5711:     return '' if $request->header_only;
1.41      ng       5712:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.257     albertel 5713:     my $url=$env{'form.url'};
                   5714:     my $symb=$env{'form.symb'};
1.160     albertel 5715:     my @commands=&Apache::loncommon::get_env_multiple('form.command');
                   5716:     my $command=$commands[0];
                   5717:     if ($#commands > 0) {
                   5718: 	&Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
                   5719:     }
1.41      ng       5720:     if (!$url) {
                   5721: 	my ($temp1,$temp2);
1.257     albertel 5722: 	($temp1,$temp2,$env{'form.url'})=&Apache::lonnet::decode_symb($symb);
                   5723: 	$url = $env{'form.url'};
1.41      ng       5724:     }
                   5725:     &send_header($request);
1.157     albertel 5726:     if ($url eq '' && $symb eq '' && $command eq '') {
1.257     albertel 5727: 	if ($env{'user.adv'}) {
                   5728: 	    if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
                   5729: 		($env{'form.codethree'})) {
                   5730: 		my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
                   5731: 		    $env{'form.codethree'};
1.41      ng       5732: 		my ($tsymb,$tuname,$tudom,$tcrsid)=
                   5733: 		    &Apache::lonnet::checkin($token);
                   5734: 		if ($tsymb) {
1.137     albertel 5735: 		    my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41      ng       5736: 		    if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.99      albertel 5737: 			$request->print(&Apache::lonnet::ssi_body('/res/'.$url,
                   5738: 					  ('grade_username' => $tuname,
                   5739: 					   'grade_domain' => $tudom,
                   5740: 					   'grade_courseid' => $tcrsid,
                   5741: 					   'grade_symb' => $tsymb)));
1.41      ng       5742: 		    } else {
1.45      ng       5743: 			$request->print('<h3>Not authorized: '.$token.'</h3>');
1.99      albertel 5744: 		    }
1.41      ng       5745: 		} else {
1.45      ng       5746: 		    $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41      ng       5747: 		}
1.14      www      5748: 	    } else {
1.41      ng       5749: 		$request->print(&Apache::lonxml::tokeninputfield());
                   5750: 	    }
                   5751: 	}
                   5752:     } else {
1.285     albertel 5753: 	&init_perm();
1.104     albertel 5754: 	if ($command eq 'submission' && $perm{'vgr'}) {
1.257     albertel 5755: 	    ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.103     albertel 5756: 	} elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68      ng       5757: 	    &pickStudentPage($request);
1.103     albertel 5758: 	} elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68      ng       5759: 	    &displayPage($request);
1.104     albertel 5760: 	} elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71      ng       5761: 	    &updateGradeByPage($request);
1.104     albertel 5762: 	} elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41      ng       5763: 	    &processGroup($request);
1.104     albertel 5764: 	} elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.41      ng       5765: 	    $request->print(&gradingmenu($request));
1.104     albertel 5766: 	} elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41      ng       5767: 	    $request->print(&viewgrades($request));
1.104     albertel 5768: 	} elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41      ng       5769: 	    $request->print(&processHandGrade($request));
1.106     albertel 5770: 	} elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41      ng       5771: 	    $request->print(&editgrades($request));
1.106     albertel 5772: 	} elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41      ng       5773: 	    $request->print(&verifyreceipt($request));
1.106     albertel 5774: 	} elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72      ng       5775: 	    $request->print(&upcsvScores_form($request));
1.106     albertel 5776: 	} elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41      ng       5777: 	    $request->print(&csvupload($request));
1.106     albertel 5778: 	} elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41      ng       5779: 	    $request->print(&csvuploadmap($request));
1.246     albertel 5780: 	} elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257     albertel 5781: 	    if ($env{'form.associate'} ne 'Reverse Association') {
1.246     albertel 5782: 		$request->print(&csvuploadoptions($request));
1.41      ng       5783: 	    } else {
1.257     albertel 5784: 		if ( $env{'form.upfile_associate'} ne 'reverse' ) {
                   5785: 		    $env{'form.upfile_associate'} = 'reverse';
1.41      ng       5786: 		} else {
1.257     albertel 5787: 		    $env{'form.upfile_associate'} = 'forward';
1.41      ng       5788: 		}
                   5789: 		$request->print(&csvuploadmap($request));
                   5790: 	    }
1.246     albertel 5791: 	} elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
                   5792: 	    $request->print(&csvuploadassign($request));
1.106     albertel 5793: 	} elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75      albertel 5794: 	    $request->print(&scantron_selectphase($request));
1.203     albertel 5795:  	} elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
                   5796:  	    $request->print(&scantron_do_warning($request));
1.142     albertel 5797: 	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
                   5798: 	    $request->print(&scantron_validate_file($request));
1.106     albertel 5799: 	} elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82      albertel 5800: 	    $request->print(&scantron_process_students($request));
1.157     albertel 5801:  	} elsif ($command eq 'scantronupload' && 
1.257     albertel 5802:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
                   5803: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162     albertel 5804:  	    $request->print(&scantron_upload_scantron_data($request)); 
1.157     albertel 5805:  	} elsif ($command eq 'scantronupload_save' &&
1.257     albertel 5806:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
                   5807: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157     albertel 5808:  	    $request->print(&scantron_upload_scantron_data_save($request));
1.202     albertel 5809:  	} elsif ($command eq 'scantron_download' &&
1.257     albertel 5810: 		 &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162     albertel 5811:  	    $request->print(&scantron_download_scantron_data($request));
1.106     albertel 5812: 	} elsif ($command) {
1.157     albertel 5813: 	    $request->print("Access Denied ($command)");
1.26      albertel 5814: 	}
1.2       albertel 5815:     }
1.41      ng       5816:     &send_footer($request);
1.44      ng       5817:     return '';
                   5818: }
                   5819: 
                   5820: sub send_header {
                   5821:     my ($request)= @_;
                   5822:     $request->print(&Apache::lontexconvert::header());
                   5823: #  $request->print("
                   5824: #<script>
                   5825: #remotewindow=open('','homeworkremote');
                   5826: #remotewindow.close();
                   5827: #</script>"); 
1.47      www      5828:     $request->print(&Apache::loncommon::bodytag('Grading'));
1.157     albertel 5829:     $request->rflush();
1.44      ng       5830: }
                   5831: 
                   5832: sub send_footer {
                   5833:     my ($request)= @_;
1.212     albertel 5834:     $request->print('</body></html>');
1.1       albertel 5835: }
                   5836: 
                   5837: 1;
                   5838: 
1.13      albertel 5839: __END__;

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