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

1.17      albertel    1: # The LearningOnline Network with CAPA
1.13      albertel    2: # The LON-CAPA Grading handler
1.17      albertel    3: #
1.180   ! albertel    4: # $Id: grades.pm,v 1.179 2004/03/04 14:09:47 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.13      albertel   28: # 2/9,2/13 Guy Albertelli
1.8       www        29: # 6/8 Gerd Kortemeyer
1.13      albertel   30: # 7/26 H.K. Ng
1.14      www        31: # 8/20 Gerd Kortemeyer
1.30      ng         32: # Year 2002
1.44      ng         33: # June-August H.K. Ng
1.68      ng         34: # Year 2003
1.71      ng         35: # February, March H.K. Ng
1.125     ng         36: # July, H. K. Ng
1.30      ng         37: #
1.1       albertel   38: 
                     39: package Apache::grades;
                     40: use strict;
                     41: use Apache::style;
                     42: use Apache::lonxml;
                     43: use Apache::lonnet;
1.3       albertel   44: use Apache::loncommon;
1.112     ng         45: use Apache::lonhtmlcommon;
1.68      ng         46: use Apache::lonnavmaps;
1.1       albertel   47: use Apache::lonhomework;
1.55      matthew    48: use Apache::loncoursedata;
1.38      ng         49: use Apache::lonmsg qw(:user_normal_msg);
1.1       albertel   50: use Apache::Constants qw(:common);
1.167     sakharuk   51: use Apache::lonlocal;
1.170     albertel   52: use String::Similarity;
1.87      www        53: 
                     54: my %oldessays=();
1.103     albertel   55: my %perm=();
1.1       albertel   56: 
1.68      ng         57: # ----- These first few routines are general use routines.----
1.44      ng         58: #
1.146     albertel   59: # --- Retrieve the parts from the metadata file.---
1.44      ng         60: sub getpartlist {
1.146     albertel   61:     my ($url,$symb) = @_;
                     62:     my $partorder = &Apache::lonnet::metadata($url, 'partorder');
                     63:     my @parts;
                     64:     if ($partorder) {
                     65: 	for my $part (split (/,/,$partorder)) {
                     66: 	    if (!&Apache::loncommon::check_if_partid_hidden($part,$symb)) {
                     67: 		push(@parts, $part);
                     68: 	    }
                     69: 	}	    
                     70:     } else {
                     71: 	my $metadata = &Apache::lonnet::metadata($url, 'packages');
                     72: 	foreach (split(/\,/,$metadata)) {
                     73: 	    if ($_ =~ /^part_(.*)$/) {
                     74: 		if (!&Apache::loncommon::check_if_partid_hidden($1,$symb)) {
                     75: 		    push(@parts, $1);
                     76: 		}
                     77: 	    }
1.41      ng         78: 	}
1.16      albertel   79:     }
1.146     albertel   80:     my @stores;
                     81:     foreach my $part (@parts) {
                     82: 	my (@metakeys) = split(/,/,&Apache::lonnet::metadata($url,'keys'));
                     83: 	foreach my $key (@metakeys) {
                     84: 	    if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
                     85: 	}
                     86:     }
                     87:     return @stores;
1.2       albertel   88: }
                     89: 
1.44      ng         90: # --- Get the symbolic name of a problem and the url
                     91: sub get_symb_and_url {
1.173     albertel   92:     my ($request,$silent) = @_;
1.44      ng         93:     (my $url=$ENV{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
1.41      ng         94:     my $symb=($ENV{'form.symb'} ne '' ? $ENV{'form.symb'} : (&Apache::lonnet::symbread($url)));
1.173     albertel   95:     if ($symb eq '') { 
                     96: 	if (!$silent) {
                     97: 	    $request->print("Unable to handle ambiguous references:$url:.");
                     98: 	    return ();
                     99: 	}
                    100:     }
1.44      ng        101:     return ($symb,$url);
1.32      ng        102: }
                    103: 
1.44      ng        104: # --- Retrieve the fullname for a user. Return lastname, first middle ---
                    105: # --- Generation is attached next to the lastname if it exists. ---
1.34      ng        106: sub get_fullname {
1.39      ng        107:     my ($uname,$udom) = @_;
1.34      ng        108:     my %name=&Apache::lonnet::get('environment', ['lastname','generation',
1.55      matthew   109: 						  'firstname','middlename'],
                    110:                                   $udom,$uname);
1.34      ng        111:     my $fullname;
                    112:     my ($tmp) = keys(%name);
                    113:     if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
1.55      matthew   114:         $fullname = &Apache::loncoursedata::ProcessFullName
                    115:             (@name{qw/lastname generation firstname middlename/});
                    116:     } else {
                    117:         &Apache::lonnet::logthis('grades.pm: no name data for '.$uname.
                    118:                                  '@'.$udom.':'.$tmp);
1.34      ng        119:     }
                    120:     return $fullname;
                    121: }
                    122: 
1.129     ng        123: #--- Format fullname, username:domain if different for display
                    124: #--- Use anywhere where the student names are listed
                    125: sub nameUserString {
                    126:     my ($type,$fullname,$uname,$udom) = @_;
                    127:     if ($type eq 'header') {
                    128: 	return '<b>&nbsp;Fullname&nbsp;</b><font color="#999999">(Username)</font>&nbsp;';
                    129:     } else {
                    130: 	return '&nbsp;'.$fullname.'<font color="#999999">&nbsp;('.$uname.
                    131: 	    ($ENV{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</font>';
                    132:     }
                    133: }
                    134: 
1.44      ng        135: #--- Get the partlist and the response type for a given problem. ---
                    136: #--- Indicate if a response type is coded handgraded or not. ---
1.39      ng        137: sub response_type {
1.125     ng        138:     my ($url,$symb) = shift;
                    139:     $symb=($ENV{'form.symb'} ne '' ? $ENV{'form.symb'} : (&Apache::lonnet::symbread($url))) if ($symb eq '');
1.41      ng        140:     my $allkeys = &Apache::lonnet::metadata($url,'keys');
1.154     albertel  141:     my %vPart;
                    142:     foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
                    143: 	$vPart{$partid}=1;
                    144:     }
1.41      ng        145:     my %seen = ();
1.147     albertel  146:     my (@partlist,%handgrade,%responseType);
1.41      ng        147:     foreach (split(/,/,&Apache::lonnet::metadata($url,'packages'))) {
1.147     albertel  148: 	if (/^\w+response_.*/) {
1.41      ng        149: 	    my ($responsetype,$part) = split(/_/,$_,2);
                    150: 	    my ($partid,$respid) = split(/_/,$part);
1.146     albertel  151: 	    if (&Apache::loncommon::check_if_partid_hidden($partid,$symb)) {
                    152: 		next;
                    153: 	    }
1.154     albertel  154: 	    if (%vPart && !exists($vPart{$partid})) {
                    155: 		next;
                    156: 	    }
1.118     ng        157: 	    $responsetype =~ s/response$//; # make it compatible w/ navmaps - should move to that!!
1.127     ng        158: 	    my ($value) = &Apache::lonnet::EXT('resource.'.$part.'.handgrade',$symb);
1.147     albertel  159: 	    $handgrade{$part} = ($value eq 'yes' ? 'yes' : 'no'); 
                    160: 	    if (!exists($responseType{$partid})) { $responseType{$partid}={}; }
                    161: 	    $responseType{$partid}->{$respid}=$responsetype;
1.41      ng        162: 	    next if ($seen{$partid} > 0);
                    163: 	    $seen{$partid}++;
                    164: 	    push @partlist,$partid;
                    165: 	}
                    166:     }
1.147     albertel  167:     return \@partlist,\%handgrade,\%responseType;
1.39      ng        168: }
                    169: 
1.118     ng        170: #--- Show resource title
                    171: #--- and parts and response type
                    172: sub showResourceInfo {
1.154     albertel  173:     my ($url,$probTitle,$checkboxes) = @_;
                    174:     my $col=3;
                    175:     if ($checkboxes) { $col=4; }
1.118     ng        176:     my $result ='<table border="0">'.
1.167     sakharuk  177: 	'<tr><td colspan="'.$col.'"><font size="+1"><b>'.&mt('Current Resource').': </b>'.
1.154     albertel  178: 	$probTitle.'</font></td></tr>'."\n";
1.147     albertel  179:     my ($partlist,$handgrade,$responseType) = &response_type($url);
1.126     ng        180:     my %resptype = ();
1.122     ng        181:     my $hdgrade='no';
1.154     albertel  182:     my %partsseen;
1.147     albertel  183:     for my $part_resID (sort keys(%$handgrade)) {
                    184: 	my $handgrade=$$handgrade{$part_resID};
                    185: 	my ($partID,$resID) = split(/_/,$part_resID);
                    186: 	my $responsetype = $responseType->{$partID}->{$resID};
1.118     ng        187: 	$hdgrade = $handgrade if ($handgrade eq 'yes');
1.154     albertel  188: 	$result.='<tr>';
                    189: 	if ($checkboxes) {
                    190: 	    if (exists($partsseen{$partID})) {
                    191: 		$result.="<td>&nbsp;</td>";
                    192: 	    } else {
                    193: 		$result.="<td><input type='checkbox' name='vPart' value='$partID' checked='on' /></td>";
                    194: 	    }
                    195: 	    $partsseen{$partID}=1;
                    196: 	}
                    197: 	$result.='<td><b>Part </b>'.$partID.' <font color="#999999">'.
1.147     albertel  198: 	    $resID.'</font></td>'.
1.118     ng        199: 	    '<td><b>Type: </b>'.$responsetype.'</td></tr>';
                    200: #	    '<td><b>Handgrade: </b>'.$handgrade.'</td></tr>';
                    201:     }
                    202:     $result.='</table>'."\n";
1.147     albertel  203:     return $result,$responseType,$hdgrade,$partlist,$handgrade;
1.118     ng        204: }
                    205: 
1.148     albertel  206: 
                    207: sub get_order {
                    208:     my ($partid,$respid,$symb,$uname,$udom)=@_;
                    209:     my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
                    210:     $url=&Apache::lonnet::clutter($url);
                    211:     my $subresult=&Apache::lonnet::ssi($url,
                    212: 				       ('grade_target' => 'analyze'),
                    213: 				       ('grade_domain' => $udom),
                    214: 				       ('grade_symb' => $symb),
                    215: 				       ('grade_courseid' => 
                    216: 					        $ENV{'request.course.id'}),
                    217: 				       ('grade_username' => $uname));
1.149     albertel  218:     (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
1.148     albertel  219:     my %analyze=&Apache::lonnet::str2hash($subresult);
                    220:     return ($analyze{"$partid.$respid.shown"});
                    221: }
1.118     ng        222: #--- Clean response type for display
1.148     albertel  223: #--- Currently filters option/rank/radiobutton/match/essay response types only.
1.118     ng        224: sub cleanRecord {
1.148     albertel  225:     my ($answer,$response,$symb,$partid,$respid,$record,$order,$version) = @_;
                    226:     my $grayFont = '<font color="#999999">';
                    227:     if ($response =~ /^(option|rank)$/) {
                    228: 	my %answer=&Apache::lonnet::str2hash($answer);
                    229: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    230: 	my ($toprow,$bottomrow);
                    231: 	foreach my $foil (@$order) {
                    232: 	    if ($grading{$foil} == 1) {
                    233: 		$toprow.='<td><b>'.$answer{$foil}.'&nbsp;</b></td>';
                    234: 	    } else {
                    235: 		$toprow.='<td><i>'.$answer{$foil}.'&nbsp;</i></td>';
                    236: 	    }
                    237: 	    $bottomrow.='<td>'.$grayFont.$foil.'</font>&nbsp;</td>';
                    238: 	}
                    239: 	return '<blockquote><table border="1">'.
                    240: 	    '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
                    241: 	    '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
                    242: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
                    243:     } elsif ($response eq 'match') {
                    244: 	my %answer=&Apache::lonnet::str2hash($answer);
                    245: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    246: 	my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
                    247: 	my ($toprow,$middlerow,$bottomrow);
                    248: 	foreach my $foil (@$order) {
                    249: 	    my $item=shift(@items);
                    250: 	    if ($grading{$foil} == 1) {
                    251: 		$toprow.='<td><b>'.$item.'&nbsp;</b></td>';
                    252: 		$middlerow.='<td><b>'.$grayFont.$answer{$foil}.'&nbsp;</font></b></td>';
                    253: 	    } else {
                    254: 		$toprow.='<td><i>'.$item.'&nbsp;</i></td>';
                    255: 		$middlerow.='<td><i>'.$grayFont.$answer{$foil}.'&nbsp;</font></i></td>';
                    256: 	    }
                    257: 	    $bottomrow.='<td>'.$grayFont.$foil.'</font>&nbsp;</td>';
1.118     ng        258: 	}
1.126     ng        259: 	return '<blockquote><table border="1">'.
1.148     albertel  260: 	    '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
                    261: 	    '<tr valign="top"><td>'.$grayFont.'Item ID</font></td>'.
                    262: 	    $middlerow.'</tr>'.
                    263: 	    '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
                    264: 	    $bottomrow.'</tr>'.'</table></blockquote>';
                    265:     } elsif ($response eq 'radiobutton') {
                    266: 	my %answer=&Apache::lonnet::str2hash($answer);
                    267: 	my ($toprow,$bottomrow);
                    268: 	my $correct=($order->[0])+1;
                    269: 	for (my $i=1;$i<=$#$order;$i++) {
                    270: 	    my $foil=$order->[$i];
                    271: 	    if (exists($answer{$foil})) {
                    272: 		if ($i == $correct) {
                    273: 		    $toprow.='<td><b>true</b></td>';
                    274: 		} else {
                    275: 		    $toprow.='<td><i>true</i></td>';
                    276: 		}
                    277: 	    } else {
                    278: 		$toprow.='<td>false</td>';
                    279: 	    }
                    280: 	    $bottomrow.='<td>'.$grayFont.$foil.'</font>&nbsp;</td>';
                    281: 	}
                    282: 	return '<blockquote><table border="1">'.
                    283: 	    '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
                    284: 	    '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
                    285: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
                    286:     } elsif ($response eq 'essay') {
1.122     ng        287: 	if (! exists ($ENV{'form.'.$symb})) {
                    288: 	    my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
                    289: 						  $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    290: 						  $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
                    291: 
                    292: 	    my $loginuser = $ENV{'user.name'}.':'.$ENV{'user.domain'};
                    293: 	    $ENV{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                    294: 	    $ENV{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                    295: 	    $ENV{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                    296: 	    $ENV{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                    297: 	    $ENV{'form.'.$symb} = 1; # so that we don't have to read it from disk for multiple sub of the same prob.
                    298: 	}
1.166     albertel  299: 	$answer =~ s-\n-<br />-g;
                    300: 	return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.122     ng        301:     }
1.118     ng        302:     return $answer;
                    303: }
                    304: 
                    305: #-- A couple of common js functions
                    306: sub commonJSfunctions {
                    307:     my $request = shift;
                    308:     $request->print(<<COMMONJSFUNCTIONS);
                    309: <script type="text/javascript" language="javascript">
                    310:     function radioSelection(radioButton) {
                    311: 	var selection=null;
                    312: 	if (radioButton.length > 1) {
                    313: 	    for (var i=0; i<radioButton.length; i++) {
                    314: 		if (radioButton[i].checked) {
                    315: 		    return radioButton[i].value;
                    316: 		}
                    317: 	    }
                    318: 	} else {
                    319: 	    if (radioButton.checked) return radioButton.value;
                    320: 	}
                    321: 	return selection;
                    322:     }
                    323: 
                    324:     function pullDownSelection(selectOne) {
                    325: 	var selection="";
                    326: 	if (selectOne.length > 1) {
                    327: 	    for (var i=0; i<selectOne.length; i++) {
                    328: 		if (selectOne[i].selected) {
                    329: 		    return selectOne[i].value;
                    330: 		}
                    331: 	    }
                    332: 	} else {
1.138     albertel  333:             // only one value it must be the selected one
                    334: 	    return selectOne.value;
1.118     ng        335: 	}
                    336:     }
                    337: </script>
                    338: COMMONJSFUNCTIONS
                    339: }
                    340: 
1.44      ng        341: #--- Dumps the class list with usernames,list of sections,
                    342: #--- section, ids and fullnames for each user.
                    343: sub getclasslist {
1.76      ng        344:     my ($getsec,$filterlist) = @_;
1.121     ng        345:     $getsec = $getsec eq '' ? 'all' : $getsec;
1.56      matthew   346:     my $classlist=&Apache::loncoursedata::get_classlist();
1.49      albertel  347:     # Bail out if we were unable to get the classlist
1.56      matthew   348:     return if (! defined($classlist));
                    349:     #
                    350:     my %sections;
                    351:     my %fullnames;
                    352:     foreach (keys(%$classlist)) {
                    353:         # the following undefs are for 'domain', and 'username' respectively.
                    354: 	my (undef,undef,$end,$start,$id,$section,$fullname,$status)=
                    355:             @{$classlist->{$_}};
1.76      ng        356: 	# filter students according to status selected
1.112     ng        357: 	if ($filterlist && $ENV{'form.Status'} ne 'Any') {
                    358: 	    if ($ENV{'form.Status'} ne $status) {
1.76      ng        359: 		delete ($classlist->{$_});
                    360: 		next;
                    361: 	    }
                    362: 	}
1.44      ng        363: 	$section = ($section ne '' ? $section : 'no');
1.106     albertel  364: 	if (&canview($section)) {
1.103     albertel  365: 	    if ($getsec eq 'all' || $getsec eq $section) {
                    366: 		$sections{$section}++;
                    367: 		$fullnames{$_}=$fullname;
                    368: 	    } else {
                    369: 		delete($classlist->{$_});
                    370: 	    }
                    371: 	} else {
                    372: 	    delete($classlist->{$_});
                    373: 	}
1.44      ng        374:     }
                    375:     my %seen = ();
1.56      matthew   376:     my @sections = sort(keys(%sections));
                    377:     return ($classlist,\@sections,\%fullnames);
1.44      ng        378: }
                    379: 
1.103     albertel  380: sub canmodify {
                    381:     my ($sec)=@_;
                    382:     if ($perm{'mgr'}) {
                    383: 	if (!defined($perm{'mgr_section'})) {
                    384: 	    # can modify whole class
                    385: 	    return 1;
                    386: 	} else {
                    387: 	    if ($sec eq $perm{'mgr_section'}) {
                    388: 		#can modify the requested section
                    389: 		return 1;
                    390: 	    } else {
                    391: 		# can't modify the request section
                    392: 		return 0;
                    393: 	    }
                    394: 	}
                    395:     }
                    396:     #can't modify
                    397:     return 0;
                    398: }
                    399: 
                    400: sub canview {
                    401:     my ($sec)=@_;
                    402:     if ($perm{'vgr'}) {
                    403: 	if (!defined($perm{'vgr_section'})) {
                    404: 	    # can modify whole class
                    405: 	    return 1;
                    406: 	} else {
                    407: 	    if ($sec eq $perm{'vgr_section'}) {
                    408: 		#can modify the requested section
                    409: 		return 1;
                    410: 	    } else {
                    411: 		# can't modify the request section
                    412: 		return 0;
                    413: 	    }
                    414: 	}
                    415:     }
                    416:     #can't modify
                    417:     return 0;
                    418: }
                    419: 
1.44      ng        420: #--- Retrieve the grade status of a student for all the parts
                    421: sub student_gradeStatus {
                    422:     my ($url,$symb,$udom,$uname,$partlist) = @_;
                    423:     my %record     = &Apache::lonnet::restore($symb,$ENV{'request.course.id'},$udom,$uname);
                    424:     my %partstatus = ();
                    425:     foreach (@$partlist) {
1.128     ng        426: 	my ($status,undef)   = split(/_/,$record{"resource.$_.solved"},2);
1.44      ng        427: 	$status              = 'nothing' if ($status eq '');
                    428: 	$partstatus{$_}      = $status;
                    429: 	my $subkey           = "resource.$_.submitted_by";
                    430: 	$partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
                    431:     }
                    432:     return %partstatus;
                    433: }
                    434: 
1.45      ng        435: # hidden form and javascript that calls the form
                    436: # Use by verifyscript and viewgrades
                    437: # Shows a student's view of problem and submission
                    438: sub jscriptNform {
                    439:     my ($url,$symb) = @_;
                    440:     my $jscript='<script type="text/javascript" language="javascript">'."\n".
                    441: 	'    function viewOneStudent(user,domain) {'."\n".
                    442: 	'	document.onestudent.student.value = user;'."\n".
                    443: 	'	document.onestudent.userdom.value = domain;'."\n".
                    444: 	'	document.onestudent.submit();'."\n".
                    445: 	'    }'."\n".
                    446: 	'</script>'."\n";
                    447:     $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
                    448: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
                    449: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
1.77      ng        450: 	'<input type="hidden" name="saveState" value="'.$ENV{'form.saveState'}.'" />'."\n".
1.72      ng        451: 	'<input type="hidden" name="probTitle" value="'.$ENV{'form.probTitle'}.'" />'."\n".
1.125     ng        452: 	'<input type="hidden" name="Status"  value="'.$ENV{'form.Status'}.'" />'."\n".
1.45      ng        453: 	'<input type="hidden" name="command" value="submission" />'."\n".
                    454: 	'<input type="hidden" name="student" value="" />'."\n".
                    455: 	'<input type="hidden" name="userdom" value="" />'."\n".
                    456: 	'</form>'."\n";
                    457:     return $jscript;
                    458: }
1.39      ng        459: 
1.44      ng        460: #------------------ End of general use routines --------------------
1.87      www       461: 
                    462: #
                    463: # Find most similar essay
                    464: #
                    465: 
                    466: sub most_similar {
                    467:     my ($uname,$udom,$uessay)=@_;
                    468: 
                    469: # ignore spaces and punctuation
                    470: 
                    471:     $uessay=~s/\W+/ /gs;
                    472: 
                    473: # these will be returned. Do not care if not at least 50 percent similar
1.88      www       474:     my $limit=0.6;
1.87      www       475:     my $sname='';
                    476:     my $sdom='';
                    477:     my $scrsid='';
                    478:     my $sessay='';
                    479: # go through all essays ...
                    480:     foreach my $tkey (keys %oldessays) {
                    481: 	my ($tname,$tdom,$tcrsid)=split(/\./,$tkey);
                    482: # ... except the same student
1.88      www       483:         if (($tname ne $uname) || ($tdom ne $udom)) {
1.87      www       484: 	    my $tessay=$oldessays{$tkey};
                    485:             $tessay=~s/\W+/ /gs;
                    486: # String similarity gives up if not even limit
1.88      www       487:             my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87      www       488: # Found one
                    489:             if ($tsimilar>$limit) {
                    490: 		$limit=$tsimilar;
                    491:                 $sname=$tname;
1.88      www       492:                 $sdom=$tdom;
1.87      www       493:                 $scrsid=$tcrsid;
                    494:                 $sessay=$oldessays{$tkey};
                    495:             }
                    496:         } 
                    497:     }
1.88      www       498:     if ($limit>0.6) {
1.87      www       499:        return ($sname,$sdom,$scrsid,$sessay,$limit);
                    500:     } else {
                    501:        return ('','','','',0);
                    502:     }
                    503: }
                    504: 
1.44      ng        505: #-------------------------------------------------------------------
                    506: 
                    507: #------------------------------------ Receipt Verification Routines
1.45      ng        508: #
1.44      ng        509: #--- Check whether a receipt number is valid.---
                    510: sub verifyreceipt {
                    511:     my $request  = shift;
                    512: 
                    513:     my $courseid = $ENV{'request.course.id'};
                    514:     my $receipt  = unpack("%32C*",$Apache::lonnet::perlvar{'lonHostID'}).'-'.
                    515: 	$ENV{'form.receipt'};
                    516:     $receipt     =~ s/[^\-\d]//g;
                    517:     my $url      = $ENV{'form.url'};
                    518:     my $symb     = $ENV{'form.symb'};
                    519:     unless ($symb) {
                    520: 	$symb    = &Apache::lonnet::symbread($url);
                    521:     }
                    522: 
1.45      ng        523:     my $title.='<h3><font color="#339933">Verifying Submission Receipt '.
                    524: 	$receipt.'</h3></font>'."\n".
1.118     ng        525: 	'<font size=+1><b>Resource: </b>'.$ENV{'form.probTitle'}.'</font><br><br>'."\n";
1.44      ng        526: 
                    527:     my ($string,$contents,$matches) = ('','',0);
1.56      matthew   528:     my (undef,undef,$fullname) = &getclasslist('all','0');
1.177     albertel  529:     
                    530:     my $receiptparts=0;
                    531:     if ($ENV{"course.$courseid.receiptalg"} eq 'receipt2') { $receiptparts=1; }
                    532:     my $parts=['0'];
                    533:     if ($receiptparts) { ($parts)=&response_type($url,$symb); }
1.53      albertel  534:     foreach (sort {lc($$fullname{$a}) cmp lc($$fullname{$b}) } keys %$fullname) {
1.44      ng        535: 	my ($uname,$udom)=split(/\:/);
1.177     albertel  536: 	foreach my $part (@$parts) {
                    537: 	    if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
                    538: 		$contents.='<tr bgcolor="#ffffe6"><td>&nbsp;'."\n".
                    539: 		    '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
                    540: 		    '\')"; TARGET=_self>'.$$fullname{$_}.'</a>&nbsp;</td>'."\n".
                    541: 		    '<td>&nbsp;'.$uname.'&nbsp;</td>'.
                    542: 		    '<td>&nbsp;'.$udom.'&nbsp;</td>';
                    543: 		if ($receiptparts) {
                    544: 		    $contents.='<td>&nbsp;'.$part.'&nbsp;</td>';
                    545: 		}
                    546: 		$contents.='</tr>'."\n";
                    547: 		
                    548: 		$matches++;
                    549: 	    }
1.44      ng        550: 	}
                    551:     }
                    552:     if ($matches == 0) {
                    553: 	$string = $title.'No match found for the above receipt.';
                    554:     } else {
1.45      ng        555: 	$string = &jscriptNform($url,$symb).$title.
1.44      ng        556: 	    'The above receipt matches the following student'.
                    557: 	    ($matches <= 1 ? '.' : 's.')."\n".
                    558: 	    '<table border="0"><tr><td bgcolor="#777777">'."\n".
                    559: 	    '<table border="0"><tr bgcolor="#e6ffff">'."\n".
                    560: 	    '<td><b>&nbsp;Fullname&nbsp;</b></td>'."\n".
                    561: 	    '<td><b>&nbsp;Username&nbsp;</b></td>'."\n".
1.177     albertel  562: 	    '<td><b>&nbsp;Domain&nbsp;</b></td>';
                    563: 	if ($receiptparts) {
                    564: 	    $string.='<td>&nbsp;Problem Part&nbsp;</td>';
                    565: 	}
                    566: 	$string.='</tr>'."\n".$contents.
1.44      ng        567: 	    '</table></td></tr></table>'."\n";
                    568:     }
1.50      albertel  569:     return $string.&show_grading_menu_form($symb,$url);
1.44      ng        570: }
                    571: 
                    572: #--- This is called by a number of programs.
                    573: #--- Called from the Grading Menu - View/Grade an individual student
                    574: #--- Also called directly when one clicks on the subm button 
                    575: #    on the problem page.
1.30      ng        576: sub listStudents {
1.41      ng        577:     my ($request) = shift;
1.49      albertel  578: 
1.72      ng        579:     my ($symb,$url) = &get_symb_and_url($request);
1.49      albertel  580:     my $cdom      = $ENV{"course.$ENV{'request.course.id'}.domain"};
                    581:     my $cnum      = $ENV{"course.$ENV{'request.course.id'}.num"};
                    582:     my $getsec    = $ENV{'form.section'} eq '' ? 'all' : $ENV{'form.section'};
                    583:     my $submitonly= $ENV{'form.submitonly'} eq '' ? 'all' : $ENV{'form.submitonly'};
                    584: 
1.118     ng        585:     my $viewgrade = $ENV{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
1.76      ng        586:     $ENV{'form.probTitle'} = $ENV{'form.probTitle'} eq '' ? 
                    587: 	&Apache::lonnet::gettitle($symb) : $ENV{'form.probTitle'};
1.49      albertel  588: 
1.118     ng        589:     my $result='<h3><font color="#339933">&nbsp;'.$viewgrade.
                    590: 	' Submissions for a Student or a Group of Students</font></h3>';
                    591: 
1.154     albertel  592:     my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($url,$ENV{'form.probTitle'},($ENV{'form.showgrading'} eq 'yes'));
1.49      albertel  593: 
1.45      ng        594:     $request->print(<<LISTJAVASCRIPT);
                    595: <script type="text/javascript" language="javascript">
1.110     ng        596:     function checkSelect(checkBox) {
                    597: 	var ctr=0;
                    598: 	var sense="";
                    599: 	if (checkBox.length > 1) {
                    600: 	    for (var i=0; i<checkBox.length; i++) {
                    601: 		if (checkBox[i].checked) {
                    602: 		    ctr++;
                    603: 		}
                    604: 	    }
                    605: 	    sense = "a student or group of students";
                    606: 	} else {
                    607: 	    if (checkBox.checked) {
                    608: 		ctr = 1;
                    609: 	    }
                    610: 	    sense = "the student";
                    611: 	}
                    612: 	if (ctr == 0) {
1.126     ng        613: 	    alert("Please select "+sense+" before clicking on the Next button.");
1.110     ng        614: 	    return false;
                    615: 	}
                    616: 	document.gradesub.submit();
                    617:     }
                    618: 
                    619:     function reLoadList(formname) {
1.112     ng        620: 	if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110     ng        621: 	formname.command.value = 'submission';
                    622: 	formname.submit();
                    623:     }
1.45      ng        624: </script>
                    625: LISTJAVASCRIPT
                    626: 
1.118     ng        627:     &commonJSfunctions($request);
1.41      ng        628:     $request->print($result);
1.39      ng        629: 
1.118     ng        630:     my $checkhdgrade = ($ENV{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked' : '';
1.119     ng        631:     my $checklastsub = $checkhdgrade eq '' ? 'checked' : '';
1.154     albertel  632:     my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
                    633: 	"\n".$table.
1.144     albertel  634: 	'&nbsp;<b>View Problem Text: </b><input type="radio" name="vProb" value="no" checked="on" /> no '."\n".
1.80      ng        635: 	'<input type="radio" name="vProb" value="yes" /> one student '."\n".
1.58      albertel  636: 	'<input type="radio" name="vProb" value="all" /> all students <br />'."\n".
1.144     albertel  637: 	'&nbsp;<b>View Answer: </b><input type="radio" name="vAns" value="no"  /> no '."\n".
                    638: 	'<input type="radio" name="vAns" value="yes" /> one student '."\n".
                    639: 	'<input type="radio" name="vAns" value="all" checked="on" /> all students <br />'."\n".
1.49      albertel  640: 	'&nbsp;<b>Submissions: </b>'."\n";
1.118     ng        641:     if ($ENV{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
                    642: 	$gradeTable.='<input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> essay part only'."\n";
1.49      albertel  643:     }
1.110     ng        644: 
1.112     ng        645:     my $saveStatus = $ENV{'form.Status'} eq '' ? 'Active' : $ENV{'form.Status'};
                    646:     $ENV{'form.Status'} = $saveStatus;
1.110     ng        647: 
1.135     bowersj2  648:     $gradeTable.='<input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> last submission only'."\n".
                    649: 	'<input type="radio" name="lastSub" value="last" /> last submission & parts info'."\n".
1.122     ng        650: 	'<input type="radio" name="lastSub" value="datesub" /> by dates and submissions'."\n".
1.45      ng        651: 	'<input type="radio" name="lastSub" value="all" /> all details'."\n".
                    652: 	'<input type="hidden" name="section"     value="'.$getsec.'" />'."\n".
                    653: 	'<input type="hidden" name="submitonly"  value="'.$submitonly.'" />'."\n".
1.65      albertel  654: 	'<input type="hidden" name="handgrade"   value="'.$ENV{'form.handgrade'}.'" /><br />'."\n".
1.64      albertel  655: 	'<input type="hidden" name="showgrading" value="'.$ENV{'form.showgrading'}.'" /><br />'."\n".
1.77      ng        656: 	'<input type="hidden" name="saveState"   value="'.$ENV{'form.saveState'}.'" />'."\n".
1.72      ng        657: 	'<input type="hidden" name="probTitle"   value="'.$ENV{'form.probTitle'}.'" />'."\n".
1.48      albertel  658: 	'<input type="hidden" name="url"  value="'.$url.'" />'."\n".
                    659: 	'<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.110     ng        660: 	'<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
                    661: 
1.124     ng        662:     if (exists($ENV{'form.gradingMenu'}) && exists($ENV{'form.Status'})) {
                    663: 	$gradeTable.='<input type="hidden" name="Status"   value="'.$ENV{'form.Status'}.'" />'."\n";
                    664:     } else {
                    665: 	$gradeTable.='<b>Student Status:</b> '.
                    666: 	    &Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,'javascript:reLoadList(this.form);').'<br />';
                    667:     }
1.112     ng        668: 
1.126     ng        669:     $gradeTable.='To '.lc($viewgrade).' a submission or a group of submissions, click on the check box(es) '.
                    670: 	'next to the student\'s name(s). Then click on the Next button.<br />'."\n".
1.110     ng        671: 	'<input type="hidden" name="command" value="processGroup" />'."\n";
                    672:     $gradeTable.='<input type="button" '."\n".
1.45      ng        673: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1.126     ng        674: 	'value="Next->" />'."\n";
1.134     www       675:     $gradeTable.='<input type="checkbox" name="checkPlag" checked="on">Check For Plagiarism</input>';
1.110     ng        676:     my (undef, undef, $fullname) = &getclasslist($getsec,'1');  
1.45      ng        677:     $gradeTable.='<table border="0"><tr><td bgcolor="#777777">'.
1.110     ng        678: 	'<table border="0"><tr bgcolor="#e6ffff">';
                    679:     my $loop = 0;
                    680:     while ($loop < 2) {
1.126     ng        681: 	$gradeTable.='<td><b>&nbsp;No.</b>&nbsp;</td><td><b>&nbsp;Select&nbsp;</b></td>'.
1.129     ng        682: 	    '<td>'.&nameUserString('header').'</td>';
1.110     ng        683: 	if ($ENV{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
                    684: 	    foreach (sort(@$partlist)) {
                    685: 		$gradeTable.='<td><b>&nbsp;Part '.(split(/_/))[0].' Status&nbsp;</b></td>';
                    686: 	    }
                    687: 	}
                    688: 	$loop++;
1.126     ng        689: #	$gradeTable.='<td></td>' if ($loop%2 ==1);
1.41      ng        690:     }
1.45      ng        691:     $gradeTable.='</tr>'."\n";
1.41      ng        692: 
1.45      ng        693:     my $ctr = 0;
1.53      albertel  694:     foreach my $student (sort {lc($$fullname{$a}) cmp lc($$fullname{$b}) } keys %$fullname) {
1.41      ng        695: 	my ($uname,$udom) = split(/:/,$student);
1.110     ng        696: 	my %status = ();
                    697: 	if ($ENV{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
                    698: 	    (%status) =&student_gradeStatus($url,$symb,$udom,$uname,$partlist);
1.145     albertel  699: 	    my $submitted = 0;
1.164     albertel  700: 	    my $graded = 0;
1.110     ng        701: 	    foreach (keys(%status)) {
1.145     albertel  702: 		$submitted = 1 if ($status{$_} ne 'nothing');
1.164     albertel  703: 		$graded = 1 if ($status{$_} !~ /^correct/);
                    704: 
1.110     ng        705: 		my ($foo,$partid,$foo1) = split(/\./,$_);
                    706: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145     albertel  707: 		    $submitted = 0;
1.150     albertel  708: 		    my ($part)=split(/\./,$partid);
1.110     ng        709: 		    $gradeTable.='<input type="hidden" name="'.
1.150     albertel  710: 			$student.':'.$part.':submitted_by" value="'.
1.110     ng        711: 			$status{'resource.'.$partid.'.submitted_by'}.'" />';
                    712: 		}
1.41      ng        713: 	    }
1.156     albertel  714: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                    715: 				     $submitonly eq 'incorrect' ||
                    716: 				     $submitonly eq 'graded'));
                    717: 	    next if (!$graded && ($submitonly eq 'graded' ||
                    718: 				  $submitonly eq 'incorrect'));
1.41      ng        719: 	}
1.34      ng        720: 
1.45      ng        721: 	$ctr++;
1.104     albertel  722: 	if ( $perm{'vgr'} eq 'F' ) {
1.110     ng        723: 	    $gradeTable.='<tr bgcolor="#ffffe6">' if ($ctr%2 ==1);
1.126     ng        724: 	    $gradeTable.='<td align="right">'.$ctr.'&nbsp;</td>'.
                    725: 		'<td align="center"><input type=checkbox name="stuinfo" value="'.
1.110     ng        726: 		$student.':'.$$fullname{$student}.'&nbsp;"></td>'."\n".
1.129     ng        727: 		'<td>'.&nameUserString(undef,$$fullname{$student},$uname,$udom).'</td>'."\n";
1.110     ng        728: 
                    729: 	    if ($ENV{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
                    730: 		foreach (sort keys(%status)) {
                    731: 		    next if (/^resource.*?submitted_by$/);
                    732: 		    $gradeTable.='<td align="middle">&nbsp;'.$status{$_}.'&nbsp;</td>'."\n";
                    733: 		}
1.41      ng        734: 	    }
1.126     ng        735: #	    $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.110     ng        736: 	    $gradeTable.='</tr>'."\n" if ($ctr%2 ==0);
1.41      ng        737: 	}
                    738:     }
1.110     ng        739:     if ($ctr%2 ==1) {
1.126     ng        740: 	$gradeTable.='<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';
1.110     ng        741: 	    if ($ENV{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
                    742: 		foreach (@$partlist) {
                    743: 		    $gradeTable.='<td>&nbsp;</td>';
                    744: 		}
                    745: 	    }
                    746: 	$gradeTable.='</tr>';
                    747:     }
                    748: 
1.45      ng        749:     $gradeTable.='</table></td></tr></table>'.
                    750: 	'<input type="button" '.
                    751: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '.
1.126     ng        752: 	'value="Next->" /></form>'."\n";
1.45      ng        753:     if ($ctr == 0) {
1.96      albertel  754: 	my $num_students=(scalar(keys(%$fullname)));
                    755: 	if ($num_students eq 0) {
                    756: 	    $gradeTable='<br />&nbsp;<font color="red">There are no students currently enrolled.</font>';
                    757: 	} else {
1.171     albertel  758: 	    my $submissions='submissions';
                    759: 	    if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
                    760: 	    if ($submitonly eq 'graded'   ) { $submissions = 'ungraded submissions'; }
1.96      albertel  761: 	    $gradeTable='<br />&nbsp;<font color="red">'.
1.171     albertel  762: 		'No '.$submissions.' found for this resource for any students. ('.$num_students.
                    763: 		' students checked for '.$submissions.')</font><br />';
1.96      albertel  764: 	}
1.46      ng        765:     } elsif ($ctr == 1) {
                    766: 	$gradeTable =~ s/type=checkbox/type=checkbox checked/;
1.45      ng        767:     }
1.50      albertel  768:     $gradeTable.=&show_grading_menu_form($symb,$url);
1.45      ng        769:     $request->print($gradeTable);
1.44      ng        770:     return '';
1.10      ng        771: }
                    772: 
1.44      ng        773: #---- Called from the listStudents routine
                    774: #     Displays the submissions for one student or a group of students
1.34      ng        775: sub processGroup {
1.41      ng        776:     my ($request)  = shift;
                    777:     my $ctr        = 0;
1.155     albertel  778:     my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41      ng        779:     my $total      = scalar(@stuchecked)-1;
1.45      ng        780: 
1.41      ng        781:     foreach (@stuchecked) {
                    782: 	my ($uname,$udom,$fullname) = split(/:/);
1.44      ng        783: 	$ENV{'form.student'}        = $uname;
                    784: 	$ENV{'form.userdom'}        = $udom;
                    785: 	$ENV{'form.fullname'}       = $fullname;
1.41      ng        786: 	&submission($request,$ctr,$total);
                    787: 	$ctr++;
                    788:     }
                    789:     return '';
1.35      ng        790: }
1.34      ng        791: 
1.44      ng        792: #------------------------------------------------------------------------------------
                    793: #
                    794: #-------------------------- Next few routines handles grading by student, essentially
                    795: #                           handles essay response type problem/part
                    796: #
                    797: #--- Javascript to handle the submission page functionality ---
                    798: sub sub_page_js {
                    799:     my $request = shift;
                    800:     $request->print(<<SUBJAVASCRIPT);
                    801: <script type="text/javascript" language="javascript">
1.71      ng        802:     function updateRadio(formname,id,weight) {
1.125     ng        803: 	var gradeBox = formname["GD_BOX"+id];
                    804: 	var radioButton = formname["RADVAL"+id];
                    805: 	var oldpts = formname["oldpts"+id].value;
1.72      ng        806: 	var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71      ng        807: 	gradeBox.value = pts;
                    808: 	var resetbox = false;
                    809: 	if (isNaN(pts) || pts < 0) {
                    810: 	    alert("A number equal or greater than 0 is expected. Entered value = "+pts);
                    811: 	    for (var i=0; i<radioButton.length; i++) {
                    812: 		if (radioButton[i].checked) {
                    813: 		    gradeBox.value = i;
                    814: 		    resetbox = true;
                    815: 		}
                    816: 	    }
                    817: 	    if (!resetbox) {
                    818: 		formtextbox.value = "";
                    819: 	    }
                    820: 	    return;
1.44      ng        821: 	}
1.71      ng        822: 
                    823: 	if (pts > weight) {
                    824: 	    var resp = confirm("You entered a value ("+pts+
                    825: 			       ") greater than the weight for the part. Accept?");
                    826: 	    if (resp == false) {
1.125     ng        827: 		gradeBox.value = oldpts;
1.71      ng        828: 		return;
                    829: 	    }
1.44      ng        830: 	}
1.13      albertel  831: 
1.71      ng        832: 	for (var i=0; i<radioButton.length; i++) {
                    833: 	    radioButton[i].checked=false;
                    834: 	    if (pts == i && pts != "") {
                    835: 		radioButton[i].checked=true;
                    836: 	    }
                    837: 	}
                    838: 	updateSelect(formname,id);
1.125     ng        839: 	formname["stores"+id].value = "0";
1.41      ng        840:     }
1.5       albertel  841: 
1.72      ng        842:     function writeBox(formname,id,pts) {
1.125     ng        843: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng        844: 	if (checkSolved(formname,id) == 'update') {
                    845: 	    gradeBox.value = pts;
                    846: 	} else {
1.125     ng        847: 	    var oldpts = formname["oldpts"+id].value;
1.72      ng        848: 	    gradeBox.value = oldpts;
1.125     ng        849: 	    var radioButton = formname["RADVAL"+id];
1.71      ng        850: 	    for (var i=0; i<radioButton.length; i++) {
                    851: 		radioButton[i].checked=false;
1.72      ng        852: 		if (i == oldpts) {
1.71      ng        853: 		    radioButton[i].checked=true;
                    854: 		}
                    855: 	    }
1.41      ng        856: 	}
1.125     ng        857: 	formname["stores"+id].value = "0";
1.71      ng        858: 	updateSelect(formname,id);
                    859: 	return;
1.41      ng        860:     }
1.44      ng        861: 
1.71      ng        862:     function clearRadBox(formname,id) {
                    863: 	if (checkSolved(formname,id) == 'noupdate') {
                    864: 	    updateSelect(formname,id);
                    865: 	    return;
                    866: 	}
1.125     ng        867: 	gradeSelect = formname["GD_SEL"+id];
1.71      ng        868: 	for (var i=0; i<gradeSelect.length; i++) {
                    869: 	    if (gradeSelect[i].selected) {
                    870: 		var selectx=i;
                    871: 	    }
                    872: 	}
1.125     ng        873: 	var stores = formname["stores"+id];
1.71      ng        874: 	if (selectx == stores.value) { return };
1.125     ng        875: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng        876: 	gradeBox.value = "";
1.125     ng        877: 	var radioButton = formname["RADVAL"+id];
1.71      ng        878: 	for (var i=0; i<radioButton.length; i++) {
                    879: 	    radioButton[i].checked=false;
                    880: 	}
                    881: 	stores.value = selectx;
                    882:     }
1.5       albertel  883: 
1.71      ng        884:     function checkSolved(formname,id) {
1.125     ng        885: 	if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118     ng        886: 	    var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
                    887: 	    if (!reply) {return "noupdate";}
1.120     ng        888: 	    formname.overRideScore.value = 'yes';
1.41      ng        889: 	}
1.71      ng        890: 	return "update";
1.13      albertel  891:     }
1.71      ng        892: 
                    893:     function updateSelect(formname,id) {
1.125     ng        894: 	formname["GD_SEL"+id][0].selected = true;
1.71      ng        895: 	return;
1.41      ng        896:     }
1.33      ng        897: 
1.121     ng        898: //=========== Check that a point is assigned for all the parts  ============
1.71      ng        899:     function checksubmit(formname,val,total,parttot) {
1.121     ng        900: 	formname.gradeOpt.value = val;
1.71      ng        901: 	if (val == "Save & Next") {
                    902: 	    for (i=0;i<=total;i++) {
                    903: 		for (j=0;j<parttot;j++) {
1.125     ng        904: 		    var partid = formname["partid"+i+"_"+j].value;
1.127     ng        905: 		    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng        906: 			var points = formname["GD_BOX"+i+"_"+partid].value;
1.71      ng        907: 			if (points == "") {
1.125     ng        908: 			    var name = formname["name"+i].value;
1.129     ng        909: 			    var studentID = (name != '' ? name : formname["unamedom"+i].value);
                    910: 			    var resp = confirm("You did not assign a score for "+studentID+
                    911: 					       ", part "+partid+". Continue?");
1.71      ng        912: 			    if (resp == false) {
1.125     ng        913: 				formname["GD_BOX"+i+"_"+partid].focus();
1.71      ng        914: 				return false;
                    915: 			    }
                    916: 			}
                    917: 		    }
                    918: 		    
                    919: 		}
                    920: 	    }
                    921: 	    
                    922: 	}
1.121     ng        923: 	if (val == "Grade Student") {
                    924: 	    formname.showgrading.value = "yes";
                    925: 	    if (formname.Status.value == "") {
                    926: 		formname.Status.value = "Active";
                    927: 	    }
                    928: 	    formname.studentNo.value = total;
                    929: 	}
1.120     ng        930: 	formname.submit();
                    931:     }
                    932: 
1.71      ng        933: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
                    934:     function checkSubmitPage(formname,total) {
                    935: 	noscore = new Array(100);
                    936: 	var ptr = 0;
                    937: 	for (i=1;i<total;i++) {
1.125     ng        938: 	    var partid = formname["q_"+i].value;
1.127     ng        939: 	    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng        940: 		var points = formname["GD_BOX"+i+"_"+partid].value;
                    941: 		var status = formname["solved"+i+"_"+partid].value;
1.71      ng        942: 		if (points == "" && status != "correct_by_student") {
                    943: 		    noscore[ptr] = i;
                    944: 		    ptr++;
                    945: 		}
                    946: 	    }
                    947: 	}
                    948: 	if (ptr != 0) {
                    949: 	    var sense = ptr == 1 ? ": " : "s: ";
                    950: 	    var prolist = "";
                    951: 	    if (ptr == 1) {
                    952: 		prolist = noscore[0];
                    953: 	    } else {
                    954: 		var i = 0;
                    955: 		while (i < ptr-1) {
                    956: 		    prolist += noscore[i]+", ";
                    957: 		    i++;
                    958: 		}
                    959: 		prolist += "and "+noscore[i];
                    960: 	    }
                    961: 	    var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
                    962: 	    if (resp == false) {
                    963: 		return false;
                    964: 	    }
                    965: 	}
1.45      ng        966: 
1.71      ng        967: 	formname.submit();
                    968:     }
                    969: </script>
                    970: SUBJAVASCRIPT
                    971: }
1.45      ng        972: 
1.71      ng        973: #--- javascript for essay type problem --
                    974: sub sub_page_kw_js {
                    975:     my $request = shift;
1.80      ng        976:     my $iconpath = $request->dir_config('lonIconsURL');
1.118     ng        977:     &commonJSfunctions($request);
1.71      ng        978:     $request->print(<<SUBJAVASCRIPT);
                    979: <script type="text/javascript" language="javascript">
1.45      ng        980: 
1.44      ng        981: //===================== Show list of keywords ====================
1.122     ng        982:   function keywords(formname) {
                    983:     var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
1.44      ng        984:     if (nret==null) return;
1.122     ng        985:     formname.keywords.value = nret;
1.44      ng        986: 
1.122     ng        987:     if (formname.keywords.value != "") {
1.128     ng        988: 	formname.refresh.value = "on";
1.122     ng        989: 	formname.submit();
1.44      ng        990:     }
                    991:     return;
                    992:   }
                    993: 
                    994: //===================== Script to view submitted by ==================
                    995:   function viewSubmitter(submitter) {
                    996:     document.SCORE.refresh.value = "on";
                    997:     document.SCORE.NCT.value = "1";
                    998:     document.SCORE.unamedom0.value = submitter;
                    999:     document.SCORE.submit();
                   1000:     return;
                   1001:   }
                   1002: 
                   1003: //===================== Script to add keyword(s) ==================
                   1004:   function getSel() {
                   1005:     if (document.getSelection) txt = document.getSelection();
                   1006:     else if (document.selection) txt = document.selection.createRange().text;
                   1007:     else return;
                   1008:     var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
                   1009:     if (cleantxt=="") {
1.46      ng       1010: 	alert("Please select a word or group of words from document and then click this link.");
1.44      ng       1011: 	return;
                   1012:     }
                   1013:     var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
                   1014:     if (nret==null) return;
1.127     ng       1015:     document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44      ng       1016:     if (document.SCORE.keywords.value != "") {
1.127     ng       1017: 	document.SCORE.refresh.value = "on";
1.44      ng       1018: 	document.SCORE.submit();
                   1019:     }
                   1020:     return;
                   1021:   }
                   1022: 
                   1023: //====================== Script for composing message ==============
1.80      ng       1024:    // preload images
                   1025:    img1 = new Image();
                   1026:    img1.src = "$iconpath/mailbkgrd.gif";
                   1027:    img2 = new Image();
                   1028:    img2.src = "$iconpath/mailto.gif";
                   1029: 
1.44      ng       1030:   function msgCenter(msgform,usrctr,fullname) {
                   1031:     var Nmsg  = msgform.savemsgN.value;
                   1032:     savedMsgHeader(Nmsg,usrctr,fullname);
                   1033:     var subject = msgform.msgsub.value;
1.127     ng       1034:     var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44      ng       1035:     re = /msgsub/;
                   1036:     var shwsel = "";
                   1037:     if (re.test(msgchk)) { shwsel = "checked" }
1.123     ng       1038:     subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
                   1039:     displaySubject(checkEntities(subject),shwsel);
1.44      ng       1040:     for (var i=1; i<=Nmsg; i++) {
1.123     ng       1041: 	var testmsg = "savemsg"+i+",";
                   1042: 	re = new RegExp(testmsg,"g");
1.44      ng       1043: 	shwsel = "";
                   1044: 	if (re.test(msgchk)) { shwsel = "checked" }
1.125     ng       1045: 	var message = document.SCORE["savemsg"+i].value;
1.126     ng       1046: 	message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123     ng       1047: 	displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
                   1048: 	                                   //any &lt; is already converted to <, etc. However, only once!!
1.44      ng       1049:     }
1.125     ng       1050:     newmsg = document.SCORE["newmsg"+usrctr].value;
1.44      ng       1051:     shwsel = "";
                   1052:     re = /newmsg/;
                   1053:     if (re.test(msgchk)) { shwsel = "checked" }
                   1054:     newMsg(newmsg,shwsel);
                   1055:     msgTail(); 
                   1056:     return;
                   1057:   }
                   1058: 
1.123     ng       1059:   function checkEntities(strx) {
                   1060:     if (strx.length == 0) return strx;
                   1061:     var orgStr = ["&", "<", ">", '"']; 
                   1062:     var newStr = ["&amp;", "&lt;", "&gt;", "&quot;"];
                   1063:     var counter = 0;
                   1064:     while (counter < 4) {
                   1065: 	strx = strReplace(strx,orgStr[counter],newStr[counter]);
                   1066: 	counter++;
                   1067:     }
                   1068:     return strx;
                   1069:   }
                   1070: 
                   1071:   function strReplace(strx, orgStr, newStr) {
                   1072:     return strx.split(orgStr).join(newStr);
                   1073:   }
                   1074: 
1.44      ng       1075:   function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76      ng       1076:     var height = 70*Nmsg+250;
1.44      ng       1077:     var scrollbar = "no";
                   1078:     if (height > 600) {
                   1079: 	height = 600;
                   1080: 	scrollbar = "yes";
                   1081:     }
1.118     ng       1082:     var xpos = (screen.width-600)/2;
                   1083:     xpos = (xpos < 0) ? '0' : xpos;
                   1084:     var ypos = (screen.height-height)/2-30;
                   1085:     ypos = (ypos < 0) ? '0' : ypos;
                   1086: 
                   1087:     pWin = window.open('', 'MessageCenter', 'toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
1.76      ng       1088:     pWin.focus();
                   1089:     pDoc = pWin.document;
1.128     ng       1090:     pDoc.open('text/html','replace');
1.76      ng       1091:     pDoc.write("<html><head>");
                   1092:     pDoc.write("<title>Message Central</title>");
                   1093: 
                   1094:     pDoc.write("<script language=javascript>");
                   1095:     pDoc.write("function checkInput() {");
1.123     ng       1096:     pDoc.write("  opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);");
1.76      ng       1097:     pDoc.write("  var nmsg   = opener.document.SCORE.savemsgN.value;");
                   1098:     pDoc.write("  var usrctr = document.msgcenter.usrctr.value;");
1.125     ng       1099:     pDoc.write("  var newval = opener.document.SCORE[\\"newmsg\\"+usrctr];");
1.123     ng       1100:     pDoc.write("  newval.value = opener.checkEntities(document.msgcenter.newmsg.value);");
1.76      ng       1101: 
                   1102:     pDoc.write("  var msgchk = \\"\\";");
                   1103:     pDoc.write("  if (document.msgcenter.subchk.checked) {");
                   1104:     pDoc.write("     msgchk = \\"msgsub,\\";");
                   1105:     pDoc.write("  }");
1.80      ng       1106:     pDoc.write("  var includemsg = 0;");
                   1107:     pDoc.write("  for (var i=1; i<=nmsg; i++) {");
1.125     ng       1108:     pDoc.write("      var opnmsg = opener.document.SCORE[\\"savemsg\\"+i];");
                   1109:     pDoc.write("      var frmmsg = document.msgcenter[\\"msg\\"+i];");
1.123     ng       1110:     pDoc.write("      opnmsg.value = opener.checkEntities(frmmsg.value);");
1.125     ng       1111:     pDoc.write("      var showflg = opener.document.SCORE[\\"shownOnce\\"+i];");
1.123     ng       1112:     pDoc.write("      showflg.value = \\"1\\";");
1.125     ng       1113:     pDoc.write("      var chkbox = document.msgcenter[\\"msgn\\"+i];");
1.76      ng       1114:     pDoc.write("      if (chkbox.checked) {");
                   1115:     pDoc.write("         msgchk += \\"savemsg\\"+i+\\",\\";");
1.80      ng       1116:     pDoc.write("         includemsg = 1;");
1.76      ng       1117:     pDoc.write("      }");
                   1118:     pDoc.write("  }");
                   1119:     pDoc.write("  if (document.msgcenter.newmsgchk.checked) {");
                   1120:     pDoc.write("     msgchk += \\"newmsg\\"+usrctr;");
1.80      ng       1121:     pDoc.write("     includemsg = 1;");
                   1122:     pDoc.write("  }");
1.125     ng       1123:     pDoc.write("  imgformname = opener.document.SCORE[\\"mailicon\\"+usrctr];");
1.84      ng       1124:     pDoc.write("  imgformname.src = \\"$iconpath/\\"+((includemsg) ? \\"mailto.gif\\" : \\"mailbkgrd.gif\\");");
1.125     ng       1125:     pDoc.write("  var includemsg = opener.document.SCORE[\\"includemsg\\"+usrctr];");
1.76      ng       1126:     pDoc.write("  includemsg.value = msgchk;");
                   1127: 
                   1128:     pDoc.write("  self.close()");
                   1129: 
                   1130:     pDoc.write("}");
                   1131: 
                   1132:     pDoc.write("<");
                   1133:     pDoc.write("/script>");
                   1134: 
                   1135:     pDoc.write("</head><body bgcolor=white>");
                   1136: 
                   1137:     pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
                   1138:     pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
                   1139:     pDoc.write("<font color=\\"green\\" size=+1>&nbsp;Compose Message for \"+fullname+\"</font><br><br>");
                   1140: 
                   1141:     pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
                   1142:     pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
                   1143:     pDoc.write("<td><b>Type</b></td><td><b>Include</b></td><td><b>Message</td></tr>");
1.44      ng       1144: }
                   1145:     function displaySubject(msg,shwsel) {
1.76      ng       1146:     pDoc = pWin.document;
                   1147:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1148:     pDoc.write("<td>Subject</td>");
                   1149:     pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"></td>");
                   1150:     pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"></td></tr>");
1.44      ng       1151: }
                   1152: 
1.72      ng       1153:   function displaySavedMsg(ctr,msg,shwsel) {
1.76      ng       1154:     pDoc = pWin.document;
                   1155:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1156:     pDoc.write("<td align=\\"center\\">"+ctr+"</td>");
                   1157:     pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"></td>");
                   1158:     pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"</textarea></td></tr>");
1.44      ng       1159: }
                   1160: 
                   1161:   function newMsg(newmsg,shwsel) {
1.76      ng       1162:     pDoc = pWin.document;
                   1163:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1164:     pDoc.write("<td align=\\"center\\">New</td>");
                   1165:     pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"></td>");
                   1166:     pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"</textarea></td></tr>");
1.44      ng       1167: }
                   1168: 
                   1169:   function msgTail() {
1.76      ng       1170:     pDoc = pWin.document;
                   1171:     pDoc.write("</table>");
                   1172:     pDoc.write("</td></tr></table>&nbsp;");
                   1173:     pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\">&nbsp;&nbsp;");
                   1174:     pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br><br>");
                   1175:     pDoc.write("</form>");
                   1176:     pDoc.write("</body></html>");
1.128     ng       1177:     pDoc.close();
1.44      ng       1178: }
                   1179: 
                   1180: //====================== Script for keyword highlight options ==============
                   1181:   function kwhighlight() {
                   1182:     var kwclr    = document.SCORE.kwclr.value;
                   1183:     var kwsize   = document.SCORE.kwsize.value;
                   1184:     var kwstyle  = document.SCORE.kwstyle.value;
                   1185:     var redsel = "";
                   1186:     var grnsel = "";
                   1187:     var blusel = "";
                   1188:     if (kwclr=="red")   {var redsel="checked"};
                   1189:     if (kwclr=="green") {var grnsel="checked"};
                   1190:     if (kwclr=="blue")  {var blusel="checked"};
                   1191:     var sznsel = "";
                   1192:     var sz1sel = "";
                   1193:     var sz2sel = "";
                   1194:     if (kwsize=="0")  {var sznsel="checked"};
                   1195:     if (kwsize=="+1") {var sz1sel="checked"};
                   1196:     if (kwsize=="+2") {var sz2sel="checked"};
                   1197:     var synsel = "";
                   1198:     var syisel = "";
                   1199:     var sybsel = "";
                   1200:     if (kwstyle=="")    {var synsel="checked"};
                   1201:     if (kwstyle=="<i>") {var syisel="checked"};
                   1202:     if (kwstyle=="<b>") {var sybsel="checked"};
                   1203:     highlightCentral();
                   1204:     highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
                   1205:     highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
                   1206:     highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
                   1207:     highlightend();
                   1208:     return;
                   1209:   }
                   1210: 
                   1211:   function highlightCentral() {
1.76      ng       1212: //    if (window.hwdWin) window.hwdWin.close();
1.118     ng       1213:     var xpos = (screen.width-400)/2;
                   1214:     xpos = (xpos < 0) ? '0' : xpos;
                   1215:     var ypos = (screen.height-330)/2-30;
                   1216:     ypos = (ypos < 0) ? '0' : ypos;
                   1217: 
                   1218:     hwdWin = window.open('', 'KeywordHighlightCentral', 'toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76      ng       1219:     hwdWin.focus();
                   1220:     var hDoc = hwdWin.document;
1.128     ng       1221:     hDoc.open('text/html','replace');
1.76      ng       1222:     hDoc.write("<html><head>");
                   1223:     hDoc.write("<title>Highlight Central</title>");
                   1224: 
                   1225:     hDoc.write("<script language=javascript>");
                   1226:     hDoc.write("function updateChoice(flag) {");
1.118     ng       1227:     hDoc.write("  opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);");
                   1228:     hDoc.write("  opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);");
                   1229:     hDoc.write("  opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);");
1.76      ng       1230:     hDoc.write("  opener.document.SCORE.refresh.value = \\"on\\";");
                   1231:     hDoc.write("  if (opener.document.SCORE.keywords.value!=\\"\\"){");
                   1232:     hDoc.write("     opener.document.SCORE.submit();");
                   1233:     hDoc.write("  }");
                   1234:     hDoc.write("  self.close()");
                   1235:     hDoc.write("}");
                   1236: 
                   1237:     hDoc.write("<");
                   1238:     hDoc.write("/script>");
                   1239: 
                   1240:     hDoc.write("</head><body bgcolor=white>");
                   1241: 
                   1242:     hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
                   1243:     hDoc.write("<font color=\\"green\\" size=+1>&nbsp;Keyword Highlight Options</font><br><br>");
                   1244: 
                   1245:     hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
                   1246:     hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
                   1247:     hDoc.write("<td><b>Text Color</b></td><td><b>Font Size</b></td><td><b>Font Style</td></tr>");
1.44      ng       1248:   }
                   1249: 
                   1250:   function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) { 
1.76      ng       1251:     var hDoc = hwdWin.document;
                   1252:     hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1253:     hDoc.write("<td align=\\"left\\">");
                   1254:     hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+">&nbsp;"+clrtxt+"</td>");
                   1255:     hDoc.write("<td align=\\"left\\">");
                   1256:     hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+">&nbsp;"+sztxt+"</td>");
                   1257:     hDoc.write("<td align=\\"left\\">");
                   1258:     hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+">&nbsp;"+sytxt+"</td>");
                   1259:     hDoc.write("</tr>");
1.44      ng       1260:   }
                   1261: 
                   1262:   function highlightend() { 
1.76      ng       1263:     var hDoc = hwdWin.document;
                   1264:     hDoc.write("</table>");
                   1265:     hDoc.write("</td></tr></table>&nbsp;");
                   1266:     hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\">&nbsp;&nbsp;");
                   1267:     hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br><br>");
                   1268:     hDoc.write("</form>");
                   1269:     hDoc.write("</body></html>");
1.128     ng       1270:     hDoc.close();
1.44      ng       1271:   }
                   1272: 
                   1273: </script>
                   1274: SUBJAVASCRIPT
                   1275: }
                   1276: 
1.71      ng       1277: #--- displays the grading box, used in essay type problem and grading by page/sequence
                   1278: sub gradeBox {
                   1279:     my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
                   1280: 
                   1281:     my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
                   1282: 	'/check.gif" height="16" border="0" />';
                   1283: 
                   1284:     my $wgt    = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
                   1285:     my $wgtmsg = ($wgt > 0 ? '(problem weight)' : 
                   1286: 		  '<font color="red">problem weight assigned by computer</font>');
                   1287:     $wgt       = ($wgt > 0 ? $wgt : '1');
                   1288:     my $score  = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
                   1289: 		  '' : $$record{'resource.'.$partid.'.awarded'}*$wgt);
                   1290:     my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
                   1291: 
                   1292:     $result.='<table border="0"><tr><td>'.
                   1293: 	'<b>Part </b>'.$partid.' <b>Points: </b></td><td>'."\n";
                   1294: 
                   1295:     my $ctr = 0;
                   1296:     $result.='<table border="0"><tr>'."\n";  # display radio buttons in a nice table 10 across
                   1297:     while ($ctr<=$wgt) {
1.179     albertel 1298: 	$result.= '<td><nobr><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.71      ng       1299: 	    'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.72      ng       1300: 	    $ctr.')" value="'.$ctr.'" '.
1.179     albertel 1301: 	    ($score eq $ctr ? 'checked':'').' /> '.$ctr."</nobr></td>\n";
1.71      ng       1302: 	$result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
                   1303: 	$ctr++;
                   1304:     }
                   1305:     $result.='</tr></table>';
                   1306: 
                   1307:     $result.='</td><td>&nbsp;<b>or</b>&nbsp;</td>'."\n";
                   1308:     $result.='<td><input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
                   1309: 	($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
                   1310: 	'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
                   1311: 	$wgt.')" /></td>'."\n";
                   1312:     $result.='<td>/'.$wgt.' '.$wgtmsg.
                   1313: 	($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? '&nbsp;'.$checkIcon : '').
                   1314: 	' </td><td>'."\n";
                   1315: 
                   1316:     $result.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
                   1317: 	'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
                   1318:     if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
                   1319: 	$result.='<option> </option>'.
1.125     ng       1320: 	    '<option selected="on">excused</option>';
1.71      ng       1321:     } else {
                   1322: 	$result.='<option selected="on"> </option>'.
1.125     ng       1323: 	    '<option>excused</option>';
1.71      ng       1324:     }
1.125     ng       1325:     $result.='<option>reset status</option></select>'."\n";
1.71      ng       1326:     $result.="&nbsp&nbsp\n";
                   1327:     $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
                   1328: 	'<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
                   1329: 	'<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
                   1330: 	$$record{'resource.'.$partid.'.solved'}.'" />'."\n";
                   1331:     $result.='</td></tr></table>'."\n";
                   1332:     return $result;
                   1333: }
1.44      ng       1334: 
1.58      albertel 1335: sub show_problem {
1.144     albertel 1336:     my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode) = @_;
                   1337:     my $rendered;
                   1338:     if ($mode eq 'both' or $mode eq 'text') {
                   1339: 	$rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
                   1340: 					     $ENV{'request.course.id'});
                   1341:     }
1.58      albertel 1342:     if ($removeform) {
                   1343: 	$rendered=~s|<form(.*?)>||g;
                   1344: 	$rendered=~s|</form>||g;
                   1345: 	$rendered=~s|name="submit"|name="would_have_been_submit"|g;
                   1346:     }
1.144     albertel 1347:     my $companswer;
                   1348:     if ($mode eq 'both' or $mode eq 'answer') {
                   1349: 	$companswer=&Apache::loncommon::get_student_answers($symb,$uname,$udom,
                   1350: 						    $ENV{'request.course.id'});
                   1351:     }
1.58      albertel 1352:     if ($removeform) {
                   1353: 	$companswer=~s|<form(.*?)>||g;
                   1354: 	$companswer=~s|</form>||g;
1.144     albertel 1355: 	$companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58      albertel 1356:     }
                   1357:     my $result.='<table border="0" width="100%"><tr><td bgcolor="#777777">';
1.71      ng       1358:     $result.='<table border="0" width="100%">';
1.144     albertel 1359:     if ($viewon) {
                   1360: 	$result.='<tr><td bgcolor="#e6ffff"><b> ';
                   1361: 	if ($mode eq 'both' or $mode eq 'text') {
                   1362: 	    $result.='View of the problem - ';
                   1363: 	} else {
                   1364: 	    $result.='Correct answer: ';
                   1365: 	}
                   1366: 	$result.=$ENV{'form.fullname'}.'</b></td></tr>';
                   1367:     }
                   1368:     if ($mode eq 'both') {
                   1369: 	$result.='<tr><td bgcolor="#ffffff">'.$rendered.'<br />';
                   1370: 	$result.='<b>Correct answer:</b><br />'.$companswer;
                   1371:     } elsif ($mode eq 'text') {
                   1372: 	$result.='<tr><td bgcolor="#ffffff">'.$rendered;
                   1373:     } elsif ($mode eq 'answer') {
                   1374: 	$result.='<tr><td bgcolor="#ffffff">'.$companswer;
                   1375:     }
1.58      albertel 1376:     $result.='</td></tr></table>';
                   1377:     $result.='</td></tr></table><br />';
1.71      ng       1378:     return $result;
1.58      albertel 1379: }
                   1380: 
1.44      ng       1381: # --------------------------- show submissions of a student, option to grade 
                   1382: sub submission {
                   1383:     my ($request,$counter,$total) = @_;
                   1384: 
                   1385:     (my $url=$ENV{'form.url'})=~s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
                   1386:     my ($uname,$udom)     = ($ENV{'form.student'},$ENV{'form.userdom'});
1.120     ng       1387:     $udom = ($udom eq '' ? $ENV{'user.domain'} : $udom); #has form.userdom changed for a student?
1.104     albertel 1388:     my $usec = &Apache::lonnet::getsection($udom,$uname,$ENV{'request.course.id'});
1.44      ng       1389:     $ENV{'form.fullname'} = &get_fullname ($uname,$udom) if $ENV{'form.fullname'} eq '';
1.41      ng       1390: 
                   1391:     my $symb=($ENV{'form.symb'} ne '' ? $ENV{'form.symb'} : (&Apache::lonnet::symbread($url)));
                   1392:     if ($symb eq '') { $request->print("Unable to handle ambiguous references:$url:."); return ''; }
1.104     albertel 1393: 
                   1394:     if (!&canview($usec)) {
1.116     ng       1395: 	$request->print('<font color="red">Unable to view requested student.('.
                   1396: 			$uname.$udom.$usec.$ENV{'request.course.id'}.')</font>');
1.104     albertel 1397: 	$request->print(&show_grading_menu_form($symb,$url));
                   1398: 	return;
                   1399:     }
                   1400: 
1.165     albertel 1401:     if (!$ENV{'form.lastSub'}) { $ENV{'form.lastSub'} = 'datesub'; }
                   1402:     if (!$ENV{'form.vProb'}) { $ENV{'form.vProb'} = 'yes'; }
                   1403:     if (!$ENV{'form.vAns'}) { $ENV{'form.vAns'} = 'yes'; }
1.41      ng       1404:     my $last = ($ENV{'form.lastSub'} eq 'last' ? 'last' : '');
1.122     ng       1405:     my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
                   1406: 	'/check.gif" height="16" border="0" />';
1.41      ng       1407: 
                   1408:     # header info
                   1409:     if ($counter == 0) {
                   1410: 	&sub_page_js($request);
1.118     ng       1411: 	&sub_page_kw_js($request) if ($ENV{'form.handgrade'} eq 'yes');
1.76      ng       1412: 	$ENV{'form.probTitle'} = $ENV{'form.probTitle'} eq '' ? 
                   1413: 	    &Apache::lonnet::gettitle($symb) : $ENV{'form.probTitle'};
                   1414: 
1.45      ng       1415: 	$request->print('<h3>&nbsp;<font color="#339933">Submission Record</font></h3>'."\n".
1.118     ng       1416: 			'<font size=+1>&nbsp;<b>Resource: </b>'.$ENV{'form.probTitle'}.'</font>'."\n");
                   1417: 
                   1418: 	if ($ENV{'form.handgrade'} eq 'no') {
                   1419: 	    my $checkMark='<br /><br />&nbsp;<b>Note:</b> Part(s) graded correct by the computer is marked with a '.
                   1420: 		$checkIcon.' symbol.'."\n";
                   1421: 	    $request->print($checkMark);
                   1422: 	}
1.41      ng       1423: 
1.44      ng       1424: 	# option to display problem, only once else it cause problems 
                   1425:         # with the form later since the problem has a form.
1.144     albertel 1426: 	if ($ENV{'form.vProb'} eq 'yes' or $ENV{'form.vAns'} eq 'yes') {
                   1427: 	    my $mode;
                   1428: 	    if ($ENV{'form.vProb'} eq 'yes' && $ENV{'form.vAns'} eq 'yes') {
                   1429: 		$mode='both';
                   1430: 	    } elsif ($ENV{'form.vProb'} eq 'yes') {
                   1431: 		$mode='text';
                   1432: 	    } elsif ($ENV{'form.vAns'} eq 'yes') {
                   1433: 		$mode='answer';
                   1434: 	    }
                   1435: 	    $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41      ng       1436: 	}
                   1437: 	
1.44      ng       1438: 	# kwclr is the only variable that is guaranteed to be non blank 
                   1439:         # if this subroutine has been called once.
1.41      ng       1440: 	my %keyhash = ();
1.118     ng       1441: 	if ($ENV{'form.kwclr'} eq '' && $ENV{'form.handgrade'} eq 'yes') {
1.41      ng       1442: 	    %keyhash = &Apache::lonnet::dump('nohist_handgrade',
                   1443: 					     $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                   1444: 					     $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
                   1445: 
                   1446: 	    my $loginuser = $ENV{'user.name'}.':'.$ENV{'user.domain'};
                   1447: 	    $ENV{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                   1448: 	    $ENV{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                   1449: 	    $ENV{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                   1450: 	    $ENV{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                   1451: 	    $ENV{'form.msgsub'}   = $keyhash{$symb.'_subject'} ne '' ? 
1.72      ng       1452: 		$keyhash{$symb.'_subject'} : $ENV{'form.probTitle'};
1.41      ng       1453: 	    $ENV{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
                   1454: 	}
1.120     ng       1455: 	my $overRideScore = $ENV{'form.overRideScore'} eq '' ? 'no' : $ENV{'form.overRideScore'};
1.44      ng       1456: 
1.41      ng       1457: 	$request->print('<form action="/adm/grades" method="post" name="SCORE">'."\n".
                   1458: 			'<input type="hidden" name="command"    value="handgrade" />'."\n".
1.80      ng       1459: 			'<input type="hidden" name="saveState"  value="'.$ENV{'form.saveState'}.'" />'."\n".
1.119     ng       1460: 			'<input type="hidden" name="Status"     value="'.$ENV{'form.Status'}.'" />'."\n".
1.120     ng       1461: 			'<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.72      ng       1462: 			'<input type="hidden" name="probTitle"  value="'.$ENV{'form.probTitle'}.'" />'."\n".
1.41      ng       1463: 			'<input type="hidden" name="refresh"    value="off" />'."\n".
1.120     ng       1464: 			'<input type="hidden" name="studentNo"  value="" />'."\n".
                   1465: 			'<input type="hidden" name="gradeOpt"   value="" />'."\n".
1.41      ng       1466: 			'<input type="hidden" name="symb"       value="'.$symb.'" />'."\n".
                   1467: 			'<input type="hidden" name="url"        value="'.$url.'" />'."\n".
                   1468: 			'<input type="hidden" name="showgrading" value="'.$ENV{'form.showgrading'}.'" />'."\n".
                   1469: 			'<input type="hidden" name="vProb"      value="'.$ENV{'form.vProb'}.'" />'."\n".
1.144     albertel 1470: 			'<input type="hidden" name="vAns"       value="'.$ENV{'form.vAns'}.'" />'."\n".
1.41      ng       1471: 			'<input type="hidden" name="lastSub"    value="'.$ENV{'form.lastSub'}.'" />'."\n".
                   1472: 			'<input type="hidden" name="section"    value="'.$ENV{'form.section'}.'">'."\n".
                   1473: 			'<input type="hidden" name="submitonly" value="'.$ENV{'form.submitonly'}.'">'."\n".
                   1474: 			'<input type="hidden" name="handgrade"  value="'.$ENV{'form.handgrade'}.'">'."\n".
                   1475: 			'<input type="hidden" name="NCT"'.
                   1476: 			' value="'.($ENV{'form.NTSTU'} ne '' ? $ENV{'form.NTSTU'} : $total+1).'" />'."\n");
1.123     ng       1477: 	if ($ENV{'form.handgrade'} eq 'yes') {
                   1478: 	    $request->print('<input type="hidden" name="keywords" value="'.$ENV{'form.keywords'}.'" />'."\n".
                   1479: 			    '<input type="hidden" name="kwclr"    value="'.$ENV{'form.kwclr'}.'" />'."\n".
                   1480: 			    '<input type="hidden" name="kwsize"   value="'.$ENV{'form.kwsize'}.'" />'."\n".
                   1481: 			    '<input type="hidden" name="kwstyle"  value="'.$ENV{'form.kwstyle'}.'" />'."\n".
                   1482: 			    '<input type="hidden" name="msgsub"   value="'.$ENV{'form.msgsub'}.'" />'."\n".
                   1483: 			    '<input type="hidden" name="shownSub" value="0" />'."\n".
                   1484: 			    '<input type="hidden" name="savemsgN" value="'.$ENV{'form.savemsgN'}.'" />'."\n");
1.154     albertel 1485: 	    foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
                   1486: 		$request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
                   1487: 	    }
1.123     ng       1488: 	}
1.41      ng       1489: 	
                   1490: 	my ($cts,$prnmsg) = (1,'');
                   1491: 	while ($cts <= $ENV{'form.savemsgN'}) {
                   1492: 	    $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123     ng       1493: 		(!exists($keyhash{$symb.'_savemsg'.$cts}) ? 
1.80      ng       1494: 		 &Apache::lonfeedback::clear_out_html($ENV{'form.savemsg'.$cts}) :
                   1495: 		 &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123     ng       1496: 		'" />'."\n".
                   1497: 		'<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41      ng       1498: 	    $cts++;
                   1499: 	}
                   1500: 	$request->print($prnmsg);
1.32      ng       1501: 
1.41      ng       1502: 	if ($ENV{'form.handgrade'} eq 'yes' && $ENV{'form.showgrading'} eq 'yes') {
1.88      www      1503: #
                   1504: # Print out the keyword options line
                   1505: #
1.41      ng       1506: 	    $request->print(<<KEYWORDS);
1.38      ng       1507: &nbsp;<b>Keyword Options:</b>&nbsp;
1.122     ng       1508: <a href="javascript:keywords(document.SCORE)"; TARGET=_self>List</a>&nbsp; &nbsp;
1.38      ng       1509: <a href="#" onMouseDown="javascript:getSel(); return false"
                   1510:  CLASS="page">Paste Selection to List</a>&nbsp; &nbsp;
                   1511: <a href="javascript:kwhighlight()"; TARGET=_self>Highlight Attribute</a><br /><br />
                   1512: KEYWORDS
1.88      www      1513: #
                   1514: # Load the other essays for similarity check
                   1515: #
                   1516:             my $essayurl=&Apache::lonnet::declutter($url);
                   1517: 	    my ($adom,$aname,$apath)=($essayurl=~/^(\w+)\/(\w+)\/(.*)$/);
                   1518: 	    $apath=&Apache::lonnet::escape($apath);
                   1519: 	    $apath=~s/\W/\_/gs;
                   1520: 	    %oldessays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
1.41      ng       1521:         }
                   1522:     }
1.44      ng       1523: 
1.144     albertel 1524:     if ($ENV{'form.vProb'} eq 'all' or $ENV{'form.vAns'} eq 'all') {
1.71      ng       1525: 	$request->print('<br /><br /><br />') if ($counter > 0);
1.144     albertel 1526: 	my $mode;
                   1527: 	if ($ENV{'form.vProb'} eq 'all' && $ENV{'form.vAns'} eq 'all') {
                   1528: 	    $mode='both';
                   1529: 	} elsif ($ENV{'form.vProb'} eq 'all' ) {
                   1530: 	    $mode='text';
                   1531: 	} elsif ($ENV{'form.vAns'} eq 'all') {
                   1532: 	    $mode='answer';
                   1533: 	}
                   1534: 	$request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode));
1.58      albertel 1535:     }
1.144     albertel 1536: 
1.41      ng       1537:     my %record = &Apache::lonnet::restore($symb,$ENV{'request.course.id'},$udom,$uname);
1.125     ng       1538: 
1.147     albertel 1539:     my ($partlist,$handgrade,$responseType) = &response_type($url,$symb);
1.41      ng       1540: 
1.44      ng       1541:     # Display student info
1.41      ng       1542:     $request->print(($counter == 0 ? '' : '<br />'));
1.45      ng       1543:     my $result='<table border="0" width=100%><tr><td bgcolor="#777777">'."\n".
                   1544: 	'<table border="0" width=100%><tr bgcolor="#edffff"><td>'."\n";
1.44      ng       1545: 
1.129     ng       1546:     $result.='<b>Fullname: </b>'.&nameUserString(undef,$ENV{'form.fullname'},$uname,$udom).'<br />'."\n";
1.45      ng       1547:     $result.='<input type="hidden" name="name'.$counter.
                   1548: 	'" value="'.$ENV{'form.fullname'}.'" />'."\n";
1.41      ng       1549: 
1.118     ng       1550:     # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.45      ng       1551:     my @col_fullnames;
1.56      matthew  1552:     my ($classlist,$fullname);
1.41      ng       1553:     if ($ENV{'form.handgrade'} eq 'yes') {
1.80      ng       1554: 	($classlist,undef,$fullname) = &getclasslist('all','0');
1.41      ng       1555: 	for (keys (%$handgrade)) {
1.44      ng       1556: 	    my $ncol = &Apache::lonnet::EXT('resource.'.$_.
1.57      matthew  1557: 					    '.maxcollaborators',
                   1558:                                             $symb,$udom,$uname);
                   1559: 	    next if ($ncol <= 0);
                   1560:             s/\_/\./g;
                   1561:             next if ($record{'resource.'.$_.'.collaborators'} eq '');
1.86      ng       1562:             my @goodcollaborators = ();
                   1563:             my @badcollaborators  = ();
                   1564: 	    foreach (split(/,?\s+/,$record{'resource.'.$_.'.collaborators'})) { 
                   1565: 		$_ =~ s/[\$\^\(\)]//g;
                   1566: 		next if ($_ eq '');
1.80      ng       1567: 		my ($co_name,$co_dom) = split /\@|:/,$_;
1.86      ng       1568: 		$co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
1.80      ng       1569: 		next if ($co_name eq $uname && $co_dom eq $udom);
1.86      ng       1570: 		# Doing this grep allows 'fuzzy' specification
                   1571: 		my @Matches = grep /^$co_name:$co_dom$/i,keys %$classlist;
                   1572: 		if (! scalar(@Matches)) {
                   1573: 		    push @badcollaborators,$_;
                   1574: 		} else {
                   1575: 		    push @goodcollaborators, @Matches;
                   1576: 		}
1.80      ng       1577: 	    }
1.86      ng       1578:             if (scalar(@goodcollaborators) != 0) {
1.57      matthew  1579:                 $result.='<b>Collaborators: </b>';
1.86      ng       1580:                 foreach (@goodcollaborators) {
                   1581: 		    my ($lastname,$givenn) = split(/,/,$$fullname{$_});
                   1582: 		    push @col_fullnames, $givenn.' '.$lastname;
                   1583: 		    $result.=$$fullname{$_}.'&nbsp; &nbsp; &nbsp;';
                   1584: 		}
1.57      matthew  1585:                 $result.='<br />'."\n";
1.150     albertel 1586: 		my ($part)=split(/\./,$_);
1.86      ng       1587: 		$result.='<input type="hidden" name="collaborator'.$counter.
1.150     albertel 1588: 		    '" value="'.$part.':'.(join ':',@goodcollaborators).'" />'.
                   1589: 		    "\n";
1.86      ng       1590: 	    }
                   1591: 	    if (scalar(@badcollaborators) > 0) {
                   1592: 		$result.='<table border="0"><tr bgcolor="#ffbbbb"><td>';
                   1593: 		$result.='This student has submitted ';
                   1594: 		$result.=(scalar(@badcollaborators) == 1) ? 'an invalid collaborator' : 'invalid collaborators';
                   1595: 		$result .= ': '.join(', ',@badcollaborators);
                   1596: 		$result .= '</td></tr></table>';
                   1597: 	    }         
                   1598: 	    if (scalar(@badcollaborators > $ncol)) {
                   1599: 		$result .= '<table border="0"><tr bgcolor="#ffbbbb"><td>';
                   1600: 		$result .= 'This student has submitted too many '.
                   1601: 		    'collaborators.  Maximum is '.$ncol.'.';
                   1602: 		$result .= '</td></tr></table>';
                   1603: 	    }
1.41      ng       1604: 	}
                   1605:     }
1.44      ng       1606:     $request->print($result."\n");
1.33      ng       1607: 
1.44      ng       1608:     # print student answer/submission
                   1609:     # Options are (1) Handgaded submission only
                   1610:     #             (2) Last submission, includes submission that is not handgraded 
                   1611:     #                  (for multi-response type part)
                   1612:     #             (3) Last submission plus the parts info
                   1613:     #             (4) The whole record for this student
1.41      ng       1614:     if ($ENV{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151     albertel 1615: 	my ($string,$timestamp)= &get_last_submission(\%record);
                   1616: 	my $lastsubonly=''.
                   1617: 	    ($$timestamp eq '' ? '' : '<b>Date Submitted:</b> '.
                   1618: 	     $$timestamp)."</td></tr>\n";
                   1619: 	if ($$timestamp eq '') {
                   1620: 	    $lastsubonly.='<tr><td bgcolor="#ffffe6">'.$$string[0]; 
                   1621: 	} else {
                   1622: 	    my %seenparts;
                   1623: 	    for my $part (sort keys(%$handgrade)) {
                   1624: 		my ($partid,$respid) = split(/_/,$part);
                   1625: 		if ($ENV{"form.$uname:$udom:$partid:submitted_by"}) {
                   1626: 		    if (exists($seenparts{$partid})) { next; }
                   1627: 		    $seenparts{$partid}=1;
                   1628: 		    my $submitby='<b>Part '.$partid.
                   1629: 			' Collaborative submission by: </b>'.
                   1630: 			'<a href="javascript:viewSubmitter(\''.
                   1631: 			$ENV{"form.$uname:$udom:$partid:submitted_by"}.
                   1632: 			'\')"; TARGET=_self>'.
                   1633: 			$$fullname{$ENV{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
                   1634: 		    $request->print($submitby);
                   1635: 		    next;
                   1636: 		}
                   1637: 		my $responsetype = $responseType->{$partid}->{$respid};
                   1638: 		if (!exists($record{"resource.$partid.$respid.submission"})) {
                   1639: 		    $lastsubonly.='<tr><td bgcolor="#ffffe6"><b>Part '.
                   1640: 			$partid.'</b> <font color="#999999">( ID '.$respid.
                   1641: 			' )</font>&nbsp; &nbsp;'.
                   1642: 			'<font color="red">Nothing submitted - no attempts</font><br /><br />';
                   1643: 		    next;
                   1644: 		}
                   1645: 		foreach (@$string) {
                   1646: 		    my ($partid,$respid) = /^resource\.([^\.]*)\.([^\.]*)\.submission/;
                   1647: 		    if ($part ne ($partid.'_'.$respid)) { next; }
                   1648: 		    my ($ressub,$subval) = split(/:/,$_,2);
                   1649: 		    # Similarity check
                   1650: 		    my $similar='';
                   1651: 		    if($ENV{'form.checkPlag'}){
                   1652: 			my ($oname,$odom,$ocrsid,$oessay,$osim)=
                   1653: 			    &most_similar($uname,$udom,$subval);
                   1654: 			if ($osim) {
                   1655: 			    $osim=int($osim*100.0);
                   1656: 			    $similar="<hr /><h3><font color=\"#FF0000\">Essay".
                   1657: 				" is $osim% similar to an essay by ".
                   1658: 				&Apache::loncommon::plainname($oname,$odom).
                   1659: 				'</font></h3><blockquote><i>'.
                   1660: 				&keywords_highlight($oessay).
                   1661: 				'</i></blockquote><hr />';
                   1662: 			}
1.150     albertel 1663: 		    }
1.151     albertel 1664: 		    my $order=&get_order($partid,$respid,$symb,$uname,$udom);
                   1665: 		    if ($ENV{'form.lastSub'} eq 'lastonly' || 
                   1666: 			($ENV{'form.lastSub'} eq 'hdgrade' && 
                   1667: 			 $$handgrade{$part} eq 'yes')) {
1.118     ng       1668: 			$lastsubonly.='<tr><td bgcolor="#ffffe6"><b>Part '.
                   1669: 			    $partid.'</b> <font color="#999999">( ID '.$respid.
1.151     albertel 1670: 			    ' )</font>&nbsp; &nbsp;';
                   1671: 			if ($record{"resource.$partid.$respid.uploadedurl"}) {
1.163     www      1672: 			    $lastsubonly.='<a href="'.&Apache::lonnet::tokenwrapper($record{"resource.$partid.$respid.uploadedurl"}).'" target="lonGRDs"><img src="/adm/lonIcons/unknown.gif" border=0"> File uploaded by student</a> <font color="red" size="1">Like all files provided by users, this file may contain virusses</font><br />';
1.41      ng       1673: 			}
1.151     albertel 1674: 			$lastsubonly.='<b>Submitted Answer: </b>'.
                   1675: 			    &cleanRecord($subval,$responsetype,$symb,$partid,
                   1676: 					 $respid,\%record,$order);
                   1677: 			if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.41      ng       1678: 		    }
                   1679: 		}
                   1680: 	    }
1.151     albertel 1681: 	}
                   1682: 	$lastsubonly.='</td></tr><tr bgcolor="#ffffff"><td>'."\n";
                   1683: 	$request->print($lastsubonly);
1.122     ng       1684:     } elsif ($ENV{'form.lastSub'} eq 'datesub') {
                   1685: 	my (undef,$responseType,undef,$parts) = &showResourceInfo($url);
1.148     albertel 1686: 	$request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.122     ng       1687:     } elsif ($ENV{'form.lastSub'} =~ /^(last|all)$/) {
1.41      ng       1688: 	$request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.44      ng       1689: 								 $ENV{'request.course.id'},
                   1690: 								 $last,'.submission',
                   1691: 								 'Apache::grades::keywords_highlight'));
1.41      ng       1692:     }
1.120     ng       1693: 
1.121     ng       1694:     $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
                   1695: 	.$udom.'" />'."\n");
1.41      ng       1696:     
1.44      ng       1697:     # return if view submission with no grading option
1.118     ng       1698:     if ($ENV{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120     ng       1699: 	my $toGrade.='<input type="button" value="Grade Student" '.
1.121     ng       1700: 	    'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
                   1701: 	    .$counter.'\');" TARGET=_self> &nbsp;'."\n" if (&canmodify($usec));
1.169     albertel 1702: 	$toGrade.='</td></tr></table></td></tr></table>'."\n";
                   1703: 	if (($ENV{'form.command'} eq 'submission') || 
                   1704: 	    ($ENV{'form.command'} eq 'processGroup' && $counter == $total)) {
                   1705: 	    $toGrade.='</form>'.&show_grading_menu_form($symb,$url) 
                   1706: 	}
1.180   ! albertel 1707: 	$request->print($toGrade);
1.41      ng       1708: 	return;
1.180   ! albertel 1709:     } else {
        !          1710: 	$request->print('</td></tr></table></td></tr></table>'."\n");
1.41      ng       1711:     }
1.33      ng       1712: 
1.121     ng       1713:     # essay grading message center
1.118     ng       1714:     if ($ENV{'form.handgrade'} eq 'yes') {
                   1715: 	my ($lastname,$givenn) = split(/,/,$ENV{'form.fullname'});
                   1716: 	my $msgfor = $givenn.' '.$lastname;
                   1717: 	if (scalar(@col_fullnames) > 0) {
                   1718: 	    my $lastone = pop @col_fullnames;
                   1719: 	    $msgfor .= ', '.(join ', ',@col_fullnames).' and '.$lastone.'.';
                   1720: 	}
                   1721: 	$msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.121     ng       1722: 	$result='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
                   1723: 	    '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
                   1724: 	$result.='&nbsp;<a href="javascript:msgCenter(document.SCORE,'.$counter.
1.118     ng       1725: 	    ',\''.$msgfor.'\')"; TARGET=_self>'.
                   1726: 	    'Compose Message to student'.(scalar(@col_fullnames) >= 1 ? 's' : '').'</a> &nbsp;'.
                   1727: 	    '<img src="'.$request->dir_config('lonIconsURL').
                   1728: 	    '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
                   1729: 	    '<br />&nbsp;(Message will be sent when you click on Save & Next below.)'."\n" 
                   1730: 	    if ($ENV{'form.handgrade'} eq 'yes');
1.121     ng       1731: 	$request->print($result);
1.118     ng       1732:     }
1.41      ng       1733: 
                   1734:     my %seen = ();
                   1735:     my @partlist;
1.129     ng       1736:     my @gradePartRespid;
1.41      ng       1737:     for (sort keys(%$handgrade)) {
                   1738: 	my ($partid,$respid) = split(/_/);
                   1739: 	next if ($seen{$partid} > 0);
                   1740: 	$seen{$partid}++;
1.118     ng       1741: 	next if ($$handgrade{$_} =~ /:no$/ && $ENV{'form.lastSub'} =~ /^(hdgrade)$/);
1.41      ng       1742: 	push @partlist,$partid;
1.129     ng       1743: 	push @gradePartRespid,$partid.'.'.$respid;
1.41      ng       1744: 
1.71      ng       1745: 	$request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41      ng       1746:     }
1.45      ng       1747:     $result='<input type="hidden" name="partlist'.$counter.
                   1748: 	'" value="'.(join ":",@partlist).'" />'."\n";
1.129     ng       1749:     $result.='<input type="hidden" name="gradePartRespid'.
                   1750: 	'" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45      ng       1751:     my $ctr = 0;
                   1752:     while ($ctr < scalar(@partlist)) {
                   1753: 	$result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
                   1754: 	    $partlist[$ctr].'" />'."\n";
                   1755: 	$ctr++;
                   1756:     }
                   1757:     $request->print($result.'</td></tr></table></td></tr></table>'."\n");
1.41      ng       1758: 
                   1759:     # print end of form
                   1760:     if ($counter == $total) {
1.120     ng       1761: 	my $endform='<table border="0"><tr><td>'."\n";
1.119     ng       1762: 	$endform.='<input type="button" value="Save & Next" '.
                   1763: 	    'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
                   1764: 	    $total.','.scalar(@partlist).');" TARGET=_self> &nbsp;'."\n";
                   1765: 	my $ntstu ='<select name="NTSTU">'.
                   1766: 	    '<option>1</option><option>2</option>'.
                   1767: 	    '<option>3</option><option>5</option>'.
                   1768: 	    '<option>7</option><option>10</option></select>'."\n";
                   1769: 	my $nsel = ($ENV{'form.NTSTU'} ne '' ? $ENV{'form.NTSTU'} : '1');
                   1770: 	$ntstu =~ s/<option>$nsel</<option selected="on">$nsel</;
                   1771: 	$endform.=$ntstu.'student(s) &nbsp;&nbsp;';
1.126     ng       1772: 	$endform.='<input type="button" value="Previous" '.
                   1773: 	    'onClick="javascript:checksubmit(this.form,\'Previous\');" TARGET=_self> &nbsp;'."\n".
                   1774: 	    '<input type="button" value="Next" '.
                   1775: 	    'onClick="javascript:checksubmit(this.form,\'Next\');" TARGET=_self> &nbsp;';
                   1776: 	$endform.='(Next and Previous (student) do not save the scores.)'."\n" ;
1.45      ng       1777: 	$endform.='</td><tr></table></form>';
1.50      albertel 1778: 	$endform.=&show_grading_menu_form($symb,$url);
1.41      ng       1779: 	$request->print($endform);
                   1780:     }
                   1781:     return '';
1.38      ng       1782: }
                   1783: 
1.44      ng       1784: #--- Retrieve the last submission for all the parts
1.38      ng       1785: sub get_last_submission {
1.119     ng       1786:     my ($returnhash)=@_;
1.46      ng       1787:     my (@string,$timestamp);
1.119     ng       1788:     if ($$returnhash{'version'}) {
1.46      ng       1789: 	my %lasthash=();
                   1790: 	my ($version);
1.119     ng       1791: 	for ($version=1;$version<=$$returnhash{'version'};$version++) {
                   1792: 	    foreach (sort(split(/\:/,$$returnhash{$version.':keys'}))) {
                   1793: 		$lasthash{$_}=$$returnhash{$version.':'.$_};
                   1794: 		   $timestamp = scalar(localtime($$returnhash{$version.':timestamp'}));
1.46      ng       1795: 	    }
                   1796: 	}
                   1797: 	foreach ((keys %lasthash)) {
                   1798: 	    if ($_ =~ /\.submission$/) {
                   1799: 		my ($partid,$foo) = split(/submission$/,$_);
                   1800: 		my $draft  = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
                   1801: 		    '<font color="red">Draft Copy</font> ' : '';
                   1802: 		push @string, (join(':',$_,$draft.$lasthash{$_}));
1.41      ng       1803: 	    }
                   1804: 	}
                   1805:     }
1.125     ng       1806:     @string = $string[0] eq '' ? '<font color="red">Nothing submitted - no attempts.</font>' : @string;
1.46      ng       1807:     return \@string,\$timestamp;
1.38      ng       1808: }
1.35      ng       1809: 
1.44      ng       1810: #--- High light keywords, with style choosen by user.
1.38      ng       1811: sub keywords_highlight {
1.44      ng       1812:     my $string    = shift;
                   1813:     my $size      = $ENV{'form.kwsize'} eq '0' ? '' : 'size='.$ENV{'form.kwsize'};
                   1814:     my $styleon   = $ENV{'form.kwstyle'} eq ''  ? '' : $ENV{'form.kwstyle'};
1.41      ng       1815:     (my $styleoff = $styleon) =~ s/\</\<\//;
1.44      ng       1816:     my @keylist   = split(/[,\s+]/,$ENV{'form.keywords'});
1.41      ng       1817:     foreach (@keylist) {
1.119     ng       1818: 	$string =~ s/\b\Q$_\E(\b|\.)/<font color\=$ENV{'form.kwclr'} $size\>$styleon$_$styleoff<\/font>/gi;
1.41      ng       1819:     }
                   1820:     return $string;
1.38      ng       1821: }
1.36      ng       1822: 
1.44      ng       1823: #--- Called from submission routine
1.38      ng       1824: sub processHandGrade {
1.41      ng       1825:     my ($request) = shift;
                   1826:     my $url    = $ENV{'form.url'};
                   1827:     my $symb   = $ENV{'form.symb'};
                   1828:     my $button = $ENV{'form.gradeOpt'};
                   1829:     my $ngrade = $ENV{'form.NCT'};
                   1830:     my $ntstu  = $ENV{'form.NTSTU'};
1.44      ng       1831:     if ($button eq 'Save & Next') {
                   1832: 	my $ctr = 0;
                   1833: 	while ($ctr < $ngrade) {
                   1834: 	    my ($uname,$udom) = split(/:/,$ENV{'form.unamedom'.$ctr});
1.77      ng       1835: 	    my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$url,$symb,$uname,$udom,$ctr);
1.71      ng       1836: 	    if ($errorflag eq 'no_score') {
                   1837: 		$ctr++;
                   1838: 		next;
                   1839: 	    }
1.104     albertel 1840: 	    if ($errorflag eq 'not_allowed') {
                   1841: 		$request->print("<font color=\"red\">Not allowed to modify grades for $uname:$udom</font>");
                   1842: 		$ctr++;
                   1843: 		next;
                   1844: 	    }
1.44      ng       1845: 	    my $includemsg = $ENV{'form.includemsg'.$ctr};
                   1846: 	    my ($subject,$message,$msgstatus) = ('','','');
1.62      albertel 1847: 	    if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.44      ng       1848: 		$subject = $ENV{'form.msgsub'} if ($includemsg =~ /^msgsub/);
                   1849: 		my (@msgnum) = split(/,/,$includemsg);
                   1850: 		foreach (@msgnum) {
                   1851: 		    $message.=$ENV{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
                   1852: 		}
1.80      ng       1853: 		$message =&Apache::lonfeedback::clear_out_html($message);
1.77      ng       1854: 		$message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.80      ng       1855: 		$message.=" for <a href=\"".
                   1856: 		    &Apache::lonnet::clutter($url).
                   1857: 		    "?symb=$symb\">$ENV{'form.probTitle'}</a>";
1.44      ng       1858: 		$msgstatus = &Apache::lonmsg::user_normal_msg ($uname,$udom,
                   1859: 							       $ENV{'form.msgsub'},$message);
                   1860: 	    }
                   1861: 	    if ($ENV{'form.collaborator'.$ctr}) {
1.155     albertel 1862: 		my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150     albertel 1863: 		foreach my $collabstr (@collabstrs) {
                   1864: 		    my ($part,@collaborators) = split(/:/,$collabstr);
                   1865: 		    foreach (@collaborators) {
                   1866: 			my ($errorflag,$pts,$wgt) = 
                   1867: 			    &saveHandGrade($request,$url,$symb,$_,$udom,$ctr,
                   1868: 					   $ENV{'form.unamedom'.$ctr},$part);
                   1869: 			if ($errorflag eq 'not_allowed') {
                   1870: 			    $request->print("<font color=\"red\">Not allowed to modify grades for $_:$udom</font>");
                   1871: 			    next;
                   1872: 			} else {
                   1873: 			    if ($message ne '') {
                   1874: 				$msgstatus = &Apache::lonmsg::user_normal_msg($_,$udom,$ENV{'form.msgsub'},$message);
                   1875: 			    }
                   1876: 			    
1.104     albertel 1877: 			}
1.44      ng       1878: 		    }
                   1879: 		}
                   1880: 	    }
                   1881: 	    $ctr++;
                   1882: 	}
                   1883:     }
                   1884: 
1.119     ng       1885:     if ($ENV{'form.handgrade'} eq 'yes') {
                   1886: 	# Keywords sorted in alphabatical order
                   1887: 	my $loginuser = $ENV{'user.name'}.':'.$ENV{'user.domain'};
                   1888: 	my %keyhash = ();
                   1889: 	$ENV{'form.keywords'}           =~ s/,\s{0,}|\s+/ /g;
                   1890: 	$ENV{'form.keywords'}           =~ s/^\s+|\s+$//;
                   1891: 	my (@keywords) = sort(split(/\s+/,$ENV{'form.keywords'}));
                   1892: 	$ENV{'form.keywords'} = join(' ',@keywords);
                   1893: 	$keyhash{$symb.'_keywords'}     = $ENV{'form.keywords'};
                   1894: 	$keyhash{$symb.'_subject'}      = $ENV{'form.msgsub'};
                   1895: 	$keyhash{$loginuser.'_kwclr'}   = $ENV{'form.kwclr'};
                   1896: 	$keyhash{$loginuser.'_kwsize'}  = $ENV{'form.kwsize'};
                   1897: 	$keyhash{$loginuser.'_kwstyle'} = $ENV{'form.kwstyle'};
                   1898: 
                   1899: 	# message center - Order of message gets changed. Blank line is eliminated.
                   1900: 	# New messages are saved in ENV for the next student.
                   1901: 	# All messages are saved in nohist_handgrade.db
                   1902: 	my ($ctr,$idx) = (1,1);
                   1903: 	while ($ctr <= $ENV{'form.savemsgN'}) {
                   1904: 	    if ($ENV{'form.savemsg'.$ctr} ne '') {
                   1905: 		$keyhash{$symb.'_savemsg'.$idx} = $ENV{'form.savemsg'.$ctr};
                   1906: 		$idx++;
                   1907: 	    }
                   1908: 	    $ctr++;
1.41      ng       1909: 	}
1.119     ng       1910: 	$ctr = 0;
                   1911: 	while ($ctr < $ngrade) {
                   1912: 	    if ($ENV{'form.newmsg'.$ctr} ne '') {
                   1913: 		$keyhash{$symb.'_savemsg'.$idx} = $ENV{'form.newmsg'.$ctr};
                   1914: 		$ENV{'form.savemsg'.$idx} = $ENV{'form.newmsg'.$ctr};
                   1915: 		$idx++;
                   1916: 	    }
                   1917: 	    $ctr++;
1.41      ng       1918: 	}
1.119     ng       1919: 	$ENV{'form.savemsgN'} = --$idx;
                   1920: 	$keyhash{$symb.'_savemsgN'} = $ENV{'form.savemsgN'};
                   1921: 	my $putresult = &Apache::lonnet::put
                   1922: 	    ('nohist_handgrade',\%keyhash,
                   1923: 	     $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                   1924: 	     $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.41      ng       1925:     }
1.44      ng       1926:     # Called by Save & Refresh from Highlight Attribute Window
1.119     ng       1927:     my (undef,undef,$fullname) = &getclasslist($ENV{'form.section'},'1');
1.41      ng       1928:     if ($ENV{'form.refresh'} eq 'on') {
1.86      ng       1929: 	my ($ctr,$total) = (0,0);
                   1930: 	while ($ctr < $ngrade) {
                   1931: 	    $total++ if  $ENV{'form.unamedom'.$ctr} ne '';
                   1932: 	    $ctr++;
                   1933: 	}
1.41      ng       1934: 	$ENV{'form.NTSTU'}=$ngrade;
1.86      ng       1935: 	$ctr = 0;
                   1936: 	while ($ctr < $total) {
                   1937: 	    my $processUser = $ENV{'form.unamedom'.$ctr};
                   1938: 	    ($ENV{'form.student'},$ENV{'form.userdom'}) = split(/:/,$processUser);
                   1939: 	    $ENV{'form.fullname'} = $$fullname{$processUser};
                   1940: 	    &submission($request,$ctr,$total-1);
1.41      ng       1941: 	    $ctr++;
                   1942: 	}
                   1943: 	return '';
                   1944:     }
1.36      ng       1945: 
1.121     ng       1946: # Go directly to grade student - from submission or link from chart page
1.120     ng       1947:     if ($button eq 'Grade Student') {
1.121     ng       1948: 	(undef,undef,$ENV{'form.handgrade'},undef,undef) = &showResourceInfo($url);
1.120     ng       1949: 	my $processUser = $ENV{'form.unamedom'.$ENV{'form.studentNo'}};
                   1950: 	($ENV{'form.student'},$ENV{'form.userdom'}) = split(/:/,$processUser);
                   1951: 	$ENV{'form.fullname'} = $$fullname{$processUser};
                   1952: 	&submission($request,0,0);
                   1953: 	return '';
                   1954:     }
                   1955: 
1.44      ng       1956:     # Get the next/previous one or group of students
1.41      ng       1957:     my $firststu = $ENV{'form.unamedom0'};
                   1958:     my $laststu = $ENV{'form.unamedom'.($ngrade-1)};
1.119     ng       1959:     my $ctr = 2;
1.41      ng       1960:     while ($laststu eq '') {
                   1961: 	$laststu  = $ENV{'form.unamedom'.($ngrade-$ctr)};
                   1962: 	$ctr++;
                   1963: 	$laststu = $firststu if ($ctr > $ngrade);
                   1964:     }
1.44      ng       1965: 
1.41      ng       1966:     my (@parsedlist,@nextlist);
                   1967:     my ($nextflg) = 0;
1.53      albertel 1968:     foreach (sort {lc($$fullname{$a}) cmp lc($$fullname{$b}) } keys %$fullname) {
1.41      ng       1969: 	if ($nextflg == 1 && $button =~ /Next$/) {
                   1970: 	    push @parsedlist,$_;
                   1971: 	}
                   1972: 	$nextflg = 1 if ($_ eq $laststu);
                   1973: 	if ($button eq 'Previous') {
                   1974: 	    last if ($_ eq $firststu);
                   1975: 	    push @parsedlist,$_;
                   1976: 	}
                   1977:     }
                   1978:     $ctr = 0;
                   1979:     @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.145     albertel 1980:     my ($partlist) = &response_type($url);
1.41      ng       1981:     foreach my $student (@parsedlist) {
1.145     albertel 1982: 	my $submitonly=$ENV{'form.submitonly'};
1.41      ng       1983: 	my ($uname,$udom) = split(/:/,$student);
1.156     albertel 1984: 	if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.145     albertel 1985: #	    my %record = &Apache::lonnet::restore($symb,$ENV{'request.course.id'},$udom,$uname);
                   1986: 	    my %status=&student_gradeStatus($url,$symb,$udom,$uname,$partlist);
                   1987: 	    my $submitted = 0;
                   1988: 	    my $graded = 1;
                   1989: 	    foreach (keys(%status)) {
                   1990: 		$submitted = 1 if ($status{$_} ne 'nothing');
                   1991: 		$graded = 0 if ($status{$_} =~ /^correct/);
                   1992: 		my ($foo,$partid,$foo1) = split(/\./,$_);
                   1993: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
                   1994: 		    $submitted = 0;
                   1995: 		}
1.41      ng       1996: 	    }
1.156     albertel 1997: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                   1998: 				     $submitonly eq 'incorrect' ||
                   1999: 				     $submitonly eq 'graded'));
                   2000: 	    next if (!$graded && ($submitonly eq 'graded' ||
                   2001: 				  $submitonly eq 'incorrect'));
1.41      ng       2002: 	}
                   2003: 	push @nextlist,$student if ($ctr < $ntstu);
1.129     ng       2004: 	last if ($ctr == $ntstu);
1.41      ng       2005: 	$ctr++;
                   2006:     }
1.36      ng       2007: 
1.41      ng       2008:     $ctr = 0;
                   2009:     my $total = scalar(@nextlist)-1;
1.39      ng       2010: 
1.41      ng       2011:     foreach (sort @nextlist) {
                   2012: 	my ($uname,$udom,$submitter) = split(/:/);
1.44      ng       2013: 	$ENV{'form.student'}  = $uname;
                   2014: 	$ENV{'form.userdom'}  = $udom;
1.41      ng       2015: 	$ENV{'form.fullname'} = $$fullname{$_};
                   2016: 	&submission($request,$ctr,$total);
                   2017: 	$ctr++;
                   2018:     }
                   2019:     if ($total < 0) {
                   2020: 	my $the_end = '<h3><font color="red">LON-CAPA User Message</font></h3><br />'."\n";
                   2021: 	$the_end.='<b>Message: </b> No more students for this section or class.<br /><br />'."\n";
                   2022: 	$the_end.='Click on the button below to return to the grading menu.<br /><br />'."\n";
                   2023: 	$the_end.=&show_grading_menu_form ($symb,$url);
                   2024: 	$request->print($the_end);
                   2025:     }
                   2026:     return '';
1.38      ng       2027: }
1.36      ng       2028: 
1.44      ng       2029: #---- Save the score and award for each student, if changed
1.38      ng       2030: sub saveHandGrade {
1.150     albertel 2031:     my ($request,$url,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.104     albertel 2032:     my $usec = &Apache::lonnet::getsection($domain,$stuname,
                   2033: 					   $ENV{'request.course.id'});
                   2034:     if (!&canmodify($usec)) { return('not_allowed'); }
1.77      ng       2035:     my %record     = &Apache::lonnet::restore($symb,$ENV{'request.course.id'},$domain,$stuname);
                   2036:     my %newrecord  = ();
                   2037:     my ($pts,$wgt) = ('','');
1.41      ng       2038:     foreach (split(/:/,$ENV{'form.partlist'.$newflg})) {
1.150     albertel 2039: 	#collaborator may vary for different parts
                   2040: 	if ($submitter && $_ ne $part) { next; }
1.125     ng       2041: 	my $dropMenu = $ENV{'form.GD_SEL'.$newflg.'_'.$_};
                   2042: 	if ($dropMenu eq 'excused') {
1.58      albertel 2043: 	    if ($record{'resource.'.$_.'.solved'} ne 'excused') {
                   2044: 		$newrecord{'resource.'.$_.'.solved'} = 'excused';
                   2045: 		if (exists($record{'resource.'.$_.'.awarded'})) {
                   2046: 		    $newrecord{'resource.'.$_.'.awarded'} = '';
                   2047: 		}
1.125     ng       2048: 	    $newrecord{'resource.'.$_.'.regrader'}="$ENV{'user.name'}:$ENV{'user.domain'}";
1.58      albertel 2049: 	    }
1.125     ng       2050: 	} elsif ($dropMenu eq 'reset status'
                   2051: 		 && exists($record{'resource.'.$_.'.solved'})) { #don't bother if no old records -> no attempts
                   2052: 	    $newrecord{'resource.'.$_.'.tries'} = 0;
                   2053: 	    $newrecord{'resource.'.$_.'.solved'} = '';
                   2054: 	    $newrecord{'resource.'.$_.'.award'} = '';
                   2055: 	    $newrecord{'resource.'.$_.'.awarded'} = 0;
                   2056: 	    $newrecord{'resource.'.$_.'.regrader'}="$ENV{'user.name'}:$ENV{'user.domain'}";
                   2057: 	} elsif ($dropMenu eq '') {
1.77      ng       2058: 	    $pts = ($ENV{'form.GD_BOX'.$newflg.'_'.$_} ne '' ? 
                   2059: 		    $ENV{'form.GD_BOX'.$newflg.'_'.$_} : 
                   2060: 		    $ENV{'form.RADVAL'.$newflg.'_'.$_});
1.153     albertel 2061: 	    if ($pts eq '' && $ENV{'form.GD_SEL'.$newflg.'_'.$_} eq '') {
                   2062: 		next;
                   2063: 	    }
1.77      ng       2064: 	    $wgt = $ENV{'form.WGT'.$newflg.'_'.$_} eq '' ? 1 : 
1.44      ng       2065: 		$ENV{'form.WGT'.$newflg.'_'.$_};
1.41      ng       2066: 	    my $partial= $pts/$wgt;
1.153     albertel 2067: 	    if ($partial eq $record{'resource.'.$_.'.awarded'}) {
                   2068: 		#do not update score for part if not changed.
                   2069: 		next;
                   2070: 	    }
                   2071: 	    if ($record{'resource.'.$_.'.awarded'} ne $partial) {
                   2072: 		$newrecord{'resource.'.$_.'.awarded'}  = $partial;
                   2073: 	    }
1.44      ng       2074: 	    my $reckey = 'resource.'.$_.'.solved';
1.41      ng       2075: 	    if ($partial == 0) {
1.153     albertel 2076: 		if ($record{$reckey} ne 'incorrect_by_override') {
                   2077: 		    $newrecord{$reckey} = 'incorrect_by_override';
                   2078: 		}
1.41      ng       2079: 	    } else {
1.153     albertel 2080: 		if ($record{$reckey} ne 'correct_by_override') {
                   2081: 		    $newrecord{$reckey} = 'correct_by_override';
                   2082: 		}
                   2083: 	    }	    
                   2084: 	    if ($submitter && 
                   2085: 		($record{'resource.'.$_.'.submitted_by'} ne $submitter)) {
                   2086: 		$newrecord{'resource.'.$_.'.submitted_by'} = $submitter;
1.41      ng       2087: 	    }
1.153     albertel 2088: 	    $newrecord{'resource.'.$_.'.regrader'}=
                   2089: 		"$ENV{'user.name'}:$ENV{'user.domain'}";
1.41      ng       2090: 	}
                   2091:     }
1.44      ng       2092:     if (scalar(keys(%newrecord)) > 0) {
                   2093: 	&Apache::lonnet::cstore(\%newrecord,$symb,
                   2094: 				$ENV{'request.course.id'},$domain,$stuname);
1.41      ng       2095:     }
1.77      ng       2096:     return '',$pts,$wgt;
1.36      ng       2097: }
1.38      ng       2098: 
1.44      ng       2099: #--------------------------------------------------------------------------------------
                   2100: #
                   2101: #-------------------------- Next few routines handles grading by section or whole class
                   2102: #
                   2103: #--- Javascript to handle grading by section or whole class
1.42      ng       2104: sub viewgrades_js {
                   2105:     my ($request) = shift;
                   2106: 
1.41      ng       2107:     $request->print(<<VIEWJAVASCRIPT);
                   2108: <script type="text/javascript" language="javascript">
1.45      ng       2109:    function writePoint(partid,weight,point) {
1.125     ng       2110: 	var radioButton = document.classgrade["RADVAL_"+partid];
                   2111: 	var textbox = document.classgrade["TEXTVAL_"+partid];
1.42      ng       2112: 	if (point == "textval") {
1.125     ng       2113: 	    point = document.classgrade["TEXTVAL_"+partid].value;
1.109     matthew  2114: 	    if (isNaN(point) || parseFloat(point) < 0) {
                   2115: 		alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.42      ng       2116: 		var resetbox = false;
                   2117: 		for (var i=0; i<radioButton.length; i++) {
                   2118: 		    if (radioButton[i].checked) {
                   2119: 			textbox.value = i;
                   2120: 			resetbox = true;
                   2121: 		    }
                   2122: 		}
                   2123: 		if (!resetbox) {
                   2124: 		    textbox.value = "";
                   2125: 		}
                   2126: 		return;
                   2127: 	    }
1.109     matthew  2128: 	    if (parseFloat(point) > parseFloat(weight)) {
                   2129: 		var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       2130: 				   ") greater than the weight for the part. Accept?");
                   2131: 		if (resp == false) {
                   2132: 		    textbox.value = "";
                   2133: 		    return;
                   2134: 		}
                   2135: 	    }
1.42      ng       2136: 	    for (var i=0; i<radioButton.length; i++) {
                   2137: 		radioButton[i].checked=false;
1.109     matthew  2138: 		if (parseFloat(point) == i) {
1.42      ng       2139: 		    radioButton[i].checked=true;
                   2140: 		}
                   2141: 	    }
1.41      ng       2142: 
1.42      ng       2143: 	} else {
1.125     ng       2144: 	    textbox.value = parseFloat(point);
1.42      ng       2145: 	}
1.41      ng       2146: 	for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2147: 	    var user = document.classgrade["ctr"+i].value;
                   2148: 	    var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2149: 	    var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2150: 	    var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       2151: 	    if (saveval != "correct") {
                   2152: 		scorename.value = point;
1.43      ng       2153: 		if (selname[0].selected != true) {
                   2154: 		    selname[0].selected = true;
                   2155: 		}
1.42      ng       2156: 	    }
                   2157: 	}
1.125     ng       2158: 	document.classgrade["SELVAL_"+partid][0].selected = true;
1.42      ng       2159:     }
                   2160: 
                   2161:     function writeRadText(partid,weight) {
1.125     ng       2162: 	var selval   = document.classgrade["SELVAL_"+partid];
                   2163: 	var radioButton = document.classgrade["RADVAL_"+partid];
                   2164: 	var textbox = document.classgrade["TEXTVAL_"+partid];
                   2165: 	if (selval[1].selected || selval[2].selected) {
1.42      ng       2166: 	    for (var i=0; i<radioButton.length; i++) {
                   2167: 		radioButton[i].checked=false;
                   2168: 
                   2169: 	    }
                   2170: 	    textbox.value = "";
                   2171: 
                   2172: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2173: 		var user = document.classgrade["ctr"+i].value;
                   2174: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2175: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2176: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       2177: 		if (saveval != "correct") {
                   2178: 		    scorename.value = "";
1.125     ng       2179: 		    if (selval[1].selected) {
                   2180: 			selname[1].selected = true;
                   2181: 		    } else {
                   2182: 			selname[2].selected = true;
                   2183: 			if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value)) 
                   2184: 			{document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
                   2185: 		    }
1.42      ng       2186: 		}
                   2187: 	    }
1.43      ng       2188: 	} else {
                   2189: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2190: 		var user = document.classgrade["ctr"+i].value;
                   2191: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2192: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2193: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.43      ng       2194: 		if (saveval != "correct") {
1.125     ng       2195: 		    scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43      ng       2196: 		    selname[0].selected = true;
                   2197: 		}
                   2198: 	    }
                   2199: 	}	    
1.42      ng       2200:     }
                   2201: 
                   2202:     function changeSelect(partid,user) {
1.125     ng       2203: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   2204: 	var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44      ng       2205: 	var point  = textbox.value;
1.125     ng       2206: 	var weight = document.classgrade["weight_"+partid].value;
1.44      ng       2207: 
1.109     matthew  2208: 	if (isNaN(point) || parseFloat(point) < 0) {
                   2209: 	    alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.44      ng       2210: 	    textbox.value = "";
                   2211: 	    return;
                   2212: 	}
1.109     matthew  2213: 	if (parseFloat(point) > parseFloat(weight)) {
                   2214: 	    var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       2215: 			       ") greater than the weight of the part. Accept?");
                   2216: 	    if (resp == false) {
                   2217: 		textbox.value = "";
                   2218: 		return;
                   2219: 	    }
                   2220: 	}
1.42      ng       2221: 	selval[0].selected = true;
                   2222:     }
                   2223: 
                   2224:     function changeOneScore(partid,user) {
1.125     ng       2225: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   2226: 	if (selval[1].selected || selval[2].selected) {
                   2227: 	    document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
                   2228: 	    if (selval[2].selected) {
                   2229: 		document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
                   2230: 	    }
1.42      ng       2231: 	}
                   2232:     }
                   2233: 
                   2234:     function resetEntry(numpart) {
                   2235: 	for (ctpart=0;ctpart<numpart;ctpart++) {
1.125     ng       2236: 	    var partid = document.classgrade["partid_"+ctpart].value;
                   2237: 	    var radioButton = document.classgrade["RADVAL_"+partid];
                   2238: 	    var textbox = document.classgrade["TEXTVAL_"+partid];
                   2239: 	    var selval  = document.classgrade["SELVAL_"+partid];
1.42      ng       2240: 	    for (var i=0; i<radioButton.length; i++) {
                   2241: 		radioButton[i].checked=false;
                   2242: 
                   2243: 	    }
                   2244: 	    textbox.value = "";
                   2245: 	    selval[0].selected = true;
                   2246: 
                   2247: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       2248: 		var user = document.classgrade["ctr"+i].value;
                   2249: 		var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   2250: 		resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
                   2251: 		var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
                   2252: 		resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
                   2253: 		var saveselval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   2254: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       2255: 		if (saveselval == "excused") {
1.43      ng       2256: 		    if (selname[1].selected == false) { selname[1].selected = true;}
1.42      ng       2257: 		} else {
1.43      ng       2258: 		    if (selname[0].selected == false) {selname[0].selected = true};
1.42      ng       2259: 		}
                   2260: 	    }
1.41      ng       2261: 	}
1.42      ng       2262:     }
                   2263: 
1.41      ng       2264: </script>
                   2265: VIEWJAVASCRIPT
1.42      ng       2266: }
                   2267: 
1.44      ng       2268: #--- show scores for a section or whole class w/ option to change/update a score
1.42      ng       2269: sub viewgrades {
                   2270:     my ($request) = shift;
                   2271:     &viewgrades_js($request);
1.41      ng       2272: 
                   2273:     my ($symb,$url) = ($ENV{'form.symb'},$ENV{'form.url'}); 
1.168     albertel 2274:     #need to make sure we have the correct data for later EXT calls, 
                   2275:     #thus invalidate the cache
                   2276:     &Apache::lonnet::devalidatecourseresdata(
                   2277:                  $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
                   2278:                  $ENV{'course.'.$ENV{'request.course.id'}.'.domain'});
                   2279:     &Apache::lonnet::clear_EXT_cache_status();
                   2280: 
1.167     sakharuk 2281:     my $result='<h3><font color="#339933">'.&mt('Manual Grading').'</font></h3>';
1.118     ng       2282:     $result.='<font size=+1><b>Current Resource: </b>'.$ENV{'form.probTitle'}.'</font>'."\n";
1.41      ng       2283: 
                   2284:     #view individual student submission form - called using Javascript viewOneStudent
1.45      ng       2285:     $result.=&jscriptNform($url,$symb);
1.41      ng       2286: 
1.44      ng       2287:     #beginning of class grading form
1.41      ng       2288:     $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.106     albertel 2289: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
1.41      ng       2290: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
1.38      ng       2291: 	'<input type="hidden" name="command" value="editgrades" />'."\n".
1.72      ng       2292: 	'<input type="hidden" name="section" value="'.$ENV{'form.section'}.'" />'."\n".
1.77      ng       2293: 	'<input type="hidden" name="saveState" value="'.$ENV{'form.saveState'}.'" />'."\n".
1.125     ng       2294: 	'<input type="hidden" name="Status" value="'.$ENV{'form.Status'}.'" />'."\n".
1.72      ng       2295: 	'<input type="hidden" name="probTitle" value="'.$ENV{'form.probTitle'}.'" />'."\n";
                   2296: 
1.126     ng       2297:     my $sectionClass;
1.52      albertel 2298:     if ($ENV{'form.section'} eq 'all') {
1.126     ng       2299: 	$sectionClass='Class </h3>';
1.52      albertel 2300:     } elsif ($ENV{'form.section'} eq 'no') {
1.126     ng       2301: 	$sectionClass='Students in no Section </h3>';
1.52      albertel 2302:     } else {
1.126     ng       2303: 	$sectionClass='Students in Section '.$ENV{'form.section'}.'</h3>';
1.52      albertel 2304:     }
1.126     ng       2305:     $result.='<h3>Assign Common Grade To '.$sectionClass;
1.52      albertel 2306:     $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
                   2307: 	'<table border=0><tr bgcolor="#ffffdd"><td>';
1.44      ng       2308:     #radio buttons/text box for assigning points for a section or class.
                   2309:     #handles different parts of a problem
1.125     ng       2310:     my ($partlist,$handgrade) = &response_type($url,$symb);
1.42      ng       2311:     my %weight = ();
                   2312:     my $ctsparts = 0;
1.41      ng       2313:     $result.='<table border="0">';
1.45      ng       2314:     my %seen = ();
1.42      ng       2315:     for (sort keys(%$handgrade)) {
1.54      albertel 2316: 	my ($partid,$respid) = split (/_/,$_,2);
1.45      ng       2317: 	next if $seen{$partid};
                   2318: 	$seen{$partid}++;
1.147     albertel 2319: 	my $handgrade=$$handgrade{$_};
1.42      ng       2320: 	my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
                   2321: 	$weight{$partid} = $wgt eq '' ? '1' : $wgt;
                   2322: 
1.44      ng       2323: 	$result.='<input type="hidden" name="partid_'.
                   2324: 	    $ctsparts.'" value="'.$partid.'" />'."\n";
                   2325: 	$result.='<input type="hidden" name="weight_'.
                   2326: 	    $partid.'" value="'.$weight{$partid}.'" />'."\n";
                   2327: 	$result.='<tr><td><b>Part  '.$partid.'&nbsp; &nbsp;Point:</b> </td><td>';
1.42      ng       2328: 	$result.='<table border="0"><tr>';  
1.41      ng       2329: 	my $ctr = 0;
1.42      ng       2330: 	while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
                   2331: 	    $result.= '<td><input type="radio" name="RADVAL_'.$partid.'" '.
1.54      albertel 2332: 		'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.41      ng       2333: 		','.$ctr.')" />'.$ctr."</td>\n";
                   2334: 	    $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
                   2335: 	    $ctr++;
                   2336: 	}
                   2337: 	$result.='</tr></table>';
1.44      ng       2338: 	$result.= '</td><td><b> or </b><input type="text" name="TEXTVAL_'.
1.54      albertel 2339: 	    $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
                   2340: 		$partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.42      ng       2341: 	    $weight{$partid}.' (problem weight)</td>'."\n";
                   2342: 	$result.= '</td><td><select name="SELVAL_'.$partid.'"'.
1.54      albertel 2343: 	    'onChange="javascript:writeRadText(\''.$partid.'\','.
1.59      albertel 2344: 		$weight{$partid}.')"> '.
1.42      ng       2345: 	    '<option selected="on"> </option>'.
1.125     ng       2346: 	    '<option>excused</option>'.
                   2347: 	    '<option>reset status</option></select></td></tr>'."\n";
1.42      ng       2348: 	$ctsparts++;
1.41      ng       2349:     }
1.52      albertel 2350:     $result.='</table>'.'</td></tr></table>'.'</td></tr></table>'."\n".
                   2351: 	'<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.42      ng       2352:     $result.='<input type="button" value="Reset" '.
1.111     ng       2353: 	'onClick="javascript:resetEntry('.$ctsparts.');" TARGET=_self>';
1.41      ng       2354: 
1.44      ng       2355:     #table listing all the students in a section/class
                   2356:     #header of table
1.126     ng       2357:     $result.= '<h3>Assign Grade to Specific Students in '.$sectionClass;
1.42      ng       2358:     $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
1.126     ng       2359: 	'<table border=0><tr bgcolor="#deffff"><td>&nbsp;<b>No.</b>&nbsp;</td>'.
1.129     ng       2360: 	'<td>'.&nameUserString('header')."</td>\n";
1.146     albertel 2361:     my (@parts) = sort(&getpartlist($url,$symb));
1.41      ng       2362:     foreach my $part (@parts) {
                   2363: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.126     ng       2364: 	$display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
1.41      ng       2365: 	if  (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
                   2366: 	if ($display =~ /^Partial Credit Factor/) {
1.54      albertel 2367: 	    my ($partid) = &split_part_type($part);
1.53      albertel 2368: 	    $result.='<td><b>Score Part '.$partid.'<br />(weight = '.
1.42      ng       2369: 		$weight{$partid}.')</b></td>'."\n";
1.41      ng       2370: 	    next;
                   2371: 	}
1.53      albertel 2372: 	$display =~ s|Problem Status|Grade Status<br />|;
1.41      ng       2373: 	$result.='<td><b>'.$display.'</b></td>'."\n";
                   2374:     }
                   2375:     $result.='</tr>';
1.44      ng       2376: 
1.41      ng       2377:     #get info for each student
1.44      ng       2378:     #list all the students - with points and grade status
1.76      ng       2379:     my (undef,undef,$fullname) = &getclasslist($ENV{'form.section'},'1');
1.41      ng       2380:     my $ctr = 0;
1.53      albertel 2381:     foreach (sort {lc($$fullname{$a}) cmp lc($$fullname{$b}) } keys %$fullname) {
1.90      albertel 2382: 	my $uname = $_;
                   2383: 	$uname=~s/:/_/;
                   2384: 	$result.='<input type="hidden" name="ctr'.$ctr.'" value="'.$uname.'" />'."\n";
1.126     ng       2385: 	$ctr++;
1.41      ng       2386: 	$result.=&viewstudentgrade($url,$symb,$ENV{'request.course.id'},
1.126     ng       2387: 				   $_,$$fullname{$_},\@parts,\%weight,$ctr);
1.41      ng       2388:     }
                   2389:     $result.='</table></td></tr></table>';
                   2390:     $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.126     ng       2391:     $result.='<input type="button" value="Save" '.
1.45      ng       2392: 	'onClick="javascript:submit();" TARGET=_self /></form>'."\n";
1.96      albertel 2393:     if (scalar(%$fullname) eq 0) {
                   2394: 	my $colspan=3+scalar(@parts);
1.116     ng       2395: 	$result='<font color="red">There are no students in section "'.$ENV{'form.section'}.
                   2396: 	    '" with enrollment status "'.$ENV{'form.Status'}.'" to modify or grade.</font>';
1.96      albertel 2397:     }
1.41      ng       2398:     $result.=&show_grading_menu_form($symb,$url);
                   2399:     return $result;
                   2400: }
                   2401: 
1.44      ng       2402: #--- call by previous routine to display each student
1.41      ng       2403: sub viewstudentgrade {
1.130     albertel 2404:     my ($url,$symb,$courseid,$student,$fullname,$parts,$weight,$ctr) = @_;
1.44      ng       2405:     my ($uname,$udom) = split(/:/,$student);
1.90      albertel 2406:     $student=~s/:/_/;
1.44      ng       2407:     my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.126     ng       2408:     my $result='<tr bgcolor="#ffffdd"><td align="right">'.$ctr.'&nbsp;</td><td>&nbsp;'.
1.44      ng       2409: 	'<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.112     ng       2410: 	'\')"; TARGET=_self>'.$fullname.'</a> '.
                   2411: 	'<font color="#999999">('.$uname.($ENV{'user.domain'} eq $udom ? '' : ':'.$udom).')</font></td>'."\n";
1.63      albertel 2412:     foreach my $apart (@$parts) {
                   2413: 	my ($part,$type) = &split_part_type($apart);
1.41      ng       2414: 	my $score=$record{"resource.$part.$type"};
                   2415: 	if ($type eq 'awarded') {
1.42      ng       2416: 	    my $pts = $score eq '' ? '' : $score*$$weight{$part};
                   2417: 	    $result.='<input type="hidden" name="'.
1.89      albertel 2418: 		'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.42      ng       2419: 	    $result.='<td align="middle"><input type="text" name="'.
1.89      albertel 2420: 		'GD_'.$student.'_'.$part.'_awarded" '.
                   2421: 		'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44      ng       2422: 		'\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41      ng       2423: 	} elsif ($type eq 'solved') {
                   2424: 	    my ($status,$foo)=split(/_/,$score,2);
                   2425: 	    $status = 'nothing' if ($status eq '');
1.89      albertel 2426: 	    $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54      albertel 2427: 		$part.'_solved_s" value="'.$status.'" />'."\n";
1.126     ng       2428: 	    $result.='<td align="middle">&nbsp;<select name="'.
1.89      albertel 2429: 		'GD_'.$student.'_'.$part.'_solved" '.
                   2430: 		'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.125     ng       2431: 	    $result.= (($status eq 'excused') ? '<option> </option><option selected="on">excused</option>' 
                   2432: 		: '<option selected="on"> </option><option>excused</option>')."\n";
                   2433: 	    $result.='<option>reset status</option>';
1.126     ng       2434: 	    $result.="</select>&nbsp;</td>\n";
1.122     ng       2435: 	} else {
                   2436: 	    $result.='<input type="hidden" name="'.
                   2437: 		'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
                   2438: 		    "\n";
                   2439: 	    $result.='<td align="middle"><input type="text" name="'.
                   2440: 		'GD_'.$student.'_'.$part.'_'.$type.'" '.
                   2441: 		'value="'.$score.'" size="4" /></td>'."\n";
1.41      ng       2442: 	}
                   2443:     }
                   2444:     $result.='</tr>';
                   2445:     return $result;
1.38      ng       2446: }
                   2447: 
1.44      ng       2448: #--- change scores for all the students in a section/class
                   2449: #    record does not get update if unchanged
1.38      ng       2450: sub editgrades {
1.41      ng       2451:     my ($request) = @_;
                   2452: 
                   2453:     my $symb=$ENV{'form.symb'};
1.43      ng       2454:     my $url =$ENV{'form.url'};
1.45      ng       2455:     my $title='<h3><font color="#339933">Current Grade Status</font></h3>';
1.118     ng       2456:     $title.='<font size=+1><b>Current Resource: </b>'.$ENV{'form.probTitle'}.'</font><br />'."\n";
1.44      ng       2457:     $title.='<font size=+1><b>Section: </b>'.$ENV{'form.section'}.'</font>'."\n";
1.126     ng       2458: 
1.44      ng       2459:     my $result= '<table border="0"><tr><td bgcolor="#777777">'."\n";
1.129     ng       2460:     $result.= '<table border="0"><tr bgcolor="#deffff">'.
                   2461: 	'<td rowspan=2 valign="center">&nbsp;<b>No.</b>&nbsp;</td>'.
                   2462: 	'<td rowspan=2 valign="center">'.&nameUserString('header')."</td>\n";
1.43      ng       2463: 
                   2464:     my %scoreptr = (
                   2465: 		    'correct'  =>'correct_by_override',
                   2466: 		    'incorrect'=>'incorrect_by_override',
                   2467: 		    'excused'  =>'excused',
                   2468: 		    'ungraded' =>'ungraded_attempted',
                   2469: 		    'nothing'  => '',
                   2470: 		    );
1.56      matthew  2471:     my ($classlist,undef,$fullname) = &getclasslist($ENV{'form.section'},'0');
1.34      ng       2472: 
1.44      ng       2473:     my (@partid);
                   2474:     my %weight = ();
1.54      albertel 2475:     my %columns = ();
1.44      ng       2476:     my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54      albertel 2477: 
1.146     albertel 2478:     my (@parts) = sort(&getpartlist($url,$symb));
1.54      albertel 2479:     my $header;
1.44      ng       2480:     while ($ctr < $ENV{'form.totalparts'}) {
                   2481: 	my $partid = $ENV{'form.partid_'.$ctr};
                   2482: 	push @partid,$partid;
                   2483: 	$weight{$partid} = $ENV{'form.weight_'.$partid};
                   2484: 	$ctr++;
1.54      albertel 2485:     }
                   2486:     foreach my $partid (@partid) {
                   2487: 	$header .= '<td align="center">&nbsp;<b>Old Score</b>&nbsp;</td>'.
                   2488: 	    '<td align="center">&nbsp;<b>New Score</b>&nbsp;</td>';
                   2489: 	$columns{$partid}=2;
                   2490: 	foreach my $stores (@parts) {
                   2491: 	    my ($part,$type) = &split_part_type($stores);
                   2492: 	    if ($part !~ m/^\Q$partid\E/) { next;}
                   2493: 	    if ($type eq 'awarded' || $type eq 'solved') { next; }
                   2494: 	    my $display=&Apache::lonnet::metadata($url,$stores.'.display');
                   2495: 	    $display =~ s/\[Part: (\w)+\]//;
1.125     ng       2496: 	    $display =~ s/Number of Attempts/Tries/;
                   2497: 	    $header .= '<td align="center">&nbsp;<b>Old '.$display.'</b>&nbsp;</td>'.
                   2498: 		'<td align="center">&nbsp;<b>New '.$display.'</b>&nbsp;</td>';
1.54      albertel 2499: 	    $columns{$partid}+=2;
                   2500: 	}
                   2501:     }
                   2502:     foreach my $partid (@partid) {
                   2503: 	$result .= '<td colspan="'.$columns{$partid}.
                   2504: 	    '" align="center"><b>Part '.$partid.
1.44      ng       2505: 	    '</b> (Weight = '.$weight{$partid}.')</td>';
1.54      albertel 2506: 
1.44      ng       2507:     }
                   2508:     $result .= '</tr><tr bgcolor="#deffff">';
1.54      albertel 2509:     $result .= $header;
1.44      ng       2510:     $result .= '</tr>'."\n";
1.93      albertel 2511:     my $noupdate;
1.126     ng       2512:     my ($updateCtr,$noupdateCtr) = (1,1);
1.44      ng       2513:     for ($i=0; $i<$ENV{'form.total'}; $i++) {
1.93      albertel 2514: 	my $line;
1.44      ng       2515: 	my $user = $ENV{'form.ctr'.$i};
1.92      albertel 2516: 	my $usercolon = $user;
                   2517: 	$usercolon =~s/_/:/;
                   2518: 	my ($uname,$udom)=split(/_/,$user);
1.44      ng       2519: 	my %newrecord;
                   2520: 	my $updateflag = 0;
1.129     ng       2521: 	$line .= '<td>'.&nameUserString(undef,$$fullname{$usercolon},$uname,$udom).'</td>';
1.108     albertel 2522: 	my $usec=$classlist->{"$uname:$udom"}[5];
1.105     albertel 2523: 	if (!&canmodify($usec)) {
1.126     ng       2524: 	    my $numcols=scalar(@partid)*4+2;
1.105     albertel 2525: 	    $noupdate.=$line."<td colspan=\"$numcols\"><font color=\"red\">Not allowed to modify student</font></td></tr>";
                   2526: 	    next;
                   2527: 	}
1.44      ng       2528: 	foreach (@partid) {
1.54      albertel 2529: 	    my $old_aw    = $ENV{'form.GD_'.$user.'_'.$_.'_awarded_s'};
                   2530: 	    my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
                   2531: 	    my $old_part  = $old_aw eq '' ? '' : $old_part_pcr;
                   2532: 	    my $old_score = $scoreptr{$ENV{'form.GD_'.$user.'_'.$_.'_solved_s'}};
                   2533: 
                   2534: 	    my $awarded   = $ENV{'form.GD_'.$user.'_'.$_.'_awarded'};
                   2535: 	    my $pcr       = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
                   2536: 	    my $partial   = $awarded eq '' ? '' : $pcr;
1.44      ng       2537: 	    my $score;
                   2538: 	    if ($partial eq '') {
1.54      albertel 2539: 		$score = $scoreptr{$ENV{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44      ng       2540: 	    } elsif ($partial > 0) {
                   2541: 		$score = 'correct_by_override';
                   2542: 	    } elsif ($partial == 0) {
                   2543: 		$score = 'incorrect_by_override';
                   2544: 	    }
1.125     ng       2545: 	    my $dropMenu = $ENV{'form.GD_'.$user.'_'.$_.'_solved'};
                   2546: 	    $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
                   2547: 
                   2548: 	    if ($dropMenu eq 'reset status' &&
                   2549: 		$old_score ne '') { # ignore if no previous attempts => nothing to reset
                   2550: 		$newrecord{'resource.'.$_.'.tries'} = 0;
                   2551: 		$newrecord{'resource.'.$_.'.solved'} = '';
                   2552: 		$newrecord{'resource.'.$_.'.award'} = '';
                   2553: 		$newrecord{'resource.'.$_.'.awarded'} = 0;
                   2554: 		$newrecord{'resource.'.$_.'.regrader'}="$ENV{'user.name'}:$ENV{'user.domain'}";
                   2555: 		$updateflag = 1;
1.139     albertel 2556: 	    } elsif (!($old_part eq $partial && $old_score eq $score)) {
                   2557: 		$updateflag = 1;
                   2558: 		$newrecord{'resource.'.$_.'.awarded'}  = $partial if $partial ne '';
                   2559: 		$newrecord{'resource.'.$_.'.solved'}   = $score;
                   2560: 		$rec_update++;
1.125     ng       2561: 	    }
                   2562: 
1.93      albertel 2563: 	    $line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.44      ng       2564: 		'<td align="center">'.$awarded.
                   2565: 		($score eq 'excused' ? $score : '').'&nbsp;</td>';
1.5       albertel 2566: 
1.54      albertel 2567: 
                   2568: 	    my $partid=$_;
                   2569: 	    foreach my $stores (@parts) {
                   2570: 		my ($part,$type) = &split_part_type($stores);
                   2571: 		if ($part !~ m/^\Q$partid\E/) { next;}
                   2572: 		if ($type eq 'awarded' || $type eq 'solved') { next; }
                   2573: 		my $old_aw    = $ENV{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
                   2574: 		my $awarded   = $ENV{'form.GD_'.$user.'_'.$part.'_'.$type};
                   2575: 		if ($awarded ne '' && $awarded ne $old_aw) {
                   2576: 		    $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.122     ng       2577: 		    $newrecord{'resource.'.$part.'.regrader'}="$ENV{'user.name'}:$ENV{'user.domain'}";
1.54      albertel 2578: 		    $updateflag=1;
                   2579: 		}
1.93      albertel 2580: 		$line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.54      albertel 2581: 		    '<td align="center">'.$awarded.'&nbsp;</td>';
                   2582: 	    }
1.44      ng       2583: 	}
1.93      albertel 2584: 	$line.='</tr>'."\n";
1.44      ng       2585: 	if ($updateflag) {
                   2586: 	    $count++;
                   2587: 	    &Apache::lonnet::cstore(\%newrecord,$symb,$ENV{'request.course.id'},
1.89      albertel 2588: 				    $udom,$uname);
1.126     ng       2589: 	    $result.='<tr bgcolor="#ffffde"><td align="right">&nbsp;'.$updateCtr.'&nbsp;</td>'.$line;
                   2590: 	    $updateCtr++;
1.93      albertel 2591: 	} else {
1.126     ng       2592: 	    $noupdate.='<tr bgcolor="#ffffde"><td align="right">&nbsp;'.$noupdateCtr.'&nbsp;</td>'.$line;
                   2593: 	    $noupdateCtr++;
1.44      ng       2594: 	}
1.93      albertel 2595:     }
                   2596:     if ($noupdate) {
1.126     ng       2597: #	my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
                   2598: 	my $numcols=scalar(@partid)*4+2;
                   2599: 	$result .= '<tr bgcolor="#ffffff"><td align="center" colspan="'.$numcols.'">No Changes Occurred For the Students Below</td></tr>'.$noupdate;
1.44      ng       2600:     }
1.72      ng       2601:     $result .= '</table></td></tr></table>'."\n".
                   2602: 	&show_grading_menu_form ($symb,$url);
1.125     ng       2603:     my $msg = '<br /><b>Number of records updated = '.$rec_update.
1.44      ng       2604: 	' for '.$count.' student'.($count <= 1 ? '' : 's').'.</b><br />'.
                   2605: 	'<b>Total number of students = '.$ENV{'form.total'}.'</b><br />';
                   2606:     return $title.$msg.$result;
1.5       albertel 2607: }
1.54      albertel 2608: 
                   2609: sub split_part_type {
                   2610:     my ($partstr) = @_;
                   2611:     my ($temp,@allparts)=split(/_/,$partstr);
                   2612:     my $type=pop(@allparts);
                   2613:     my $part=join('.',@allparts);
                   2614:     return ($part,$type);
                   2615: }
                   2616: 
1.44      ng       2617: #------------- end of section for handling grading by section/class ---------
                   2618: #
                   2619: #----------------------------------------------------------------------------
                   2620: 
1.5       albertel 2621: 
1.44      ng       2622: #----------------------------------------------------------------------------
                   2623: #
                   2624: #-------------------------- Next few routines handles grading by csv upload
                   2625: #
                   2626: #--- Javascript to handle csv upload
1.27      albertel 2627: sub csvupload_javascript_reverse_associate {
                   2628:   return(<<ENDPICK);
                   2629:   function verify(vf) {
                   2630:     var foundsomething=0;
                   2631:     var founduname=0;
                   2632:     var founddomain=0;
                   2633:     for (i=0;i<=vf.nfields.value;i++) {
                   2634:       tw=eval('vf.f'+i+'.selectedIndex');
                   2635:       if (i==0 && tw!=0) { founduname=1; }
                   2636:       if (i==1 && tw!=0) { founddomain=1; }
                   2637:       if (i!=0 && i!=1 && tw!=0) { foundsomething=1; }
                   2638:     }
                   2639:     if (founduname==0 || founddomain==0) {
                   2640:       alert('You need to specify at both the username and domain');
                   2641:       return;
                   2642:     }
                   2643:     if (foundsomething==0) {
                   2644:       alert('You need to specify at least one grading field');
                   2645:       return;
                   2646:     }
                   2647:     vf.submit();
                   2648:   }
                   2649:   function flip(vf,tf) {
                   2650:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   2651:     var i;
                   2652:     for (i=0;i<=vf.nfields.value;i++) {
                   2653:       //can not pick the same destination field for both name and domain
                   2654:       if (((i ==0)||(i ==1)) && 
                   2655:           ((tf==0)||(tf==1)) && 
                   2656:           (i!=tf) &&
                   2657:           (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   2658:         eval('vf.f'+i+'.selectedIndex=0;')
                   2659:       }
                   2660:     }
                   2661:   }
                   2662: ENDPICK
                   2663: }
                   2664: 
                   2665: sub csvupload_javascript_forward_associate {
                   2666:   return(<<ENDPICK);
                   2667:   function verify(vf) {
                   2668:     var foundsomething=0;
                   2669:     var founduname=0;
                   2670:     var founddomain=0;
                   2671:     for (i=0;i<=vf.nfields.value;i++) {
                   2672:       tw=eval('vf.f'+i+'.selectedIndex');
                   2673:       if (tw==1) { founduname=1; }
                   2674:       if (tw==2) { founddomain=1; }
                   2675:       if (tw>2) { foundsomething=1; }
                   2676:     }
                   2677:     if (founduname==0 || founddomain==0) {
                   2678:       alert('You need to specify at both the username and domain');
                   2679:       return;
                   2680:     }
                   2681:     if (foundsomething==0) {
                   2682:       alert('You need to specify at least one grading field');
                   2683:       return;
                   2684:     }
                   2685:     vf.submit();
                   2686:   }
                   2687:   function flip(vf,tf) {
                   2688:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   2689:     var i;
                   2690:     //can not pick the same destination field twice
                   2691:     for (i=0;i<=vf.nfields.value;i++) {
                   2692:       if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   2693:         eval('vf.f'+i+'.selectedIndex=0;')
                   2694:       }
                   2695:     }
                   2696:   }
                   2697: ENDPICK
                   2698: }
                   2699: 
1.26      albertel 2700: sub csvuploadmap_header {
1.41      ng       2701:     my ($request,$symb,$url,$datatoken,$distotal)= @_;
                   2702:     my $javascript;
                   2703:     if ($ENV{'form.upfile_associate'} eq 'reverse') {
                   2704: 	$javascript=&csvupload_javascript_reverse_associate();
                   2705:     } else {
                   2706: 	$javascript=&csvupload_javascript_forward_associate();
                   2707:     }
1.45      ng       2708: 
1.122     ng       2709:     my ($result) = &showResourceInfo($url,$ENV{'form.probTitle'});
1.118     ng       2710: 
1.41      ng       2711:     $request->print(<<ENDPICK);
1.26      albertel 2712: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.45      ng       2713: <h3><font color="#339933">Uploading Class Grades</font></h3>
                   2714: $result
1.26      albertel 2715: <hr>
                   2716: <h3>Identify fields</h3>
                   2717: Total number of records found in file: $distotal <hr />
                   2718: Enter as many fields as you can. The system will inform you and bring you back
                   2719: to this page if the data selected is insufficient to run your class.<hr />
                   2720: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
                   2721: <input type="hidden" name="associate"  value="" />
                   2722: <input type="hidden" name="phase"      value="three" />
                   2723: <input type="hidden" name="datatoken"  value="$datatoken" />
                   2724: <input type="hidden" name="fileupload" value="$ENV{'form.fileupload'}" />
                   2725: <input type="hidden" name="upfiletype" value="$ENV{'form.upfiletype'}" />
                   2726: <input type="hidden" name="upfile_associate" 
                   2727:                                        value="$ENV{'form.upfile_associate'}" />
                   2728: <input type="hidden" name="symb"       value="$symb" />
                   2729: <input type="hidden" name="url"        value="$url" />
1.77      ng       2730: <input type="hidden" name="saveState"  value="$ENV{'form.saveState'}" />
1.72      ng       2731: <input type="hidden" name="probTitle"  value="$ENV{'form.probTitle'}" />
1.26      albertel 2732: <input type="hidden" name="command"    value="csvuploadassign" />
                   2733: <hr />
                   2734: <script type="text/javascript" language="Javascript">
                   2735: $javascript
                   2736: </script>
                   2737: ENDPICK
1.118     ng       2738:     return '';
1.26      albertel 2739: 
                   2740: }
                   2741: 
                   2742: sub csvupload_fields {
1.146     albertel 2743:     my ($url,$symb) = @_;
                   2744:     my (@parts) = &getpartlist($url,$symb);
1.41      ng       2745:     my @fields=(['username','Student Username'],['domain','Student Domain']);
                   2746:     foreach my $part (sort(@parts)) {
                   2747: 	my @datum;
                   2748: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
                   2749: 	my $name=$part;
                   2750: 	if  (!$display) { $display = $name; }
                   2751: 	@datum=($name,$display);
                   2752: 	push(@fields,\@datum);
                   2753:     }
                   2754:     return (@fields);
1.26      albertel 2755: }
                   2756: 
                   2757: sub csvuploadmap_footer {
1.41      ng       2758:     my ($request,$i,$keyfields) =@_;
                   2759:     $request->print(<<ENDPICK);
1.26      albertel 2760: </table>
                   2761: <input type="hidden" name="nfields" value="$i" />
                   2762: <input type="hidden" name="keyfields" value="$keyfields" />
                   2763: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
                   2764: </form>
                   2765: ENDPICK
                   2766: }
                   2767: 
1.86      ng       2768: sub upcsvScores_form {
                   2769:     my ($request) = shift;
                   2770:     my ($symb,$url)=&get_symb_and_url($request);
                   2771:     if (!$symb) {return '';}
                   2772:     my $result =<<CSVFORMJS;
                   2773: <script type="text/javascript" language="javascript">
                   2774:     function checkUpload(formname) {
                   2775: 	if (formname.upfile.value == "") {
                   2776: 	    alert("Please use the browse button to select a file from your local directory.");
                   2777: 	    return false;
                   2778: 	}
                   2779: 	formname.submit();
                   2780:     }
                   2781:     </script>
                   2782: CSVFORMJS
                   2783:     $ENV{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.118     ng       2784:     my ($table) = &showResourceInfo($url,$ENV{'form.probTitle'});
                   2785:     $result.=$table;
1.86      ng       2786:     $result.='<br /><table width=100% border=0><tr><td bgcolor="#777777">'."\n";
                   2787:     $result.='<table width=100% border=0><tr bgcolor="#e6ffff"><td>'."\n";
1.118     ng       2788:     $result.='&nbsp;<b>Specify a file containing the class scores for current resource'.
1.86      ng       2789: 	'.</b></td></tr>'."\n";
                   2790:     $result.='<tr bgcolor=#ffffe6><td>'."\n";
                   2791:     my $upfile_select=&Apache::loncommon::upfile_select_html();
                   2792:     $result.=<<ENDUPFORM;
1.106     albertel 2793: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86      ng       2794: <input type="hidden" name="symb" value="$symb" />
                   2795: <input type="hidden" name="url" value="$url" />
                   2796: <input type="hidden" name="command" value="csvuploadmap" />
                   2797: <input type="hidden" name="probTitle" value="$ENV{'form.probTitle'}" />
                   2798: <input type="hidden" name="saveState"  value="$ENV{'form.saveState'}" />
                   2799: $upfile_select
                   2800: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scores" />
                   2801: 
                   2802: </form>
                   2803: ENDUPFORM
                   2804:     $result.='</td></tr></table>'."\n";
                   2805:     $result.='</td></tr></table><br /><br />'."\n";
                   2806:     $result.=&show_grading_menu_form($symb,$url);
                   2807:     return $result;
                   2808: }
                   2809: 
                   2810: 
1.26      albertel 2811: sub csvuploadmap {
1.41      ng       2812:     my ($request)= @_;
                   2813:     my ($symb,$url)=&get_symb_and_url($request);
                   2814:     if (!$symb) {return '';}
1.72      ng       2815: 
1.41      ng       2816:     my $datatoken;
                   2817:     if (!$ENV{'form.datatoken'}) {
                   2818: 	$datatoken=&Apache::loncommon::upfile_store($request);
1.26      albertel 2819:     } else {
1.41      ng       2820: 	$datatoken=$ENV{'form.datatoken'};
                   2821: 	&Apache::loncommon::load_tmp_file($request);
1.26      albertel 2822:     }
1.41      ng       2823:     my @records=&Apache::loncommon::upfile_record_sep();
                   2824:     &csvuploadmap_header($request,$symb,$url,$datatoken,$#records+1);
                   2825:     my ($i,$keyfields);
                   2826:     if (@records) {
1.146     albertel 2827: 	my @fields=&csvupload_fields($url,$symb);
1.45      ng       2828: 
1.41      ng       2829: 	if ($ENV{'form.upfile_associate'} eq 'reverse') {	
                   2830: 	    &Apache::loncommon::csv_print_samples($request,\@records);
                   2831: 	    $i=&Apache::loncommon::csv_print_select_table($request,\@records,
                   2832: 							  \@fields);
                   2833: 	    foreach (@fields) { $keyfields.=$_->[0].','; }
                   2834: 	    chop($keyfields);
                   2835: 	} else {
                   2836: 	    unshift(@fields,['none','']);
                   2837: 	    $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
                   2838: 							    \@fields);
                   2839: 	    my %sone=&Apache::loncommon::record_sep($records[0]);
                   2840: 	    $keyfields=join(',',sort(keys(%sone)));
                   2841: 	}
                   2842:     }
                   2843:     &csvuploadmap_footer($request,$i,$keyfields);
1.72      ng       2844:     $request->print(&show_grading_menu_form($symb,$url));
                   2845: 
1.41      ng       2846:     return '';
1.27      albertel 2847: }
                   2848: 
                   2849: sub csvuploadassign {
1.41      ng       2850:     my ($request)= @_;
                   2851:     my ($symb,$url)=&get_symb_and_url($request);
                   2852:     if (!$symb) {return '';}
                   2853:     &Apache::loncommon::load_tmp_file($request);
1.44      ng       2854:     my @gradedata = &Apache::loncommon::upfile_record_sep();
1.41      ng       2855:     my @keyfields = split(/\,/,$ENV{'form.keyfields'});
                   2856:     my %fields=();
                   2857:     for (my $i=0; $i<=$ENV{'form.nfields'}; $i++) {
                   2858: 	if ($ENV{'form.upfile_associate'} eq 'reverse') {
                   2859: 	    if ($ENV{'form.f'.$i} ne 'none') {
                   2860: 		$fields{$keyfields[$i]}=$ENV{'form.f'.$i};
                   2861: 	    }
                   2862: 	} else {
                   2863: 	    if ($ENV{'form.f'.$i} ne 'none') {
                   2864: 		$fields{$ENV{'form.f'.$i}}=$keyfields[$i];
                   2865: 	    }
                   2866: 	}
1.27      albertel 2867:     }
1.41      ng       2868:     $request->print('<h3>Assigning Grades</h3>');
                   2869:     my $courseid=$ENV{'request.course.id'};
1.97      albertel 2870:     my ($classlist) = &getclasslist('all',0);
1.106     albertel 2871:     my @notallowed;
1.41      ng       2872:     my @skipped;
                   2873:     my $countdone=0;
                   2874:     foreach my $grade (@gradedata) {
                   2875: 	my %entries=&Apache::loncommon::record_sep($grade);
                   2876: 	my $username=$entries{$fields{'username'}};
1.160     albertel 2877: 	$username=~s/\s//g;
1.41      ng       2878: 	my $domain=$entries{$fields{'domain'}};
1.160     albertel 2879: 	$domain=~s/\s//g;
1.41      ng       2880: 	if (!exists($$classlist{"$username:$domain"})) {
                   2881: 	    push(@skipped,"$username:$domain");
                   2882: 	    next;
                   2883: 	}
1.108     albertel 2884: 	my $usec=$classlist->{"$username:$domain"}[5];
1.106     albertel 2885: 	if (!&canmodify($usec)) {
                   2886: 	    push(@notallowed,"$username:$domain");
                   2887: 	    next;
                   2888: 	}
1.41      ng       2889: 	my %grades;
                   2890: 	foreach my $dest (keys(%fields)) {
                   2891: 	    if ($dest eq 'username' || $dest eq 'domain') { next; }
                   2892: 	    if ($entries{$fields{$dest}} eq '') { next; }
                   2893: 	    my $store_key=$dest;
                   2894: 	    $store_key=~s/^stores/resource/;
                   2895: 	    $store_key=~s/_/\./g;
                   2896: 	    $grades{$store_key}=$entries{$fields{$dest}};
                   2897: 	}
                   2898: 	$grades{"resource.regrader"}="$ENV{'user.name'}:$ENV{'user.domain'}";
                   2899: 	&Apache::lonnet::cstore(\%grades,$symb,$ENV{'request.course.id'},
                   2900: 				$domain,$username);
                   2901: 	$request->print('.');
                   2902: 	$request->rflush();
                   2903: 	$countdone++;
                   2904:     }
                   2905:     $request->print("<br />Stored $countdone students\n");
                   2906:     if (@skipped) {
1.106     albertel 2907: 	$request->print('<p<font size="+1"><b>Skipped Students</b></font></p>');
                   2908: 	foreach my $student (@skipped) { $request->print("$student<br />\n"); }
                   2909:     }
                   2910:     if (@notallowed) {
                   2911: 	$request->print('<p><font size="+1" color="red"><b>Students Not Allowed to Modify</b></font></p>');
                   2912: 	foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
1.41      ng       2913:     }
1.106     albertel 2914:     $request->print("<br />\n");
1.41      ng       2915:     $request->print(&show_grading_menu_form($symb,$url));
                   2916:     return '';
1.26      albertel 2917: }
1.44      ng       2918: #------------- end of section for handling csv file upload ---------
                   2919: #
                   2920: #-------------------------------------------------------------------
                   2921: #
1.122     ng       2922: #-------------- Next few routines handle grading by page/sequence
1.72      ng       2923: #
                   2924: #--- Select a page/sequence and a student to grade
1.68      ng       2925: sub pickStudentPage {
                   2926:     my ($request) = shift;
                   2927: 
                   2928:     $request->print(<<LISTJAVASCRIPT);
                   2929: <script type="text/javascript" language="javascript">
                   2930: 
                   2931: function checkPickOne(formname) {
1.76      ng       2932:     if (radioSelection(formname.student) == null) {
1.68      ng       2933: 	alert("Please select the student you wish to grade.");
                   2934: 	return;
                   2935:     }
1.125     ng       2936:     ptr = pullDownSelection(formname.selectpage);
                   2937:     formname.page.value = formname["page"+ptr].value;
                   2938:     formname.title.value = formname["title"+ptr].value;
1.68      ng       2939:     formname.submit();
                   2940: }
                   2941: 
                   2942: </script>
                   2943: LISTJAVASCRIPT
1.118     ng       2944:     &commonJSfunctions($request);
1.72      ng       2945:     my ($symb,$url) = &get_symb_and_url($request);
1.68      ng       2946:     my $cdom      = $ENV{"course.$ENV{'request.course.id'}.domain"};
                   2947:     my $cnum      = $ENV{"course.$ENV{'request.course.id'}.num"};
                   2948:     my $getsec    = $ENV{'form.section'} eq '' ? 'all' : $ENV{'form.section'};
                   2949: 
                   2950:     my $result='<h3><font color="#339933">&nbsp;'.
                   2951: 	'Manual Grading by Page or Sequence</font></h3>';
                   2952: 
1.80      ng       2953:     $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.70      ng       2954:     $result.='&nbsp;<b>Problems from:</b> <select name="selectpage">'."\n";
1.74      albertel 2955:     my ($titles,$symbx) = &getSymbMap($request);
1.137     albertel 2956:     my ($curpage) =&Apache::lonnet::decode_symb($symb); 
                   2957: #    my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb); 
                   2958: #    my $type=($curpage =~ /\.(page|sequence)/);
1.70      ng       2959:     my $ctr=0;
1.68      ng       2960:     foreach (@$titles) {
                   2961: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.70      ng       2962: 	$result.='<option value="'.$ctr.'" '.
1.71      ng       2963: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="on"' : '').
                   2964: 	    '>'.$showtitle.'</option>'."\n";
1.70      ng       2965: 	$ctr++;
1.68      ng       2966:     }
                   2967:     $result.= '</select>'."<br>\n";
1.70      ng       2968:     $ctr=0;
                   2969:     foreach (@$titles) {
                   2970: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   2971: 	$result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
                   2972: 	$result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
                   2973: 	$ctr++;
                   2974:     }
1.72      ng       2975:     $result.='<input type="hidden" name="page" />'."\n".
                   2976: 	'<input type="hidden" name="title" />'."\n";
1.68      ng       2977: 
1.144     albertel 2978:     $result.='&nbsp;<b>View Problems Text: </b><input type="radio" name="vProb" value="no" checked="on" /> no '."\n".
1.71      ng       2979: 	'<input type="radio" name="vProb" value="yes" /> yes '."<br>\n";
1.72      ng       2980: 
1.71      ng       2981:     $result.='&nbsp;<b>Submission Details: </b>'.
                   2982: 	'<input type="radio" name="lastSub" value="none" /> none'."\n".
1.122     ng       2983: 	'<input type="radio" name="lastSub" value="datesub" checked /> by dates and submissions'."\n".
1.71      ng       2984: 	'<input type="radio" name="lastSub" value="all" /> all details'."\n";
1.72      ng       2985: 
1.68      ng       2986:     $result.='<input type="hidden" name="section"     value="'.$getsec.'" />'."\n".
1.118     ng       2987: 	'<input type="hidden" name="Status"  value="'.$ENV{'form.Status'}.'" />'."\n".
1.72      ng       2988: 	'<input type="hidden" name="command" value="displayPage" />'."\n".
                   2989: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
1.80      ng       2990: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
                   2991: 	'<input type="hidden" name="saveState" value="'.$ENV{'form.saveState'}.'" />'."<br />\n";
1.72      ng       2992: 
1.80      ng       2993:     $result.='&nbsp;<input type="button" '.
1.126     ng       2994: 	'onClick="javascript:checkPickOne(this.form);"value="Next->" /><br />'."\n";
1.72      ng       2995: 
1.68      ng       2996:     $request->print($result);
                   2997: 
1.126     ng       2998:     my $studentTable.='&nbsp;<b>Select a student you wish to grade and then click on the Next button.</b><br>'.
1.68      ng       2999: 	'<table border="0"><tr><td bgcolor="#777777">'.
                   3000: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.126     ng       3001: 	'<td align="right">&nbsp;<b>No.</b></td>'.
1.129     ng       3002: 	'<td>'.&nameUserString('header').'</td>'.
1.126     ng       3003: 	'<td align="right">&nbsp;<b>No.</b></td>'.
1.129     ng       3004: 	'<td>'.&nameUserString('header').'</td></tr>';
1.68      ng       3005:  
1.76      ng       3006:     my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68      ng       3007:     my $ptr = 1;
                   3008:     foreach my $student (sort {lc($$fullname{$a}) cmp lc($$fullname{$b}) } keys %$fullname) {
                   3009: 	my ($uname,$udom) = split(/:/,$student);
1.126     ng       3010: 	$studentTable.=($ptr%2 == 1 ? '<tr bgcolor="#ffffe6">' : '</td>');
                   3011: 	$studentTable.='<td align="right">'.$ptr.'&nbsp;</td>';
1.129     ng       3012: 	$studentTable.='<td>&nbsp;<input type="radio" name="student" value="'.$student.'" /> '
                   3013: 	    .&nameUserString(undef,$$fullname{$student},$uname,$udom)."\n";
1.126     ng       3014: 	$studentTable.=($ptr%2 == 0 ? '</td></tr>' : '');
1.68      ng       3015: 	$ptr++;
                   3016:     }
1.126     ng       3017:     $studentTable.='</td><td>&nbsp;</td><td>&nbsp;' if ($ptr%2 == 0);
1.68      ng       3018:     $studentTable.='</td></tr></table></td></tr></table>'."\n";
1.126     ng       3019:     $studentTable.='<input type="button" '.
                   3020: 	'onClick="javascript:checkPickOne(this.form);"value="Next->" /></form>'."\n";
1.68      ng       3021: 
                   3022:     $studentTable.=&show_grading_menu_form($symb,$url);
                   3023:     $request->print($studentTable);
                   3024: 
                   3025:     return '';
                   3026: }
                   3027: 
                   3028: sub getSymbMap {
1.74      albertel 3029:     my ($request) = @_;
1.132     bowersj2 3030:     my $navmap = Apache::lonnavmaps::navmap->new();
1.68      ng       3031: 
                   3032:     my %symbx = ();
                   3033:     my @titles = ();
1.117     bowersj2 3034:     my $minder = 0;
                   3035: 
                   3036:     # Gather every sequence that has problems.
                   3037:     my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); }, 1);
                   3038:     for my $sequence ($navmap->getById('0.0'), @sequences) {
                   3039: 	if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
                   3040: 	    my $title = $minder.'.'.$sequence->compTitle();
                   3041: 	    push @titles, $title; # minder in case two titles are identical
                   3042: 	    $symbx{$title} = $sequence->symb();
                   3043: 	    $minder++;
                   3044: 	}
1.68      ng       3045:     }
                   3046: 
                   3047:     $navmap->untieHashes();
                   3048:     return \@titles,\%symbx;
                   3049: }
                   3050: 
1.72      ng       3051: #
                   3052: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68      ng       3053: sub displayPage {
                   3054:     my ($request) = shift;
                   3055: 
1.72      ng       3056:     my ($symb,$url) = &get_symb_and_url($request);
1.68      ng       3057:     my $cdom      = $ENV{"course.$ENV{'request.course.id'}.domain"};
                   3058:     my $cnum      = $ENV{"course.$ENV{'request.course.id'}.num"};
                   3059:     my $getsec    = $ENV{'form.section'} eq '' ? 'all' : $ENV{'form.section'};
                   3060:     my $pageTitle = $ENV{'form.page'};
1.103     albertel 3061:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.70      ng       3062:     my ($uname,$udom) = split(/:/,$ENV{'form.student'});
1.103     albertel 3063:     my $usec=$classlist->{$ENV{'form.student'}}[5];
1.168     albertel 3064: 
                   3065:     #need to make sure we have the correct data for later EXT calls, 
                   3066:     #thus invalidate the cache
                   3067:     &Apache::lonnet::devalidatecourseresdata(
                   3068:                  $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
                   3069:                  $ENV{'course.'.$ENV{'request.course.id'}.'.domain'});
                   3070:     &Apache::lonnet::clear_EXT_cache_status();
                   3071: 
1.103     albertel 3072:     if (!&canview($usec)) {
                   3073: 	$request->print('<font color="red">Unable to view requested student.('.$ENV{'form.student'}.')</font>');
                   3074: 	$request->print(&show_grading_menu_form($symb,$url));
                   3075: 	return;
                   3076:     }
1.70      ng       3077:     my $result='<h3><font color="#339933">&nbsp;'.$ENV{'form.title'}.'</font></h3>';
1.129     ng       3078:     $result.='<h3>&nbsp;Student: '.&nameUserString(undef,$$fullname{$ENV{'form.student'}},$uname,$udom).
                   3079: 	'</h3>'."\n";
1.71      ng       3080:     &sub_page_js($request);
                   3081:     $request->print($result);
                   3082: 
1.132     bowersj2 3083:     my $navmap = Apache::lonnavmaps::navmap->new();
1.136     www      3084:     my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($ENV{'form.page'});
1.68      ng       3085:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
                   3086: 
                   3087:     my $iterator = $navmap->getIterator($map->map_start(),
                   3088: 					$map->map_finish());
                   3089: 
1.71      ng       3090:     my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72      ng       3091: 	'<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.125     ng       3092: 	'<input type="hidden" name="fullname" value="'.$$fullname{$ENV{'form.student'}}.'" />'."\n".
1.72      ng       3093: 	'<input type="hidden" name="student" value="'.$ENV{'form.student'}.'" />'."\n".
                   3094: 	'<input type="hidden" name="page"    value="'.$pageTitle.'" />'."\n".
                   3095: 	'<input type="hidden" name="title"   value="'.$ENV{'form.title'}.'" />'."\n".
                   3096: 	'<input type="hidden" name="url"     value="'.$url.'" />'."\n".
                   3097: 	'<input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
1.125     ng       3098: 	'<input type="hidden" name="overRideScore" value="no" />'."\n".
1.77      ng       3099: 	'<input type="hidden" name="saveState" value="'.$ENV{'form.saveState'}.'" />'."\n";
1.71      ng       3100: 
                   3101:     my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
                   3102: 	'/check.gif" height="16" border="0" />';
                   3103: 
1.118     ng       3104:     $studentTable.='&nbsp;<b>Note:</b> Problems graded correct by the computer are marked with a '.$checkIcon.
                   3105: 	' symbol.'."\n".
1.71      ng       3106: 	'<table border="0"><tr><td bgcolor="#777777">'.
                   3107: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.118     ng       3108: 	'<td align="center"><b>&nbsp;Prob.&nbsp;</b></td>'.
                   3109: 	'<td><b>&nbsp;'.($ENV{'form.vProb'} eq 'no' ? 'Title' : 'Problem Text').'/Grade</b></td></tr>';
1.71      ng       3110: 
1.101     albertel 3111:     my ($depth,$question) = (1,1);
1.68      ng       3112:     $iterator->next(); # skip the first BEGIN_MAP
                   3113:     my $curRes = $iterator->next(); # for "current resource"
1.101     albertel 3114:     while ($depth > 0) {
1.68      ng       3115:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 3116:         if($curRes == $iterator->END_MAP) { $depth--; }
1.68      ng       3117: 
1.120     ng       3118:         if (ref($curRes) && $curRes->is_problem()) {
1.91      albertel 3119: 	    my $parts = $curRes->parts();
1.68      ng       3120:             my $title = $curRes->compTitle();
1.71      ng       3121: 	    my $symbx = $curRes->symb();
                   3122: 	    $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$question.
                   3123: 		(scalar(@{$parts}) == 1 ? '' : '<br>('.scalar(@{$parts}).'&nbsp;parts)').'</td>';
                   3124: 	    $studentTable.='<td valign="top">';
1.144     albertel 3125: 	    if ($ENV{'form.vProb'} eq 'yes' ) {
                   3126: 		$studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
                   3127: 					     undef,'both');
1.71      ng       3128: 	    } else {
1.116     ng       3129: 		my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$ENV{'request.course.id'});
1.80      ng       3130: 		$companswer =~ s|<form(.*?)>||g;
                   3131: 		$companswer =~ s|</form>||g;
1.71      ng       3132: #		while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116     ng       3133: #		    $companswer =~ s/$1/ /ms;
                   3134: #		    $request->print('match='.$1."<br>\n");
1.71      ng       3135: #		}
1.116     ng       3136: #		$companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.71      ng       3137: 		$studentTable.='&nbsp;<b>'.$title.'</b>&nbsp;<br>&nbsp;<b>Correct answer:</b><br>'.$companswer;
                   3138: 	    }
                   3139: 
                   3140: 	    my %record = &Apache::lonnet::restore($symbx,$ENV{'request.course.id'},$udom,$uname);
1.125     ng       3141: 
1.71      ng       3142: 	    if ($ENV{'form.lastSub'} eq 'datesub') {
                   3143: 		if ($record{'version'} eq '') {
                   3144: 		    $studentTable.='<br />&nbsp;<font color="red">No recorded submission for this problem</font><br />';
                   3145: 		} else {
1.116     ng       3146: 		    my %responseType = ();
                   3147: 		    foreach my $partid (@{$parts}) {
1.147     albertel 3148: 			my @responseIds =$curRes->responseIds($partid);
                   3149: 			my @responseType =$curRes->responseType($partid);
                   3150: 			my %responseIds;
                   3151: 			for (my $i=0;$i<=$#responseIds;$i++) {
                   3152: 			    $responseIds{$responseIds[$i]}=$responseType[$i];
                   3153: 			}
                   3154: 			$responseType{$partid} = \%responseIds;
1.116     ng       3155: 		    }
1.148     albertel 3156: 		    $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147     albertel 3157: 
1.71      ng       3158: 		}
                   3159: 	    } elsif ($ENV{'form.lastSub'} eq 'all') {
                   3160: 		my $last = ($ENV{'form.lastSub'} eq 'last' ? 'last' : '');
                   3161: 		$studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
                   3162: 									$ENV{'request.course.id'},
                   3163: 									'','.submission');
                   3164:  
                   3165: 	    }
1.103     albertel 3166: 	    if (&canmodify($usec)) {
                   3167: 		foreach my $partid (@{$parts}) {
                   3168: 		    $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
                   3169: 		    $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
                   3170: 		    $question++;
                   3171: 		}
1.71      ng       3172: 	    }
                   3173: 	    $studentTable.='</td></tr>';
1.68      ng       3174: 
1.103     albertel 3175: 	}
1.68      ng       3176:         $curRes = $iterator->next();
                   3177:     }
                   3178: 
1.98      albertel 3179:     $navmap->untieHashes();
                   3180: 
1.71      ng       3181:     $studentTable.='</td></tr></table></td></tr></table>'."\n".
1.125     ng       3182: 	'<input type="button" value="Save" '.
1.71      ng       3183: 	'onClick="javascript:checkSubmitPage(this.form,'.$question.');" TARGET=_self />'.
                   3184: 	'</form>'."\n";
                   3185:     $studentTable.=&show_grading_menu_form($symb,$url);
                   3186:     $request->print($studentTable);
                   3187: 
                   3188:     return '';
1.119     ng       3189: }
                   3190: 
                   3191: sub displaySubByDates {
1.148     albertel 3192:     my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.119     ng       3193:     my $studentTable='<table border="0" width="100%"><tr><td bgcolor="#777777">'.
                   3194: 	'<table border="0" width="100%"><tr bgcolor="#e6ffff">'.
                   3195: 	'<td><b>Date/Time</b></td>'.
                   3196: 	'<td><b>Submission</b></td>'.
                   3197: 	'<td><b>Status&nbsp;</b></td></tr>';
                   3198:     my ($version);
                   3199:     my %mark;
1.148     albertel 3200:     my %orders;
1.119     ng       3201:     $mark{'correct_by_student'} = $checkIcon;
1.147     albertel 3202:     if (!exists($$record{'1:timestamp'})) {
                   3203: 	return '<br />&nbsp;<font color="red">Nothing submitted - no attempts</font><br />';
                   3204:     }
1.119     ng       3205:     for ($version=1;$version<=$$record{'version'};$version++) {
                   3206: 	my $timestamp = scalar(localtime($$record{$version.':timestamp'}));
                   3207: 	$studentTable.='<tr bgcolor="#ffffff" valign="top"><td>'.$timestamp.'</td>';
                   3208: 	my @versionKeys = split(/\:/,$$record{$version.':keys'});
                   3209: 	my @displaySub = ();
                   3210: 	foreach my $partid (@{$parts}) {
1.147     albertel 3211: 	    my @matchKey = sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys);
1.122     ng       3212: #	    next if ($$record{"$version:resource.$partid.solved"} eq '');
1.147     albertel 3213: 	    foreach my $matchKey (@matchKey) {
                   3214: 		if (exists $$record{$version.':'.$matchKey}) {
                   3215: 		    my ($responseId)=($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/);
                   3216: 		    $displaySub[0].='<b>Part&nbsp;'.$partid.'&nbsp;';
                   3217: 		    $displaySub[0].='<font color="#999999">(ID&nbsp;'.
                   3218: 			$responseId.')</font>&nbsp;';
                   3219: 		    if ($$record{"$version:resource.$partid.tries"} eq '') {
                   3220: 			$displaySub[0].='Trial&nbsp;not&nbsp;counted';
                   3221: 		    } else {
                   3222: 			$displaySub[0].='Trial&nbsp;'.
                   3223: 			    $$record{"$version:resource.$partid.tries"};
                   3224: 		    }
                   3225: 		    my $responseType=$responseType->{$partid}->{$responseId};
1.148     albertel 3226: 		    if (!exists($orders{$partid})) { $orders{$partid}={}; }
                   3227: 		    if (!exists($orders{$partid}->{$responseId})) {
                   3228: 			$orders{$partid}->{$responseId}=
                   3229: 			    &get_order($partid,$responseId,$symb,$uname,$udom);
                   3230: 		    }
1.147     albertel 3231: 		    $displaySub[0].='</b>&nbsp; '.
1.148     albertel 3232: 			&cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:").'<br />';
1.147     albertel 3233: 		}
                   3234: 	    }
                   3235: 	    if (exists $$record{"$version:resource.$partid.award"}) {
                   3236: 		$displaySub[1].='<b>Part&nbsp;'.$partid.'</b> &nbsp;'.
                   3237: 		    lc($$record{"$version:resource.$partid.award"}).' '.
                   3238: 		    $mark{$$record{"$version:resource.$partid.solved"}}.
                   3239: 		    '<br />';
                   3240: 	    }
                   3241: 	    if (exists $$record{"$version:resource.$partid.regrader"}) {
                   3242: 		$displaySub[2].=$$record{"$version:resource.$partid.regrader"}.
1.167     sakharuk 3243: 		    ' (<b>'.&mt('Part').':</b> '.$partid.')';
1.147     albertel 3244: 	    }
                   3245: 	}
                   3246: 	# needed because old essay regrader has not parts info
                   3247: 	if (exists $$record{"$version:resource.regrader"}) {
                   3248: 	    $displaySub[2].=$$record{"$version:resource.regrader"};
                   3249: 	}
                   3250: 	$studentTable.='<td>'.$displaySub[0].'&nbsp;</td><td>'.$displaySub[1];
                   3251: 	if ($displaySub[2]) {
                   3252: 	    $studentTable.='Manually graded by '.$displaySub[2];
                   3253: 	}
                   3254: 	$studentTable.='&nbsp;</td></tr>';
                   3255:     
1.119     ng       3256:     }
                   3257:     $studentTable.='</table></td></tr></table>';
                   3258:     return $studentTable;
1.71      ng       3259: }
                   3260: 
                   3261: sub updateGradeByPage {
                   3262:     my ($request) = shift;
                   3263: 
                   3264:     my $cdom      = $ENV{"course.$ENV{'request.course.id'}.domain"};
                   3265:     my $cnum      = $ENV{"course.$ENV{'request.course.id'}.num"};
                   3266:     my $getsec    = $ENV{'form.section'} eq '' ? 'all' : $ENV{'form.section'};
                   3267:     my $pageTitle = $ENV{'form.page'};
1.103     albertel 3268:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.71      ng       3269:     my ($uname,$udom) = split(/:/,$ENV{'form.student'});
1.103     albertel 3270:     my $usec=$classlist->{$ENV{'form.student'}}[5];
                   3271:     if (!&canmodify($usec)) {
                   3272: 	$request->print('<font color="red">Unable to modify requested student.('.$ENV{'form.student'}.'</font>');
                   3273: 	$request->print(&show_grading_menu_form($ENV{'form.symb'},$ENV{'form.url'}));
                   3274: 	return;
                   3275:     }
1.71      ng       3276:     my $result='<h3><font color="#339933">&nbsp;'.$ENV{'form.title'}.'</font></h3>';
1.129     ng       3277:     $result.='<h3>&nbsp;Student: '.&nameUserString(undef,$ENV{'form.fullname'},$uname,$udom).
                   3278: 	'</h3>'."\n";
1.70      ng       3279: 
1.68      ng       3280:     $request->print($result);
                   3281: 
1.132     bowersj2 3282:     my $navmap = Apache::lonnavmaps::navmap->new();
1.136     www      3283:     my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $ENV{'form.page'});
1.71      ng       3284:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
                   3285: 
                   3286:     my $iterator = $navmap->getIterator($map->map_start(),
                   3287: 					$map->map_finish());
1.70      ng       3288: 
1.71      ng       3289:     my $studentTable='<table border="0"><tr><td bgcolor="#777777">'.
1.68      ng       3290: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.125     ng       3291: 	'<td align="center"><b>&nbsp;Prob.&nbsp;</b></td>'.
1.71      ng       3292: 	'<td><b>&nbsp;Title&nbsp;</b></td>'.
                   3293: 	'<td><b>&nbsp;Previous Score&nbsp;</b></td>'.
                   3294: 	'<td><b>&nbsp;New Score&nbsp;</b></td></tr>';
                   3295: 
                   3296:     $iterator->next(); # skip the first BEGIN_MAP
                   3297:     my $curRes = $iterator->next(); # for "current resource"
1.101     albertel 3298:     my ($depth,$question,$changeflag)= (1,1,0);
                   3299:     while ($depth > 0) {
1.71      ng       3300:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 3301:         if($curRes == $iterator->END_MAP) { $depth--; }
1.71      ng       3302: 
                   3303:         if (ref($curRes) && $curRes->is_problem() && !$curRes->randomout) {
1.91      albertel 3304: 	    my $parts = $curRes->parts();
1.71      ng       3305:             my $title = $curRes->compTitle();
                   3306: 	    my $symbx = $curRes->symb();
                   3307: 	    $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$question.
                   3308: 		(scalar(@{$parts}) == 1 ? '' : '<br>('.scalar(@{$parts}).'&nbsp;parts)').'</td>';
                   3309: 	    $studentTable.='<td valign="top">&nbsp;<b>'.$title.'</b>&nbsp;</td>';
                   3310: 
                   3311: 	    my %newrecord=();
                   3312: 	    my @displayPts=();
                   3313: 	    foreach my $partid (@{$parts}) {
                   3314: 		my $newpts = $ENV{'form.GD_BOX'.$question.'_'.$partid};
                   3315: 		my $oldpts = $ENV{'form.oldpts'.$question.'_'.$partid};
                   3316: 
                   3317: 		my $wgt = $ENV{'form.WGT'.$question.'_'.$partid} != 0 ? 
                   3318: 		    $ENV{'form.WGT'.$question.'_'.$partid} : 1;
                   3319: 		my $partial = $newpts/$wgt;
                   3320: 		my $score;
                   3321: 		if ($partial > 0) {
                   3322: 		    $score = 'correct_by_override';
1.125     ng       3323: 		} elsif ($newpts ne '') { #empty is taken as 0
1.71      ng       3324: 		    $score = 'incorrect_by_override';
                   3325: 		}
1.125     ng       3326: 		my $dropMenu = $ENV{'form.GD_SEL'.$question.'_'.$partid};
                   3327: 		if ($dropMenu eq 'excused') {
1.71      ng       3328: 		    $partial = '';
                   3329: 		    $score = 'excused';
1.125     ng       3330: 		} elsif ($dropMenu eq 'reset status'
                   3331: 			 && $ENV{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
                   3332: 		    $newrecord{'resource.'.$partid.'.tries'} = 0;
                   3333: 		    $newrecord{'resource.'.$partid.'.solved'} = '';
                   3334: 		    $newrecord{'resource.'.$partid.'.award'} = '';
                   3335: 		    $newrecord{'resource.'.$partid.'.awarded'} = 0;
                   3336: 		    $newrecord{'resource.'.$partid.'.regrader'} = "$ENV{'user.name'}:$ENV{'user.domain'}";
                   3337: 		    $changeflag++;
                   3338: 		    $newpts = '';
1.71      ng       3339: 		}
1.125     ng       3340: 
1.71      ng       3341: 		my $oldstatus = $ENV{'form.solved'.$question.'_'.$partid};
                   3342: 		$displayPts[0].='&nbsp;<b>Part</b> '.$partid.' = '.
                   3343: 		    (($oldstatus eq 'excused') ? 'excused' : $oldpts).
                   3344: 		    '&nbsp;<br>';
                   3345: 		$displayPts[1].='&nbsp;<b>Part</b> '.$partid.' = '.
1.125     ng       3346: 		     (($score eq 'excused') ? 'excused' : $newpts).
1.71      ng       3347: 		    '&nbsp;<br>';
                   3348: 
                   3349: 		$question++;
1.125     ng       3350: 		next if ($dropMenu eq 'reset status' || ($newpts == $oldpts && $score ne 'excused'));
                   3351: 
1.71      ng       3352: 		$newrecord{'resource.'.$partid.'.awarded'}  = $partial if $partial ne '';
1.125     ng       3353: 		$newrecord{'resource.'.$partid.'.solved'}   = $score if $score ne '';
                   3354: 		$newrecord{'resource.'.$partid.'.regrader'} = "$ENV{'user.name'}:$ENV{'user.domain'}"
                   3355: 		    if (scalar(keys(%newrecord)) > 0);
1.71      ng       3356: 
                   3357: 		$changeflag++;
                   3358: 	    }
                   3359: 	    if (scalar(keys(%newrecord)) > 0) {
                   3360: 		&Apache::lonnet::cstore(\%newrecord,$symbx,$ENV{'request.course.id'},
                   3361: 					$udom,$uname);
                   3362: 	    }
1.125     ng       3363: 
1.71      ng       3364: 	    $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
                   3365: 		'<td valign="top">'.$displayPts[1].'</td>'.
                   3366: 		'</tr>';
1.68      ng       3367: 
                   3368: 	}
1.71      ng       3369:         $curRes = $iterator->next();
1.68      ng       3370:     }
1.98      albertel 3371: 
                   3372:     $navmap->untieHashes();
1.68      ng       3373: 
1.71      ng       3374:     $studentTable.='</td></tr></table></td></tr></table>';
                   3375:     $studentTable.=&show_grading_menu_form($ENV{'form.symb'},$ENV{'form.url'});
1.76      ng       3376:     my $grademsg=($changeflag == 0 ? 'No score was changed or updated.' :
                   3377: 		  'The scores were changed for '.
                   3378: 		  $changeflag.' problem'.($changeflag == 1 ? '.' : 's.'));
                   3379:     $request->print($grademsg.$studentTable);
1.68      ng       3380: 
1.70      ng       3381:     return '';
                   3382: }
                   3383: 
1.72      ng       3384: #-------- end of section for handling grading by page/sequence ---------
                   3385: #
                   3386: #-------------------------------------------------------------------
                   3387: 
1.75      albertel 3388: #--------------------Scantron Grading-----------------------------------
                   3389: #
                   3390: #------ start of section for handling grading by page/sequence ---------
                   3391: 
1.81      albertel 3392: sub defaultFormData {
                   3393:     my ($symb,$url)=@_;
                   3394:     return '
                   3395:       <input type="hidden" name="symb"    value="'.$symb.'" />'."\n".
                   3396:      '<input type="hidden" name="url"     value="'.$url.'" />'."\n".
                   3397:      '<input type="hidden" name="saveState" value="'.$ENV{'form.saveState'}.'" />'."\n".
                   3398:      '<input type="hidden" name="probTitle" value="'.$ENV{'form.probTitle'}.'" />'."\n";
                   3399: }
                   3400: 
1.75      albertel 3401: sub getSequenceDropDown {
                   3402:     my ($request,$symb)=@_;
                   3403:     my $result='<select name="selectpage">'."\n";
                   3404:     my ($titles,$symbx) = &getSymbMap($request);
1.137     albertel 3405:     my ($curpage)=&Apache::lonnet::decode_symb($symb); 
1.75      albertel 3406:     my $ctr=0;
                   3407:     foreach (@$titles) {
                   3408: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   3409: 	$result.='<option value="'.$$symbx{$_}.'" '.
                   3410: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="on"' : '').
                   3411: 	    '>'.$showtitle.'</option>'."\n";
                   3412: 	$ctr++;
                   3413:     }
                   3414:     $result.= '</select>';
                   3415:     return $result;
                   3416: }
                   3417: 
1.81      albertel 3418: sub scantron_uploads {
                   3419:     if (!-e $Apache::lonnet::perlvar{'lonScansDir'}) { return ''};
                   3420:     my $result=	'<select name="scantron_selectfile">';
1.157     albertel 3421:     my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   3422:     my $cname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                   3423:     my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
1.162     albertel 3424: 				    &Apache::loncommon::propath($cdom,$cname));
1.81      albertel 3425:     foreach my $filename (@files) {
1.157     albertel 3426: 	($filename)=split(/&/,$filename);
                   3427: 	if ($filename!~/^scantron_orig_/) { next ; }
                   3428: 	$filename=~s/^scantron_orig_//;
1.81      albertel 3429: 	$result.="<option>$filename</option>\n";
                   3430:     }
                   3431:     $result.="</select>";
                   3432:     return $result;
                   3433: }
                   3434: 
1.82      albertel 3435: sub scantron_scantab {
                   3436:     my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
                   3437:     my $result='<select name="scantron_format">'."\n";
                   3438:     foreach my $line (<$fh>) {
                   3439: 	my ($name,$descrip)=split(/:/,$line);
                   3440: 	if ($name =~ /^\#/) { next; }
                   3441: 	$result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
                   3442:     }
                   3443:     $result.='</select>'."\n";
                   3444: 
                   3445:     return $result;
                   3446: }
                   3447: 
1.75      albertel 3448: sub scantron_selectphase {
                   3449:     my ($r) = @_;
                   3450:     my ($symb,$url)=&get_symb_and_url($r);
                   3451:     if (!$symb) {return '';}
                   3452:     my $sequence_selector=&getSequenceDropDown($r,$symb);
1.81      albertel 3453:     my $default_form_data=&defaultFormData($symb,$url);
                   3454:     my $grading_menu_button=&show_grading_menu_form($symb,$url);
                   3455:     my $file_selector=&scantron_uploads();
1.82      albertel 3456:     my $format_selector=&scantron_scantab();
1.75      albertel 3457:     my $result;
1.157     albertel 3458:     #FIXME allow instructor to be able to download the scantron file
                   3459:     # and to upload it,
1.75      albertel 3460:     $result.= <<SCANTRONFORM;
1.162     albertel 3461:     <table width="100%" border="0">
1.75      albertel 3462:     <tr>
                   3463:       <td bgcolor="#777777">
1.162     albertel 3464:        <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantro_process">
                   3465:        <input type="hidden" name="command" value="scantron_validate" />
                   3466:         $default_form_data
1.75      albertel 3467:         <table width="100%" border="0">
                   3468:           <tr bgcolor="#e6ffff">
1.174     albertel 3469:             <td colspan="2">
                   3470:               &nbsp;<b>Specify file and which Folder/Sequence to grade</b>
1.75      albertel 3471:             </td>
                   3472:           </tr>
                   3473:           <tr bgcolor="#ffffe6">
1.174     albertel 3474:             <td> Sequence to grade: </td><td> $sequence_selector </td>
1.75      albertel 3475:           </tr>
                   3476:           <tr bgcolor="#ffffe6">
1.174     albertel 3477:             <td> Filename of scoring office file: </td><td> $file_selector </td>
1.75      albertel 3478:           </tr>
1.82      albertel 3479:           <tr bgcolor="#ffffe6">
1.174     albertel 3480:             <td> Format of data file: </td><td> $format_selector </td>
1.82      albertel 3481:           </tr>
1.157     albertel 3482:           <tr bgcolor="#ffffe6">
                   3483:             <td>
                   3484: <!-- FIXME this is lazy, a single parse of the set should let me know what this is -->
1.174     albertel 3485:               Last line to expect an answer on: </td><td>
1.157     albertel 3486:                 <input type="text" name="scantron_maxbubble" />
                   3487: 	    </td>
                   3488:           </tr>
1.162     albertel 3489:           <tr bgcolor="#ffffe6">
1.174     albertel 3490:             <td colspan="2">
1.162     albertel 3491:               <input type="submit" value="Validate Scantron Records" />
                   3492:             </td>
                   3493:           </tr>
                   3494:         </table>
                   3495:        </form>
                   3496:       </td>
                   3497:     </tr>
                   3498: SCANTRONFORM
                   3499:    
                   3500:     $r->print($result);
                   3501: 
                   3502:     if (&Apache::lonnet::allowed('usc',$ENV{'request.role.domain'}) ||
                   3503:         &Apache::lonnet::allowed('usc',$ENV{'request.course.id'})) {
                   3504: 
                   3505:         $r->print(<<SCANTRONFORM);
                   3506:     <tr>
                   3507:       <td bgcolor="#777777">
                   3508:         <table width="100%" border="0">
                   3509:           <tr bgcolor="#e6ffff">
                   3510:             <td>
1.174     albertel 3511:               &nbsp;<b>Specify a Scantron data file to upload.</b>
1.162     albertel 3512:             </td>
                   3513:           </tr>
                   3514:           <tr bgcolor="#ffffe6">
                   3515:             <td>
                   3516: SCANTRONFORM
1.174     albertel 3517:     my $default_form_data=&defaultFormData(&get_symb_and_url($r,1));
                   3518:     my $cdom= $ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   3519:     my $cnum= $ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                   3520:     $r->print(<<UPLOAD);
                   3521:               <script type="text/javascript" language="javascript">
                   3522:     function checkUpload(formname) {
                   3523: 	if (formname.upfile.value == "") {
                   3524: 	    alert("Please use the browse button to select a file from your local directory.");
                   3525: 	    return false;
                   3526: 	}
                   3527: 	formname.submit();
                   3528:     }
                   3529:               </script>
                   3530: 
                   3531:               <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
                   3532:                 $default_form_data
                   3533:                 <input name='courseid' type='hidden' value='$cnum' />
                   3534:                 <input name='domainid' type='hidden' value='$cdom' />
                   3535:                 <input name='command' value='scantronupload_save' type='hidden' />
                   3536:                 File to upload:<input type="file" name="upfile" size="50" />
                   3537:                 <br />
                   3538:                 <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
                   3539:               </form>
                   3540: UPLOAD
1.162     albertel 3541: 
                   3542:         $r->print(<<SCANTRONFORM);
                   3543:             </td>
                   3544:           </tr>
1.75      albertel 3545:         </table>
                   3546:       </td>
                   3547:     </tr>
1.162     albertel 3548: SCANTRONFORM
                   3549:     }
                   3550: 
                   3551:     $r->print(<<SCANTRONFORM);
1.75      albertel 3552:   </table>
                   3553: </form>
1.81      albertel 3554: $grading_menu_button
1.75      albertel 3555: SCANTRONFORM
                   3556: 
1.162     albertel 3557:     return
1.75      albertel 3558: }
                   3559: 
1.82      albertel 3560: sub get_scantron_config {
                   3561:     my ($which) = @_;
                   3562:     my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
                   3563:     my %config;
1.157     albertel 3564:     #FIXME probably should move to XML it has already gotten a bit much now
1.82      albertel 3565:     foreach my $line (<$fh>) {
                   3566: 	my ($name,$descrip)=split(/:/,$line);
                   3567: 	if ($name ne $which ) { next; }
                   3568: 	chomp($line);
                   3569: 	my @config=split(/:/,$line);
                   3570: 	$config{'name'}=$config[0];
                   3571: 	$config{'description'}=$config[1];
                   3572: 	$config{'CODElocation'}=$config[2];
                   3573: 	$config{'CODEstart'}=$config[3];
                   3574: 	$config{'CODElength'}=$config[4];
                   3575: 	$config{'IDstart'}=$config[5];
                   3576: 	$config{'IDlength'}=$config[6];
                   3577: 	$config{'Qstart'}=$config[7];
                   3578: 	$config{'Qlength'}=$config[8];
                   3579: 	$config{'Qoff'}=$config[9];
                   3580: 	$config{'Qon'}=$config[10];
1.157     albertel 3581: 	$config{'PaperID'}=$config[11];
                   3582: 	$config{'PaperIDlength'}=$config[12];
                   3583: 	$config{'FirstName'}=$config[13];
                   3584: 	$config{'FirstNamelength'}=$config[14];
                   3585: 	$config{'LastName'}=$config[15];
                   3586: 	$config{'LastNamelength'}=$config[16];
1.82      albertel 3587: 	last;
                   3588:     }
                   3589:     return %config;
                   3590: }
                   3591: 
                   3592: sub username_to_idmap {
                   3593:     my ($classlist)= @_;
                   3594:     my %idmap;
                   3595:     foreach my $student (keys(%$classlist)) {
                   3596: 	$idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
                   3597: 	    $student;
                   3598:     }
                   3599:     return %idmap;
                   3600: }
                   3601: 
1.157     albertel 3602: sub scantron_fixup_scanline {
                   3603:     my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
                   3604:     if ($field eq 'ID') {
                   3605: 	if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
                   3606: 	    return ($line,1,'New value to large');
                   3607: 	}
                   3608: 	if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
                   3609: 	    $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
                   3610: 				     $args->{'newid'});
                   3611: 	}
                   3612: 	substr($line,$$scantron_config{'IDstart'}-1,
                   3613: 	       $$scantron_config{'IDlength'})=$args->{'newid'};
                   3614: 	if ($args->{'newid'}=~/^\s*$/) {
                   3615: 	    &scan_data($scan_data,"$whichline.user",
                   3616: 		       $args->{'username'}.':'.$args->{'domain'});
                   3617: 	}
                   3618:     } elsif ($field eq 'answer') {
                   3619: 	my $length=$scantron_config->{'Qlength'};
                   3620: 	my $off=$scantron_config->{'Qoff'};
                   3621: 	my $on=$scantron_config->{'Qon'};
                   3622: 	my $answer=${off}x$length;
                   3623: 	if ($args->{'response'} eq 'none') {
                   3624: 	    &scan_data($scan_data,
                   3625: 		       "$whichline.no_bubble.".$args->{'question'},'1');
                   3626: 	} else {
                   3627: 	    substr($answer,$args->{'response'},1)=$on;
                   3628: 	    &scan_data($scan_data,
                   3629: 		       "$whichline.no_bubble.".$args->{'question'},undef,'1');
                   3630: 	}
                   3631: 	my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
                   3632: 	substr($line,$where-1,$length)=$answer;
                   3633:     }
                   3634:     return $line;
                   3635: }
                   3636: 
                   3637: sub scan_data {
                   3638:     my ($scan_data,$key,$value,$delete)=@_;
                   3639:     my $filename=$ENV{'form.scantron_selectfile'};
                   3640:     if (defined($value)) {
                   3641: 	$scan_data->{$filename.'_'.$key} = $value;
                   3642:     }
                   3643:     if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
                   3644:     return $scan_data->{$filename.'_'.$key};
                   3645: }
                   3646: 
1.82      albertel 3647: sub scantron_parse_scanline {
1.157     albertel 3648:     my ($line,$whichline,$scantron_config,$scan_data)=@_;
1.82      albertel 3649:     my %record;
                   3650:     my $questions=substr($line,$$scantron_config{'Qstart'}-1);
                   3651:     my $data=substr($line,0,$$scantron_config{'Qstart'}-1);
                   3652:     if ($$scantron_config{'CODElocation'} ne 0) {
                   3653: 	if ($$scantron_config{'CODElocation'} < 0) {
1.83      albertel 3654: 	    $record{'scantron.CODE'}=substr($data,$$scantron_config{'CODEstart'}-1,
                   3655: 					    $$scantron_config{'CODElength'});
1.82      albertel 3656: 	} else {
                   3657: 	    #FIXME interpret first N questions
                   3658: 	}
                   3659:     }
1.83      albertel 3660:     $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
                   3661: 				  $$scantron_config{'IDlength'});
1.157     albertel 3662:     $record{'scantron.PaperID'}=
                   3663: 	substr($data,$$scantron_config{'PaperID'}-1,
                   3664: 	       $$scantron_config{'PaperIDlength'});
                   3665:     $record{'scantron.FirstName'}=
                   3666: 	substr($data,$$scantron_config{'FirstName'}-1,
                   3667: 	       $$scantron_config{'FirstNamelength'});
                   3668:     $record{'scantron.LastName'}=
                   3669: 	substr($data,$$scantron_config{'LastName'}-1,
                   3670: 	       $$scantron_config{'LastNamelength'});
1.82      albertel 3671:     my @alphabet=('A'..'Z');
                   3672:     my $questnum=0;
                   3673:     while ($questions) {
                   3674: 	$questnum++;
                   3675: 	my $currentquest=substr($questions,0,$$scantron_config{'Qlength'});
                   3676: 	substr($questions,0,$$scantron_config{'Qlength'})='';
1.83      albertel 3677: 	if (length($currentquest) < $$scantron_config{'Qlength'}) { next; }
1.157     albertel 3678: 	my @array=split($$scantron_config{'Qon'},$currentquest,-1);
1.82      albertel 3679: 	if (length($array[0]) eq $$scantron_config{'Qlength'}) {
1.83      albertel 3680: 	    $record{"scantron.$questnum.answer"}='';
1.157     albertel 3681: 	    if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
                   3682: 		push(@{$record{"scantron.missingerror"}},$questnum);
                   3683:  	    }
1.82      albertel 3684: 	} else {
1.83      albertel 3685: 	    $record{"scantron.$questnum.answer"}=$alphabet[length($array[0])];
1.82      albertel 3686: 	}
1.157     albertel 3687:  	if (scalar(@array) gt 2) {
                   3688:  	    push(@{$record{'scantron.doubleerror'}},$questnum);
                   3689:  	    my @ans=@array;
                   3690:  	    my $i=length($ans[0]);shift(@ans);
                   3691: 	    while ($#ans) {
                   3692:  		$i+=length($ans[0])+1;
                   3693:  		$record{"scantron.$questnum.answer"}.=$alphabet[$i];
                   3694:  		shift(@ans);
                   3695:  	    }
                   3696:  	}
1.82      albertel 3697:     }
1.83      albertel 3698:     $record{'scantron.maxquest'}=$questnum;
                   3699:     return \%record;
1.82      albertel 3700: }
                   3701: 
                   3702: sub scantron_add_delay {
1.140     albertel 3703:     my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
                   3704:     push(@$delayqueue,
                   3705: 	 {'line' => $scanline, 'emsg' => $errormessage,
                   3706: 	  'ecode' => $errorcode }
                   3707: 	 );
1.82      albertel 3708: }
                   3709: 
                   3710: sub scantron_find_student {
1.157     albertel 3711:     my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83      albertel 3712:     my $scanID=$$scantron_record{'scantron.ID'};
1.157     albertel 3713:     if ($scanID =~ /^\s*$/) {
                   3714:  	return &scan_data($scan_data,"$line.user");
                   3715:     }
1.83      albertel 3716:     foreach my $id (keys(%$idmap)) {
1.157     albertel 3717:  	if (lc($id) eq lc($scanID)) {
                   3718:  	    return $$idmap{$id};
                   3719:  	}
1.83      albertel 3720:     }
                   3721:     return undef;
                   3722: }
                   3723: 
                   3724: sub scantron_filter {
                   3725:     my ($curres)=@_;
                   3726:     if (ref($curres) && $curres->is_problem() && !$curres->randomout) {
                   3727: 	return 1;
                   3728:     }
                   3729:     return 0;
1.82      albertel 3730: }
                   3731: 
1.157     albertel 3732: sub scantron_process_corrections {
                   3733:     my ($r) = @_;
                   3734:     my %scantron_config=&get_scantron_config($ENV{'form.scantron_format'});
                   3735:     my ($scanlines,$scan_data)=&scantron_getfile();
                   3736:     my $classlist=&Apache::loncoursedata::get_classlist();
                   3737:     my $which=$ENV{'form.scantron_line'};
                   3738:     my $line=&scantron_get_line($scanlines,$which);
                   3739:     my ($skip,$err,$errmsg);
                   3740:     if ($ENV{'form.scantron_skip_record'}) {
                   3741: 	$skip=1;
                   3742:     } elsif ($ENV{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
                   3743: 	my $newstudent=$ENV{'form.scantron_username'}.':'.
                   3744: 	    $ENV{'form.scantron_domain'};
                   3745: 	my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
                   3746: 	($line,$err,$errmsg)=
                   3747: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
                   3748: 				     'ID',{'newid'=>$newid,
                   3749: 				    'username'=>$ENV{'form.scantron_username'},
                   3750: 				    'domain'=>$ENV{'form.scantron_domain'}});
                   3751:     } elsif ($ENV{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
                   3752: 	foreach my $question (split(',',$ENV{'form.scantron_questions'})) {
                   3753: 	    ($line,$err,$errmsg)=
                   3754: 		&scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
                   3755: 					 $which,'answer',
                   3756: 					 { 'question'=>$question,
                   3757: 		       'response'=>$ENV{"form.scantron_correct_Q_$question"}});
                   3758: 	    if ($err) { last; }
                   3759: 	}
                   3760:     }
                   3761:     if ($err) {
                   3762: 	$r->print("Unable to accept last correction, an error occurred :$errmsg:");
                   3763:     } else {
                   3764: 	&scantron_put_line($scanlines,$which,$line,$skip);
                   3765: 	&scantron_putfile($scanlines,$scan_data);
                   3766:     }
                   3767: }
                   3768: 
                   3769: 
                   3770: sub scantron_validate_file {
                   3771:     my ($r) = @_;
                   3772:     my ($symb,$url)=&get_symb_and_url($r);
                   3773:     if (!$symb) {return '';}
                   3774:     my $default_form_data=&defaultFormData($symb,$url);
                   3775: 
                   3776:     if ($ENV{'form.scantron_corrections'}) {
                   3777: 	&scantron_process_corrections($r);
                   3778:     }
                   3779:     #get the student pick code ready
                   3780:     $r->print(&Apache::loncommon::studentbrowser_javascript());
                   3781:     my $result= <<SCANTRONFORM;
                   3782: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
                   3783:   <input type="hidden" name="selectpage" value="$ENV{'form.selectpage'}" />
                   3784:   <input type="hidden" name="scantron_format" value="$ENV{'form.scantron_format'}" />
                   3785:   <input type="hidden" name="scantron_selectfile" value="$ENV{'form.scantron_selectfile'}" />
                   3786:   <input type="hidden" name="scantron_maxbubble" value="$ENV{'form.scantron_maxbubble'}" />
                   3787:   $default_form_data
                   3788: SCANTRONFORM
                   3789:     $r->print($result);
                   3790:     
                   3791:     my @validate_phases=( 'ID',
                   3792: 			  'CODE',
                   3793: 			  'doublebubble',
                   3794: 			  'missingbubbles');
                   3795:     if (!$ENV{'form.validatepass'}) {
                   3796: 	$ENV{'form.valiadatepass'} = 0;
                   3797:     }
                   3798:     my $currentphase=$ENV{'form.valiadatepass'};
                   3799: 
                   3800:     if ($ENV{'form.scantron_selectfile'}=~m-^/-) {
                   3801: 	#first pass copy file to classdir
                   3802: 	
                   3803:     }
                   3804:     my $stop=0;
                   3805:     while (!$stop && $currentphase < scalar(@validate_phases)) {
                   3806: 	$r->print("<p> Validating ".$validate_phases[$currentphase]."</p>");
                   3807: 	$r->rflush();
                   3808: 	my $which="scantron_validate_".$validate_phases[$currentphase];
                   3809: 	{
                   3810: 	    no strict 'refs';
                   3811: 	    ($stop,$currentphase)=&$which($r,$currentphase);
                   3812: 	}
                   3813:     }
                   3814:     if (!$stop) {
                   3815: 	$r->print("Validation process complete.<br />");
                   3816: 	$r->print('<input type="submit" name="submit" value="Start Grading" />');
                   3817: 	$r->print('<input type="hidden" name="command" value="scantron_process" />');
                   3818:     } else {
                   3819: 	$r->print('<input type="hidden" name="command" value="scantron_validate" />');
                   3820: 	$r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
                   3821:     }
                   3822:     if ($stop) {
                   3823: 	$r->print('<input type="submit" name="submit" value="Continue ->" />');
                   3824: 	$r->print(' using corrected info <br />');
                   3825: 	$r->print("<input type='submit' value='Skip' name='scantron_skip_record' />");
                   3826: 	$r->print(" this scanline saving it for later.");
                   3827:     }
                   3828:     $r->print(" </form><br />".&show_grading_menu_form($symb,$url).
                   3829: 	      "</body></html>");
                   3830:     return '';
                   3831: }
                   3832: 
                   3833: sub scantron_getfile {
                   3834:     #FIXME really would prefer a scantron directory but tokenwrapper
                   3835:     # doesn't allow access to subdirs of userfiles
                   3836:     my $cname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                   3837:     my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   3838:     my $lines;
                   3839:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
                   3840: 		       'scantron_orig_'.$ENV{'form.scantron_selectfile'});
                   3841:     my %scanlines;
                   3842:     $scanlines{'orig'}=[(split("\n",$lines,-1))];
                   3843:     my $temp=$scanlines{'orig'};
                   3844:     $scanlines{'count'}=$#$temp;
                   3845: 
                   3846:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
                   3847: 		       'scantron_corrected_'.$ENV{'form.scantron_selectfile'});
                   3848:     if ($lines eq '-1') {
                   3849: 	$scanlines{'corrected'}=[];
                   3850:     } else {
                   3851: 	$scanlines{'corrected'}=[(split("\n",$lines,-1))];
                   3852:     }
                   3853:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
                   3854: 		       'scantron_skipped_'.$ENV{'form.scantron_selectfile'});
                   3855:     if ($lines eq '-1') {
                   3856: 	$scanlines{'skipped'}=[];
                   3857:     } else {
                   3858: 	$scanlines{'skipped'}=[(split("\n",$lines,-1))];
                   3859:     }
1.175     albertel 3860:     my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157     albertel 3861:     if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
                   3862:     my %scan_data = @tmp;
                   3863:     return (\%scanlines,\%scan_data);
                   3864: }
                   3865: 
                   3866: sub lonnet_putfile {
                   3867:     my ($contents,$filename)=@_;
                   3868:     my $docuname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                   3869:     my $docudom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   3870:     my $docuhome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
                   3871:     $ENV{'form.sillywaytopassafilearound'}=$contents;
                   3872:     &Apache::lonnet::finishuserfileupload($docuname,$docudom,$docuhome,'sillywaytopassafilearound',$filename);
                   3873: 
                   3874: }
                   3875: 
                   3876: sub scantron_putfile {
                   3877:     my ($scanlines,$scan_data) = @_;
                   3878:     #FIXME really would prefer a scantron directory but tokenwrapper
                   3879:     # doesn't allow access to subdirs of userfiles
                   3880:     my $cname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                   3881:     my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   3882:     my $prefix='scantron_';
                   3883: # no need to update orig, shouldn't change
                   3884: #   &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
                   3885: #		    $ENV{'form.scantron_selectfile'});
                   3886:     &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
                   3887: 		    $prefix.'corrected_'.
                   3888: 		    $ENV{'form.scantron_selectfile'});
                   3889:     &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
                   3890: 		    $prefix.'skipped_'.
                   3891: 		    $ENV{'form.scantron_selectfile'});
1.175     albertel 3892:     &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157     albertel 3893: }
                   3894: 
                   3895: sub scantron_get_line {
                   3896:     my ($scanlines,$i)=@_;
                   3897:     if ($scanlines->{'skipped'}[$i]) {return undef;}
                   3898:     if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
                   3899:     return $scanlines->{'orig'}[$i]; 
                   3900: }
                   3901: 
                   3902: sub scantron_put_line {
                   3903:     my ($scanlines,$i,$newline,$skip)=@_;
                   3904:     if ($skip) {
                   3905: 	$scanlines->{'skipped'}[$i]=$newline;
                   3906: 	return;
                   3907:     }
                   3908:     $scanlines->{'corrected'}[$i]=$newline;
                   3909: }
                   3910: 
                   3911: sub scantron_validate_ID {
                   3912:     my ($r,$currentphase) = @_;
                   3913:     
                   3914:     #get student info
                   3915:     my $classlist=&Apache::loncoursedata::get_classlist();
                   3916:     my %idmap=&username_to_idmap($classlist);
                   3917: 
                   3918:     #get scantron line setup
                   3919:     my %scantron_config=&get_scantron_config($ENV{'form.scantron_format'});
                   3920:     my ($scanlines,$scan_data)=&scantron_getfile();
                   3921: 
                   3922:     my %found=('ids'=>{},'usernames'=>{});
                   3923:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   3924: 	my $line=&scantron_get_line($scanlines,$i);
                   3925: 	if ($line=~/^[\s\cz]*$/) { next; }
                   3926: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   3927: 						 $scan_data);
                   3928: 	my $id=$$scan_record{'scantron.ID'};
                   3929: 	my $found;
                   3930: 	foreach my $checkid (keys(%idmap)) {
                   3931: 	    if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
                   3932: 	}
                   3933: 	if ($found) {
                   3934: 	    my $username=$idmap{$found};
                   3935: 	    if ($found{'ids'}{$found}) {
                   3936: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   3937: 					 $line,'duplicateID',$found);
                   3938: 		return(1);
                   3939: 	    } elsif ($found{'usernames'}{$username}) {
                   3940: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   3941: 					 $line,'duplicateID',$username);
                   3942: 		return(1);
                   3943: 	    }
                   3944: 	    #FIXME store away line we prviously saw the ID on to use above
                   3945: 	    $found{'ids'}{$found}++;
                   3946: 	    $found{'usernames'}{$username}++;
                   3947: 	} else {
                   3948: 	    if ($id =~ /^\s*$/) {
1.158     albertel 3949: 		my $username=&scan_data($scan_data,"$i.user");
1.157     albertel 3950: 		if (defined($username) && $found{'usernames'}{$username}) {
                   3951: 		    &scantron_get_correction($r,$i,$scan_record,
                   3952: 					     \%scantron_config,
                   3953: 					     $line,'duplicateID',$username);
                   3954: 		    return(1);
                   3955: 		} elsif (!defined($username)) {
                   3956: 		    &scantron_get_correction($r,$i,$scan_record,
                   3957: 					     \%scantron_config,
                   3958: 					     $line,'incorrectID');
                   3959: 		    return(1);
                   3960: 		}
                   3961: 		$found{'usernames'}{$username}++;
                   3962: 	    } else {
                   3963: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   3964: 					 $line,'incorrectID');
                   3965: 		return(1);
                   3966: 	    }
                   3967: 	}
                   3968:     }
                   3969: 
                   3970:     return (0,$currentphase+1);
                   3971: }
                   3972: 
                   3973: sub scantron_get_correction {
                   3974:     my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
                   3975: 
                   3976: #FIXME in the case of a duplicated ID the previous line, probaly need
                   3977: #to show both the current line and the previous one and allow skipping
                   3978: #the previous one or the current one
                   3979: 
1.161     albertel 3980:     $r->print("<p><b>An error was detected ($error)</b>");
1.157     albertel 3981:     if ( defined($$scan_record{'scantron.PaperID'}) ) {
                   3982: 	$r->print(" for PaperID <tt>".
                   3983: 		  $$scan_record{'scantron.PaperID'}."</tt> \n");
                   3984:     } else {
                   3985: 	$r->print(" in scanline $i <pre>".
                   3986: 		  $line."</pre> \n");
                   3987:     }
                   3988:     $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
                   3989:     $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
                   3990:     if ($error =~ /ID$/) {
                   3991: 	if ($error eq 'unknownID') {
                   3992: 	    $r->print("The encoded ID is not in the classlist</p>\n");
                   3993: 	} elsif ($error eq 'duplicateID') {
                   3994: 	    $r->print("The encoded ID has also been used by a previous paper $arg</p>\n");
                   3995: 	}
                   3996: 	$r->print("<p>The ID on the form is  <tt>".
                   3997: 		  $$scan_record{'scantron.ID'}."</tt><br />\n");
                   3998: 	$r->print("The name on the paper is ".
                   3999: 		  $$scan_record{'scantron.LastName'}.",".
                   4000: 		  $$scan_record{'scantron.FirstName'}."</p>");
                   4001: 	$r->print("<p>How should I handle this? <br /> \n");
                   4002: 	$r->print("\n<ul><li> ");
                   4003: 	#FIXME it would be nice if this sent back the user ID and
                   4004: 	#could do partial userID matches
                   4005: 	$r->print(&Apache::loncommon::selectstudent_link('scantronupload',
                   4006: 				       'scantron_username','scantron_domain'));
                   4007: 	$r->print(": <input type='text' name='scantron_username' value='' />");
                   4008: 	$r->print("\n@".
1.176     albertel 4009: 		 &Apache::loncommon::select_dom_form($ENV{'request.role..domain'},'scantron_domain'));
1.157     albertel 4010: 
                   4011: 	$r->print('</li>');
                   4012:     } elsif ($error eq 'doublebubble') {
                   4013: #FIXME Need to print out who this is along with the paper info
                   4014: 	$r->print("<p>There have been multiple bubbles scanned for a some question(s)</p>\n");
                   4015: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
                   4016: 		  join(',',@{$arg}).'" />');
                   4017: 	$r->print("<p>Please indicate which bubble should be used for grading</p>");
                   4018: 	foreach my $question (@{$arg}) {
                   4019: 	    my $selected=$$scan_record{"scantron.$question.answer"};
                   4020: 	    &scantron_bubble_selector($r,$scan_config,$question,split('',$selected));
                   4021: 	}
                   4022:     } elsif ($error eq 'missingbubble') {
                   4023: 	$r->print("<p>There have been <b>no</b> bubbles scanned for some question(s)</p>\n");
                   4024: 	$r->print("<p>Please indicate which bubble should be used for grading</p>");
                   4025: 	$r->print("Some questions have no scanned bubbles\n");
                   4026: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
                   4027: 		  join(',',@{$arg}).'" />');
                   4028: 	foreach my $question (@{$arg}) {
                   4029: 	    my $selected=$$scan_record{"scantron.$question.answer"};
                   4030: 	    &scantron_bubble_selector($r,$scan_config,$question);
                   4031: 	}
                   4032:     } else {
                   4033: 	$r->print("\n<ul>");
                   4034:     }
                   4035:     $r->print("\n</li></ul>");
                   4036: 
                   4037: }
                   4038: 
                   4039: sub scantron_bubble_selector {
                   4040:     my ($r,$scan_config,$quest,@selected)=@_;
                   4041:     my $max=$$scan_config{'Qlength'};
                   4042:     my @alphabet=('A'..'Z');
                   4043:     $r->print("<table border='1'><tr><td rowspan='2'>$quest</td>");
                   4044:     for (my $i=0;$i<$max+1;$i++) {
                   4045: 	$r->print('<td align="center">');
                   4046: 	if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
                   4047: 	else { $r->print('&nbsp;'); }
                   4048: 	$r->print('</td>');
                   4049:     }
                   4050:     $r->print('<td></td></tr><tr>');
                   4051:     for (my $i=0;$i<$max;$i++) {
                   4052: 	$r->print('<td><input type="radio" name="scantron_correct_Q_'.$quest.
                   4053: 		  '" value="'.$i.'" />'.$alphabet[$i]."</td>");
                   4054:     }
                   4055:     $r->print('<td><input type="radio" name="scantron_correct_Q_'.$quest.
                   4056: 	      '" value="none" /> No bubble </td>');
                   4057:     $r->print('</tr></table>');
                   4058: }
                   4059: 
                   4060: sub scantron_validate_CODE {
                   4061:     my ($r,$currentphase) = @_;
                   4062:     #FIXME doesn't do anything yet
                   4063:     return (0,$currentphase+1);
                   4064: }
                   4065: 
                   4066: sub scantron_validate_doublebubble {
                   4067:     my ($r,$currentphase) = @_;
                   4068:     #get student info
                   4069:     my $classlist=&Apache::loncoursedata::get_classlist();
                   4070:     my %idmap=&username_to_idmap($classlist);
                   4071: 
                   4072:     #get scantron line setup
                   4073:     my %scantron_config=&get_scantron_config($ENV{'form.scantron_format'});
                   4074:     my ($scanlines,$scan_data)=&scantron_getfile();
                   4075:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   4076: 	my $line=&scantron_get_line($scanlines,$i);
                   4077: 	if ($line=~/^[\s\cz]*$/) { next; }
                   4078: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   4079: 						 $scan_data);
                   4080: 	if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
                   4081: 	&scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
                   4082: 				 'doublebubble',
                   4083: 				 $$scan_record{'scantron.doubleerror'});
                   4084:     	return (1,$currentphase);
                   4085:     }
                   4086:     return (0,$currentphase+1);
                   4087: }
                   4088: 
                   4089: sub scantron_validate_missingbubbles {
                   4090:     my ($r,$currentphase) = @_;
                   4091:     #get student info
                   4092:     my $classlist=&Apache::loncoursedata::get_classlist();
                   4093:     my %idmap=&username_to_idmap($classlist);
                   4094: 
                   4095:     #get scantron line setup
                   4096:     my %scantron_config=&get_scantron_config($ENV{'form.scantron_format'});
                   4097:     my ($scanlines,$scan_data)=&scantron_getfile();
                   4098:     my $max_bubble=$ENV{'form.scantron_maxbubble'};
                   4099:     if (!$max_bubble) { $max_bubble=2**31; }
                   4100:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   4101: 	my $line=&scantron_get_line($scanlines,$i);
                   4102: 	if ($line=~/^[\s\cz]*$/) { next; }
                   4103: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   4104: 						 $scan_data);
                   4105: 	if (!defined($$scan_record{'scantron.missingerror'})) { next; }
                   4106: 	my @to_correct;
                   4107: 	foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
                   4108: 	    if ($missing > $max_bubble) { next; }
                   4109: 	    push(@to_correct,$missing);
                   4110: 	}
                   4111: 	if (@to_correct) {
                   4112: 	    &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   4113: 				     $line,'missingbubble',\@to_correct);
                   4114: 	    return (1,$currentphase);
                   4115: 	}
                   4116: 
                   4117:     }
                   4118:     return (0,$currentphase+1);
                   4119: }
                   4120: 
1.82      albertel 4121: sub scantron_process_students {
1.75      albertel 4122:     my ($r) = @_;
1.136     www      4123:     my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($ENV{'form.selectpage'});
1.81      albertel 4124:     my ($symb,$url)=&get_symb_and_url($r);
                   4125:     if (!$symb) {return '';}
                   4126:     my $default_form_data=&defaultFormData($symb,$url);
1.82      albertel 4127: 
                   4128:     my %scantron_config=&get_scantron_config($ENV{'form.scantron_format'});
1.157     albertel 4129:     my ($scanlines,$scan_data)=&scantron_getfile();
1.82      albertel 4130:     my $classlist=&Apache::loncoursedata::get_classlist();
                   4131:     my %idmap=&username_to_idmap($classlist);
1.132     bowersj2 4132:     my $navmap=Apache::lonnavmaps::navmap->new();
1.83      albertel 4133:     my $map=$navmap->getResourceByUrl($sequence);
                   4134:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.140     albertel 4135: #    $r->print("geto ".scalar(@resources)."<br />");
1.82      albertel 4136:     my $result= <<SCANTRONFORM;
1.81      albertel 4137: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
                   4138:   <input type="hidden" name="command" value="scantron_configphase" />
                   4139:   $default_form_data
                   4140: SCANTRONFORM
1.82      albertel 4141:     $r->print($result);
                   4142: 
                   4143:     my @delayqueue;
1.140     albertel 4144:     my %completedstudents;
                   4145:     
1.157     albertel 4146:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
                   4147:  				    'Scantron Progress',$scanlines->{'count'});
1.140     albertel 4148:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
                   4149: 					  'Processing first student');
                   4150:     my $start=&Time::HiRes::time();
1.158     albertel 4151:     my $i=-1;
                   4152:     my ($uname,$udom);
1.157     albertel 4153:     while ($i<$scanlines->{'count'}) {
                   4154:  	($uname,$udom)=('','');
                   4155:  	$i++;
                   4156:  	my $line=&scantron_get_line($scanlines,$i);
                   4157:  	if ($line=~/^[\s\cz]*$/) { next; }
                   4158:  	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   4159:  						 $scan_data);
                   4160:  	unless ($uname=&scantron_find_student($scan_record,$scan_data,
                   4161:  					      \%idmap,$i)) {
                   4162:   	    &scantron_add_delay(\@delayqueue,$line,
                   4163:  				'Unable to find a student that matches',1);
                   4164:  	    next;
                   4165:   	}
                   4166:  	if (exists $completedstudents{$uname}) {
                   4167:  	    &scantron_add_delay(\@delayqueue,$line,
                   4168:  				'Student '.$uname.' has multiple sheets',2);
                   4169:  	    next;
                   4170:  	}
                   4171:   	($uname,$udom)=split(/:/,$uname);
                   4172:   	&Apache::lonnet::delenv('form.counter');
                   4173:   	&Apache::lonnet::appenv(%$scan_record);
1.161     albertel 4174: 	
                   4175: 	my $i=0;
1.83      albertel 4176: 	foreach my $resource (@resources) {
1.85      albertel 4177: 	    $i++;
1.83      albertel 4178: 	    my $result=&Apache::lonnet::ssi($resource->src(),
                   4179: 				 ('submitted'     =>'scantron',
                   4180: 				  'grade_target'  =>'grade',
                   4181: 				  'grade_username'=>$uname,
                   4182: 				  'grade_domain'  =>$udom,
                   4183: 				  'grade_courseid'=>$ENV{'request.course.id'},
                   4184: 				  'grade_symb'    =>$resource->symb()));
                   4185: 	}
1.140     albertel 4186: 	$completedstudents{$uname}={'line'=>$line};
                   4187:     } continue {
1.85      albertel 4188: 	&Apache::lonnet::delenv('form.counter');
1.83      albertel 4189: 	&Apache::lonnet::delenv('scantron\.');
1.85      albertel 4190: 	&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
1.140     albertel 4191: 						 'last student');
1.82      albertel 4192:     }
1.140     albertel 4193:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.172     albertel 4194: #    my $lasttime = &Time::HiRes::time()-$start;
                   4195: #    $r->print("<p>took $lasttime</p>");
1.140     albertel 4196: 
1.85      albertel 4197:     $navmap->untieHashes();
1.172     albertel 4198:     $r->print("</form><p>Done</p>");
1.157     albertel 4199:     $r->print(&show_grading_menu_form($symb,$url));
                   4200:     return '';
1.75      albertel 4201: }
1.157     albertel 4202: 
                   4203: sub scantron_upload_scantron_data {
                   4204:     my ($r)=@_;
                   4205:     $r->print(&Apache::loncommon::coursebrowser_javascript($ENV{'request.role.domain'}));
                   4206:     my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
                   4207: 							  'domainid');
                   4208:     my $domsel=&Apache::loncommon::select_dom_form($ENV{'request.role.domain'},
                   4209: 						   'domainid');
1.173     albertel 4210:     my $default_form_data=&defaultFormData(&get_symb_and_url($r,1));
1.157     albertel 4211:     $r->print(<<UPLOAD);
                   4212: <script type="text/javascript" language="javascript">
                   4213:     function checkUpload(formname) {
                   4214: 	if (formname.upfile.value == "") {
                   4215: 	    alert("Please use the browse button to select a file from your local directory.");
                   4216: 	    return false;
                   4217: 	}
                   4218: 	formname.submit();
                   4219:     }
                   4220: </script>
                   4221: 
                   4222: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
1.162     albertel 4223: $default_form_data
1.157     albertel 4224: Course: <input name='courseid' type='text' />
                   4225: Domain: $domsel $select_link
                   4226: <br />
                   4227: <input name='command' value='scantronupload_save' type='hidden' />
                   4228: File to upload:<input type="file" name="upfile" size="50" />
                   4229: <br />
                   4230: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
                   4231: </form>
                   4232: UPLOAD
                   4233:     return '';
                   4234: }
                   4235: 
                   4236: sub scantron_upload_scantron_data_save {
                   4237:     my($r)=@_;
1.162     albertel 4238:     if (!&Apache::lonnet::allowed('usc',$ENV{'form.domainid'}) &&
                   4239: 	!&Apache::lonnet::allowed('usc',
                   4240: 			    $ENV{'form.domainid'}.'_'.$ENV{'form.courseid'})) {
                   4241: 	$r->print("You are not allowed to upload Scantron data to the requested course.<br />");
                   4242: 	$r->print(&show_grading_menu_form(&get_symb_and_url($r)));
                   4243: 	return '';
                   4244:     }
                   4245:     $r->print("Doing upload to ".$ENV{'form.courseid'}." <br />");
1.157     albertel 4246:     my $home=&Apache::lonnet::homeserver($ENV{'form.courseid'},
                   4247: 					 $ENV{'form.domainid'});
                   4248:     my $fname=$ENV{'form.upfile.filename'};
                   4249:     #FIXME
                   4250:     #copied from lonnet::userfileupload()
                   4251:     #make that function able to target a specified course
                   4252:     # Replace Windows backslashes by forward slashes
                   4253:     $fname=~s/\\/\//g;
                   4254:     # Get rid of everything but the actual filename
                   4255:     $fname=~s/^.*\/([^\/]+)$/$1/;
                   4256:     # Replace spaces by underscores
                   4257:     $fname=~s/\s+/\_/g;
                   4258:     # Replace all other weird characters by nothing
                   4259:     $fname=~s/[^\w\.\-]//g;
                   4260:     # See if there is anything left
                   4261:     unless ($fname) { return 'error: no uploaded file'; }
                   4262:     $fname='scantron_orig_'.$fname;
                   4263:     $r->print(&Apache::lonnet::finishuserfileupload($ENV{'form.courseid'},
                   4264: 						    $ENV{'form.domainid'},
                   4265: 						    $home,'upfile',$fname));
1.174     albertel 4266:     my ($symb,$url)=&get_symb_and_url($r);
                   4267:     if ($symb) {
                   4268: 	$r->print(&show_grading_menu_form(&get_symb_and_url($r)));
                   4269:     } else {
                   4270: 	$r->print('<br /><form action="/adm/grades" method="post">'."\n".
                   4271: 		  '<input type="hidden" name="command" value="scantronupload" />'."\n".
                   4272: 		  '<input type="submit" name="submit" value="Do Another Upload" />'."\n".
                   4273: 		  '</form>'."\n");
                   4274:     }
1.157     albertel 4275:     return '';
                   4276: }
                   4277: 
                   4278: 
1.75      albertel 4279: #-------- end of section for handling grading scantron forms -------
                   4280: #
                   4281: #-------------------------------------------------------------------
                   4282: 
                   4283: 
1.72      ng       4284: #-------------------------- Menu interface -------------------------
                   4285: #
                   4286: #--- Show a Grading Menu button - Calls the next routine ---
                   4287: sub show_grading_menu_form {
                   4288:     my ($symb,$url)=@_;
1.125     ng       4289:     my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.72      ng       4290: 	'<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
                   4291: 	'<input type="hidden" name="url" value="'.$url.'" />'."\n".
1.77      ng       4292: 	'<input type="hidden" name="saveState"  value="'.$ENV{'form.saveState'}.'" />'."\n".
1.72      ng       4293: 	'<input type="hidden" name="command" value="gradingmenu" />'."\n".
                   4294: 	'<input type="submit" name="submit" value="Grading Menu" />'."\n".
                   4295: 	'</form>'."\n";
                   4296:     return $result;
                   4297: }
                   4298: 
1.77      ng       4299: # -- Retrieve choices for grading form
                   4300: sub savedState {
                   4301:     my %savedState = ();
                   4302:     if ($ENV{'form.saveState'}) {
                   4303: 	foreach (split(/:/,$ENV{'form.saveState'})) {
                   4304: 	    my ($key,$value) = split(/=/,$_,2);
                   4305: 	    $savedState{$key} = $value;
                   4306: 	}
                   4307:     }
                   4308:     return \%savedState;
                   4309: }
1.76      ng       4310: 
1.72      ng       4311: #--- Displays the main menu page -------
                   4312: sub gradingmenu {
                   4313:     my ($request) = @_;
                   4314:     my ($symb,$url)=&get_symb_and_url($request);
                   4315:     if (!$symb) {return '';}
1.76      ng       4316:     my $probTitle = &Apache::lonnet::gettitle($symb);
1.72      ng       4317: 
                   4318:     $request->print(<<GRADINGMENUJS);
                   4319: <script type="text/javascript" language="javascript">
1.116     ng       4320:     function checkChoice(formname,val,cmdx) {
                   4321: 	if (val <= 2) {
                   4322: 	    var cmd = radioSelection(formname.radioChoice);
1.118     ng       4323: 	    var cmdsave = cmd;
1.116     ng       4324: 	} else {
                   4325: 	    cmd = cmdx;
1.118     ng       4326: 	    cmdsave = 'submission';
1.116     ng       4327: 	}
                   4328: 	formname.command.value = cmd;
1.118     ng       4329: 	formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145     albertel 4330: 	    ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116     ng       4331: 	if (val < 5) formname.submit();
                   4332: 	if (val == 5) {
1.72      ng       4333: 	    if (!checkReceiptNo(formname,'notOK')) { return false;}
                   4334: 	    formname.submit();
                   4335: 	}
                   4336:     }
                   4337: 
                   4338:     function checkReceiptNo(formname,nospace) {
                   4339: 	var receiptNo = formname.receipt.value;
                   4340: 	var checkOpt = false;
                   4341: 	if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
                   4342: 	if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
                   4343: 	if (checkOpt) {
                   4344: 	    alert("Please enter a receipt number given by a student in the receipt box.");
                   4345: 	    formname.receipt.value = "";
                   4346: 	    formname.receipt.focus();
                   4347: 	    return false;
                   4348: 	}
                   4349: 	return true;
                   4350:     }
                   4351: </script>
                   4352: GRADINGMENUJS
1.118     ng       4353:     &commonJSfunctions($request);
                   4354:     my $result='<h3>&nbsp;<font color="#339933">Manual Grading/View Submission</font></h3>';
1.122     ng       4355:     my ($table,undef,$hdgrade) = &showResourceInfo($url,$probTitle);
1.118     ng       4356:     $result.=$table;
1.76      ng       4357:     my (undef,$sections) = &getclasslist('all','0');
1.77      ng       4358:     my $savedState = &savedState();
1.118     ng       4359:     my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77      ng       4360:     my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118     ng       4361:     my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77      ng       4362:     my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72      ng       4363: 
                   4364:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
                   4365: 	'<input type="hidden" name="symb"        value="'.$symb.'" />'."\n".
                   4366: 	'<input type="hidden" name="url"         value="'.$url.'" />'."\n".
                   4367: 	'<input type="hidden" name="handgrade"   value="'.$hdgrade.'" />'."\n".
                   4368: 	'<input type="hidden" name="probTitle"   value="'.$probTitle.'" />'."\n".
1.116     ng       4369: 	'<input type="hidden" name="command"     value="" />'."\n".
1.77      ng       4370: 	'<input type="hidden" name="saveState"   value="" />'."\n".
1.124     ng       4371: 	'<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72      ng       4372: 	'<input type="hidden" name="showgrading" value="yes" />'."\n";
                   4373: 
1.116     ng       4374:     $result.='<table width="100%" border=0><tr><td bgcolor=#777777>'."\n".
                   4375: 	'<table width=100% border=0><tr bgcolor="#e6ffff"><td colspan="2">'."\n".
1.72      ng       4376: 	'&nbsp;<b>Select a Grading/Viewing Option</b></td></tr>'."\n".
1.116     ng       4377: 	'<tr bgcolor="#ffffe6" valign="top"><td>'."\n";
                   4378: 
                   4379:     $result.='<table width="100%" border=0>';
                   4380:     $result.='<tr bgcolor="#ffffe6" valign="top"><td>'."\n".
1.167     sakharuk 4381: 	'&nbsp;'.&mt('Select Section').': <select name="section">'."\n";
1.116     ng       4382:     if (ref($sections)) {
1.155     albertel 4383: 	foreach (sort (@$sections)) {
                   4384: 	    $result.='<option value="'.$_.'" '.
                   4385: 		($saveSec eq $_ ? 'selected="on"':'').'>'.$_.'</option>'."\n";
                   4386: 	}
1.116     ng       4387:     }
                   4388:     $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="on"' : ''). '>all</select> &nbsp; ';
                   4389: 
1.167     sakharuk 4390:     $result.=&mt('Student Status').':</b>'.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,undef);
1.72      ng       4391: 
1.155     albertel 4392:     if (ref($sections) && (grep /no/,@$sections)) {
                   4393: 	$result.='&nbsp;(Section "no" implies the students were not assigned a section.)<br />';
1.116     ng       4394:     }
                   4395:     $result.='</td></tr>';
                   4396: 
1.118     ng       4397:     $result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
                   4398: 	'<input type="radio" name="radioChoice" value="submission" '.
1.167     sakharuk 4399: 	($saveCmd eq 'submission' ? 'checked' : '').'> '.'<b>'.&mt('Current Resource').':</b> '.&mt('For one or more students').
                   4400: 	' <select name="submitonly">'.
1.145     albertel 4401: 	'<option value="yes" '.
                   4402: 	($saveSub eq 'yes' ? 'selected="on"' : '').'>with submissions</option>'.
                   4403: 	'<option value="graded" '.
                   4404: 	($saveSub eq 'graded' ? 'selected="on"' : '').'>with ungraded submissions</option>'.
1.156     albertel 4405: 	'<option value="incorrect" '.
                   4406: 	($saveSub eq 'incorrect' ? 'selected="on"' : '').'>with incorrect submissions</option>'.
1.145     albertel 4407: 	'<option value="all" '.
                   4408: 	($saveSub eq 'all' ? 'selected="on"' : '').'>with any status</option></select></td></tr>'."\n";
1.72      ng       4409: 
1.116     ng       4410:     $result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
                   4411: 	'<input type="radio" name="radioChoice" value="viewgrades" '.
1.76      ng       4412: 	($saveCmd eq 'viewgrades' ? 'checked' : '').'> '.
1.118     ng       4413: 	'<b>Current Resource:</b> For all students in selected section or course</td></tr>'."\n";
1.72      ng       4414: 
1.118     ng       4415:     $result.='<tr bgcolor="#ffffe6" valign="top"><td>'.
                   4416: 	'<input type="radio" name="radioChoice" value="pickStudentPage" '.
                   4417: 	($saveCmd eq 'pickStudentPage' ? 'checked' : '').'> '.
                   4418: 	'The <b>complete</b> set/page/sequence: For one student</td></tr>'."\n";
1.46      ng       4419: 
1.116     ng       4420:     $result.='<tr bgcolor="#ffffe6"><td><br />'.
1.126     ng       4421: 	'<input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="Next->" />'.
1.116     ng       4422: 	'</td></tr></table>'."\n";
                   4423: 
                   4424:     $result.='</td><td valign="top">';
                   4425: 
                   4426:     $result.='<table width="100%" border=0>';
                   4427:     $result.='<tr bgcolor="#ffffe6"><td>'.
                   4428: 	'<input type="button" onClick="javascript:checkChoice(this.form,\'3\',\'csvform\');" value="Upload" />'.
                   4429: 	' scores from file </td></tr>'."\n";
1.72      ng       4430: 
1.75      albertel 4431:     $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
1.116     ng       4432: 	'<input type="button" onClick="javascript:checkChoice(this.form,\'4\',\'scantron_selectphase\');'.
                   4433: 	'" value="Grade" /> scantron forms</td></tr>'."\n";
1.75      albertel 4434: 
1.72      ng       4435:     if ((&Apache::lonnet::allowed('mgr',$ENV{'request.course.id'})) && ($symb)) {
                   4436: 	$result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
1.116     ng       4437: 	    '<input type="button" onClick="javascript:checkChoice(this.form,\'5\',\'verify\');" value="Verify" />'.
                   4438: 	    ' submission Receipt no: '.unpack("%32C*",$Apache::lonnet::perlvar{'lonHostID'}).
1.72      ng       4439: 	    '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')">'.
                   4440: 	    '</td></tr>'."\n";
                   4441:     } 
1.44      ng       4442: 
1.116     ng       4443:     $result.='</form></td></tr></table>'."\n".
1.72      ng       4444: 	'</td></tr></table>'."\n".
                   4445: 	'</td></tr></table>'."\n";
1.44      ng       4446:     return $result;
1.2       albertel 4447: }
                   4448: 
1.1       albertel 4449: sub handler {
1.41      ng       4450:     my $request=$_[0];
1.102     albertel 4451: 
1.103     albertel 4452:     undef(%perm);
1.41      ng       4453:     if ($ENV{'browser.mathml'}) {
1.141     www      4454: 	&Apache::loncommon::content_type($request,'text/xml');
1.41      ng       4455:     } else {
1.141     www      4456: 	&Apache::loncommon::content_type($request,'text/html');
1.41      ng       4457:     }
                   4458:     $request->send_http_header;
1.44      ng       4459:     return '' if $request->header_only;
1.41      ng       4460:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
                   4461:     my $url=$ENV{'form.url'};
                   4462:     my $symb=$ENV{'form.symb'};
1.160     albertel 4463:     my @commands=&Apache::loncommon::get_env_multiple('form.command');
                   4464:     my $command=$commands[0];
                   4465:     if ($#commands > 0) {
                   4466: 	&Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
                   4467:     }
1.41      ng       4468:     if (!$url) {
                   4469: 	my ($temp1,$temp2);
1.136     www      4470: 	($temp1,$temp2,$ENV{'form.url'})=&Apache::lonnet::decode_symb($symb);
1.41      ng       4471: 	$url = $ENV{'form.url'};
                   4472:     }
                   4473:     &send_header($request);
1.157     albertel 4474:     if ($url eq '' && $symb eq '' && $command eq '') {
1.41      ng       4475: 	if ($ENV{'user.adv'}) {
                   4476: 	    if (($ENV{'form.codeone'}) && ($ENV{'form.codetwo'}) &&
                   4477: 		($ENV{'form.codethree'})) {
                   4478: 		my $token=$ENV{'form.codeone'}.'*'.$ENV{'form.codetwo'}.'*'.
                   4479: 		    $ENV{'form.codethree'};
                   4480: 		my ($tsymb,$tuname,$tudom,$tcrsid)=
                   4481: 		    &Apache::lonnet::checkin($token);
                   4482: 		if ($tsymb) {
1.137     albertel 4483: 		    my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41      ng       4484: 		    if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.99      albertel 4485: 			$request->print(&Apache::lonnet::ssi_body('/res/'.$url,
                   4486: 					  ('grade_username' => $tuname,
                   4487: 					   'grade_domain' => $tudom,
                   4488: 					   'grade_courseid' => $tcrsid,
                   4489: 					   'grade_symb' => $tsymb)));
1.41      ng       4490: 		    } else {
1.45      ng       4491: 			$request->print('<h3>Not authorized: '.$token.'</h3>');
1.99      albertel 4492: 		    }
1.41      ng       4493: 		} else {
1.45      ng       4494: 		    $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41      ng       4495: 		}
1.14      www      4496: 	    } else {
1.41      ng       4497: 		$request->print(&Apache::lonxml::tokeninputfield());
                   4498: 	    }
                   4499: 	}
                   4500:     } else {
1.103     albertel 4501: 	if (!($perm{'vgr'}=&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'}))) {
                   4502: 	    if ($perm{'vgr'}=&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'}.'/'.$ENV{'request.course.sec'})) {
                   4503: 		$perm{'vgr_section'}=$ENV{'request.course.sec'};
1.102     albertel 4504: 	    } else {
1.103     albertel 4505: 		delete($perm{'vgr'});
1.102     albertel 4506: 	    }
                   4507: 	}
1.103     albertel 4508: 	if (!($perm{'mgr'}=&Apache::lonnet::allowed('mgr',$ENV{'request.course.id'}))) {
                   4509: 	    if ($perm{'mgr'}=&Apache::lonnet::allowed('mgr',$ENV{'request.course.id'}.'/'.$ENV{'request.course.sec'})) {
                   4510: 		$perm{'mgr_section'}=$ENV{'request.course.sec'};
1.102     albertel 4511: 	    } else {
1.103     albertel 4512: 		delete($perm{'mgr'});
1.102     albertel 4513: 	    }
                   4514: 	}
1.104     albertel 4515: 	if ($command eq 'submission' && $perm{'vgr'}) {
1.68      ng       4516: 	    ($ENV{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.103     albertel 4517: 	} elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68      ng       4518: 	    &pickStudentPage($request);
1.103     albertel 4519: 	} elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68      ng       4520: 	    &displayPage($request);
1.104     albertel 4521: 	} elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71      ng       4522: 	    &updateGradeByPage($request);
1.104     albertel 4523: 	} elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41      ng       4524: 	    &processGroup($request);
1.104     albertel 4525: 	} elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.41      ng       4526: 	    $request->print(&gradingmenu($request));
1.104     albertel 4527: 	} elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41      ng       4528: 	    $request->print(&viewgrades($request));
1.104     albertel 4529: 	} elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41      ng       4530: 	    $request->print(&processHandGrade($request));
1.106     albertel 4531: 	} elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41      ng       4532: 	    $request->print(&editgrades($request));
1.106     albertel 4533: 	} elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41      ng       4534: 	    $request->print(&verifyreceipt($request));
1.106     albertel 4535: 	} elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72      ng       4536: 	    $request->print(&upcsvScores_form($request));
1.106     albertel 4537: 	} elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41      ng       4538: 	    $request->print(&csvupload($request));
1.106     albertel 4539: 	} elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41      ng       4540: 	    $request->print(&csvuploadmap($request));
1.106     albertel 4541: 	} elsif ($command eq 'csvuploadassign' && $perm{'mgr'}) {
1.41      ng       4542: 	    if ($ENV{'form.associate'} ne 'Reverse Association') {
                   4543: 		$request->print(&csvuploadassign($request));
                   4544: 	    } else {
                   4545: 		if ( $ENV{'form.upfile_associate'} ne 'reverse' ) {
                   4546: 		    $ENV{'form.upfile_associate'} = 'reverse';
                   4547: 		} else {
                   4548: 		    $ENV{'form.upfile_associate'} = 'forward';
                   4549: 		}
                   4550: 		$request->print(&csvuploadmap($request));
                   4551: 	    }
1.106     albertel 4552: 	} elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75      albertel 4553: 	    $request->print(&scantron_selectphase($request));
1.157     albertel 4554:  	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
                   4555:  	    $request->print(&scantron_validate_file($request));
1.142     albertel 4556: 	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
                   4557: 	    $request->print(&scantron_validate_file($request));
1.106     albertel 4558: 	} elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82      albertel 4559: 	    $request->print(&scantron_process_students($request));
1.157     albertel 4560:  	} elsif ($command eq 'scantronupload' && 
1.162     albertel 4561:  		 (&Apache::lonnet::allowed('usc',$ENV{'request.role.domain'})||
                   4562: 		  &Apache::lonnet::allowed('usc',$ENV{'request.course.id'}))) {
                   4563:  	    $request->print(&scantron_upload_scantron_data($request)); 
1.157     albertel 4564:  	} elsif ($command eq 'scantronupload_save' &&
1.162     albertel 4565:  		 (&Apache::lonnet::allowed('usc',$ENV{'request.role.domain'})||
                   4566: 		  &Apache::lonnet::allowed('usc',$ENV{'request.course.id'}))) {
1.157     albertel 4567:  	    $request->print(&scantron_upload_scantron_data_save($request));
1.162     albertel 4568:  	} elsif ($command eq 'scantrondownload' &&
                   4569: 		 &Apache::lonnet::allowed('usc',$ENV{'request.course.id'})) {
                   4570:  	    $request->print(&scantron_download_scantron_data($request));
1.106     albertel 4571: 	} elsif ($command) {
1.157     albertel 4572: 	    $request->print("Access Denied ($command)");
1.26      albertel 4573: 	}
1.2       albertel 4574:     }
1.41      ng       4575:     &send_footer($request);
1.44      ng       4576:     return '';
                   4577: }
                   4578: 
                   4579: sub send_header {
                   4580:     my ($request)= @_;
                   4581:     $request->print(&Apache::lontexconvert::header());
                   4582: #  $request->print("
                   4583: #<script>
                   4584: #remotewindow=open('','homeworkremote');
                   4585: #remotewindow.close();
                   4586: #</script>"); 
1.47      www      4587:     $request->print(&Apache::loncommon::bodytag('Grading'));
1.157     albertel 4588:     $request->rflush();
1.44      ng       4589: }
                   4590: 
                   4591: sub send_footer {
                   4592:     my ($request)= @_;
                   4593:     $request->print('</body>');
                   4594:     $request->print(&Apache::lontexconvert::footer());
1.1       albertel 4595: }
                   4596: 
                   4597: 1;
                   4598: 
1.13      albertel 4599: __END__;

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