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

1.17      albertel    1: # The LearningOnline Network with CAPA
1.13      albertel    2: # The LON-CAPA Grading handler
1.17      albertel    3: #
1.481   ! foxr        4: # $Id: grades.pm,v 1.480 2007/11/05 11:46:08 foxr Exp $
1.17      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.1       albertel   28: 
                     29: package Apache::grades;
                     30: use strict;
                     31: use Apache::style;
                     32: use Apache::lonxml;
                     33: use Apache::lonnet;
1.3       albertel   34: use Apache::loncommon;
1.112     ng         35: use Apache::lonhtmlcommon;
1.68      ng         36: use Apache::lonnavmaps;
1.1       albertel   37: use Apache::lonhomework;
1.456     banghart   38: use Apache::lonpickcode;
1.55      matthew    39: use Apache::loncoursedata;
1.362     albertel   40: use Apache::lonmsg();
1.1       albertel   41: use Apache::Constants qw(:common);
1.167     sakharuk   42: use Apache::lonlocal;
1.386     raeburn    43: use Apache::lonenc;
1.170     albertel   44: use String::Similarity;
1.359     www        45: use LONCAPA;
                     46: 
1.315     bowersj2   47: use POSIX qw(floor);
1.87      www        48: 
1.435     foxr       49: 
                     50: my %perm=();
1.447     foxr       51: my %bubble_lines_per_response = ();     # no. bubble lines for each response.
1.435     foxr       52:                                    # index is "symb.part_id"
                     53: 
1.447     foxr       54: my %first_bubble_line = ();	# First bubble line no. for each bubble.
                     55: 
                     56: # Save and restore the bubble lines array to the form env.
                     57: 
                     58: 
                     59: sub save_bubble_lines {
                     60:     foreach my $line (keys(%bubble_lines_per_response)) {
                     61: 	$env{"form.scantron.bubblelines.$line"}  = $bubble_lines_per_response{$line};
                     62: 	$env{"form.scantron.first_bubble_line.$line"} =
                     63: 	    $first_bubble_line{$line};
                     64:     }
                     65: }
                     66: 
                     67: 
                     68: sub restore_bubble_lines {
                     69:     my $line = 0;
                     70:     %bubble_lines_per_response = ();
                     71:     while ($env{"form.scantron.bubblelines.$line"}) {
                     72: 	my $value = $env{"form.scantron.bubblelines.$line"};
                     73: 	$bubble_lines_per_response{$line} = $value;
                     74: 	$first_bubble_line{$line}  =
                     75: 	    $env{"form.scantron.first_bubble_line.$line"};
                     76: 	$line++;
                     77:     }
                     78: 
                     79: }
                     80: 
                     81: #  Given the parsed scanline, get the response for 
                     82: #  'answer' number n:
                     83: 
                     84: sub get_response_bubbles {
                     85:     my ($parsed_line, $response)  = @_;
                     86: 
1.460     foxr       87: 
                     88:     my $bubble_line = $first_bubble_line{$response-1} +1;
                     89:     my $bubble_lines= $bubble_lines_per_response{$response-1};
                     90:     
1.447     foxr       91:     my $selected = "";
                     92: 
                     93:     for (my $bline = 0; $bline < $bubble_lines; $bline++) {
1.461     foxr       94: 	$selected .= $$parsed_line{"scantron.$bubble_line.answer"}.":";
1.447     foxr       95: 	$bubble_line++;
                     96:     }
                     97:     return $selected;
                     98: }
                     99: 
1.1       albertel  100: 
1.68      ng        101: # ----- These first few routines are general use routines.----
1.447     foxr      102: 
                    103: # Return the number of occurences of a pattern in a string.
                    104: 
                    105: sub occurence_count {
                    106:     my ($string, $pattern) = @_;
                    107: 
                    108:     my @matches = ($string =~ /$pattern/g);
                    109: 
                    110:     return scalar(@matches);
                    111: }
                    112: 
                    113: 
                    114: # Take a string known to have digits and convert all the
                    115: # digits into letters in the range J,A..I.
                    116: 
                    117: sub digits_to_letters {
                    118:     my ($input) = @_;
                    119: 
                    120:     my @alphabet = ('J', 'A'..'I');
                    121: 
                    122:     my @input    = split(//, $input);
                    123:     my $output ='';
                    124:     for (my $i = 0; $i < scalar(@input); $i++) {
                    125: 	if ($input[$i] =~ /\d/) {
                    126: 	    $output .= $alphabet[$input[$i]];
                    127: 	} else {
                    128: 	    $output .= $input[$i];
                    129: 	}
                    130:     }
                    131:     return $output;
                    132: }
                    133: 
1.44      ng        134: #
1.146     albertel  135: # --- Retrieve the parts from the metadata file.---
1.44      ng        136: sub getpartlist {
1.324     albertel  137:     my ($symb) = @_;
1.439     albertel  138: 
                    139:     my $navmap   = Apache::lonnavmaps::navmap->new();
                    140:     my $res      = $navmap->getBySymb($symb);
                    141:     my $partlist = $res->parts();
                    142:     my $url      = $res->src();
                    143:     my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
                    144: 
1.146     albertel  145:     my @stores;
1.439     albertel  146:     foreach my $part (@{ $partlist }) {
1.146     albertel  147: 	foreach my $key (@metakeys) {
                    148: 	    if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
                    149: 	}
                    150:     }
                    151:     return @stores;
1.2       albertel  152: }
                    153: 
1.44      ng        154: # --- Get the symbolic name of a problem and the url
1.324     albertel  155: sub get_symb {
1.173     albertel  156:     my ($request,$silent) = @_;
1.257     albertel  157:     (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
                    158:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
1.173     albertel  159:     if ($symb eq '') { 
                    160: 	if (!$silent) {
                    161: 	    $request->print("Unable to handle ambiguous references:$url:.");
                    162: 	    return ();
                    163: 	}
                    164:     }
1.418     albertel  165:     &Apache::lonenc::check_decrypt(\$symb);
1.324     albertel  166:     return ($symb);
1.32      ng        167: }
                    168: 
1.129     ng        169: #--- Format fullname, username:domain if different for display
                    170: #--- Use anywhere where the student names are listed
                    171: sub nameUserString {
                    172:     my ($type,$fullname,$uname,$udom) = @_;
                    173:     if ($type eq 'header') {
1.398     albertel  174: 	return '<b>&nbsp;Fullname&nbsp;</b><span class="LC_internal_info">(Username)</span>';
1.129     ng        175:     } else {
1.398     albertel  176: 	return '&nbsp;'.$fullname.'<span class="LC_internal_info">&nbsp;('.$uname.
                    177: 	    ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129     ng        178:     }
                    179: }
                    180: 
1.44      ng        181: #--- Get the partlist and the response type for a given problem. ---
                    182: #--- Indicate if a response type is coded handgraded or not. ---
1.39      ng        183: sub response_type {
1.324     albertel  184:     my ($symb) = shift;
1.377     albertel  185: 
                    186:     my $navmap = Apache::lonnavmaps::navmap->new();
                    187:     my $res = $navmap->getBySymb($symb);
                    188:     my $partlist = $res->parts();
1.392     albertel  189:     my %vPart = 
                    190: 	map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377     albertel  191:     my (%response_types,%handgrade);
                    192:     foreach my $part (@{ $partlist }) {
1.392     albertel  193: 	next if (%vPart && !exists($vPart{$part}));
                    194: 
1.377     albertel  195: 	my @types = $res->responseType($part);
                    196: 	my @ids = $res->responseIds($part);
                    197: 	for (my $i=0; $i < scalar(@ids); $i++) {
                    198: 	    $response_types{$part}{$ids[$i]} = $types[$i];
                    199: 	    $handgrade{$part.'_'.$ids[$i]} = 
                    200: 		&Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
                    201: 				     '.handgrade',$symb);
1.41      ng        202: 	}
                    203:     }
1.377     albertel  204:     return ($partlist,\%handgrade,\%response_types);
1.39      ng        205: }
                    206: 
1.375     albertel  207: sub flatten_responseType {
                    208:     my ($responseType) = @_;
                    209:     my @part_response_id =
                    210: 	map { 
                    211: 	    my $part = $_;
                    212: 	    map {
                    213: 		[$part,$_]
                    214: 		} sort(keys(%{ $responseType->{$part} }));
                    215: 	} sort(keys(%$responseType));
                    216:     return @part_response_id;
                    217: }
                    218: 
1.207     albertel  219: sub get_display_part {
1.324     albertel  220:     my ($partID,$symb)=@_;
1.207     albertel  221:     my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
                    222:     if (defined($display) and $display ne '') {
1.398     albertel  223: 	$display.= " (<span class=\"LC_internal_info\">id $partID</span>)";
1.207     albertel  224:     } else {
                    225: 	$display=$partID;
                    226:     }
                    227:     return $display;
                    228: }
1.269     raeburn   229: 
1.118     ng        230: #--- Show resource title
                    231: #--- and parts and response type
                    232: sub showResourceInfo {
1.324     albertel  233:     my ($symb,$probTitle,$checkboxes) = @_;
1.154     albertel  234:     my $col=3;
                    235:     if ($checkboxes) { $col=4; }
1.398     albertel  236:     my $result = '<h3>'.&mt('Current Resource').': '.$probTitle.'</h3>'."\n";
                    237:     $result .='<table border="0">';
1.324     albertel  238:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.126     ng        239:     my %resptype = ();
1.122     ng        240:     my $hdgrade='no';
1.154     albertel  241:     my %partsseen;
1.375     albertel  242:     foreach my $partID (sort keys(%$responseType)) {
                    243: 	foreach my $resID (sort keys(%{ $responseType->{$partID} })) {
                    244: 	    my $handgrade=$$handgrade{$partID.'_'.$resID};
                    245: 	    my $responsetype = $responseType->{$partID}->{$resID};
                    246: 	    $hdgrade = $handgrade if ($handgrade eq 'yes');
                    247: 	    $result.='<tr>';
                    248: 	    if ($checkboxes) {
                    249: 		if (exists($partsseen{$partID})) {
                    250: 		    $result.="<td>&nbsp;</td>";
                    251: 		} else {
1.401     albertel  252: 		    $result.="<td><input type='checkbox' name='vPart' value='$partID' checked='checked' /></td>";
1.375     albertel  253: 		}
                    254: 		$partsseen{$partID}=1;
1.154     albertel  255: 	    }
1.375     albertel  256: 	    my $display_part=&get_display_part($partID,$symb);
1.398     albertel  257: 	    $result.='<td><b>Part: </b>'.$display_part.' <span class="LC_internal_info">'.
                    258: 		$resID.'</span></td>'.
1.375     albertel  259: 		'<td><b>Type: </b>'.$responsetype.'</td></tr>';
                    260: #	    '<td><b>Handgrade: </b>'.$handgrade.'</td></tr>';
1.154     albertel  261: 	}
1.118     ng        262:     }
                    263:     $result.='</table>'."\n";
1.147     albertel  264:     return $result,$responseType,$hdgrade,$partlist,$handgrade;
1.118     ng        265: }
                    266: 
1.434     albertel  267: sub reset_caches {
                    268:     &reset_analyze_cache();
                    269:     &reset_perm();
                    270: }
                    271: 
                    272: {
                    273:     my %analyze_cache;
1.148     albertel  274: 
1.434     albertel  275:     sub reset_analyze_cache {
                    276: 	undef(%analyze_cache);
                    277:     }
                    278: 
                    279:     sub get_analyze {
                    280: 	my ($symb,$uname,$udom)=@_;
                    281: 	my $key = "$symb\0$uname\0$udom";
                    282: 	return $analyze_cache{$key} if (exists($analyze_cache{$key}));
                    283: 
                    284: 	my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
                    285: 	$url=&Apache::lonnet::clutter($url);
                    286: 	my $subresult=&Apache::lonnet::ssi($url,
                    287: 					   ('grade_target' => 'analyze'),
                    288: 					   ('grade_domain' => $udom),
                    289: 					   ('grade_symb' => $symb),
                    290: 					   ('grade_courseid' => 
                    291: 					    $env{'request.course.id'}),
                    292: 					   ('grade_username' => $uname));
                    293: 	(undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
                    294: 	my %analyze=&Apache::lonnet::str2hash($subresult);
                    295: 	return $analyze_cache{$key} = \%analyze;
                    296:     }
                    297: 
                    298:     sub get_order {
                    299: 	my ($partid,$respid,$symb,$uname,$udom)=@_;
                    300: 	my $analyze = &get_analyze($symb,$uname,$udom);
                    301: 	return $analyze->{"$partid.$respid.shown"};
                    302:     }
                    303: 
                    304:     sub get_radiobutton_correct_foil {
                    305: 	my ($partid,$respid,$symb,$uname,$udom)=@_;
                    306: 	my $analyze = &get_analyze($symb,$uname,$udom);
                    307: 	foreach my $foil (@{&get_order($partid,$respid,$symb,$uname,$udom)}) {
                    308: 	    if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
                    309: 		return $foil;
                    310: 	    }
                    311: 	}
                    312:     }
1.148     albertel  313: }
1.434     albertel  314: 
1.118     ng        315: #--- Clean response type for display
1.335     albertel  316: #--- Currently filters option/rank/radiobutton/match/essay/Task
                    317: #        response types only.
1.118     ng        318: sub cleanRecord {
1.336     albertel  319:     my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
                    320: 	$uname,$udom) = @_;
1.398     albertel  321:     my $grayFont = '<span class="LC_internal_info">';
1.148     albertel  322:     if ($response =~ /^(option|rank)$/) {
                    323: 	my %answer=&Apache::lonnet::str2hash($answer);
                    324: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    325: 	my ($toprow,$bottomrow);
                    326: 	foreach my $foil (@$order) {
                    327: 	    if ($grading{$foil} == 1) {
                    328: 		$toprow.='<td><b>'.$answer{$foil}.'&nbsp;</b></td>';
                    329: 	    } else {
                    330: 		$toprow.='<td><i>'.$answer{$foil}.'&nbsp;</i></td>';
                    331: 	    }
1.398     albertel  332: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
1.148     albertel  333: 	}
                    334: 	return '<blockquote><table border="1">'.
1.466     albertel  335: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
                    336: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148     albertel  337: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
                    338:     } elsif ($response eq 'match') {
                    339: 	my %answer=&Apache::lonnet::str2hash($answer);
                    340: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    341: 	my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
                    342: 	my ($toprow,$middlerow,$bottomrow);
                    343: 	foreach my $foil (@$order) {
                    344: 	    my $item=shift(@items);
                    345: 	    if ($grading{$foil} == 1) {
                    346: 		$toprow.='<td><b>'.$item.'&nbsp;</b></td>';
1.398     albertel  347: 		$middlerow.='<td><b>'.$grayFont.$answer{$foil}.'&nbsp;</span></b></td>';
1.148     albertel  348: 	    } else {
                    349: 		$toprow.='<td><i>'.$item.'&nbsp;</i></td>';
1.398     albertel  350: 		$middlerow.='<td><i>'.$grayFont.$answer{$foil}.'&nbsp;</span></i></td>';
1.148     albertel  351: 	    }
1.398     albertel  352: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
1.118     ng        353: 	}
1.126     ng        354: 	return '<blockquote><table border="1">'.
1.466     albertel  355: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
                    356: 	    '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148     albertel  357: 	    $middlerow.'</tr>'.
1.466     albertel  358: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148     albertel  359: 	    $bottomrow.'</tr>'.'</table></blockquote>';
                    360:     } elsif ($response eq 'radiobutton') {
                    361: 	my %answer=&Apache::lonnet::str2hash($answer);
                    362: 	my ($toprow,$bottomrow);
1.434     albertel  363: 	my $correct = 
                    364: 	    &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom);
                    365: 	foreach my $foil (@$order) {
1.148     albertel  366: 	    if (exists($answer{$foil})) {
1.434     albertel  367: 		if ($foil eq $correct) {
1.466     albertel  368: 		    $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148     albertel  369: 		} else {
1.466     albertel  370: 		    $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148     albertel  371: 		}
                    372: 	    } else {
1.466     albertel  373: 		$toprow.='<td>'.&mt('false').'</td>';
1.148     albertel  374: 	    }
1.398     albertel  375: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
1.148     albertel  376: 	}
                    377: 	return '<blockquote><table border="1">'.
1.466     albertel  378: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
                    379: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148     albertel  380: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
                    381:     } elsif ($response eq 'essay') {
1.257     albertel  382: 	if (! exists ($env{'form.'.$symb})) {
1.122     ng        383: 	    my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257     albertel  384: 						  $env{'course.'.$env{'request.course.id'}.'.domain'},
                    385: 						  $env{'course.'.$env{'request.course.id'}.'.num'});
1.122     ng        386: 
1.257     albertel  387: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
                    388: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                    389: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                    390: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                    391: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                    392: 	    $env{'form.'.$symb} = 1; # so that we don't have to read it from disk for multiple sub of the same prob.
1.122     ng        393: 	}
1.166     albertel  394: 	$answer =~ s-\n-<br />-g;
                    395: 	return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268     albertel  396:     } elsif ( $response eq 'organic') {
                    397: 	my $result='Smile representation: "<tt>'.$answer.'</tt>"';
                    398: 	my $jme=$record->{$version."resource.$partid.$respid.molecule"};
                    399: 	$result.=&Apache::chemresponse::jme_img($jme,$answer,400);
                    400: 	return $result;
1.335     albertel  401:     } elsif ( $response eq 'Task') {
                    402: 	if ( $answer eq 'SUBMITTED') {
                    403: 	    my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336     albertel  404: 	    my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335     albertel  405: 	    return $result;
                    406: 	} elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
                    407: 	    my @matches = grep(/^\Q$version\E.*?\.instance$/,
                    408: 			       keys(%{$record}));
                    409: 	    return join('<br />',($version,@matches));
                    410: 			       
                    411: 			       
                    412: 	} else {
                    413: 	    my $result =
                    414: 		'<p>'
                    415: 		.&mt('Overall result: [_1]',
                    416: 		     $record->{$version."resource.$respid.$partid.status"})
                    417: 		.'</p>';
                    418: 	    
                    419: 	    $result .= '<ul>';
                    420: 	    my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
                    421: 			     keys(%{$record}));
                    422: 	    foreach my $grade (sort(@grade)) {
                    423: 		my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
                    424: 		$result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
                    425: 				     $dim, $record->{$grade}).
                    426: 			  '</li>';
                    427: 	    }
                    428: 	    $result.='</ul>';
                    429: 	    return $result;
                    430: 	}
1.440     albertel  431:     } elsif ( $response =~ m/(?:numerical|formula)/) {
                    432: 	$answer = 
                    433: 	    &Apache::loncommon::format_previous_attempt_value('submission',
                    434: 							      $answer);
1.122     ng        435:     }
1.118     ng        436:     return $answer;
                    437: }
                    438: 
                    439: #-- A couple of common js functions
                    440: sub commonJSfunctions {
                    441:     my $request = shift;
                    442:     $request->print(<<COMMONJSFUNCTIONS);
                    443: <script type="text/javascript" language="javascript">
                    444:     function radioSelection(radioButton) {
                    445: 	var selection=null;
                    446: 	if (radioButton.length > 1) {
                    447: 	    for (var i=0; i<radioButton.length; i++) {
                    448: 		if (radioButton[i].checked) {
                    449: 		    return radioButton[i].value;
                    450: 		}
                    451: 	    }
                    452: 	} else {
                    453: 	    if (radioButton.checked) return radioButton.value;
                    454: 	}
                    455: 	return selection;
                    456:     }
                    457: 
                    458:     function pullDownSelection(selectOne) {
                    459: 	var selection="";
                    460: 	if (selectOne.length > 1) {
                    461: 	    for (var i=0; i<selectOne.length; i++) {
                    462: 		if (selectOne[i].selected) {
                    463: 		    return selectOne[i].value;
                    464: 		}
                    465: 	    }
                    466: 	} else {
1.138     albertel  467:             // only one value it must be the selected one
                    468: 	    return selectOne.value;
1.118     ng        469: 	}
                    470:     }
                    471: </script>
                    472: COMMONJSFUNCTIONS
                    473: }
                    474: 
1.44      ng        475: #--- Dumps the class list with usernames,list of sections,
                    476: #--- section, ids and fullnames for each user.
                    477: sub getclasslist {
1.449     banghart  478:     my ($getsec,$filterlist,$getgroup) = @_;
1.291     albertel  479:     my @getsec;
1.450     banghart  480:     my @getgroup;
1.442     banghart  481:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291     albertel  482:     if (!ref($getsec)) {
                    483: 	if ($getsec ne '' && $getsec ne 'all') {
                    484: 	    @getsec=($getsec);
                    485: 	}
                    486:     } else {
                    487: 	@getsec=@{$getsec};
                    488:     }
                    489:     if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450     banghart  490:     if (!ref($getgroup)) {
                    491: 	if ($getgroup ne '' && $getgroup ne 'all') {
                    492: 	    @getgroup=($getgroup);
                    493: 	}
                    494:     } else {
                    495: 	@getgroup=@{$getgroup};
                    496:     }
                    497:     if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291     albertel  498: 
1.449     banghart  499:     my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49      albertel  500:     # Bail out if we were unable to get the classlist
1.56      matthew   501:     return if (! defined($classlist));
1.449     banghart  502:     &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56      matthew   503:     #
                    504:     my %sections;
                    505:     my %fullnames;
1.205     matthew   506:     foreach my $student (keys(%$classlist)) {
                    507:         my $end      = 
                    508:             $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
                    509:         my $start    = 
                    510:             $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
                    511:         my $id       = 
                    512:             $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
                    513:         my $section  = 
                    514:             $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
                    515:         my $fullname = 
                    516:             $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
                    517:         my $status   = 
                    518:             $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449     banghart  519:         my $group   = 
                    520:             $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76      ng        521: 	# filter students according to status selected
1.442     banghart  522: 	if ($filterlist && (!($stu_status =~ /Any/))) {
                    523: 	    if (!($stu_status =~ $status)) {
1.450     banghart  524: 		delete($classlist->{$student});
1.76      ng        525: 		next;
                    526: 	    }
                    527: 	}
1.450     banghart  528: 	# filter students according to groups selected
1.453     banghart  529: 	my @stu_groups = split(/,/,$group);
1.450     banghart  530: 	if (@getgroup) {
                    531: 	    my $exclude = 1;
1.454     banghart  532: 	    foreach my $grp (@getgroup) {
                    533: 	        foreach my $stu_group (@stu_groups) {
1.453     banghart  534: 	            if ($stu_group eq $grp) {
                    535: 	                $exclude = 0;
                    536:     	            } 
1.450     banghart  537: 	        }
1.453     banghart  538:     	        if (($grp eq 'none') && !$group) {
                    539:         	        $exclude = 0;
                    540:         	}
1.450     banghart  541: 	    }
                    542: 	    if ($exclude) {
                    543: 	        delete($classlist->{$student});
                    544: 	    }
                    545: 	}
1.205     matthew   546: 	$section = ($section ne '' ? $section : 'none');
1.106     albertel  547: 	if (&canview($section)) {
1.291     albertel  548: 	    if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103     albertel  549: 		$sections{$section}++;
1.450     banghart  550: 		if ($classlist->{$student}) {
                    551: 		    $fullnames{$student}=$fullname;
                    552: 		}
1.103     albertel  553: 	    } else {
1.205     matthew   554: 		delete($classlist->{$student});
1.103     albertel  555: 	    }
                    556: 	} else {
1.205     matthew   557: 	    delete($classlist->{$student});
1.103     albertel  558: 	}
1.44      ng        559:     }
                    560:     my %seen = ();
1.56      matthew   561:     my @sections = sort(keys(%sections));
                    562:     return ($classlist,\@sections,\%fullnames);
1.44      ng        563: }
                    564: 
1.103     albertel  565: sub canmodify {
                    566:     my ($sec)=@_;
                    567:     if ($perm{'mgr'}) {
                    568: 	if (!defined($perm{'mgr_section'})) {
                    569: 	    # can modify whole class
                    570: 	    return 1;
                    571: 	} else {
                    572: 	    if ($sec eq $perm{'mgr_section'}) {
                    573: 		#can modify the requested section
                    574: 		return 1;
                    575: 	    } else {
                    576: 		# can't modify the request section
                    577: 		return 0;
                    578: 	    }
                    579: 	}
                    580:     }
                    581:     #can't modify
                    582:     return 0;
                    583: }
                    584: 
                    585: sub canview {
                    586:     my ($sec)=@_;
                    587:     if ($perm{'vgr'}) {
                    588: 	if (!defined($perm{'vgr_section'})) {
                    589: 	    # can modify whole class
                    590: 	    return 1;
                    591: 	} else {
                    592: 	    if ($sec eq $perm{'vgr_section'}) {
                    593: 		#can modify the requested section
                    594: 		return 1;
                    595: 	    } else {
                    596: 		# can't modify the request section
                    597: 		return 0;
                    598: 	    }
                    599: 	}
                    600:     }
                    601:     #can't modify
                    602:     return 0;
                    603: }
                    604: 
1.44      ng        605: #--- Retrieve the grade status of a student for all the parts
                    606: sub student_gradeStatus {
1.324     albertel  607:     my ($symb,$udom,$uname,$partlist) = @_;
1.257     albertel  608:     my %record     = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44      ng        609:     my %partstatus = ();
                    610:     foreach (@$partlist) {
1.128     ng        611: 	my ($status,undef)   = split(/_/,$record{"resource.$_.solved"},2);
1.44      ng        612: 	$status              = 'nothing' if ($status eq '');
                    613: 	$partstatus{$_}      = $status;
                    614: 	my $subkey           = "resource.$_.submitted_by";
                    615: 	$partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
                    616:     }
                    617:     return %partstatus;
                    618: }
                    619: 
1.45      ng        620: # hidden form and javascript that calls the form
                    621: # Use by verifyscript and viewgrades
                    622: # Shows a student's view of problem and submission
                    623: sub jscriptNform {
1.324     albertel  624:     my ($symb) = @_;
1.442     banghart  625:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.45      ng        626:     my $jscript='<script type="text/javascript" language="javascript">'."\n".
                    627: 	'    function viewOneStudent(user,domain) {'."\n".
                    628: 	'	document.onestudent.student.value = user;'."\n".
                    629: 	'	document.onestudent.userdom.value = domain;'."\n".
                    630: 	'	document.onestudent.submit();'."\n".
                    631: 	'    }'."\n".
                    632: 	'</script>'."\n";
                    633:     $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418     albertel  634: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257     albertel  635: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
                    636: 	'<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.442     banghart  637: 	'<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
1.45      ng        638: 	'<input type="hidden" name="command" value="submission" />'."\n".
                    639: 	'<input type="hidden" name="student" value="" />'."\n".
                    640: 	'<input type="hidden" name="userdom" value="" />'."\n".
                    641: 	'</form>'."\n";
                    642:     return $jscript;
                    643: }
1.39      ng        644: 
1.447     foxr      645: 
                    646: 
1.315     bowersj2  647: # Given the score (as a number [0-1] and the weight) what is the final
                    648: # point value? This function will round to the nearest tenth, third,
                    649: # or quarter if one of those is within the tolerance of .00001.
1.316     albertel  650: sub compute_points {
1.315     bowersj2  651:     my ($score, $weight) = @_;
                    652:     
                    653:     my $tolerance = .00001;
                    654:     my $points = $score * $weight;
                    655: 
                    656:     # Check for nearness to 1/x.
                    657:     my $check_for_nearness = sub {
                    658:         my ($factor) = @_;
                    659:         my $num = ($points * $factor) + $tolerance;
                    660:         my $floored_num = floor($num);
1.316     albertel  661:         if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315     bowersj2  662:             return $floored_num / $factor;
                    663:         }
                    664:         return $points;
                    665:     };
                    666: 
                    667:     $points = $check_for_nearness->(10);
                    668:     $points = $check_for_nearness->(3);
                    669:     $points = $check_for_nearness->(4);
                    670:     
                    671:     return $points;
                    672: }
                    673: 
1.44      ng        674: #------------------ End of general use routines --------------------
1.87      www       675: 
                    676: #
                    677: # Find most similar essay
                    678: #
                    679: 
                    680: sub most_similar {
1.426     albertel  681:     my ($uname,$udom,$uessay,$old_essays)=@_;
1.87      www       682: 
                    683: # ignore spaces and punctuation
                    684: 
                    685:     $uessay=~s/\W+/ /gs;
                    686: 
1.282     www       687: # ignore empty submissions (occuring when only files are sent)
                    688: 
                    689:     unless ($uessay=~/\w+/) { return ''; }
                    690: 
1.87      www       691: # these will be returned. Do not care if not at least 50 percent similar
1.88      www       692:     my $limit=0.6;
1.87      www       693:     my $sname='';
                    694:     my $sdom='';
                    695:     my $scrsid='';
                    696:     my $sessay='';
                    697: # go through all essays ...
1.426     albertel  698:     foreach my $tkey (keys(%$old_essays)) {
                    699: 	my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87      www       700: # ... except the same student
1.426     albertel  701:         next if (($tname eq $uname) && ($tdom eq $udom));
                    702: 	my $tessay=$old_essays->{$tkey};
                    703: 	$tessay=~s/\W+/ /gs;
1.87      www       704: # String similarity gives up if not even limit
1.426     albertel  705: 	my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87      www       706: # Found one
1.426     albertel  707: 	if ($tsimilar>$limit) {
                    708: 	    $limit=$tsimilar;
                    709: 	    $sname=$tname;
                    710: 	    $sdom=$tdom;
                    711: 	    $scrsid=$tcrsid;
                    712: 	    $sessay=$old_essays->{$tkey};
                    713: 	}
1.87      www       714:     }
1.88      www       715:     if ($limit>0.6) {
1.87      www       716:        return ($sname,$sdom,$scrsid,$sessay,$limit);
                    717:     } else {
                    718:        return ('','','','',0);
                    719:     }
                    720: }
                    721: 
1.44      ng        722: #-------------------------------------------------------------------
                    723: 
                    724: #------------------------------------ Receipt Verification Routines
1.45      ng        725: #
1.44      ng        726: #--- Check whether a receipt number is valid.---
                    727: sub verifyreceipt {
                    728:     my $request  = shift;
                    729: 
1.257     albertel  730:     my $courseid = $env{'request.course.id'};
1.184     www       731:     my $receipt  = &Apache::lonnet::recprefix($courseid).'-'.
1.257     albertel  732: 	$env{'form.receipt'};
1.44      ng        733:     $receipt     =~ s/[^\-\d]//g;
1.378     albertel  734:     my ($symb)   = &get_symb($request);
1.44      ng        735: 
1.398     albertel  736:     my $title.='<h3><span class="LC_info">Verifying Submission Receipt '.
                    737: 	$receipt.'</h3></span>'."\n".
                    738: 	'<h4><b>Resource: </b>'.$env{'form.probTitle'}.'</h4><br /><br />'."\n";
1.44      ng        739: 
                    740:     my ($string,$contents,$matches) = ('','',0);
1.56      matthew   741:     my (undef,undef,$fullname) = &getclasslist('all','0');
1.177     albertel  742:     
                    743:     my $receiptparts=0;
1.390     albertel  744:     if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
                    745: 	$env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177     albertel  746:     my $parts=['0'];
1.324     albertel  747:     if ($receiptparts) { ($parts)=&response_type($symb); }
1.294     albertel  748:     foreach (sort 
                    749: 	     {
                    750: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                    751: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                    752: 		 }
                    753: 		 return $a cmp $b;
                    754: 	     } (keys(%$fullname))) {
1.44      ng        755: 	my ($uname,$udom)=split(/\:/);
1.177     albertel  756: 	foreach my $part (@$parts) {
                    757: 	    if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
                    758: 		$contents.='<tr bgcolor="#ffffe6"><td>&nbsp;'."\n".
                    759: 		    '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417     albertel  760: 		    '\');" target="_self">'.$$fullname{$_}.'</a>&nbsp;</td>'."\n".
1.177     albertel  761: 		    '<td>&nbsp;'.$uname.'&nbsp;</td>'.
                    762: 		    '<td>&nbsp;'.$udom.'&nbsp;</td>';
                    763: 		if ($receiptparts) {
                    764: 		    $contents.='<td>&nbsp;'.$part.'&nbsp;</td>';
                    765: 		}
                    766: 		$contents.='</tr>'."\n";
                    767: 		
                    768: 		$matches++;
                    769: 	    }
1.44      ng        770: 	}
                    771:     }
                    772:     if ($matches == 0) {
                    773: 	$string = $title.'No match found for the above receipt.';
                    774:     } else {
1.324     albertel  775: 	$string = &jscriptNform($symb).$title.
1.44      ng        776: 	    'The above receipt matches the following student'.
                    777: 	    ($matches <= 1 ? '.' : 's.')."\n".
                    778: 	    '<table border="0"><tr><td bgcolor="#777777">'."\n".
                    779: 	    '<table border="0"><tr bgcolor="#e6ffff">'."\n".
                    780: 	    '<td><b>&nbsp;Fullname&nbsp;</b></td>'."\n".
                    781: 	    '<td><b>&nbsp;Username&nbsp;</b></td>'."\n".
1.177     albertel  782: 	    '<td><b>&nbsp;Domain&nbsp;</b></td>';
                    783: 	if ($receiptparts) {
                    784: 	    $string.='<td>&nbsp;Problem Part&nbsp;</td>';
                    785: 	}
                    786: 	$string.='</tr>'."\n".$contents.
1.44      ng        787: 	    '</table></td></tr></table>'."\n";
                    788:     }
1.324     albertel  789:     return $string.&show_grading_menu_form($symb);
1.44      ng        790: }
                    791: 
                    792: #--- This is called by a number of programs.
                    793: #--- Called from the Grading Menu - View/Grade an individual student
                    794: #--- Also called directly when one clicks on the subm button 
                    795: #    on the problem page.
1.30      ng        796: sub listStudents {
1.41      ng        797:     my ($request) = shift;
1.49      albertel  798: 
1.324     albertel  799:     my ($symb) = &get_symb($request);
1.257     albertel  800:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                    801:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                    802:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449     banghart  803:     my $getgroup  = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.257     albertel  804:     my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
                    805:     my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
                    806:     $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ? 
                    807: 	&Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.49      albertel  808: 
1.398     albertel  809:     my $result='<h3><span class="LC_info">&nbsp;'.$viewgrade.
                    810: 	' Submissions for a Student or a Group of Students</span></h3>';
1.118     ng        811: 
1.324     albertel  812:     my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($symb,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
1.49      albertel  813: 
1.45      ng        814:     $request->print(<<LISTJAVASCRIPT);
                    815: <script type="text/javascript" language="javascript">
1.110     ng        816:     function checkSelect(checkBox) {
                    817: 	var ctr=0;
                    818: 	var sense="";
                    819: 	if (checkBox.length > 1) {
                    820: 	    for (var i=0; i<checkBox.length; i++) {
                    821: 		if (checkBox[i].checked) {
                    822: 		    ctr++;
                    823: 		}
                    824: 	    }
                    825: 	    sense = "a student or group of students";
                    826: 	} else {
                    827: 	    if (checkBox.checked) {
                    828: 		ctr = 1;
                    829: 	    }
                    830: 	    sense = "the student";
                    831: 	}
                    832: 	if (ctr == 0) {
1.126     ng        833: 	    alert("Please select "+sense+" before clicking on the Next button.");
1.110     ng        834: 	    return false;
                    835: 	}
                    836: 	document.gradesub.submit();
                    837:     }
                    838: 
                    839:     function reLoadList(formname) {
1.112     ng        840: 	if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110     ng        841: 	formname.command.value = 'submission';
                    842: 	formname.submit();
                    843:     }
1.45      ng        844: </script>
                    845: LISTJAVASCRIPT
                    846: 
1.118     ng        847:     &commonJSfunctions($request);
1.41      ng        848:     $request->print($result);
1.39      ng        849: 
1.401     albertel  850:     my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked="checked"' : '';
                    851:     my $checklastsub = $checkhdgrade eq '' ? 'checked="checked"' : '';
1.154     albertel  852:     my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
                    853: 	"\n".$table.
1.401     albertel  854: 	'&nbsp;<b>View Problem Text: </b><label><input type="radio" name="vProb" value="no" checked="checked" /> no </label>'."\n".
1.267     albertel  855: 	'<label><input type="radio" name="vProb" value="yes" /> one student </label>'."\n".
                    856: 	'<label><input type="radio" name="vProb" value="all" /> all students </label><br />'."\n".
                    857: 	'&nbsp;<b>View Answer: </b><label><input type="radio" name="vAns" value="no"  /> no </label>'."\n".
                    858: 	'<label><input type="radio" name="vAns" value="yes" /> one student </label>'."\n".
1.401     albertel  859: 	'<label><input type="radio" name="vAns" value="all" checked="checked" /> all students </label><br />'."\n".
1.49      albertel  860: 	'&nbsp;<b>Submissions: </b>'."\n";
1.257     albertel  861:     if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
1.267     albertel  862: 	$gradeTable.='<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> essay part only </label>'."\n";
1.49      albertel  863:     }
1.442     banghart  864:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
                    865:     my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257     albertel  866:     $env{'form.Status'} = $saveStatus;
1.267     albertel  867:     $gradeTable.='<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> last submission only </label>'."\n".
1.474     albertel  868: 	'<label><input type="radio" name="lastSub" value="last" /> last submission &amp; parts info </label>'."\n".
1.267     albertel  869: 	'<label><input type="radio" name="lastSub" value="datesub" /> by dates and submissions </label>'."\n".
1.348     bowersj2  870: 	'<label><input type="radio" name="lastSub" value="all" /> all details</label><br />'."\n".
                    871:         '&nbsp;<b>Grading Increments:</b> <select name="increment">'.
                    872:         '<option value="1">Whole Points</option>'.
                    873:         '<option value=".5">Half Points</option>'.
1.349     albertel  874:         '<option value=".25">Quarter Points</option>'.
                    875:         '<option value=".1">Tenths of a Point</option>'.
1.348     bowersj2  876:         '</select>'.
1.432     banghart  877:         &build_section_inputs().
1.45      ng        878: 	'<input type="hidden" name="submitonly"  value="'.$submitonly.'" />'."\n".
1.257     albertel  879: 	'<input type="hidden" name="handgrade"   value="'.$env{'form.handgrade'}.'" /><br />'."\n".
                    880: 	'<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
                    881: 	'<input type="hidden" name="saveState"   value="'.$env{'form.saveState'}.'" />'."\n".
                    882: 	'<input type="hidden" name="probTitle"   value="'.$env{'form.probTitle'}.'" />'."\n".
1.418     albertel  883: 	'<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110     ng        884: 	'<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
                    885: 
1.257     albertel  886:     if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
1.442     banghart  887: 	$gradeTable.='<input type="hidden" name="Status"   value="'.$stu_status.'" />'."\n";
1.124     ng        888:     } else {
                    889: 	$gradeTable.='<b>Student Status:</b> '.
                    890: 	    &Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,'javascript:reLoadList(this.form);').'<br />';
                    891:     }
1.112     ng        892: 
1.126     ng        893:     $gradeTable.='To '.lc($viewgrade).' a submission or a group of submissions, click on the check box(es) '.
                    894: 	'next to the student\'s name(s). Then click on the Next button.<br />'."\n".
1.110     ng        895: 	'<input type="hidden" name="command" value="processGroup" />'."\n";
1.249     albertel  896: 
                    897: # checkall buttons
                    898:     $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110     ng        899:     $gradeTable.='<input type="button" '."\n".
1.45      ng        900: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1.249     albertel  901: 	'value="Next->" /> <br />'."\n";
                    902:     $gradeTable.=&check_buttons();
1.401     albertel  903:     $gradeTable.='<label><input type="checkbox" name="checkPlag" checked="checked" />Check For Plagiarism</label>';
1.450     banghart  904:     my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.474     albertel  905:     $gradeTable.= &Apache::loncommon::start_data_table().
                    906: 	&Apache::loncommon::start_data_table_header_row();
1.110     ng        907:     my $loop = 0;
                    908:     while ($loop < 2) {
1.474     albertel  909: 	$gradeTable.='<th>No.</th><th>Select</th>'.
                    910: 	    '<th>'.&nameUserString('header').'&nbsp;'.'Section/Group</th>';
1.301     albertel  911: 	if ($env{'form.showgrading'} eq 'yes' 
                    912: 	    && $submitonly ne 'queued'
                    913: 	    && $submitonly ne 'all') {
1.110     ng        914: 	    foreach (sort(@$partlist)) {
1.324     albertel  915: 		my $display_part=&get_display_part((split(/_/))[0],$symb);
1.474     albertel  916: 		$gradeTable.='<th>Part: '.$display_part.
                    917: 		    ' Status</h>';
1.110     ng        918: 	    }
1.301     albertel  919: 	} elsif ($submitonly eq 'queued') {
1.474     albertel  920: 	    $gradeTable.='<th>'.&mt('Queue Status').'&nbsp;</th>';
1.110     ng        921: 	}
                    922: 	$loop++;
1.126     ng        923: #	$gradeTable.='<td></td>' if ($loop%2 ==1);
1.41      ng        924:     }
1.474     albertel  925:     $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
1.41      ng        926: 
1.45      ng        927:     my $ctr = 0;
1.294     albertel  928:     foreach my $student (sort 
                    929: 			 {
                    930: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                    931: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                    932: 			     }
                    933: 			     return $a cmp $b;
                    934: 			 }
                    935: 			 (keys(%$fullname))) {
1.41      ng        936: 	my ($uname,$udom) = split(/:/,$student);
1.301     albertel  937: 
1.110     ng        938: 	my %status = ();
1.301     albertel  939: 
                    940: 	if ($submitonly eq 'queued') {
                    941: 	    my %queue_status = 
                    942: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
                    943: 							$udom,$uname);
                    944: 	    next if (!defined($queue_status{'gradingqueue'}));
                    945: 	    $status{'gradingqueue'} = $queue_status{'gradingqueue'};
                    946: 	}
                    947: 
                    948: 	if ($env{'form.showgrading'} eq 'yes' 
                    949: 	    && $submitonly ne 'queued'
                    950: 	    && $submitonly ne 'all') {
1.324     albertel  951: 	    (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145     albertel  952: 	    my $submitted = 0;
1.164     albertel  953: 	    my $graded = 0;
1.248     albertel  954: 	    my $incorrect = 0;
1.110     ng        955: 	    foreach (keys(%status)) {
1.145     albertel  956: 		$submitted = 1 if ($status{$_} ne 'nothing');
1.248     albertel  957: 		$graded = 1 if ($status{$_} =~ /^ungraded/);
                    958: 		$incorrect = 1 if ($status{$_} =~ /^incorrect/);
                    959: 		
1.110     ng        960: 		my ($foo,$partid,$foo1) = split(/\./,$_);
                    961: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145     albertel  962: 		    $submitted = 0;
1.150     albertel  963: 		    my ($part)=split(/\./,$partid);
1.110     ng        964: 		    $gradeTable.='<input type="hidden" name="'.
1.150     albertel  965: 			$student.':'.$part.':submitted_by" value="'.
1.110     ng        966: 			$status{'resource.'.$partid.'.submitted_by'}.'" />';
                    967: 		}
1.41      ng        968: 	    }
1.248     albertel  969: 	    
1.156     albertel  970: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                    971: 				     $submitonly eq 'incorrect' ||
                    972: 				     $submitonly eq 'graded'));
1.248     albertel  973: 	    next if (!$graded && ($submitonly eq 'graded'));
                    974: 	    next if (!$incorrect && $submitonly eq 'incorrect');
1.41      ng        975: 	}
1.34      ng        976: 
1.45      ng        977: 	$ctr++;
1.249     albertel  978: 	my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452     banghart  979:         my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104     albertel  980: 	if ( $perm{'vgr'} eq 'F' ) {
1.474     albertel  981: 	    if ($ctr%2 ==1) {
                    982: 		$gradeTable.= &Apache::loncommon::start_data_table_row();
                    983: 	    }
1.126     ng        984: 	    $gradeTable.='<td align="right">'.$ctr.'&nbsp;</td>'.
1.249     albertel  985:                '<td align="center"><label><input type=checkbox name="stuinfo" value="'.
                    986:                $student.':'.$$fullname{$student}.':::SECTION'.$section.
                    987: 	       ')&nbsp;" />&nbsp;&nbsp;</label></td>'."\n".'<td>'.
                    988: 	       &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474     albertel  989: 	       '&nbsp;'.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110     ng        990: 
1.257     albertel  991: 	    if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.110     ng        992: 		foreach (sort keys(%status)) {
                    993: 		    next if (/^resource.*?submitted_by$/);
1.276     albertel  994: 		    $gradeTable.='<td align="center">&nbsp;'.$status{$_}.'&nbsp;</td>'."\n";
1.110     ng        995: 		}
1.41      ng        996: 	    }
1.126     ng        997: #	    $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474     albertel  998: 	    if ($ctr%2 ==0) {
                    999: 		$gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
                   1000: 	    }
1.41      ng       1001: 	}
                   1002:     }
1.110     ng       1003:     if ($ctr%2 ==1) {
1.126     ng       1004: 	$gradeTable.='<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';
1.301     albertel 1005: 	    if ($env{'form.showgrading'} eq 'yes' 
                   1006: 		&& $submitonly ne 'queued'
                   1007: 		&& $submitonly ne 'all') {
1.110     ng       1008: 		foreach (@$partlist) {
                   1009: 		    $gradeTable.='<td>&nbsp;</td>';
                   1010: 		}
1.301     albertel 1011: 	    } elsif ($submitonly eq 'queued') {
                   1012: 		$gradeTable.='<td>&nbsp;</td>';
1.110     ng       1013: 	    }
1.474     albertel 1014: 	$gradeTable.=&Apache::loncommon::end_data_table_row();
1.110     ng       1015:     }
                   1016: 
1.474     albertel 1017:     $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.45      ng       1018: 	'<input type="button" '.
                   1019: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '.
1.126     ng       1020: 	'value="Next->" /></form>'."\n";
1.45      ng       1021:     if ($ctr == 0) {
1.96      albertel 1022: 	my $num_students=(scalar(keys(%$fullname)));
                   1023: 	if ($num_students eq 0) {
1.398     albertel 1024: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">There are no students currently enrolled.</span>';
1.96      albertel 1025: 	} else {
1.171     albertel 1026: 	    my $submissions='submissions';
                   1027: 	    if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
                   1028: 	    if ($submitonly eq 'graded'   ) { $submissions = 'ungraded submissions'; }
1.301     albertel 1029: 	    if ($submitonly eq 'queued'   ) { $submissions = 'queued submissions'; }
1.398     albertel 1030: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">'.
1.171     albertel 1031: 		'No '.$submissions.' found for this resource for any students. ('.$num_students.
1.398     albertel 1032: 		' students checked for '.$submissions.')</span><br />';
1.96      albertel 1033: 	}
1.46      ng       1034:     } elsif ($ctr == 1) {
1.474     albertel 1035: 	$gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45      ng       1036:     }
1.324     albertel 1037:     $gradeTable.=&show_grading_menu_form($symb);
1.45      ng       1038:     $request->print($gradeTable);
1.44      ng       1039:     return '';
1.10      ng       1040: }
                   1041: 
1.44      ng       1042: #---- Called from the listStudents routine
1.249     albertel 1043: 
                   1044: sub check_script {
                   1045:     my ($form, $type)=@_;
                   1046:     my $chkallscript='<script type="text/javascript">
                   1047:     function checkall() {
                   1048:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                   1049:             ele = document.forms.'.$form.'.elements[i];
                   1050:             if (ele.name == "'.$type.'") {
                   1051:             document.forms.'.$form.'.elements[i].checked=true;
                   1052:                                        }
                   1053:         }
                   1054:     }
                   1055: 
                   1056:     function checksec() {
                   1057:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                   1058:             ele = document.forms.'.$form.'.elements[i];
                   1059:            string = document.forms.'.$form.'.chksec.value;
                   1060:            if
                   1061:           (ele.value.indexOf(":::SECTION"+string)>0) {
                   1062:               document.forms.'.$form.'.elements[i].checked=true;
                   1063:             }
                   1064:         }
                   1065:     }
                   1066: 
                   1067: 
                   1068:     function uncheckall() {
                   1069:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                   1070:             ele = document.forms.'.$form.'.elements[i];
                   1071:             if (ele.name == "'.$type.'") {
                   1072:             document.forms.'.$form.'.elements[i].checked=false;
                   1073:                                        }
                   1074:         }
                   1075:     }
                   1076: 
                   1077: </script>'."\n";
                   1078:     return $chkallscript;
                   1079: }
                   1080: 
                   1081: sub check_buttons {
                   1082:     my $buttons.='<input type="button" onclick="checkall()" value="Check All" />';
                   1083:     $buttons.='<input type="button" onclick="uncheckall()" value="Uncheck All" />&nbsp;';
                   1084:     $buttons.='<input type="button" onclick="checksec()" value="Check Section/Group" />';
                   1085:     $buttons.='<input type="text" size="5" name="chksec" />&nbsp;';
                   1086:     return $buttons;
                   1087: }
                   1088: 
1.44      ng       1089: #     Displays the submissions for one student or a group of students
1.34      ng       1090: sub processGroup {
1.41      ng       1091:     my ($request)  = shift;
                   1092:     my $ctr        = 0;
1.155     albertel 1093:     my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41      ng       1094:     my $total      = scalar(@stuchecked)-1;
1.45      ng       1095: 
1.396     banghart 1096:     foreach my $student (@stuchecked) {
                   1097: 	my ($uname,$udom,$fullname) = split(/:/,$student);
1.257     albertel 1098: 	$env{'form.student'}        = $uname;
                   1099: 	$env{'form.userdom'}        = $udom;
                   1100: 	$env{'form.fullname'}       = $fullname;
1.41      ng       1101: 	&submission($request,$ctr,$total);
                   1102: 	$ctr++;
                   1103:     }
                   1104:     return '';
1.35      ng       1105: }
1.34      ng       1106: 
1.44      ng       1107: #------------------------------------------------------------------------------------
                   1108: #
                   1109: #-------------------------- Next few routines handles grading by student, essentially
                   1110: #                           handles essay response type problem/part
                   1111: #
                   1112: #--- Javascript to handle the submission page functionality ---
                   1113: sub sub_page_js {
                   1114:     my $request = shift;
                   1115:     $request->print(<<SUBJAVASCRIPT);
                   1116: <script type="text/javascript" language="javascript">
1.71      ng       1117:     function updateRadio(formname,id,weight) {
1.125     ng       1118: 	var gradeBox = formname["GD_BOX"+id];
                   1119: 	var radioButton = formname["RADVAL"+id];
                   1120: 	var oldpts = formname["oldpts"+id].value;
1.72      ng       1121: 	var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71      ng       1122: 	gradeBox.value = pts;
                   1123: 	var resetbox = false;
                   1124: 	if (isNaN(pts) || pts < 0) {
                   1125: 	    alert("A number equal or greater than 0 is expected. Entered value = "+pts);
                   1126: 	    for (var i=0; i<radioButton.length; i++) {
                   1127: 		if (radioButton[i].checked) {
                   1128: 		    gradeBox.value = i;
                   1129: 		    resetbox = true;
                   1130: 		}
                   1131: 	    }
                   1132: 	    if (!resetbox) {
                   1133: 		formtextbox.value = "";
                   1134: 	    }
                   1135: 	    return;
1.44      ng       1136: 	}
1.71      ng       1137: 
                   1138: 	if (pts > weight) {
                   1139: 	    var resp = confirm("You entered a value ("+pts+
                   1140: 			       ") greater than the weight for the part. Accept?");
                   1141: 	    if (resp == false) {
1.125     ng       1142: 		gradeBox.value = oldpts;
1.71      ng       1143: 		return;
                   1144: 	    }
1.44      ng       1145: 	}
1.13      albertel 1146: 
1.71      ng       1147: 	for (var i=0; i<radioButton.length; i++) {
                   1148: 	    radioButton[i].checked=false;
                   1149: 	    if (pts == i && pts != "") {
                   1150: 		radioButton[i].checked=true;
                   1151: 	    }
                   1152: 	}
                   1153: 	updateSelect(formname,id);
1.125     ng       1154: 	formname["stores"+id].value = "0";
1.41      ng       1155:     }
1.5       albertel 1156: 
1.72      ng       1157:     function writeBox(formname,id,pts) {
1.125     ng       1158: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng       1159: 	if (checkSolved(formname,id) == 'update') {
                   1160: 	    gradeBox.value = pts;
                   1161: 	} else {
1.125     ng       1162: 	    var oldpts = formname["oldpts"+id].value;
1.72      ng       1163: 	    gradeBox.value = oldpts;
1.125     ng       1164: 	    var radioButton = formname["RADVAL"+id];
1.71      ng       1165: 	    for (var i=0; i<radioButton.length; i++) {
                   1166: 		radioButton[i].checked=false;
1.72      ng       1167: 		if (i == oldpts) {
1.71      ng       1168: 		    radioButton[i].checked=true;
                   1169: 		}
                   1170: 	    }
1.41      ng       1171: 	}
1.125     ng       1172: 	formname["stores"+id].value = "0";
1.71      ng       1173: 	updateSelect(formname,id);
                   1174: 	return;
1.41      ng       1175:     }
1.44      ng       1176: 
1.71      ng       1177:     function clearRadBox(formname,id) {
                   1178: 	if (checkSolved(formname,id) == 'noupdate') {
                   1179: 	    updateSelect(formname,id);
                   1180: 	    return;
                   1181: 	}
1.125     ng       1182: 	gradeSelect = formname["GD_SEL"+id];
1.71      ng       1183: 	for (var i=0; i<gradeSelect.length; i++) {
                   1184: 	    if (gradeSelect[i].selected) {
                   1185: 		var selectx=i;
                   1186: 	    }
                   1187: 	}
1.125     ng       1188: 	var stores = formname["stores"+id];
1.71      ng       1189: 	if (selectx == stores.value) { return };
1.125     ng       1190: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng       1191: 	gradeBox.value = "";
1.125     ng       1192: 	var radioButton = formname["RADVAL"+id];
1.71      ng       1193: 	for (var i=0; i<radioButton.length; i++) {
                   1194: 	    radioButton[i].checked=false;
                   1195: 	}
                   1196: 	stores.value = selectx;
                   1197:     }
1.5       albertel 1198: 
1.71      ng       1199:     function checkSolved(formname,id) {
1.125     ng       1200: 	if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118     ng       1201: 	    var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
                   1202: 	    if (!reply) {return "noupdate";}
1.120     ng       1203: 	    formname.overRideScore.value = 'yes';
1.41      ng       1204: 	}
1.71      ng       1205: 	return "update";
1.13      albertel 1206:     }
1.71      ng       1207: 
                   1208:     function updateSelect(formname,id) {
1.125     ng       1209: 	formname["GD_SEL"+id][0].selected = true;
1.71      ng       1210: 	return;
1.41      ng       1211:     }
1.33      ng       1212: 
1.121     ng       1213: //=========== Check that a point is assigned for all the parts  ============
1.71      ng       1214:     function checksubmit(formname,val,total,parttot) {
1.121     ng       1215: 	formname.gradeOpt.value = val;
1.71      ng       1216: 	if (val == "Save & Next") {
                   1217: 	    for (i=0;i<=total;i++) {
                   1218: 		for (j=0;j<parttot;j++) {
1.125     ng       1219: 		    var partid = formname["partid"+i+"_"+j].value;
1.127     ng       1220: 		    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng       1221: 			var points = formname["GD_BOX"+i+"_"+partid].value;
1.71      ng       1222: 			if (points == "") {
1.125     ng       1223: 			    var name = formname["name"+i].value;
1.129     ng       1224: 			    var studentID = (name != '' ? name : formname["unamedom"+i].value);
                   1225: 			    var resp = confirm("You did not assign a score for "+studentID+
                   1226: 					       ", part "+partid+". Continue?");
1.71      ng       1227: 			    if (resp == false) {
1.125     ng       1228: 				formname["GD_BOX"+i+"_"+partid].focus();
1.71      ng       1229: 				return false;
                   1230: 			    }
                   1231: 			}
                   1232: 		    }
                   1233: 		    
                   1234: 		}
                   1235: 	    }
                   1236: 	    
                   1237: 	}
1.121     ng       1238: 	if (val == "Grade Student") {
                   1239: 	    formname.showgrading.value = "yes";
                   1240: 	    if (formname.Status.value == "") {
                   1241: 		formname.Status.value = "Active";
                   1242: 	    }
                   1243: 	    formname.studentNo.value = total;
                   1244: 	}
1.120     ng       1245: 	formname.submit();
                   1246:     }
                   1247: 
1.71      ng       1248: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
                   1249:     function checkSubmitPage(formname,total) {
                   1250: 	noscore = new Array(100);
                   1251: 	var ptr = 0;
                   1252: 	for (i=1;i<total;i++) {
1.125     ng       1253: 	    var partid = formname["q_"+i].value;
1.127     ng       1254: 	    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng       1255: 		var points = formname["GD_BOX"+i+"_"+partid].value;
                   1256: 		var status = formname["solved"+i+"_"+partid].value;
1.71      ng       1257: 		if (points == "" && status != "correct_by_student") {
                   1258: 		    noscore[ptr] = i;
                   1259: 		    ptr++;
                   1260: 		}
                   1261: 	    }
                   1262: 	}
                   1263: 	if (ptr != 0) {
                   1264: 	    var sense = ptr == 1 ? ": " : "s: ";
                   1265: 	    var prolist = "";
                   1266: 	    if (ptr == 1) {
                   1267: 		prolist = noscore[0];
                   1268: 	    } else {
                   1269: 		var i = 0;
                   1270: 		while (i < ptr-1) {
                   1271: 		    prolist += noscore[i]+", ";
                   1272: 		    i++;
                   1273: 		}
                   1274: 		prolist += "and "+noscore[i];
                   1275: 	    }
                   1276: 	    var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
                   1277: 	    if (resp == false) {
                   1278: 		return false;
                   1279: 	    }
                   1280: 	}
1.45      ng       1281: 
1.71      ng       1282: 	formname.submit();
                   1283:     }
                   1284: </script>
                   1285: SUBJAVASCRIPT
                   1286: }
1.45      ng       1287: 
1.71      ng       1288: #--- javascript for essay type problem --
                   1289: sub sub_page_kw_js {
                   1290:     my $request = shift;
1.80      ng       1291:     my $iconpath = $request->dir_config('lonIconsURL');
1.118     ng       1292:     &commonJSfunctions($request);
1.350     albertel 1293: 
1.351     albertel 1294:     my $inner_js_msg_central=<<INNERJS;
1.350     albertel 1295:     <script text="text/javascript">
                   1296:     function checkInput() {
                   1297:       opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
                   1298:       var nmsg   = opener.document.SCORE.savemsgN.value;
                   1299:       var usrctr = document.msgcenter.usrctr.value;
                   1300:       var newval = opener.document.SCORE["newmsg"+usrctr];
                   1301:       newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
                   1302: 
                   1303:       var msgchk = "";
                   1304:       if (document.msgcenter.subchk.checked) {
                   1305:          msgchk = "msgsub,";
                   1306:       }
                   1307:       var includemsg = 0;
                   1308:       for (var i=1; i<=nmsg; i++) {
                   1309:           var opnmsg = opener.document.SCORE["savemsg"+i];
                   1310:           var frmmsg = document.msgcenter["msg"+i];
                   1311:           opnmsg.value = opener.checkEntities(frmmsg.value);
                   1312:           var showflg = opener.document.SCORE["shownOnce"+i];
                   1313:           showflg.value = "1";
                   1314:           var chkbox = document.msgcenter["msgn"+i];
                   1315:           if (chkbox.checked) {
                   1316:              msgchk += "savemsg"+i+",";
                   1317:              includemsg = 1;
                   1318:           }
                   1319:       }
                   1320:       if (document.msgcenter.newmsgchk.checked) {
                   1321:          msgchk += "newmsg"+usrctr;
                   1322:          includemsg = 1;
                   1323:       }
                   1324:       imgformname = opener.document.SCORE["mailicon"+usrctr];
                   1325:       imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
                   1326:       var includemsg = opener.document.SCORE["includemsg"+usrctr];
                   1327:       includemsg.value = msgchk;
                   1328: 
                   1329:       self.close()
                   1330: 
                   1331:     }
                   1332:     </script>
                   1333: INNERJS
                   1334: 
1.351     albertel 1335:     my $inner_js_highlight_central=<<INNERJS;
                   1336:  <script type="text/javascript">
                   1337:     function updateChoice(flag) {
                   1338:       opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
                   1339:       opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
                   1340:       opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
                   1341:       opener.document.SCORE.refresh.value = "on";
                   1342:       if (opener.document.SCORE.keywords.value!=""){
                   1343:          opener.document.SCORE.submit();
                   1344:       }
                   1345:       self.close()
                   1346:     }
                   1347: </script>
                   1348: INNERJS
                   1349: 
                   1350:     my $start_page_msg_central = 
                   1351:         &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
                   1352: 				       {'js_ready'  => 1,
                   1353: 					'only_body' => 1,
                   1354: 					'bgcolor'   =>'#FFFFFF',});
                   1355:     my $end_page_msg_central = 
                   1356: 	&Apache::loncommon::end_page({'js_ready' => 1});
                   1357: 
                   1358: 
                   1359:     my $start_page_highlight_central = 
                   1360:         &Apache::loncommon::start_page('Highlight Central',
                   1361: 				       $inner_js_highlight_central,
1.350     albertel 1362: 				       {'js_ready'  => 1,
                   1363: 					'only_body' => 1,
                   1364: 					'bgcolor'   =>'#FFFFFF',});
1.351     albertel 1365:     my $end_page_highlight_central = 
1.350     albertel 1366: 	&Apache::loncommon::end_page({'js_ready' => 1});
                   1367: 
1.219     www      1368:     my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236     albertel 1369:     $docopen=~s/^document\.//;
1.71      ng       1370:     $request->print(<<SUBJAVASCRIPT);
                   1371: <script type="text/javascript" language="javascript">
1.45      ng       1372: 
1.44      ng       1373: //===================== Show list of keywords ====================
1.122     ng       1374:   function keywords(formname) {
                   1375:     var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
1.44      ng       1376:     if (nret==null) return;
1.122     ng       1377:     formname.keywords.value = nret;
1.44      ng       1378: 
1.122     ng       1379:     if (formname.keywords.value != "") {
1.128     ng       1380: 	formname.refresh.value = "on";
1.122     ng       1381: 	formname.submit();
1.44      ng       1382:     }
                   1383:     return;
                   1384:   }
                   1385: 
                   1386: //===================== Script to view submitted by ==================
                   1387:   function viewSubmitter(submitter) {
                   1388:     document.SCORE.refresh.value = "on";
                   1389:     document.SCORE.NCT.value = "1";
                   1390:     document.SCORE.unamedom0.value = submitter;
                   1391:     document.SCORE.submit();
                   1392:     return;
                   1393:   }
                   1394: 
                   1395: //===================== Script to add keyword(s) ==================
                   1396:   function getSel() {
                   1397:     if (document.getSelection) txt = document.getSelection();
                   1398:     else if (document.selection) txt = document.selection.createRange().text;
                   1399:     else return;
                   1400:     var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
                   1401:     if (cleantxt=="") {
1.46      ng       1402: 	alert("Please select a word or group of words from document and then click this link.");
1.44      ng       1403: 	return;
                   1404:     }
                   1405:     var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
                   1406:     if (nret==null) return;
1.127     ng       1407:     document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44      ng       1408:     if (document.SCORE.keywords.value != "") {
1.127     ng       1409: 	document.SCORE.refresh.value = "on";
1.44      ng       1410: 	document.SCORE.submit();
                   1411:     }
                   1412:     return;
                   1413:   }
                   1414: 
                   1415: //====================== Script for composing message ==============
1.80      ng       1416:    // preload images
                   1417:    img1 = new Image();
                   1418:    img1.src = "$iconpath/mailbkgrd.gif";
                   1419:    img2 = new Image();
                   1420:    img2.src = "$iconpath/mailto.gif";
                   1421: 
1.44      ng       1422:   function msgCenter(msgform,usrctr,fullname) {
                   1423:     var Nmsg  = msgform.savemsgN.value;
                   1424:     savedMsgHeader(Nmsg,usrctr,fullname);
                   1425:     var subject = msgform.msgsub.value;
1.127     ng       1426:     var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44      ng       1427:     re = /msgsub/;
                   1428:     var shwsel = "";
                   1429:     if (re.test(msgchk)) { shwsel = "checked" }
1.123     ng       1430:     subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
                   1431:     displaySubject(checkEntities(subject),shwsel);
1.44      ng       1432:     for (var i=1; i<=Nmsg; i++) {
1.123     ng       1433: 	var testmsg = "savemsg"+i+",";
                   1434: 	re = new RegExp(testmsg,"g");
1.44      ng       1435: 	shwsel = "";
                   1436: 	if (re.test(msgchk)) { shwsel = "checked" }
1.125     ng       1437: 	var message = document.SCORE["savemsg"+i].value;
1.126     ng       1438: 	message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123     ng       1439: 	displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
                   1440: 	                                   //any &lt; is already converted to <, etc. However, only once!!
1.44      ng       1441:     }
1.125     ng       1442:     newmsg = document.SCORE["newmsg"+usrctr].value;
1.44      ng       1443:     shwsel = "";
                   1444:     re = /newmsg/;
                   1445:     if (re.test(msgchk)) { shwsel = "checked" }
                   1446:     newMsg(newmsg,shwsel);
                   1447:     msgTail(); 
                   1448:     return;
                   1449:   }
                   1450: 
1.123     ng       1451:   function checkEntities(strx) {
                   1452:     if (strx.length == 0) return strx;
                   1453:     var orgStr = ["&", "<", ">", '"']; 
                   1454:     var newStr = ["&amp;", "&lt;", "&gt;", "&quot;"];
                   1455:     var counter = 0;
                   1456:     while (counter < 4) {
                   1457: 	strx = strReplace(strx,orgStr[counter],newStr[counter]);
                   1458: 	counter++;
                   1459:     }
                   1460:     return strx;
                   1461:   }
                   1462: 
                   1463:   function strReplace(strx, orgStr, newStr) {
                   1464:     return strx.split(orgStr).join(newStr);
                   1465:   }
                   1466: 
1.44      ng       1467:   function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76      ng       1468:     var height = 70*Nmsg+250;
1.44      ng       1469:     var scrollbar = "no";
                   1470:     if (height > 600) {
                   1471: 	height = 600;
                   1472: 	scrollbar = "yes";
                   1473:     }
1.118     ng       1474:     var xpos = (screen.width-600)/2;
                   1475:     xpos = (xpos < 0) ? '0' : xpos;
                   1476:     var ypos = (screen.height-height)/2-30;
                   1477:     ypos = (ypos < 0) ? '0' : ypos;
                   1478: 
1.206     albertel 1479:     pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
1.76      ng       1480:     pWin.focus();
                   1481:     pDoc = pWin.document;
1.219     www      1482:     pDoc.$docopen;
1.351     albertel 1483:     pDoc.write('$start_page_msg_central');
1.76      ng       1484: 
                   1485:     pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
                   1486:     pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.465     albertel 1487:     pDoc.write("<h3><span class=\\"LC_info\\">&nbsp;Compose Message for \"+fullname+\"<\\/span><\\/h3><br /><br />");
1.76      ng       1488: 
                   1489:     pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
                   1490:     pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465     albertel 1491:     pDoc.write("<td><b>Type<\\/b><\\/td><td><b>Include<\\/b><\\/td><td><b>Message<\\/td><\\/tr>");
1.44      ng       1492: }
                   1493:     function displaySubject(msg,shwsel) {
1.76      ng       1494:     pDoc = pWin.document;
                   1495:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465     albertel 1496:     pDoc.write("<td>Subject<\\/td>");
                   1497:     pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
                   1498:     pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44      ng       1499: }
                   1500: 
1.72      ng       1501:   function displaySavedMsg(ctr,msg,shwsel) {
1.76      ng       1502:     pDoc = pWin.document;
                   1503:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465     albertel 1504:     pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
                   1505:     pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
                   1506:     pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44      ng       1507: }
                   1508: 
                   1509:   function newMsg(newmsg,shwsel) {
1.76      ng       1510:     pDoc = pWin.document;
                   1511:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465     albertel 1512:     pDoc.write("<td align=\\"center\\">New<\\/td>");
                   1513:     pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
                   1514:     pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44      ng       1515: }
                   1516: 
                   1517:   function msgTail() {
1.76      ng       1518:     pDoc = pWin.document;
1.465     albertel 1519:     pDoc.write("<\\/table>");
                   1520:     pDoc.write("<\\/td><\\/tr><\\/table>&nbsp;");
1.76      ng       1521:     pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\">&nbsp;&nbsp;");
1.326     albertel 1522:     pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465     albertel 1523:     pDoc.write("<\\/form>");
1.351     albertel 1524:     pDoc.write('$end_page_msg_central');
1.128     ng       1525:     pDoc.close();
1.44      ng       1526: }
                   1527: 
                   1528: //====================== Script for keyword highlight options ==============
                   1529:   function kwhighlight() {
                   1530:     var kwclr    = document.SCORE.kwclr.value;
                   1531:     var kwsize   = document.SCORE.kwsize.value;
                   1532:     var kwstyle  = document.SCORE.kwstyle.value;
                   1533:     var redsel = "";
                   1534:     var grnsel = "";
                   1535:     var blusel = "";
                   1536:     if (kwclr=="red")   {var redsel="checked"};
                   1537:     if (kwclr=="green") {var grnsel="checked"};
                   1538:     if (kwclr=="blue")  {var blusel="checked"};
                   1539:     var sznsel = "";
                   1540:     var sz1sel = "";
                   1541:     var sz2sel = "";
                   1542:     if (kwsize=="0")  {var sznsel="checked"};
                   1543:     if (kwsize=="+1") {var sz1sel="checked"};
                   1544:     if (kwsize=="+2") {var sz2sel="checked"};
                   1545:     var synsel = "";
                   1546:     var syisel = "";
                   1547:     var sybsel = "";
                   1548:     if (kwstyle=="")    {var synsel="checked"};
                   1549:     if (kwstyle=="<i>") {var syisel="checked"};
                   1550:     if (kwstyle=="<b>") {var sybsel="checked"};
                   1551:     highlightCentral();
                   1552:     highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
                   1553:     highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
                   1554:     highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
                   1555:     highlightend();
                   1556:     return;
                   1557:   }
                   1558: 
                   1559:   function highlightCentral() {
1.76      ng       1560: //    if (window.hwdWin) window.hwdWin.close();
1.118     ng       1561:     var xpos = (screen.width-400)/2;
                   1562:     xpos = (xpos < 0) ? '0' : xpos;
                   1563:     var ypos = (screen.height-330)/2-30;
                   1564:     ypos = (ypos < 0) ? '0' : ypos;
                   1565: 
1.206     albertel 1566:     hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76      ng       1567:     hwdWin.focus();
                   1568:     var hDoc = hwdWin.document;
1.219     www      1569:     hDoc.$docopen;
1.351     albertel 1570:     hDoc.write('$start_page_highlight_central');
1.76      ng       1571:     hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.465     albertel 1572:     hDoc.write("<h3><span class=\\"LC_info\\">&nbsp;Keyword Highlight Options<\\/span><\\/h3><br /><br />");
1.76      ng       1573: 
                   1574:     hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
                   1575:     hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465     albertel 1576:     hDoc.write("<td><b>Text Color<\\/b><\\/td><td><b>Font Size<\\/b><\\/td><td><b>Font Style<\\/td><\\/tr>");
1.44      ng       1577:   }
                   1578: 
                   1579:   function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) { 
1.76      ng       1580:     var hDoc = hwdWin.document;
                   1581:     hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1582:     hDoc.write("<td align=\\"left\\">");
1.465     albertel 1583:     hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+">&nbsp;"+clrtxt+"<\\/td>");
1.76      ng       1584:     hDoc.write("<td align=\\"left\\">");
1.465     albertel 1585:     hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+">&nbsp;"+sztxt+"<\\/td>");
1.76      ng       1586:     hDoc.write("<td align=\\"left\\">");
1.465     albertel 1587:     hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+">&nbsp;"+sytxt+"<\\/td>");
                   1588:     hDoc.write("<\\/tr>");
1.44      ng       1589:   }
                   1590: 
                   1591:   function highlightend() { 
1.76      ng       1592:     var hDoc = hwdWin.document;
1.465     albertel 1593:     hDoc.write("<\\/table>");
                   1594:     hDoc.write("<\\/td><\\/tr><\\/table>&nbsp;");
1.76      ng       1595:     hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\">&nbsp;&nbsp;");
1.326     albertel 1596:     hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465     albertel 1597:     hDoc.write("<\\/form>");
1.351     albertel 1598:     hDoc.write('$end_page_highlight_central');
1.128     ng       1599:     hDoc.close();
1.44      ng       1600:   }
                   1601: 
                   1602: </script>
                   1603: SUBJAVASCRIPT
                   1604: }
                   1605: 
1.349     albertel 1606: sub get_increment {
1.348     bowersj2 1607:     my $increment = $env{'form.increment'};
                   1608:     if ($increment != 1 && $increment != .5 && $increment != .25 &&
                   1609:         $increment != .1) {
                   1610:         $increment = 1;
                   1611:     }
                   1612:     return $increment;
                   1613: }
                   1614: 
1.71      ng       1615: #--- displays the grading box, used in essay type problem and grading by page/sequence
                   1616: sub gradeBox {
1.322     albertel 1617:     my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381     albertel 1618:     my $checkIcon = '<img alt="'.&mt('Check Mark').
                   1619: 	'" src="'.$request->dir_config('lonIconsURL').
1.71      ng       1620: 	'/check.gif" height="16" border="0" />';
                   1621:     my $wgt    = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466     albertel 1622:     my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)') 
                   1623:                            : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71      ng       1624:     $wgt       = ($wgt > 0 ? $wgt : '1');
                   1625:     my $score  = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320     albertel 1626: 		  '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71      ng       1627:     my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466     albertel 1628:     my $display_part= &get_display_part($partid,$symb);
1.270     albertel 1629:     my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
                   1630: 				       [$partid]);
                   1631:     my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269     raeburn  1632:     if ($last_resets{$partid}) {
                   1633:         $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
                   1634:     }
1.71      ng       1635:     $result.='<table border="0"><tr><td>'.
1.207     albertel 1636: 	'<b>Part: </b>'.$display_part.' <b>Points: </b></td><td>'."\n";
1.71      ng       1637:     my $ctr = 0;
1.348     bowersj2 1638:     my $thisweight = 0;
1.349     albertel 1639:     my $increment = &get_increment();
1.71      ng       1640:     $result.='<table border="0"><tr>'."\n";  # display radio buttons in a nice table 10 across
1.348     bowersj2 1641:     while ($thisweight<=$wgt) {
1.381     albertel 1642: 	$result.= '<td><span style="white-space: nowrap;"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.71      ng       1643: 	    'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348     bowersj2 1644: 	    $thisweight.')" value="'.$thisweight.'" '.
1.401     albertel 1645: 	    ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.71      ng       1646: 	$result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348     bowersj2 1647:         $thisweight += $increment;
1.71      ng       1648: 	$ctr++;
                   1649:     }
                   1650:     $result.='</tr></table>';
                   1651:     $result.='</td><td>&nbsp;<b>or</b>&nbsp;</td>'."\n";
                   1652:     $result.='<td><input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
                   1653: 	($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
                   1654: 	'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
                   1655: 	$wgt.')" /></td>'."\n";
                   1656:     $result.='<td>/'.$wgt.' '.$wgtmsg.
                   1657: 	($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? '&nbsp;'.$checkIcon : '').
                   1658: 	' </td><td>'."\n";
                   1659:     $result.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
                   1660: 	'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
                   1661:     if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.384     albertel 1662: 	$result.='<option></option>'.
1.401     albertel 1663: 	    '<option selected="selected">excused</option>';
1.71      ng       1664:     } else {
1.401     albertel 1665: 	$result.='<option selected="selected"></option>'.
1.125     ng       1666: 	    '<option>excused</option>';
1.71      ng       1667:     }
1.125     ng       1668:     $result.='<option>reset status</option></select>'."\n";
1.381     albertel 1669:     $result.="&nbsp;&nbsp;\n";
1.71      ng       1670:     $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
                   1671: 	'<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
                   1672: 	'<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269     raeburn  1673: 	$$record{'resource.'.$partid.'.solved'}.'" />'."\n".
                   1674:         '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
                   1675:         $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
                   1676:         '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
                   1677:         $aggtries.'" />'."\n";
1.71      ng       1678:     $result.='</td></tr></table>'."\n";
1.323     banghart 1679:     $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record);
1.318     banghart 1680:     return $result;
                   1681: }
1.322     albertel 1682: 
                   1683: sub handback_box {
1.323     banghart 1684:     my ($symb,$uname,$udom,$counter,$partid,$record) = @_;
1.324     albertel 1685:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.323     banghart 1686:     my (@respids);
1.375     albertel 1687:      my @part_response_id = &flatten_responseType($responseType);
                   1688:     foreach my $part_response_id (@part_response_id) {
                   1689:     	my ($part,$resp) = @{ $part_response_id };
1.323     banghart 1690:         if ($part eq $partid) {
1.375     albertel 1691:             push(@respids,$resp);
1.323     banghart 1692:         }
                   1693:     }
1.318     banghart 1694:     my $result;
1.323     banghart 1695:     foreach my $respid (@respids) {
1.322     albertel 1696: 	my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
                   1697: 	my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
                   1698: 	next if (!@$files);
                   1699: 	my $file_counter = 1;
1.313     banghart 1700: 	foreach my $file (@$files) {
1.368     banghart 1701: 	    if ($file =~ /\/portfolio\//) {
                   1702:     	        my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
                   1703:     	        my ($name,$version,$ext) = &file_name_version_ext($file_disp);
                   1704:     	        $file_disp = "$name.$ext";
                   1705:     	        $file = $file_path.$file_disp;
                   1706:     	        $result.=&mt('Return commented version of [_1] to student.',
                   1707:     			 '<span class="LC_filename">'.$file_disp.'</span>');
                   1708:     	        $result.='<input type="file"   name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
                   1709:     	        $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />';
1.466     albertel 1710:     	        $result.='(File will be uploaded when you click on Save &amp; Next below.)<br />';
1.368     banghart 1711:     	        $file_counter++;
                   1712: 	    }
1.322     albertel 1713: 	}
1.313     banghart 1714:     }
1.318     banghart 1715:     return $result;    
1.71      ng       1716: }
1.44      ng       1717: 
1.58      albertel 1718: sub show_problem {
1.382     albertel 1719:     my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144     albertel 1720:     my $rendered;
1.382     albertel 1721:     my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329     albertel 1722:     &Apache::lonxml::remember_problem_counter();
1.144     albertel 1723:     if ($mode eq 'both' or $mode eq 'text') {
                   1724: 	$rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382     albertel 1725: 						       $env{'request.course.id'},
                   1726: 						       undef,\%form);
1.144     albertel 1727:     }
1.58      albertel 1728:     if ($removeform) {
                   1729: 	$rendered=~s|<form(.*?)>||g;
                   1730: 	$rendered=~s|</form>||g;
1.374     albertel 1731: 	$rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58      albertel 1732:     }
1.144     albertel 1733:     my $companswer;
                   1734:     if ($mode eq 'both' or $mode eq 'answer') {
1.329     albertel 1735: 	&Apache::lonxml::restore_problem_counter();
1.382     albertel 1736: 	$companswer=
                   1737: 	    &Apache::loncommon::get_student_answers($symb,$uname,$udom,
                   1738: 						    $env{'request.course.id'},
                   1739: 						    %form);
1.144     albertel 1740:     }
1.58      albertel 1741:     if ($removeform) {
                   1742: 	$companswer=~s|<form(.*?)>||g;
                   1743: 	$companswer=~s|</form>||g;
1.144     albertel 1744: 	$companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58      albertel 1745:     }
1.468     albertel 1746:     $rendered=
                   1747: 	'<div class="LC_grade_show_problem_header">'.
                   1748: 	&mt('View of the problem').
                   1749: 	'</div><div class="LC_grade_show_problem_problem">'.
                   1750: 	$rendered.
                   1751: 	'</div>';
                   1752:     $companswer=
                   1753: 	'<div class="LC_grade_show_problem_header">'.
                   1754: 	&mt('Correct answer').
                   1755: 	'</div><div class="LC_grade_show_problem_problem">'.
                   1756: 	$companswer.
                   1757: 	'</div>';
                   1758:     my $result;
1.144     albertel 1759:     if ($mode eq 'both') {
1.468     albertel 1760: 	$result=$rendered.$companswer;
1.144     albertel 1761:     } elsif ($mode eq 'text') {
1.468     albertel 1762: 	$result=$rendered;
1.144     albertel 1763:     } elsif ($mode eq 'answer') {
1.468     albertel 1764: 	$result=$companswer;
1.144     albertel 1765:     }
1.468     albertel 1766:     $result='<div class="LC_grade_show_problem">'.$result.'</div>';
1.71      ng       1767:     return $result;
1.58      albertel 1768: }
1.397     albertel 1769: 
1.396     banghart 1770: sub files_exist {
                   1771:     my ($r, $symb) = @_;
                   1772:     my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397     albertel 1773: 
1.396     banghart 1774:     foreach my $student (@students) {
                   1775:         my ($uname,$udom,$fullname) = split(/:/,$student);
1.397     albertel 1776:         my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
                   1777: 					      $udom,$uname);
1.396     banghart 1778:         my ($string,$timestamp)= &get_last_submission(\%record);
1.397     albertel 1779:         foreach my $submission (@$string) {
                   1780:             my ($partid,$respid) =
                   1781: 		($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
                   1782:             my $files=&get_submitted_files($udom,$uname,$partid,$respid,
                   1783: 					   \%record);
                   1784:             return 1 if (@$files);
1.396     banghart 1785:         }
                   1786:     }
1.397     albertel 1787:     return 0;
1.396     banghart 1788: }
1.397     albertel 1789: 
1.394     banghart 1790: sub download_all_link {
                   1791:     my ($r,$symb) = @_;
1.395     albertel 1792:     my $all_students = 
                   1793: 	join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
                   1794: 
                   1795:     my $parts =
                   1796: 	join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
                   1797: 
1.394     banghart 1798:     my $identifier = &Apache::loncommon::get_cgi_id();
                   1799:     &Apache::lonnet::appenv('cgi.'.$identifier.'.students' => $all_students,
                   1800:                             'cgi.'.$identifier.'.symb' => $symb,
1.395     albertel 1801:                             'cgi.'.$identifier.'.parts' => $parts,);
                   1802:     $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
                   1803: 	      &mt('Download All Submitted Documents').'</a>');
1.394     banghart 1804:     return
                   1805: }
1.395     albertel 1806: 
1.432     banghart 1807: sub build_section_inputs {
                   1808:     my $section_inputs;
                   1809:     if ($env{'form.section'} eq '') {
                   1810:         $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
                   1811:     } else {
                   1812:         my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434     albertel 1813:         foreach my $section (@sections) {
1.432     banghart 1814:             $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
                   1815:         }
                   1816:     }
                   1817:     return $section_inputs;
                   1818: }
                   1819: 
1.44      ng       1820: # --------------------------- show submissions of a student, option to grade 
                   1821: sub submission {
                   1822:     my ($request,$counter,$total) = @_;
1.257     albertel 1823:     my ($uname,$udom)     = ($env{'form.student'},$env{'form.userdom'});
                   1824:     $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
                   1825:     my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
                   1826:     $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.324     albertel 1827:     my $symb = &get_symb($request); 
                   1828:     if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104     albertel 1829: 
                   1830:     if (!&canview($usec)) {
1.398     albertel 1831: 	$request->print('<span class="LC_warning">Unable to view requested student.('.
                   1832: 			$uname.':'.$udom.' in section '.$usec.' in course id '.
                   1833: 			$env{'request.course.id'}.')</span>');
1.324     albertel 1834: 	$request->print(&show_grading_menu_form($symb));
1.104     albertel 1835: 	return;
                   1836:     }
                   1837: 
1.257     albertel 1838:     if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
                   1839:     if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
                   1840:     if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
                   1841:     my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381     albertel 1842:     my $checkIcon = '<img alt="'.&mt('Check Mark').
                   1843: 	'" src="'.$request->dir_config('lonIconsURL').
1.122     ng       1844: 	'/check.gif" height="16" border="0" />';
1.41      ng       1845: 
1.426     albertel 1846:     my %old_essays;
1.41      ng       1847:     # header info
                   1848:     if ($counter == 0) {
                   1849: 	&sub_page_js($request);
1.257     albertel 1850: 	&sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
                   1851: 	$env{'form.probTitle'} = $env{'form.probTitle'} eq '' ? 
                   1852: 	    &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.397     albertel 1853: 	if ($env{'form.handgrade'} eq 'yes' && &files_exist($request, $symb)) {
1.396     banghart 1854: 	    &download_all_link($request, $symb);
                   1855: 	}
1.398     albertel 1856: 	$request->print('<h3>&nbsp;<span class="LC_info">Submission Record</span></h3>'."\n".
                   1857: 			'<h4>&nbsp;<b>Resource: </b>'.$env{'form.probTitle'}.'</h4>'."\n");
1.118     ng       1858: 
1.44      ng       1859: 	# option to display problem, only once else it cause problems 
                   1860:         # with the form later since the problem has a form.
1.257     albertel 1861: 	if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144     albertel 1862: 	    my $mode;
1.257     albertel 1863: 	    if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144     albertel 1864: 		$mode='both';
1.257     albertel 1865: 	    } elsif ($env{'form.vProb'} eq 'yes') {
1.144     albertel 1866: 		$mode='text';
1.257     albertel 1867: 	    } elsif ($env{'form.vAns'} eq 'yes') {
1.144     albertel 1868: 		$mode='answer';
                   1869: 	    }
1.329     albertel 1870: 	    &Apache::lonxml::clear_problem_counter();
1.144     albertel 1871: 	    $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41      ng       1872: 	}
1.441     www      1873: 
1.44      ng       1874: 	# kwclr is the only variable that is guaranteed to be non blank 
                   1875:         # if this subroutine has been called once.
1.41      ng       1876: 	my %keyhash = ();
1.257     albertel 1877: 	if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41      ng       1878: 	    %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257     albertel 1879: 					     $env{'course.'.$env{'request.course.id'}.'.domain'},
                   1880: 					     $env{'course.'.$env{'request.course.id'}.'.num'});
1.41      ng       1881: 
1.257     albertel 1882: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
                   1883: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                   1884: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                   1885: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                   1886: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                   1887: 	    $env{'form.msgsub'}   = $keyhash{$symb.'_subject'} ne '' ? 
                   1888: 		$keyhash{$symb.'_subject'} : $env{'form.probTitle'};
                   1889: 	    $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41      ng       1890: 	}
1.257     albertel 1891: 	my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442     banghart 1892: 	my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303     banghart 1893: 	$request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41      ng       1894: 			'<input type="hidden" name="command"    value="handgrade" />'."\n".
1.257     albertel 1895: 			'<input type="hidden" name="saveState"  value="'.$env{'form.saveState'}.'" />'."\n".
1.442     banghart 1896: 			'<input type="hidden" name="Status"     value="'.$stu_status.'" />'."\n".
1.120     ng       1897: 			'<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257     albertel 1898: 			'<input type="hidden" name="probTitle"  value="'.$env{'form.probTitle'}.'" />'."\n".
1.41      ng       1899: 			'<input type="hidden" name="refresh"    value="off" />'."\n".
1.120     ng       1900: 			'<input type="hidden" name="studentNo"  value="" />'."\n".
                   1901: 			'<input type="hidden" name="gradeOpt"   value="" />'."\n".
1.418     albertel 1902: 			'<input type="hidden" name="symb"       value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257     albertel 1903: 			'<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
                   1904: 			'<input type="hidden" name="vProb"      value="'.$env{'form.vProb'}.'" />'."\n".
                   1905: 			'<input type="hidden" name="vAns"       value="'.$env{'form.vAns'}.'" />'."\n".
                   1906: 			'<input type="hidden" name="lastSub"    value="'.$env{'form.lastSub'}.'" />'."\n".
1.432     banghart 1907: 			&build_section_inputs().
1.326     albertel 1908: 			'<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
                   1909: 			'<input type="hidden" name="handgrade"  value="'.$env{'form.handgrade'}.'" />'."\n".
1.41      ng       1910: 			'<input type="hidden" name="NCT"'.
1.257     albertel 1911: 			' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
                   1912: 	if ($env{'form.handgrade'} eq 'yes') {
                   1913: 	    $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
                   1914: 			    '<input type="hidden" name="kwclr"    value="'.$env{'form.kwclr'}.'" />'."\n".
                   1915: 			    '<input type="hidden" name="kwsize"   value="'.$env{'form.kwsize'}.'" />'."\n".
                   1916: 			    '<input type="hidden" name="kwstyle"  value="'.$env{'form.kwstyle'}.'" />'."\n".
                   1917: 			    '<input type="hidden" name="msgsub"   value="'.$env{'form.msgsub'}.'" />'."\n".
1.123     ng       1918: 			    '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257     albertel 1919: 			    '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154     albertel 1920: 	    foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
                   1921: 		$request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
                   1922: 	    }
1.123     ng       1923: 	}
1.41      ng       1924: 	
                   1925: 	my ($cts,$prnmsg) = (1,'');
1.257     albertel 1926: 	while ($cts <= $env{'form.savemsgN'}) {
1.41      ng       1927: 	    $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123     ng       1928: 		(!exists($keyhash{$symb.'_savemsg'.$cts}) ? 
1.257     albertel 1929: 		 &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80      ng       1930: 		 &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123     ng       1931: 		'" />'."\n".
                   1932: 		'<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41      ng       1933: 	    $cts++;
                   1934: 	}
                   1935: 	$request->print($prnmsg);
1.32      ng       1936: 
1.257     albertel 1937: 	if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.88      www      1938: #
                   1939: # Print out the keyword options line
                   1940: #
1.41      ng       1941: 	    $request->print(<<KEYWORDS);
1.38      ng       1942: &nbsp;<b>Keyword Options:</b>&nbsp;
1.417     albertel 1943: <a href="javascript:keywords(document.SCORE);" target="_self">List</a>&nbsp; &nbsp;
1.38      ng       1944: <a href="#" onMouseDown="javascript:getSel(); return false"
                   1945:  CLASS="page">Paste Selection to List</a>&nbsp; &nbsp;
1.417     albertel 1946: <a href="javascript:kwhighlight();" target="_self">Highlight Attribute</a><br /><br />
1.38      ng       1947: KEYWORDS
1.88      www      1948: #
                   1949: # Load the other essays for similarity check
                   1950: #
1.324     albertel 1951:             my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384     albertel 1952: 	    my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359     www      1953: 	    $apath=&escape($apath);
1.88      www      1954: 	    $apath=~s/\W/\_/gs;
1.426     albertel 1955: 	    %old_essays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
1.41      ng       1956:         }
                   1957:     }
1.44      ng       1958: 
1.441     www      1959: # This is where output for one specific student would start
1.468     albertel 1960:     my $add_class = ($counter%2) ? 'LC_grade_show_user_odd_row' : '';
1.441     www      1961:     $request->print("\n\n".
1.468     albertel 1962:                     '<div class="LC_grade_show_user '.$add_class.'">'.
                   1963: 		    '<div class="LC_grade_user_name">'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</div>'.
                   1964: 		    '<div class="LC_grade_show_user_body">'."\n");
1.441     www      1965: 
1.257     albertel 1966:     if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144     albertel 1967: 	my $mode;
1.257     albertel 1968: 	if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144     albertel 1969: 	    $mode='both';
1.257     albertel 1970: 	} elsif ($env{'form.vProb'} eq 'all' ) {
1.144     albertel 1971: 	    $mode='text';
1.257     albertel 1972: 	} elsif ($env{'form.vAns'} eq 'all') {
1.144     albertel 1973: 	    $mode='answer';
                   1974: 	}
1.329     albertel 1975: 	&Apache::lonxml::clear_problem_counter();
1.475     albertel 1976: 	$request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58      albertel 1977:     }
1.144     albertel 1978: 
1.257     albertel 1979:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324     albertel 1980:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.41      ng       1981: 
1.44      ng       1982:     # Display student info
1.41      ng       1983:     $request->print(($counter == 0 ? '' : '<br />'));
1.468     albertel 1984:     my $result='<div class="LC_grade_submissions">';
                   1985:     
                   1986:     $result.='<div class="LC_grade_submissions_header">';
                   1987:     $result.= &mt('Submissions');
1.45      ng       1988:     $result.='<input type="hidden" name="name'.$counter.
1.257     albertel 1989: 	'" value="'.$env{'form.fullname'}.'" />'."\n";
1.469     albertel 1990:     if ($env{'form.handgrade'} eq 'no') {
                   1991: 	$result.='<span class="LC_grade_check_note">'.
                   1992: 	    &mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)."</span>\n";
                   1993: 
                   1994:     }
                   1995: 
                   1996: 
1.41      ng       1997: 
1.118     ng       1998:     # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464     albertel 1999:     my $fullname;
                   2000:     my $col_fullnames = [];
1.257     albertel 2001:     if ($env{'form.handgrade'} eq 'yes') {
1.464     albertel 2002: 	(my $sub_result,$fullname,$col_fullnames)=
                   2003: 	    &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
                   2004: 				 $counter);
                   2005: 	$result.=$sub_result;
1.41      ng       2006:     }
1.44      ng       2007:     $request->print($result."\n");
1.468     albertel 2008:     $request->print('</div>'."\n");
1.44      ng       2009:     # print student answer/submission
                   2010:     # Options are (1) Handgaded submission only
                   2011:     #             (2) Last submission, includes submission that is not handgraded 
                   2012:     #                  (for multi-response type part)
                   2013:     #             (3) Last submission plus the parts info
                   2014:     #             (4) The whole record for this student
1.257     albertel 2015:     if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151     albertel 2016: 	my ($string,$timestamp)= &get_last_submission(\%record);
1.468     albertel 2017: 	
                   2018: 	my $lastsubonly;
                   2019: 
1.151     albertel 2020: 	if ($$timestamp eq '') {
1.468     albertel 2021: 	    $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>'; 
1.151     albertel 2022: 	} else {
1.468     albertel 2023: 	    $lastsubonly = '<div class="LC_grade_submissions_body"> <b>Date Submitted:</b> '.$$timestamp."\n";
                   2024: 
1.151     albertel 2025: 	    my %seenparts;
1.375     albertel 2026: 	    my @part_response_id = &flatten_responseType($responseType);
                   2027: 	    foreach my $part (@part_response_id) {
1.393     albertel 2028: 		next if ($env{'form.lastSub'} eq 'hdgrade' 
                   2029: 			 && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
                   2030: 
1.375     albertel 2031: 		my ($partid,$respid) = @{ $part };
1.324     albertel 2032: 		my $display_part=&get_display_part($partid,$symb);
1.257     albertel 2033: 		if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151     albertel 2034: 		    if (exists($seenparts{$partid})) { next; }
                   2035: 		    $seenparts{$partid}=1;
1.207     albertel 2036: 		    my $submitby='<b>Part:</b> '.$display_part.
                   2037: 			' <b>Collaborative submission by:</b> '.
1.151     albertel 2038: 			'<a href="javascript:viewSubmitter(\''.
1.257     albertel 2039: 			$env{"form.$uname:$udom:$partid:submitted_by"}.
1.417     albertel 2040: 			'\');" target="_self">'.
1.257     albertel 2041: 			$$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151     albertel 2042: 		    $request->print($submitby);
                   2043: 		    next;
                   2044: 		}
                   2045: 		my $responsetype = $responseType->{$partid}->{$respid};
                   2046: 		if (!exists($record{"resource.$partid.$respid.submission"})) {
1.468     albertel 2047: 		    $lastsubonly.="\n".'<div class="LC_grade_submission_part"><b>Part:</b> '.
1.398     albertel 2048: 			$display_part.' <span class="LC_internal_info">( ID '.$respid.
                   2049: 			' )</span>&nbsp; &nbsp;'.
1.468     albertel 2050: 			'<span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br /><br /></div>';
1.151     albertel 2051: 		    next;
                   2052: 		}
1.468     albertel 2053: 		foreach my $submission (@$string) {
                   2054: 		    my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375     albertel 2055: 		    if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.468     albertel 2056: 		    my ($ressub,$subval) = split(/:/,$submission,2);
1.151     albertel 2057: 		    # Similarity check
                   2058: 		    my $similar='';
1.257     albertel 2059: 		    if($env{'form.checkPlag'}){
1.151     albertel 2060: 			my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.426     albertel 2061: 			    &most_similar($uname,$udom,$subval,\%old_essays);
1.151     albertel 2062: 			if ($osim) {
                   2063: 			    $osim=int($osim*100.0);
1.426     albertel 2064: 			    my %old_course_desc = 
                   2065: 				&Apache::lonnet::coursedescription($ocrsid,
                   2066: 								   {'one_time' => 1});
                   2067: 
                   2068: 			    $similar="<hr /><h3><span class=\"LC_warning\">".
1.427     albertel 2069: 				&mt('Essay is [_1]% similar to an essay by [_2] ([_3]:[_4]) in course [_5] (course id [_6]:[_7])',
1.426     albertel 2070: 				    $osim,
                   2071: 				    &Apache::loncommon::plainname($oname,$odom),
1.427     albertel 2072: 				    $oname,$odom,
1.426     albertel 2073: 				    $old_course_desc{'description'},
1.427     albertel 2074: 				    $old_course_desc{'num'},
1.426     albertel 2075: 				    $old_course_desc{'domain'}).
1.398     albertel 2076: 				'</span></h3><blockquote><i>'.
1.151     albertel 2077: 				&keywords_highlight($oessay).
                   2078: 				'</i></blockquote><hr />';
                   2079: 			}
1.150     albertel 2080: 		    }
1.151     albertel 2081: 		    my $order=&get_order($partid,$respid,$symb,$uname,$udom);
1.257     albertel 2082: 		    if ($env{'form.lastSub'} eq 'lastonly' || 
                   2083: 			($env{'form.lastSub'} eq 'hdgrade' && 
1.377     albertel 2084: 			 $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324     albertel 2085: 			my $display_part=&get_display_part($partid,$symb);
1.468     albertel 2086: 			$lastsubonly.='<div class="LC_grade_submission_part"><b>Part:</b> '.
1.403     albertel 2087: 			    $display_part.' <span class="LC_internal_info">( ID '.$respid.
1.398     albertel 2088: 			    ' )</span>&nbsp; &nbsp;';
1.313     banghart 2089: 			my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
                   2090: 			if (@$files) {
1.468     albertel 2091: 			    $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain virusses').'</span><br />';
1.303     banghart 2092: 			    my $file_counter = 0;
1.313     banghart 2093: 			    foreach my $file (@$files) {
1.468     albertel 2094: 			        $file_counter++;
1.232     albertel 2095: 				&Apache::lonnet::allowuploaded('/adm/grades',$file);
1.335     albertel 2096: 				$lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border=0"> '.$file.'</a>';
1.232     albertel 2097: 			    }
1.236     albertel 2098: 			    $lastsubonly.='<br />';
1.41      ng       2099: 			}
1.468     albertel 2100: 			$lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
1.151     albertel 2101: 			    &cleanRecord($subval,$responsetype,$symb,$partid,
                   2102: 					 $respid,\%record,$order);
                   2103: 			if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468     albertel 2104: 			$lastsubonly.='</div>';
1.41      ng       2105: 		    }
                   2106: 		}
                   2107: 	    }
1.468     albertel 2108: 	    $lastsubonly.='</div>'."\n";
1.151     albertel 2109: 	}
                   2110: 	$request->print($lastsubonly);
1.468     albertel 2111:    } elsif ($env{'form.lastSub'} eq 'datesub') {
1.324     albertel 2112: 	my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
1.148     albertel 2113: 	$request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257     albertel 2114:     } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41      ng       2115: 	$request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257     albertel 2116: 								 $env{'request.course.id'},
1.44      ng       2117: 								 $last,'.submission',
                   2118: 								 'Apache::grades::keywords_highlight'));
1.41      ng       2119:     }
1.120     ng       2120: 
1.121     ng       2121:     $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
                   2122: 	.$udom.'" />'."\n");
1.44      ng       2123:     # return if view submission with no grading option
1.257     albertel 2124:     if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120     ng       2125: 	my $toGrade.='<input type="button" value="Grade Student" '.
1.121     ng       2126: 	    'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
1.417     albertel 2127: 	    .$counter.'\');" target="_self" /> &nbsp;'."\n" if (&canmodify($usec));
1.468     albertel 2128: 	$toGrade.='</div>'."\n";
1.257     albertel 2129: 	if (($env{'form.command'} eq 'submission') || 
                   2130: 	    ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.324     albertel 2131: 	    $toGrade.='</form>'.&show_grading_menu_form($symb); 
1.169     albertel 2132: 	}
1.180     albertel 2133: 	$request->print($toGrade);
1.41      ng       2134: 	return;
1.180     albertel 2135:     } else {
1.468     albertel 2136: 	$request->print('</div>'."\n");
1.41      ng       2137:     }
1.33      ng       2138: 
1.121     ng       2139:     # essay grading message center
1.257     albertel 2140:     if ($env{'form.handgrade'} eq 'yes') {
1.468     albertel 2141: 	my $result='<div class="LC_grade_message_center">';
                   2142:     
                   2143: 	$result.='<div class="LC_grade_message_center_header">'.
                   2144: 	    &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257     albertel 2145: 	my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118     ng       2146: 	my $msgfor = $givenn.' '.$lastname;
1.464     albertel 2147: 	if (scalar(@$col_fullnames) > 0) {
                   2148: 	    my $lastone = pop(@$col_fullnames);
                   2149: 	    $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118     ng       2150: 	}
                   2151: 	$msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468     albertel 2152: 	$result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121     ng       2153: 	    '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
                   2154: 	$result.='&nbsp;<a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417     albertel 2155: 	    ',\''.$msgfor.'\');" target="_self">'.
1.464     albertel 2156: 	    &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
1.350     albertel 2157: 	    &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.118     ng       2158: 	    '<img src="'.$request->dir_config('lonIconsURL').
                   2159: 	    '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298     www      2160: 	    '<br />&nbsp;('.
1.468     albertel 2161: 	    &mt('Message will be sent when you click on Save &amp; Next below.').")\n";
                   2162: 	$result.='</div></div>';
1.121     ng       2163: 	$request->print($result);
1.118     ng       2164:     }
1.41      ng       2165: 
                   2166:     my %seen = ();
                   2167:     my @partlist;
1.129     ng       2168:     my @gradePartRespid;
1.375     albertel 2169:     my @part_response_id = &flatten_responseType($responseType);
1.468     albertel 2170:     $request->print('<div class="LC_grade_assign">'.
                   2171: 		    
                   2172: 		    '<div class="LC_grade_assign_header">'.
                   2173: 		    &mt('Assign Grades').'</div>'.
                   2174: 		    '<div class="LC_grade_assign_body">');
1.375     albertel 2175:     foreach my $part_response_id (@part_response_id) {
                   2176:     	my ($partid,$respid) = @{ $part_response_id };
                   2177: 	my $part_resp = join('_',@{ $part_response_id });
1.322     albertel 2178: 	next if ($seen{$partid} > 0);
1.41      ng       2179: 	$seen{$partid}++;
1.393     albertel 2180: 	next if ($$handgrade{$part_resp} ne 'yes' 
                   2181: 		 && $env{'form.lastSub'} eq 'hdgrade');
1.41      ng       2182: 	push @partlist,$partid;
1.129     ng       2183: 	push @gradePartRespid,$partid.'.'.$respid;
1.322     albertel 2184: 	$request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41      ng       2185:     }
1.468     albertel 2186:     $request->print('</div></div>');
                   2187: 
                   2188:     $request->print('<div class="LC_grade_info_links">');
                   2189:     if ($perm{'vgr'}) {
                   2190: 	$request->print(
                   2191: 	    &Apache::loncommon::track_student_link(&mt('View recent activity'),
                   2192: 						   $uname,$udom,'check'));
                   2193:     }
                   2194:     if ($perm{'opa'}) {
                   2195: 	$request->print(
                   2196: 	    &Apache::loncommon::pprmlink(&mt('Set/Change parameters'),
                   2197: 					 $uname,$udom,$symb,'check'));
                   2198:     }
                   2199:     $request->print('</div>');
                   2200: 
1.45      ng       2201:     $result='<input type="hidden" name="partlist'.$counter.
                   2202: 	'" value="'.(join ":",@partlist).'" />'."\n";
1.129     ng       2203:     $result.='<input type="hidden" name="gradePartRespid'.
                   2204: 	'" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45      ng       2205:     my $ctr = 0;
                   2206:     while ($ctr < scalar(@partlist)) {
                   2207: 	$result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
                   2208: 	    $partlist[$ctr].'" />'."\n";
                   2209: 	$ctr++;
                   2210:     }
1.468     albertel 2211:     $request->print($result.''."\n");
1.41      ng       2212: 
1.441     www      2213: # Done with printing info for one student
                   2214: 
1.468     albertel 2215:     $request->print('</div>');#LC_grade_show_user_body
                   2216:     $request->print('</div>');#LC_grade_show_user
1.441     www      2217: 
                   2218: 
1.41      ng       2219:     # print end of form
                   2220:     if ($counter == $total) {
1.297     www      2221: 	my $endform='<table border="0"><tr><td>'."\n";
1.119     ng       2222: 	$endform.='<input type="button" value="Save & Next" '.
                   2223: 	    'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417     albertel 2224: 	    $total.','.scalar(@partlist).');" target="_self" /> &nbsp;'."\n";
1.119     ng       2225: 	my $ntstu ='<select name="NTSTU">'.
                   2226: 	    '<option>1</option><option>2</option>'.
                   2227: 	    '<option>3</option><option>5</option>'.
                   2228: 	    '<option>7</option><option>10</option></select>'."\n";
1.257     albertel 2229: 	my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401     albertel 2230: 	$ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.119     ng       2231: 	$endform.=$ntstu.'student(s) &nbsp;&nbsp;';
1.126     ng       2232: 	$endform.='<input type="button" value="Previous" '.
1.417     albertel 2233: 	    'onClick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> &nbsp;'."\n".
1.126     ng       2234: 	    '<input type="button" value="Next" '.
1.417     albertel 2235: 	    'onClick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> &nbsp;';
1.126     ng       2236: 	$endform.='(Next and Previous (student) do not save the scores.)'."\n" ;
1.349     albertel 2237:         $endform.="<input type='hidden' value='".&get_increment().
1.348     bowersj2 2238:             "' name='increment' />";
1.45      ng       2239: 	$endform.='</td><tr></table></form>';
1.324     albertel 2240: 	$endform.=&show_grading_menu_form($symb);
1.41      ng       2241: 	$request->print($endform);
                   2242:     }
                   2243:     return '';
1.38      ng       2244: }
                   2245: 
1.464     albertel 2246: sub check_collaborators {
                   2247:     my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
                   2248:     my ($result,@col_fullnames);
                   2249:     my ($classlist,undef,$fullname) = &getclasslist('all','0');
                   2250:     foreach my $part (keys(%$handgrade)) {
                   2251: 	my $ncol = &Apache::lonnet::EXT('resource.'.$part.
                   2252: 					'.maxcollaborators',
                   2253: 					$symb,$udom,$uname);
                   2254: 	next if ($ncol <= 0);
                   2255: 	$part =~ s/\_/\./g;
                   2256: 	next if ($record->{'resource.'.$part.'.collaborators'} eq '');
                   2257: 	my (@good_collaborators, @bad_collaborators);
                   2258: 	foreach my $possible_collaborator
                   2259: 	    (split(/,?\s+/,$record->{'resource.'.$part.'.collaborators'})) { 
                   2260: 	    $possible_collaborator =~ s/[\$\^\(\)]//g;
                   2261: 	    next if ($possible_collaborator eq '');
                   2262: 	    my ($co_name,$co_dom) = split(/\@|:/,$possible_collaborator);
                   2263: 	    $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
                   2264: 	    next if ($co_name eq $uname && $co_dom eq $udom);
                   2265: 	    # Doing this grep allows 'fuzzy' specification
                   2266: 	    my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i, 
                   2267: 			       keys(%$classlist));
                   2268: 	    if (! scalar(@matches)) {
                   2269: 		push(@bad_collaborators, $possible_collaborator);
                   2270: 	    } else {
                   2271: 		push(@good_collaborators, @matches);
                   2272: 	    }
                   2273: 	}
                   2274: 	if (scalar(@good_collaborators) != 0) {
1.466     albertel 2275: 	    $result.='<br />'.&mt('Collaborators: ');
1.464     albertel 2276: 	    foreach my $name (@good_collaborators) {
                   2277: 		my ($lastname,$givenn) = split(/,/,$$fullname{$name});
                   2278: 		push(@col_fullnames, $givenn.' '.$lastname);
                   2279: 		$result.=$fullname->{$name}.'&nbsp; &nbsp; &nbsp;';
                   2280: 	    }
                   2281: 	    $result.='<br />'."\n";
1.466     albertel 2282: 	    my ($part)=split(/\./,$part);
1.464     albertel 2283: 	    $result.='<input type="hidden" name="collaborator'.$counter.
                   2284: 		'" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
                   2285: 		"\n";
                   2286: 	}
                   2287: 	if (scalar(@bad_collaborators) > 0) {
1.466     albertel 2288: 	    $result.='<div class="LC_warning">';
1.464     albertel 2289: 	    $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
                   2290: 	    $result .= '</div>';
                   2291: 	}         
                   2292: 	if (scalar(@bad_collaborators > $ncol)) {
1.466     albertel 2293: 	    $result .= '<div class="LC_warning">';
1.464     albertel 2294: 	    $result .= &mt('This student has submitted too many '.
                   2295: 		'collaborators.  Maximum is [_1].',$ncol);
                   2296: 	    $result .= '</div>';
                   2297: 	}
                   2298:     }
                   2299:     return ($result,$fullname,\@col_fullnames);
                   2300: }
                   2301: 
1.44      ng       2302: #--- Retrieve the last submission for all the parts
1.38      ng       2303: sub get_last_submission {
1.119     ng       2304:     my ($returnhash)=@_;
1.46      ng       2305:     my (@string,$timestamp);
1.119     ng       2306:     if ($$returnhash{'version'}) {
1.46      ng       2307: 	my %lasthash=();
                   2308: 	my ($version);
1.119     ng       2309: 	for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397     albertel 2310: 	    foreach my $key (sort(split(/\:/,
                   2311: 					$$returnhash{$version.':keys'}))) {
                   2312: 		$lasthash{$key}=$$returnhash{$version.':'.$key};
                   2313: 		$timestamp = 
                   2314: 		    scalar(localtime($$returnhash{$version.':timestamp'}));
1.46      ng       2315: 	    }
                   2316: 	}
1.397     albertel 2317: 	foreach my $key (keys(%lasthash)) {
                   2318: 	    next if ($key !~ /\.submission$/);
                   2319: 
                   2320: 	    my ($partid,$foo) = split(/submission$/,$key);
                   2321: 	    my $draft  = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
1.398     albertel 2322: 		'<span class="LC_warning">Draft Copy</span> ' : '';
1.397     albertel 2323: 	    push(@string, join(':', $key, $draft.$lasthash{$key}));
1.41      ng       2324: 	}
                   2325:     }
1.397     albertel 2326:     if (!@string) {
                   2327: 	$string[0] =
1.398     albertel 2328: 	    '<span class="LC_warning">Nothing submitted - no attempts.</span>';
1.397     albertel 2329:     }
                   2330:     return (\@string,\$timestamp);
1.38      ng       2331: }
1.35      ng       2332: 
1.44      ng       2333: #--- High light keywords, with style choosen by user.
1.38      ng       2334: sub keywords_highlight {
1.44      ng       2335:     my $string    = shift;
1.257     albertel 2336:     my $size      = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
                   2337:     my $styleon   = $env{'form.kwstyle'} eq ''  ? '' : $env{'form.kwstyle'};
1.41      ng       2338:     (my $styleoff = $styleon) =~ s/\</\<\//;
1.257     albertel 2339:     my @keylist   = split(/[,\s+]/,$env{'form.keywords'});
1.398     albertel 2340:     foreach my $keyword (@keylist) {
                   2341: 	$string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41      ng       2342:     }
                   2343:     return $string;
1.38      ng       2344: }
1.36      ng       2345: 
1.44      ng       2346: #--- Called from submission routine
1.38      ng       2347: sub processHandGrade {
1.41      ng       2348:     my ($request) = shift;
1.324     albertel 2349:     my $symb   = &get_symb($request);
                   2350:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257     albertel 2351:     my $button = $env{'form.gradeOpt'};
                   2352:     my $ngrade = $env{'form.NCT'};
                   2353:     my $ntstu  = $env{'form.NTSTU'};
1.301     albertel 2354:     my $cdom   = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   2355:     my $cnum   = $env{'course.'.$env{'request.course.id'}.'.num'};
                   2356: 
1.44      ng       2357:     if ($button eq 'Save & Next') {
                   2358: 	my $ctr = 0;
                   2359: 	while ($ctr < $ngrade) {
1.257     albertel 2360: 	    my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324     albertel 2361: 	    my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71      ng       2362: 	    if ($errorflag eq 'no_score') {
                   2363: 		$ctr++;
                   2364: 		next;
                   2365: 	    }
1.104     albertel 2366: 	    if ($errorflag eq 'not_allowed') {
1.398     albertel 2367: 		$request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
1.104     albertel 2368: 		$ctr++;
                   2369: 		next;
                   2370: 	    }
1.257     albertel 2371: 	    my $includemsg = $env{'form.includemsg'.$ctr};
1.44      ng       2372: 	    my ($subject,$message,$msgstatus) = ('','','');
1.418     albertel 2373: 	    my $restitle = &Apache::lonnet::gettitle($symb);
                   2374:             my ($feedurl,$showsymb) =
                   2375: 		&get_feedurl_and_symb($symb,$uname,$udom);
                   2376: 	    my $messagetail;
1.62      albertel 2377: 	    if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298     www      2378: 		$subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295     www      2379: 		unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386     raeburn  2380: 		$subject.=' ['.$restitle.']';
1.44      ng       2381: 		my (@msgnum) = split(/,/,$includemsg);
                   2382: 		foreach (@msgnum) {
1.257     albertel 2383: 		    $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44      ng       2384: 		}
1.80      ng       2385: 		$message =&Apache::lonfeedback::clear_out_html($message);
1.298     www      2386: 		if ($env{'form.withgrades'.$ctr}) {
                   2387: 		    $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386     raeburn  2388: 		    $messagetail = " for <a href=\"".
1.418     albertel 2389: 		                   $feedurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.386     raeburn  2390: 		}
                   2391: 		$msgstatus = 
                   2392:                     &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
                   2393: 						     $message.$messagetail,
1.418     albertel 2394:                                                      undef,$feedurl,undef,
1.386     raeburn  2395:                                                      undef,undef,$showsymb,
                   2396:                                                      $restitle);
                   2397: 		$request->print('<br />'.&mt('Sending message to [_1]:[_2]',$uname,$udom).': '.
1.296     www      2398: 				$msgstatus);
1.44      ng       2399: 	    }
1.257     albertel 2400: 	    if ($env{'form.collaborator'.$ctr}) {
1.155     albertel 2401: 		my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150     albertel 2402: 		foreach my $collabstr (@collabstrs) {
                   2403: 		    my ($part,@collaborators) = split(/:/,$collabstr);
1.310     banghart 2404: 		    foreach my $collaborator (@collaborators) {
1.150     albertel 2405: 			my ($errorflag,$pts,$wgt) = 
1.324     albertel 2406: 			    &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257     albertel 2407: 					   $env{'form.unamedom'.$ctr},$part);
1.150     albertel 2408: 			if ($errorflag eq 'not_allowed') {
1.362     albertel 2409: 			    $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150     albertel 2410: 			    next;
1.418     albertel 2411: 			} elsif ($message ne '') {
                   2412: 			    my ($baseurl,$showsymb) = 
                   2413: 				&get_feedurl_and_symb($symb,$collaborator,
                   2414: 						      $udom);
                   2415: 			    if ($env{'form.withgrades'.$ctr}) {
                   2416: 				$messagetail = " for <a href=\"".
1.386     raeburn  2417:                                     $baseurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.150     albertel 2418: 			    }
1.418     albertel 2419: 			    $msgstatus = 
                   2420: 				&Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104     albertel 2421: 			}
1.44      ng       2422: 		    }
                   2423: 		}
                   2424: 	    }
                   2425: 	    $ctr++;
                   2426: 	}
                   2427:     }
                   2428: 
1.257     albertel 2429:     if ($env{'form.handgrade'} eq 'yes') {
1.119     ng       2430: 	# Keywords sorted in alphabatical order
1.257     albertel 2431: 	my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119     ng       2432: 	my %keyhash = ();
1.257     albertel 2433: 	$env{'form.keywords'}           =~ s/,\s{0,}|\s+/ /g;
                   2434: 	$env{'form.keywords'}           =~ s/^\s+|\s+$//;
                   2435: 	my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
                   2436: 	$env{'form.keywords'} = join(' ',@keywords);
                   2437: 	$keyhash{$symb.'_keywords'}     = $env{'form.keywords'};
                   2438: 	$keyhash{$symb.'_subject'}      = $env{'form.msgsub'};
                   2439: 	$keyhash{$loginuser.'_kwclr'}   = $env{'form.kwclr'};
                   2440: 	$keyhash{$loginuser.'_kwsize'}  = $env{'form.kwsize'};
                   2441: 	$keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119     ng       2442: 
                   2443: 	# message center - Order of message gets changed. Blank line is eliminated.
1.257     albertel 2444: 	# New messages are saved in env for the next student.
1.119     ng       2445: 	# All messages are saved in nohist_handgrade.db
                   2446: 	my ($ctr,$idx) = (1,1);
1.257     albertel 2447: 	while ($ctr <= $env{'form.savemsgN'}) {
                   2448: 	    if ($env{'form.savemsg'.$ctr} ne '') {
                   2449: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119     ng       2450: 		$idx++;
                   2451: 	    }
                   2452: 	    $ctr++;
1.41      ng       2453: 	}
1.119     ng       2454: 	$ctr = 0;
                   2455: 	while ($ctr < $ngrade) {
1.257     albertel 2456: 	    if ($env{'form.newmsg'.$ctr} ne '') {
                   2457: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
                   2458: 		$env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119     ng       2459: 		$idx++;
                   2460: 	    }
                   2461: 	    $ctr++;
1.41      ng       2462: 	}
1.257     albertel 2463: 	$env{'form.savemsgN'} = --$idx;
                   2464: 	$keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119     ng       2465: 	my $putresult = &Apache::lonnet::put
1.301     albertel 2466: 	    ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41      ng       2467:     }
1.44      ng       2468:     # Called by Save & Refresh from Highlight Attribute Window
1.257     albertel 2469:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
                   2470:     if ($env{'form.refresh'} eq 'on') {
1.86      ng       2471: 	my ($ctr,$total) = (0,0);
                   2472: 	while ($ctr < $ngrade) {
1.257     albertel 2473: 	    $total++ if  $env{'form.unamedom'.$ctr} ne '';
1.86      ng       2474: 	    $ctr++;
                   2475: 	}
1.257     albertel 2476: 	$env{'form.NTSTU'}=$ngrade;
1.86      ng       2477: 	$ctr = 0;
                   2478: 	while ($ctr < $total) {
1.257     albertel 2479: 	    my $processUser = $env{'form.unamedom'.$ctr};
                   2480: 	    ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
                   2481: 	    $env{'form.fullname'} = $$fullname{$processUser};
1.86      ng       2482: 	    &submission($request,$ctr,$total-1);
1.41      ng       2483: 	    $ctr++;
                   2484: 	}
                   2485: 	return '';
                   2486:     }
1.36      ng       2487: 
1.121     ng       2488: # Go directly to grade student - from submission or link from chart page
1.120     ng       2489:     if ($button eq 'Grade Student') {
1.324     albertel 2490: 	(undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
1.257     albertel 2491: 	my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
                   2492: 	($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
                   2493: 	$env{'form.fullname'} = $$fullname{$processUser};
1.120     ng       2494: 	&submission($request,0,0);
                   2495: 	return '';
                   2496:     }
                   2497: 
1.44      ng       2498:     # Get the next/previous one or group of students
1.257     albertel 2499:     my $firststu = $env{'form.unamedom0'};
                   2500:     my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119     ng       2501:     my $ctr = 2;
1.41      ng       2502:     while ($laststu eq '') {
1.257     albertel 2503: 	$laststu  = $env{'form.unamedom'.($ngrade-$ctr)};
1.41      ng       2504: 	$ctr++;
                   2505: 	$laststu = $firststu if ($ctr > $ngrade);
                   2506:     }
1.44      ng       2507: 
1.41      ng       2508:     my (@parsedlist,@nextlist);
                   2509:     my ($nextflg) = 0;
1.294     albertel 2510:     foreach (sort 
                   2511: 	     {
                   2512: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   2513: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   2514: 		 }
                   2515: 		 return $a cmp $b;
                   2516: 	     } (keys(%$fullname))) {
1.41      ng       2517: 	if ($nextflg == 1 && $button =~ /Next$/) {
                   2518: 	    push @parsedlist,$_;
                   2519: 	}
                   2520: 	$nextflg = 1 if ($_ eq $laststu);
                   2521: 	if ($button eq 'Previous') {
                   2522: 	    last if ($_ eq $firststu);
                   2523: 	    push @parsedlist,$_;
                   2524: 	}
                   2525:     }
                   2526:     $ctr = 0;
                   2527:     @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.324     albertel 2528:     my ($partlist) = &response_type($symb);
1.41      ng       2529:     foreach my $student (@parsedlist) {
1.257     albertel 2530: 	my $submitonly=$env{'form.submitonly'};
1.41      ng       2531: 	my ($uname,$udom) = split(/:/,$student);
1.301     albertel 2532: 	
                   2533: 	if ($submitonly eq 'queued') {
                   2534: 	    my %queue_status = 
                   2535: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
                   2536: 							$udom,$uname);
                   2537: 	    next if (!defined($queue_status{'gradingqueue'}));
                   2538: 	}
                   2539: 
1.156     albertel 2540: 	if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257     albertel 2541: #	    my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324     albertel 2542: 	    my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145     albertel 2543: 	    my $submitted = 0;
1.248     albertel 2544: 	    my $ungraded = 0;
                   2545: 	    my $incorrect = 0;
1.145     albertel 2546: 	    foreach (keys(%status)) {
                   2547: 		$submitted = 1 if ($status{$_} ne 'nothing');
1.248     albertel 2548: 		$ungraded = 1 if ($status{$_} =~ /^ungraded/);
                   2549: 		$incorrect = 1 if ($status{$_} =~ /^incorrect/);
1.145     albertel 2550: 		my ($foo,$partid,$foo1) = split(/\./,$_);
                   2551: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
                   2552: 		    $submitted = 0;
                   2553: 		}
1.41      ng       2554: 	    }
1.156     albertel 2555: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                   2556: 				     $submitonly eq 'incorrect' ||
                   2557: 				     $submitonly eq 'graded'));
1.248     albertel 2558: 	    next if (!$ungraded && ($submitonly eq 'graded'));
                   2559: 	    next if (!$incorrect && $submitonly eq 'incorrect');
1.41      ng       2560: 	}
                   2561: 	push @nextlist,$student if ($ctr < $ntstu);
1.129     ng       2562: 	last if ($ctr == $ntstu);
1.41      ng       2563: 	$ctr++;
                   2564:     }
1.36      ng       2565: 
1.41      ng       2566:     $ctr = 0;
                   2567:     my $total = scalar(@nextlist)-1;
1.39      ng       2568: 
1.41      ng       2569:     foreach (sort @nextlist) {
                   2570: 	my ($uname,$udom,$submitter) = split(/:/);
1.257     albertel 2571: 	$env{'form.student'}  = $uname;
                   2572: 	$env{'form.userdom'}  = $udom;
                   2573: 	$env{'form.fullname'} = $$fullname{$_};
1.41      ng       2574: 	&submission($request,$ctr,$total);
                   2575: 	$ctr++;
                   2576:     }
                   2577:     if ($total < 0) {
1.398     albertel 2578: 	my $the_end = '<h3><span class="LC_info">LON-CAPA User Message</span></h3><br />'."\n";
1.41      ng       2579: 	$the_end.='<b>Message: </b> No more students for this section or class.<br /><br />'."\n";
                   2580: 	$the_end.='Click on the button below to return to the grading menu.<br /><br />'."\n";
1.324     albertel 2581: 	$the_end.=&show_grading_menu_form($symb);
1.41      ng       2582: 	$request->print($the_end);
                   2583:     }
                   2584:     return '';
1.38      ng       2585: }
1.36      ng       2586: 
1.44      ng       2587: #---- Save the score and award for each student, if changed
1.38      ng       2588: sub saveHandGrade {
1.324     albertel 2589:     my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342     banghart 2590:     my @version_parts;
1.104     albertel 2591:     my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257     albertel 2592: 					   $env{'request.course.id'});
1.104     albertel 2593:     if (!&canmodify($usec)) { return('not_allowed'); }
1.337     banghart 2594:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251     banghart 2595:     my @parts_graded;
1.77      ng       2596:     my %newrecord  = ();
                   2597:     my ($pts,$wgt) = ('','');
1.269     raeburn  2598:     my %aggregate = ();
                   2599:     my $aggregateflag = 0;
1.301     albertel 2600:     my @parts = split(/:/,$env{'form.partlist'.$newflg});
                   2601:     foreach my $new_part (@parts) {
1.337     banghart 2602: 	#collaborator ($submi may vary for different parts
1.259     banghart 2603: 	if ($submitter && $new_part ne $part) { next; }
                   2604: 	my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125     ng       2605: 	if ($dropMenu eq 'excused') {
1.259     banghart 2606: 	    if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
                   2607: 		$newrecord{'resource.'.$new_part.'.solved'} = 'excused';
                   2608: 		if (exists($record{'resource.'.$new_part.'.awarded'})) {
                   2609: 		    $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58      albertel 2610: 		}
1.364     banghart 2611: 	        $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58      albertel 2612: 	    }
1.125     ng       2613: 	} elsif ($dropMenu eq 'reset status'
1.259     banghart 2614: 		 && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.197     albertel 2615: 	    foreach my $key (keys (%record)) {
1.259     banghart 2616: 		if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197     albertel 2617: 	    }
1.259     banghart 2618: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
1.257     albertel 2619: 		"$env{'user.name'}:$env{'user.domain'}";
1.270     albertel 2620:             my $totaltries = $record{'resource.'.$part.'.tries'};
                   2621: 
                   2622:             my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
                   2623: 					       [$new_part]);
                   2624:             my $aggtries =$totaltries;
1.269     raeburn  2625:             if ($last_resets{$new_part}) {
1.270     albertel 2626:                 $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
                   2627: 					   $new_part);
1.269     raeburn  2628:             }
1.270     albertel 2629: 
                   2630:             my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269     raeburn  2631:             if ($aggtries > 0) {
1.327     albertel 2632:                 &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269     raeburn  2633:                 $aggregateflag = 1;
                   2634:             }
1.125     ng       2635: 	} elsif ($dropMenu eq '') {
1.259     banghart 2636: 	    $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ? 
                   2637: 		    $env{'form.GD_BOX'.$newflg.'_'.$new_part} : 
                   2638: 		    $env{'form.RADVAL'.$newflg.'_'.$new_part});
                   2639: 	    if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153     albertel 2640: 		next;
                   2641: 	    }
1.259     banghart 2642: 	    $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 : 
                   2643: 		$env{'form.WGT'.$newflg.'_'.$new_part};
1.41      ng       2644: 	    my $partial= $pts/$wgt;
1.259     banghart 2645: 	    if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153     albertel 2646: 		#do not update score for part if not changed.
1.346     banghart 2647:                 &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153     albertel 2648: 		next;
1.251     banghart 2649: 	    } else {
1.259     banghart 2650: 	        push @parts_graded, $new_part;
1.153     albertel 2651: 	    }
1.259     banghart 2652: 	    if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
                   2653: 		$newrecord{'resource.'.$new_part.'.awarded'}  = $partial;
1.153     albertel 2654: 	    }
1.259     banghart 2655: 	    my $reckey = 'resource.'.$new_part.'.solved';
1.41      ng       2656: 	    if ($partial == 0) {
1.153     albertel 2657: 		if ($record{$reckey} ne 'incorrect_by_override') {
                   2658: 		    $newrecord{$reckey} = 'incorrect_by_override';
                   2659: 		}
1.41      ng       2660: 	    } else {
1.153     albertel 2661: 		if ($record{$reckey} ne 'correct_by_override') {
                   2662: 		    $newrecord{$reckey} = 'correct_by_override';
                   2663: 		}
                   2664: 	    }	    
                   2665: 	    if ($submitter && 
1.259     banghart 2666: 		($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
                   2667: 		$newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41      ng       2668: 	    }
1.259     banghart 2669: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
1.257     albertel 2670: 		"$env{'user.name'}:$env{'user.domain'}";
1.41      ng       2671: 	}
1.259     banghart 2672: 	# unless problem has been graded, set flag to version the submitted files
1.305     banghart 2673: 	unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/  || 
                   2674: 	        $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
                   2675: 	        $dropMenu eq 'reset status')
                   2676: 	   {
1.342     banghart 2677: 	    push (@version_parts,$new_part);
1.259     banghart 2678: 	}
1.41      ng       2679:     }
1.301     albertel 2680:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   2681:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   2682: 
1.344     albertel 2683:     if (%newrecord) {
                   2684:         if (@version_parts) {
1.364     banghart 2685:             my @changed_keys = &version_portfiles(\%record, \@parts_graded, 
                   2686:                                 $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344     albertel 2687: 	    @newrecord{@changed_keys} = @record{@changed_keys};
1.367     albertel 2688: 	    foreach my $new_part (@version_parts) {
                   2689: 		&handback_files($request,$symb,$stuname,$domain,$newflg,
                   2690: 				$new_part,\%newrecord);
                   2691: 	    }
1.259     banghart 2692:         }
1.44      ng       2693: 	&Apache::lonnet::cstore(\%newrecord,$symb,
1.257     albertel 2694: 				$env{'request.course.id'},$domain,$stuname);
1.380     albertel 2695: 	&check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
                   2696: 				     $cdom,$cnum,$domain,$stuname);
1.41      ng       2697:     }
1.269     raeburn  2698:     if ($aggregateflag) {
                   2699:         &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301     albertel 2700: 			      $cdom,$cnum);
1.269     raeburn  2701:     }
1.301     albertel 2702:     return ('',$pts,$wgt);
1.36      ng       2703: }
1.322     albertel 2704: 
1.380     albertel 2705: sub check_and_remove_from_queue {
                   2706:     my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
                   2707:     my @ungraded_parts;
                   2708:     foreach my $part (@{$parts}) {
                   2709: 	if (    $record->{   'resource.'.$part.'.awarded'} eq ''
                   2710: 	     && $record->{   'resource.'.$part.'.solved' } ne 'excused'
                   2711: 	     && $newrecord->{'resource.'.$part.'.awarded'} eq ''
                   2712: 	     && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
                   2713: 		) {
                   2714: 	    push(@ungraded_parts, $part);
                   2715: 	}
                   2716:     }
                   2717:     if ( !@ungraded_parts ) {
                   2718: 	&Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
                   2719: 					       $cnum,$domain,$stuname);
                   2720:     }
                   2721: }
                   2722: 
1.337     banghart 2723: sub handback_files {
                   2724:     my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.359     www      2725:     my $portfolio_root = &propath($domain,$stuname).'/userfiles/portfolio';
                   2726:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.375     albertel 2727: 
                   2728:     my @part_response_id = &flatten_responseType($responseType);
                   2729:     foreach my $part_response_id (@part_response_id) {
                   2730:     	my ($part_id,$resp_id) = @{ $part_response_id };
                   2731: 	my $part_resp = join('_',@{ $part_response_id });
1.337     banghart 2732:             if (($env{'form.'.$newflg.'_'.$part_resp.'_returndoc1'}) && ($new_part == $part_id)) {
                   2733:                 # if multiple files are uploaded names will be 'returndoc2','returndoc3'
                   2734:                 my $file_counter = 1;
1.367     albertel 2735: 		my $file_msg;
1.337     banghart 2736:                 while ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter}) {
                   2737:                     my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'.filename'};
1.338     banghart 2738:                     my ($directory,$answer_file) = 
                   2739:                         ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter} =~ /^(.*?)([^\/]*)$/);
                   2740:                     my ($answer_name,$answer_ver,$answer_ext) =
                   2741: 		        &file_name_version_ext($answer_file);
1.355     banghart 2742: 		    my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.341     banghart 2743: 		    my @dir_list = &Apache::lonnet::dirlist($portfolio_path,$domain,$stuname,$portfolio_root);
1.338     banghart 2744: 		    my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.355     banghart 2745:                     # fix file name
                   2746:                     my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
                   2747:                     my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
                   2748:             	                                $newflg.'_'.$part_resp.'_returndoc'.$file_counter,
                   2749:             	                                $save_file_name);
1.337     banghart 2750:                     if ($result !~ m|^/uploaded/|) {
1.401     albertel 2751:                         $request->print('<span class="LC_error">An error occurred ('.$result.
1.398     albertel 2752:                         ') while trying to upload '.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'</span><br />');
1.356     banghart 2753:                     } else {
1.360     banghart 2754:                         # mark the file as read only
                   2755:                         my @files = ($save_file_name);
1.372     albertel 2756:                         my @what = ($symb,$env{'request.course.id'},'handback');
1.360     banghart 2757:                         &Apache::lonnet::mark_as_readonly($domain,$stuname,\@files,\@what);
1.367     albertel 2758: 			if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
                   2759: 			    $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
                   2760: 			}
                   2761:                         $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
                   2762: 			$file_msg.= "\n".'<br /><span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span><br />";
                   2763: 
1.337     banghart 2764:                     }
                   2765:                     $request->print("<br />".$fname." will be the uploaded file name");
1.354     albertel 2766:                     $request->print(" ".$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter});
1.337     banghart 2767:                     $file_counter++;
                   2768:                 }
1.367     albertel 2769: 		my $subject = "File Handed Back by Instructor ";
                   2770: 		my $message = "A file has been returned that was originally submitted in reponse to: <br />";
                   2771: 		$message .= "<strong>".&Apache::lonnet::gettitle($symb)."</strong><br />";
                   2772: 		$message .= ' The returned file(s) are named: '. $file_msg;
                   2773: 		$message .= " and can be found in your portfolio space.";
1.418     albertel 2774: 		my ($feedurl,$showsymb) = 
                   2775: 		    &get_feedurl_and_symb($symb,$domain,$stuname);
1.386     raeburn  2776:                 my $restitle = &Apache::lonnet::gettitle($symb);
                   2777: 		my $msgstatus = 
                   2778:                    &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject.
                   2779: 			 ' (File Returned) ['.$restitle.']',$message,undef,
1.418     albertel 2780:                          $feedurl,undef,undef,undef,$showsymb,$restitle);
1.337     banghart 2781:             }
                   2782:         }
1.338     banghart 2783:     return;
1.337     banghart 2784: }
                   2785: 
1.418     albertel 2786: sub get_feedurl_and_symb {
                   2787:     my ($symb,$uname,$udom) = @_;
                   2788:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
                   2789:     $url = &Apache::lonnet::clutter($url);
                   2790:     my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
                   2791: 					$symb,$udom,$uname);
                   2792:     if ($encrypturl =~ /^yes$/i) {
                   2793: 	&Apache::lonenc::encrypted(\$url,1);
                   2794: 	&Apache::lonenc::encrypted(\$symb,1);
                   2795:     }
                   2796:     return ($url,$symb);
                   2797: }
                   2798: 
1.313     banghart 2799: sub get_submitted_files {
                   2800:     my ($udom,$uname,$partid,$respid,$record) = @_;
                   2801:     my @files;
                   2802:     if ($$record{"resource.$partid.$respid.portfiles"}) {
                   2803:         my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
                   2804:         foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
                   2805:     	    push(@files,$file_url.$file);
                   2806:         }
                   2807:     }
                   2808:     if ($$record{"resource.$partid.$respid.uploadedurl"}) {
                   2809:         push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
                   2810:     }
                   2811:     return (\@files);
                   2812: }
1.322     albertel 2813: 
1.269     raeburn  2814: # ----------- Provides number of tries since last reset.
                   2815: sub get_num_tries {
                   2816:     my ($record,$last_reset,$part) = @_;
                   2817:     my $timestamp = '';
                   2818:     my $num_tries = 0;
                   2819:     if ($$record{'version'}) {
                   2820:         for (my $version=$$record{'version'};$version>=1;$version--) {
                   2821:             if (exists($$record{$version.':resource.'.$part.'.solved'})) {
                   2822:                 $timestamp = $$record{$version.':timestamp'};
                   2823:                 if ($timestamp > $last_reset) {
                   2824:                     $num_tries ++;
                   2825:                 } else {
                   2826:                     last;
                   2827:                 }
                   2828:             }
                   2829:         }
                   2830:     }
                   2831:     return $num_tries;
                   2832: }
                   2833: 
                   2834: # ----------- Determine decrements required in aggregate totals 
                   2835: sub decrement_aggs {
                   2836:     my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
                   2837:     my %decrement = (
                   2838:                         attempts => 0,
                   2839:                         users => 0,
                   2840:                         correct => 0
                   2841:                     );
                   2842:     $decrement{'attempts'} = $aggtries;
                   2843:     if ($solvedstatus =~ /^correct/) {
                   2844:         $decrement{'correct'} = 1;
                   2845:     }
                   2846:     if ($aggtries == $totaltries) {
                   2847:         $decrement{'users'} = 1;
                   2848:     }
                   2849:     foreach my $type (keys (%decrement)) {
                   2850:         $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
                   2851:     }
                   2852:     return;
                   2853: }
                   2854: 
                   2855: # ----------- Determine timestamps for last reset of aggregate totals for parts  
                   2856: sub get_last_resets {
1.270     albertel 2857:     my ($symb,$courseid,$partids) =@_;
                   2858:     my %last_resets;
1.269     raeburn  2859:     my $cdom = $env{'course.'.$courseid.'.domain'};
                   2860:     my $cname = $env{'course.'.$courseid.'.num'};
1.271     albertel 2861:     my @keys;
                   2862:     foreach my $part (@{$partids}) {
                   2863: 	push(@keys,"$symb\0$part\0resettime");
                   2864:     }
                   2865:     my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
                   2866: 				     $cdom,$cname);
                   2867:     foreach my $part (@{$partids}) {
                   2868: 	$last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269     raeburn  2869:     }
1.270     albertel 2870:     return %last_resets;
1.269     raeburn  2871: }
                   2872: 
1.251     banghart 2873: # ----------- Handles creating versions for portfolio files as answers
                   2874: sub version_portfiles {
1.343     banghart 2875:     my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263     banghart 2876:     my $version_parts = join('|',@$v_flag);
1.343     banghart 2877:     my @returned_keys;
1.255     banghart 2878:     my $parts = join('|', @$parts_graded);
1.359     www      2879:     my $portfolio_root = &propath($domain,$stu_name).
                   2880: 	'/userfiles/portfolio';
1.277     albertel 2881:     foreach my $key (keys(%$record)) {
1.259     banghart 2882:         my $new_portfiles;
1.263     banghart 2883:         if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342     banghart 2884:             my @versioned_portfiles;
1.367     albertel 2885:             my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252     banghart 2886:             foreach my $file (@portfiles) {
1.306     banghart 2887:                 &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304     albertel 2888:                 my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
                   2889: 		my ($answer_name,$answer_ver,$answer_ext) =
                   2890: 		    &file_name_version_ext($answer_file);
1.306     banghart 2891:                 my @dir_list = &Apache::lonnet::dirlist($directory,$domain,$stu_name,$portfolio_root);
1.342     banghart 2892:                 my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.306     banghart 2893:                 my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
                   2894:                 if ($new_answer ne 'problem getting file') {
1.342     banghart 2895:                     push(@versioned_portfiles, $directory.$new_answer);
1.306     banghart 2896:                     &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367     albertel 2897:                         [$directory.$new_answer],
1.306     banghart 2898:                         [$symb,$env{'request.course.id'},'graded']);
1.259     banghart 2899:                 }
1.252     banghart 2900:             }
1.343     banghart 2901:             $$record{$key} = join(',',@versioned_portfiles);
                   2902:             push(@returned_keys,$key);
1.251     banghart 2903:         }
                   2904:     } 
1.343     banghart 2905:     return (@returned_keys);   
1.305     banghart 2906: }
                   2907: 
1.307     banghart 2908: sub get_next_version {
1.341     banghart 2909:     my ($answer_name, $answer_ext, $dir_list) = @_;
1.307     banghart 2910:     my $version;
                   2911:     foreach my $row (@$dir_list) {
                   2912:         my ($file) = split(/\&/,$row,2);
                   2913:         my ($file_name,$file_version,$file_ext) =
                   2914: 	    &file_name_version_ext($file);
                   2915:         if (($file_name eq $answer_name) && 
                   2916: 	    ($file_ext eq $answer_ext)) {
                   2917:                 # gets here if filename and extension match, regardless of version
                   2918:                 if ($file_version ne '') {
                   2919:                 # a versioned file is found  so save it for later
                   2920:                 if ($file_version > $version) {
                   2921: 		    $version = $file_version;
                   2922: 	        }
                   2923:             }
                   2924:         }
                   2925:     } 
                   2926:     $version ++;
                   2927:     return($version);
                   2928: }
                   2929: 
1.305     banghart 2930: sub version_selected_portfile {
1.306     banghart 2931:     my ($domain,$stu_name,$directory,$file_name,$version) = @_;
                   2932:     my ($answer_name,$answer_ver,$answer_ext) =
                   2933:         &file_name_version_ext($file_name);
                   2934:     my $new_answer;
                   2935:     $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
                   2936:     if($env{'form.copy'} eq '-1') {
                   2937:         $new_answer = 'problem getting file';
                   2938:     } else {
                   2939:         $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
                   2940:         my $copy_result = &Apache::lonnet::finishuserfileupload(
                   2941:                             $stu_name,$domain,'copy',
                   2942: 		        '/portfolio'.$directory.$new_answer);
                   2943:     }    
                   2944:     return ($new_answer);
1.251     banghart 2945: }
                   2946: 
1.304     albertel 2947: sub file_name_version_ext {
                   2948:     my ($file)=@_;
                   2949:     my @file_parts = split(/\./, $file);
                   2950:     my ($name,$version,$ext);
                   2951:     if (@file_parts > 1) {
                   2952: 	$ext=pop(@file_parts);
                   2953: 	if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
                   2954: 	    $version=pop(@file_parts);
                   2955: 	}
                   2956: 	$name=join('.',@file_parts);
                   2957:     } else {
                   2958: 	$name=join('.',@file_parts);
                   2959:     }
                   2960:     return($name,$version,$ext);
                   2961: }
                   2962: 
1.44      ng       2963: #--------------------------------------------------------------------------------------
                   2964: #
                   2965: #-------------------------- Next few routines handles grading by section or whole class
                   2966: #
                   2967: #--- Javascript to handle grading by section or whole class
1.42      ng       2968: sub viewgrades_js {
                   2969:     my ($request) = shift;
                   2970: 
1.41      ng       2971:     $request->print(<<VIEWJAVASCRIPT);
                   2972: <script type="text/javascript" language="javascript">
1.45      ng       2973:    function writePoint(partid,weight,point) {
1.125     ng       2974: 	var radioButton = document.classgrade["RADVAL_"+partid];
                   2975: 	var textbox = document.classgrade["TEXTVAL_"+partid];
1.42      ng       2976: 	if (point == "textval") {
1.125     ng       2977: 	    point = document.classgrade["TEXTVAL_"+partid].value;
1.109     matthew  2978: 	    if (isNaN(point) || parseFloat(point) < 0) {
                   2979: 		alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.42      ng       2980: 		var resetbox = false;
                   2981: 		for (var i=0; i<radioButton.length; i++) {
                   2982: 		    if (radioButton[i].checked) {
                   2983: 			textbox.value = i;
                   2984: 			resetbox = true;
                   2985: 		    }
                   2986: 		}
                   2987: 		if (!resetbox) {
                   2988: 		    textbox.value = "";
                   2989: 		}
                   2990: 		return;
                   2991: 	    }
1.109     matthew  2992: 	    if (parseFloat(point) > parseFloat(weight)) {
                   2993: 		var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       2994: 				   ") greater than the weight for the part. Accept?");
                   2995: 		if (resp == false) {
                   2996: 		    textbox.value = "";
                   2997: 		    return;
                   2998: 		}
                   2999: 	    }
1.42      ng       3000: 	    for (var i=0; i<radioButton.length; i++) {
                   3001: 		radioButton[i].checked=false;
1.109     matthew  3002: 		if (parseFloat(point) == i) {
1.42      ng       3003: 		    radioButton[i].checked=true;
                   3004: 		}
                   3005: 	    }
1.41      ng       3006: 
1.42      ng       3007: 	} else {
1.125     ng       3008: 	    textbox.value = parseFloat(point);
1.42      ng       3009: 	}
1.41      ng       3010: 	for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3011: 	    var user = document.classgrade["ctr"+i].value;
1.289     albertel 3012: 	    user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3013: 	    var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3014: 	    var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3015: 	    var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       3016: 	    if (saveval != "correct") {
                   3017: 		scorename.value = point;
1.43      ng       3018: 		if (selname[0].selected != true) {
                   3019: 		    selname[0].selected = true;
                   3020: 		}
1.42      ng       3021: 	    }
                   3022: 	}
1.125     ng       3023: 	document.classgrade["SELVAL_"+partid][0].selected = true;
1.42      ng       3024:     }
                   3025: 
                   3026:     function writeRadText(partid,weight) {
1.125     ng       3027: 	var selval   = document.classgrade["SELVAL_"+partid];
                   3028: 	var radioButton = document.classgrade["RADVAL_"+partid];
1.265     www      3029:         var override = document.classgrade["FORCE_"+partid].checked;
1.125     ng       3030: 	var textbox = document.classgrade["TEXTVAL_"+partid];
                   3031: 	if (selval[1].selected || selval[2].selected) {
1.42      ng       3032: 	    for (var i=0; i<radioButton.length; i++) {
                   3033: 		radioButton[i].checked=false;
                   3034: 
                   3035: 	    }
                   3036: 	    textbox.value = "";
                   3037: 
                   3038: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3039: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 3040: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3041: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3042: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3043: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265     www      3044: 		if ((saveval != "correct") || override) {
1.42      ng       3045: 		    scorename.value = "";
1.125     ng       3046: 		    if (selval[1].selected) {
                   3047: 			selname[1].selected = true;
                   3048: 		    } else {
                   3049: 			selname[2].selected = true;
                   3050: 			if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value)) 
                   3051: 			{document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
                   3052: 		    }
1.42      ng       3053: 		}
                   3054: 	    }
1.43      ng       3055: 	} else {
                   3056: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3057: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 3058: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3059: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3060: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3061: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265     www      3062: 		if ((saveval != "correct") || override) {
1.125     ng       3063: 		    scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43      ng       3064: 		    selname[0].selected = true;
                   3065: 		}
                   3066: 	    }
                   3067: 	}	    
1.42      ng       3068:     }
                   3069: 
                   3070:     function changeSelect(partid,user) {
1.125     ng       3071: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   3072: 	var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44      ng       3073: 	var point  = textbox.value;
1.125     ng       3074: 	var weight = document.classgrade["weight_"+partid].value;
1.44      ng       3075: 
1.109     matthew  3076: 	if (isNaN(point) || parseFloat(point) < 0) {
                   3077: 	    alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.44      ng       3078: 	    textbox.value = "";
                   3079: 	    return;
                   3080: 	}
1.109     matthew  3081: 	if (parseFloat(point) > parseFloat(weight)) {
                   3082: 	    var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       3083: 			       ") greater than the weight of the part. Accept?");
                   3084: 	    if (resp == false) {
                   3085: 		textbox.value = "";
                   3086: 		return;
                   3087: 	    }
                   3088: 	}
1.42      ng       3089: 	selval[0].selected = true;
                   3090:     }
                   3091: 
                   3092:     function changeOneScore(partid,user) {
1.125     ng       3093: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   3094: 	if (selval[1].selected || selval[2].selected) {
                   3095: 	    document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
                   3096: 	    if (selval[2].selected) {
                   3097: 		document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
                   3098: 	    }
1.269     raeburn  3099:         }
1.42      ng       3100:     }
                   3101: 
                   3102:     function resetEntry(numpart) {
                   3103: 	for (ctpart=0;ctpart<numpart;ctpart++) {
1.125     ng       3104: 	    var partid = document.classgrade["partid_"+ctpart].value;
                   3105: 	    var radioButton = document.classgrade["RADVAL_"+partid];
                   3106: 	    var textbox = document.classgrade["TEXTVAL_"+partid];
                   3107: 	    var selval  = document.classgrade["SELVAL_"+partid];
1.42      ng       3108: 	    for (var i=0; i<radioButton.length; i++) {
                   3109: 		radioButton[i].checked=false;
                   3110: 
                   3111: 	    }
                   3112: 	    textbox.value = "";
                   3113: 	    selval[0].selected = true;
                   3114: 
                   3115: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3116: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 3117: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3118: 		var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3119: 		resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
                   3120: 		var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
                   3121: 		resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
                   3122: 		var saveselval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3123: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       3124: 		if (saveselval == "excused") {
1.43      ng       3125: 		    if (selname[1].selected == false) { selname[1].selected = true;}
1.42      ng       3126: 		} else {
1.43      ng       3127: 		    if (selname[0].selected == false) {selname[0].selected = true};
1.42      ng       3128: 		}
                   3129: 	    }
1.41      ng       3130: 	}
1.42      ng       3131:     }
                   3132: 
1.41      ng       3133: </script>
                   3134: VIEWJAVASCRIPT
1.42      ng       3135: }
                   3136: 
1.44      ng       3137: #--- show scores for a section or whole class w/ option to change/update a score
1.42      ng       3138: sub viewgrades {
                   3139:     my ($request) = shift;
                   3140:     &viewgrades_js($request);
1.41      ng       3141: 
1.324     albertel 3142:     my ($symb) = &get_symb($request);
1.168     albertel 3143:     #need to make sure we have the correct data for later EXT calls, 
                   3144:     #thus invalidate the cache
                   3145:     &Apache::lonnet::devalidatecourseresdata(
1.257     albertel 3146:                  $env{'course.'.$env{'request.course.id'}.'.num'},
                   3147:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168     albertel 3148:     &Apache::lonnet::clear_EXT_cache_status();
                   3149: 
1.398     albertel 3150:     my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
                   3151:     $result.='<h4><b>Current Resource: </b>'.$env{'form.probTitle'}.'</h4>'."\n";
1.41      ng       3152: 
                   3153:     #view individual student submission form - called using Javascript viewOneStudent
1.324     albertel 3154:     $result.=&jscriptNform($symb);
1.41      ng       3155: 
1.44      ng       3156:     #beginning of class grading form
1.442     banghart 3157:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41      ng       3158:     $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418     albertel 3159: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38      ng       3160: 	'<input type="hidden" name="command" value="editgrades" />'."\n".
1.432     banghart 3161: 	&build_section_inputs().
1.257     albertel 3162: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442     banghart 3163: 	'<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.257     albertel 3164: 	'<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72      ng       3165: 
1.126     ng       3166:     my $sectionClass;
1.430     banghart 3167:     my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.257     albertel 3168:     if ($env{'form.section'} eq 'all') {
1.126     ng       3169: 	$sectionClass='Class </h3>';
1.257     albertel 3170:     } elsif ($env{'form.section'} eq 'none') {
1.431     banghart 3171: 	$sectionClass=&mt('Students in no Section').'</h3>';
1.52      albertel 3172:     } else {
1.431     banghart 3173: 	$sectionClass=&mt('Students in Section(s) [_1]',$section_display).'</h3>';
1.52      albertel 3174:     }
1.431     banghart 3175:     $result.='<h3>'.&mt('Assign Common Grade To [_1]',$sectionClass);
1.474     albertel 3176:     $result.= &Apache::loncommon::start_data_table();
1.44      ng       3177:     #radio buttons/text box for assigning points for a section or class.
                   3178:     #handles different parts of a problem
1.375     albertel 3179:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.42      ng       3180:     my %weight = ();
                   3181:     my $ctsparts = 0;
1.45      ng       3182:     my %seen = ();
1.375     albertel 3183:     my @part_response_id = &flatten_responseType($responseType);
                   3184:     foreach my $part_response_id (@part_response_id) {
                   3185:     	my ($partid,$respid) = @{ $part_response_id };
                   3186: 	my $part_resp = join('_',@{ $part_response_id });
1.45      ng       3187: 	next if $seen{$partid};
                   3188: 	$seen{$partid}++;
1.375     albertel 3189: 	my $handgrade=$$handgrade{$part_resp};
1.42      ng       3190: 	my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
                   3191: 	$weight{$partid} = $wgt eq '' ? '1' : $wgt;
                   3192: 
1.474     albertel 3193: 	$result.=&Apache::loncommon::start_data_table_row().'<td>';
1.44      ng       3194: 	$result.='<input type="hidden" name="partid_'.
                   3195: 	    $ctsparts.'" value="'.$partid.'" />'."\n";
                   3196: 	$result.='<input type="hidden" name="weight_'.
                   3197: 	    $partid.'" value="'.$weight{$partid}.'" />'."\n";
1.324     albertel 3198: 	my $display_part=&get_display_part($partid,$symb);
1.474     albertel 3199: 	$result.=
                   3200: 	    '<b>Part:</b> '.$display_part.'&nbsp; &nbsp;<b>Point:</b> </td><td>';
1.42      ng       3201: 	$result.='<table border="0"><tr>';  
1.41      ng       3202: 	my $ctr = 0;
1.42      ng       3203: 	while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.288     albertel 3204: 	    $result.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54      albertel 3205: 		'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288     albertel 3206: 		','.$ctr.')" />'.$ctr."</label></td>\n";
1.41      ng       3207: 	    $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
                   3208: 	    $ctr++;
                   3209: 	}
                   3210: 	$result.='</tr></table>';
1.44      ng       3211: 	$result.= '</td><td><b> or </b><input type="text" name="TEXTVAL_'.
1.54      albertel 3212: 	    $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
                   3213: 		$partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.42      ng       3214: 	    $weight{$partid}.' (problem weight)</td>'."\n";
1.474     albertel 3215: 	$result.= '<td><select name="SELVAL_'.$partid.'"'.
1.54      albertel 3216: 	    'onChange="javascript:writeRadText(\''.$partid.'\','.
1.59      albertel 3217: 		$weight{$partid}.')"> '.
1.401     albertel 3218: 	    '<option selected="selected"> </option>'.
1.125     ng       3219: 	    '<option>excused</option>'.
1.265     www      3220: 	    '<option>reset status</option></select></td>'.
1.474     albertel 3221:             '<td><label><input type="checkbox" name="FORCE_'.$partid.'" /> Override "Correct"</label></td>'.&Apache::loncommon::end_data_table_row()."\n";
1.42      ng       3222: 	$ctsparts++;
1.41      ng       3223:     }
1.474     albertel 3224:     $result.=&Apache::loncommon::end_data_table()."\n".
1.52      albertel 3225: 	'<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.391     banghart 3226:     $result.='<input type="button" value="Revert to Default" '.
1.474     albertel 3227: 	'onClick="javascript:resetEntry('.$ctsparts.');" />';
1.41      ng       3228: 
1.44      ng       3229:     #table listing all the students in a section/class
                   3230:     #header of table
1.126     ng       3231:     $result.= '<h3>Assign Grade to Specific Students in '.$sectionClass;
1.474     albertel 3232:     $result.= &Apache::loncommon::start_data_table().
                   3233: 	&Apache::loncommon::start_data_table_header_row().
                   3234: 	'<th>No.</th>'.
                   3235: 	'<th>'.&nameUserString('header')."</th>\n";
1.324     albertel 3236:     my (@parts) = sort(&getpartlist($symb));
                   3237:     my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269     raeburn  3238:     my @partids = ();
1.41      ng       3239:     foreach my $part (@parts) {
                   3240: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.126     ng       3241: 	$display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
1.41      ng       3242: 	if  (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207     albertel 3243: 	my ($partid) = &split_part_type($part);
1.269     raeburn  3244:         push(@partids, $partid);
1.324     albertel 3245: 	my $display_part=&get_display_part($partid,$symb);
1.41      ng       3246: 	if ($display =~ /^Partial Credit Factor/) {
1.474     albertel 3247: 	    $result.='<th>Score Part: '.$display_part.
                   3248: 		' <br />(weight = '.$weight{$partid}.')</th>'."\n";
1.41      ng       3249: 	    next;
1.207     albertel 3250: 	} else {
                   3251: 	    $display =~s/\[Part: \Q$partid\E\]/Part:<\/b> $display_part/;
1.41      ng       3252: 	}
1.53      albertel 3253: 	$display =~ s|Problem Status|Grade Status<br />|;
1.474     albertel 3254: 	$result.='<th>'.$display.'</th>'."\n";
1.41      ng       3255:     }
1.474     albertel 3256:     $result.=&Apache::loncommon::end_data_table_header_row();
1.44      ng       3257: 
1.270     albertel 3258:     my %last_resets = 
                   3259: 	&get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269     raeburn  3260: 
1.41      ng       3261:     #get info for each student
1.44      ng       3262:     #list all the students - with points and grade status
1.257     albertel 3263:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41      ng       3264:     my $ctr = 0;
1.294     albertel 3265:     foreach (sort 
                   3266: 	     {
                   3267: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   3268: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   3269: 		 }
                   3270: 		 return $a cmp $b;
                   3271: 	     } (keys(%$fullname))) {
1.126     ng       3272: 	$ctr++;
1.324     albertel 3273: 	$result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269     raeburn  3274: 				   $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41      ng       3275:     }
1.474     albertel 3276:     $result.=&Apache::loncommon::end_data_table();
1.41      ng       3277:     $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.126     ng       3278:     $result.='<input type="button" value="Save" '.
1.417     albertel 3279: 	'onClick="javascript:submit();" target="_self" /></form>'."\n";
1.96      albertel 3280:     if (scalar(%$fullname) eq 0) {
                   3281: 	my $colspan=3+scalar(@parts);
1.433     banghart 3282: 	my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442     banghart 3283:         my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433     banghart 3284: 	$result='<span class="LC_warning">'.
                   3285: 	    &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade',
1.442     banghart 3286: 	        $section_display, $stu_status).
1.433     banghart 3287: 	    '</span>';
1.96      albertel 3288:     }
1.324     albertel 3289:     $result.=&show_grading_menu_form($symb);
1.41      ng       3290:     return $result;
                   3291: }
                   3292: 
1.44      ng       3293: #--- call by previous routine to display each student
1.41      ng       3294: sub viewstudentgrade {
1.324     albertel 3295:     my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44      ng       3296:     my ($uname,$udom) = split(/:/,$student);
                   3297:     my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269     raeburn  3298:     my %aggregates = (); 
1.474     albertel 3299:     my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.233     albertel 3300: 	'<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
                   3301: 	"\n".$ctr.'&nbsp;</td><td>&nbsp;'.
1.44      ng       3302: 	'<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417     albertel 3303: 	'\');" target="_self">'.$fullname.'</a> '.
1.398     albertel 3304: 	'<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281     albertel 3305:     $student=~s/:/_/; # colon doen't work in javascript for names
1.63      albertel 3306:     foreach my $apart (@$parts) {
                   3307: 	my ($part,$type) = &split_part_type($apart);
1.41      ng       3308: 	my $score=$record{"resource.$part.$type"};
1.276     albertel 3309:         $result.='<td align="center">';
1.269     raeburn  3310:         my ($aggtries,$totaltries);
                   3311:         unless (exists($aggregates{$part})) {
1.270     albertel 3312: 	    $totaltries = $record{'resource.'.$part.'.tries'};
                   3313: 
                   3314: 	    $aggtries = $totaltries;
1.269     raeburn  3315:             if ($$last_resets{$part}) {  
1.270     albertel 3316:                 $aggtries = &get_num_tries(\%record,$$last_resets{$part},
                   3317: 					   $part);
                   3318:             }
1.269     raeburn  3319:             $result.='<input type="hidden" name="'.
                   3320:                 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
                   3321:             $result.='<input type="hidden" name="'.
                   3322:                 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
                   3323:             $aggregates{$part} = 1;
                   3324:         }
1.41      ng       3325: 	if ($type eq 'awarded') {
1.320     albertel 3326: 	    my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42      ng       3327: 	    $result.='<input type="hidden" name="'.
1.89      albertel 3328: 		'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233     albertel 3329: 	    $result.='<input type="text" name="'.
1.89      albertel 3330: 		'GD_'.$student.'_'.$part.'_awarded" '.
                   3331: 		'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44      ng       3332: 		'\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41      ng       3333: 	} elsif ($type eq 'solved') {
                   3334: 	    my ($status,$foo)=split(/_/,$score,2);
                   3335: 	    $status = 'nothing' if ($status eq '');
1.89      albertel 3336: 	    $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54      albertel 3337: 		$part.'_solved_s" value="'.$status.'" />'."\n";
1.233     albertel 3338: 	    $result.='&nbsp;<select name="'.
1.89      albertel 3339: 		'GD_'.$student.'_'.$part.'_solved" '.
                   3340: 		'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.401     albertel 3341: 	    $result.= (($status eq 'excused') ? '<option> </option><option selected="selected">excused</option>' 
                   3342: 		: '<option selected="selected"> </option><option>excused</option>')."\n";
1.125     ng       3343: 	    $result.='<option>reset status</option>';
1.126     ng       3344: 	    $result.="</select>&nbsp;</td>\n";
1.122     ng       3345: 	} else {
                   3346: 	    $result.='<input type="hidden" name="'.
                   3347: 		'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
                   3348: 		    "\n";
1.233     albertel 3349: 	    $result.='<input type="text" name="'.
1.122     ng       3350: 		'GD_'.$student.'_'.$part.'_'.$type.'" '.
                   3351: 		'value="'.$score.'" size="4" /></td>'."\n";
1.41      ng       3352: 	}
                   3353:     }
1.474     albertel 3354:     $result.=&Apache::loncommon::end_data_table_row();
1.41      ng       3355:     return $result;
1.38      ng       3356: }
                   3357: 
1.44      ng       3358: #--- change scores for all the students in a section/class
                   3359: #    record does not get update if unchanged
1.38      ng       3360: sub editgrades {
1.41      ng       3361:     my ($request) = @_;
                   3362: 
1.324     albertel 3363:     my $symb=&get_symb($request);
1.433     banghart 3364:     my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477     albertel 3365:     my $title='<h2>'.&mt('Current Grade Status').'</h2>';
                   3366:     $title.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
1.433     banghart 3367:     $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126     ng       3368: 
1.477     albertel 3369:     my $result= &Apache::loncommon::start_data_table().
                   3370: 	&Apache::loncommon::start_data_table_header_row().
                   3371: 	'<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
                   3372: 	'<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43      ng       3373:     my %scoreptr = (
                   3374: 		    'correct'  =>'correct_by_override',
                   3375: 		    'incorrect'=>'incorrect_by_override',
                   3376: 		    'excused'  =>'excused',
                   3377: 		    'ungraded' =>'ungraded_attempted',
                   3378: 		    'nothing'  => '',
                   3379: 		    );
1.257     albertel 3380:     my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34      ng       3381: 
1.44      ng       3382:     my (@partid);
                   3383:     my %weight = ();
1.54      albertel 3384:     my %columns = ();
1.44      ng       3385:     my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54      albertel 3386: 
1.324     albertel 3387:     my (@parts) = sort(&getpartlist($symb));
1.54      albertel 3388:     my $header;
1.257     albertel 3389:     while ($ctr < $env{'form.totalparts'}) {
                   3390: 	my $partid = $env{'form.partid_'.$ctr};
1.44      ng       3391: 	push @partid,$partid;
1.257     albertel 3392: 	$weight{$partid} = $env{'form.weight_'.$partid};
1.44      ng       3393: 	$ctr++;
1.54      albertel 3394:     }
1.324     albertel 3395:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54      albertel 3396:     foreach my $partid (@partid) {
1.478     albertel 3397: 	$header .= '<th align="center">'.&mt('Old Score').'</th>'.
                   3398: 	    '<th align="center">'.&mt('New Score').'</th>';
1.54      albertel 3399: 	$columns{$partid}=2;
                   3400: 	foreach my $stores (@parts) {
                   3401: 	    my ($part,$type) = &split_part_type($stores);
                   3402: 	    if ($part !~ m/^\Q$partid\E/) { next;}
                   3403: 	    if ($type eq 'awarded' || $type eq 'solved') { next; }
                   3404: 	    my $display=&Apache::lonnet::metadata($url,$stores.'.display');
                   3405: 	    $display =~ s/\[Part: (\w)+\]//;
1.125     ng       3406: 	    $display =~ s/Number of Attempts/Tries/;
1.478     albertel 3407: 	    $header .= '<th align="center">'.&mt('Old '.$display).'</th>'.
                   3408: 		'<th align="center">'.&mt('New '.$display).'</th>';
1.54      albertel 3409: 	    $columns{$partid}+=2;
                   3410: 	}
                   3411:     }
                   3412:     foreach my $partid (@partid) {
1.324     albertel 3413: 	my $display_part=&get_display_part($partid,$symb);
1.478     albertel 3414: 	$result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
                   3415: 	    &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
                   3416: 	    '</th>';
1.54      albertel 3417: 
1.44      ng       3418:     }
1.477     albertel 3419:     $result .= &Apache::loncommon::end_data_table_header_row().
                   3420: 	&Apache::loncommon::start_data_table_header_row().
                   3421: 	$header.
                   3422: 	&Apache::loncommon::end_data_table_header_row();
                   3423:     my @noupdate;
1.126     ng       3424:     my ($updateCtr,$noupdateCtr) = (1,1);
1.257     albertel 3425:     for ($i=0; $i<$env{'form.total'}; $i++) {
1.93      albertel 3426: 	my $line;
1.257     albertel 3427: 	my $user = $env{'form.ctr'.$i};
1.281     albertel 3428: 	my ($uname,$udom)=split(/:/,$user);
1.44      ng       3429: 	my %newrecord;
                   3430: 	my $updateflag = 0;
1.281     albertel 3431: 	$line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108     albertel 3432: 	my $usec=$classlist->{"$uname:$udom"}[5];
1.105     albertel 3433: 	if (!&canmodify($usec)) {
1.126     ng       3434: 	    my $numcols=scalar(@partid)*4+2;
1.477     albertel 3435: 	    push(@noupdate,
1.478     albertel 3436: 		 $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
                   3437: 		 &mt('Not allowed to modify student')."</span></td></tr>");
1.105     albertel 3438: 	    next;
                   3439: 	}
1.269     raeburn  3440:         my %aggregate = ();
                   3441:         my $aggregateflag = 0;
1.281     albertel 3442: 	$user=~s/:/_/; # colon doen't work in javascript for names
1.44      ng       3443: 	foreach (@partid) {
1.257     albertel 3444: 	    my $old_aw    = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54      albertel 3445: 	    my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
                   3446: 	    my $old_part  = $old_aw eq '' ? '' : $old_part_pcr;
1.257     albertel 3447: 	    my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
                   3448: 	    my $awarded   = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54      albertel 3449: 	    my $pcr       = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
                   3450: 	    my $partial   = $awarded eq '' ? '' : $pcr;
1.44      ng       3451: 	    my $score;
                   3452: 	    if ($partial eq '') {
1.257     albertel 3453: 		$score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44      ng       3454: 	    } elsif ($partial > 0) {
                   3455: 		$score = 'correct_by_override';
                   3456: 	    } elsif ($partial == 0) {
                   3457: 		$score = 'incorrect_by_override';
                   3458: 	    }
1.257     albertel 3459: 	    my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125     ng       3460: 	    $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
                   3461: 
1.292     albertel 3462: 	    $newrecord{'resource.'.$_.'.regrader'}=
                   3463: 		"$env{'user.name'}:$env{'user.domain'}";
1.125     ng       3464: 	    if ($dropMenu eq 'reset status' &&
                   3465: 		$old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299     albertel 3466: 		$newrecord{'resource.'.$_.'.tries'} = '';
1.125     ng       3467: 		$newrecord{'resource.'.$_.'.solved'} = '';
                   3468: 		$newrecord{'resource.'.$_.'.award'} = '';
1.299     albertel 3469: 		$newrecord{'resource.'.$_.'.awarded'} = '';
1.125     ng       3470: 		$updateflag = 1;
1.269     raeburn  3471:                 if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
                   3472:                     my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
                   3473:                     my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
                   3474:                     my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
                   3475:                     &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
                   3476:                     $aggregateflag = 1;
                   3477:                 }
1.139     albertel 3478: 	    } elsif (!($old_part eq $partial && $old_score eq $score)) {
                   3479: 		$updateflag = 1;
                   3480: 		$newrecord{'resource.'.$_.'.awarded'}  = $partial if $partial ne '';
                   3481: 		$newrecord{'resource.'.$_.'.solved'}   = $score;
                   3482: 		$rec_update++;
1.125     ng       3483: 	    }
                   3484: 
1.93      albertel 3485: 	    $line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.44      ng       3486: 		'<td align="center">'.$awarded.
                   3487: 		($score eq 'excused' ? $score : '').'&nbsp;</td>';
1.5       albertel 3488: 
1.54      albertel 3489: 
                   3490: 	    my $partid=$_;
                   3491: 	    foreach my $stores (@parts) {
                   3492: 		my ($part,$type) = &split_part_type($stores);
                   3493: 		if ($part !~ m/^\Q$partid\E/) { next;}
                   3494: 		if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257     albertel 3495: 		my $old_aw    = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
                   3496: 		my $awarded   = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54      albertel 3497: 		if ($awarded ne '' && $awarded ne $old_aw) {
                   3498: 		    $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257     albertel 3499: 		    $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54      albertel 3500: 		    $updateflag=1;
                   3501: 		}
1.93      albertel 3502: 		$line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.54      albertel 3503: 		    '<td align="center">'.$awarded.'&nbsp;</td>';
                   3504: 	    }
1.44      ng       3505: 	}
1.477     albertel 3506: 	$line.="\n";
1.301     albertel 3507: 
                   3508: 	my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3509: 	my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3510: 
1.44      ng       3511: 	if ($updateflag) {
                   3512: 	    $count++;
1.257     albertel 3513: 	    &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89      albertel 3514: 				    $udom,$uname);
1.301     albertel 3515: 
                   3516: 	    if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
                   3517: 					      $cnum,$udom,$uname)) {
                   3518: 		# need to figure out if should be in queue.
                   3519: 		my %record =  
                   3520: 		    &Apache::lonnet::restore($symb,$env{'request.course.id'},
                   3521: 					     $udom,$uname);
                   3522: 		my $all_graded = 1;
                   3523: 		my $none_graded = 1;
                   3524: 		foreach my $part (@parts) {
                   3525: 		    if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
                   3526: 			$all_graded = 0;
                   3527: 		    } else {
                   3528: 			$none_graded = 0;
                   3529: 		    }
                   3530: 		}
                   3531: 
                   3532: 		if ($all_graded || $none_graded) {
                   3533: 		    &Apache::bridgetask::remove_from_queue('gradingqueue',
                   3534: 							   $symb,$cdom,$cnum,
                   3535: 							   $udom,$uname);
                   3536: 		}
                   3537: 	    }
                   3538: 
1.477     albertel 3539: 	    $result.=&Apache::loncommon::start_data_table_row().
                   3540: 		'<td align="right">&nbsp;'.$updateCtr.'&nbsp;</td>'.$line.
                   3541: 		&Apache::loncommon::end_data_table_row();
1.126     ng       3542: 	    $updateCtr++;
1.93      albertel 3543: 	} else {
1.477     albertel 3544: 	    push(@noupdate,
                   3545: 		 '<td align="right">&nbsp;'.$noupdateCtr.'&nbsp;</td>'.$line);
1.126     ng       3546: 	    $noupdateCtr++;
1.44      ng       3547: 	}
1.269     raeburn  3548:         if ($aggregateflag) {
                   3549:             &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301     albertel 3550: 				  $cdom,$cnum);
1.269     raeburn  3551:         }
1.93      albertel 3552:     }
1.477     albertel 3553:     if (@noupdate) {
1.126     ng       3554: #	my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
                   3555: 	my $numcols=scalar(@partid)*4+2;
1.477     albertel 3556: 	$result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478     albertel 3557: 	    '<td align="center" colspan="'.$numcols.'">'.
                   3558: 	    &mt('No Changes Occurred For the Students Below').
                   3559: 	    '</td>'.
1.477     albertel 3560: 	    &Apache::loncommon::end_data_table_row();
                   3561: 	foreach my $line (@noupdate) {
                   3562: 	    $result.=
                   3563: 		&Apache::loncommon::start_data_table_row().
                   3564: 		$line.
                   3565: 		&Apache::loncommon::end_data_table_row();
                   3566: 	}
1.44      ng       3567:     }
1.477     albertel 3568:     $result .= &Apache::loncommon::end_data_table().
                   3569: 	&show_grading_menu_form($symb);
1.478     albertel 3570:     my $msg = '<p><b>'.
                   3571: 	&mt('Number of records updated = [_1] for [quant,_2,student].',
                   3572: 	    $rec_update,$count).'</b><br />'.
                   3573: 	'<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
                   3574: 	'</b></p>';
1.44      ng       3575:     return $title.$msg.$result;
1.5       albertel 3576: }
1.54      albertel 3577: 
                   3578: sub split_part_type {
                   3579:     my ($partstr) = @_;
                   3580:     my ($temp,@allparts)=split(/_/,$partstr);
                   3581:     my $type=pop(@allparts);
1.439     albertel 3582:     my $part=join('_',@allparts);
1.54      albertel 3583:     return ($part,$type);
                   3584: }
                   3585: 
1.44      ng       3586: #------------- end of section for handling grading by section/class ---------
                   3587: #
                   3588: #----------------------------------------------------------------------------
                   3589: 
1.5       albertel 3590: 
1.44      ng       3591: #----------------------------------------------------------------------------
                   3592: #
                   3593: #-------------------------- Next few routines handles grading by csv upload
                   3594: #
                   3595: #--- Javascript to handle csv upload
1.27      albertel 3596: sub csvupload_javascript_reverse_associate {
1.246     albertel 3597:     my $error1=&mt('You need to specify the username or ID');
                   3598:     my $error2=&mt('You need to specify at least one grading field');
1.27      albertel 3599:   return(<<ENDPICK);
                   3600:   function verify(vf) {
                   3601:     var foundsomething=0;
                   3602:     var founduname=0;
1.243     albertel 3603:     var foundID=0;
1.27      albertel 3604:     for (i=0;i<=vf.nfields.value;i++) {
                   3605:       tw=eval('vf.f'+i+'.selectedIndex');
1.243     albertel 3606:       if (i==0 && tw!=0) { foundID=1; }
                   3607:       if (i==1 && tw!=0) { founduname=1; }
                   3608:       if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27      albertel 3609:     }
1.246     albertel 3610:     if (founduname==0 && foundID==0) {
                   3611: 	alert('$error1');
                   3612: 	return;
1.27      albertel 3613:     }
                   3614:     if (foundsomething==0) {
1.246     albertel 3615: 	alert('$error2');
                   3616: 	return;
1.27      albertel 3617:     }
                   3618:     vf.submit();
                   3619:   }
                   3620:   function flip(vf,tf) {
                   3621:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   3622:     var i;
                   3623:     for (i=0;i<=vf.nfields.value;i++) {
                   3624:       //can not pick the same destination field for both name and domain
                   3625:       if (((i ==0)||(i ==1)) && 
                   3626:           ((tf==0)||(tf==1)) && 
                   3627:           (i!=tf) &&
                   3628:           (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   3629:         eval('vf.f'+i+'.selectedIndex=0;')
                   3630:       }
                   3631:     }
                   3632:   }
                   3633: ENDPICK
                   3634: }
                   3635: 
                   3636: sub csvupload_javascript_forward_associate {
1.246     albertel 3637:     my $error1=&mt('You need to specify the username or ID');
                   3638:     my $error2=&mt('You need to specify at least one grading field');
1.27      albertel 3639:   return(<<ENDPICK);
                   3640:   function verify(vf) {
                   3641:     var foundsomething=0;
                   3642:     var founduname=0;
1.243     albertel 3643:     var foundID=0;
1.27      albertel 3644:     for (i=0;i<=vf.nfields.value;i++) {
                   3645:       tw=eval('vf.f'+i+'.selectedIndex');
1.243     albertel 3646:       if (tw==1) { foundID=1; }
                   3647:       if (tw==2) { founduname=1; }
                   3648:       if (tw>3) { foundsomething=1; }
1.27      albertel 3649:     }
1.246     albertel 3650:     if (founduname==0 && foundID==0) {
                   3651: 	alert('$error1');
                   3652: 	return;
1.27      albertel 3653:     }
                   3654:     if (foundsomething==0) {
1.246     albertel 3655: 	alert('$error2');
                   3656: 	return;
1.27      albertel 3657:     }
                   3658:     vf.submit();
                   3659:   }
                   3660:   function flip(vf,tf) {
                   3661:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   3662:     var i;
                   3663:     //can not pick the same destination field twice
                   3664:     for (i=0;i<=vf.nfields.value;i++) {
                   3665:       if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   3666:         eval('vf.f'+i+'.selectedIndex=0;')
                   3667:       }
                   3668:     }
                   3669:   }
                   3670: ENDPICK
                   3671: }
                   3672: 
1.26      albertel 3673: sub csvuploadmap_header {
1.324     albertel 3674:     my ($request,$symb,$datatoken,$distotal)= @_;
1.41      ng       3675:     my $javascript;
1.257     albertel 3676:     if ($env{'form.upfile_associate'} eq 'reverse') {
1.41      ng       3677: 	$javascript=&csvupload_javascript_reverse_associate();
                   3678:     } else {
                   3679: 	$javascript=&csvupload_javascript_forward_associate();
                   3680:     }
1.45      ng       3681: 
1.324     albertel 3682:     my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.257     albertel 3683:     my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245     albertel 3684:     my $ignore=&mt('Ignore First Line');
1.418     albertel 3685:     $symb = &Apache::lonenc::check_encrypt($symb);
1.41      ng       3686:     $request->print(<<ENDPICK);
1.26      albertel 3687: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398     albertel 3688: <h3><span class="LC_info">Uploading Class Grades</span></h3>
1.45      ng       3689: $result
1.326     albertel 3690: <hr />
1.26      albertel 3691: <h3>Identify fields</h3>
                   3692: Total number of records found in file: $distotal <hr />
                   3693: Enter as many fields as you can. The system will inform you and bring you back
                   3694: to this page if the data selected is insufficient to run your class.<hr />
                   3695: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245     albertel 3696: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26      albertel 3697: <input type="hidden" name="associate"  value="" />
                   3698: <input type="hidden" name="phase"      value="three" />
                   3699: <input type="hidden" name="datatoken"  value="$datatoken" />
1.257     albertel 3700: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
                   3701: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26      albertel 3702: <input type="hidden" name="upfile_associate" 
1.257     albertel 3703:                                        value="$env{'form.upfile_associate'}" />
1.26      albertel 3704: <input type="hidden" name="symb"       value="$symb" />
1.257     albertel 3705: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
                   3706: <input type="hidden" name="probTitle"  value="$env{'form.probTitle'}" />
1.246     albertel 3707: <input type="hidden" name="command"    value="csvuploadoptions" />
1.26      albertel 3708: <hr />
                   3709: <script type="text/javascript" language="Javascript">
                   3710: $javascript
                   3711: </script>
                   3712: ENDPICK
1.118     ng       3713:     return '';
1.26      albertel 3714: 
                   3715: }
                   3716: 
                   3717: sub csvupload_fields {
1.324     albertel 3718:     my ($symb) = @_;
                   3719:     my (@parts) = &getpartlist($symb);
1.243     albertel 3720:     my @fields=(['ID','Student ID'],
                   3721: 		['username','Student Username'],
                   3722: 		['domain','Student Domain']);
1.324     albertel 3723:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41      ng       3724:     foreach my $part (sort(@parts)) {
                   3725: 	my @datum;
                   3726: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
                   3727: 	my $name=$part;
                   3728: 	if  (!$display) { $display = $name; }
                   3729: 	@datum=($name,$display);
1.244     albertel 3730: 	if ($name=~/^stores_(.*)_awarded/) {
                   3731: 	    push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
                   3732: 	}
1.41      ng       3733: 	push(@fields,\@datum);
                   3734:     }
                   3735:     return (@fields);
1.26      albertel 3736: }
                   3737: 
                   3738: sub csvuploadmap_footer {
1.41      ng       3739:     my ($request,$i,$keyfields) =@_;
                   3740:     $request->print(<<ENDPICK);
1.26      albertel 3741: </table>
                   3742: <input type="hidden" name="nfields" value="$i" />
                   3743: <input type="hidden" name="keyfields" value="$keyfields" />
                   3744: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
                   3745: </form>
                   3746: ENDPICK
                   3747: }
                   3748: 
1.283     albertel 3749: sub checkforfile_js {
1.86      ng       3750:     my $result =<<CSVFORMJS;
                   3751: <script type="text/javascript" language="javascript">
                   3752:     function checkUpload(formname) {
                   3753: 	if (formname.upfile.value == "") {
                   3754: 	    alert("Please use the browse button to select a file from your local directory.");
                   3755: 	    return false;
                   3756: 	}
                   3757: 	formname.submit();
                   3758:     }
                   3759:     </script>
                   3760: CSVFORMJS
1.283     albertel 3761:     return $result;
                   3762: }
                   3763: 
                   3764: sub upcsvScores_form {
                   3765:     my ($request) = shift;
1.324     albertel 3766:     my ($symb)=&get_symb($request);
1.283     albertel 3767:     if (!$symb) {return '';}
                   3768:     my $result=&checkforfile_js();
1.257     albertel 3769:     $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.324     albertel 3770:     my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
1.118     ng       3771:     $result.=$table;
1.326     albertel 3772:     $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
                   3773:     $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.370     www      3774:     $result.='&nbsp;<b>'.&mt('Specify a file containing the class scores for current resource').
1.86      ng       3775: 	'.</b></td></tr>'."\n";
                   3776:     $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.370     www      3777:     my $upload=&mt("Upload Scores");
1.86      ng       3778:     my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245     albertel 3779:     my $ignore=&mt('Ignore First Line');
1.418     albertel 3780:     $symb = &Apache::lonenc::check_encrypt($symb);
1.86      ng       3781:     $result.=<<ENDUPFORM;
1.106     albertel 3782: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86      ng       3783: <input type="hidden" name="symb" value="$symb" />
                   3784: <input type="hidden" name="command" value="csvuploadmap" />
1.257     albertel 3785: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
                   3786: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
1.86      ng       3787: $upfile_select
1.370     www      3788: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
1.283     albertel 3789: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86      ng       3790: </form>
                   3791: ENDUPFORM
1.370     www      3792:     $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
                   3793:                            &mt("How do I create a CSV file from a spreadsheet"))
                   3794:     .'</td></tr></table>'."\n";
1.86      ng       3795:     $result.='</td></tr></table><br /><br />'."\n";
1.324     albertel 3796:     $result.=&show_grading_menu_form($symb);
1.86      ng       3797:     return $result;
                   3798: }
                   3799: 
                   3800: 
1.26      albertel 3801: sub csvuploadmap {
1.41      ng       3802:     my ($request)= @_;
1.324     albertel 3803:     my ($symb)=&get_symb($request);
1.41      ng       3804:     if (!$symb) {return '';}
1.72      ng       3805: 
1.41      ng       3806:     my $datatoken;
1.257     albertel 3807:     if (!$env{'form.datatoken'}) {
1.41      ng       3808: 	$datatoken=&Apache::loncommon::upfile_store($request);
1.26      albertel 3809:     } else {
1.257     albertel 3810: 	$datatoken=$env{'form.datatoken'};
1.41      ng       3811: 	&Apache::loncommon::load_tmp_file($request);
1.26      albertel 3812:     }
1.41      ng       3813:     my @records=&Apache::loncommon::upfile_record_sep();
1.257     albertel 3814:     if ($env{'form.noFirstLine'}) { shift(@records); }
1.324     albertel 3815:     &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41      ng       3816:     my ($i,$keyfields);
                   3817:     if (@records) {
1.324     albertel 3818: 	my @fields=&csvupload_fields($symb);
1.45      ng       3819: 
1.257     albertel 3820: 	if ($env{'form.upfile_associate'} eq 'reverse') {	
1.41      ng       3821: 	    &Apache::loncommon::csv_print_samples($request,\@records);
                   3822: 	    $i=&Apache::loncommon::csv_print_select_table($request,\@records,
                   3823: 							  \@fields);
                   3824: 	    foreach (@fields) { $keyfields.=$_->[0].','; }
                   3825: 	    chop($keyfields);
                   3826: 	} else {
                   3827: 	    unshift(@fields,['none','']);
                   3828: 	    $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
                   3829: 							    \@fields);
1.311     banghart 3830:             foreach my $rec (@records) {
                   3831:                 my %temp = &Apache::loncommon::record_sep($rec);
                   3832:                 if (%temp) {
                   3833:                     $keyfields=join(',',sort(keys(%temp)));
                   3834:                     last;
                   3835:                 }
                   3836:             }
1.41      ng       3837: 	}
                   3838:     }
                   3839:     &csvuploadmap_footer($request,$i,$keyfields);
1.324     albertel 3840:     $request->print(&show_grading_menu_form($symb));
1.72      ng       3841: 
1.41      ng       3842:     return '';
1.27      albertel 3843: }
                   3844: 
1.246     albertel 3845: sub csvuploadoptions {
1.41      ng       3846:     my ($request)= @_;
1.324     albertel 3847:     my ($symb)=&get_symb($request);
1.257     albertel 3848:     my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246     albertel 3849:     my $ignore=&mt('Ignore First Line');
                   3850:     $request->print(<<ENDPICK);
                   3851: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398     albertel 3852: <h3><span class="LC_info">Uploading Class Grade Options</span></h3>
1.246     albertel 3853: <input type="hidden" name="command"    value="csvuploadassign" />
1.302     albertel 3854: <!--
1.246     albertel 3855: <p>
                   3856: <label>
                   3857:    <input type="checkbox" name="show_full_results" />
                   3858:    Show a table of all changes
                   3859: </label>
                   3860: </p>
1.302     albertel 3861: -->
1.246     albertel 3862: <p>
                   3863: <label>
                   3864:    <input type="checkbox" name="overwite_scores" checked="checked" />
                   3865:    Overwrite any existing score
                   3866: </label>
                   3867: </p>
                   3868: ENDPICK
                   3869:     my %fields=&get_fields();
                   3870:     if (!defined($fields{'domain'})) {
1.257     albertel 3871: 	my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246     albertel 3872: 	$request->print("\n<p> Users are in domain: ".$domform."</p>\n");
                   3873:     }
1.257     albertel 3874:     foreach my $key (sort(keys(%env))) {
1.246     albertel 3875: 	if ($key !~ /^form\.(.*)$/) { next; }
                   3876: 	my $cleankey=$1;
                   3877: 	if ($cleankey eq 'command') { next; }
                   3878: 	$request->print('<input type="hidden" name="'.$cleankey.
1.257     albertel 3879: 			'"  value="'.$env{$key}.'" />'."\n");
1.246     albertel 3880:     }
                   3881:     # FIXME do a check for any duplicated user ids...
                   3882:     # FIXME do a check for any invalid user ids?...
1.290     albertel 3883:     $request->print('<input type="submit" value="Assign Grades" /><br />
                   3884: <hr /></form>'."\n");
1.324     albertel 3885:     $request->print(&show_grading_menu_form($symb));
1.246     albertel 3886:     return '';
                   3887: }
                   3888: 
                   3889: sub get_fields {
                   3890:     my %fields;
1.257     albertel 3891:     my @keyfields = split(/\,/,$env{'form.keyfields'});
                   3892:     for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
                   3893: 	if ($env{'form.upfile_associate'} eq 'reverse') {
                   3894: 	    if ($env{'form.f'.$i} ne 'none') {
                   3895: 		$fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41      ng       3896: 	    }
                   3897: 	} else {
1.257     albertel 3898: 	    if ($env{'form.f'.$i} ne 'none') {
                   3899: 		$fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41      ng       3900: 	    }
                   3901: 	}
1.27      albertel 3902:     }
1.246     albertel 3903:     return %fields;
                   3904: }
                   3905: 
                   3906: sub csvuploadassign {
                   3907:     my ($request)= @_;
1.324     albertel 3908:     my ($symb)=&get_symb($request);
1.246     albertel 3909:     if (!$symb) {return '';}
1.345     bowersj2 3910:     my $error_msg = '';
1.246     albertel 3911:     &Apache::loncommon::load_tmp_file($request);
                   3912:     my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257     albertel 3913:     if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246     albertel 3914:     my %fields=&get_fields();
1.41      ng       3915:     $request->print('<h3>Assigning Grades</h3>');
1.257     albertel 3916:     my $courseid=$env{'request.course.id'};
1.97      albertel 3917:     my ($classlist) = &getclasslist('all',0);
1.106     albertel 3918:     my @notallowed;
1.41      ng       3919:     my @skipped;
                   3920:     my $countdone=0;
                   3921:     foreach my $grade (@gradedata) {
                   3922: 	my %entries=&Apache::loncommon::record_sep($grade);
1.246     albertel 3923: 	my $domain;
                   3924: 	if ($entries{$fields{'domain'}}) {
                   3925: 	    $domain=$entries{$fields{'domain'}};
                   3926: 	} else {
1.257     albertel 3927: 	    $domain=$env{'form.default_domain'};
1.246     albertel 3928: 	}
1.243     albertel 3929: 	$domain=~s/\s//g;
1.41      ng       3930: 	my $username=$entries{$fields{'username'}};
1.160     albertel 3931: 	$username=~s/\s//g;
1.243     albertel 3932: 	if (!$username) {
                   3933: 	    my $id=$entries{$fields{'ID'}};
1.247     albertel 3934: 	    $id=~s/\s//g;
1.243     albertel 3935: 	    my %ids=&Apache::lonnet::idget($domain,$id);
                   3936: 	    $username=$ids{$id};
                   3937: 	}
1.41      ng       3938: 	if (!exists($$classlist{"$username:$domain"})) {
1.247     albertel 3939: 	    my $id=$entries{$fields{'ID'}};
                   3940: 	    $id=~s/\s//g;
                   3941: 	    if ($id) {
                   3942: 		push(@skipped,"$id:$domain");
                   3943: 	    } else {
                   3944: 		push(@skipped,"$username:$domain");
                   3945: 	    }
1.41      ng       3946: 	    next;
                   3947: 	}
1.108     albertel 3948: 	my $usec=$classlist->{"$username:$domain"}[5];
1.106     albertel 3949: 	if (!&canmodify($usec)) {
                   3950: 	    push(@notallowed,"$username:$domain");
                   3951: 	    next;
                   3952: 	}
1.244     albertel 3953: 	my %points;
1.41      ng       3954: 	my %grades;
                   3955: 	foreach my $dest (keys(%fields)) {
1.244     albertel 3956: 	    if ($dest eq 'ID' || $dest eq 'username' ||
                   3957: 		$dest eq 'domain') { next; }
                   3958: 	    if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
                   3959: 	    if ($dest=~/stores_(.*)_points/) {
                   3960: 		my $part=$1;
                   3961: 		my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
                   3962: 					      $symb,$domain,$username);
1.345     bowersj2 3963:                 if ($wgt) {
                   3964:                     $entries{$fields{$dest}}=~s/\s//g;
                   3965:                     my $pcr=$entries{$fields{$dest}} / $wgt;
1.463     albertel 3966:                     my $award=($pcr == 0) ? 'incorrect_by_override'
                   3967:                                           : 'correct_by_override';
1.345     bowersj2 3968:                     $grades{"resource.$part.awarded"}=$pcr;
                   3969:                     $grades{"resource.$part.solved"}=$award;
                   3970:                     $points{$part}=1;
                   3971:                 } else {
                   3972:                     $error_msg = "<br />" .
                   3973:                         &mt("Some point values were assigned"
                   3974:                             ." for problems with a weight "
                   3975:                             ."of zero. These values were "
                   3976:                             ."ignored.");
                   3977:                 }
1.244     albertel 3978: 	    } else {
                   3979: 		if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
                   3980: 		if ($dest=~/stores_(.*)_solved/)  { if ($points{$1}) {next;} }
                   3981: 		my $store_key=$dest;
                   3982: 		$store_key=~s/^stores/resource/;
                   3983: 		$store_key=~s/_/\./g;
                   3984: 		$grades{$store_key}=$entries{$fields{$dest}};
                   3985: 	    }
1.41      ng       3986: 	}
1.398     albertel 3987: 	if (! %grades) { push(@skipped,"$username:$domain no data to save"); }
1.257     albertel 3988: 	$grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
1.302     albertel 3989: 	my $result=&Apache::lonnet::cstore(\%grades,$symb,
                   3990: 					   $env{'request.course.id'},
                   3991: 					   $domain,$username);
                   3992: 	if ($result eq 'ok') {
                   3993: 	    $request->print('.');
                   3994: 	} else {
                   3995: 	    $request->print("<p>
1.398     albertel 3996:                               <span class=\"LC_error\">
                   3997:                                  Failed to save student $username:$domain.
                   3998:                                  Message when trying to save was ($result)
                   3999:                               </span>
1.302     albertel 4000:                              </p>" );
                   4001: 	}
1.41      ng       4002: 	$request->rflush();
                   4003: 	$countdone++;
                   4004:     }
1.398     albertel 4005:     $request->print("<br />Saved $countdone students\n");
1.41      ng       4006:     if (@skipped) {
1.398     albertel 4007: 	$request->print('<p><h4><b>Skipped Students</b></h4></p>');
1.106     albertel 4008: 	foreach my $student (@skipped) { $request->print("$student<br />\n"); }
                   4009:     }
                   4010:     if (@notallowed) {
1.398     albertel 4011: 	$request->print('<p><span class="LC_error">Students Not Allowed to Modify</span></p>');
1.106     albertel 4012: 	foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
1.41      ng       4013:     }
1.106     albertel 4014:     $request->print("<br />\n");
1.324     albertel 4015:     $request->print(&show_grading_menu_form($symb));
1.345     bowersj2 4016:     return $error_msg;
1.26      albertel 4017: }
1.44      ng       4018: #------------- end of section for handling csv file upload ---------
                   4019: #
                   4020: #-------------------------------------------------------------------
                   4021: #
1.122     ng       4022: #-------------- Next few routines handle grading by page/sequence
1.72      ng       4023: #
                   4024: #--- Select a page/sequence and a student to grade
1.68      ng       4025: sub pickStudentPage {
                   4026:     my ($request) = shift;
                   4027: 
                   4028:     $request->print(<<LISTJAVASCRIPT);
                   4029: <script type="text/javascript" language="javascript">
                   4030: 
                   4031: function checkPickOne(formname) {
1.76      ng       4032:     if (radioSelection(formname.student) == null) {
1.68      ng       4033: 	alert("Please select the student you wish to grade.");
                   4034: 	return;
                   4035:     }
1.125     ng       4036:     ptr = pullDownSelection(formname.selectpage);
                   4037:     formname.page.value = formname["page"+ptr].value;
                   4038:     formname.title.value = formname["title"+ptr].value;
1.68      ng       4039:     formname.submit();
                   4040: }
                   4041: 
                   4042: </script>
                   4043: LISTJAVASCRIPT
1.118     ng       4044:     &commonJSfunctions($request);
1.324     albertel 4045:     my ($symb) = &get_symb($request);
1.257     albertel 4046:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   4047:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   4048:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68      ng       4049: 
1.398     albertel 4050:     my $result='<h3><span class="LC_info">&nbsp;'.
                   4051: 	'Manual Grading by Page or Sequence</span></h3>';
1.68      ng       4052: 
1.80      ng       4053:     $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.70      ng       4054:     $result.='&nbsp;<b>Problems from:</b> <select name="selectpage">'."\n";
1.423     albertel 4055:     my ($titles,$symbx) = &getSymbMap();
1.137     albertel 4056:     my ($curpage) =&Apache::lonnet::decode_symb($symb); 
                   4057: #    my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb); 
                   4058: #    my $type=($curpage =~ /\.(page|sequence)/);
1.70      ng       4059:     my $ctr=0;
1.68      ng       4060:     foreach (@$titles) {
                   4061: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.70      ng       4062: 	$result.='<option value="'.$ctr.'" '.
1.401     albertel 4063: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71      ng       4064: 	    '>'.$showtitle.'</option>'."\n";
1.70      ng       4065: 	$ctr++;
1.68      ng       4066:     }
1.326     albertel 4067:     $result.= '</select>'."<br />\n";
1.70      ng       4068:     $ctr=0;
                   4069:     foreach (@$titles) {
                   4070: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   4071: 	$result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
                   4072: 	$result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
                   4073: 	$ctr++;
                   4074:     }
1.72      ng       4075:     $result.='<input type="hidden" name="page" />'."\n".
                   4076: 	'<input type="hidden" name="title" />'."\n";
1.68      ng       4077: 
1.401     albertel 4078:     $result.='&nbsp;<b>View Problems Text: </b><label><input type="radio" name="vProb" value="no" checked="checked" /> no </label>'."\n".
1.288     albertel 4079: 	'<label><input type="radio" name="vProb" value="yes" /> yes </label>'."<br />\n";
1.72      ng       4080: 
1.71      ng       4081:     $result.='&nbsp;<b>Submission Details: </b>'.
1.288     albertel 4082: 	'<label><input type="radio" name="lastSub" value="none" /> none</label>'."\n".
1.401     albertel 4083: 	'<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> by dates and submissions</label>'."\n".
1.288     albertel 4084: 	'<label><input type="radio" name="lastSub" value="all" /> all details</label>'."\n";
1.432     banghart 4085:     
                   4086:     $result.=&build_section_inputs();
1.442     banghart 4087:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
                   4088:     $result.='<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
1.72      ng       4089: 	'<input type="hidden" name="command" value="displayPage" />'."\n".
1.418     albertel 4090: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257     albertel 4091: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72      ng       4092: 
1.382     albertel 4093:     $result.='&nbsp;<b>'.&mt('Use CODE:').' </b>'.
                   4094: 	'<input type="text" name="CODE" value="" /><br />'."\n";
                   4095: 
1.80      ng       4096:     $result.='&nbsp;<input type="button" '.
1.126     ng       4097: 	'onClick="javascript:checkPickOne(this.form);"value="Next->" /><br />'."\n";
1.72      ng       4098: 
1.68      ng       4099:     $request->print($result);
                   4100: 
1.326     albertel 4101:     my $studentTable.='&nbsp;<b>Select a student you wish to grade and then click on the Next button.</b><br />'.
1.68      ng       4102: 	'<table border="0"><tr><td bgcolor="#777777">'.
                   4103: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.126     ng       4104: 	'<td align="right">&nbsp;<b>No.</b></td>'.
1.129     ng       4105: 	'<td>'.&nameUserString('header').'</td>'.
1.126     ng       4106: 	'<td align="right">&nbsp;<b>No.</b></td>'.
1.129     ng       4107: 	'<td>'.&nameUserString('header').'</td></tr>';
1.68      ng       4108:  
1.76      ng       4109:     my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68      ng       4110:     my $ptr = 1;
1.294     albertel 4111:     foreach my $student (sort 
                   4112: 			 {
                   4113: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   4114: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   4115: 			     }
                   4116: 			     return $a cmp $b;
                   4117: 			 } (keys(%$fullname))) {
1.68      ng       4118: 	my ($uname,$udom) = split(/:/,$student);
1.126     ng       4119: 	$studentTable.=($ptr%2 == 1 ? '<tr bgcolor="#ffffe6">' : '</td>');
                   4120: 	$studentTable.='<td align="right">'.$ptr.'&nbsp;</td>';
1.288     albertel 4121: 	$studentTable.='<td>&nbsp;<label><input type="radio" name="student" value="'.$student.'" /> '
                   4122: 	    .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.126     ng       4123: 	$studentTable.=($ptr%2 == 0 ? '</td></tr>' : '');
1.68      ng       4124: 	$ptr++;
                   4125:     }
1.381     albertel 4126:     $studentTable.='</td><td>&nbsp;</td><td>&nbsp;</td></tr>' if ($ptr%2 == 0);
                   4127:     $studentTable.='</table></td></tr></table>'."\n";
1.126     ng       4128:     $studentTable.='<input type="button" '.
                   4129: 	'onClick="javascript:checkPickOne(this.form);"value="Next->" /></form>'."\n";
1.68      ng       4130: 
1.324     albertel 4131:     $studentTable.=&show_grading_menu_form($symb);
1.68      ng       4132:     $request->print($studentTable);
                   4133: 
                   4134:     return '';
                   4135: }
                   4136: 
                   4137: sub getSymbMap {
1.132     bowersj2 4138:     my $navmap = Apache::lonnavmaps::navmap->new();
1.68      ng       4139: 
                   4140:     my %symbx = ();
                   4141:     my @titles = ();
1.117     bowersj2 4142:     my $minder = 0;
                   4143: 
                   4144:     # Gather every sequence that has problems.
1.240     albertel 4145:     my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
                   4146: 					       1,0,1);
1.117     bowersj2 4147:     for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241     albertel 4148: 	if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381     albertel 4149: 	    my $title = $minder.'.'.
                   4150: 		&HTML::Entities::encode($sequence->compTitle(),'"\'&');
                   4151: 	    push(@titles, $title); # minder in case two titles are identical
                   4152: 	    $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117     bowersj2 4153: 	    $minder++;
1.241     albertel 4154: 	}
1.68      ng       4155:     }
                   4156:     return \@titles,\%symbx;
                   4157: }
                   4158: 
1.72      ng       4159: #
                   4160: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68      ng       4161: sub displayPage {
                   4162:     my ($request) = shift;
                   4163: 
1.324     albertel 4164:     my ($symb) = &get_symb($request);
1.257     albertel 4165:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   4166:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   4167:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
                   4168:     my $pageTitle = $env{'form.page'};
1.103     albertel 4169:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257     albertel 4170:     my ($uname,$udom) = split(/:/,$env{'form.student'});
                   4171:     my $usec=$classlist->{$env{'form.student'}}[5];
1.168     albertel 4172: 
                   4173:     #need to make sure we have the correct data for later EXT calls, 
                   4174:     #thus invalidate the cache
                   4175:     &Apache::lonnet::devalidatecourseresdata(
1.257     albertel 4176:                  $env{'course.'.$env{'request.course.id'}.'.num'},
                   4177:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168     albertel 4178:     &Apache::lonnet::clear_EXT_cache_status();
                   4179: 
1.103     albertel 4180:     if (!&canview($usec)) {
1.398     albertel 4181: 	$request->print('<span class="LC_warning">Unable to view requested student.('.$env{'form.student'}.')</span>');
1.324     albertel 4182: 	$request->print(&show_grading_menu_form($symb));
1.103     albertel 4183: 	return;
                   4184:     }
1.398     albertel 4185:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
1.257     albertel 4186:     $result.='<h3>&nbsp;Student: '.&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom).
1.129     ng       4187: 	'</h3>'."\n";
1.382     albertel 4188:     if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
                   4189: 	$result.='<h3>&nbsp;CODE: '.$env{'form.CODE'}.'</h3>'."\n";
                   4190:     } else {
                   4191: 	delete($env{'form.CODE'});
                   4192:     }
1.71      ng       4193:     &sub_page_js($request);
                   4194:     $request->print($result);
                   4195: 
1.132     bowersj2 4196:     my $navmap = Apache::lonnavmaps::navmap->new();
1.257     albertel 4197:     my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68      ng       4198:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288     albertel 4199:     if (!$map) {
1.398     albertel 4200: 	$request->print('<span class="LC_warning">Unable to view requested sequence. ('.$resUrl.')</span>');
1.324     albertel 4201: 	$request->print(&show_grading_menu_form($symb));
1.288     albertel 4202: 	return; 
                   4203:     }
1.68      ng       4204:     my $iterator = $navmap->getIterator($map->map_start(),
                   4205: 					$map->map_finish());
                   4206: 
1.71      ng       4207:     my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72      ng       4208: 	'<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257     albertel 4209: 	'<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
                   4210: 	'<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72      ng       4211: 	'<input type="hidden" name="page"    value="'.$pageTitle.'" />'."\n".
1.257     albertel 4212: 	'<input type="hidden" name="title"   value="'.$env{'form.title'}.'" />'."\n".
1.418     albertel 4213: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.125     ng       4214: 	'<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257     albertel 4215: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71      ng       4216: 
1.382     albertel 4217:     if (defined($env{'form.CODE'})) {
                   4218: 	$studentTable.=
                   4219: 	    '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
                   4220:     }
1.381     albertel 4221:     my $checkIcon = '<img alt="'.&mt('Check Mark').
                   4222: 	'" src="'.$request->dir_config('lonIconsURL').
1.71      ng       4223: 	'/check.gif" height="16" border="0" />';
                   4224: 
1.118     ng       4225:     $studentTable.='&nbsp;<b>Note:</b> Problems graded correct by the computer are marked with a '.$checkIcon.
                   4226: 	' symbol.'."\n".
1.71      ng       4227: 	'<table border="0"><tr><td bgcolor="#777777">'.
                   4228: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.118     ng       4229: 	'<td align="center"><b>&nbsp;Prob.&nbsp;</b></td>'.
1.257     albertel 4230: 	'<td><b>&nbsp;'.($env{'form.vProb'} eq 'no' ? 'Title' : 'Problem Text').'/Grade</b></td></tr>';
1.71      ng       4231: 
1.329     albertel 4232:     &Apache::lonxml::clear_problem_counter();
1.196     albertel 4233:     my ($depth,$question,$prob) = (1,1,1);
1.68      ng       4234:     $iterator->next(); # skip the first BEGIN_MAP
                   4235:     my $curRes = $iterator->next(); # for "current resource"
1.101     albertel 4236:     while ($depth > 0) {
1.68      ng       4237:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 4238:         if($curRes == $iterator->END_MAP) { $depth--; }
1.68      ng       4239: 
1.385     albertel 4240:         if (ref($curRes) && $curRes->is_problem()) {
1.91      albertel 4241: 	    my $parts = $curRes->parts();
1.68      ng       4242:             my $title = $curRes->compTitle();
1.71      ng       4243: 	    my $symbx = $curRes->symb();
1.196     albertel 4244: 	    $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326     albertel 4245: 		(scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).'&nbsp;parts)').'</td>';
1.71      ng       4246: 	    $studentTable.='<td valign="top">';
1.382     albertel 4247: 	    my %form = ('CODE' => $env{'form.CODE'},);
1.257     albertel 4248: 	    if ($env{'form.vProb'} eq 'yes' ) {
1.144     albertel 4249: 		$studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383     albertel 4250: 					     undef,'both',\%form);
1.71      ng       4251: 	    } else {
1.382     albertel 4252: 		my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80      ng       4253: 		$companswer =~ s|<form(.*?)>||g;
                   4254: 		$companswer =~ s|</form>||g;
1.71      ng       4255: #		while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116     ng       4256: #		    $companswer =~ s/$1/ /ms;
1.326     albertel 4257: #		    $request->print('match='.$1."<br />\n");
1.71      ng       4258: #		}
1.116     ng       4259: #		$companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.326     albertel 4260: 		$studentTable.='&nbsp;<b>'.$title.'</b>&nbsp;<br />&nbsp;<b>Correct answer:</b><br />'.$companswer;
1.71      ng       4261: 	    }
                   4262: 
1.257     albertel 4263: 	    my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125     ng       4264: 
1.257     albertel 4265: 	    if ($env{'form.lastSub'} eq 'datesub') {
1.71      ng       4266: 		if ($record{'version'} eq '') {
1.398     albertel 4267: 		    $studentTable.='<br />&nbsp;<span class="LC_warning">No recorded submission for this problem</span><br />';
1.71      ng       4268: 		} else {
1.116     ng       4269: 		    my %responseType = ();
                   4270: 		    foreach my $partid (@{$parts}) {
1.147     albertel 4271: 			my @responseIds =$curRes->responseIds($partid);
                   4272: 			my @responseType =$curRes->responseType($partid);
                   4273: 			my %responseIds;
                   4274: 			for (my $i=0;$i<=$#responseIds;$i++) {
                   4275: 			    $responseIds{$responseIds[$i]}=$responseType[$i];
                   4276: 			}
                   4277: 			$responseType{$partid} = \%responseIds;
1.116     ng       4278: 		    }
1.148     albertel 4279: 		    $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147     albertel 4280: 
1.71      ng       4281: 		}
1.257     albertel 4282: 	    } elsif ($env{'form.lastSub'} eq 'all') {
                   4283: 		my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71      ng       4284: 		$studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257     albertel 4285: 									$env{'request.course.id'},
1.71      ng       4286: 									'','.submission');
                   4287:  
                   4288: 	    }
1.103     albertel 4289: 	    if (&canmodify($usec)) {
                   4290: 		foreach my $partid (@{$parts}) {
                   4291: 		    $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
                   4292: 		    $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
                   4293: 		    $question++;
                   4294: 		}
1.196     albertel 4295: 		$prob++;
1.71      ng       4296: 	    }
                   4297: 	    $studentTable.='</td></tr>';
1.68      ng       4298: 
1.103     albertel 4299: 	}
1.68      ng       4300:         $curRes = $iterator->next();
                   4301:     }
                   4302: 
1.381     albertel 4303:     $studentTable.='</table></td></tr></table>'."\n".
1.125     ng       4304: 	'<input type="button" value="Save" '.
1.381     albertel 4305: 	'onClick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
1.71      ng       4306: 	'</form>'."\n";
1.324     albertel 4307:     $studentTable.=&show_grading_menu_form($symb);
1.71      ng       4308:     $request->print($studentTable);
                   4309: 
                   4310:     return '';
1.119     ng       4311: }
                   4312: 
                   4313: sub displaySubByDates {
1.148     albertel 4314:     my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224     albertel 4315:     my $isCODE=0;
1.335     albertel 4316:     my $isTask = ($symb =~/\.task$/);
1.224     albertel 4317:     if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467     albertel 4318:     my $studentTable=&Apache::loncommon::start_data_table().
                   4319: 	&Apache::loncommon::start_data_table_header_row().
                   4320: 	'<th>'.&mt('Date/Time').'</th>'.
                   4321: 	($isCODE?'<th>'.&mt('CODE').'</th>':'').
                   4322: 	'<th>'.&mt('Submission').'</th>'.
                   4323: 	'<th>'.&mt('Status').'</th>'.
                   4324: 	&Apache::loncommon::end_data_table_header_row();
1.119     ng       4325:     my ($version);
                   4326:     my %mark;
1.148     albertel 4327:     my %orders;
1.119     ng       4328:     $mark{'correct_by_student'} = $checkIcon;
1.147     albertel 4329:     if (!exists($$record{'1:timestamp'})) {
1.467     albertel 4330: 	return '<br />&nbsp;<span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br />';
1.147     albertel 4331:     }
1.335     albertel 4332: 
                   4333:     my $interaction;
1.119     ng       4334:     for ($version=1;$version<=$$record{'version'};$version++) {
1.467     albertel 4335: 	my $timestamp = 
                   4336: 	    &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335     albertel 4337: 	if (exists($$record{$version.':resource.0.version'})) {
                   4338: 	    $interaction = $$record{$version.':resource.0.version'};
                   4339: 	}
                   4340: 
                   4341: 	my $where = ($isTask ? "$version:resource.$interaction"
                   4342: 		             : "$version:resource");
1.467     albertel 4343: 	$studentTable.=&Apache::loncommon::start_data_table_row().
                   4344: 	    '<td>'.$timestamp.'</td>';
1.224     albertel 4345: 	if ($isCODE) {
                   4346: 	    $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
                   4347: 	}
1.119     ng       4348: 	my @versionKeys = split(/\:/,$$record{$version.':keys'});
                   4349: 	my @displaySub = ();
                   4350: 	foreach my $partid (@{$parts}) {
1.335     albertel 4351: 	    my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
                   4352: 			            : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
                   4353: 	    
                   4354: 
1.122     ng       4355: #	    next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324     albertel 4356: 	    my $display_part=&get_display_part($partid,$symb);
1.147     albertel 4357: 	    foreach my $matchKey (@matchKey) {
1.198     albertel 4358: 		if (exists($$record{$version.':'.$matchKey}) &&
                   4359: 		    $$record{$version.':'.$matchKey} ne '') {
1.335     albertel 4360: 
                   4361: 		    my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
                   4362: 				               : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.467     albertel 4363: 		    $displaySub[0].='<b>'.&mt('Part:').'</b>&nbsp;'.$display_part.'&nbsp;';
                   4364: 		    $displaySub[0].='<span class="LC_internal_info">('.&mt('ID').'&nbsp;'.
1.398     albertel 4365: 			$responseId.')</span>&nbsp;<b>';
1.335     albertel 4366: 		    if ($$record{"$where.$partid.tries"} eq '') {
1.467     albertel 4367: 			$displaySub[0].=&mt('Trial&nbsp;not&nbsp;counted');
1.147     albertel 4368: 		    } else {
1.467     albertel 4369: 			$displaySub[0].=&mt('Trial&nbsp;[_1]',
                   4370: 					    $$record{"$where.$partid.tries"});
1.147     albertel 4371: 		    }
1.335     albertel 4372: 		    my $responseType=($isTask ? 'Task'
                   4373:                                               : $responseType->{$partid}->{$responseId});
1.148     albertel 4374: 		    if (!exists($orders{$partid})) { $orders{$partid}={}; }
                   4375: 		    if (!exists($orders{$partid}->{$responseId})) {
                   4376: 			$orders{$partid}->{$responseId}=
                   4377: 			    &get_order($partid,$responseId,$symb,$uname,$udom);
                   4378: 		    }
1.147     albertel 4379: 		    $displaySub[0].='</b>&nbsp; '.
1.336     albertel 4380: 			&cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom).'<br />';
1.147     albertel 4381: 		}
                   4382: 	    }
1.335     albertel 4383: 	    if (exists($$record{"$where.$partid.checkedin"})) {
                   4384: 		$displaySub[1].='Checked in by '.
                   4385: 		    $$record{"$where.$partid.checkedin"}.' into slot '.
                   4386: 		    $$record{"$where.$partid.checkedin.slot"}.
                   4387: 		    '<br />';
                   4388: 	    }
                   4389: 	    if (exists $$record{"$where.$partid.award"}) {
1.207     albertel 4390: 		$displaySub[1].='<b>Part:</b>&nbsp;'.$display_part.' &nbsp;'.
1.335     albertel 4391: 		    lc($$record{"$where.$partid.award"}).' '.
                   4392: 		    $mark{$$record{"$where.$partid.solved"}}.
1.147     albertel 4393: 		    '<br />';
                   4394: 	    }
1.335     albertel 4395: 	    if (exists $$record{"$where.$partid.regrader"}) {
                   4396: 		$displaySub[2].=$$record{"$where.$partid.regrader"}.
                   4397: 		    ' (<b>'.&mt('Part').':</b> '.$display_part.')';
                   4398: 	    } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
                   4399: 		$displaySub[2].=
                   4400: 		    $$record{"$version:resource.$partid.regrader"}.
1.207     albertel 4401: 		    ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147     albertel 4402: 	    }
                   4403: 	}
                   4404: 	# needed because old essay regrader has not parts info
                   4405: 	if (exists $$record{"$version:resource.regrader"}) {
                   4406: 	    $displaySub[2].=$$record{"$version:resource.regrader"};
                   4407: 	}
                   4408: 	$studentTable.='<td>'.$displaySub[0].'&nbsp;</td><td>'.$displaySub[1];
                   4409: 	if ($displaySub[2]) {
1.467     albertel 4410: 	    $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147     albertel 4411: 	}
1.467     albertel 4412: 	$studentTable.='&nbsp;</td>'.
                   4413: 	    &Apache::loncommon::end_data_table_row();
1.119     ng       4414:     }
1.467     albertel 4415:     $studentTable.=&Apache::loncommon::end_data_table();
1.119     ng       4416:     return $studentTable;
1.71      ng       4417: }
                   4418: 
                   4419: sub updateGradeByPage {
                   4420:     my ($request) = shift;
                   4421: 
1.257     albertel 4422:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   4423:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   4424:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
                   4425:     my $pageTitle = $env{'form.page'};
1.103     albertel 4426:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257     albertel 4427:     my ($uname,$udom) = split(/:/,$env{'form.student'});
                   4428:     my $usec=$classlist->{$env{'form.student'}}[5];
1.103     albertel 4429:     if (!&canmodify($usec)) {
1.398     albertel 4430: 	$request->print('<span class="LC_warning">Unable to modify requested student.('.$env{'form.student'}.'</span>');
1.324     albertel 4431: 	$request->print(&show_grading_menu_form($env{'form.symb'}));
1.103     albertel 4432: 	return;
                   4433:     }
1.398     albertel 4434:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
1.257     albertel 4435:     $result.='<h3>&nbsp;Student: '.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129     ng       4436: 	'</h3>'."\n";
1.70      ng       4437: 
1.68      ng       4438:     $request->print($result);
                   4439: 
1.132     bowersj2 4440:     my $navmap = Apache::lonnavmaps::navmap->new();
1.257     albertel 4441:     my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71      ng       4442:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288     albertel 4443:     if (!$map) {
1.398     albertel 4444: 	$request->print('<span class="LC_warning">Unable to grade requested sequence. ('.$resUrl.')</span>');
1.324     albertel 4445: 	my ($symb)=&get_symb($request);
                   4446: 	$request->print(&show_grading_menu_form($symb));
1.288     albertel 4447: 	return; 
                   4448:     }
1.71      ng       4449:     my $iterator = $navmap->getIterator($map->map_start(),
                   4450: 					$map->map_finish());
1.70      ng       4451: 
1.71      ng       4452:     my $studentTable='<table border="0"><tr><td bgcolor="#777777">'.
1.68      ng       4453: 	'<table border="0"><tr bgcolor="#e6ffff">'.
1.125     ng       4454: 	'<td align="center"><b>&nbsp;Prob.&nbsp;</b></td>'.
1.71      ng       4455: 	'<td><b>&nbsp;Title&nbsp;</b></td>'.
                   4456: 	'<td><b>&nbsp;Previous Score&nbsp;</b></td>'.
                   4457: 	'<td><b>&nbsp;New Score&nbsp;</b></td></tr>';
                   4458: 
                   4459:     $iterator->next(); # skip the first BEGIN_MAP
                   4460:     my $curRes = $iterator->next(); # for "current resource"
1.196     albertel 4461:     my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101     albertel 4462:     while ($depth > 0) {
1.71      ng       4463:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 4464:         if($curRes == $iterator->END_MAP) { $depth--; }
1.71      ng       4465: 
1.385     albertel 4466:         if (ref($curRes) && $curRes->is_problem()) {
1.91      albertel 4467: 	    my $parts = $curRes->parts();
1.71      ng       4468:             my $title = $curRes->compTitle();
                   4469: 	    my $symbx = $curRes->symb();
1.196     albertel 4470: 	    $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326     albertel 4471: 		(scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).'&nbsp;parts)').'</td>';
1.71      ng       4472: 	    $studentTable.='<td valign="top">&nbsp;<b>'.$title.'</b>&nbsp;</td>';
                   4473: 
                   4474: 	    my %newrecord=();
                   4475: 	    my @displayPts=();
1.269     raeburn  4476:             my %aggregate = ();
                   4477:             my $aggregateflag = 0;
1.71      ng       4478: 	    foreach my $partid (@{$parts}) {
1.257     albertel 4479: 		my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
                   4480: 		my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71      ng       4481: 
1.257     albertel 4482: 		my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ? 
                   4483: 		    $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71      ng       4484: 		my $partial = $newpts/$wgt;
                   4485: 		my $score;
                   4486: 		if ($partial > 0) {
                   4487: 		    $score = 'correct_by_override';
1.125     ng       4488: 		} elsif ($newpts ne '') { #empty is taken as 0
1.71      ng       4489: 		    $score = 'incorrect_by_override';
                   4490: 		}
1.257     albertel 4491: 		my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125     ng       4492: 		if ($dropMenu eq 'excused') {
1.71      ng       4493: 		    $partial = '';
                   4494: 		    $score = 'excused';
1.125     ng       4495: 		} elsif ($dropMenu eq 'reset status'
1.257     albertel 4496: 			 && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125     ng       4497: 		    $newrecord{'resource.'.$partid.'.tries'} = 0;
                   4498: 		    $newrecord{'resource.'.$partid.'.solved'} = '';
                   4499: 		    $newrecord{'resource.'.$partid.'.award'} = '';
                   4500: 		    $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257     albertel 4501: 		    $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125     ng       4502: 		    $changeflag++;
                   4503: 		    $newpts = '';
1.269     raeburn  4504:                     
                   4505:                     my $aggtries =  $env{'form.aggtries'.$question.'_'.$partid};
                   4506:                     my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
                   4507:                     my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
                   4508:                     if ($aggtries > 0) {
                   4509:                         &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
                   4510:                         $aggregateflag = 1;
                   4511:                     }
1.71      ng       4512: 		}
1.324     albertel 4513: 		my $display_part=&get_display_part($partid,$curRes->symb());
1.257     albertel 4514: 		my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.207     albertel 4515: 		$displayPts[0].='&nbsp;<b>Part:</b> '.$display_part.' = '.
1.71      ng       4516: 		    (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326     albertel 4517: 		    '&nbsp;<br />';
1.207     albertel 4518: 		$displayPts[1].='&nbsp;<b>Part:</b> '.$display_part.' = '.
1.125     ng       4519: 		     (($score eq 'excused') ? 'excused' : $newpts).
1.326     albertel 4520: 		    '&nbsp;<br />';
1.71      ng       4521: 		$question++;
1.380     albertel 4522: 		next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125     ng       4523: 
1.71      ng       4524: 		$newrecord{'resource.'.$partid.'.awarded'}  = $partial if $partial ne '';
1.125     ng       4525: 		$newrecord{'resource.'.$partid.'.solved'}   = $score if $score ne '';
1.257     albertel 4526: 		$newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125     ng       4527: 		    if (scalar(keys(%newrecord)) > 0);
1.71      ng       4528: 
                   4529: 		$changeflag++;
                   4530: 	    }
                   4531: 	    if (scalar(keys(%newrecord)) > 0) {
1.382     albertel 4532: 		my %record = 
                   4533: 		    &Apache::lonnet::restore($symbx,$env{'request.course.id'},
                   4534: 					     $udom,$uname);
                   4535: 
                   4536: 		if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
                   4537: 		    $newrecord{'resource.CODE'} = $env{'form.CODE'};
                   4538: 		} elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
                   4539: 		    $newrecord{'resource.CODE'} = '';
                   4540: 		}
1.257     albertel 4541: 		&Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71      ng       4542: 					$udom,$uname);
1.382     albertel 4543: 		%record = &Apache::lonnet::restore($symbx,
                   4544: 						   $env{'request.course.id'},
                   4545: 						   $udom,$uname);
1.380     albertel 4546: 		&check_and_remove_from_queue($parts,\%record,undef,$symbx,
                   4547: 					     $cdom,$cnum,$udom,$uname);
1.71      ng       4548: 	    }
1.380     albertel 4549: 	    
1.269     raeburn  4550:             if ($aggregateflag) {
                   4551:                 &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
                   4552:                       $env{'course.'.$env{'request.course.id'}.'.domain'},
                   4553:                       $env{'course.'.$env{'request.course.id'}.'.num'});
                   4554:             }
1.125     ng       4555: 
1.71      ng       4556: 	    $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
                   4557: 		'<td valign="top">'.$displayPts[1].'</td>'.
                   4558: 		'</tr>';
1.68      ng       4559: 
1.196     albertel 4560: 	    $prob++;
1.68      ng       4561: 	}
1.71      ng       4562:         $curRes = $iterator->next();
1.68      ng       4563:     }
1.98      albertel 4564: 
1.71      ng       4565:     $studentTable.='</td></tr></table></td></tr></table>';
1.324     albertel 4566:     $studentTable.=&show_grading_menu_form($env{'form.symb'});
1.76      ng       4567:     my $grademsg=($changeflag == 0 ? 'No score was changed or updated.' :
                   4568: 		  'The scores were changed for '.
                   4569: 		  $changeflag.' problem'.($changeflag == 1 ? '.' : 's.'));
                   4570:     $request->print($grademsg.$studentTable);
1.68      ng       4571: 
1.70      ng       4572:     return '';
                   4573: }
                   4574: 
1.72      ng       4575: #-------- end of section for handling grading by page/sequence ---------
                   4576: #
                   4577: #-------------------------------------------------------------------
                   4578: 
1.75      albertel 4579: #--------------------Scantron Grading-----------------------------------
                   4580: #
                   4581: #------ start of section for handling grading by page/sequence ---------
                   4582: 
1.423     albertel 4583: =pod
                   4584: 
                   4585: =head1 Bubble sheet grading routines
                   4586: 
1.424     albertel 4587:   For this documentation:
                   4588: 
                   4589:    'scanline' refers to the full line of characters
                   4590:    from the file that we are parsing that represents one entire sheet
                   4591: 
                   4592:    'bubble line' refers to the data
                   4593:    representing the line of bubbles that are on the physical bubble sheet
                   4594: 
                   4595: 
                   4596: The overall process is that a scanned in bubble sheet data is uploaded
                   4597: into a course. When a user wants to grade, they select a
                   4598: sequence/folder of resources, a file of bubble sheet info, and pick
                   4599: one of the predefined configurations for what each scanline looks
                   4600: like.
                   4601: 
                   4602: Next each scanline is checked for any errors of either 'missing
1.435     foxr     4603: bubbles' (it's an error because it may have been mis-scanned
1.424     albertel 4604: because too light bubbling), 'double bubble' (each bubble line should
                   4605: have no more that one letter picked), invalid or duplicated CODE,
                   4606: invalid student ID
                   4607: 
                   4608: If the CODE option is used that determines the randomization of the
                   4609: homework problems, either way the student ID is looked up into a
                   4610: username:domain.
                   4611: 
                   4612: During the validation phase the instructor can choose to skip scanlines. 
                   4613: 
1.435     foxr     4614: After the validation phase, there are now 3 bubble sheet files
1.424     albertel 4615: 
                   4616:   scantron_original_filename (unmodified original file)
                   4617:   scantron_corrected_filename (file where the corrected information has replaced the original information)
                   4618:   scantron_skipped_filename (contains the exact text of scanlines that where skipped)
                   4619: 
                   4620: Also there is a separate hash nohist_scantrondata that contains extra
                   4621: correction information that isn't representable in the bubble sheet
                   4622: file (see &scantron_getfile() for more information)
                   4623: 
                   4624: After all scanlines are either valid, marked as valid or skipped, then
                   4625: foreach line foreach problem in the picked sequence, an ssi request is
                   4626: made that simulates a user submitting their selected letter(s) against
                   4627: the homework problem.
1.423     albertel 4628: 
                   4629: =over 4
                   4630: 
                   4631: 
                   4632: 
                   4633: =item defaultFormData
                   4634: 
                   4635:   Returns html hidden inputs used to hold context/default values.
                   4636: 
                   4637:  Arguments:
                   4638:   $symb - $symb of the current resource 
                   4639: 
                   4640: =cut
1.422     foxr     4641: 
1.81      albertel 4642: sub defaultFormData {
1.324     albertel 4643:     my ($symb)=@_;
1.447     foxr     4644:     return '<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257     albertel 4645:      '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
                   4646:      '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81      albertel 4647: }
                   4648: 
1.447     foxr     4649: 
1.423     albertel 4650: =pod 
                   4651: 
                   4652: =item getSequenceDropDown
                   4653: 
                   4654:    Return html dropdown of possible sequences to grade
                   4655:  
                   4656:  Arguments:
                   4657:    $symb - $symb of the current resource 
                   4658: 
                   4659: =cut
1.422     foxr     4660: 
1.75      albertel 4661: sub getSequenceDropDown {
1.423     albertel 4662:     my ($symb)=@_;
1.75      albertel 4663:     my $result='<select name="selectpage">'."\n";
1.423     albertel 4664:     my ($titles,$symbx) = &getSymbMap();
1.137     albertel 4665:     my ($curpage)=&Apache::lonnet::decode_symb($symb); 
1.75      albertel 4666:     my $ctr=0;
                   4667:     foreach (@$titles) {
                   4668: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   4669: 	$result.='<option value="'.$$symbx{$_}.'" '.
1.401     albertel 4670: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75      albertel 4671: 	    '>'.$showtitle.'</option>'."\n";
                   4672: 	$ctr++;
                   4673:     }
                   4674:     $result.= '</select>';
                   4675:     return $result;
                   4676: }
                   4677: 
1.423     albertel 4678: 
                   4679: =pod 
                   4680: 
                   4681: =item scantron_filenames
                   4682: 
                   4683:    Returns a list of the scantron files in the current course 
                   4684: 
                   4685: =cut
1.422     foxr     4686: 
1.202     albertel 4687: sub scantron_filenames {
1.257     albertel 4688:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   4689:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.157     albertel 4690:     my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
1.359     www      4691: 				    &propath($cdom,$cname));
1.202     albertel 4692:     my @possiblenames;
1.201     albertel 4693:     foreach my $filename (sort(@files)) {
1.157     albertel 4694: 	($filename)=split(/&/,$filename);
                   4695: 	if ($filename!~/^scantron_orig_/) { next ; }
                   4696: 	$filename=~s/^scantron_orig_//;
1.202     albertel 4697: 	push(@possiblenames,$filename);
                   4698:     }
                   4699:     return @possiblenames;
                   4700: }
                   4701: 
1.423     albertel 4702: =pod 
                   4703: 
                   4704: =item scantron_uploads
                   4705: 
                   4706:    Returns  html drop-down list of scantron files in current course.
                   4707: 
                   4708:  Arguments:
                   4709:    $file2grade - filename to set as selected in the dropdown
                   4710: 
                   4711: =cut
1.422     foxr     4712: 
1.202     albertel 4713: sub scantron_uploads {
1.209     ng       4714:     my ($file2grade) = @_;
1.202     albertel 4715:     my $result=	'<select name="scantron_selectfile">';
                   4716:     $result.="<option></option>";
                   4717:     foreach my $filename (sort(&scantron_filenames())) {
1.401     albertel 4718: 	$result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81      albertel 4719:     }
                   4720:     $result.="</select>";
                   4721:     return $result;
                   4722: }
                   4723: 
1.423     albertel 4724: =pod 
                   4725: 
                   4726: =item scantron_scantab
                   4727: 
                   4728:   Returns html drop down of the scantron formats in the scantronformat.tab
                   4729:   file.
                   4730: 
                   4731: =cut
1.422     foxr     4732: 
1.82      albertel 4733: sub scantron_scantab {
                   4734:     my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
                   4735:     my $result='<select name="scantron_format">'."\n";
1.191     albertel 4736:     $result.='<option></option>'."\n";
1.82      albertel 4737:     foreach my $line (<$fh>) {
                   4738: 	my ($name,$descrip)=split(/:/,$line);
                   4739: 	if ($name =~ /^\#/) { next; }
                   4740: 	$result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
                   4741:     }
                   4742:     $result.='</select>'."\n";
                   4743: 
                   4744:     return $result;
                   4745: }
                   4746: 
1.423     albertel 4747: =pod 
                   4748: 
                   4749: =item scantron_CODElist
                   4750: 
                   4751:   Returns html drop down of the saved CODE lists from current course,
                   4752:   generated from earlier printings.
                   4753: 
                   4754: =cut
1.422     foxr     4755: 
1.186     albertel 4756: sub scantron_CODElist {
1.257     albertel 4757:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4758:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186     albertel 4759:     my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
                   4760:     my $namechoice='<option></option>';
1.225     albertel 4761:     foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191     albertel 4762: 	if ($name =~ /^error: 2 /) { next; }
1.278     albertel 4763: 	if ($name =~ /^type\0/) { next; }
1.186     albertel 4764: 	$namechoice.='<option value="'.$name.'">'.$name.'</option>';
                   4765:     }
                   4766:     $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
                   4767:     return $namechoice;
                   4768: }
                   4769: 
1.423     albertel 4770: =pod 
                   4771: 
                   4772: =item scantron_CODEunique
                   4773: 
                   4774:   Returns the html for "Each CODE to be used once" radio.
                   4775: 
                   4776: =cut
1.422     foxr     4777: 
1.186     albertel 4778: sub scantron_CODEunique {
1.381     albertel 4779:     my $result='<span style="white-space: nowrap;">
1.272     albertel 4780:                  <label><input type="radio" name="scantron_CODEunique"
1.423     albertel 4781:                         value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381     albertel 4782:                 </span>
                   4783:                 <span style="white-space: nowrap;">
1.272     albertel 4784:                  <label><input type="radio" name="scantron_CODEunique"
1.423     albertel 4785:                         value="no" />'.&mt('No').' </label>
1.381     albertel 4786:                 </span>';
1.186     albertel 4787:     return $result;
                   4788: }
1.423     albertel 4789: 
                   4790: =pod 
                   4791: 
                   4792: =item scantron_selectphase
                   4793: 
                   4794:   Generates the initial screen to start the bubble sheet process.
                   4795:   Allows for - starting a grading run.
1.424     albertel 4796:              - downloading existing scan data (original, corrected
1.423     albertel 4797:                                                 or skipped info)
                   4798: 
                   4799:              - uploading new scan data
                   4800: 
                   4801:  Arguments:
                   4802:   $r          - The Apache request object
                   4803:   $file2grade - name of the file that contain the scanned data to score
                   4804: 
                   4805: =cut
1.186     albertel 4806: 
1.75      albertel 4807: sub scantron_selectphase {
1.209     ng       4808:     my ($r,$file2grade) = @_;
1.324     albertel 4809:     my ($symb)=&get_symb($r);
1.75      albertel 4810:     if (!$symb) {return '';}
1.423     albertel 4811:     my $sequence_selector=&getSequenceDropDown($symb);
1.324     albertel 4812:     my $default_form_data=&defaultFormData($symb);
                   4813:     my $grading_menu_button=&show_grading_menu_form($symb);
1.209     ng       4814:     my $file_selector=&scantron_uploads($file2grade);
1.82      albertel 4815:     my $format_selector=&scantron_scantab();
1.186     albertel 4816:     my $CODE_selector=&scantron_CODElist();
                   4817:     my $CODE_unique=&scantron_CODEunique();
1.75      albertel 4818:     my $result;
1.422     foxr     4819: 
                   4820:     # Chunk of form to prompt for a file to grade and how:
                   4821: 
1.75      albertel 4822:     $result.= <<SCANTRONFORM;
1.162     albertel 4823:     <table width="100%" border="0">
1.75      albertel 4824:     <tr>
1.226     albertel 4825:      <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
1.75      albertel 4826:       <td bgcolor="#777777">
1.203     albertel 4827:        <input type="hidden" name="command" value="scantron_warning" />
1.162     albertel 4828:         $default_form_data
1.75      albertel 4829:         <table width="100%" border="0">
                   4830:           <tr bgcolor="#e6ffff">
1.174     albertel 4831:             <td colspan="2">
                   4832:               &nbsp;<b>Specify file and which Folder/Sequence to grade</b>
1.75      albertel 4833:             </td>
                   4834:           </tr>
                   4835:           <tr bgcolor="#ffffe6">
1.174     albertel 4836:             <td> Sequence to grade: </td><td> $sequence_selector </td>
1.75      albertel 4837:           </tr>
                   4838:           <tr bgcolor="#ffffe6">
1.174     albertel 4839:             <td> Filename of scoring office file: </td><td> $file_selector </td>
1.75      albertel 4840:           </tr>
1.82      albertel 4841:           <tr bgcolor="#ffffe6">
1.174     albertel 4842:             <td> Format of data file: </td><td> $format_selector </td>
1.82      albertel 4843:           </tr>
1.157     albertel 4844:           <tr bgcolor="#ffffe6">
1.186     albertel 4845:             <td> Saved CODEs to validate against: </td><td> $CODE_selector</td>
                   4846:           </tr>
                   4847:           <tr bgcolor="#ffffe6">
                   4848:             <td> Each CODE is only to be used once:</td><td> $CODE_unique </td>
                   4849:           </tr>
                   4850:           <tr bgcolor="#ffffe6">
1.187     albertel 4851: 	    <td> Options: </td>
                   4852:             <td>
1.272     albertel 4853: 	       <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> Do only previously skipped records</label> <br />
1.424     albertel 4854:                <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> Remove all existing corrections</label> <br />
1.331     albertel 4855:                <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> Skip hidden resources when grading</label>
1.187     albertel 4856: 	    </td>
                   4857:           </tr>
                   4858:           <tr bgcolor="#ffffe6">
1.174     albertel 4859:             <td colspan="2">
1.265     www      4860:               <input type="submit" value="Grading: Validate Scantron Records" />
1.162     albertel 4861:             </td>
                   4862:           </tr>
                   4863:         </table>
1.226     albertel 4864:        </td>
                   4865:      </form>
1.162     albertel 4866:     </tr>
                   4867: SCANTRONFORM
                   4868:    
                   4869:     $r->print($result);
                   4870: 
1.257     albertel 4871:     if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
                   4872:         &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162     albertel 4873: 
1.422     foxr     4874: 	# Chunk of form to prompt for a scantron file upload.
                   4875: 
1.162     albertel 4876:         $r->print(<<SCANTRONFORM);
                   4877:     <tr>
                   4878:       <td bgcolor="#777777">
                   4879:         <table width="100%" border="0">
                   4880:           <tr bgcolor="#e6ffff">
                   4881:             <td>
1.174     albertel 4882:               &nbsp;<b>Specify a Scantron data file to upload.</b>
1.162     albertel 4883:             </td>
                   4884:           </tr>
                   4885:           <tr bgcolor="#ffffe6">
                   4886:             <td>
                   4887: SCANTRONFORM
1.324     albertel 4888:     my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257     albertel 4889:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4890:     my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.174     albertel 4891:     $r->print(<<UPLOAD);
                   4892:               <script type="text/javascript" language="javascript">
                   4893:     function checkUpload(formname) {
                   4894: 	if (formname.upfile.value == "") {
                   4895: 	    alert("Please use the browse button to select a file from your local directory.");
                   4896: 	    return false;
                   4897: 	}
                   4898: 	formname.submit();
                   4899:     }
                   4900:               </script>
                   4901: 
                   4902:               <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
                   4903:                 $default_form_data
                   4904:                 <input name='courseid' type='hidden' value='$cnum' />
                   4905:                 <input name='domainid' type='hidden' value='$cdom' />
                   4906:                 <input name='command' value='scantronupload_save' type='hidden' />
                   4907:                 File to upload:<input type="file" name="upfile" size="50" />
                   4908:                 <br />
                   4909:                 <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
                   4910:               </form>
                   4911: UPLOAD
1.162     albertel 4912: 
                   4913:         $r->print(<<SCANTRONFORM);
                   4914:             </td>
                   4915:           </tr>
1.75      albertel 4916:         </table>
                   4917:       </td>
                   4918:     </tr>
1.162     albertel 4919: SCANTRONFORM
                   4920:     }
1.422     foxr     4921: 
                   4922:     # Chunk of the form that prompts to view a scoring office file,
                   4923:     # corrected file, skipped records in a file.
                   4924: 
1.187     albertel 4925:     $r->print(<<SCANTRONFORM);
                   4926:     <tr>
1.226     albertel 4927:       <form action='/adm/grades' name='scantron_download'>
                   4928:         <td bgcolor="#777777">
1.379     albertel 4929: 	  $default_form_data
1.187     albertel 4930:           <input type="hidden" name="command" value="scantron_download" />
                   4931:           <table width="100%" border="0">
                   4932:             <tr bgcolor="#e6ffff">
                   4933:               <td colspan="2">
                   4934:                 &nbsp;<b>Download a scoring office file</b>
                   4935:               </td>
                   4936:             </tr>
                   4937:             <tr bgcolor="#ffffe6">
                   4938:               <td> Filename of scoring office file: </td><td> $file_selector </td>
                   4939:             </tr>
                   4940:             <tr bgcolor="#ffffe6">
                   4941:               <td colspan="2">
1.293     www      4942:                 <input type="submit" value="Download: Show List of Associated Files" />
1.187     albertel 4943:               </td>
                   4944:             </tr>
                   4945:           </table>
1.226     albertel 4946:         </td>
                   4947:       </form>
1.187     albertel 4948:     </tr>
                   4949: SCANTRONFORM
1.162     albertel 4950: 
1.457     banghart 4951:     $r->print('<tr><td bgcolor="#777777">');
                   4952:     &Apache::lonpickcode::code_list($r,2);
                   4953:     $r->print('</td></tr></table>');
                   4954:     $r->print($grading_menu_button);
1.162     albertel 4955:     return
1.75      albertel 4956: }
                   4957: 
1.423     albertel 4958: =pod
                   4959: 
                   4960: =item get_scantron_config
                   4961: 
                   4962:    Parse and return the scantron configuration line selected as a
                   4963:    hash of configuration file fields.
                   4964: 
                   4965:  Arguments:
                   4966:     which - the name of the configuration to parse from the file.
                   4967: 
                   4968: 
                   4969:  Returns:
                   4970:             If the named configuration is not in the file, an empty
                   4971:             hash is returned.
                   4972:     a hash with the fields
                   4973:       name         - internal name for the this configuration setup
                   4974:       description  - text to display to operator that describes this config
                   4975:       CODElocation - if 0 or the string 'none'
                   4976:                           - no CODE exists for this config
                   4977:                      if -1 || the string 'letter'
                   4978:                           - a CODE exists for this config and is
                   4979:                             a string of letters
                   4980:                      Unsupported value (but planned for future support)
                   4981:                           if a positive integer
                   4982:                                - The CODE exists as the first n items from
                   4983:                                  the question section of the form
                   4984:                           if the string 'number'
                   4985:                                - The CODE exists for this config and is
                   4986:                                  a string of numbers
                   4987:       CODEstart   - (only matter if a CODE exists) column in the line where
                   4988:                      the CODE starts
                   4989:       CODElength  - length of the CODE
                   4990:       IDstart     - column where the student ID number starts
                   4991:       IDlength    - length of the student ID info
                   4992:       Qstart      - column where the information from the bubbled
                   4993:                     'questions' start
                   4994:       Qlength     - number of columns comprising a single bubble line from
                   4995:                     the sheet. (usually either 1 or 10)
1.424     albertel 4996:       Qon         - either a single character representing the character used
1.423     albertel 4997:                     to signal a bubble was chosen in the positional setup, or
                   4998:                     the string 'letter' if the letter of the chosen bubble is
                   4999:                     in the final, or 'number' if a number representing the
                   5000:                     chosen bubble is in the file (1->A 0->J)
1.424     albertel 5001:       Qoff        - the character used to represent that a bubble was
                   5002:                     left blank
1.423     albertel 5003:       PaperID     - if the scanning process generates a unique number for each
                   5004:                     sheet scanned the column that this ID number starts in
                   5005:       PaperIDlength - number of columns that comprise the unique ID number
                   5006:                       for the sheet of paper
1.424     albertel 5007:       FirstName   - column that the first name starts in
1.423     albertel 5008:       FirstNameLength - number of columns that the first name spans
                   5009:  
                   5010:       LastName    - column that the last name starts in
                   5011:       LastNameLength - number of columns that the last name spans
                   5012: 
                   5013: =cut
1.422     foxr     5014: 
1.82      albertel 5015: sub get_scantron_config {
                   5016:     my ($which) = @_;
                   5017:     my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
                   5018:     my %config;
1.157     albertel 5019:     #FIXME probably should move to XML it has already gotten a bit much now
1.82      albertel 5020:     foreach my $line (<$fh>) {
                   5021: 	my ($name,$descrip)=split(/:/,$line);
                   5022: 	if ($name ne $which ) { next; }
                   5023: 	chomp($line);
                   5024: 	my @config=split(/:/,$line);
                   5025: 	$config{'name'}=$config[0];
                   5026: 	$config{'description'}=$config[1];
                   5027: 	$config{'CODElocation'}=$config[2];
                   5028: 	$config{'CODEstart'}=$config[3];
                   5029: 	$config{'CODElength'}=$config[4];
                   5030: 	$config{'IDstart'}=$config[5];
                   5031: 	$config{'IDlength'}=$config[6];
                   5032: 	$config{'Qstart'}=$config[7];
                   5033: 	$config{'Qlength'}=$config[8];
                   5034: 	$config{'Qoff'}=$config[9];
                   5035: 	$config{'Qon'}=$config[10];
1.157     albertel 5036: 	$config{'PaperID'}=$config[11];
                   5037: 	$config{'PaperIDlength'}=$config[12];
                   5038: 	$config{'FirstName'}=$config[13];
                   5039: 	$config{'FirstNamelength'}=$config[14];
                   5040: 	$config{'LastName'}=$config[15];
                   5041: 	$config{'LastNamelength'}=$config[16];
1.82      albertel 5042: 	last;
                   5043:     }
                   5044:     return %config;
                   5045: }
                   5046: 
1.423     albertel 5047: =pod 
                   5048: 
                   5049: =item username_to_idmap
                   5050: 
                   5051:     creates a hash keyed by student id with values of the corresponding
                   5052:     student username:domain.
                   5053: 
                   5054:   Arguments:
                   5055: 
                   5056:     $classlist - reference to the class list hash. This is a hash
                   5057:                  keyed by student name:domain  whose elements are references
1.424     albertel 5058:                  to arrays containing various chunks of information
1.423     albertel 5059:                  about the student. (See loncoursedata for more info).
                   5060: 
                   5061:   Returns
                   5062:     %idmap - the constructed hash
                   5063: 
                   5064: =cut
                   5065: 
1.82      albertel 5066: sub username_to_idmap {
                   5067:     my ($classlist)= @_;
                   5068:     my %idmap;
                   5069:     foreach my $student (keys(%$classlist)) {
                   5070: 	$idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
                   5071: 	    $student;
                   5072:     }
                   5073:     return %idmap;
                   5074: }
1.423     albertel 5075: 
                   5076: =pod
                   5077: 
1.424     albertel 5078: =item scantron_fixup_scanline
1.423     albertel 5079: 
                   5080:    Process a requested correction to a scanline.
                   5081: 
                   5082:   Arguments:
                   5083:     $scantron_config   - hash from &get_scantron_config()
                   5084:     $scan_data         - hash of correction information 
                   5085:                           (see &scantron_getfile())
                   5086:     $line              - existing scanline
                   5087:     $whichline         - line number of the passed in scanline
                   5088:     $field             - type of change to process 
                   5089:                          (either 
                   5090:                           'ID'     -> correct the student ID number
                   5091:                           'CODE'   -> correct the CODE
                   5092:                           'answer' -> fixup the submitted answers)
                   5093:     
                   5094:    $args               - hash of additional info,
                   5095:                           - 'ID' 
                   5096:                                'newid' -> studentID to use in replacement
1.424     albertel 5097:                                           of existing one
1.423     albertel 5098:                           - 'CODE' 
                   5099:                                'CODE_ignore_dup' - set to true if duplicates
                   5100:                                                    should be ignored.
                   5101: 	                       'CODE' - is new code or 'use_unfound'
1.424     albertel 5102:                                         if the existing unfound code should
1.423     albertel 5103:                                         be used as is
                   5104:                           - 'answer'
                   5105:                                'response' - new answer or 'none' if blank
                   5106:                                'question' - the bubble line to change
                   5107: 
                   5108:   Returns:
                   5109:     $line - the modified scanline
                   5110: 
                   5111:   Side effects: 
                   5112:     $scan_data - may be updated
                   5113: 
                   5114: =cut
                   5115: 
1.82      albertel 5116: 
1.157     albertel 5117: sub scantron_fixup_scanline {
                   5118:     my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
1.479     foxr     5119:     
                   5120:     
1.157     albertel 5121:     if ($field eq 'ID') {
                   5122: 	if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186     albertel 5123: 	    return ($line,1,'New value too large');
1.157     albertel 5124: 	}
                   5125: 	if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
                   5126: 	    $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
                   5127: 				     $args->{'newid'});
                   5128: 	}
                   5129: 	substr($line,$$scantron_config{'IDstart'}-1,
                   5130: 	       $$scantron_config{'IDlength'})=$args->{'newid'};
                   5131: 	if ($args->{'newid'}=~/^\s*$/) {
                   5132: 	    &scan_data($scan_data,"$whichline.user",
                   5133: 		       $args->{'username'}.':'.$args->{'domain'});
                   5134: 	}
1.186     albertel 5135:     } elsif ($field eq 'CODE') {
1.192     albertel 5136: 	if ($args->{'CODE_ignore_dup'}) {
                   5137: 	    &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
                   5138: 	}
                   5139: 	&scan_data($scan_data,"$whichline.useCODE",'1');
                   5140: 	if ($args->{'CODE'} ne 'use_unfound') {
1.191     albertel 5141: 	    if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
                   5142: 		return ($line,1,'New CODE value too large');
                   5143: 	    }
                   5144: 	    if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
                   5145: 		$args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
                   5146: 	    }
                   5147: 	    substr($line,$$scantron_config{'CODEstart'}-1,
                   5148: 		   $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186     albertel 5149: 	}
1.157     albertel 5150:     } elsif ($field eq 'answer') {
1.479     foxr     5151: 	&scantron_get_maxbubble(); # Need the bubble counter info.
1.157     albertel 5152: 	my $length=$scantron_config->{'Qlength'};
                   5153: 	my $off=$scantron_config->{'Qoff'};
                   5154: 	my $on=$scantron_config->{'Qon'};
                   5155: 	my $answer=${off}x$length;
1.479     foxr     5156:         my $question_number = $args->{'question'} -1;
                   5157:         my $first_position  = $first_bubble_line{$question_number};
                   5158: 	my $bubble_count    = $bubble_lines_per_response{$question_number};
                   5159:         my $bubbles_per_line= $$scantron_config{'Qlength'};
                   5160:         my $final_answer;
                   5161:         if ($$scantron_config{'Qon'} eq 'letter'  ||
                   5162: 	    $$scantron_config{'Qon'} eq 'number') { 
                   5163: 	    $bubbles_per_line = 10;
                   5164: 	}
                   5165: 	if (defined $args->{'response'}) {
                   5166: 	    
                   5167: 	    if ($args->{'response'} eq 'none') {
                   5168: 		&scan_data($scan_data,
                   5169: 			   "$whichline.no_bubble.".$args->{'question'},'1');
1.274     albertel 5170: 	    } else {
1.479     foxr     5171: 		my ($bubble_line, $bubble_number) = split(/:/,$args->{'response'});
                   5172: 		if ($on eq 'letter') {
                   5173: 		    my @alphabet=('A'..'Z');
                   5174: 		    $answer=$alphabet[$bubble_number];
                   5175: 		} elsif ($on eq 'number') {
1.481   ! foxr     5176: 		    $answer=$args->{$bubble_number+1};
1.479     foxr     5177: 		    if ($answer == 10) { $answer = '0'; }
                   5178: 		} else {
                   5179: 		    substr($answer,$args->{'response'},1)=$on;
                   5180: 		}
                   5181: 		&scan_data($scan_data,
                   5182: 			   "$whichline.no_bubble.".$args->{'question'},undef,'1');
                   5183: 		for (my $l = 0; $l < $bubble_count; $l++) {
                   5184: 		    if ($l eq $bubble_line) {
                   5185: 			$final_answer .= $answer;
                   5186: 		    } else {
                   5187: 			$final_answer .= ' ';
                   5188: 		    }
                   5189: 		}
1.274     albertel 5190: 	    }
1.479     foxr     5191: 	    # $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
                   5192: 	    #substr($line,$where-1,$length)=$answer;
                   5193: 	    substr($line, 
                   5194: 		   $scantron_config->{'Qstart'}+$first_position-1,
                   5195: 		   $bubbles_per_line) = $final_answer;
1.157     albertel 5196: 	}
                   5197:     }
                   5198:     return $line;
                   5199: }
1.423     albertel 5200: 
                   5201: =pod
                   5202: 
                   5203: =item scan_data
                   5204: 
                   5205:     Edit or look up  an item in the scan_data hash.
                   5206: 
                   5207:   Arguments:
                   5208:     $scan_data  - The hash (see scantron_getfile)
                   5209:     $key        - shorthand of the key to edit (actual key is
1.424     albertel 5210:                   scantronfilename_key).
1.423     albertel 5211:     $data        - New value of the hash entry.
                   5212:     $delete      - If true, the entry is removed from the hash.
                   5213: 
                   5214:   Returns:
                   5215:     The new value of the hash table field (undefined if deleted).
                   5216: 
                   5217: =cut
                   5218: 
                   5219: 
1.157     albertel 5220: sub scan_data {
                   5221:     my ($scan_data,$key,$value,$delete)=@_;
1.257     albertel 5222:     my $filename=$env{'form.scantron_selectfile'};
1.157     albertel 5223:     if (defined($value)) {
                   5224: 	$scan_data->{$filename.'_'.$key} = $value;
                   5225:     }
                   5226:     if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
                   5227:     return $scan_data->{$filename.'_'.$key};
                   5228: }
1.423     albertel 5229: 
                   5230: =pod 
                   5231: 
                   5232: =item scantron_parse_scanline
                   5233: 
                   5234:   Decodes a scanline from the selected scantron file
                   5235: 
                   5236:  Arguments:
                   5237:     line             - The text of the scantron file line to process
                   5238:     whichline        - Line number
                   5239:     scantron_config  - Hash describing the format of the scantron lines.
                   5240:     scan_data        - Hash of extra information about the scanline
                   5241:                        (see scantron_getfile for more information)
                   5242:     just_header      - True if should not process question answers but only
                   5243:                        the stuff to the left of the answers.
                   5244:  Returns:
                   5245:    Hash containing the result of parsing the scanline
                   5246: 
                   5247:    Keys are all proceeded by the string 'scantron.'
                   5248: 
                   5249:        CODE    - the CODE in use for this scanline
                   5250:        useCODE - 1 if the CODE is invalid but it usage has been forced
                   5251:                  by the operator
                   5252:        CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
                   5253:                             CODEs were selected, but the usage has been
                   5254:                             forced by the operator
                   5255:        ID  - student ID
                   5256:        PaperID - if used, the ID number printed on the sheet when the 
                   5257:                  paper was scanned
                   5258:        FirstName - first name from the sheet
                   5259:        LastName  - last name from the sheet
                   5260: 
                   5261:      if just_header was not true these key may also exist
                   5262: 
1.447     foxr     5263:        missingerror - a list of bubble ranges that are considered to be answers
                   5264:                       to a single question that don't have any bubbles filled in.
                   5265:                       Of the form questionnumber:firstbubblenumber:count.
                   5266:        doubleerror  - a list of bubble ranges that are considered to be answers
                   5267:                       to a single question that have more than one bubble filled in.
                   5268:                       Of the form questionnumber::firstbubblenumber:count
                   5269:    
                   5270:                 In the above, count is the number of bubble responses in the
                   5271:                 input line needed to represent the possible answers to the question.
                   5272:                 e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
                   5273:                 per line would have count = 2.
                   5274: 
1.423     albertel 5275:        maxquest     - the number of the last bubble line that was parsed
                   5276: 
                   5277:        (<number> starts at 1)
                   5278:        <number>.answer - zero or more letters representing the selected
                   5279:                          letters from the scanline for the bubble line 
                   5280:                          <number>.
                   5281:                          if blank there was either no bubble or there where
                   5282:                          multiple bubbles, (consult the keys missingerror and
                   5283:                          doubleerror if this is an error condition)
                   5284: 
                   5285: =cut
                   5286: 
1.82      albertel 5287: sub scantron_parse_scanline {
1.423     albertel 5288:     my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470     foxr     5289: 
1.82      albertel 5290:     my %record;
1.422     foxr     5291:     my $questions=substr($line,$$scantron_config{'Qstart'}-1);  # Answers
                   5292:     my $data=substr($line,0,$$scantron_config{'Qstart'}-1);     # earlier stuff
1.278     albertel 5293:     if (!($$scantron_config{'CODElocation'} eq 0 ||
                   5294: 	  $$scantron_config{'CODElocation'} eq 'none')) {
                   5295: 	if ($$scantron_config{'CODElocation'} < 0 ||
                   5296: 	    $$scantron_config{'CODElocation'} eq 'letter' ||
                   5297: 	    $$scantron_config{'CODElocation'} eq 'number') {
1.191     albertel 5298: 	    $record{'scantron.CODE'}=substr($data,
                   5299: 					    $$scantron_config{'CODEstart'}-1,
1.83      albertel 5300: 					    $$scantron_config{'CODElength'});
1.191     albertel 5301: 	    if (&scan_data($scan_data,"$whichline.useCODE")) {
                   5302: 		$record{'scantron.useCODE'}=1;
                   5303: 	    }
1.192     albertel 5304: 	    if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
                   5305: 		$record{'scantron.CODE_ignore_dup'}=1;
                   5306: 	    }
1.82      albertel 5307: 	} else {
                   5308: 	    #FIXME interpret first N questions
                   5309: 	}
                   5310:     }
1.83      albertel 5311:     $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
                   5312: 				  $$scantron_config{'IDlength'});
1.157     albertel 5313:     $record{'scantron.PaperID'}=
                   5314: 	substr($data,$$scantron_config{'PaperID'}-1,
                   5315: 	       $$scantron_config{'PaperIDlength'});
                   5316:     $record{'scantron.FirstName'}=
                   5317: 	substr($data,$$scantron_config{'FirstName'}-1,
                   5318: 	       $$scantron_config{'FirstNamelength'});
                   5319:     $record{'scantron.LastName'}=
                   5320: 	substr($data,$$scantron_config{'LastName'}-1,
                   5321: 	       $$scantron_config{'LastNamelength'});
1.423     albertel 5322:     if ($just_header) { return \%record; }
1.194     albertel 5323: 
1.82      albertel 5324:     my @alphabet=('A'..'Z');
                   5325:     my $questnum=0;
1.447     foxr     5326:     my $ansnum  =1;		# Multiple 'answer lines'/question.
                   5327: 
1.470     foxr     5328:     chomp($questions);		# Get rid of any trailing \n.
                   5329:     $questions =~ s/\r$//;      # Get rid of trailing \r too (MAC or Win uploads).
                   5330:     while (length($questions)) {
1.447     foxr     5331: 	my $answers_needed = $bubble_lines_per_response{$questnum};
                   5332: 	my $answer_length  = $$scantron_config{'Qlength'} * $answers_needed;
                   5333: 
                   5334: 
                   5335: 
1.82      albertel 5336: 	$questnum++;
1.447     foxr     5337: 	my $currentquest = substr($questions,0,$answer_length);
                   5338: 	$questions       = substr($questions,0,$answer_length)='';
                   5339: 	if (length($currentquest) < $answer_length) { next; }
                   5340: 
                   5341: 	# Qon letter implies for each slot in currentquest we have:
                   5342: 	#    ? or * for doubles a letter in A-Z for a bubble and
                   5343:         #    about anything else (esp. a value of Qoff for missing
                   5344: 	#    bubbles.
                   5345: 
                   5346: 
1.239     albertel 5347: 	if ($$scantron_config{'Qon'} eq 'letter') {
1.447     foxr     5348: 
                   5349: 	    if ($currentquest =~ /\?/
                   5350: 		|| $currentquest =~ /\*/
                   5351: 		|| (&occurence_count($currentquest, "[A-Z]") > 1)) {
1.274     albertel 5352: 		push(@{$record{'scantron.doubleerror'}},$questnum);
1.447     foxr     5353: 		for (my $ans = 0; $ans < $answers_needed; $ans++) { 
1.460     foxr     5354: 		    my $bubble = substr($currentquest, $ans, 1);
                   5355: 		    if ($bubble =~ /[A-Z]/ ) {
                   5356: 			$record{"scantron.$ansnum.answer"} = $bubble;
                   5357: 		    } else {
                   5358: 			$record{"scantron.$ansnum.answer"}='';
                   5359: 		    }
1.447     foxr     5360: 		    $ansnum++;
                   5361: 		}
                   5362: 
1.389     albertel 5363: 	    } elsif (!defined($currentquest)
1.447     foxr     5364: 		     || (&occurence_count($currentquest, $$scantron_config{'Qoff'}) == length($currentquest))
                   5365: 		     || (&occurence_count($currentquest, "[A-Z]") == 0)) {
                   5366: 		for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
                   5367: 		    $record{"scantron.$ansnum.answer"}='';
                   5368: 		    $ansnum++;
                   5369: 
                   5370: 		}
1.239     albertel 5371: 		if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
                   5372: 		    push(@{$record{"scantron.missingerror"}},$questnum);
1.470     foxr     5373: 		   #  $ansnum += $answers_needed;
1.239     albertel 5374: 		}
                   5375: 	    } else {
1.447     foxr     5376: 		for (my $ans = 0; $ans < $answers_needed; $ans++) {
                   5377: 		    $record{"scantron.$ansnum.answer"} = substr($currentquest, $ans, 1);
                   5378: 		    $ansnum++;
                   5379: 		}
1.239     albertel 5380: 	    }
1.447     foxr     5381: 
                   5382: 	# Qon 'number' implies each slot gives a digit that indexes the
                   5383: 	#    the bubbles filled or Qoff or a non number for unbubbled lines.
                   5384:         #    and *? for double bubbles on a line.
                   5385: 	#    these answers are also stored as letters.
                   5386: 
1.239     albertel 5387: 	} elsif ($$scantron_config{'Qon'} eq 'number') {
1.447     foxr     5388: 	    if ($currentquest =~ /\?/
                   5389: 		|| $currentquest =~ /\*/
                   5390: 		|| (&occurence_count($currentquest, '\d') > 1)) {
1.274     albertel 5391: 		push(@{$record{'scantron.doubleerror'}},$questnum);
1.447     foxr     5392: 		for (my $ans = 0; $ans < $answers_needed; $ans++) {
1.460     foxr     5393: 		    my $bubble = substr($currentquest, $ans, 1);
                   5394: 		    if ($bubble =~ /\d/) {
                   5395: 			$record{"scantron.$ansnum.answer"} = $alphabet[$bubble];
                   5396: 		    } else {
1.461     foxr     5397: 			$record{"scantron.$ansnum.answer"}=' ';
1.460     foxr     5398: 		    }
1.447     foxr     5399: 		    $ansnum++;
                   5400: 		}
                   5401: 
1.389     albertel 5402: 	    } elsif (!defined($currentquest)
1.447     foxr     5403: 		     || (&occurence_count($currentquest,$$scantron_config{'Qoff'}) == length($currentquest)) 
                   5404: 		     || (&occurence_count($currentquest, '\d') == 0)) {
                   5405: 		for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
                   5406: 		    $record{"scantron.$ansnum.answer"}='';
                   5407: 		    $ansnum++;
                   5408: 
                   5409: 		}
1.239     albertel 5410: 		if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
                   5411: 		    push(@{$record{"scantron.missingerror"}},$questnum);
1.447     foxr     5412: 		    $ansnum += $answers_needed;
1.239     albertel 5413: 		}
1.447     foxr     5414: 
1.239     albertel 5415: 	    } else {
1.447     foxr     5416: 		$currentquest = &digits_to_letters($currentquest);
                   5417: 		for (my $ans =0; $ans < $answers_needed; $ans++) {
                   5418: 		    $record{"scantron.$ansnum.answer"} = substr($currentquest, $ans, 1);
                   5419: 		    $ansnum++;
1.371     albertel 5420: 		}
1.239     albertel 5421: 	    }
1.82      albertel 5422: 	} else {
1.447     foxr     5423: 
                   5424: 	    # Otherwise there's a positional notation;
                   5425: 	    # each bubble line requires Qlength items, and there are filled in
                   5426: 	    # bubbles for each case where there 'Qon' characters.
                   5427: 	    #
                   5428: 
1.239     albertel 5429: 	    my @array=split($$scantron_config{'Qon'},$currentquest,-1);
1.447     foxr     5430: 
                   5431: 	    # If the split only  giveas us one element.. the full length of the
                   5432: 	    # answser string, no bubbles are filled in:
                   5433: 
                   5434: 	    if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
                   5435: 		for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
                   5436: 		    $record{"scantron.$ansnum.answer"}='';
                   5437: 		    $ansnum++;
                   5438: 
                   5439: 		}
1.239     albertel 5440: 		if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
                   5441: 		    push(@{$record{"scantron.missingerror"}},$questnum);
                   5442: 		}
1.447     foxr     5443: 	    } elsif (scalar(@array) lt 2) {
                   5444: 
1.459     foxr     5445: 		my $location      = length($array[0]);
1.447     foxr     5446: 		my $line_num      = $location / $$scantron_config{'Qlength'};
                   5447: 		my $bubble        = $alphabet[$location % $$scantron_config{'Qlength'}];
                   5448: 
                   5449: 		for (my $ans = 0; $ans < $answers_needed; $ans++) {
                   5450: 		    if ($ans eq $line_num) {
                   5451: 			$record{"scantron.$ansnum.answer"} = $bubble;
                   5452: 		    } else {
                   5453: 			$record{"scantron.$ansnum.answer"} = ' ';
                   5454: 		    }
                   5455: 		    $ansnum++;
                   5456: 		}
1.239     albertel 5457: 	    }
1.447     foxr     5458: 	    #  If there's more than one instance of a bubble character
                   5459: 	    #  That's a double bubble; with positional notation we can
                   5460: 	    #  record all the bubbles filled in as well as the 
                   5461: 	    #  fact this response consists of multiple bubbles.
                   5462: 	    #
                   5463: 	    else {
1.239     albertel 5464: 		push(@{$record{'scantron.doubleerror'}},$questnum);
1.447     foxr     5465: 
                   5466: 		my $first_answer = $ansnum;
                   5467: 		for (my $ans =0; $ans < $answers_needed; $ans++) {
1.462     foxr     5468: 		    my $item = $first_answer+$ans;
                   5469: 		    $record{"scantron.$item.answer"} = '';
1.447     foxr     5470: 		}
                   5471: 
1.239     albertel 5472: 		my @ans=@array;
1.462     foxr     5473: 		my $i=0;
                   5474: 		my $increment = 0;
1.239     albertel 5475: 		while ($#ans) {
1.462     foxr     5476: 		    $i+=length($ans[0]) + $increment;
                   5477: 		    my $line   = int($i/$$scantron_config{'Qlength'} + $first_answer);
1.447     foxr     5478: 		    my $bubble = $i%$$scantron_config{'Qlength'};
                   5479: 		    $record{"scantron.$line.answer"}.=$alphabet[$bubble];
1.239     albertel 5480: 		    shift(@ans);
1.462     foxr     5481: 		    $increment = 1;
1.239     albertel 5482: 		}
1.462     foxr     5483: 		$ansnum += $answers_needed;
1.239     albertel 5484: 	    }
1.82      albertel 5485: 	}
                   5486:     }
1.83      albertel 5487:     $record{'scantron.maxquest'}=$questnum;
                   5488:     return \%record;
1.82      albertel 5489: }
                   5490: 
1.423     albertel 5491: =pod
                   5492: 
                   5493: =item scantron_add_delay
                   5494: 
                   5495:    Adds an error message that occurred during the grading phase to a
                   5496:    queue of messages to be shown after grading pass is complete
                   5497: 
                   5498:  Arguments:
1.424     albertel 5499:    $delayqueue  - arrary ref of hash ref of error messages
1.423     albertel 5500:    $scanline    - the scanline that caused the error
                   5501:    $errormesage - the error message
                   5502:    $errorcode   - a numeric code for the error
                   5503: 
                   5504:  Side Effects:
1.424     albertel 5505:    updates the $delayqueue to have a new hash ref of the error
1.423     albertel 5506: 
                   5507: =cut
                   5508: 
1.82      albertel 5509: sub scantron_add_delay {
1.140     albertel 5510:     my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
                   5511:     push(@$delayqueue,
                   5512: 	 {'line' => $scanline, 'emsg' => $errormessage,
                   5513: 	  'ecode' => $errorcode }
                   5514: 	 );
1.82      albertel 5515: }
                   5516: 
1.423     albertel 5517: =pod
                   5518: 
                   5519: =item scantron_find_student
                   5520: 
1.424     albertel 5521:    Finds the username for the current scanline
                   5522: 
                   5523:   Arguments:
                   5524:    $scantron_record - hash result from scantron_parse_scanline
                   5525:    $scan_data       - hash of correction information 
                   5526:                       (see &scantron_getfile() form more information)
                   5527:    $idmap           - hash from &username_to_idmap()
                   5528:    $line            - number of current scanline
                   5529:  
                   5530:   Returns:
                   5531:    Either 'username:domain' or undef if unknown
                   5532: 
1.423     albertel 5533: =cut
                   5534: 
1.82      albertel 5535: sub scantron_find_student {
1.157     albertel 5536:     my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83      albertel 5537:     my $scanID=$$scantron_record{'scantron.ID'};
1.157     albertel 5538:     if ($scanID =~ /^\s*$/) {
                   5539:  	return &scan_data($scan_data,"$line.user");
                   5540:     }
1.83      albertel 5541:     foreach my $id (keys(%$idmap)) {
1.157     albertel 5542:  	if (lc($id) eq lc($scanID)) {
                   5543:  	    return $$idmap{$id};
                   5544:  	}
1.83      albertel 5545:     }
                   5546:     return undef;
                   5547: }
                   5548: 
1.423     albertel 5549: =pod
                   5550: 
                   5551: =item scantron_filter
                   5552: 
1.424     albertel 5553:    Filter sub for lonnavmaps, filters out hidden resources if ignore
                   5554:    hidden resources was selected
                   5555: 
1.423     albertel 5556: =cut
                   5557: 
1.83      albertel 5558: sub scantron_filter {
                   5559:     my ($curres)=@_;
1.331     albertel 5560: 
                   5561:     if (ref($curres) && $curres->is_problem()) {
                   5562: 	# if the user has asked to not have either hidden
                   5563: 	# or 'randomout' controlled resources to be graded
                   5564: 	# don't include them
                   5565: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
                   5566: 	    && $curres->randomout) {
                   5567: 	    return 0;
                   5568: 	}
1.83      albertel 5569: 	return 1;
                   5570:     }
                   5571:     return 0;
1.82      albertel 5572: }
                   5573: 
1.423     albertel 5574: =pod
                   5575: 
                   5576: =item scantron_process_corrections
                   5577: 
1.424     albertel 5578:    Gets correction information out of submitted form data and corrects
                   5579:    the scanline
                   5580: 
1.423     albertel 5581: =cut
                   5582: 
1.157     albertel 5583: sub scantron_process_corrections {
                   5584:     my ($r) = @_;
1.257     albertel 5585:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 5586:     my ($scanlines,$scan_data)=&scantron_getfile();
                   5587:     my $classlist=&Apache::loncoursedata::get_classlist();
1.257     albertel 5588:     my $which=$env{'form.scantron_line'};
1.200     albertel 5589:     my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157     albertel 5590:     my ($skip,$err,$errmsg);
1.257     albertel 5591:     if ($env{'form.scantron_skip_record'}) {
1.157     albertel 5592: 	$skip=1;
1.257     albertel 5593:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
                   5594: 	my $newstudent=$env{'form.scantron_username'}.':'.
                   5595: 	    $env{'form.scantron_domain'};
1.157     albertel 5596: 	my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
                   5597: 	($line,$err,$errmsg)=
                   5598: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
                   5599: 				     'ID',{'newid'=>$newid,
1.257     albertel 5600: 				    'username'=>$env{'form.scantron_username'},
                   5601: 				    'domain'=>$env{'form.scantron_domain'}});
                   5602:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
                   5603: 	my $resolution=$env{'form.scantron_CODE_resolution'};
1.190     albertel 5604: 	my $newCODE;
1.192     albertel 5605: 	my %args;
1.190     albertel 5606: 	if      ($resolution eq 'use_unfound') {
1.191     albertel 5607: 	    $newCODE='use_unfound';
1.190     albertel 5608: 	} elsif ($resolution eq 'use_found') {
1.257     albertel 5609: 	    $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190     albertel 5610: 	} elsif ($resolution eq 'use_typed') {
1.257     albertel 5611: 	    $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194     albertel 5612: 	} elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257     albertel 5613: 	    $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190     albertel 5614: 	}
1.257     albertel 5615: 	if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192     albertel 5616: 	    $args{'CODE_ignore_dup'}=1;
                   5617: 	}
                   5618: 	$args{'CODE'}=$newCODE;
1.186     albertel 5619: 	($line,$err,$errmsg)=
                   5620: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192     albertel 5621: 				     'CODE',\%args);
1.257     albertel 5622:     } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
                   5623: 	foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157     albertel 5624: 	    ($line,$err,$errmsg)=
                   5625: 		&scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
                   5626: 					 $which,'answer',
                   5627: 					 { 'question'=>$question,
1.257     albertel 5628: 		       'response'=>$env{"form.scantron_correct_Q_$question"}});
1.157     albertel 5629: 	    if ($err) { last; }
                   5630: 	}
                   5631:     }
                   5632:     if ($err) {
1.398     albertel 5633: 	$r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157     albertel 5634:     } else {
1.200     albertel 5635: 	&scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157     albertel 5636: 	&scantron_putfile($scanlines,$scan_data);
                   5637:     }
                   5638: }
                   5639: 
1.423     albertel 5640: =pod
                   5641: 
                   5642: =item reset_skipping_status
                   5643: 
1.424     albertel 5644:    Forgets the current set of remember skipped scanlines (and thus
                   5645:    reverts back to considering all lines in the
                   5646:    scantron_skipped_<filename> file)
                   5647: 
1.423     albertel 5648: =cut
                   5649: 
1.200     albertel 5650: sub reset_skipping_status {
                   5651:     my ($scanlines,$scan_data)=&scantron_getfile();
                   5652:     &scan_data($scan_data,'remember_skipping',undef,1);
                   5653:     &scantron_putfile(undef,$scan_data);
                   5654: }
                   5655: 
1.423     albertel 5656: =pod
                   5657: 
                   5658: =item start_skipping
                   5659: 
1.424     albertel 5660:    Marks a scanline to be skipped. 
                   5661: 
1.423     albertel 5662: =cut
                   5663: 
1.376     albertel 5664: sub start_skipping {
1.200     albertel 5665:     my ($scan_data,$i)=@_;
                   5666:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376     albertel 5667:     if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
                   5668: 	$remembered{$i}=2;
                   5669:     } else {
                   5670: 	$remembered{$i}=1;
                   5671:     }
1.200     albertel 5672:     &scan_data($scan_data,'remember_skipping',join(':',%remembered));
                   5673: }
                   5674: 
1.423     albertel 5675: =pod
                   5676: 
                   5677: =item should_be_skipped
                   5678: 
1.424     albertel 5679:    Checks whether a scanline should be skipped.
                   5680: 
1.423     albertel 5681: =cut
                   5682: 
1.200     albertel 5683: sub should_be_skipped {
1.376     albertel 5684:     my ($scanlines,$scan_data,$i)=@_;
1.257     albertel 5685:     if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200     albertel 5686: 	# not redoing old skips
1.376     albertel 5687: 	if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200     albertel 5688: 	return 0;
                   5689:     }
                   5690:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376     albertel 5691: 
                   5692:     if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
                   5693: 	return 0;
                   5694:     }
1.200     albertel 5695:     return 1;
                   5696: }
                   5697: 
1.423     albertel 5698: =pod
                   5699: 
                   5700: =item remember_current_skipped
                   5701: 
1.424     albertel 5702:    Discovers what scanlines are in the scantron_skipped_<filename>
                   5703:    file and remembers them into scan_data for later use.
                   5704: 
1.423     albertel 5705: =cut
                   5706: 
1.200     albertel 5707: sub remember_current_skipped {
                   5708:     my ($scanlines,$scan_data)=&scantron_getfile();
                   5709:     my %to_remember;
                   5710:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   5711: 	if ($scanlines->{'skipped'}[$i]) {
                   5712: 	    $to_remember{$i}=1;
                   5713: 	}
                   5714:     }
1.376     albertel 5715: 
1.200     albertel 5716:     &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
                   5717:     &scantron_putfile(undef,$scan_data);
                   5718: }
                   5719: 
1.423     albertel 5720: =pod
                   5721: 
                   5722: =item check_for_error
                   5723: 
1.424     albertel 5724:     Checks if there was an error when attempting to remove a specific
                   5725:     scantron_.. bubble sheet data file. Prints out an error if
                   5726:     something went wrong.
                   5727: 
1.423     albertel 5728: =cut
                   5729: 
1.200     albertel 5730: sub check_for_error {
                   5731:     my ($r,$result)=@_;
                   5732:     if ($result ne 'ok' && $result ne 'not_found' ) {
1.401     albertel 5733: 	$r->print("An error occurred ($result) when trying to Remove the existing corrections.");
1.200     albertel 5734:     }
                   5735: }
1.157     albertel 5736: 
1.423     albertel 5737: =pod
                   5738: 
                   5739: =item scantron_warning_screen
                   5740: 
1.424     albertel 5741:    Interstitial screen to make sure the operator has selected the
                   5742:    correct options before we start the validation phase.
                   5743: 
1.423     albertel 5744: =cut
                   5745: 
1.203     albertel 5746: sub scantron_warning_screen {
                   5747:     my ($button_text)=@_;
1.257     albertel 5748:     my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284     albertel 5749:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373     albertel 5750:     my $CODElist;
1.284     albertel 5751:     if ($scantron_config{'CODElocation'} &&
                   5752: 	$scantron_config{'CODEstart'} &&
                   5753: 	$scantron_config{'CODElength'}) {
                   5754: 	$CODElist=$env{'form.scantron_CODElist'};
1.398     albertel 5755: 	if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284     albertel 5756: 	$CODElist=
                   5757: 	    '<tr><td><b>List of CODES to validate against:</b></td><td><tt>'.
1.373     albertel 5758: 	    $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284     albertel 5759:     }
1.203     albertel 5760:     return (<<STUFF);
                   5761: <p>
1.398     albertel 5762: <span class="LC_warning">Please double check the information
                   5763:                  below before clicking on '$button_text'</span>
1.203     albertel 5764: </p>
                   5765: <table>
1.284     albertel 5766: <tr><td><b>Sequence to be Graded:</b></td><td>$title</td></tr>
1.257     albertel 5767: <tr><td><b>Data File that will be used:</b></td><td><tt>$env{'form.scantron_selectfile'}</tt></td></tr>
1.284     albertel 5768: $CODElist
1.203     albertel 5769: </table>
                   5770: <br />
                   5771: <p> If this information is correct, please click on '$button_text'.</p>
                   5772: <p> If something is incorrect, please click the 'Grading Menu' button to start over.</p>
                   5773: 
                   5774: <br />
                   5775: STUFF
                   5776: }
                   5777: 
1.423     albertel 5778: =pod
                   5779: 
                   5780: =item scantron_do_warning
                   5781: 
1.424     albertel 5782:    Check if the operator has picked something for all required
                   5783:    fields. Error out if something is missing.
                   5784: 
1.423     albertel 5785: =cut
                   5786: 
1.203     albertel 5787: sub scantron_do_warning {
                   5788:     my ($r)=@_;
1.324     albertel 5789:     my ($symb)=&get_symb($r);
1.203     albertel 5790:     if (!$symb) {return '';}
1.324     albertel 5791:     my $default_form_data=&defaultFormData($symb);
1.203     albertel 5792:     $r->print(&scantron_form_start().$default_form_data);
1.257     albertel 5793:     if ( $env{'form.selectpage'} eq '' ||
                   5794: 	 $env{'form.scantron_selectfile'} eq '' ||
                   5795: 	 $env{'form.scantron_format'} eq '' ) {
1.237     albertel 5796: 	$r->print("<p>You have forgetten to specify some information. Please go Back and try again.</p>");
1.257     albertel 5797: 	if ( $env{'form.selectpage'} eq '') {
1.398     albertel 5798: 	    $r->print('<p><span class="LC_error">You have not selected a Sequence to grade</span></p>');
1.237     albertel 5799: 	} 
1.257     albertel 5800: 	if ( $env{'form.scantron_selectfile'} eq '') {
1.398     albertel 5801: 	    $r->print('<p><span class="LC_error">You have not selected a file that contains the student\'s response data.</span></p>');
1.237     albertel 5802: 	} 
1.257     albertel 5803: 	if ( $env{'form.scantron_format'} eq '') {
1.398     albertel 5804: 	    $r->print('<p><span class="LC_error">You have not selected a the format of the student\'s response data.</span></p>');
1.237     albertel 5805: 	} 
                   5806:     } else {
1.265     www      5807: 	my $warning=&scantron_warning_screen('Grading: Validate Records');
1.237     albertel 5808: 	$r->print(<<STUFF);
1.203     albertel 5809: $warning
1.265     www      5810: <input type="submit" name="submit" value="Grading: Validate Records" />
1.203     albertel 5811: <input type="hidden" name="command" value="scantron_validate" />
                   5812: STUFF
1.237     albertel 5813:     }
1.352     albertel 5814:     $r->print("</form><br />".&show_grading_menu_form($symb));
1.203     albertel 5815:     return '';
                   5816: }
                   5817: 
1.423     albertel 5818: =pod
                   5819: 
                   5820: =item scantron_form_start
                   5821: 
1.424     albertel 5822:     html hidden input for remembering all selected grading options
                   5823: 
1.423     albertel 5824: =cut
                   5825: 
1.203     albertel 5826: sub scantron_form_start {
                   5827:     my ($max_bubble)=@_;
                   5828:     my $result= <<SCANTRONFORM;
                   5829: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257     albertel 5830:   <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
                   5831:   <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
                   5832:   <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218     albertel 5833:   <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257     albertel 5834:   <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
                   5835:   <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
                   5836:   <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
                   5837:   <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331     albertel 5838:   <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203     albertel 5839: SCANTRONFORM
1.447     foxr     5840: 
                   5841:   my $line = 0;
                   5842:     while (defined($env{"form.scantron.bubblelines.$line"})) {
                   5843:        my $chunk =
                   5844: 	   '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448     foxr     5845:        $chunk .=
                   5846: 	   '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.447     foxr     5847:        $result .= $chunk;
                   5848:        $line++;
                   5849:    }
1.203     albertel 5850:     return $result;
                   5851: }
                   5852: 
1.423     albertel 5853: =pod
                   5854: 
                   5855: =item scantron_validate_file
                   5856: 
1.424     albertel 5857:     Dispatch routine for doing validation of a bubble sheet data file.
                   5858: 
                   5859:     Also processes any necessary information resets that need to
                   5860:     occur before validation begins (ignore previous corrections,
                   5861:     restarting the skipped records processing)
                   5862: 
1.423     albertel 5863: =cut
                   5864: 
1.157     albertel 5865: sub scantron_validate_file {
                   5866:     my ($r) = @_;
1.324     albertel 5867:     my ($symb)=&get_symb($r);
1.157     albertel 5868:     if (!$symb) {return '';}
1.324     albertel 5869:     my $default_form_data=&defaultFormData($symb);
1.200     albertel 5870:     
                   5871:     # do the detection of only doing skipped records first befroe we delete
1.424     albertel 5872:     # them when doing the corrections reset
1.257     albertel 5873:     if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200     albertel 5874: 	&reset_skipping_status();
                   5875:     }
1.257     albertel 5876:     if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200     albertel 5877: 	&remember_current_skipped();
1.257     albertel 5878: 	$env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200     albertel 5879:     }
                   5880: 
1.257     albertel 5881:     if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200     albertel 5882: 	&check_for_error($r,&scantron_remove_file('corrected'));
                   5883: 	&check_for_error($r,&scantron_remove_file('skipped'));
                   5884: 	&check_for_error($r,&scantron_remove_scan_data());
1.257     albertel 5885: 	$env{'form.scantron_options_ignore'}='done';
1.192     albertel 5886:     }
1.200     albertel 5887: 
1.257     albertel 5888:     if ($env{'form.scantron_corrections'}) {
1.157     albertel 5889: 	&scantron_process_corrections($r);
                   5890:     }
1.424     albertel 5891:     $r->print("<p>Gathering necessary info.</p>");$r->rflush();
1.157     albertel 5892:     #get the student pick code ready
                   5893:     $r->print(&Apache::loncommon::studentbrowser_javascript());
1.330     albertel 5894:     my $max_bubble=&scantron_get_maxbubble();
1.203     albertel 5895:     my $result=&scantron_form_start($max_bubble).$default_form_data;
1.157     albertel 5896:     $r->print($result);
                   5897:     
1.334     albertel 5898:     my @validate_phases=( 'sequence',
                   5899: 			  'ID',
1.157     albertel 5900: 			  'CODE',
                   5901: 			  'doublebubble',
                   5902: 			  'missingbubbles');
1.257     albertel 5903:     if (!$env{'form.validatepass'}) {
                   5904: 	$env{'form.validatepass'} = 0;
1.157     albertel 5905:     }
1.257     albertel 5906:     my $currentphase=$env{'form.validatepass'};
1.157     albertel 5907: 
1.448     foxr     5908: 
1.157     albertel 5909:     my $stop=0;
                   5910:     while (!$stop && $currentphase < scalar(@validate_phases)) {
                   5911: 	$r->print("<p> Validating ".$validate_phases[$currentphase]."</p>");
                   5912: 	$r->rflush();
                   5913: 	my $which="scantron_validate_".$validate_phases[$currentphase];
                   5914: 	{
                   5915: 	    no strict 'refs';
                   5916: 	    ($stop,$currentphase)=&$which($r,$currentphase);
                   5917: 	}
                   5918:     }
                   5919:     if (!$stop) {
1.203     albertel 5920: 	my $warning=&scantron_warning_screen('Start Grading');
                   5921: 	$r->print(<<STUFF);
                   5922: Validation process complete.<br />
                   5923: $warning
                   5924: <input type="submit" name="submit" value="Start Grading" />
                   5925: <input type="hidden" name="command" value="scantron_process" />
                   5926: STUFF
                   5927: 
1.157     albertel 5928:     } else {
                   5929: 	$r->print('<input type="hidden" name="command" value="scantron_validate" />');
                   5930: 	$r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
                   5931:     }
                   5932:     if ($stop) {
1.334     albertel 5933: 	if ($validate_phases[$currentphase] eq 'sequence') {
                   5934: 	    $r->print('<input type="submit" name="submit" value="Ignore -> " />');
                   5935: 	    $r->print(' this error <br />');
                   5936: 
                   5937: 	    $r->print(" <p>Or click the 'Grading Menu' button to start over.</p>");
                   5938: 	} else {
                   5939: 	    $r->print('<input type="submit" name="submit" value="Continue ->" />');
                   5940: 	    $r->print(' using corrected info <br />');
                   5941: 	    $r->print("<input type='submit' value='Skip' name='scantron_skip_record' />");
                   5942: 	    $r->print(" this scanline saving it for later.");
                   5943: 	}
1.157     albertel 5944:     }
1.352     albertel 5945:     $r->print(" </form><br />".&show_grading_menu_form($symb));
1.157     albertel 5946:     return '';
                   5947: }
                   5948: 
1.423     albertel 5949: 
                   5950: =pod
                   5951: 
                   5952: =item scantron_remove_file
                   5953: 
1.424     albertel 5954:    Removes the requested bubble sheet data file, makes sure that
                   5955:    scantron_original_<filename> is never removed
                   5956: 
                   5957: 
1.423     albertel 5958: =cut
                   5959: 
1.200     albertel 5960: sub scantron_remove_file {
1.192     albertel 5961:     my ($which)=@_;
1.257     albertel 5962:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   5963:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192     albertel 5964:     my $file='scantron_';
1.200     albertel 5965:     if ($which eq 'corrected' || $which eq 'skipped') {
                   5966: 	$file.=$which.'_';
1.192     albertel 5967:     } else {
                   5968: 	return 'refused';
                   5969:     }
1.257     albertel 5970:     $file.=$env{'form.scantron_selectfile'};
1.200     albertel 5971:     return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
                   5972: }
                   5973: 
1.423     albertel 5974: 
                   5975: =pod
                   5976: 
                   5977: =item scantron_remove_scan_data
                   5978: 
1.424     albertel 5979:    Removes all scan_data correction for the requested bubble sheet
                   5980:    data file.  (In the case that both the are doing skipped records we need
                   5981:    to remember the old skipped lines for the time being so that element
                   5982:    persists for a while.)
                   5983: 
1.423     albertel 5984: =cut
                   5985: 
1.200     albertel 5986: sub scantron_remove_scan_data {
1.257     albertel 5987:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   5988:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192     albertel 5989:     my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
                   5990:     my @todelete;
1.257     albertel 5991:     my $filename=$env{'form.scantron_selectfile'};
1.192     albertel 5992:     foreach my $key (@keys) {
                   5993: 	if ($key=~/^\Q$filename\E_/) {
1.257     albertel 5994: 	    if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200     albertel 5995: 		$key=~/remember_skipping/) {
                   5996: 		next;
                   5997: 	    }
1.192     albertel 5998: 	    push(@todelete,$key);
                   5999: 	}
                   6000:     }
1.200     albertel 6001:     my $result;
1.192     albertel 6002:     if (@todelete) {
1.200     albertel 6003: 	$result=&Apache::lonnet::del('nohist_scantrondata',\@todelete,$cdom,$cname);
1.192     albertel 6004:     }
                   6005:     return $result;
                   6006: }
                   6007: 
1.423     albertel 6008: 
                   6009: =pod
                   6010: 
                   6011: =item scantron_getfile
                   6012: 
1.424     albertel 6013:     Fetches the requested bubble sheet data file (all 3 versions), and
                   6014:     the scan_data hash
                   6015:   
                   6016:   Arguments:
                   6017:     None
                   6018: 
                   6019:   Returns:
                   6020:     2 hash references
                   6021: 
                   6022:      - first one has 
                   6023:          orig      -
                   6024:          corrected -
                   6025:          skipped   -  each of which points to an array ref of the specified
                   6026:                       file broken up into individual lines
                   6027:          count     - number of scanlines
                   6028:  
                   6029:      - second is the scan_data hash possible keys are
1.425     albertel 6030:        ($number refers to scanline numbered $number and thus the key affects
                   6031:         only that scanline
                   6032:         $bubline refers to the specific bubble line element and the aspects
                   6033:         refers to that specific bubble line element)
                   6034: 
                   6035:        $number.user - username:domain to use
                   6036:        $number.CODE_ignore_dup 
                   6037:                     - ignore the duplicate CODE error 
                   6038:        $number.useCODE
                   6039:                     - use the CODE in the scanline as is
                   6040:        $number.no_bubble.$bubline
                   6041:                     - it is valid that there is no bubbled in bubble
                   6042:                       at $number $bubline
                   6043:        remember_skipping
                   6044:                     - a frozen hash containing keys of $number and values
                   6045:                       of either 
                   6046:                         1 - we are on a 'do skipped records pass' and plan
                   6047:                             on processing this line
                   6048:                         2 - we are on a 'do skipped records pass' and this
                   6049:                             scanline has been marked to skip yet again
1.424     albertel 6050: 
1.423     albertel 6051: =cut
                   6052: 
1.157     albertel 6053: sub scantron_getfile {
1.200     albertel 6054:     #FIXME really would prefer a scantron directory
1.257     albertel 6055:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6056:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157     albertel 6057:     my $lines;
                   6058:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 6059: 		       'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157     albertel 6060:     my %scanlines;
                   6061:     $scanlines{'orig'}=[(split("\n",$lines,-1))];
                   6062:     my $temp=$scanlines{'orig'};
                   6063:     $scanlines{'count'}=$#$temp;
                   6064: 
                   6065:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 6066: 		       'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157     albertel 6067:     if ($lines eq '-1') {
                   6068: 	$scanlines{'corrected'}=[];
                   6069:     } else {
                   6070: 	$scanlines{'corrected'}=[(split("\n",$lines,-1))];
                   6071:     }
                   6072:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 6073: 		       'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157     albertel 6074:     if ($lines eq '-1') {
                   6075: 	$scanlines{'skipped'}=[];
                   6076:     } else {
                   6077: 	$scanlines{'skipped'}=[(split("\n",$lines,-1))];
                   6078:     }
1.175     albertel 6079:     my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157     albertel 6080:     if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
                   6081:     my %scan_data = @tmp;
                   6082:     return (\%scanlines,\%scan_data);
                   6083: }
                   6084: 
1.423     albertel 6085: =pod
                   6086: 
                   6087: =item lonnet_putfile
                   6088: 
1.424     albertel 6089:    Wrapper routine to call &Apache::lonnet::finishuserfileupload
                   6090: 
                   6091:  Arguments:
                   6092:    $contents - data to store
                   6093:    $filename - filename to store $contents into
                   6094: 
                   6095:  Returns:
                   6096:    result value from &Apache::lonnet::finishuserfileupload
                   6097: 
1.423     albertel 6098: =cut
                   6099: 
1.157     albertel 6100: sub lonnet_putfile {
                   6101:     my ($contents,$filename)=@_;
1.257     albertel 6102:     my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6103:     my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   6104:     $env{'form.sillywaytopassafilearound'}=$contents;
1.275     albertel 6105:     &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157     albertel 6106: 
                   6107: }
                   6108: 
1.423     albertel 6109: =pod
                   6110: 
                   6111: =item scantron_putfile
                   6112: 
1.424     albertel 6113:     Stores the current version of the bubble sheet data files, and the
                   6114:     scan_data hash. (Does not modify the original version only the
                   6115:     corrected and skipped versions.
                   6116: 
                   6117:  Arguments:
                   6118:     $scanlines - hash ref that looks like the first return value from
                   6119:                  &scantron_getfile()
                   6120:     $scan_data - hash ref that looks like the second return value from
                   6121:                  &scantron_getfile()
                   6122: 
1.423     albertel 6123: =cut
                   6124: 
1.157     albertel 6125: sub scantron_putfile {
                   6126:     my ($scanlines,$scan_data) = @_;
1.200     albertel 6127:     #FIXME really would prefer a scantron directory
1.257     albertel 6128:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6129:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200     albertel 6130:     if ($scanlines) {
                   6131: 	my $prefix='scantron_';
1.157     albertel 6132: # no need to update orig, shouldn't change
                   6133: #   &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257     albertel 6134: #		    $env{'form.scantron_selectfile'});
1.200     albertel 6135: 	&lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
                   6136: 			$prefix.'corrected_'.
1.257     albertel 6137: 			$env{'form.scantron_selectfile'});
1.200     albertel 6138: 	&lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
                   6139: 			$prefix.'skipped_'.
1.257     albertel 6140: 			$env{'form.scantron_selectfile'});
1.200     albertel 6141:     }
1.175     albertel 6142:     &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157     albertel 6143: }
                   6144: 
1.423     albertel 6145: =pod
                   6146: 
                   6147: =item scantron_get_line
                   6148: 
1.424     albertel 6149:    Returns the correct version of the scanline
                   6150: 
                   6151:  Arguments:
                   6152:     $scanlines - hash ref that looks like the first return value from
                   6153:                  &scantron_getfile()
                   6154:     $scan_data - hash ref that looks like the second return value from
                   6155:                  &scantron_getfile()
                   6156:     $i         - number of the requested line (starts at 0)
                   6157: 
                   6158:  Returns:
                   6159:    A scanline, (either the original or the corrected one if it
                   6160:    exists), or undef if the requested scanline should be
                   6161:    skipped. (Either because it's an skipped scanline, or it's an
                   6162:    unskipped scanline and we are not doing a 'do skipped scanlines'
                   6163:    pass.
                   6164: 
1.423     albertel 6165: =cut
                   6166: 
1.157     albertel 6167: sub scantron_get_line {
1.200     albertel 6168:     my ($scanlines,$scan_data,$i)=@_;
1.376     albertel 6169:     if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
                   6170:     #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157     albertel 6171:     if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
                   6172:     return $scanlines->{'orig'}[$i]; 
                   6173: }
                   6174: 
1.423     albertel 6175: =pod
                   6176: 
                   6177: =item scantron_todo_count
                   6178: 
1.424     albertel 6179:     Counts the number of scanlines that need processing.
                   6180: 
                   6181:  Arguments:
                   6182:     $scanlines - hash ref that looks like the first return value from
                   6183:                  &scantron_getfile()
                   6184:     $scan_data - hash ref that looks like the second return value from
                   6185:                  &scantron_getfile()
                   6186: 
                   6187:  Returns:
                   6188:     $count - number of scanlines to process
                   6189: 
1.423     albertel 6190: =cut
                   6191: 
1.200     albertel 6192: sub get_todo_count {
                   6193:     my ($scanlines,$scan_data)=@_;
                   6194:     my $count=0;
                   6195:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   6196: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
                   6197: 	if ($line=~/^[\s\cz]*$/) { next; }
                   6198: 	$count++;
                   6199:     }
                   6200:     return $count;
                   6201: }
                   6202: 
1.423     albertel 6203: =pod
                   6204: 
                   6205: =item scantron_put_line
                   6206: 
1.424     albertel 6207:     Updates the 'corrected' or 'skipped' versions of the bubble sheet
                   6208:     data file.
                   6209: 
                   6210:  Arguments:
                   6211:     $scanlines - hash ref that looks like the first return value from
                   6212:                  &scantron_getfile()
                   6213:     $scan_data - hash ref that looks like the second return value from
                   6214:                  &scantron_getfile()
                   6215:     $i         - line number to update
                   6216:     $newline   - contents of the updated scanline
                   6217:     $skip      - if true make the line for skipping and update the
                   6218:                  'skipped' file
                   6219: 
1.423     albertel 6220: =cut
                   6221: 
1.157     albertel 6222: sub scantron_put_line {
1.200     albertel 6223:     my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157     albertel 6224:     if ($skip) {
                   6225: 	$scanlines->{'skipped'}[$i]=$newline;
1.376     albertel 6226: 	&start_skipping($scan_data,$i);
1.157     albertel 6227: 	return;
                   6228:     }
                   6229:     $scanlines->{'corrected'}[$i]=$newline;
                   6230: }
                   6231: 
1.423     albertel 6232: =pod
                   6233: 
                   6234: =item scantron_clear_skip
                   6235: 
1.424     albertel 6236:    Remove a line from the 'skipped' file
                   6237: 
                   6238:  Arguments:
                   6239:     $scanlines - hash ref that looks like the first return value from
                   6240:                  &scantron_getfile()
                   6241:     $scan_data - hash ref that looks like the second return value from
                   6242:                  &scantron_getfile()
                   6243:     $i         - line number to update
                   6244: 
1.423     albertel 6245: =cut
                   6246: 
1.376     albertel 6247: sub scantron_clear_skip {
                   6248:     my ($scanlines,$scan_data,$i)=@_;
                   6249:     if (exists($scanlines->{'skipped'}[$i])) {
                   6250: 	undef($scanlines->{'skipped'}[$i]);
                   6251: 	return 1;
                   6252:     }
                   6253:     return 0;
                   6254: }
                   6255: 
1.423     albertel 6256: =pod
                   6257: 
                   6258: =item scantron_filter_not_exam
                   6259: 
1.424     albertel 6260:    Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
                   6261:    filter out resources that are not marked as 'exam' mode
                   6262: 
1.423     albertel 6263: =cut
                   6264: 
1.334     albertel 6265: sub scantron_filter_not_exam {
                   6266:     my ($curres)=@_;
                   6267:     
                   6268:     if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
                   6269: 	# if the user has asked to not have either hidden
                   6270: 	# or 'randomout' controlled resources to be graded
                   6271: 	# don't include them
                   6272: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
                   6273: 	    && $curres->randomout) {
                   6274: 	    return 0;
                   6275: 	}
                   6276: 	return 1;
                   6277:     }
                   6278:     return 0;
                   6279: }
                   6280: 
1.423     albertel 6281: =pod
                   6282: 
                   6283: =item scantron_validate_sequence
                   6284: 
1.424     albertel 6285:     Validates the selected sequence, checking for resource that are
                   6286:     not set to exam mode.
                   6287: 
1.423     albertel 6288: =cut
                   6289: 
1.334     albertel 6290: sub scantron_validate_sequence {
                   6291:     my ($r,$currentphase) = @_;
                   6292: 
                   6293:     my $navmap=Apache::lonnavmaps::navmap->new();
                   6294:     my (undef,undef,$sequence)=
                   6295: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
                   6296: 
                   6297:     my $map=$navmap->getResourceByUrl($sequence);
                   6298: 
                   6299:     $r->print('<input type="hidden" name="validate_sequence_exam"
                   6300:                                     value="ignore" />');
                   6301:     if ($env{'form.validate_sequence_exam'} ne 'ignore') {
                   6302: 	my @resources=
                   6303: 	    $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
                   6304: 	if (@resources) {
1.357     banghart 6305: 	    $r->print("<p>".&mt('Some resources in the sequence currently are not set to exam mode. Grading these resources currently may not work correctly.')."</p>");
1.334     albertel 6306: 	    return (1,$currentphase);
                   6307: 	}
                   6308:     }
                   6309: 
                   6310:     return (0,$currentphase+1);
                   6311: }
                   6312: 
1.423     albertel 6313: =pod
                   6314: 
                   6315: =item scantron_validate_ID
                   6316: 
1.424     albertel 6317:    Validates all scanlines in the selected file to not have any
                   6318:    invalid or underspecified student IDs
                   6319: 
1.423     albertel 6320: =cut
                   6321: 
1.157     albertel 6322: sub scantron_validate_ID {
                   6323:     my ($r,$currentphase) = @_;
                   6324:     
                   6325:     #get student info
                   6326:     my $classlist=&Apache::loncoursedata::get_classlist();
                   6327:     my %idmap=&username_to_idmap($classlist);
                   6328: 
                   6329:     #get scantron line setup
1.257     albertel 6330:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 6331:     my ($scanlines,$scan_data)=&scantron_getfile();
1.447     foxr     6332:     
                   6333:     &scantron_get_maxbubble();	# parse needs the bubble_lines.. array.
1.157     albertel 6334: 
                   6335:     my %found=('ids'=>{},'usernames'=>{});
                   6336:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 6337: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 6338: 	if ($line=~/^[\s\cz]*$/) { next; }
                   6339: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   6340: 						 $scan_data);
                   6341: 	my $id=$$scan_record{'scantron.ID'};
                   6342: 	my $found;
                   6343: 	foreach my $checkid (keys(%idmap)) {
                   6344: 	    if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
                   6345: 	}
                   6346: 	if ($found) {
                   6347: 	    my $username=$idmap{$found};
                   6348: 	    if ($found{'ids'}{$found}) {
                   6349: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   6350: 					 $line,'duplicateID',$found);
1.194     albertel 6351: 		return(1,$currentphase);
1.157     albertel 6352: 	    } elsif ($found{'usernames'}{$username}) {
                   6353: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   6354: 					 $line,'duplicateID',$username);
1.194     albertel 6355: 		return(1,$currentphase);
1.157     albertel 6356: 	    }
1.186     albertel 6357: 	    #FIXME store away line we previously saw the ID on to use above
1.157     albertel 6358: 	    $found{'ids'}{$found}++;
                   6359: 	    $found{'usernames'}{$username}++;
                   6360: 	} else {
                   6361: 	    if ($id =~ /^\s*$/) {
1.158     albertel 6362: 		my $username=&scan_data($scan_data,"$i.user");
1.157     albertel 6363: 		if (defined($username) && $found{'usernames'}{$username}) {
                   6364: 		    &scantron_get_correction($r,$i,$scan_record,
                   6365: 					     \%scantron_config,
                   6366: 					     $line,'duplicateID',$username);
1.194     albertel 6367: 		    return(1,$currentphase);
1.157     albertel 6368: 		} elsif (!defined($username)) {
                   6369: 		    &scantron_get_correction($r,$i,$scan_record,
                   6370: 					     \%scantron_config,
                   6371: 					     $line,'incorrectID');
1.194     albertel 6372: 		    return(1,$currentphase);
1.157     albertel 6373: 		}
                   6374: 		$found{'usernames'}{$username}++;
                   6375: 	    } else {
                   6376: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   6377: 					 $line,'incorrectID');
1.194     albertel 6378: 		return(1,$currentphase);
1.157     albertel 6379: 	    }
                   6380: 	}
                   6381:     }
                   6382: 
                   6383:     return (0,$currentphase+1);
                   6384: }
                   6385: 
1.423     albertel 6386: =pod
                   6387: 
                   6388: =item scantron_get_correction
                   6389: 
1.424     albertel 6390:    Builds the interface screen to interact with the operator to fix a
                   6391:    specific error condition in a specific scanline
                   6392: 
                   6393:  Arguments:
                   6394:     $r           - Apache request object
                   6395:     $i           - number of the current scanline
                   6396:     $scan_record - hash ref as returned from &scantron_parse_scanline()
                   6397:     $scan_config - hash ref as returned from &get_scantron_config()
                   6398:     $line        - full contents of the current scanline
                   6399:     $error       - error condition, valid values are
                   6400:                    'incorrectCODE', 'duplicateCODE',
                   6401:                    'doublebubble', 'missingbubble',
                   6402:                    'duplicateID', 'incorrectID'
                   6403:     $arg         - extra information needed
                   6404:        For errors:
                   6405:          - duplicateID   - paper number that this studentID was seen before on
                   6406:          - duplicateCODE - array ref of the paper numbers this CODE was
                   6407:                            seen on before
                   6408:          - incorrectCODE - current incorrect CODE 
                   6409:          - doublebubble  - array ref of the bubble lines that have double
                   6410:                            bubble errors
                   6411:          - missingbubble - array ref of the bubble lines that have missing
                   6412:                            bubble errors
                   6413: 
1.423     albertel 6414: =cut
                   6415: 
1.157     albertel 6416: sub scantron_get_correction {
                   6417:     my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
                   6418: 
1.454     banghart 6419: #FIXME in the case of a duplicated ID the previous line, probably need
1.157     albertel 6420: #to show both the current line and the previous one and allow skipping
                   6421: #the previous one or the current one
                   6422: 
1.161     albertel 6423:     $r->print("<p><b>An error was detected ($error)</b>");
1.333     albertel 6424:     if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.157     albertel 6425: 	$r->print(" for PaperID <tt>".
                   6426: 		  $$scan_record{'scantron.PaperID'}."</tt> \n");
                   6427:     } else {
                   6428: 	$r->print(" in scanline $i <pre>".
                   6429: 		  $line."</pre> \n");
                   6430:     }
1.242     albertel 6431:     my $message="<p>The ID on the form is  <tt>".
                   6432: 	$$scan_record{'scantron.ID'}."</tt><br />\n".
                   6433: 	"The name on the paper is ".
                   6434: 	$$scan_record{'scantron.LastName'}.",".
                   6435: 	$$scan_record{'scantron.FirstName'}."</p>";
                   6436: 
1.157     albertel 6437:     $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
                   6438:     $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
                   6439:     if ($error =~ /ID$/) {
1.186     albertel 6440: 	if ($error eq 'incorrectID') {
1.157     albertel 6441: 	    $r->print("The encoded ID is not in the classlist</p>\n");
                   6442: 	} elsif ($error eq 'duplicateID') {
                   6443: 	    $r->print("The encoded ID has also been used by a previous paper $arg</p>\n");
                   6444: 	}
1.242     albertel 6445: 	$r->print($message);
1.157     albertel 6446: 	$r->print("<p>How should I handle this? <br /> \n");
                   6447: 	$r->print("\n<ul><li> ");
                   6448: 	#FIXME it would be nice if this sent back the user ID and
                   6449: 	#could do partial userID matches
                   6450: 	$r->print(&Apache::loncommon::selectstudent_link('scantronupload',
                   6451: 				       'scantron_username','scantron_domain'));
                   6452: 	$r->print(": <input type='text' name='scantron_username' value='' />");
                   6453: 	$r->print("\n@".
1.257     albertel 6454: 		 &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157     albertel 6455: 
                   6456: 	$r->print('</li>');
1.186     albertel 6457:     } elsif ($error =~ /CODE$/) {
                   6458: 	if ($error eq 'incorrectCODE') {
1.187     albertel 6459: 	    $r->print("</p><p>The encoded CODE is not in the list of possible CODEs</p>\n");
1.186     albertel 6460: 	} elsif ($error eq 'duplicateCODE') {
1.194     albertel 6461: 	    $r->print("</p><p>The encoded CODE has also been used by a previous paper ".join(', ',@{$arg}).", and CODEs are supposed to be unique</p>\n");
1.186     albertel 6462: 	}
1.224     albertel 6463: 	$r->print("<p>The CODE on the form is  <tt>'".
                   6464: 		  $$scan_record{'scantron.CODE'}."'</tt><br />\n");
1.242     albertel 6465: 	$r->print($message);
1.186     albertel 6466: 	$r->print("<p>How should I handle this? <br /> \n");
1.187     albertel 6467: 	$r->print("\n<br /> ");
1.194     albertel 6468: 	my $i=0;
1.273     albertel 6469: 	if ($error eq 'incorrectCODE' 
                   6470: 	    && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194     albertel 6471: 	    my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278     albertel 6472: 	    if ($closest > 0) {
                   6473: 		foreach my $testcode (@{$closest}) {
                   6474: 		    my $checked='';
1.401     albertel 6475: 		    if (!$i) { $checked=' checked="checked" '; }
1.278     albertel 6476: 		    $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_closest_$i' $checked /> Use the similar CODE <b><tt>".$testcode."</tt></b> instead.</label><input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
                   6477: 		    $r->print("\n<br />");
                   6478: 		    $i++;
                   6479: 		}
1.194     albertel 6480: 	    }
                   6481: 	}
1.273     albertel 6482: 	if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.401     albertel 6483: 	    my $checked; if (!$i) { $checked=' checked="checked" '; }
1.273     albertel 6484: 	    $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_unfound' $checked /> Use the CODE <b><tt>".$$scan_record{'scantron.CODE'}."</tt></b> that is was on the paper, ignoring the error.</label>");
                   6485: 	    $r->print("\n<br />");
                   6486: 	}
1.194     albertel 6487: 
1.188     albertel 6488: 	$r->print(<<ENDSCRIPT);
                   6489: <script type="text/javascript">
                   6490: function change_radio(field) {
1.190     albertel 6491:     var slct=document.scantronupload.scantron_CODE_resolution;
1.188     albertel 6492:     var i;
                   6493:     for (i=0;i<slct.length;i++) {
                   6494:         if (slct[i].value==field) { slct[i].checked=true; }
                   6495:     }
                   6496: }
                   6497: </script>
                   6498: ENDSCRIPT
1.187     albertel 6499: 	my $href="/adm/pickcode?".
1.359     www      6500: 	   "form=".&escape("scantronupload").
                   6501: 	   "&scantron_format=".&escape($env{'form.scantron_format'}).
                   6502: 	   "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
                   6503: 	   "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
                   6504: 	   "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332     albertel 6505: 	if ($env{'form.scantron_CODElist'} =~ /\S/) { 
                   6506: 	    $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_found' /> <a target='_blank' href='$href'>Select</a> a CODE from the list of all CODEs and use it.</label> Selected CODE is <input readonly='true' type='text' size='8' name='scantron_CODE_selectedvalue' onfocus=\"javascript:change_radio('use_found')\" onchange=\"javascript:change_radio('use_found')\" />");
                   6507: 	    $r->print("\n<br />");
                   6508: 	}
1.272     albertel 6509: 	$r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_typed' /> Use </label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" /> as the CODE.");
1.187     albertel 6510: 	$r->print("\n<br /><br />");
1.157     albertel 6511:     } elsif ($error eq 'doublebubble') {
                   6512: 	$r->print("<p>There have been multiple bubbles scanned for a some question(s)</p>\n");
                   6513: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
                   6514: 		  join(',',@{$arg}).'" />');
1.242     albertel 6515: 	$r->print($message);
1.157     albertel 6516: 	$r->print("<p>Please indicate which bubble should be used for grading</p>");
                   6517: 	foreach my $question (@{$arg}) {
1.447     foxr     6518: 	    my $selected  = &get_response_bubbles($scan_record, $question);
1.461     foxr     6519: 	    my @select_array = split(/:/,$selected);
1.422     foxr     6520: 	    &scantron_bubble_selector($r,$scan_config,$question,
1.460     foxr     6521: 				      @select_array);
1.157     albertel 6522: 	}
                   6523:     } elsif ($error eq 'missingbubble') {
                   6524: 	$r->print("<p>There have been <b>no</b> bubbles scanned for some question(s)</p>\n");
1.242     albertel 6525: 	$r->print($message);
1.157     albertel 6526: 	$r->print("<p>Please indicate which bubble should be used for grading</p>");
                   6527: 	$r->print("Some questions have no scanned bubbles\n");
                   6528: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
                   6529: 		  join(',',@{$arg}).'" />');
                   6530: 	foreach my $question (@{$arg}) {
1.448     foxr     6531: 	    my $selected = &get_response_bubbles($scan_record, $question);
1.470     foxr     6532: 	    my @select_array = split(/:/,$selected); # ought to be an array of empties.
                   6533: 	    &scantron_bubble_selector($r,$scan_config,$question, @select_array);
1.157     albertel 6534: 	}
                   6535:     } else {
                   6536: 	$r->print("\n<ul>");
                   6537:     }
                   6538:     $r->print("\n</li></ul>");
                   6539: 
                   6540: }
1.423     albertel 6541: 
                   6542: =pod
                   6543: 
                   6544: =item scantron_bubble_selector
                   6545:   
                   6546:    Generates the html radiobuttons to correct a single bubble line
1.424     albertel 6547:    possibly showing the existing the selected bubbles if known
1.423     albertel 6548: 
                   6549:  Arguments:
                   6550:     $r           - Apache request object
                   6551:     $scan_config - hash from &get_scantron_config()
                   6552:     $quest       - number of the bubble line to make a corrector for
1.470     foxr     6553:     @lines       - array of answer lines.
1.423     albertel 6554: 
                   6555: =cut
                   6556: 
1.157     albertel 6557: sub scantron_bubble_selector {
1.461     foxr     6558:     my ($r,$scan_config,$quest,@lines)=@_;
1.157     albertel 6559:     my $max=$$scan_config{'Qlength'};
1.274     albertel 6560: 
1.461     foxr     6561: 
1.274     albertel 6562:     my $scmode=$$scan_config{'Qon'};
1.447     foxr     6563: 
1.461     foxr     6564:     my $bubble_length = scalar(@lines);
1.460     foxr     6565: 
1.447     foxr     6566: 
1.274     albertel 6567:     if ($scmode eq 'number' || $scmode eq 'letter') { $max=10; }	     
                   6568: 
1.448     foxr     6569:     my $response = $quest-1;
                   6570:     my $lines = $bubble_lines_per_response{$response};
1.447     foxr     6571: 
1.422     foxr     6572:     my $total_lines = $lines*2;
1.157     albertel 6573:     my @alphabet=('A'..'Z');
1.479     foxr     6574: 
1.422     foxr     6575:     $r->print("<table border='1'><tr><td rowspan='".$total_lines."'>$quest</td>");
                   6576: 
                   6577:     for (my $l = 0; $l < $lines; $l++) {
                   6578: 	if ($l != 0) {
                   6579: 	    $r->print('<tr>');
                   6580: 	}
1.462     foxr     6581: 	my @selected = split(//,$lines[$l]);
1.422     foxr     6582: 	for (my $i=0;$i<$max;$i++) {
                   6583: 	    $r->print("\n".'<td align="center">');
                   6584: 	    if ($selected[0] eq $alphabet[$i]) { 
                   6585: 		$r->print('X'); 
                   6586: 		shift(@selected) ;
                   6587: 	    } else { 
                   6588: 		$r->print('&nbsp;'); 
                   6589: 	    }
                   6590: 	    $r->print('</td>');
                   6591: 	    
                   6592: 	}
                   6593: 
                   6594: 	if ($l == 0) {
                   6595: 	    my $lspan = $total_lines * 2;   #  2 table rows per bubble line.
                   6596: 
                   6597: 	    $r->print('<td rowspan='.$lspan.'><label><input type="radio" name="scantron_correct_Q_'.
                   6598: 	      $quest.'" value="none" /> No bubble </label></td>');
                   6599: 	
                   6600: 	}
                   6601: 
                   6602: 	$r->print('</tr><tr>');
                   6603: 
                   6604: 	# FIXME: This may have to be a bit more clever for
                   6605: 	#        multiline questions (different values e.g..).
                   6606: 
                   6607: 	for (my $i=0;$i<$max;$i++) {
1.479     foxr     6608: 	    my $value = "$l:$i";	# Relative bubble line #: Bubble in line.
1.422     foxr     6609: 	    $r->print("\n".
                   6610: 		      '<td><label><input type="radio" name="scantron_correct_Q_'.
1.479     foxr     6611: 		      $quest.'" value="'.$value.'" />'.$alphabet[$i]."</label></td>");
1.422     foxr     6612: 	}
                   6613: 	$r->print('</tr>');
                   6614: 
                   6615: 	    
1.157     albertel 6616:     }
1.422     foxr     6617:     $r->print('</table>');
1.157     albertel 6618: }
                   6619: 
1.423     albertel 6620: =pod
                   6621: 
                   6622: =item num_matches
                   6623: 
1.424     albertel 6624:    Counts the number of characters that are the same between the two arguments.
                   6625: 
                   6626:  Arguments:
                   6627:    $orig - CODE from the scanline
                   6628:    $code - CODE to match against
                   6629: 
                   6630:  Returns:
                   6631:    $count - integer count of the number of same characters between the
                   6632:             two arguments
                   6633: 
1.423     albertel 6634: =cut
                   6635: 
1.194     albertel 6636: sub num_matches {
                   6637:     my ($orig,$code) = @_;
                   6638:     my @code=split(//,$code);
                   6639:     my @orig=split(//,$orig);
                   6640:     my $same=0;
                   6641:     for (my $i=0;$i<scalar(@code);$i++) {
                   6642: 	if ($code[$i] eq $orig[$i]) { $same++; }
                   6643:     }
                   6644:     return $same;
                   6645: }
                   6646: 
1.423     albertel 6647: =pod
                   6648: 
                   6649: =item scantron_get_closely_matching_CODEs
                   6650: 
1.424     albertel 6651:    Cycles through all CODEs and finds the set that has the greatest
                   6652:    number of same characters as the provided CODE
                   6653: 
                   6654:  Arguments:
                   6655:    $allcodes - hash ref returned by &get_codes()
                   6656:    $CODE     - CODE from the current scanline
                   6657: 
                   6658:  Returns:
                   6659:    2 element list
                   6660:     - first elements is number of how closely matching the best fit is 
                   6661:       (5 means best set has 5 matching characters)
                   6662:     - second element is an arrary ref containing the set of valid CODEs
                   6663:       that best fit the passed in CODE
                   6664: 
1.423     albertel 6665: =cut
                   6666: 
1.194     albertel 6667: sub scantron_get_closely_matching_CODEs {
                   6668:     my ($allcodes,$CODE)=@_;
                   6669:     my @CODEs;
                   6670:     foreach my $testcode (sort(keys(%{$allcodes}))) {
                   6671: 	push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
                   6672:     }
                   6673: 
                   6674:     return ($#CODEs,$CODEs[-1]);
                   6675: }
                   6676: 
1.423     albertel 6677: =pod
                   6678: 
                   6679: =item get_codes
                   6680: 
1.424     albertel 6681:    Builds a hash which has keys of all of the valid CODEs from the selected
                   6682:    set of remembered CODEs.
                   6683: 
                   6684:  Arguments:
                   6685:   $old_name - name of the set of remembered CODEs
                   6686:   $cdom     - domain of the course
                   6687:   $cnum     - internal course name
                   6688: 
                   6689:  Returns:
                   6690:   %allcodes - keys are the valid CODEs, values are all 1
                   6691: 
1.423     albertel 6692: =cut
                   6693: 
1.194     albertel 6694: sub get_codes {
1.280     foxr     6695:     my ($old_name, $cdom, $cnum) = @_;
                   6696:     if (!$old_name) {
                   6697: 	$old_name=$env{'form.scantron_CODElist'};
                   6698:     }
                   6699:     if (!$cdom) {
                   6700: 	$cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
                   6701:     }
                   6702:     if (!$cnum) {
                   6703: 	$cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
                   6704:     }
1.278     albertel 6705:     my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
                   6706: 				    $cdom,$cnum);
                   6707:     my %allcodes;
                   6708:     if ($result{"type\0$old_name"} eq 'number') {
                   6709: 	%allcodes=map {($_,1)} split(',',$result{$old_name});
                   6710:     } else {
                   6711: 	%allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
                   6712:     }
1.194     albertel 6713:     return %allcodes;
                   6714: }
                   6715: 
1.423     albertel 6716: =pod
                   6717: 
                   6718: =item scantron_validate_CODE
                   6719: 
1.424     albertel 6720:    Validates all scanlines in the selected file to not have any
                   6721:    invalid or underspecified CODEs and that none of the codes are
                   6722:    duplicated if this was requested.
                   6723: 
1.423     albertel 6724: =cut
                   6725: 
1.157     albertel 6726: sub scantron_validate_CODE {
                   6727:     my ($r,$currentphase) = @_;
1.257     albertel 6728:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186     albertel 6729:     if ($scantron_config{'CODElocation'} &&
                   6730: 	$scantron_config{'CODEstart'} &&
                   6731: 	$scantron_config{'CODElength'}) {
1.257     albertel 6732: 	if (!defined($env{'form.scantron_CODElist'})) {
1.186     albertel 6733: 	    &FIXME_blow_up()
                   6734: 	}
                   6735:     } else {
                   6736: 	return (0,$currentphase+1);
                   6737:     }
                   6738:     
                   6739:     my %usedCODEs;
                   6740: 
1.194     albertel 6741:     my %allcodes=&get_codes();
1.186     albertel 6742: 
1.447     foxr     6743:     &scantron_get_maxbubble();	# parse needs the lines per response array.
                   6744: 
1.186     albertel 6745:     my ($scanlines,$scan_data)=&scantron_getfile();
                   6746:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 6747: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186     albertel 6748: 	if ($line=~/^[\s\cz]*$/) { next; }
                   6749: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   6750: 						 $scan_data);
                   6751: 	my $CODE=$$scan_record{'scantron.CODE'};
                   6752: 	my $error=0;
1.224     albertel 6753: 	if (!&Apache::lonnet::validCODE($CODE)) {
                   6754: 	    &scantron_get_correction($r,$i,$scan_record,
                   6755: 				     \%scantron_config,
                   6756: 				     $line,'incorrectCODE',\%allcodes);
                   6757: 	    return(1,$currentphase);
                   6758: 	}
1.221     albertel 6759: 	if (%allcodes && !exists($allcodes{$CODE}) 
                   6760: 	    && !$$scan_record{'scantron.useCODE'}) {
1.186     albertel 6761: 	    &scantron_get_correction($r,$i,$scan_record,
                   6762: 				     \%scantron_config,
1.194     albertel 6763: 				     $line,'incorrectCODE',\%allcodes);
                   6764: 	    return(1,$currentphase);
1.186     albertel 6765: 	}
1.214     albertel 6766: 	if (exists($usedCODEs{$CODE}) 
1.257     albertel 6767: 	    && $env{'form.scantron_CODEunique'} eq 'yes'
1.192     albertel 6768: 	    && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186     albertel 6769: 	    &scantron_get_correction($r,$i,$scan_record,
                   6770: 				     \%scantron_config,
1.194     albertel 6771: 				     $line,'duplicateCODE',$usedCODEs{$CODE});
                   6772: 	    return(1,$currentphase);
1.186     albertel 6773: 	}
1.194     albertel 6774: 	push (@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186     albertel 6775:     }
1.157     albertel 6776:     return (0,$currentphase+1);
                   6777: }
                   6778: 
1.423     albertel 6779: =pod
                   6780: 
                   6781: =item scantron_validate_doublebubble
                   6782: 
1.424     albertel 6783:    Validates all scanlines in the selected file to not have any
                   6784:    bubble lines with multiple bubbles marked.
                   6785: 
1.423     albertel 6786: =cut
                   6787: 
1.157     albertel 6788: sub scantron_validate_doublebubble {
                   6789:     my ($r,$currentphase) = @_;
                   6790:     #get student info
                   6791:     my $classlist=&Apache::loncoursedata::get_classlist();
                   6792:     my %idmap=&username_to_idmap($classlist);
                   6793: 
                   6794:     #get scantron line setup
1.257     albertel 6795:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 6796:     my ($scanlines,$scan_data)=&scantron_getfile();
1.447     foxr     6797: 
                   6798:     &scantron_get_maxbubble();	# parse needs the bubble line array.
                   6799: 
1.157     albertel 6800:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 6801: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 6802: 	if ($line=~/^[\s\cz]*$/) { next; }
                   6803: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   6804: 						 $scan_data);
                   6805: 	if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
                   6806: 	&scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
                   6807: 				 'doublebubble',
                   6808: 				 $$scan_record{'scantron.doubleerror'});
                   6809:     	return (1,$currentphase);
                   6810:     }
                   6811:     return (0,$currentphase+1);
                   6812: }
                   6813: 
1.423     albertel 6814: =pod
                   6815: 
                   6816: =item scantron_get_maxbubble
                   6817: 
1.424     albertel 6818:    Returns the maximum number of bubble lines that are expected to
                   6819:    occur. Does this by walking the selected sequence rendering the
                   6820:    resource and then checking &Apache::lonxml::get_problem_counter()
                   6821:    for what the current value of the problem counter is.
                   6822: 
1.447     foxr     6823:    Caches the results to $env{'form.scantron_maxbubble'},
                   6824:    $env{'form.scantron.bubble_lines.n'} and 
                   6825:    $env{'form.scantron.first_bubble_line.n'}
                   6826:    which are the total number of bubble, lines, the number of bubble
                   6827:    lines for reponse n and number of the first bubble line for response n.
1.424     albertel 6828: 
1.423     albertel 6829: =cut
                   6830: 
1.330     albertel 6831: sub scantron_get_maxbubble {    
1.257     albertel 6832:     if (defined($env{'form.scantron_maxbubble'}) &&
                   6833: 	$env{'form.scantron_maxbubble'}) {
1.447     foxr     6834: 	&restore_bubble_lines();
1.257     albertel 6835: 	return $env{'form.scantron_maxbubble'};
1.191     albertel 6836:     }
1.330     albertel 6837: 
1.447     foxr     6838:     my (undef, undef, $sequence) =
1.257     albertel 6839: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330     albertel 6840: 
1.447     foxr     6841:     my $navmap=Apache::lonnavmaps::navmap->new();
1.191     albertel 6842:     my $map=$navmap->getResourceByUrl($sequence);
                   6843:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.330     albertel 6844: 
                   6845:     &Apache::lonxml::clear_problem_counter();
                   6846: 
1.435     foxr     6847:     my $uname       = $env{'form.student'};
                   6848:     my $udom        = $env{'form.userdom'};
                   6849:     my $cid         = $env{'request.course.id'};
                   6850:     my $total_lines = 0;
                   6851:     %bubble_lines_per_response = ();
1.447     foxr     6852:     %first_bubble_line         = ();
1.435     foxr     6853: 
1.447     foxr     6854:   
                   6855:     my $response_number = 0;
                   6856:     my $bubble_line     = 0;
1.191     albertel 6857:     foreach my $resource (@resources) {
1.435     foxr     6858: 	my $symb = $resource->symb();
1.447     foxr     6859: 	&Apache::lonxml::clear_bubble_lines_for_part();
1.330     albertel 6860: 	my $result=&Apache::lonnet::ssi($resource->src(),
1.435     foxr     6861: 					('symb' => $resource->symb()),
                   6862: 					('grade_target' => 'analyze'),
                   6863: 					('grade_courseid' => $cid),
                   6864: 					('grade_domain' => $udom),
                   6865: 					('grade_username' => $uname));
1.436     albertel 6866: 	my (undef, $an) =
1.435     foxr     6867: 	    split(/_HASH_REF__/,$result, 2);
                   6868: 
                   6869: 	my %analysis = &Apache::lonnet::str2hash($an);
                   6870: 
                   6871: 
                   6872: 
                   6873: 	foreach my $part_id (@{$analysis{'parts'}}) {
1.447     foxr     6874: 
1.460     foxr     6875: 
                   6876: 	    my $lines = $analysis{"$part_id.bubble_lines"};;
1.447     foxr     6877: 
                   6878: 	    # TODO - make this a persistent hash not an array.
                   6879: 
                   6880: 
                   6881: 	    $first_bubble_line{$response_number}           = $bubble_line;
                   6882: 	    $bubble_lines_per_response{$response_number}   = $lines;
                   6883: 	    $response_number++;
                   6884: 
                   6885: 	    $bubble_line +=  $lines;
                   6886: 	    $total_lines +=  $lines;
1.435     foxr     6887: 	}
                   6888: 
1.191     albertel 6889:     }
                   6890:     &Apache::lonnet::delenv('scantron\.');
1.447     foxr     6891: 
                   6892:     &save_bubble_lines();
1.330     albertel 6893:     $env{'form.scantron_maxbubble'} =
1.435     foxr     6894: 	$total_lines;
1.257     albertel 6895:     return $env{'form.scantron_maxbubble'};
1.191     albertel 6896: }
                   6897: 
1.423     albertel 6898: =pod
                   6899: 
                   6900: =item scantron_validate_missingbubbles
                   6901: 
1.424     albertel 6902:    Validates all scanlines in the selected file to not have any
1.447     foxr     6903:     answers that don't have bubbles that have not been verified
                   6904:     to be bubble free.
1.424     albertel 6905: 
1.423     albertel 6906: =cut
                   6907: 
1.157     albertel 6908: sub scantron_validate_missingbubbles {
                   6909:     my ($r,$currentphase) = @_;
                   6910:     #get student info
                   6911:     my $classlist=&Apache::loncoursedata::get_classlist();
                   6912:     my %idmap=&username_to_idmap($classlist);
                   6913: 
                   6914:     #get scantron line setup
1.257     albertel 6915:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 6916:     my ($scanlines,$scan_data)=&scantron_getfile();
1.191     albertel 6917:     my $max_bubble=&scantron_get_maxbubble();
1.157     albertel 6918:     if (!$max_bubble) { $max_bubble=2**31; }
                   6919:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 6920: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 6921: 	if ($line=~/^[\s\cz]*$/) { next; }
                   6922: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   6923: 						 $scan_data);
                   6924: 	if (!defined($$scan_record{'scantron.missingerror'})) { next; }
                   6925: 	my @to_correct;
1.470     foxr     6926: 	
                   6927: 	# Probably here's where the error is...
                   6928: 
1.157     albertel 6929: 	foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
                   6930: 	    if ($missing > $max_bubble) { next; }
                   6931: 	    push(@to_correct,$missing);
                   6932: 	}
                   6933: 	if (@to_correct) {
                   6934: 	    &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   6935: 				     $line,'missingbubble',\@to_correct);
                   6936: 	    return (1,$currentphase);
                   6937: 	}
                   6938: 
                   6939:     }
                   6940:     return (0,$currentphase+1);
                   6941: }
                   6942: 
1.423     albertel 6943: =pod
                   6944: 
                   6945: =item scantron_process_students
                   6946: 
                   6947:    Routine that does the actual grading of the bubble sheet information.
                   6948: 
                   6949:    The parsed scanline hash is added to %env 
                   6950: 
                   6951:    Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
                   6952:    foreach resource , with the form data of
                   6953: 
                   6954: 	'submitted'     =>'scantron' 
                   6955: 	'grade_target'  =>'grade',
                   6956: 	'grade_username'=> username of student
                   6957: 	'grade_domain'  => domain of student
                   6958: 	'grade_courseid'=> of course
                   6959: 	'grade_symb'    => symb of resource to grade
                   6960: 
                   6961:     This triggers a grading pass. The problem grading code takes care
                   6962:     of converting the bubbled letter information (now in %env) into a
                   6963:     valid submission.
                   6964: 
                   6965: =cut
                   6966: 
1.82      albertel 6967: sub scantron_process_students {
1.75      albertel 6968:     my ($r) = @_;
1.257     albertel 6969:     my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.324     albertel 6970:     my ($symb)=&get_symb($r);
1.81      albertel 6971:     if (!$symb) {return '';}
1.324     albertel 6972:     my $default_form_data=&defaultFormData($symb);
1.82      albertel 6973: 
1.257     albertel 6974:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 6975:     my ($scanlines,$scan_data)=&scantron_getfile();
1.82      albertel 6976:     my $classlist=&Apache::loncoursedata::get_classlist();
                   6977:     my %idmap=&username_to_idmap($classlist);
1.132     bowersj2 6978:     my $navmap=Apache::lonnavmaps::navmap->new();
1.83      albertel 6979:     my $map=$navmap->getResourceByUrl($sequence);
                   6980:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.140     albertel 6981: #    $r->print("geto ".scalar(@resources)."<br />");
1.82      albertel 6982:     my $result= <<SCANTRONFORM;
1.81      albertel 6983: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
                   6984:   <input type="hidden" name="command" value="scantron_configphase" />
                   6985:   $default_form_data
                   6986: SCANTRONFORM
1.82      albertel 6987:     $r->print($result);
                   6988: 
                   6989:     my @delayqueue;
1.140     albertel 6990:     my %completedstudents;
                   6991:     
1.200     albertel 6992:     my $count=&get_todo_count($scanlines,$scan_data);
1.157     albertel 6993:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
1.200     albertel 6994:  				    'Scantron Progress',$count,
1.195     albertel 6995: 				    'inline',undef,'scantronupload');
1.140     albertel 6996:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
                   6997: 					  'Processing first student');
                   6998:     my $start=&Time::HiRes::time();
1.158     albertel 6999:     my $i=-1;
1.200     albertel 7000:     my ($uname,$udom,$started);
1.447     foxr     7001: 
                   7002:     &scantron_get_maxbubble();	# Need the bubble lines array to parse.
                   7003: 
1.157     albertel 7004:     while ($i<$scanlines->{'count'}) {
                   7005:  	($uname,$udom)=('','');
                   7006:  	$i++;
1.200     albertel 7007:  	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 7008:  	if ($line=~/^[\s\cz]*$/) { next; }
1.200     albertel 7009: 	if ($started) {
                   7010: 	    &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                   7011: 						     'last student');
                   7012: 	}
                   7013: 	$started=1;
1.157     albertel 7014:  	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   7015:  						 $scan_data);
                   7016:  	unless ($uname=&scantron_find_student($scan_record,$scan_data,
                   7017:  					      \%idmap,$i)) {
                   7018:   	    &scantron_add_delay(\@delayqueue,$line,
                   7019:  				'Unable to find a student that matches',1);
                   7020:  	    next;
                   7021:   	}
                   7022:  	if (exists $completedstudents{$uname}) {
                   7023:  	    &scantron_add_delay(\@delayqueue,$line,
                   7024:  				'Student '.$uname.' has multiple sheets',2);
                   7025:  	    next;
                   7026:  	}
                   7027:   	($uname,$udom)=split(/:/,$uname);
1.330     albertel 7028: 
                   7029: 	&Apache::lonxml::clear_problem_counter();
1.157     albertel 7030:   	&Apache::lonnet::appenv(%$scan_record);
1.376     albertel 7031: 
                   7032: 	if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
                   7033: 	    &scantron_putfile($scanlines,$scan_data);
                   7034: 	}
1.161     albertel 7035: 	
                   7036: 	my $i=0;
1.83      albertel 7037: 	foreach my $resource (@resources) {
1.85      albertel 7038: 	    $i++;
1.193     albertel 7039: 	    my %form=('submitted'     =>'scantron',
                   7040: 		      'grade_target'  =>'grade',
                   7041: 		      'grade_username'=>$uname,
                   7042: 		      'grade_domain'  =>$udom,
1.257     albertel 7043: 		      'grade_courseid'=>$env{'request.course.id'},
1.193     albertel 7044: 		      'grade_symb'    =>$resource->symb());
1.383     albertel 7045: 	    if (exists($scan_record->{'scantron.CODE'})
                   7046: 		&& 
                   7047: 		&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'})) {
1.193     albertel 7048: 		$form{'CODE'}=$scan_record->{'scantron.CODE'};
1.224     albertel 7049: 	    } else {
                   7050: 		$form{'CODE'}='';
1.193     albertel 7051: 	    }
                   7052: 	    my $result=&Apache::lonnet::ssi($resource->src(),%form);
1.227     albertel 7053: 	    if ($result ne '') {
                   7054: 	    }
1.213     albertel 7055: 	    if (&Apache::loncommon::connection_aborted($r)) { last; }
1.83      albertel 7056: 	}
1.140     albertel 7057: 	$completedstudents{$uname}={'line'=>$line};
1.213     albertel 7058: 	if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140     albertel 7059:     } continue {
1.330     albertel 7060: 	&Apache::lonxml::clear_problem_counter();
1.83      albertel 7061: 	&Apache::lonnet::delenv('scantron\.');
1.82      albertel 7062:     }
1.140     albertel 7063:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.172     albertel 7064: #    my $lasttime = &Time::HiRes::time()-$start;
                   7065: #    $r->print("<p>took $lasttime</p>");
1.140     albertel 7066: 
1.200     albertel 7067:     $r->print("</form>");
1.324     albertel 7068:     $r->print(&show_grading_menu_form($symb));
1.157     albertel 7069:     return '';
1.75      albertel 7070: }
1.157     albertel 7071: 
1.423     albertel 7072: =pod
                   7073: 
                   7074: =item scantron_upload_scantron_data
                   7075: 
                   7076:     Creates the screen for adding a new bubble sheet data file to a course.
                   7077: 
                   7078: =cut
                   7079: 
1.157     albertel 7080: sub scantron_upload_scantron_data {
                   7081:     my ($r)=@_;
1.257     albertel 7082:     $r->print(&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}));
1.157     albertel 7083:     my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181     albertel 7084: 							  'domainid',
                   7085: 							  'coursename');
1.257     albertel 7086:     my $domsel=&Apache::loncommon::select_dom_form($env{'request.role.domain'},
1.157     albertel 7087: 						   'domainid');
1.324     albertel 7088:     my $default_form_data=&defaultFormData(&get_symb($r,1));
1.157     albertel 7089:     $r->print(<<UPLOAD);
                   7090: <script type="text/javascript" language="javascript">
                   7091:     function checkUpload(formname) {
                   7092: 	if (formname.upfile.value == "") {
                   7093: 	    alert("Please use the browse button to select a file from your local directory.");
                   7094: 	    return false;
                   7095: 	}
                   7096: 	formname.submit();
                   7097:     }
                   7098: </script>
                   7099: 
                   7100: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
1.162     albertel 7101: $default_form_data
1.181     albertel 7102: <table>
                   7103: <tr><td>$select_link </td></tr>
                   7104: <tr><td>Course ID:   </td><td><input name='courseid' type='text' />  </td></tr>
                   7105: <tr><td>Course Name: </td><td><input name='coursename' type='text' /></td></tr>
                   7106: <tr><td>Domain:      </td><td>$domsel                                </td></tr>
                   7107: <tr><td>File to upload:</td><td><input type="file" name="upfile" size="50" /></td></tr>
                   7108: </table>
1.157     albertel 7109: <input name='command' value='scantronupload_save' type='hidden' />
                   7110: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
                   7111: </form>
                   7112: UPLOAD
                   7113:     return '';
                   7114: }
                   7115: 
1.423     albertel 7116: =pod
                   7117: 
                   7118: =item scantron_upload_scantron_data_save
                   7119: 
                   7120:    Adds a provided bubble information data file to the course if user
                   7121:    has the correct privileges to do so.  
                   7122: 
                   7123: =cut
                   7124: 
1.157     albertel 7125: sub scantron_upload_scantron_data_save {
                   7126:     my($r)=@_;
1.324     albertel 7127:     my ($symb)=&get_symb($r,1);
1.182     albertel 7128:     my $doanotherupload=
                   7129: 	'<br /><form action="/adm/grades" method="post">'."\n".
                   7130: 	'<input type="hidden" name="command" value="scantronupload" />'."\n".
                   7131: 	'<input type="submit" name="submit" value="Do Another Upload" />'."\n".
                   7132: 	'</form>'."\n";
1.257     albertel 7133:     if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162     albertel 7134: 	!&Apache::lonnet::allowed('usc',
1.257     albertel 7135: 			    $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.162     albertel 7136: 	$r->print("You are not allowed to upload Scantron data to the requested course.<br />");
1.182     albertel 7137: 	if ($symb) {
1.324     albertel 7138: 	    $r->print(&show_grading_menu_form($symb));
1.182     albertel 7139: 	} else {
                   7140: 	    $r->print($doanotherupload);
                   7141: 	}
1.162     albertel 7142: 	return '';
                   7143:     }
1.257     albertel 7144:     my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.211     ng       7145:     $r->print("Doing upload to ".$coursedata{'description'}." <br />");
1.257     albertel 7146:     my $fname=$env{'form.upfile.filename'};
1.157     albertel 7147:     #FIXME
                   7148:     #copied from lonnet::userfileupload()
                   7149:     #make that function able to target a specified course
                   7150:     # Replace Windows backslashes by forward slashes
                   7151:     $fname=~s/\\/\//g;
                   7152:     # Get rid of everything but the actual filename
                   7153:     $fname=~s/^.*\/([^\/]+)$/$1/;
                   7154:     # Replace spaces by underscores
                   7155:     $fname=~s/\s+/\_/g;
                   7156:     # Replace all other weird characters by nothing
                   7157:     $fname=~s/[^\w\.\-]//g;
                   7158:     # See if there is anything left
                   7159:     unless ($fname) { return 'error: no uploaded file'; }
1.209     ng       7160:     my $uploadedfile=$fname;
1.157     albertel 7161:     $fname='scantron_orig_'.$fname;
1.257     albertel 7162:     if (length($env{'form.upfile'}) < 2) {
1.398     albertel 7163: 	$r->print("<span class=\"LC_error\">Error:</span> The file you attempted to upload, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>, contained no information. Please check that you entered the correct filename.");
1.183     albertel 7164:     } else {
1.275     albertel 7165: 	my $result=&Apache::lonnet::finishuserfileupload($env{'form.courseid'},$env{'form.domainid'},'upfile',$fname);
1.210     albertel 7166: 	if ($result =~ m|^/uploaded/|) {
1.398     albertel 7167: 	    $r->print("<span class=\"LC_success\">Success:</span> Successfully uploaded ".(length($env{'form.upfile'})-1)." bytes of data into location <tt>".$result."</tt>");
1.210     albertel 7168: 	} else {
1.398     albertel 7169: 	    $r->print("<span class=\"LC_error\">Error:</span> An error (".$result.") occurred when attempting to upload the file, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>");
1.183     albertel 7170: 	}
                   7171:     }
1.174     albertel 7172:     if ($symb) {
1.209     ng       7173: 	$r->print(&scantron_selectphase($r,$uploadedfile));
1.174     albertel 7174:     } else {
1.182     albertel 7175: 	$r->print($doanotherupload);
1.174     albertel 7176:     }
1.157     albertel 7177:     return '';
                   7178: }
                   7179: 
1.423     albertel 7180: =pod
                   7181: 
                   7182: =item valid_file
                   7183: 
1.424     albertel 7184:    Validates that the requested bubble data file exists in the course.
1.423     albertel 7185: 
                   7186: =cut
                   7187: 
1.202     albertel 7188: sub valid_file {
                   7189:     my ($requested_file)=@_;
                   7190:     foreach my $filename (sort(&scantron_filenames())) {
                   7191: 	if ($requested_file eq $filename) { return 1; }
                   7192:     }
                   7193:     return 0;
                   7194: }
                   7195: 
1.423     albertel 7196: =pod
                   7197: 
                   7198: =item scantron_download_scantron_data
                   7199: 
                   7200:    Shows a list of the three internal files (original, corrected,
                   7201:    skipped) for a specific bubble sheet data file that exists in the
                   7202:    course.
                   7203: 
                   7204: =cut
                   7205: 
1.202     albertel 7206: sub scantron_download_scantron_data {
                   7207:     my ($r)=@_;
1.324     albertel 7208:     my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257     albertel 7209:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   7210:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   7211:     my $file=$env{'form.scantron_selectfile'};
1.202     albertel 7212:     if (! &valid_file($file)) {
                   7213: 	$r->print(<<ERROR);
                   7214: 	<p>
                   7215: 	    The requested file name was invalid.
                   7216:         </p>
                   7217: ERROR
1.324     albertel 7218: 	$r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202     albertel 7219: 	return;
                   7220:     }
                   7221:     my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
                   7222:     my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
                   7223:     my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
                   7224:     &Apache::lonnet::allowuploaded('/adm/grades',$orig);
                   7225:     &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
                   7226:     &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
                   7227:     $r->print(<<DOWNLOAD);
                   7228:     <p>
                   7229: 	<a href="$orig">Original</a> file as uploaded by the scantron office.
                   7230:     </p>
                   7231:     <p>
                   7232: 	<a href="$corrected">Corrections</a>, a file of corrected records that were used in grading.
                   7233:     </p>
                   7234:     <p>
                   7235: 	<a href="$skipped">Skipped</a>, a file of records that were skipped.
                   7236:     </p>
                   7237: DOWNLOAD
1.324     albertel 7238:     $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202     albertel 7239:     return '';
                   7240: }
1.157     albertel 7241: 
1.423     albertel 7242: =pod
                   7243: 
                   7244: =back
                   7245: 
                   7246: =cut
                   7247: 
1.75      albertel 7248: #-------- end of section for handling grading scantron forms -------
                   7249: #
                   7250: #-------------------------------------------------------------------
                   7251: 
1.72      ng       7252: #-------------------------- Menu interface -------------------------
                   7253: #
                   7254: #--- Show a Grading Menu button - Calls the next routine ---
                   7255: sub show_grading_menu_form {
1.324     albertel 7256:     my ($symb)=@_;
1.125     ng       7257:     my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.418     albertel 7258: 	'<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257     albertel 7259: 	'<input type="hidden" name="saveState"  value="'.$env{'form.saveState'}.'" />'."\n".
1.72      ng       7260: 	'<input type="hidden" name="command" value="gradingmenu" />'."\n".
1.478     albertel 7261: 	'<input type="submit" name="submit" value="'.&mt('Grading Menu').'" />'."\n".
1.72      ng       7262: 	'</form>'."\n";
                   7263:     return $result;
                   7264: }
                   7265: 
1.77      ng       7266: # -- Retrieve choices for grading form
                   7267: sub savedState {
                   7268:     my %savedState = ();
1.257     albertel 7269:     if ($env{'form.saveState'}) {
                   7270: 	foreach (split(/:/,$env{'form.saveState'})) {
1.77      ng       7271: 	    my ($key,$value) = split(/=/,$_,2);
                   7272: 	    $savedState{$key} = $value;
                   7273: 	}
                   7274:     }
                   7275:     return \%savedState;
                   7276: }
1.76      ng       7277: 
1.443     banghart 7278: sub grading_menu {
                   7279:     my ($request) = @_;
                   7280:     my ($symb)=&get_symb($request);
                   7281:     if (!$symb) {return '';}
                   7282:     my $probTitle = &Apache::lonnet::gettitle($symb);
                   7283:     my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
                   7284: 
1.444     banghart 7285:     $request->print($table);
1.443     banghart 7286:     my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
                   7287:                   'handgrade'=>$hdgrade,
                   7288:                   'probTitle'=>$probTitle,
                   7289:                   'command'=>'submit_options',
                   7290:                   'saveState'=>"",
                   7291:                   'gradingMenu'=>1,
                   7292:                   'showgrading'=>"yes");
                   7293:     my $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   7294:     my @menu = ({ url => $url,
                   7295:                      name => &mt('Manual Grading/View Submissions'),
                   7296:                      short_description => 
                   7297:     &mt('Start the process of hand grading submissions.'),
                   7298:                  });
                   7299:     $fields{'command'} = 'csvform';
                   7300:     $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   7301:     push (@menu, { url => $url,
                   7302:                    name => &mt('Upload Scores'),
                   7303:                    short_description => 
                   7304:             &mt('Specify a file containing the class scores for current resource.')});
                   7305:     $fields{'command'} = 'processclicker';
                   7306:     $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   7307:     push (@menu, { url => $url,
                   7308:                    name => &mt('Process Clicker'),
                   7309:                    short_description => 
                   7310:             &mt('Specify a file containing the clicker information for this resource.')});
                   7311:     $fields{'command'} = 'scantron_selectphase';
                   7312:     $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   7313:     push (@menu, { url => $url,
1.454     banghart 7314:                    name => &mt('Grade/Manage Scantron Forms'),
                   7315:                    short_description => 
                   7316:             &mt('')});
1.443     banghart 7317:     $fields{'command'} = 'verify';
                   7318:     $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.445     banghart 7319:     push (@menu, { url => "",
1.443     banghart 7320:                    name => &mt('Verify Receipt'),
                   7321:                    short_description => 
                   7322:             &mt('')});
                   7323:     #
                   7324:     # Create the menu
                   7325:     my $Str;
1.444     banghart 7326:     # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
1.445     banghart 7327:     $Str .= '<form method="post" action="" name="gradingMenu">';
                   7328:     $Str .= '<input type="hidden" name="command" value="" />'.
                   7329:     	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
                   7330: 	'<input type="hidden" name="handgrade"   value="'.$hdgrade.'" />'."\n".
1.476     albertel 7331: 	'<input type="hidden" name="probTitle"   value="'.$probTitle.'" />'."\n".
1.445     banghart 7332: 	'<input type="hidden" name="saveState"   value="" />'."\n".
                   7333: 	'<input type="hidden" name="gradingMenu" value="1" />'."\n".
                   7334: 	'<input type="hidden" name="showgrading" value="yes" />'."\n";
                   7335: 
1.443     banghart 7336:     foreach my $menudata (@menu) {
1.445     banghart 7337:         if ($menudata->{'name'} ne &mt('Verify Receipt')) {
                   7338:             $Str .='    <h3><a '.
                   7339:                 $menudata->{'jscript'}.
                   7340:                 ' href="'.
                   7341:                 $menudata->{'url'}.'" >'.
                   7342:                 $menudata->{'name'}."</a></h3>\n";
                   7343:         } else {
1.458     banghart 7344:             $Str .='    <h3><input type="button" value="Verify Receipt" '.
1.445     banghart 7345:                 $menudata->{'jscript'}.
1.458     banghart 7346:                 ' onClick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
                   7347:                 ' /></h3>';
1.446     banghart 7348:             $Str .= ('&nbsp;'x8).
                   7349:                     ' receipt: '.&Apache::lonnet::recprefix($env{'request.course.id'}).
1.445     banghart 7350:                     '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />';
1.444     banghart 7351:         }
1.443     banghart 7352:         $Str .= '    '.('&nbsp;'x8).$menudata->{'short_description'}.
                   7353:             "\n";
                   7354:     }
1.444     banghart 7355:     $Str .="</form>\n";
1.443     banghart 7356:     $request->print(<<GRADINGMENUJS);
                   7357: <script type="text/javascript" language="javascript">
                   7358:     function checkChoice(formname,val,cmdx) {
                   7359: 	if (val <= 2) {
                   7360: 	    var cmd = radioSelection(formname.radioChoice);
                   7361: 	    var cmdsave = cmd;
                   7362: 	} else {
                   7363: 	    cmd = cmdx;
                   7364: 	    cmdsave = 'submission';
                   7365: 	}
                   7366: 	formname.command.value = cmd;
                   7367: 	if (val < 5) formname.submit();
                   7368: 	if (val == 5) {
1.458     banghart 7369: 	    if (!checkReceiptNo(formname,'notOK')) { 
                   7370: 	        return false;
                   7371: 	    } else {
                   7372: 	        formname.submit();
                   7373: 	    }
1.445     banghart 7374: 	}
                   7375:     }
1.443     banghart 7376: 
                   7377:     function checkReceiptNo(formname,nospace) {
                   7378: 	var receiptNo = formname.receipt.value;
                   7379: 	var checkOpt = false;
                   7380: 	if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
                   7381: 	if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
                   7382: 	if (checkOpt) {
                   7383: 	    alert("Please enter a receipt number given by a student in the receipt box.");
                   7384: 	    formname.receipt.value = "";
                   7385: 	    formname.receipt.focus();
                   7386: 	    return false;
                   7387: 	}
                   7388: 	return true;
                   7389:     }
                   7390: </script>
                   7391: GRADINGMENUJS
                   7392:     &commonJSfunctions($request);
                   7393:     return $Str;    
                   7394: }
                   7395: 
                   7396: 
                   7397: #--- Displays the submissions first page -------
                   7398: sub submit_options {
1.72      ng       7399:     my ($request) = @_;
1.324     albertel 7400:     my ($symb)=&get_symb($request);
1.72      ng       7401:     if (!$symb) {return '';}
1.76      ng       7402:     my $probTitle = &Apache::lonnet::gettitle($symb);
1.72      ng       7403: 
                   7404:     $request->print(<<GRADINGMENUJS);
                   7405: <script type="text/javascript" language="javascript">
1.116     ng       7406:     function checkChoice(formname,val,cmdx) {
                   7407: 	if (val <= 2) {
                   7408: 	    var cmd = radioSelection(formname.radioChoice);
1.118     ng       7409: 	    var cmdsave = cmd;
1.116     ng       7410: 	} else {
                   7411: 	    cmd = cmdx;
1.118     ng       7412: 	    cmdsave = 'submission';
1.116     ng       7413: 	}
                   7414: 	formname.command.value = cmd;
1.118     ng       7415: 	formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145     albertel 7416: 	    ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116     ng       7417: 	if (val < 5) formname.submit();
                   7418: 	if (val == 5) {
1.72      ng       7419: 	    if (!checkReceiptNo(formname,'notOK')) { return false;}
                   7420: 	    formname.submit();
                   7421: 	}
1.238     albertel 7422: 	if (val < 7) formname.submit();
1.72      ng       7423:     }
                   7424: 
                   7425:     function checkReceiptNo(formname,nospace) {
                   7426: 	var receiptNo = formname.receipt.value;
                   7427: 	var checkOpt = false;
                   7428: 	if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
                   7429: 	if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
                   7430: 	if (checkOpt) {
                   7431: 	    alert("Please enter a receipt number given by a student in the receipt box.");
                   7432: 	    formname.receipt.value = "";
                   7433: 	    formname.receipt.focus();
                   7434: 	    return false;
                   7435: 	}
                   7436: 	return true;
                   7437:     }
                   7438: </script>
                   7439: GRADINGMENUJS
1.118     ng       7440:     &commonJSfunctions($request);
1.324     albertel 7441:     my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
1.473     albertel 7442:     my $result;
1.76      ng       7443:     my (undef,$sections) = &getclasslist('all','0');
1.77      ng       7444:     my $savedState = &savedState();
1.118     ng       7445:     my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77      ng       7446:     my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118     ng       7447:     my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77      ng       7448:     my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72      ng       7449: 
                   7450:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.418     albertel 7451: 	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.72      ng       7452: 	'<input type="hidden" name="handgrade"   value="'.$hdgrade.'" />'."\n".
                   7453: 	'<input type="hidden" name="probTitle"   value="'.$probTitle.'" />'."\n".
1.116     ng       7454: 	'<input type="hidden" name="command"     value="" />'."\n".
1.77      ng       7455: 	'<input type="hidden" name="saveState"   value="" />'."\n".
1.124     ng       7456: 	'<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72      ng       7457: 	'<input type="hidden" name="showgrading" value="yes" />'."\n";
                   7458: 
1.472     albertel 7459:     $result.='
                   7460:     <div class="LC_grade_select_mode">
1.473     albertel 7461:       <div class="LC_grade_select_mode_current">
                   7462:         <h2>
                   7463:           '.&mt('Grade Current Resource').'
                   7464:         </h2>
                   7465:         <div class="LC_grade_select_mode_body">
                   7466:           <div class="LC_grades_resource_info">
                   7467:            '.$table.'
                   7468:           </div>
                   7469:           <div class="LC_grade_select_mode_selector">
                   7470:              <div class="LC_grade_select_mode_selector_header">
                   7471:                 '.&mt('Sections').'
                   7472:              </div>
                   7473:              <div class="LC_grade_select_mode_selector_body">
                   7474: 	       <select name="section" multiple="multiple" size="5">'."\n";
1.116     ng       7475:     if (ref($sections)) {
1.472     albertel 7476: 	foreach my $section (sort (@$sections)) {
                   7477: 	    $result.='<option value="'.$section.'" '.
                   7478: 		($saveSec eq $section ? 'selected="selected"':'').'>'.$section.'</option>'."\n";
1.155     albertel 7479: 	}
1.116     ng       7480:     }
1.401     albertel 7481:     $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> &nbsp; ';
1.472     albertel 7482:     $result.='
1.473     albertel 7483:              </div>
                   7484:           </div>
                   7485:           <div class="LC_grade_select_mode_selector">
                   7486:              <div class="LC_grade_select_mode_selector_header">
                   7487:                 '.&mt('Groups').'
                   7488:              </div>
                   7489:              <div class="LC_grade_select_mode_selector_body">
                   7490:                 '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
                   7491:              </div>
1.472     albertel 7492:           </div>
1.473     albertel 7493:           <div class="LC_grade_select_mode_selector">
                   7494:              <div class="LC_grade_select_mode_selector_header">
                   7495:                 '.&mt('Access Status').'
                   7496:              </div>
                   7497:              <div class="LC_grade_select_mode_selector_body">
                   7498:                 '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'
                   7499:              </div>
1.472     albertel 7500:           </div>
1.473     albertel 7501:           <div class="LC_grade_select_mode_selector">
                   7502:              <div class="LC_grade_select_mode_selector_header">
                   7503:                 '.&mt('Submission Status').'
                   7504:              </div>
                   7505:              <div class="LC_grade_select_mode_selector_body">
                   7506:                <select name="submitonly" size="5">
                   7507: 	         <option value="yes" '.      ($saveSub eq 'yes'       ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>
                   7508: 	         <option value="queued" '.   ($saveSub eq 'queued'    ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>
                   7509: 	         <option value="graded" '.   ($saveSub eq 'graded'    ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>
                   7510: 	         <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>
                   7511:                  <option value="all" '.      ($saveSub eq 'all'       ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>
                   7512:                </select>
                   7513:              </div>
1.472     albertel 7514:           </div>
1.473     albertel 7515:           <div class="LC_grade_select_mode_type_body">
                   7516:             <div class="LC_grade_select_mode_type">
                   7517:               <label>
                   7518:                 <input type="radio" name="radioChoice" value="submission" '.
                   7519:                   ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.
                   7520:              &mt('Select individual students to grade and view submissions.').'
                   7521: 	      </label> 
                   7522:             </div>
                   7523:             <div class="LC_grade_select_mode_type">
                   7524: 	      <label>
                   7525:                 <input type="radio" name="radioChoice" value="viewgrades" '.
                   7526:                   ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
                   7527:                     &mt('Grade all selected students in a grading table.').'
                   7528:               </label>
                   7529:             </div>
                   7530:             <div class="LC_grade_select_mode_type">
                   7531: 	      <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next-&gt;').'" />
                   7532:             </div>
1.472     albertel 7533:           </div>
1.473     albertel 7534:         </div>
                   7535:       </div>
                   7536:       <div class="LC_grade_select_mode_page">
                   7537:         <h2>
                   7538:          '.&mt('Grade Complete Folder for One Student').'
                   7539:         </h2>
                   7540:         <div class="LC_grades_select_mode_body">
                   7541:           <div class="LC_grade_select_mode_type_body">
                   7542:             <div class="LC_grade_select_mode_type">
                   7543:               <label>
                   7544:                 <input type="radio" name="radioChoice" value="pickStudentPage" '.
                   7545: 	  ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
                   7546:   &mt('The <b>complete</b> page/sequence/folder: For one student').'
                   7547:               </label>
                   7548:             </div>
                   7549:             <div class="LC_grade_select_mode_type">
                   7550: 	      <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next-&gt;').'" />
                   7551:             </div>
1.472     albertel 7552:           </div>
                   7553:         </div>
                   7554:       </div>
                   7555:     </div>
                   7556:   </form>';
1.44      ng       7557:     return $result;
1.2       albertel 7558: }
                   7559: 
1.285     albertel 7560: sub reset_perm {
                   7561:     undef(%perm);
                   7562: }
                   7563: 
                   7564: sub init_perm {
                   7565:     &reset_perm();
1.300     albertel 7566:     foreach my $test_perm ('vgr','mgr','opa') {
                   7567: 
                   7568: 	my $scope = $env{'request.course.id'};
                   7569: 	if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
                   7570: 
                   7571: 	    $scope .= '/'.$env{'request.course.sec'};
                   7572: 	    if ( $perm{$test_perm}=
                   7573: 		 &Apache::lonnet::allowed($test_perm,$scope)) {
                   7574: 		$perm{$test_perm.'_section'}=$env{'request.course.sec'};
                   7575: 	    } else {
                   7576: 		delete($perm{$test_perm});
                   7577: 	    }
1.285     albertel 7578: 	}
                   7579:     }
                   7580: }
                   7581: 
1.400     www      7582: sub gather_clicker_ids {
1.408     albertel 7583:     my %clicker_ids;
1.400     www      7584: 
                   7585:     my $classlist = &Apache::loncoursedata::get_classlist();
                   7586: 
                   7587:     # Set up a couple variables.
1.407     albertel 7588:     my $username_idx = &Apache::loncoursedata::CL_SNAME();
                   7589:     my $domain_idx   = &Apache::loncoursedata::CL_SDOM();
1.438     www      7590:     my $status_idx   = &Apache::loncoursedata::CL_STATUS();
1.400     www      7591: 
1.407     albertel 7592:     foreach my $student (keys(%$classlist)) {
1.438     www      7593:         if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407     albertel 7594:         my $username = $classlist->{$student}->[$username_idx];
                   7595:         my $domain   = $classlist->{$student}->[$domain_idx];
1.400     www      7596:         my $clickers =
1.408     albertel 7597: 	    (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400     www      7598:         foreach my $id (split(/\,/,$clickers)) {
1.414     www      7599:             $id=~s/^[\#0]+//;
1.421     www      7600:             $id=~s/[\-\:]//g;
1.407     albertel 7601:             if (exists($clicker_ids{$id})) {
1.408     albertel 7602: 		$clicker_ids{$id}.=','.$username.':'.$domain;
1.400     www      7603:             } else {
1.408     albertel 7604: 		$clicker_ids{$id}=$username.':'.$domain;
1.400     www      7605:             }
                   7606:         }
                   7607:     }
1.407     albertel 7608:     return %clicker_ids;
1.400     www      7609: }
                   7610: 
1.402     www      7611: sub gather_adv_clicker_ids {
1.408     albertel 7612:     my %clicker_ids;
1.402     www      7613:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
                   7614:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   7615:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409     albertel 7616:     foreach my $element (sort(keys(%coursepersonnel))) {
1.402     www      7617:         foreach my $person (split(/\,/,$coursepersonnel{$element})) {
                   7618:             my ($puname,$pudom)=split(/\:/,$person);
                   7619:             my $clickers =
1.408     albertel 7620: 		(&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405     www      7621:             foreach my $id (split(/\,/,$clickers)) {
1.414     www      7622: 		$id=~s/^[\#0]+//;
1.421     www      7623:                 $id=~s/[\-\:]//g;
1.408     albertel 7624: 		if (exists($clicker_ids{$id})) {
                   7625: 		    $clicker_ids{$id}.=','.$puname.':'.$pudom;
                   7626: 		} else {
                   7627: 		    $clicker_ids{$id}=$puname.':'.$pudom;
                   7628: 		}
1.405     www      7629:             }
1.402     www      7630:         }
                   7631:     }
1.407     albertel 7632:     return %clicker_ids;
1.402     www      7633: }
                   7634: 
1.413     www      7635: sub clicker_grading_parameters {
                   7636:     return ('gradingmechanism' => 'scalar',
                   7637:             'upfiletype' => 'scalar',
                   7638:             'specificid' => 'scalar',
                   7639:             'pcorrect' => 'scalar',
                   7640:             'pincorrect' => 'scalar');
                   7641: }
                   7642: 
1.400     www      7643: sub process_clicker {
                   7644:     my ($r)=@_;
                   7645:     my ($symb)=&get_symb($r);
                   7646:     if (!$symb) {return '';}
                   7647:     my $result=&checkforfile_js();
                   7648:     $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
                   7649:     my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
                   7650:     $result.=$table;
                   7651:     $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
                   7652:     $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
                   7653:     $result.='&nbsp;<b>'.&mt('Specify a file containing the clicker information for this resource').
                   7654:         '.</b></td></tr>'."\n";
                   7655:     $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.413     www      7656: # Attempt to restore parameters from last session, set defaults if not present
                   7657:     my %Saveable_Parameters=&clicker_grading_parameters();
                   7658:     &Apache::loncommon::restore_course_settings('grades_clicker',
                   7659:                                                  \%Saveable_Parameters);
                   7660:     if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
                   7661:     if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
                   7662:     if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
                   7663:     if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
                   7664: 
                   7665:     my %checked;
                   7666:     foreach my $gradingmechanism ('attendance','personnel','specific') {
                   7667:        if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
                   7668:           $checked{$gradingmechanism}="checked='checked'";
                   7669:        }
                   7670:     }
                   7671: 
1.400     www      7672:     my $upload=&mt("Upload File");
                   7673:     my $type=&mt("Type");
1.402     www      7674:     my $attendance=&mt("Award points just for participation");
                   7675:     my $personnel=&mt("Correctness determined from response by course personnel");
1.414     www      7676:     my $specific=&mt("Correctness determined from response with clicker ID(s)"); 
1.402     www      7677:     my $pcorrect=&mt("Percentage points for correct solution");
                   7678:     my $pincorrect=&mt("Percentage points for incorrect solution");
1.413     www      7679:     my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.419     www      7680: 						   ('iclicker' => 'i>clicker',
                   7681:                                                     'interwrite' => 'interwrite PRS'));
1.418     albertel 7682:     $symb = &Apache::lonenc::check_encrypt($symb);
1.400     www      7683:     $result.=<<ENDUPFORM;
1.402     www      7684: <script type="text/javascript">
                   7685: function sanitycheck() {
                   7686: // Accept only integer percentages
                   7687:    document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
                   7688:    document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
                   7689: // Find out grading choice
                   7690:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
                   7691:       if (document.forms.gradesupload.gradingmechanism[i].checked) {
                   7692:          gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
                   7693:       }
                   7694:    }
                   7695: // By default, new choice equals user selection
                   7696:    newgradingchoice=gradingchoice;
                   7697: // Not good to give more points for false answers than correct ones
                   7698:    if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
                   7699:       document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
                   7700:    }
                   7701: // If new choice is attendance only, and old choice was correctness-based, restore defaults
                   7702:    if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
                   7703:       document.forms.gradesupload.pcorrect.value=100;
                   7704:       document.forms.gradesupload.pincorrect.value=100;
                   7705:    }
                   7706: // If the values are different, cannot be attendance only
                   7707:    if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
                   7708:        (gradingchoice=='attendance')) {
                   7709:        newgradingchoice='personnel';
                   7710:    }
                   7711: // Change grading choice to new one
                   7712:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
                   7713:       if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
                   7714:          document.forms.gradesupload.gradingmechanism[i].checked=true;
                   7715:       } else {
                   7716:          document.forms.gradesupload.gradingmechanism[i].checked=false;
                   7717:       }
                   7718:    }
                   7719: // Remember the old state
                   7720:    document.forms.gradesupload.waschecked.value=newgradingchoice;
                   7721: }
                   7722: </script>
1.400     www      7723: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
                   7724: <input type="hidden" name="symb" value="$symb" />
                   7725: <input type="hidden" name="command" value="processclickerfile" />
                   7726: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
                   7727: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
                   7728: <input type="file" name="upfile" size="50" />
                   7729: <br /><label>$type: $selectform</label>
1.451     albertel 7730: <br /><label><input type="radio" name="gradingmechanism" value="attendance" $checked{'attendance'} onClick="sanitycheck()" />$attendance </label>
                   7731: <br /><label><input type="radio" name="gradingmechanism" value="personnel" $checked{'personnel'} onClick="sanitycheck()" />$personnel</label>
                   7732: <br /><label><input type="radio" name="gradingmechanism" value="specific" $checked{'specific'} onClick="sanitycheck()" />$specific </label>
1.414     www      7733: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.413     www      7734: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
                   7735: <br /><label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onChange="sanitycheck()" /></label>
                   7736: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onChange="sanitycheck()" /></label>
1.400     www      7737: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
                   7738: </form>
                   7739: ENDUPFORM
                   7740:     $result.='</td></tr></table>'."\n".
                   7741:              '</td></tr></table><br /><br />'."\n";
                   7742:     $result.=&show_grading_menu_form($symb);
                   7743:     return $result;
                   7744: }
                   7745: 
                   7746: sub process_clicker_file {
                   7747:     my ($r)=@_;
                   7748:     my ($symb)=&get_symb($r);
                   7749:     if (!$symb) {return '';}
1.413     www      7750: 
                   7751:     my %Saveable_Parameters=&clicker_grading_parameters();
                   7752:     &Apache::loncommon::store_course_settings('grades_clicker',
                   7753:                                               \%Saveable_Parameters);
                   7754: 
1.400     www      7755:     my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.404     www      7756:     if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408     albertel 7757: 	$result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
                   7758: 	return $result.&show_grading_menu_form($symb);
1.404     www      7759:     }
1.407     albertel 7760:     my %clicker_ids=&gather_clicker_ids();
1.408     albertel 7761:     my %correct_ids;
1.404     www      7762:     if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408     albertel 7763: 	%correct_ids=&gather_adv_clicker_ids();
1.404     www      7764:     }
                   7765:     if ($env{'form.gradingmechanism'} eq 'specific') {
1.414     www      7766: 	foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
                   7767: 	   $correct_id=~tr/a-z/A-Z/;
                   7768: 	   $correct_id=~s/\s//gs;
                   7769: 	   $correct_id=~s/^[\#0]+//;
1.421     www      7770:            $correct_id=~s/[\-\:]//g;
1.414     www      7771:            if ($correct_id) {
                   7772: 	      $correct_ids{$correct_id}='specified';
                   7773:            }
                   7774:         }
1.400     www      7775:     }
1.404     www      7776:     if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408     albertel 7777: 	$result.=&mt('Score based on attendance only');
1.404     www      7778:     } else {
1.408     albertel 7779: 	my $number=0;
1.411     www      7780: 	$result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408     albertel 7781: 	foreach my $id (sort(keys(%correct_ids))) {
1.411     www      7782: 	    $result.='<br /><tt>'.$id.'</tt> - ';
1.408     albertel 7783: 	    if ($correct_ids{$id} eq 'specified') {
                   7784: 		$result.=&mt('specified');
                   7785: 	    } else {
                   7786: 		my ($uname,$udom)=split(/\:/,$correct_ids{$id});
                   7787: 		$result.=&Apache::loncommon::plainname($uname,$udom);
                   7788: 	    }
                   7789: 	    $number++;
                   7790: 	}
1.411     www      7791:         $result.="</p>\n";
1.408     albertel 7792: 	if ($number==0) {
                   7793: 	    $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
                   7794: 	    return $result.&show_grading_menu_form($symb);
                   7795: 	}
1.404     www      7796:     }
1.405     www      7797:     if (length($env{'form.upfile'}) < 2) {
1.407     albertel 7798:         $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
                   7799: 		     '<span class="LC_error">',
                   7800: 		     '</span>',
                   7801: 		     '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.405     www      7802:         return $result.&show_grading_menu_form($symb);
                   7803:     }
1.410     www      7804: 
                   7805: # Were able to get all the info needed, now analyze the file
                   7806: 
1.411     www      7807:     $result.=&Apache::loncommon::studentbrowser_javascript();
1.418     albertel 7808:     $symb = &Apache::lonenc::check_encrypt($symb);
1.410     www      7809:     my $heading=&mt('Scanning clicker file');
                   7810:     $result.=(<<ENDHEADER);
                   7811: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
                   7812: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
                   7813: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
                   7814: <form method="post" action="/adm/grades" name="clickeranalysis">
                   7815: <input type="hidden" name="symb" value="$symb" />
                   7816: <input type="hidden" name="command" value="assignclickergrades" />
                   7817: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
                   7818: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
1.411     www      7819: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
                   7820: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
                   7821: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410     www      7822: ENDHEADER
1.408     albertel 7823:     my %responses;
                   7824:     my @questiontitles;
1.405     www      7825:     my $errormsg='';
                   7826:     my $number=0;
                   7827:     if ($env{'form.upfiletype'} eq 'iclicker') {
1.408     albertel 7828: 	($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406     www      7829:     }
1.419     www      7830:     if ($env{'form.upfiletype'} eq 'interwrite') {
                   7831:         ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
                   7832:     }
1.411     www      7833:     $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
                   7834:              '<input type="hidden" name="number" value="'.$number.'" />'.
1.443     banghart 7835:              &mt('Awarding [_1] percent for corrion(s)',$number).'<br />'.
                   7836:              '<input type="hidden" name="number" value="'.$number.'" />'.
1.411     www      7837:              &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
                   7838:                  $env{'form.pcorrect'},$env{'form.pincorrect'}).
                   7839:              '<br />';
1.414     www      7840: # Remember Question Titles
                   7841: # FIXME: Possibly need delimiter other than ":"
                   7842:     for (my $i=0;$i<$number;$i++) {
                   7843:         $result.='<input type="hidden" name="question:'.$i.'" value="'.
                   7844:                  &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
                   7845:     }
1.411     www      7846:     my $correct_count=0;
                   7847:     my $student_count=0;
                   7848:     my $unknown_count=0;
1.414     www      7849: # Match answers with usernames
                   7850: # FIXME: Possibly need delimiter other than ":"
1.409     albertel 7851:     foreach my $id (keys(%responses)) {
1.410     www      7852:        if ($correct_ids{$id}) {
1.414     www      7853:           $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411     www      7854:           $correct_count++;
1.410     www      7855:        } elsif ($clicker_ids{$id}) {
1.437     www      7856:           if ($clicker_ids{$id}=~/\,/) {
                   7857: # More than one user with the same clicker!
                   7858:              $result.="\n<hr />".&mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
                   7859:              $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
                   7860:                            "<select name='multi".$id."'>";
                   7861:              foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
                   7862:                  $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
                   7863:              }
                   7864:              $result.='</select>';
                   7865:              $unknown_count++;
                   7866:           } else {
                   7867: # Good: found one and only one user with the right clicker
                   7868:              $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
                   7869:              $student_count++;
                   7870:           }
1.410     www      7871:        } else {
1.411     www      7872:           $result.="\n<hr />".&mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
                   7873:           $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
                   7874:                    "\n".&mt("Username").": <input type='text' name='uname".$id."' />&nbsp;".
                   7875:                    "\n".&mt("Domain").": ".
                   7876:                    &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).'&nbsp;'.
                   7877:                    &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id);
                   7878:           $unknown_count++;
1.410     www      7879:        }
1.405     www      7880:     }
1.412     www      7881:     $result.='<hr />'.
                   7882:              &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
                   7883:     if ($env{'form.gradingmechanism'} ne 'attendance') {
                   7884:        if ($correct_count==0) {
                   7885:           $errormsg.="Found no correct answers answers for grading!";
                   7886:        } elsif ($correct_count>1) {
1.414     www      7887:           $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412     www      7888:        }
                   7889:     }
1.428     www      7890:     if ($number<1) {
                   7891:        $errormsg.="Found no questions.";
                   7892:     }
1.412     www      7893:     if ($errormsg) {
                   7894:        $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
                   7895:     } else {
                   7896:        $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
                   7897:     }
                   7898:     $result.='</form></td></tr></table>'."\n".
1.410     www      7899:              '</td></tr></table><br /><br />'."\n";
1.404     www      7900:     return $result.&show_grading_menu_form($symb);
1.400     www      7901: }
                   7902: 
1.405     www      7903: sub iclicker_eval {
1.406     www      7904:     my ($questiontitles,$responses)=@_;
1.405     www      7905:     my $number=0;
                   7906:     my $errormsg='';
                   7907:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410     www      7908:         my %components=&Apache::loncommon::record_sep($line);
                   7909:         my @entries=map {$components{$_}} (sort(keys(%components)));
1.408     albertel 7910: 	if ($entries[0] eq 'Question') {
                   7911: 	    for (my $i=3;$i<$#entries;$i+=6) {
                   7912: 		$$questiontitles[$number]=$entries[$i];
                   7913: 		$number++;
                   7914: 	    }
                   7915: 	}
                   7916: 	if ($entries[0]=~/^\#/) {
                   7917: 	    my $id=$entries[0];
                   7918: 	    my @idresponses;
                   7919: 	    $id=~s/^[\#0]+//;
                   7920: 	    for (my $i=0;$i<$number;$i++) {
                   7921: 		my $idx=3+$i*6;
                   7922: 		push(@idresponses,$entries[$idx]);
                   7923: 	    }
                   7924: 	    $$responses{$id}=join(',',@idresponses);
                   7925: 	}
1.405     www      7926:     }
                   7927:     return ($errormsg,$number);
                   7928: }
                   7929: 
1.419     www      7930: sub interwrite_eval {
                   7931:     my ($questiontitles,$responses)=@_;
                   7932:     my $number=0;
                   7933:     my $errormsg='';
1.420     www      7934:     my $skipline=1;
                   7935:     my $questionnumber=0;
                   7936:     my %idresponses=();
1.419     www      7937:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
                   7938:         my %components=&Apache::loncommon::record_sep($line);
                   7939:         my @entries=map {$components{$_}} (sort(keys(%components)));
1.420     www      7940:         if ($entries[1] eq 'Time') { $skipline=0; next; }
                   7941:         if ($entries[1] eq 'Response') { $skipline=1; }
                   7942:         next if $skipline;
                   7943:         if ($entries[0]!=$questionnumber) {
                   7944:            $questionnumber=$entries[0];
                   7945:            $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
                   7946:            $number++;
1.419     www      7947:         }
1.420     www      7948:         my $id=$entries[4];
                   7949:         $id=~s/^[\#0]+//;
1.421     www      7950:         $id=~s/^v\d*\://i;
                   7951:         $id=~s/[\-\:]//g;
1.420     www      7952:         $idresponses{$id}[$number]=$entries[6];
                   7953:     }
                   7954:     foreach my $id (keys %idresponses) {
                   7955:        $$responses{$id}=join(',',@{$idresponses{$id}});
                   7956:        $$responses{$id}=~s/^\s*\,//;
1.419     www      7957:     }
                   7958:     return ($errormsg,$number);
                   7959: }
                   7960: 
1.414     www      7961: sub assign_clicker_grades {
                   7962:     my ($r)=@_;
                   7963:     my ($symb)=&get_symb($r);
                   7964:     if (!$symb) {return '';}
1.416     www      7965: # See which part we are saving to
                   7966:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
                   7967: # FIXME: This should probably look for the first handgradeable part
                   7968:     my $part=$$partlist[0];
                   7969: # Start screen output
1.414     www      7970:     my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.416     www      7971: 
1.414     www      7972:     my $heading=&mt('Assigning grades based on clicker file');
                   7973:     $result.=(<<ENDHEADER);
                   7974: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
                   7975: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
                   7976: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
                   7977: ENDHEADER
                   7978: # Get correct result
                   7979: # FIXME: Possibly need delimiter other than ":"
                   7980:     my @correct=();
1.415     www      7981:     my $gradingmechanism=$env{'form.gradingmechanism'};
                   7982:     my $number=$env{'form.number'};
                   7983:     if ($gradingmechanism ne 'attendance') {
1.414     www      7984:        foreach my $key (keys(%env)) {
                   7985:           if ($key=~/^form\.correct\:/) {
                   7986:              my @input=split(/\,/,$env{$key});
                   7987:              for (my $i=0;$i<=$#input;$i++) {
                   7988:                  if (($correct[$i]) && ($input[$i]) &&
                   7989:                      ($correct[$i] ne $input[$i])) {
                   7990:                     $result.='<br /><span class="LC_warning">'.
                   7991:                              &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
                   7992:                                  $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
                   7993:                  } elsif ($input[$i]) {
                   7994:                     $correct[$i]=$input[$i];
                   7995:                  }
                   7996:              }
                   7997:           }
                   7998:        }
1.415     www      7999:        for (my $i=0;$i<$number;$i++) {
1.414     www      8000:           if (!$correct[$i]) {
                   8001:              $result.='<br /><span class="LC_error">'.
                   8002:                       &mt('No correct result given for question "[_1]"!',
                   8003:                           $env{'form.question:'.$i}).'</span>';
                   8004:           }
                   8005:        }
                   8006:        $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ($_?$_:'-') } @correct));
                   8007:     }
                   8008: # Start grading
1.415     www      8009:     my $pcorrect=$env{'form.pcorrect'};
                   8010:     my $pincorrect=$env{'form.pincorrect'};
1.416     www      8011:     my $storecount=0;
1.415     www      8012:     foreach my $key (keys(%env)) {
1.420     www      8013:        my $user='';
1.415     www      8014:        if ($key=~/^form\.student\:(.*)$/) {
1.420     www      8015:           $user=$1;
                   8016:        }
                   8017:        if ($key=~/^form\.unknown\:(.*)$/) {
                   8018:           my $id=$1;
                   8019:           if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
                   8020:              $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437     www      8021:           } elsif ($env{'form.multi'.$id}) {
                   8022:              $user=$env{'form.multi'.$id};
1.420     www      8023:           }
                   8024:        }
                   8025:        if ($user) { 
1.415     www      8026:           my @answer=split(/\,/,$env{$key});
                   8027:           my $sum=0;
                   8028:           for (my $i=0;$i<$number;$i++) {
                   8029:              if ($answer[$i]) {
                   8030:                 if ($gradingmechanism eq 'attendance') {
                   8031:                    $sum+=$pcorrect;
                   8032:                 } else {
                   8033:                    if ($answer[$i] eq $correct[$i]) {
                   8034:                       $sum+=$pcorrect;
                   8035:                    } else {
                   8036:                       $sum+=$pincorrect;
                   8037:                    }
                   8038:                 }
                   8039:              }
                   8040:           }
1.416     www      8041:           my $ave=$sum/(100*$number);
                   8042: # Store
                   8043:           my ($username,$domain)=split(/\:/,$user);
                   8044:           my %grades=();
                   8045:           $grades{"resource.$part.solved"}='correct_by_override';
                   8046:           $grades{"resource.$part.awarded"}=$ave;
                   8047:           $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
                   8048:           my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
                   8049:                                                  $env{'request.course.id'},
                   8050:                                                  $domain,$username);
                   8051:           if ($returncode ne 'ok') {
                   8052:              $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
                   8053:           } else {
                   8054:              $storecount++;
                   8055:           }
1.415     www      8056:        }
                   8057:     }
                   8058: # We are done
1.416     www      8059:     $result.='<br />'.&mt('Successfully stored grades for [_1] student(s).',$storecount).
                   8060:              '</td></tr></table>'."\n".
1.414     www      8061:              '</td></tr></table><br /><br />'."\n";
                   8062:     return $result.&show_grading_menu_form($symb);
                   8063: }
                   8064: 
1.1       albertel 8065: sub handler {
1.41      ng       8066:     my $request=$_[0];
1.434     albertel 8067:     &reset_caches();
1.257     albertel 8068:     if ($env{'browser.mathml'}) {
1.141     www      8069: 	&Apache::loncommon::content_type($request,'text/xml');
1.41      ng       8070:     } else {
1.141     www      8071: 	&Apache::loncommon::content_type($request,'text/html');
1.41      ng       8072:     }
                   8073:     $request->send_http_header;
1.44      ng       8074:     return '' if $request->header_only;
1.41      ng       8075:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.324     albertel 8076:     my $symb=&get_symb($request,1);
1.160     albertel 8077:     my @commands=&Apache::loncommon::get_env_multiple('form.command');
                   8078:     my $command=$commands[0];
1.447     foxr     8079: 
1.160     albertel 8080:     if ($#commands > 0) {
                   8081: 	&Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
                   8082:     }
1.447     foxr     8083: 
                   8084: 
1.353     albertel 8085:     $request->print(&Apache::loncommon::start_page('Grading'));
1.324     albertel 8086:     if ($symb eq '' && $command eq '') {
1.257     albertel 8087: 	if ($env{'user.adv'}) {
                   8088: 	    if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
                   8089: 		($env{'form.codethree'})) {
                   8090: 		my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
                   8091: 		    $env{'form.codethree'};
1.41      ng       8092: 		my ($tsymb,$tuname,$tudom,$tcrsid)=
                   8093: 		    &Apache::lonnet::checkin($token);
                   8094: 		if ($tsymb) {
1.137     albertel 8095: 		    my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41      ng       8096: 		    if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.99      albertel 8097: 			$request->print(&Apache::lonnet::ssi_body('/res/'.$url,
                   8098: 					  ('grade_username' => $tuname,
                   8099: 					   'grade_domain' => $tudom,
                   8100: 					   'grade_courseid' => $tcrsid,
                   8101: 					   'grade_symb' => $tsymb)));
1.41      ng       8102: 		    } else {
1.45      ng       8103: 			$request->print('<h3>Not authorized: '.$token.'</h3>');
1.99      albertel 8104: 		    }
1.41      ng       8105: 		} else {
1.45      ng       8106: 		    $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41      ng       8107: 		}
1.14      www      8108: 	    } else {
1.41      ng       8109: 		$request->print(&Apache::lonxml::tokeninputfield());
                   8110: 	    }
                   8111: 	}
                   8112:     } else {
1.285     albertel 8113: 	&init_perm();
1.104     albertel 8114: 	if ($command eq 'submission' && $perm{'vgr'}) {
1.257     albertel 8115: 	    ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.103     albertel 8116: 	} elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68      ng       8117: 	    &pickStudentPage($request);
1.103     albertel 8118: 	} elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68      ng       8119: 	    &displayPage($request);
1.104     albertel 8120: 	} elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71      ng       8121: 	    &updateGradeByPage($request);
1.104     albertel 8122: 	} elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41      ng       8123: 	    &processGroup($request);
1.104     albertel 8124: 	} elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.443     banghart 8125: 	    $request->print(&grading_menu($request));
                   8126: 	} elsif ($command eq 'submit_options' && $perm{'vgr'}) {
                   8127: 	    $request->print(&submit_options($request));
1.104     albertel 8128: 	} elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41      ng       8129: 	    $request->print(&viewgrades($request));
1.104     albertel 8130: 	} elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41      ng       8131: 	    $request->print(&processHandGrade($request));
1.106     albertel 8132: 	} elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41      ng       8133: 	    $request->print(&editgrades($request));
1.106     albertel 8134: 	} elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41      ng       8135: 	    $request->print(&verifyreceipt($request));
1.400     www      8136:         } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
                   8137:             $request->print(&process_clicker($request));
                   8138:         } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
                   8139:             $request->print(&process_clicker_file($request));
1.414     www      8140:         } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
                   8141:             $request->print(&assign_clicker_grades($request));
1.106     albertel 8142: 	} elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72      ng       8143: 	    $request->print(&upcsvScores_form($request));
1.106     albertel 8144: 	} elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41      ng       8145: 	    $request->print(&csvupload($request));
1.106     albertel 8146: 	} elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41      ng       8147: 	    $request->print(&csvuploadmap($request));
1.246     albertel 8148: 	} elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257     albertel 8149: 	    if ($env{'form.associate'} ne 'Reverse Association') {
1.246     albertel 8150: 		$request->print(&csvuploadoptions($request));
1.41      ng       8151: 	    } else {
1.257     albertel 8152: 		if ( $env{'form.upfile_associate'} ne 'reverse' ) {
                   8153: 		    $env{'form.upfile_associate'} = 'reverse';
1.41      ng       8154: 		} else {
1.257     albertel 8155: 		    $env{'form.upfile_associate'} = 'forward';
1.41      ng       8156: 		}
                   8157: 		$request->print(&csvuploadmap($request));
                   8158: 	    }
1.246     albertel 8159: 	} elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
                   8160: 	    $request->print(&csvuploadassign($request));
1.106     albertel 8161: 	} elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75      albertel 8162: 	    $request->print(&scantron_selectphase($request));
1.203     albertel 8163:  	} elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
                   8164:  	    $request->print(&scantron_do_warning($request));
1.142     albertel 8165: 	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
                   8166: 	    $request->print(&scantron_validate_file($request));
1.106     albertel 8167: 	} elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82      albertel 8168: 	    $request->print(&scantron_process_students($request));
1.157     albertel 8169:  	} elsif ($command eq 'scantronupload' && 
1.257     albertel 8170:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
                   8171: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162     albertel 8172:  	    $request->print(&scantron_upload_scantron_data($request)); 
1.157     albertel 8173:  	} elsif ($command eq 'scantronupload_save' &&
1.257     albertel 8174:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
                   8175: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157     albertel 8176:  	    $request->print(&scantron_upload_scantron_data_save($request));
1.202     albertel 8177:  	} elsif ($command eq 'scantron_download' &&
1.257     albertel 8178: 		 &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162     albertel 8179:  	    $request->print(&scantron_download_scantron_data($request));
1.106     albertel 8180: 	} elsif ($command) {
1.157     albertel 8181: 	    $request->print("Access Denied ($command)");
1.26      albertel 8182: 	}
1.2       albertel 8183:     }
1.353     albertel 8184:     $request->print(&Apache::loncommon::end_page());
1.434     albertel 8185:     &reset_caches();
1.44      ng       8186:     return '';
                   8187: }
                   8188: 
1.1       albertel 8189: 1;
                   8190: 
1.13      albertel 8191: __END__;

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