File:  [LON-CAPA] / loncom / homework / grades.pm
Revision 1.538: download - view: text, annotated - select for diffs
Sat Dec 20 04:04:36 2008 UTC (15 years, 4 months ago) by schulted
Branches: MAIN
CVS tags: HEAD
Changes related to LON-CAPA redesign project.
Modified grades.pm to use the new menu generator.

    1: # The LearningOnline Network with CAPA
    2: # The LON-CAPA Grading handler
    3: #
    4: # $Id: grades.pm,v 1.538 2008/12/20 04:04:36 schulted Exp $
    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: #
   28: 
   29: 
   30: 
   31: package Apache::grades;
   32: use strict;
   33: use Apache::style;
   34: use Apache::lonxml;
   35: use Apache::lonnet;
   36: use Apache::loncommon;
   37: use Apache::lonhtmlcommon;
   38: use Apache::lonnavmaps;
   39: use Apache::lonhomework;
   40: use Apache::lonpickcode;
   41: use Apache::loncoursedata;
   42: use Apache::lonmsg();
   43: use Apache::Constants qw(:common);
   44: use Apache::lonlocal;
   45: use Apache::lonenc;
   46: use String::Similarity;
   47: use LONCAPA;
   48: 
   49: use POSIX qw(floor);
   50: 
   51: 
   52: 
   53: my %perm=();
   54: 
   55: #  These variables are used to recover from ssi errors
   56: 
   57: my $ssi_retries = 5;
   58: my $ssi_error;
   59: my $ssi_error_resource;
   60: my $ssi_error_message;
   61: 
   62: 
   63: sub ssi_with_retries {
   64:     my ($resource, $retries, %form) = @_;
   65:     my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
   66:     if ($response->is_error) {
   67: 	$ssi_error          = 1;
   68: 	$ssi_error_resource = $resource;
   69: 	$ssi_error_message  = $response->code . " " . $response->message;
   70:     }
   71: 
   72:     return $content;
   73: 
   74: }
   75: #
   76: #  Prodcuces an ssi retry failure error message to the user:
   77: #
   78: 
   79: sub ssi_print_error {
   80:     my ($r) = @_;
   81:     my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
   82:     $r->print('
   83: <br />
   84: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
   85: <p>
   86: '.&mt('Unable to retrieve a resource from a server:').'<br />
   87: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
   88: '.&mt('Error:').' '.$ssi_error_message.'
   89: </p>
   90: <p>'.
   91: &mt('It is recommended that you try again later, as this error may mean the server was just temporarily unavailable, or is down for maintenance.').'<br />'.
   92: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
   93: '</p>');
   94:     return;
   95: }
   96: 
   97: #
   98: # --- Retrieve the parts from the metadata file.---
   99: sub getpartlist {
  100:     my ($symb) = @_;
  101: 
  102:     my $navmap   = Apache::lonnavmaps::navmap->new();
  103:     my $res      = $navmap->getBySymb($symb);
  104:     my $partlist = $res->parts();
  105:     my $url      = $res->src();
  106:     my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
  107: 
  108:     my @stores;
  109:     foreach my $part (@{ $partlist }) {
  110: 	foreach my $key (@metakeys) {
  111: 	    if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
  112: 	}
  113:     }
  114:     return @stores;
  115: }
  116: 
  117: # --- Get the symbolic name of a problem and the url
  118: sub get_symb {
  119:     my ($request,$silent) = @_;
  120:     (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
  121:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
  122:     if ($symb eq '') { 
  123: 	if (!$silent) {
  124: 	    $request->print("Unable to handle ambiguous references:$url:.");
  125: 	    return ();
  126: 	}
  127:     }
  128:     &Apache::lonenc::check_decrypt(\$symb);
  129:     return ($symb);
  130: }
  131: 
  132: #--- Format fullname, username:domain if different for display
  133: #--- Use anywhere where the student names are listed
  134: sub nameUserString {
  135:     my ($type,$fullname,$uname,$udom) = @_;
  136:     if ($type eq 'header') {
  137: 	return '<b>&nbsp;'.&mt('Fullname').'&nbsp;</b><span class="LC_internal_info">('.&mt('Username').')</span>';
  138:     } else {
  139: 	return '&nbsp;'.$fullname.'<span class="LC_internal_info">&nbsp;('.$uname.
  140: 	    ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
  141:     }
  142: }
  143: 
  144: #--- Get the partlist and the response type for a given problem. ---
  145: #--- Indicate if a response type is coded handgraded or not. ---
  146: sub response_type {
  147:     my ($symb) = shift;
  148: 
  149:     my $navmap = Apache::lonnavmaps::navmap->new();
  150:     my $res = $navmap->getBySymb($symb);
  151:     my $partlist = $res->parts();
  152:     my %vPart = 
  153: 	map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
  154:     my (%response_types,%handgrade);
  155:     foreach my $part (@{ $partlist }) {
  156: 	next if (%vPart && !exists($vPart{$part}));
  157: 
  158: 	my @types = $res->responseType($part);
  159: 	my @ids = $res->responseIds($part);
  160: 	for (my $i=0; $i < scalar(@ids); $i++) {
  161: 	    $response_types{$part}{$ids[$i]} = $types[$i];
  162: 	    $handgrade{$part.'_'.$ids[$i]} = 
  163: 		&Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
  164: 				     '.handgrade',$symb);
  165: 	}
  166:     }
  167:     return ($partlist,\%handgrade,\%response_types);
  168: }
  169: 
  170: sub flatten_responseType {
  171:     my ($responseType) = @_;
  172:     my @part_response_id =
  173: 	map { 
  174: 	    my $part = $_;
  175: 	    map {
  176: 		[$part,$_]
  177: 		} sort(keys(%{ $responseType->{$part} }));
  178: 	} sort(keys(%$responseType));
  179:     return @part_response_id;
  180: }
  181: 
  182: sub get_display_part {
  183:     my ($partID,$symb)=@_;
  184:     my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
  185:     if (defined($display) and $display ne '') {
  186: 	$display.= " (<span class=\"LC_internal_info\">id $partID</span>)";
  187:     } else {
  188: 	$display=$partID;
  189:     }
  190:     return $display;
  191: }
  192: 
  193: #--- Show resource title
  194: #--- and parts and response type
  195: sub showResourceInfo {
  196:     my ($symb,$probTitle,$checkboxes) = @_;
  197:     my $col=3;
  198:     if ($checkboxes) { $col=4; }
  199:     my $result = '<h3>'.&mt('Current Resource').': '.$probTitle.'</h3>'."\n";
  200:     $result .='<table border="0">';
  201:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
  202:     my %resptype = ();
  203:     my $hdgrade='no';
  204:     my %partsseen;
  205:     foreach my $partID (sort(keys(%$responseType))) {
  206: 	foreach my $resID (sort(keys(%{ $responseType->{$partID} }))) {
  207: 	    my $handgrade=$$handgrade{$partID.'_'.$resID};
  208: 	    my $responsetype = $responseType->{$partID}->{$resID};
  209: 	    $hdgrade = $handgrade if ($handgrade eq 'yes');
  210: 	    $result.='<tr>';
  211: 	    if ($checkboxes) {
  212: 		if (exists($partsseen{$partID})) {
  213: 		    $result.="<td>&nbsp;</td>";
  214: 		} else {
  215: 		    $result.="<td><input type='checkbox' name='vPart' value='$partID' checked='checked' /></td>";
  216: 		}
  217: 		$partsseen{$partID}=1;
  218: 	    }
  219: 	    my $display_part=&get_display_part($partID,$symb);
  220: 	    $result.='<td>'.&mt('<b>Part: </b>[_1]',$display_part).' <span class="LC_internal_info">'.
  221: 		$resID.'</span></td>'.
  222: 		'<td>'.&mt('<b>Type: </b>[_1]',$responsetype).'</td></tr>';
  223: #	    '<td>'.&mt('<b>Handgrade: </b>[_1]',$handgrade).'</td></tr>';
  224: 	}
  225:     }
  226:     $result.='</table>'."\n";
  227:     return $result,$responseType,$hdgrade,$partlist,$handgrade;
  228: }
  229: 
  230: sub reset_caches {
  231:     &reset_analyze_cache();
  232:     &reset_perm();
  233: }
  234: 
  235: {
  236:     my %analyze_cache;
  237: 
  238:     sub reset_analyze_cache {
  239: 	undef(%analyze_cache);
  240:     }
  241: 
  242:     sub get_analyze {
  243: 	my ($symb,$uname,$udom,$no_increment)=@_;
  244: 	my $key = "$symb\0$uname\0$udom";
  245: 	return $analyze_cache{$key} if (exists($analyze_cache{$key}));
  246: 
  247: 	my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
  248: 	$url=&Apache::lonnet::clutter($url);
  249: 	my $subresult=&ssi_with_retries($url, $ssi_retries,
  250: 					   ('grade_target' => 'analyze',
  251: 					    'grade_domain' => $udom,
  252: 					    'grade_symb' => $symb,
  253: 					    'grade_courseid' => 
  254: 					    $env{'request.course.id'},
  255: 					    'grade_username' => $uname,
  256:                                             'grade_noincrement' => $no_increment));
  257: 	(undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
  258: 	my %analyze=&Apache::lonnet::str2hash($subresult);
  259: 	return $analyze_cache{$key} = \%analyze;
  260:     }
  261: 
  262:     sub get_order {
  263: 	my ($partid,$respid,$symb,$uname,$udom,$no_increment)=@_;
  264: 	my $analyze = &get_analyze($symb,$uname,$udom,$no_increment);
  265: 	return $analyze->{"$partid.$respid.shown"};
  266:     }
  267: 
  268:     sub get_radiobutton_correct_foil {
  269: 	my ($partid,$respid,$symb,$uname,$udom)=@_;
  270: 	my $analyze = &get_analyze($symb,$uname,$udom);
  271: 	foreach my $foil (@{&get_order($partid,$respid,$symb,$uname,$udom)}) {
  272: 	    if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
  273: 		return $foil;
  274: 	    }
  275: 	}
  276:     }
  277: }
  278: 
  279: #--- Clean response type for display
  280: #--- Currently filters option/rank/radiobutton/match/essay/Task
  281: #        response types only.
  282: sub cleanRecord {
  283:     my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
  284: 	$uname,$udom) = @_;
  285:     my $grayFont = '<span class="LC_internal_info">';
  286:     if ($response =~ /^(option|rank)$/) {
  287: 	my %answer=&Apache::lonnet::str2hash($answer);
  288: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
  289: 	my ($toprow,$bottomrow);
  290: 	foreach my $foil (@$order) {
  291: 	    if ($grading{$foil} == 1) {
  292: 		$toprow.='<td><b>'.$answer{$foil}.'&nbsp;</b></td>';
  293: 	    } else {
  294: 		$toprow.='<td><i>'.$answer{$foil}.'&nbsp;</i></td>';
  295: 	    }
  296: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
  297: 	}
  298: 	return '<blockquote><table border="1">'.
  299: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
  300: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
  301: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
  302:     } elsif ($response eq 'match') {
  303: 	my %answer=&Apache::lonnet::str2hash($answer);
  304: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
  305: 	my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
  306: 	my ($toprow,$middlerow,$bottomrow);
  307: 	foreach my $foil (@$order) {
  308: 	    my $item=shift(@items);
  309: 	    if ($grading{$foil} == 1) {
  310: 		$toprow.='<td><b>'.$item.'&nbsp;</b></td>';
  311: 		$middlerow.='<td><b>'.$grayFont.$answer{$foil}.'&nbsp;</span></b></td>';
  312: 	    } else {
  313: 		$toprow.='<td><i>'.$item.'&nbsp;</i></td>';
  314: 		$middlerow.='<td><i>'.$grayFont.$answer{$foil}.'&nbsp;</span></i></td>';
  315: 	    }
  316: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
  317: 	}
  318: 	return '<blockquote><table border="1">'.
  319: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
  320: 	    '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
  321: 	    $middlerow.'</tr>'.
  322: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
  323: 	    $bottomrow.'</tr>'.'</table></blockquote>';
  324:     } elsif ($response eq 'radiobutton') {
  325: 	my %answer=&Apache::lonnet::str2hash($answer);
  326: 	my ($toprow,$bottomrow);
  327: 	my $correct = 
  328: 	    &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom);
  329: 	foreach my $foil (@$order) {
  330: 	    if (exists($answer{$foil})) {
  331: 		if ($foil eq $correct) {
  332: 		    $toprow.='<td><b>'.&mt('true').'</b></td>';
  333: 		} else {
  334: 		    $toprow.='<td><i>'.&mt('true').'</i></td>';
  335: 		}
  336: 	    } else {
  337: 		$toprow.='<td>'.&mt('false').'</td>';
  338: 	    }
  339: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
  340: 	}
  341: 	return '<blockquote><table border="1">'.
  342: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
  343: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
  344: 	    $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
  345:     } elsif ($response eq 'essay') {
  346: 	if (! exists ($env{'form.'.$symb})) {
  347: 	    my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
  348: 						  $env{'course.'.$env{'request.course.id'}.'.domain'},
  349: 						  $env{'course.'.$env{'request.course.id'}.'.num'});
  350: 
  351: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
  352: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
  353: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
  354: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
  355: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
  356: 	    $env{'form.'.$symb} = 1; # so that we don't have to read it from disk for multiple sub of the same prob.
  357: 	}
  358: 	$answer =~ s-\n-<br />-g;
  359: 	return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
  360:     } elsif ( $response eq 'organic') {
  361: 	my $result='Smile representation: "<tt>'.$answer.'</tt>"';
  362: 	my $jme=$record->{$version."resource.$partid.$respid.molecule"};
  363: 	$result.=&Apache::chemresponse::jme_img($jme,$answer,400);
  364: 	return $result;
  365:     } elsif ( $response eq 'Task') {
  366: 	if ( $answer eq 'SUBMITTED') {
  367: 	    my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
  368: 	    my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
  369: 	    return $result;
  370: 	} elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
  371: 	    my @matches = grep(/^\Q$version\E.*?\.instance$/,
  372: 			       keys(%{$record}));
  373: 	    return join('<br />',($version,@matches));
  374: 			       
  375: 			       
  376: 	} else {
  377: 	    my $result =
  378: 		'<p>'
  379: 		.&mt('Overall result: [_1]',
  380: 		     $record->{$version."resource.$respid.$partid.status"})
  381: 		.'</p>';
  382: 	    
  383: 	    $result .= '<ul>';
  384: 	    my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
  385: 			     keys(%{$record}));
  386: 	    foreach my $grade (sort(@grade)) {
  387: 		my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
  388: 		$result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
  389: 				     $dim, $record->{$grade}).
  390: 			  '</li>';
  391: 	    }
  392: 	    $result.='</ul>';
  393: 	    return $result;
  394: 	}
  395:     } elsif ( $response =~ m/(?:numerical|formula)/) {
  396: 	$answer = 
  397: 	    &Apache::loncommon::format_previous_attempt_value('submission',
  398: 							      $answer);
  399:     }
  400:     return $answer;
  401: }
  402: 
  403: #-- A couple of common js functions
  404: sub commonJSfunctions {
  405:     my $request = shift;
  406:     $request->print(<<COMMONJSFUNCTIONS);
  407: <script type="text/javascript" language="javascript">
  408:     function radioSelection(radioButton) {
  409: 	var selection=null;
  410: 	if (radioButton.length > 1) {
  411: 	    for (var i=0; i<radioButton.length; i++) {
  412: 		if (radioButton[i].checked) {
  413: 		    return radioButton[i].value;
  414: 		}
  415: 	    }
  416: 	} else {
  417: 	    if (radioButton.checked) return radioButton.value;
  418: 	}
  419: 	return selection;
  420:     }
  421: 
  422:     function pullDownSelection(selectOne) {
  423: 	var selection="";
  424: 	if (selectOne.length > 1) {
  425: 	    for (var i=0; i<selectOne.length; i++) {
  426: 		if (selectOne[i].selected) {
  427: 		    return selectOne[i].value;
  428: 		}
  429: 	    }
  430: 	} else {
  431:             // only one value it must be the selected one
  432: 	    return selectOne.value;
  433: 	}
  434:     }
  435: </script>
  436: COMMONJSFUNCTIONS
  437: }
  438: 
  439: #--- Dumps the class list with usernames,list of sections,
  440: #--- section, ids and fullnames for each user.
  441: sub getclasslist {
  442:     my ($getsec,$filterlist,$getgroup) = @_;
  443:     my @getsec;
  444:     my @getgroup;
  445:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
  446:     if (!ref($getsec)) {
  447: 	if ($getsec ne '' && $getsec ne 'all') {
  448: 	    @getsec=($getsec);
  449: 	}
  450:     } else {
  451: 	@getsec=@{$getsec};
  452:     }
  453:     if (grep(/^all$/,@getsec)) { undef(@getsec); }
  454:     if (!ref($getgroup)) {
  455: 	if ($getgroup ne '' && $getgroup ne 'all') {
  456: 	    @getgroup=($getgroup);
  457: 	}
  458:     } else {
  459: 	@getgroup=@{$getgroup};
  460:     }
  461:     if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
  462: 
  463:     my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
  464:     # Bail out if we were unable to get the classlist
  465:     return if (! defined($classlist));
  466:     &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
  467:     #
  468:     my %sections;
  469:     my %fullnames;
  470:     foreach my $student (keys(%$classlist)) {
  471:         my $end      = 
  472:             $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
  473:         my $start    = 
  474:             $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
  475:         my $id       = 
  476:             $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
  477:         my $section  = 
  478:             $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
  479:         my $fullname = 
  480:             $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
  481:         my $status   = 
  482:             $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
  483:         my $group   = 
  484:             $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
  485: 	# filter students according to status selected
  486: 	if ($filterlist && (!($stu_status =~ /Any/))) {
  487: 	    if (!($stu_status =~ $status)) {
  488: 		delete($classlist->{$student});
  489: 		next;
  490: 	    }
  491: 	}
  492: 	# filter students according to groups selected
  493: 	my @stu_groups = split(/,/,$group);
  494: 	if (@getgroup) {
  495: 	    my $exclude = 1;
  496: 	    foreach my $grp (@getgroup) {
  497: 	        foreach my $stu_group (@stu_groups) {
  498: 	            if ($stu_group eq $grp) {
  499: 	                $exclude = 0;
  500:     	            } 
  501: 	        }
  502:     	        if (($grp eq 'none') && !$group) {
  503:         	        $exclude = 0;
  504:         	}
  505: 	    }
  506: 	    if ($exclude) {
  507: 	        delete($classlist->{$student});
  508: 	    }
  509: 	}
  510: 	$section = ($section ne '' ? $section : 'none');
  511: 	if (&canview($section)) {
  512: 	    if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
  513: 		$sections{$section}++;
  514: 		if ($classlist->{$student}) {
  515: 		    $fullnames{$student}=$fullname;
  516: 		}
  517: 	    } else {
  518: 		delete($classlist->{$student});
  519: 	    }
  520: 	} else {
  521: 	    delete($classlist->{$student});
  522: 	}
  523:     }
  524:     my %seen = ();
  525:     my @sections = sort(keys(%sections));
  526:     return ($classlist,\@sections,\%fullnames);
  527: }
  528: 
  529: sub canmodify {
  530:     my ($sec)=@_;
  531:     if ($perm{'mgr'}) {
  532: 	if (!defined($perm{'mgr_section'})) {
  533: 	    # can modify whole class
  534: 	    return 1;
  535: 	} else {
  536: 	    if ($sec eq $perm{'mgr_section'}) {
  537: 		#can modify the requested section
  538: 		return 1;
  539: 	    } else {
  540: 		# can't modify the request section
  541: 		return 0;
  542: 	    }
  543: 	}
  544:     }
  545:     #can't modify
  546:     return 0;
  547: }
  548: 
  549: sub canview {
  550:     my ($sec)=@_;
  551:     if ($perm{'vgr'}) {
  552: 	if (!defined($perm{'vgr_section'})) {
  553: 	    # can modify whole class
  554: 	    return 1;
  555: 	} else {
  556: 	    if ($sec eq $perm{'vgr_section'}) {
  557: 		#can modify the requested section
  558: 		return 1;
  559: 	    } else {
  560: 		# can't modify the request section
  561: 		return 0;
  562: 	    }
  563: 	}
  564:     }
  565:     #can't modify
  566:     return 0;
  567: }
  568: 
  569: #--- Retrieve the grade status of a student for all the parts
  570: sub student_gradeStatus {
  571:     my ($symb,$udom,$uname,$partlist) = @_;
  572:     my %record     = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
  573:     my %partstatus = ();
  574:     foreach (@$partlist) {
  575: 	my ($status,undef)   = split(/_/,$record{"resource.$_.solved"},2);
  576: 	$status              = 'nothing' if ($status eq '');
  577: 	$partstatus{$_}      = $status;
  578: 	my $subkey           = "resource.$_.submitted_by";
  579: 	$partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
  580:     }
  581:     return %partstatus;
  582: }
  583: 
  584: # hidden form and javascript that calls the form
  585: # Use by verifyscript and viewgrades
  586: # Shows a student's view of problem and submission
  587: sub jscriptNform {
  588:     my ($symb) = @_;
  589:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
  590:     my $jscript='<script type="text/javascript" language="javascript">'."\n".
  591: 	'    function viewOneStudent(user,domain) {'."\n".
  592: 	'	document.onestudent.student.value = user;'."\n".
  593: 	'	document.onestudent.userdom.value = domain;'."\n".
  594: 	'	document.onestudent.submit();'."\n".
  595: 	'    }'."\n".
  596: 	'</script>'."\n";
  597:     $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
  598: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
  599: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
  600: 	'<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
  601: 	'<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
  602: 	'<input type="hidden" name="command" value="submission" />'."\n".
  603: 	'<input type="hidden" name="student" value="" />'."\n".
  604: 	'<input type="hidden" name="userdom" value="" />'."\n".
  605: 	'</form>'."\n";
  606:     return $jscript;
  607: }
  608: 
  609: 
  610: 
  611: # Given the score (as a number [0-1] and the weight) what is the final
  612: # point value? This function will round to the nearest tenth, third,
  613: # or quarter if one of those is within the tolerance of .00001.
  614: sub compute_points {
  615:     my ($score, $weight) = @_;
  616:     
  617:     my $tolerance = .00001;
  618:     my $points = $score * $weight;
  619: 
  620:     # Check for nearness to 1/x.
  621:     my $check_for_nearness = sub {
  622:         my ($factor) = @_;
  623:         my $num = ($points * $factor) + $tolerance;
  624:         my $floored_num = floor($num);
  625:         if ($num - $floored_num < 2 * $tolerance * $factor) {
  626:             return $floored_num / $factor;
  627:         }
  628:         return $points;
  629:     };
  630: 
  631:     $points = $check_for_nearness->(10);
  632:     $points = $check_for_nearness->(3);
  633:     $points = $check_for_nearness->(4);
  634:     
  635:     return $points;
  636: }
  637: 
  638: #------------------ End of general use routines --------------------
  639: 
  640: #
  641: # Find most similar essay
  642: #
  643: 
  644: sub most_similar {
  645:     my ($uname,$udom,$uessay,$old_essays)=@_;
  646: 
  647: # ignore spaces and punctuation
  648: 
  649:     $uessay=~s/\W+/ /gs;
  650: 
  651: # ignore empty submissions (occuring when only files are sent)
  652: 
  653:     unless ($uessay=~/\w+/) { return ''; }
  654: 
  655: # these will be returned. Do not care if not at least 50 percent similar
  656:     my $limit=0.6;
  657:     my $sname='';
  658:     my $sdom='';
  659:     my $scrsid='';
  660:     my $sessay='';
  661: # go through all essays ...
  662:     foreach my $tkey (keys(%$old_essays)) {
  663: 	my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
  664: # ... except the same student
  665:         next if (($tname eq $uname) && ($tdom eq $udom));
  666: 	my $tessay=$old_essays->{$tkey};
  667: 	$tessay=~s/\W+/ /gs;
  668: # String similarity gives up if not even limit
  669: 	my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
  670: # Found one
  671: 	if ($tsimilar>$limit) {
  672: 	    $limit=$tsimilar;
  673: 	    $sname=$tname;
  674: 	    $sdom=$tdom;
  675: 	    $scrsid=$tcrsid;
  676: 	    $sessay=$old_essays->{$tkey};
  677: 	}
  678:     }
  679:     if ($limit>0.6) {
  680:        return ($sname,$sdom,$scrsid,$sessay,$limit);
  681:     } else {
  682:        return ('','','','',0);
  683:     }
  684: }
  685: 
  686: #-------------------------------------------------------------------
  687: 
  688: #------------------------------------ Receipt Verification Routines
  689: #
  690: #--- Check whether a receipt number is valid.---
  691: sub verifyreceipt {
  692:     my $request  = shift;
  693: 
  694:     my $courseid = $env{'request.course.id'};
  695:     my $receipt  = &Apache::lonnet::recprefix($courseid).'-'.
  696: 	$env{'form.receipt'};
  697:     $receipt     =~ s/[^\-\d]//g;
  698:     my ($symb)   = &get_symb($request);
  699: 
  700:     my $title.=
  701: 	'<h3><span class="LC_info">'.
  702: 	&mt('Verifying Submission Receipt [_1]',$receipt).
  703: 	'</span></h3>'."\n".
  704: 	'<h4>'.&mt('<b>Resource: </b>[_1]',$env{'form.probTitle'}).
  705: 	'</h4>'."\n";
  706: 
  707:     my ($string,$contents,$matches) = ('','',0);
  708:     my (undef,undef,$fullname) = &getclasslist('all','0');
  709:     
  710:     my $receiptparts=0;
  711:     if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
  712: 	$env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
  713:     my $parts=['0'];
  714:     if ($receiptparts) { ($parts)=&response_type($symb); }
  715:     
  716:     my $header = 
  717: 	&Apache::loncommon::start_data_table().
  718: 	&Apache::loncommon::start_data_table_header_row().
  719: 	'<th>&nbsp;'.&mt('Fullname').'&nbsp;</th>'."\n".
  720: 	'<th>&nbsp;'.&mt('Username').'&nbsp;</th>'."\n".
  721: 	'<th>&nbsp;'.&mt('Domain').'&nbsp;</th>';
  722:     if ($receiptparts) {
  723: 	$header.='<th>&nbsp;'.&mt('Problem Part').'&nbsp;</th>';
  724:     }
  725:     $header.=
  726: 	&Apache::loncommon::end_data_table_header_row();
  727: 
  728:     foreach (sort 
  729: 	     {
  730: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
  731: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
  732: 		 }
  733: 		 return $a cmp $b;
  734: 	     } (keys(%$fullname))) {
  735: 	my ($uname,$udom)=split(/\:/);
  736: 	foreach my $part (@$parts) {
  737: 	    if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
  738: 		$contents.=
  739: 		    &Apache::loncommon::start_data_table_row().
  740: 		    '<td>&nbsp;'."\n".
  741: 		    '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
  742: 		    '\');" target="_self">'.$$fullname{$_}.'</a>&nbsp;</td>'."\n".
  743: 		    '<td>&nbsp;'.$uname.'&nbsp;</td>'.
  744: 		    '<td>&nbsp;'.$udom.'&nbsp;</td>';
  745: 		if ($receiptparts) {
  746: 		    $contents.='<td>&nbsp;'.$part.'&nbsp;</td>';
  747: 		}
  748: 		$contents.= 
  749: 		    &Apache::loncommon::end_data_table_row()."\n";
  750: 		
  751: 		$matches++;
  752: 	    }
  753: 	}
  754:     }
  755:     if ($matches == 0) {
  756: 	$string = $title.&mt('No match found for the above receipt.');
  757:     } else {
  758: 	$string = &jscriptNform($symb).$title.
  759: 	    '<p>'.
  760: 	    &mt('The above receipt matches the following [numerate,_1,student].',$matches).
  761: 	    '</p>'.
  762: 	    $header.
  763: 	    $contents.
  764: 	    &Apache::loncommon::end_data_table()."\n";
  765:     }
  766:     return $string.&show_grading_menu_form($symb);
  767: }
  768: 
  769: #--- This is called by a number of programs.
  770: #--- Called from the Grading Menu - View/Grade an individual student
  771: #--- Also called directly when one clicks on the subm button 
  772: #    on the problem page.
  773: sub listStudents {
  774:     my ($request) = shift;
  775: 
  776:     my ($symb) = &get_symb($request);
  777:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
  778:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
  779:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
  780:     my $getgroup  = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
  781:     my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
  782:     my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
  783:     $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ? 
  784: 	&Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
  785: 
  786:     my $result='<h3><span class="LC_info">&nbsp;'.
  787: 	&mt($viewgrade.' Submissions for a Student or a Group of Students')
  788: 	.'</span></h3>';
  789: 
  790:     my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($symb,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
  791: 
  792:     my %lt = ( 'multiple' =>
  793: 	       "Please select a student or group of students before clicking on the Next button.",
  794: 	       'single'   =>
  795: 	       "Please select the student before clicking on the Next button.",
  796: 	       );
  797:     %lt = &Apache::lonlocal::texthash(%lt);
  798:     $request->print(<<LISTJAVASCRIPT);
  799: <script type="text/javascript" language="javascript">
  800:     function checkSelect(checkBox) {
  801: 	var ctr=0;
  802: 	var sense="";
  803: 	if (checkBox.length > 1) {
  804: 	    for (var i=0; i<checkBox.length; i++) {
  805: 		if (checkBox[i].checked) {
  806: 		    ctr++;
  807: 		}
  808: 	    }
  809: 	    sense = '$lt{'multiple'}';
  810: 	} else {
  811: 	    if (checkBox.checked) {
  812: 		ctr = 1;
  813: 	    }
  814: 	    sense = '$lt{'single'}';
  815: 	}
  816: 	if (ctr == 0) {
  817: 	    alert(sense);
  818: 	    return false;
  819: 	}
  820: 	document.gradesub.submit();
  821:     }
  822: 
  823:     function reLoadList(formname) {
  824: 	if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
  825: 	formname.command.value = 'submission';
  826: 	formname.submit();
  827:     }
  828: </script>
  829: LISTJAVASCRIPT
  830: 
  831:     &commonJSfunctions($request);
  832:     $request->print($result);
  833: 
  834:     my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked="checked"' : '';
  835:     my $checklastsub = $checkhdgrade eq '' ? 'checked="checked"' : '';
  836:     my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
  837: 	"\n".$table;
  838: 	
  839:     $gradeTable .= 
  840: 	'&nbsp;'.
  841: 	&mt('<b>View Problem Text: </b>[_1]',
  842: 	    '<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
  843: 	    '<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n".
  844: 	    '<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label>').'<br />'."\n";
  845:     $gradeTable .= 
  846: 	'&nbsp;'.
  847: 	&mt('<b>View Answer: </b>[_1]',
  848: 	    '<label><input type="radio" name="vAns" value="no"  /> '.&mt('no').' </label>'."\n".
  849: 	    '<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n".
  850: 	    '<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label>').'<br />'."\n";
  851: 
  852:     my $submission_options;
  853:     if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
  854: 	$submission_options.=
  855: 	    '<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> '.&mt('essay part only').' </label>'."\n";
  856:     }
  857:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
  858:     my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
  859:     $env{'form.Status'} = $saveStatus;
  860:     $submission_options.=
  861: 	'<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> '.&mt('last submission only').' </label>'."\n".
  862: 	'<label><input type="radio" name="lastSub" value="last" /> '.&mt('last submission &amp; parts info').' </label>'."\n".
  863: 	'<label><input type="radio" name="lastSub" value="datesub" /> '.&mt('by dates and submissions').' </label>'."\n".
  864: 	'<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').'</label>';
  865:     $gradeTable .= 
  866: 	'&nbsp;'.
  867: 	&mt('<b>Submissions: </b>[_1]',$submission_options).'<br />'."\n";
  868: 
  869:     $gradeTable .= 
  870:         '&nbsp;'.
  871: 	&mt('<b>Grading Increments:</b> [_1]',
  872: 	    '<select name="increment">'.
  873: 	    '<option value="1">'.&mt('Whole Points').'</option>'.
  874: 	    '<option value=".5">'.&mt('Half Points').'</option>'.
  875: 	    '<option value=".25">'.&mt('Quarter Points').'</option>'.
  876: 	    '<option value=".1">'.&mt('Tenths of a Point').'</option>'.
  877: 	    '</select>');
  878:     
  879:     $gradeTable .= 
  880:         &build_section_inputs().
  881: 	'<input type="hidden" name="submitonly"  value="'.$submitonly.'" />'."\n".
  882: 	'<input type="hidden" name="handgrade"   value="'.$env{'form.handgrade'}.'" /><br />'."\n".
  883: 	'<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
  884: 	'<input type="hidden" name="saveState"   value="'.$env{'form.saveState'}.'" />'."\n".
  885: 	'<input type="hidden" name="probTitle"   value="'.$env{'form.probTitle'}.'" />'."\n".
  886: 	'<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
  887: 	'<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
  888: 
  889:     if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
  890: 	$gradeTable.='<input type="hidden" name="Status"   value="'.$stu_status.'" />'."\n";
  891:     } else {
  892: 	$gradeTable.=&mt('<b>Student Status:</b> [_1]',
  893: 			 &Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,'javascript:reLoadList(this.form);')).'<br />';
  894:     }
  895: 
  896:     $gradeTable.=&mt('To '.lc($viewgrade).' a submission or a group of submissions, click on the check box(es) '.
  897: 	'next to the student\'s name(s). Then click on the Next button.').'<br />'."\n".
  898: 	'<input type="hidden" name="command" value="processGroup" />'."\n";
  899: 
  900: # checkall buttons
  901:     $gradeTable.=&check_script('gradesub', 'stuinfo');
  902:     $gradeTable.='<input type="button" '."\n".
  903: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '."\n".
  904: 	'value="'.&mt('Next-&gt;').'" /> <br />'."\n";
  905:     $gradeTable.=&check_buttons();
  906:     $gradeTable.='<label><input type="checkbox" name="checkPlag" checked="checked" />'.&mt('Check For Plagiarism').'</label>';
  907:     my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
  908:     $gradeTable.= &Apache::loncommon::start_data_table().
  909: 	&Apache::loncommon::start_data_table_header_row();
  910:     my $loop = 0;
  911:     while ($loop < 2) {
  912: 	$gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
  913: 	    '<th>'.&nameUserString('header').'&nbsp;'.&mt('Section/Group').'</th>';
  914: 	if ($env{'form.showgrading'} eq 'yes' 
  915: 	    && $submitonly ne 'queued'
  916: 	    && $submitonly ne 'all') {
  917: 	    foreach my $part (sort(@$partlist)) {
  918: 		my $display_part=
  919: 		    &get_display_part((split(/_/,$part))[0],$symb);
  920: 		$gradeTable.=
  921: 		    '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
  922: 	    }
  923: 	} elsif ($submitonly eq 'queued') {
  924: 	    $gradeTable.='<th>'.&mt('Queue Status').'&nbsp;</th>';
  925: 	}
  926: 	$loop++;
  927: #	$gradeTable.='<td></td>' if ($loop%2 ==1);
  928:     }
  929:     $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
  930: 
  931:     my $ctr = 0;
  932:     foreach my $student (sort 
  933: 			 {
  934: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
  935: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
  936: 			     }
  937: 			     return $a cmp $b;
  938: 			 }
  939: 			 (keys(%$fullname))) {
  940: 	my ($uname,$udom) = split(/:/,$student);
  941: 
  942: 	my %status = ();
  943: 
  944: 	if ($submitonly eq 'queued') {
  945: 	    my %queue_status = 
  946: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
  947: 							$udom,$uname);
  948: 	    next if (!defined($queue_status{'gradingqueue'}));
  949: 	    $status{'gradingqueue'} = $queue_status{'gradingqueue'};
  950: 	}
  951: 
  952: 	if ($env{'form.showgrading'} eq 'yes' 
  953: 	    && $submitonly ne 'queued'
  954: 	    && $submitonly ne 'all') {
  955: 	    (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
  956: 	    my $submitted = 0;
  957: 	    my $graded = 0;
  958: 	    my $incorrect = 0;
  959: 	    foreach (keys(%status)) {
  960: 		$submitted = 1 if ($status{$_} ne 'nothing');
  961: 		$graded = 1 if ($status{$_} =~ /^ungraded/);
  962: 		$incorrect = 1 if ($status{$_} =~ /^incorrect/);
  963: 		
  964: 		my ($foo,$partid,$foo1) = split(/\./,$_);
  965: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
  966: 		    $submitted = 0;
  967: 		    my ($part)=split(/\./,$partid);
  968: 		    $gradeTable.='<input type="hidden" name="'.
  969: 			$student.':'.$part.':submitted_by" value="'.
  970: 			$status{'resource.'.$partid.'.submitted_by'}.'" />';
  971: 		}
  972: 	    }
  973: 	    
  974: 	    next if (!$submitted && ($submitonly eq 'yes' ||
  975: 				     $submitonly eq 'incorrect' ||
  976: 				     $submitonly eq 'graded'));
  977: 	    next if (!$graded && ($submitonly eq 'graded'));
  978: 	    next if (!$incorrect && $submitonly eq 'incorrect');
  979: 	}
  980: 
  981: 	$ctr++;
  982: 	my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
  983:         my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
  984: 	if ( $perm{'vgr'} eq 'F' ) {
  985: 	    if ($ctr%2 ==1) {
  986: 		$gradeTable.= &Apache::loncommon::start_data_table_row();
  987: 	    }
  988: 	    $gradeTable.='<td align="right">'.$ctr.'&nbsp;</td>'.
  989:                '<td align="center"><label><input type=checkbox name="stuinfo" value="'.
  990:                $student.':'.$$fullname{$student}.':::SECTION'.$section.
  991: 	       ')&nbsp;" />&nbsp;&nbsp;</label></td>'."\n".'<td>'.
  992: 	       &nameUserString(undef,$$fullname{$student},$uname,$udom).
  993: 	       '&nbsp;'.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
  994: 
  995: 	    if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
  996: 		foreach (sort(keys(%status))) {
  997: 		    next if ($_ =~ /^resource.*?submitted_by$/);
  998: 		    $gradeTable.='<td align="center">&nbsp;'.&mt($status{$_}).'&nbsp;</td>'."\n";
  999: 		}
 1000: 	    }
 1001: #	    $gradeTable.='<td></td>' if ($ctr%2 ==1);
 1002: 	    if ($ctr%2 ==0) {
 1003: 		$gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
 1004: 	    }
 1005: 	}
 1006:     }
 1007:     if ($ctr%2 ==1) {
 1008: 	$gradeTable.='<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';
 1009: 	    if ($env{'form.showgrading'} eq 'yes' 
 1010: 		&& $submitonly ne 'queued'
 1011: 		&& $submitonly ne 'all') {
 1012: 		foreach (@$partlist) {
 1013: 		    $gradeTable.='<td>&nbsp;</td>';
 1014: 		}
 1015: 	    } elsif ($submitonly eq 'queued') {
 1016: 		$gradeTable.='<td>&nbsp;</td>';
 1017: 	    }
 1018: 	$gradeTable.=&Apache::loncommon::end_data_table_row();
 1019:     }
 1020: 
 1021:     $gradeTable.=&Apache::loncommon::end_data_table()."\n".
 1022: 	'<input type="button" '.
 1023: 	'onClick="javascript:checkSelect(this.form.stuinfo);" '.
 1024: 	'value="'.&mt('Next-&gt;').'" /></form>'."\n";
 1025:     if ($ctr == 0) {
 1026: 	my $num_students=(scalar(keys(%$fullname)));
 1027: 	if ($num_students eq 0) {
 1028: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
 1029: 	} else {
 1030: 	    my $submissions='submissions';
 1031: 	    if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
 1032: 	    if ($submitonly eq 'graded'   ) { $submissions = 'ungraded submissions'; }
 1033: 	    if ($submitonly eq 'queued'   ) { $submissions = 'queued submissions'; }
 1034: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">'.
 1035: 		&mt('No '.$submissions.' found for this resource for any students. ([_1] students checked for '.$submissions.')',
 1036: 		    $num_students).
 1037: 		'</span><br />';
 1038: 	}
 1039:     } elsif ($ctr == 1) {
 1040: 	$gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
 1041:     }
 1042:     $gradeTable.=&show_grading_menu_form($symb);
 1043:     $request->print($gradeTable);
 1044:     return '';
 1045: }
 1046: 
 1047: #---- Called from the listStudents routine
 1048: 
 1049: sub check_script {
 1050:     my ($form, $type)=@_;
 1051:     my $chkallscript='<script type="text/javascript">
 1052:     function checkall() {
 1053:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
 1054:             ele = document.forms.'.$form.'.elements[i];
 1055:             if (ele.name == "'.$type.'") {
 1056:             document.forms.'.$form.'.elements[i].checked=true;
 1057:                                        }
 1058:         }
 1059:     }
 1060: 
 1061:     function checksec() {
 1062:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
 1063:             ele = document.forms.'.$form.'.elements[i];
 1064:            string = document.forms.'.$form.'.chksec.value;
 1065:            if
 1066:           (ele.value.indexOf(":::SECTION"+string)>0) {
 1067:               document.forms.'.$form.'.elements[i].checked=true;
 1068:             }
 1069:         }
 1070:     }
 1071: 
 1072: 
 1073:     function uncheckall() {
 1074:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
 1075:             ele = document.forms.'.$form.'.elements[i];
 1076:             if (ele.name == "'.$type.'") {
 1077:             document.forms.'.$form.'.elements[i].checked=false;
 1078:                                        }
 1079:         }
 1080:     }
 1081: 
 1082: </script>'."\n";
 1083:     return $chkallscript;
 1084: }
 1085: 
 1086: sub check_buttons {
 1087:     my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
 1088:     $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" />&nbsp;';
 1089:     $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
 1090:     $buttons.='<input type="text" size="5" name="chksec" />&nbsp;';
 1091:     return $buttons;
 1092: }
 1093: 
 1094: #     Displays the submissions for one student or a group of students
 1095: sub processGroup {
 1096:     my ($request)  = shift;
 1097:     my $ctr        = 0;
 1098:     my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
 1099:     my $total      = scalar(@stuchecked)-1;
 1100: 
 1101:     foreach my $student (@stuchecked) {
 1102: 	my ($uname,$udom,$fullname) = split(/:/,$student);
 1103: 	$env{'form.student'}        = $uname;
 1104: 	$env{'form.userdom'}        = $udom;
 1105: 	$env{'form.fullname'}       = $fullname;
 1106: 	&submission($request,$ctr,$total);
 1107: 	$ctr++;
 1108:     }
 1109:     return '';
 1110: }
 1111: 
 1112: #------------------------------------------------------------------------------------
 1113: #
 1114: #-------------------------- Next few routines handles grading by student, essentially
 1115: #                           handles essay response type problem/part
 1116: #
 1117: #--- Javascript to handle the submission page functionality ---
 1118: sub sub_page_js {
 1119:     my $request = shift;
 1120:     $request->print(<<SUBJAVASCRIPT);
 1121: <script type="text/javascript" language="javascript">
 1122:     function updateRadio(formname,id,weight) {
 1123: 	var gradeBox = formname["GD_BOX"+id];
 1124: 	var radioButton = formname["RADVAL"+id];
 1125: 	var oldpts = formname["oldpts"+id].value;
 1126: 	var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
 1127: 	gradeBox.value = pts;
 1128: 	var resetbox = false;
 1129: 	if (isNaN(pts) || pts < 0) {
 1130: 	    alert("A number equal or greater than 0 is expected. Entered value = "+pts);
 1131: 	    for (var i=0; i<radioButton.length; i++) {
 1132: 		if (radioButton[i].checked) {
 1133: 		    gradeBox.value = i;
 1134: 		    resetbox = true;
 1135: 		}
 1136: 	    }
 1137: 	    if (!resetbox) {
 1138: 		formtextbox.value = "";
 1139: 	    }
 1140: 	    return;
 1141: 	}
 1142: 
 1143: 	if (pts > weight) {
 1144: 	    var resp = confirm("You entered a value ("+pts+
 1145: 			       ") greater than the weight for the part. Accept?");
 1146: 	    if (resp == false) {
 1147: 		gradeBox.value = oldpts;
 1148: 		return;
 1149: 	    }
 1150: 	}
 1151: 
 1152: 	for (var i=0; i<radioButton.length; i++) {
 1153: 	    radioButton[i].checked=false;
 1154: 	    if (pts == i && pts != "") {
 1155: 		radioButton[i].checked=true;
 1156: 	    }
 1157: 	}
 1158: 	updateSelect(formname,id);
 1159: 	formname["stores"+id].value = "0";
 1160:     }
 1161: 
 1162:     function writeBox(formname,id,pts) {
 1163: 	var gradeBox = formname["GD_BOX"+id];
 1164: 	if (checkSolved(formname,id) == 'update') {
 1165: 	    gradeBox.value = pts;
 1166: 	} else {
 1167: 	    var oldpts = formname["oldpts"+id].value;
 1168: 	    gradeBox.value = oldpts;
 1169: 	    var radioButton = formname["RADVAL"+id];
 1170: 	    for (var i=0; i<radioButton.length; i++) {
 1171: 		radioButton[i].checked=false;
 1172: 		if (i == oldpts) {
 1173: 		    radioButton[i].checked=true;
 1174: 		}
 1175: 	    }
 1176: 	}
 1177: 	formname["stores"+id].value = "0";
 1178: 	updateSelect(formname,id);
 1179: 	return;
 1180:     }
 1181: 
 1182:     function clearRadBox(formname,id) {
 1183: 	if (checkSolved(formname,id) == 'noupdate') {
 1184: 	    updateSelect(formname,id);
 1185: 	    return;
 1186: 	}
 1187: 	gradeSelect = formname["GD_SEL"+id];
 1188: 	for (var i=0; i<gradeSelect.length; i++) {
 1189: 	    if (gradeSelect[i].selected) {
 1190: 		var selectx=i;
 1191: 	    }
 1192: 	}
 1193: 	var stores = formname["stores"+id];
 1194: 	if (selectx == stores.value) { return };
 1195: 	var gradeBox = formname["GD_BOX"+id];
 1196: 	gradeBox.value = "";
 1197: 	var radioButton = formname["RADVAL"+id];
 1198: 	for (var i=0; i<radioButton.length; i++) {
 1199: 	    radioButton[i].checked=false;
 1200: 	}
 1201: 	stores.value = selectx;
 1202:     }
 1203: 
 1204:     function checkSolved(formname,id) {
 1205: 	if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
 1206: 	    var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
 1207: 	    if (!reply) {return "noupdate";}
 1208: 	    formname.overRideScore.value = 'yes';
 1209: 	}
 1210: 	return "update";
 1211:     }
 1212: 
 1213:     function updateSelect(formname,id) {
 1214: 	formname["GD_SEL"+id][0].selected = true;
 1215: 	return;
 1216:     }
 1217: 
 1218: //=========== Check that a point is assigned for all the parts  ============
 1219:     function checksubmit(formname,val,total,parttot) {
 1220: 	formname.gradeOpt.value = val;
 1221: 	if (val == "Save & Next") {
 1222: 	    for (i=0;i<=total;i++) {
 1223: 		for (j=0;j<parttot;j++) {
 1224: 		    var partid = formname["partid"+i+"_"+j].value;
 1225: 		    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
 1226: 			var points = formname["GD_BOX"+i+"_"+partid].value;
 1227: 			if (points == "") {
 1228: 			    var name = formname["name"+i].value;
 1229: 			    var studentID = (name != '' ? name : formname["unamedom"+i].value);
 1230: 			    var resp = confirm("You did not assign a score for "+studentID+
 1231: 					       ", part "+partid+". Continue?");
 1232: 			    if (resp == false) {
 1233: 				formname["GD_BOX"+i+"_"+partid].focus();
 1234: 				return false;
 1235: 			    }
 1236: 			}
 1237: 		    }
 1238: 		    
 1239: 		}
 1240: 	    }
 1241: 	    
 1242: 	}
 1243: 	if (val == "Grade Student") {
 1244: 	    formname.showgrading.value = "yes";
 1245: 	    if (formname.Status.value == "") {
 1246: 		formname.Status.value = "Active";
 1247: 	    }
 1248: 	    formname.studentNo.value = total;
 1249: 	}
 1250: 	formname.submit();
 1251:     }
 1252: 
 1253: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
 1254:     function checkSubmitPage(formname,total) {
 1255: 	noscore = new Array(100);
 1256: 	var ptr = 0;
 1257: 	for (i=1;i<total;i++) {
 1258: 	    var partid = formname["q_"+i].value;
 1259: 	    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
 1260: 		var points = formname["GD_BOX"+i+"_"+partid].value;
 1261: 		var status = formname["solved"+i+"_"+partid].value;
 1262: 		if (points == "" && status != "correct_by_student") {
 1263: 		    noscore[ptr] = i;
 1264: 		    ptr++;
 1265: 		}
 1266: 	    }
 1267: 	}
 1268: 	if (ptr != 0) {
 1269: 	    var sense = ptr == 1 ? ": " : "s: ";
 1270: 	    var prolist = "";
 1271: 	    if (ptr == 1) {
 1272: 		prolist = noscore[0];
 1273: 	    } else {
 1274: 		var i = 0;
 1275: 		while (i < ptr-1) {
 1276: 		    prolist += noscore[i]+", ";
 1277: 		    i++;
 1278: 		}
 1279: 		prolist += "and "+noscore[i];
 1280: 	    }
 1281: 	    var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
 1282: 	    if (resp == false) {
 1283: 		return false;
 1284: 	    }
 1285: 	}
 1286: 
 1287: 	formname.submit();
 1288:     }
 1289: </script>
 1290: SUBJAVASCRIPT
 1291: }
 1292: 
 1293: #--- javascript for essay type problem --
 1294: sub sub_page_kw_js {
 1295:     my $request = shift;
 1296:     my $iconpath = $request->dir_config('lonIconsURL');
 1297:     &commonJSfunctions($request);
 1298: 
 1299:     my $inner_js_msg_central=<<INNERJS;
 1300:     <script text="text/javascript">
 1301:     function checkInput() {
 1302:       opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
 1303:       var nmsg   = opener.document.SCORE.savemsgN.value;
 1304:       var usrctr = document.msgcenter.usrctr.value;
 1305:       var newval = opener.document.SCORE["newmsg"+usrctr];
 1306:       newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
 1307: 
 1308:       var msgchk = "";
 1309:       if (document.msgcenter.subchk.checked) {
 1310:          msgchk = "msgsub,";
 1311:       }
 1312:       var includemsg = 0;
 1313:       for (var i=1; i<=nmsg; i++) {
 1314:           var opnmsg = opener.document.SCORE["savemsg"+i];
 1315:           var frmmsg = document.msgcenter["msg"+i];
 1316:           opnmsg.value = opener.checkEntities(frmmsg.value);
 1317:           var showflg = opener.document.SCORE["shownOnce"+i];
 1318:           showflg.value = "1";
 1319:           var chkbox = document.msgcenter["msgn"+i];
 1320:           if (chkbox.checked) {
 1321:              msgchk += "savemsg"+i+",";
 1322:              includemsg = 1;
 1323:           }
 1324:       }
 1325:       if (document.msgcenter.newmsgchk.checked) {
 1326:          msgchk += "newmsg"+usrctr;
 1327:          includemsg = 1;
 1328:       }
 1329:       imgformname = opener.document.SCORE["mailicon"+usrctr];
 1330:       imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
 1331:       var includemsg = opener.document.SCORE["includemsg"+usrctr];
 1332:       includemsg.value = msgchk;
 1333: 
 1334:       self.close()
 1335: 
 1336:     }
 1337:     </script>
 1338: INNERJS
 1339: 
 1340:     my $inner_js_highlight_central=<<INNERJS;
 1341:  <script type="text/javascript">
 1342:     function updateChoice(flag) {
 1343:       opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
 1344:       opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
 1345:       opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
 1346:       opener.document.SCORE.refresh.value = "on";
 1347:       if (opener.document.SCORE.keywords.value!=""){
 1348:          opener.document.SCORE.submit();
 1349:       }
 1350:       self.close()
 1351:     }
 1352: </script>
 1353: INNERJS
 1354: 
 1355:     my $start_page_msg_central = 
 1356:         &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
 1357: 				       {'js_ready'  => 1,
 1358: 					'only_body' => 1,
 1359: 					'bgcolor'   =>'#FFFFFF',});
 1360:     my $end_page_msg_central = 
 1361: 	&Apache::loncommon::end_page({'js_ready' => 1});
 1362: 
 1363: 
 1364:     my $start_page_highlight_central = 
 1365:         &Apache::loncommon::start_page('Highlight Central',
 1366: 				       $inner_js_highlight_central,
 1367: 				       {'js_ready'  => 1,
 1368: 					'only_body' => 1,
 1369: 					'bgcolor'   =>'#FFFFFF',});
 1370:     my $end_page_highlight_central = 
 1371: 	&Apache::loncommon::end_page({'js_ready' => 1});
 1372: 
 1373:     my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
 1374:     $docopen=~s/^document\.//;
 1375:     $request->print(<<SUBJAVASCRIPT);
 1376: <script type="text/javascript" language="javascript">
 1377: 
 1378: //===================== Show list of keywords ====================
 1379:   function keywords(formname) {
 1380:     var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
 1381:     if (nret==null) return;
 1382:     formname.keywords.value = nret;
 1383: 
 1384:     if (formname.keywords.value != "") {
 1385: 	formname.refresh.value = "on";
 1386: 	formname.submit();
 1387:     }
 1388:     return;
 1389:   }
 1390: 
 1391: //===================== Script to view submitted by ==================
 1392:   function viewSubmitter(submitter) {
 1393:     document.SCORE.refresh.value = "on";
 1394:     document.SCORE.NCT.value = "1";
 1395:     document.SCORE.unamedom0.value = submitter;
 1396:     document.SCORE.submit();
 1397:     return;
 1398:   }
 1399: 
 1400: //===================== Script to add keyword(s) ==================
 1401:   function getSel() {
 1402:     if (document.getSelection) txt = document.getSelection();
 1403:     else if (document.selection) txt = document.selection.createRange().text;
 1404:     else return;
 1405:     var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
 1406:     if (cleantxt=="") {
 1407: 	alert("Please select a word or group of words from document and then click this link.");
 1408: 	return;
 1409:     }
 1410:     var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
 1411:     if (nret==null) return;
 1412:     document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
 1413:     if (document.SCORE.keywords.value != "") {
 1414: 	document.SCORE.refresh.value = "on";
 1415: 	document.SCORE.submit();
 1416:     }
 1417:     return;
 1418:   }
 1419: 
 1420: //====================== Script for composing message ==============
 1421:    // preload images
 1422:    img1 = new Image();
 1423:    img1.src = "$iconpath/mailbkgrd.gif";
 1424:    img2 = new Image();
 1425:    img2.src = "$iconpath/mailto.gif";
 1426: 
 1427:   function msgCenter(msgform,usrctr,fullname) {
 1428:     var Nmsg  = msgform.savemsgN.value;
 1429:     savedMsgHeader(Nmsg,usrctr,fullname);
 1430:     var subject = msgform.msgsub.value;
 1431:     var msgchk = document.SCORE["includemsg"+usrctr].value;
 1432:     re = /msgsub/;
 1433:     var shwsel = "";
 1434:     if (re.test(msgchk)) { shwsel = "checked" }
 1435:     subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
 1436:     displaySubject(checkEntities(subject),shwsel);
 1437:     for (var i=1; i<=Nmsg; i++) {
 1438: 	var testmsg = "savemsg"+i+",";
 1439: 	re = new RegExp(testmsg,"g");
 1440: 	shwsel = "";
 1441: 	if (re.test(msgchk)) { shwsel = "checked" }
 1442: 	var message = document.SCORE["savemsg"+i].value;
 1443: 	message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
 1444: 	displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
 1445: 	                                   //any &lt; is already converted to <, etc. However, only once!!
 1446:     }
 1447:     newmsg = document.SCORE["newmsg"+usrctr].value;
 1448:     shwsel = "";
 1449:     re = /newmsg/;
 1450:     if (re.test(msgchk)) { shwsel = "checked" }
 1451:     newMsg(newmsg,shwsel);
 1452:     msgTail(); 
 1453:     return;
 1454:   }
 1455: 
 1456:   function checkEntities(strx) {
 1457:     if (strx.length == 0) return strx;
 1458:     var orgStr = ["&", "<", ">", '"']; 
 1459:     var newStr = ["&amp;", "&lt;", "&gt;", "&quot;"];
 1460:     var counter = 0;
 1461:     while (counter < 4) {
 1462: 	strx = strReplace(strx,orgStr[counter],newStr[counter]);
 1463: 	counter++;
 1464:     }
 1465:     return strx;
 1466:   }
 1467: 
 1468:   function strReplace(strx, orgStr, newStr) {
 1469:     return strx.split(orgStr).join(newStr);
 1470:   }
 1471: 
 1472:   function savedMsgHeader(Nmsg,usrctr,fullname) {
 1473:     var height = 70*Nmsg+250;
 1474:     var scrollbar = "no";
 1475:     if (height > 600) {
 1476: 	height = 600;
 1477: 	scrollbar = "yes";
 1478:     }
 1479:     var xpos = (screen.width-600)/2;
 1480:     xpos = (xpos < 0) ? '0' : xpos;
 1481:     var ypos = (screen.height-height)/2-30;
 1482:     ypos = (ypos < 0) ? '0' : ypos;
 1483: 
 1484:     pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
 1485:     pWin.focus();
 1486:     pDoc = pWin.document;
 1487:     pDoc.$docopen;
 1488:     pDoc.write('$start_page_msg_central');
 1489: 
 1490:     pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
 1491:     pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
 1492:     pDoc.write("<h3><span class=\\"LC_info\\">&nbsp;Compose Message for \"+fullname+\"<\\/span><\\/h3><br /><br />");
 1493: 
 1494:     pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
 1495:     pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
 1496:     pDoc.write("<td><b>Type<\\/b><\\/td><td><b>Include<\\/b><\\/td><td><b>Message<\\/td><\\/tr>");
 1497: }
 1498:     function displaySubject(msg,shwsel) {
 1499:     pDoc = pWin.document;
 1500:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
 1501:     pDoc.write("<td>Subject<\\/td>");
 1502:     pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
 1503:     pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"><\\/td><\\/tr>");
 1504: }
 1505: 
 1506:   function displaySavedMsg(ctr,msg,shwsel) {
 1507:     pDoc = pWin.document;
 1508:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
 1509:     pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
 1510:     pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
 1511:     pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
 1512: }
 1513: 
 1514:   function newMsg(newmsg,shwsel) {
 1515:     pDoc = pWin.document;
 1516:     pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
 1517:     pDoc.write("<td align=\\"center\\">New<\\/td>");
 1518:     pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
 1519:     pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
 1520: }
 1521: 
 1522:   function msgTail() {
 1523:     pDoc = pWin.document;
 1524:     pDoc.write("<\\/table>");
 1525:     pDoc.write("<\\/td><\\/tr><\\/table>&nbsp;");
 1526:     pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\">&nbsp;&nbsp;");
 1527:     pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
 1528:     pDoc.write("<\\/form>");
 1529:     pDoc.write('$end_page_msg_central');
 1530:     pDoc.close();
 1531: }
 1532: 
 1533: //====================== Script for keyword highlight options ==============
 1534:   function kwhighlight() {
 1535:     var kwclr    = document.SCORE.kwclr.value;
 1536:     var kwsize   = document.SCORE.kwsize.value;
 1537:     var kwstyle  = document.SCORE.kwstyle.value;
 1538:     var redsel = "";
 1539:     var grnsel = "";
 1540:     var blusel = "";
 1541:     if (kwclr=="red")   {var redsel="checked"};
 1542:     if (kwclr=="green") {var grnsel="checked"};
 1543:     if (kwclr=="blue")  {var blusel="checked"};
 1544:     var sznsel = "";
 1545:     var sz1sel = "";
 1546:     var sz2sel = "";
 1547:     if (kwsize=="0")  {var sznsel="checked"};
 1548:     if (kwsize=="+1") {var sz1sel="checked"};
 1549:     if (kwsize=="+2") {var sz2sel="checked"};
 1550:     var synsel = "";
 1551:     var syisel = "";
 1552:     var sybsel = "";
 1553:     if (kwstyle=="")    {var synsel="checked"};
 1554:     if (kwstyle=="<i>") {var syisel="checked"};
 1555:     if (kwstyle=="<b>") {var sybsel="checked"};
 1556:     highlightCentral();
 1557:     highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
 1558:     highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
 1559:     highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
 1560:     highlightend();
 1561:     return;
 1562:   }
 1563: 
 1564:   function highlightCentral() {
 1565: //    if (window.hwdWin) window.hwdWin.close();
 1566:     var xpos = (screen.width-400)/2;
 1567:     xpos = (xpos < 0) ? '0' : xpos;
 1568:     var ypos = (screen.height-330)/2-30;
 1569:     ypos = (ypos < 0) ? '0' : ypos;
 1570: 
 1571:     hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
 1572:     hwdWin.focus();
 1573:     var hDoc = hwdWin.document;
 1574:     hDoc.$docopen;
 1575:     hDoc.write('$start_page_highlight_central');
 1576:     hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
 1577:     hDoc.write("<h3><span class=\\"LC_info\\">&nbsp;Keyword Highlight Options<\\/span><\\/h3><br /><br />");
 1578: 
 1579:     hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
 1580:     hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
 1581:     hDoc.write("<td><b>Text Color<\\/b><\\/td><td><b>Font Size<\\/b><\\/td><td><b>Font Style<\\/td><\\/tr>");
 1582:   }
 1583: 
 1584:   function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) { 
 1585:     var hDoc = hwdWin.document;
 1586:     hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
 1587:     hDoc.write("<td align=\\"left\\">");
 1588:     hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+">&nbsp;"+clrtxt+"<\\/td>");
 1589:     hDoc.write("<td align=\\"left\\">");
 1590:     hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+">&nbsp;"+sztxt+"<\\/td>");
 1591:     hDoc.write("<td align=\\"left\\">");
 1592:     hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+">&nbsp;"+sytxt+"<\\/td>");
 1593:     hDoc.write("<\\/tr>");
 1594:   }
 1595: 
 1596:   function highlightend() { 
 1597:     var hDoc = hwdWin.document;
 1598:     hDoc.write("<\\/table>");
 1599:     hDoc.write("<\\/td><\\/tr><\\/table>&nbsp;");
 1600:     hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\">&nbsp;&nbsp;");
 1601:     hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
 1602:     hDoc.write("<\\/form>");
 1603:     hDoc.write('$end_page_highlight_central');
 1604:     hDoc.close();
 1605:   }
 1606: 
 1607: </script>
 1608: SUBJAVASCRIPT
 1609: }
 1610: 
 1611: sub get_increment {
 1612:     my $increment = $env{'form.increment'};
 1613:     if ($increment != 1 && $increment != .5 && $increment != .25 &&
 1614:         $increment != .1) {
 1615:         $increment = 1;
 1616:     }
 1617:     return $increment;
 1618: }
 1619: 
 1620: #--- displays the grading box, used in essay type problem and grading by page/sequence
 1621: sub gradeBox {
 1622:     my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
 1623:     my $checkIcon = '<img alt="'.&mt('Check Mark').
 1624: 	'" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
 1625:     my $wgt    = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
 1626:     my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)') 
 1627:                            : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
 1628:     $wgt       = ($wgt > 0 ? $wgt : '1');
 1629:     my $score  = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
 1630: 		  '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
 1631:     my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
 1632:     my $display_part= &get_display_part($partid,$symb);
 1633:     my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
 1634: 				       [$partid]);
 1635:     my $aggtries = $$record{'resource.'.$partid.'.tries'};
 1636:     if ($last_resets{$partid}) {
 1637:         $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
 1638:     }
 1639:     $result.='<table border="0"><tr>';
 1640:     my $ctr = 0;
 1641:     my $thisweight = 0;
 1642:     my $increment = &get_increment();
 1643: 
 1644:     my $radio.='<table border="0"><tr>'."\n";  # display radio buttons in a nice table 10 across
 1645:     while ($thisweight<=$wgt) {
 1646: 	$radio.= '<td><span class="LC_nobreak"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
 1647: 	    'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
 1648: 	    $thisweight.')" value="'.$thisweight.'" '.
 1649: 	    ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
 1650: 	$radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
 1651:         $thisweight += $increment;
 1652: 	$ctr++;
 1653:     }
 1654:     $radio.='</tr></table>';
 1655: 
 1656:     my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
 1657: 	($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
 1658: 	'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
 1659: 	$wgt.')" /></td>'."\n";
 1660:     $line.='<td>/'.$wgt.' '.$wgtmsg.
 1661: 	($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? '&nbsp;'.$checkIcon : '').
 1662: 	' </td><td>'."\n";
 1663:     $line.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
 1664: 	'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
 1665:     if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
 1666: 	$line.='<option></option>'.
 1667: 	    '<option value="excused" selected="selected">'.&mt('excused').'</option>';
 1668:     } else {
 1669: 	$line.='<option selected="selected"></option>'.
 1670: 	    '<option value="excused" >'.&mt('excused').'</option>';
 1671:     }
 1672:     $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
 1673: 
 1674: 
 1675:     $result .= 
 1676: 	&mt('<td><b>Part:</b></td><td>[_1]</td><td><b>Points:</b></td><td>[_2]</td><td>or</td><td>[_3]</td>',$display_part,$radio,$line);
 1677: 
 1678:     
 1679:     $result.='</tr></table>'."\n";
 1680:     $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
 1681: 	'<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
 1682: 	'<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
 1683: 	$$record{'resource.'.$partid.'.solved'}.'" />'."\n".
 1684:         '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
 1685:         $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
 1686:         '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
 1687:         $aggtries.'" />'."\n";
 1688:     $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record);
 1689:     return $result;
 1690: }
 1691: 
 1692: sub handback_box {
 1693:     my ($symb,$uname,$udom,$counter,$partid,$record) = @_;
 1694:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
 1695:     my (@respids);
 1696:      my @part_response_id = &flatten_responseType($responseType);
 1697:     foreach my $part_response_id (@part_response_id) {
 1698:     	my ($part,$resp) = @{ $part_response_id };
 1699:         if ($part eq $partid) {
 1700:             push(@respids,$resp);
 1701:         }
 1702:     }
 1703:     my $result;
 1704:     foreach my $respid (@respids) {
 1705: 	my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
 1706: 	my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
 1707: 	next if (!@$files);
 1708: 	my $file_counter = 1;
 1709: 	foreach my $file (@$files) {
 1710: 	    if ($file =~ /\/portfolio\//) {
 1711:     	        my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
 1712:     	        my ($name,$version,$ext) = &file_name_version_ext($file_disp);
 1713:     	        $file_disp = "$name.$ext";
 1714:     	        $file = $file_path.$file_disp;
 1715:     	        $result.=&mt('Return commented version of [_1] to student.',
 1716:     			 '<span class="LC_filename">'.$file_disp.'</span>');
 1717:     	        $result.='<input type="file"   name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
 1718:     	        $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />';
 1719:     	        $result.='('.&mt('File will be uploaded when you click on Save &amp; Next below.').')<br />';
 1720:     	        $file_counter++;
 1721: 	    }
 1722: 	}
 1723:     }
 1724:     return $result;    
 1725: }
 1726: 
 1727: sub show_problem {
 1728:     my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
 1729:     my $rendered;
 1730:     my %form = ((ref($form) eq 'HASH')? %{$form} : ());
 1731:     &Apache::lonxml::remember_problem_counter();
 1732:     if ($mode eq 'both' or $mode eq 'text') {
 1733: 	$rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
 1734: 						       $env{'request.course.id'},
 1735: 						       undef,\%form);
 1736:     }
 1737:     if ($removeform) {
 1738: 	$rendered=~s|<form(.*?)>||g;
 1739: 	$rendered=~s|</form>||g;
 1740: 	$rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
 1741:     }
 1742:     my $companswer;
 1743:     if ($mode eq 'both' or $mode eq 'answer') {
 1744: 	&Apache::lonxml::restore_problem_counter();
 1745: 	$companswer=
 1746: 	    &Apache::loncommon::get_student_answers($symb,$uname,$udom,
 1747: 						    $env{'request.course.id'},
 1748: 						    %form);
 1749:     }
 1750:     if ($removeform) {
 1751: 	$companswer=~s|<form(.*?)>||g;
 1752: 	$companswer=~s|</form>||g;
 1753: 	$companswer=~s|name="submit"|name="would_have_been_submit"|g;
 1754:     }
 1755:     $rendered=
 1756: 	'<div class="LC_grade_show_problem_header">'.
 1757: 	&mt('View of the problem').
 1758: 	'</div><div class="LC_grade_show_problem_problem">'.
 1759: 	$rendered.
 1760: 	'</div>';
 1761:     $companswer=
 1762: 	'<div class="LC_grade_show_problem_header">'.
 1763: 	&mt('Correct answer').
 1764: 	'</div><div class="LC_grade_show_problem_problem">'.
 1765: 	$companswer.
 1766: 	'</div>';
 1767:     my $result;
 1768:     if ($mode eq 'both') {
 1769: 	$result=$rendered.$companswer;
 1770:     } elsif ($mode eq 'text') {
 1771: 	$result=$rendered;
 1772:     } elsif ($mode eq 'answer') {
 1773: 	$result=$companswer;
 1774:     }
 1775:     $result='<div class="LC_grade_show_problem">'.$result.'</div>';
 1776:     return $result;
 1777: }
 1778: 
 1779: sub files_exist {
 1780:     my ($r, $symb) = @_;
 1781:     my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
 1782: 
 1783:     foreach my $student (@students) {
 1784:         my ($uname,$udom,$fullname) = split(/:/,$student);
 1785:         my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
 1786: 					      $udom,$uname);
 1787:         my ($string,$timestamp)= &get_last_submission(\%record);
 1788:         foreach my $submission (@$string) {
 1789:             my ($partid,$respid) =
 1790: 		($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
 1791:             my $files=&get_submitted_files($udom,$uname,$partid,$respid,
 1792: 					   \%record);
 1793:             return 1 if (@$files);
 1794:         }
 1795:     }
 1796:     return 0;
 1797: }
 1798: 
 1799: sub download_all_link {
 1800:     my ($r,$symb) = @_;
 1801:     my $all_students = 
 1802: 	join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
 1803: 
 1804:     my $parts =
 1805: 	join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
 1806: 
 1807:     my $identifier = &Apache::loncommon::get_cgi_id();
 1808:     &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
 1809:                              'cgi.'.$identifier.'.symb' => $symb,
 1810:                              'cgi.'.$identifier.'.parts' => $parts,});
 1811:     $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
 1812: 	      &mt('Download All Submitted Documents').'</a>');
 1813:     return
 1814: }
 1815: 
 1816: sub build_section_inputs {
 1817:     my $section_inputs;
 1818:     if ($env{'form.section'} eq '') {
 1819:         $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
 1820:     } else {
 1821:         my @sections = &Apache::loncommon::get_env_multiple('form.section');
 1822:         foreach my $section (@sections) {
 1823:             $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
 1824:         }
 1825:     }
 1826:     return $section_inputs;
 1827: }
 1828: 
 1829: # --------------------------- show submissions of a student, option to grade 
 1830: sub submission {
 1831:     my ($request,$counter,$total) = @_;
 1832:     my ($uname,$udom)     = ($env{'form.student'},$env{'form.userdom'});
 1833:     $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
 1834:     my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
 1835:     $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
 1836:     my $symb = &get_symb($request); 
 1837:     if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
 1838: 
 1839:     if (!&canview($usec)) {
 1840: 	$request->print('<span class="LC_warning">Unable to view requested student.('.
 1841: 			$uname.':'.$udom.' in section '.$usec.' in course id '.
 1842: 			$env{'request.course.id'}.')</span>');
 1843: 	$request->print(&show_grading_menu_form($symb));
 1844: 	return;
 1845:     }
 1846: 
 1847:     if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
 1848:     if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
 1849:     if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
 1850:     my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
 1851:     my $checkIcon = '<img alt="'.&mt('Check Mark').
 1852: 	'" src="'.$request->dir_config('lonIconsURL').
 1853: 	'/check.gif" height="16" border="0" />';
 1854: 
 1855:     my %old_essays;
 1856:     # header info
 1857:     if ($counter == 0) {
 1858: 	&sub_page_js($request);
 1859: 	&sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
 1860: 	$env{'form.probTitle'} = $env{'form.probTitle'} eq '' ? 
 1861: 	    &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
 1862: 	if ($env{'form.handgrade'} eq 'yes' && &files_exist($request, $symb)) {
 1863: 	    &download_all_link($request, $symb);
 1864: 	}
 1865: 	$request->print('<h3>&nbsp;<span class="LC_info">'.&mt('Submission Record').'</span></h3>'."\n".
 1866: 			'<h4>&nbsp;'.&mt('<b>Resource: </b> [_1]',$env{'form.probTitle'}).'</h4>'."\n");
 1867: 
 1868: 	# option to display problem, only once else it cause problems 
 1869:         # with the form later since the problem has a form.
 1870: 	if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
 1871: 	    my $mode;
 1872: 	    if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
 1873: 		$mode='both';
 1874: 	    } elsif ($env{'form.vProb'} eq 'yes') {
 1875: 		$mode='text';
 1876: 	    } elsif ($env{'form.vAns'} eq 'yes') {
 1877: 		$mode='answer';
 1878: 	    }
 1879: 	    &Apache::lonxml::clear_problem_counter();
 1880: 	    $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
 1881: 	}
 1882: 
 1883: 	# kwclr is the only variable that is guaranteed to be non blank 
 1884:         # if this subroutine has been called once.
 1885: 	my %keyhash = ();
 1886: 	if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
 1887: 	    %keyhash = &Apache::lonnet::dump('nohist_handgrade',
 1888: 					     $env{'course.'.$env{'request.course.id'}.'.domain'},
 1889: 					     $env{'course.'.$env{'request.course.id'}.'.num'});
 1890: 
 1891: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
 1892: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
 1893: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
 1894: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
 1895: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
 1896: 	    $env{'form.msgsub'}   = $keyhash{$symb.'_subject'} ne '' ? 
 1897: 		$keyhash{$symb.'_subject'} : $env{'form.probTitle'};
 1898: 	    $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
 1899: 	}
 1900: 	my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
 1901: 	my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
 1902: 	$request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
 1903: 			'<input type="hidden" name="command"    value="handgrade" />'."\n".
 1904: 			'<input type="hidden" name="saveState"  value="'.$env{'form.saveState'}.'" />'."\n".
 1905: 			'<input type="hidden" name="Status"     value="'.$stu_status.'" />'."\n".
 1906: 			'<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
 1907: 			'<input type="hidden" name="probTitle"  value="'.$env{'form.probTitle'}.'" />'."\n".
 1908: 			'<input type="hidden" name="refresh"    value="off" />'."\n".
 1909: 			'<input type="hidden" name="studentNo"  value="" />'."\n".
 1910: 			'<input type="hidden" name="gradeOpt"   value="" />'."\n".
 1911: 			'<input type="hidden" name="symb"       value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 1912: 			'<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
 1913: 			'<input type="hidden" name="vProb"      value="'.$env{'form.vProb'}.'" />'."\n".
 1914: 			'<input type="hidden" name="vAns"       value="'.$env{'form.vAns'}.'" />'."\n".
 1915: 			'<input type="hidden" name="lastSub"    value="'.$env{'form.lastSub'}.'" />'."\n".
 1916: 			&build_section_inputs().
 1917: 			'<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
 1918: 			'<input type="hidden" name="handgrade"  value="'.$env{'form.handgrade'}.'" />'."\n".
 1919: 			'<input type="hidden" name="NCT"'.
 1920: 			' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
 1921: 	if ($env{'form.handgrade'} eq 'yes') {
 1922: 	    $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
 1923: 			    '<input type="hidden" name="kwclr"    value="'.$env{'form.kwclr'}.'" />'."\n".
 1924: 			    '<input type="hidden" name="kwsize"   value="'.$env{'form.kwsize'}.'" />'."\n".
 1925: 			    '<input type="hidden" name="kwstyle"  value="'.$env{'form.kwstyle'}.'" />'."\n".
 1926: 			    '<input type="hidden" name="msgsub"   value="'.$env{'form.msgsub'}.'" />'."\n".
 1927: 			    '<input type="hidden" name="shownSub" value="0" />'."\n".
 1928: 			    '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
 1929: 	    foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
 1930: 		$request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
 1931: 	    }
 1932: 	}
 1933: 	
 1934: 	my ($cts,$prnmsg) = (1,'');
 1935: 	while ($cts <= $env{'form.savemsgN'}) {
 1936: 	    $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
 1937: 		(!exists($keyhash{$symb.'_savemsg'.$cts}) ? 
 1938: 		 &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
 1939: 		 &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
 1940: 		'" />'."\n".
 1941: 		'<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
 1942: 	    $cts++;
 1943: 	}
 1944: 	$request->print($prnmsg);
 1945: 
 1946: 	if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
 1947: #
 1948: # Print out the keyword options line
 1949: #
 1950: 	    $request->print(<<KEYWORDS);
 1951: &nbsp;<b>Keyword Options:</b>&nbsp;
 1952: <a href="javascript:keywords(document.SCORE);" target="_self">List</a>&nbsp; &nbsp;
 1953: <a href="#" onMouseDown="javascript:getSel(); return false"
 1954:  CLASS="page">Paste Selection to List</a>&nbsp; &nbsp;
 1955: <a href="javascript:kwhighlight();" target="_self">Highlight Attribute</a><br /><br />
 1956: KEYWORDS
 1957: #
 1958: # Load the other essays for similarity check
 1959: #
 1960:             my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
 1961: 	    my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
 1962: 	    $apath=&escape($apath);
 1963: 	    $apath=~s/\W/\_/gs;
 1964: 	    %old_essays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
 1965:         }
 1966:     }
 1967: 
 1968: # This is where output for one specific student would start
 1969:     my $add_class = ($counter%2) ? 'LC_grade_show_user_odd_row' : '';
 1970:     $request->print("\n\n".
 1971:                     '<div class="LC_grade_show_user '.$add_class.'">'.
 1972: 		    '<div class="LC_grade_user_name">'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</div>'.
 1973: 		    '<div class="LC_grade_show_user_body">'."\n");
 1974: 
 1975:     if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
 1976: 	my $mode;
 1977: 	if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
 1978: 	    $mode='both';
 1979: 	} elsif ($env{'form.vProb'} eq 'all' ) {
 1980: 	    $mode='text';
 1981: 	} elsif ($env{'form.vAns'} eq 'all') {
 1982: 	    $mode='answer';
 1983: 	}
 1984: 	&Apache::lonxml::clear_problem_counter();
 1985: 	$request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
 1986:     }
 1987: 
 1988:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
 1989:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
 1990: 
 1991:     # Display student info
 1992:     $request->print(($counter == 0 ? '' : '<br />'));
 1993:     my $result='<div class="LC_grade_submissions">';
 1994:     
 1995:     $result.='<div class="LC_grade_submissions_header">';
 1996:     $result.= &mt('Submissions');
 1997:     $result.='<input type="hidden" name="name'.$counter.
 1998: 	'" value="'.$env{'form.fullname'}.'" />'."\n";
 1999:     if ($env{'form.handgrade'} eq 'no') {
 2000: 	$result.='<span class="LC_grade_check_note">'.
 2001: 	    &mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)."</span>\n";
 2002: 
 2003:     }
 2004: 
 2005: 
 2006: 
 2007:     # If any part of the problem is an essay-response (handgraded), then check for collaborators
 2008:     my $fullname;
 2009:     my $col_fullnames = [];
 2010:     if ($env{'form.handgrade'} eq 'yes') {
 2011: 	(my $sub_result,$fullname,$col_fullnames)=
 2012: 	    &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
 2013: 				 $counter);
 2014: 	$result.=$sub_result;
 2015:     }
 2016:     $request->print($result."\n");
 2017:     $request->print('</div>'."\n");
 2018:     # print student answer/submission
 2019:     # Options are (1) Handgaded submission only
 2020:     #             (2) Last submission, includes submission that is not handgraded 
 2021:     #                  (for multi-response type part)
 2022:     #             (3) Last submission plus the parts info
 2023:     #             (4) The whole record for this student
 2024:     if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
 2025: 	my ($string,$timestamp)= &get_last_submission(\%record);
 2026: 	
 2027: 	my $lastsubonly;
 2028: 
 2029: 	if ($$timestamp eq '') {
 2030: 	    $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>'; 
 2031: 	} else {
 2032: 	    $lastsubonly = '<div class="LC_grade_submissions_body"> <b>Date Submitted:</b> '.$$timestamp."\n";
 2033: 
 2034: 	    my %seenparts;
 2035: 	    my @part_response_id = &flatten_responseType($responseType);
 2036: 	    foreach my $part (@part_response_id) {
 2037: 		next if ($env{'form.lastSub'} eq 'hdgrade' 
 2038: 			 && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
 2039: 
 2040: 		my ($partid,$respid) = @{ $part };
 2041: 		my $display_part=&get_display_part($partid,$symb);
 2042: 		if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
 2043: 		    if (exists($seenparts{$partid})) { next; }
 2044: 		    $seenparts{$partid}=1;
 2045: 		    my $submitby='<b>Part:</b> '.$display_part.
 2046: 			' <b>Collaborative submission by:</b> '.
 2047: 			'<a href="javascript:viewSubmitter(\''.
 2048: 			$env{"form.$uname:$udom:$partid:submitted_by"}.
 2049: 			'\');" target="_self">'.
 2050: 			$$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
 2051: 		    $request->print($submitby);
 2052: 		    next;
 2053: 		}
 2054: 		my $responsetype = $responseType->{$partid}->{$respid};
 2055: 		if (!exists($record{"resource.$partid.$respid.submission"})) {
 2056: 		    $lastsubonly.="\n".'<div class="LC_grade_submission_part"><b>Part:</b> '.
 2057: 			$display_part.' <span class="LC_internal_info">( ID '.$respid.
 2058: 			' )</span>&nbsp; &nbsp;'.
 2059: 			'<span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br /><br /></div>';
 2060: 		    next;
 2061: 		}
 2062: 		foreach my $submission (@$string) {
 2063: 		    my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
 2064: 		    if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
 2065: 		    my ($ressub,$subval) = split(/:/,$submission,2);
 2066: 		    # Similarity check
 2067: 		    my $similar='';
 2068: 		    if($env{'form.checkPlag'}){
 2069: 			my ($oname,$odom,$ocrsid,$oessay,$osim)=
 2070: 			    &most_similar($uname,$udom,$subval,\%old_essays);
 2071: 			if ($osim) {
 2072: 			    $osim=int($osim*100.0);
 2073: 			    my %old_course_desc = 
 2074: 				&Apache::lonnet::coursedescription($ocrsid,
 2075: 								   {'one_time' => 1});
 2076: 
 2077: 			    $similar="<hr /><h3><span class=\"LC_warning\">".
 2078: 				&mt('Essay is [_1]% similar to an essay by [_2] ([_3]:[_4]) in course [_5] (course id [_6]:[_7])',
 2079: 				    $osim,
 2080: 				    &Apache::loncommon::plainname($oname,$odom),
 2081: 				    $oname,$odom,
 2082: 				    $old_course_desc{'description'},
 2083: 				    $old_course_desc{'num'},
 2084: 				    $old_course_desc{'domain'}).
 2085: 				'</span></h3><blockquote><i>'.
 2086: 				&keywords_highlight($oessay).
 2087: 				'</i></blockquote><hr />';
 2088: 			}
 2089: 		    }
 2090: 		    my $order=&get_order($partid,$respid,$symb,$uname,$udom);
 2091: 		    if ($env{'form.lastSub'} eq 'lastonly' || 
 2092: 			($env{'form.lastSub'} eq 'hdgrade' && 
 2093: 			 $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
 2094: 			my $display_part=&get_display_part($partid,$symb);
 2095: 			$lastsubonly.='<div class="LC_grade_submission_part"><b>Part:</b> '.
 2096: 			    $display_part.' <span class="LC_internal_info">( ID '.$respid.
 2097: 			    ' )</span>&nbsp; &nbsp;';
 2098: 			my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
 2099: 			if (@$files) {
 2100: 			    $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain virusses').'</span><br />';
 2101: 			    my $file_counter = 0;
 2102: 			    foreach my $file (@$files) {
 2103: 			        $file_counter++;
 2104: 				&Apache::lonnet::allowuploaded('/adm/grades',$file);
 2105: 				$lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border=0"> '.$file.'</a>';
 2106: 			    }
 2107: 			    $lastsubonly.='<br />';
 2108: 			}
 2109: 			$lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
 2110: 			    &cleanRecord($subval,$responsetype,$symb,$partid,
 2111: 					 $respid,\%record,$order);
 2112: 			if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
 2113: 			$lastsubonly.='</div>';
 2114: 		    }
 2115: 		}
 2116: 	    }
 2117: 	    $lastsubonly.='</div>'."\n";
 2118: 	}
 2119: 	$request->print($lastsubonly);
 2120:    } elsif ($env{'form.lastSub'} eq 'datesub') {
 2121: 	my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
 2122: 	$request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
 2123:     } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
 2124: 	$request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
 2125: 								 $env{'request.course.id'},
 2126: 								 $last,'.submission',
 2127: 								 'Apache::grades::keywords_highlight'));
 2128:     }
 2129: 
 2130:     $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
 2131: 	.$udom.'" />'."\n");
 2132:     # return if view submission with no grading option
 2133:     if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
 2134: 	my $toGrade.='<input type="button" value="Grade Student" '.
 2135: 	    'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
 2136: 	    .$counter.'\');" target="_self" /> &nbsp;'."\n" if (&canmodify($usec));
 2137: 	$toGrade.='</div>'."\n";
 2138: 	if (($env{'form.command'} eq 'submission') || 
 2139: 	    ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
 2140: 	    $toGrade.='</form>'.&show_grading_menu_form($symb); 
 2141: 	}
 2142: 	$request->print($toGrade);
 2143: 	return;
 2144:     } else {
 2145: 	$request->print('</div>'."\n");
 2146:     }
 2147: 
 2148:     # essay grading message center
 2149:     if ($env{'form.handgrade'} eq 'yes') {
 2150: 	my $result='<div class="LC_grade_message_center">';
 2151:     
 2152: 	$result.='<div class="LC_grade_message_center_header">'.
 2153: 	    &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
 2154: 	my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
 2155: 	my $msgfor = $givenn.' '.$lastname;
 2156: 	if (scalar(@$col_fullnames) > 0) {
 2157: 	    my $lastone = pop(@$col_fullnames);
 2158: 	    $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
 2159: 	}
 2160: 	$msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
 2161: 	$result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
 2162: 	    '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
 2163: 	$result.='&nbsp;<a href="javascript:msgCenter(document.SCORE,'.$counter.
 2164: 	    ',\''.$msgfor.'\');" target="_self">'.
 2165: 	    &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
 2166: 	    &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
 2167: 	    '<img src="'.$request->dir_config('lonIconsURL').
 2168: 	    '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
 2169: 	    '<br />&nbsp;('.
 2170: 	    &mt('Message will be sent when you click on Save &amp; Next below.').")\n";
 2171: 	$result.='</div></div>';
 2172: 	$request->print($result);
 2173:     }
 2174: 
 2175:     my %seen = ();
 2176:     my @partlist;
 2177:     my @gradePartRespid;
 2178:     my @part_response_id = &flatten_responseType($responseType);
 2179:     $request->print('<div class="LC_grade_assign">'.
 2180: 		    
 2181: 		    '<div class="LC_grade_assign_header">'.
 2182: 		    &mt('Assign Grades').'</div>'.
 2183: 		    '<div class="LC_grade_assign_body">');
 2184:     foreach my $part_response_id (@part_response_id) {
 2185:     	my ($partid,$respid) = @{ $part_response_id };
 2186: 	my $part_resp = join('_',@{ $part_response_id });
 2187: 	next if ($seen{$partid} > 0);
 2188: 	$seen{$partid}++;
 2189: 	next if ($$handgrade{$part_resp} ne 'yes' 
 2190: 		 && $env{'form.lastSub'} eq 'hdgrade');
 2191: 	push(@partlist,$partid);
 2192: 	push(@gradePartRespid,$partid.'.'.$respid);
 2193: 	$request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
 2194:     }
 2195:     $request->print('</div></div>');
 2196: 
 2197:     $request->print('<div class="LC_grade_info_links">');
 2198:     if ($perm{'vgr'}) {
 2199: 	$request->print(
 2200: 	    &Apache::loncommon::track_student_link(&mt('View recent activity'),
 2201: 						   $uname,$udom,'check'));
 2202:     }
 2203:     if ($perm{'opa'}) {
 2204: 	$request->print(
 2205: 	    &Apache::loncommon::pprmlink(&mt('Set/Change parameters'),
 2206: 					 $uname,$udom,$symb,'check'));
 2207:     }
 2208:     $request->print('</div>');
 2209: 
 2210:     $result='<input type="hidden" name="partlist'.$counter.
 2211: 	'" value="'.(join ":",@partlist).'" />'."\n";
 2212:     $result.='<input type="hidden" name="gradePartRespid'.
 2213: 	'" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
 2214:     my $ctr = 0;
 2215:     while ($ctr < scalar(@partlist)) {
 2216: 	$result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
 2217: 	    $partlist[$ctr].'" />'."\n";
 2218: 	$ctr++;
 2219:     }
 2220:     $request->print($result.''."\n");
 2221: 
 2222: # Done with printing info for one student
 2223: 
 2224:     $request->print('</div>');#LC_grade_show_user_body
 2225:     $request->print('</div>');#LC_grade_show_user
 2226: 
 2227: 
 2228:     # print end of form
 2229:     if ($counter == $total) {
 2230: 	my $endform='<table border="0"><tr><td>'."\n";
 2231: 	$endform.='<input type="button" value="'.&mt('Save &amp; Next').'" '.
 2232: 	    'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
 2233: 	    $total.','.scalar(@partlist).');" target="_self" /> &nbsp;'."\n";
 2234: 	my $ntstu ='<select name="NTSTU">'.
 2235: 	    '<option>1</option><option>2</option>'.
 2236: 	    '<option>3</option><option>5</option>'.
 2237: 	    '<option>7</option><option>10</option></select>'."\n";
 2238: 	my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
 2239: 	$ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
 2240: 	$endform.=&mt('[_1]student(s)',$ntstu);
 2241: 	$endform.='&nbsp;&nbsp;<input type="button" value="'.&mt('Previous').'" '.
 2242: 	    'onClick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> &nbsp;'."\n".
 2243: 	    '<input type="button" value="'.&mt('Next').'" '.
 2244: 	    'onClick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> &nbsp;';
 2245: 	$endform.=&mt('(Next and Previous (student) do not save the scores.)')."\n" ;
 2246:         $endform.="<input type='hidden' value='".&get_increment().
 2247:             "' name='increment' />";
 2248: 	$endform.='</td></tr></table></form>';
 2249: 	$endform.=&show_grading_menu_form($symb);
 2250: 	$request->print($endform);
 2251:     }
 2252:     return '';
 2253: }
 2254: 
 2255: sub check_collaborators {
 2256:     my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
 2257:     my ($result,@col_fullnames);
 2258:     my ($classlist,undef,$fullname) = &getclasslist('all','0');
 2259:     foreach my $part (keys(%$handgrade)) {
 2260: 	my $ncol = &Apache::lonnet::EXT('resource.'.$part.
 2261: 					'.maxcollaborators',
 2262: 					$symb,$udom,$uname);
 2263: 	next if ($ncol <= 0);
 2264: 	$part =~ s/\_/\./g;
 2265: 	next if ($record->{'resource.'.$part.'.collaborators'} eq '');
 2266: 	my (@good_collaborators, @bad_collaborators);
 2267: 	foreach my $possible_collaborator
 2268: 	    (split(/,?\s+/,$record->{'resource.'.$part.'.collaborators'})) { 
 2269: 	    $possible_collaborator =~ s/[\$\^\(\)]//g;
 2270: 	    next if ($possible_collaborator eq '');
 2271: 	    my ($co_name,$co_dom) = split(/\@|:/,$possible_collaborator);
 2272: 	    $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
 2273: 	    next if ($co_name eq $uname && $co_dom eq $udom);
 2274: 	    # Doing this grep allows 'fuzzy' specification
 2275: 	    my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i, 
 2276: 			       keys(%$classlist));
 2277: 	    if (! scalar(@matches)) {
 2278: 		push(@bad_collaborators, $possible_collaborator);
 2279: 	    } else {
 2280: 		push(@good_collaborators, @matches);
 2281: 	    }
 2282: 	}
 2283: 	if (scalar(@good_collaborators) != 0) {
 2284: 	    $result.='<br />'.&mt('Collaborators: ');
 2285: 	    foreach my $name (@good_collaborators) {
 2286: 		my ($lastname,$givenn) = split(/,/,$$fullname{$name});
 2287: 		push(@col_fullnames, $givenn.' '.$lastname);
 2288: 		$result.=$fullname->{$name}.'&nbsp; &nbsp; &nbsp;';
 2289: 	    }
 2290: 	    $result.='<br />'."\n";
 2291: 	    my ($part)=split(/\./,$part);
 2292: 	    $result.='<input type="hidden" name="collaborator'.$counter.
 2293: 		'" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
 2294: 		"\n";
 2295: 	}
 2296: 	if (scalar(@bad_collaborators) > 0) {
 2297: 	    $result.='<div class="LC_warning">';
 2298: 	    $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
 2299: 	    $result .= '</div>';
 2300: 	}         
 2301: 	if (scalar(@bad_collaborators > $ncol)) {
 2302: 	    $result .= '<div class="LC_warning">';
 2303: 	    $result .= &mt('This student has submitted too many '.
 2304: 		'collaborators.  Maximum is [_1].',$ncol);
 2305: 	    $result .= '</div>';
 2306: 	}
 2307:     }
 2308:     return ($result,$fullname,\@col_fullnames);
 2309: }
 2310: 
 2311: #--- Retrieve the last submission for all the parts
 2312: sub get_last_submission {
 2313:     my ($returnhash)=@_;
 2314:     my (@string,$timestamp);
 2315:     if ($$returnhash{'version'}) {
 2316: 	my %lasthash=();
 2317: 	my ($version);
 2318: 	for ($version=1;$version<=$$returnhash{'version'};$version++) {
 2319: 	    foreach my $key (sort(split(/\:/,
 2320: 					$$returnhash{$version.':keys'}))) {
 2321: 		$lasthash{$key}=$$returnhash{$version.':'.$key};
 2322: 		$timestamp = 
 2323: 		    scalar(localtime($$returnhash{$version.':timestamp'}));
 2324: 	    }
 2325: 	}
 2326: 	foreach my $key (keys(%lasthash)) {
 2327: 	    next if ($key !~ /\.submission$/);
 2328: 
 2329: 	    my ($partid,$foo) = split(/submission$/,$key);
 2330: 	    my $draft  = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
 2331: 		'<span class="LC_warning">Draft Copy</span> ' : '';
 2332: 	    push(@string, join(':', $key, $draft.$lasthash{$key}));
 2333: 	}
 2334:     }
 2335:     if (!@string) {
 2336: 	$string[0] =
 2337: 	    '<span class="LC_warning">Nothing submitted - no attempts.</span>';
 2338:     }
 2339:     return (\@string,\$timestamp);
 2340: }
 2341: 
 2342: #--- High light keywords, with style choosen by user.
 2343: sub keywords_highlight {
 2344:     my $string    = shift;
 2345:     my $size      = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
 2346:     my $styleon   = $env{'form.kwstyle'} eq ''  ? '' : $env{'form.kwstyle'};
 2347:     (my $styleoff = $styleon) =~ s/\</\<\//;
 2348:     my @keylist   = split(/[,\s+]/,$env{'form.keywords'});
 2349:     foreach my $keyword (@keylist) {
 2350: 	$string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
 2351:     }
 2352:     return $string;
 2353: }
 2354: 
 2355: #--- Called from submission routine
 2356: sub processHandGrade {
 2357:     my ($request) = shift;
 2358:     my $symb   = &get_symb($request);
 2359:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 2360:     my $button = $env{'form.gradeOpt'};
 2361:     my $ngrade = $env{'form.NCT'};
 2362:     my $ntstu  = $env{'form.NTSTU'};
 2363:     my $cdom   = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2364:     my $cnum   = $env{'course.'.$env{'request.course.id'}.'.num'};
 2365: 
 2366:     if ($button eq 'Save & Next') {
 2367: 	my $ctr = 0;
 2368: 	while ($ctr < $ngrade) {
 2369: 	    my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
 2370: 	    my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
 2371: 	    if ($errorflag eq 'no_score') {
 2372: 		$ctr++;
 2373: 		next;
 2374: 	    }
 2375: 	    if ($errorflag eq 'not_allowed') {
 2376: 		$request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
 2377: 		$ctr++;
 2378: 		next;
 2379: 	    }
 2380: 	    my $includemsg = $env{'form.includemsg'.$ctr};
 2381: 	    my ($subject,$message,$msgstatus) = ('','','');
 2382: 	    my $restitle = &Apache::lonnet::gettitle($symb);
 2383:             my ($feedurl,$showsymb) =
 2384: 		&get_feedurl_and_symb($symb,$uname,$udom);
 2385: 	    my $messagetail;
 2386: 	    if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
 2387: 		$subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
 2388: 		unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
 2389: 		$subject.=' ['.$restitle.']';
 2390: 		my (@msgnum) = split(/,/,$includemsg);
 2391: 		foreach (@msgnum) {
 2392: 		    $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
 2393: 		}
 2394: 		$message =&Apache::lonfeedback::clear_out_html($message);
 2395: 		if ($env{'form.withgrades'.$ctr}) {
 2396: 		    $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
 2397: 		    $messagetail = " for <a href=\"".
 2398: 		                   $feedurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
 2399: 		}
 2400: 		$msgstatus = 
 2401:                     &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
 2402: 						     $message.$messagetail,
 2403:                                                      undef,$feedurl,undef,
 2404:                                                      undef,undef,$showsymb,
 2405:                                                      $restitle);
 2406: 		$request->print('<br />'.&mt('Sending message to [_1]:[_2]',$uname,$udom).': '.
 2407: 				$msgstatus);
 2408: 	    }
 2409: 	    if ($env{'form.collaborator'.$ctr}) {
 2410: 		my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
 2411: 		foreach my $collabstr (@collabstrs) {
 2412: 		    my ($part,@collaborators) = split(/:/,$collabstr);
 2413: 		    foreach my $collaborator (@collaborators) {
 2414: 			my ($errorflag,$pts,$wgt) = 
 2415: 			    &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
 2416: 					   $env{'form.unamedom'.$ctr},$part);
 2417: 			if ($errorflag eq 'not_allowed') {
 2418: 			    $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
 2419: 			    next;
 2420: 			} elsif ($message ne '') {
 2421: 			    my ($baseurl,$showsymb) = 
 2422: 				&get_feedurl_and_symb($symb,$collaborator,
 2423: 						      $udom);
 2424: 			    if ($env{'form.withgrades'.$ctr}) {
 2425: 				$messagetail = " for <a href=\"".
 2426:                                     $baseurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
 2427: 			    }
 2428: 			    $msgstatus = 
 2429: 				&Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
 2430: 			}
 2431: 		    }
 2432: 		}
 2433: 	    }
 2434: 	    $ctr++;
 2435: 	}
 2436:     }
 2437: 
 2438:     if ($env{'form.handgrade'} eq 'yes') {
 2439: 	# Keywords sorted in alphabatical order
 2440: 	my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
 2441: 	my %keyhash = ();
 2442: 	$env{'form.keywords'}           =~ s/,\s{0,}|\s+/ /g;
 2443: 	$env{'form.keywords'}           =~ s/^\s+|\s+$//;
 2444: 	my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
 2445: 	$env{'form.keywords'} = join(' ',@keywords);
 2446: 	$keyhash{$symb.'_keywords'}     = $env{'form.keywords'};
 2447: 	$keyhash{$symb.'_subject'}      = $env{'form.msgsub'};
 2448: 	$keyhash{$loginuser.'_kwclr'}   = $env{'form.kwclr'};
 2449: 	$keyhash{$loginuser.'_kwsize'}  = $env{'form.kwsize'};
 2450: 	$keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
 2451: 
 2452: 	# message center - Order of message gets changed. Blank line is eliminated.
 2453: 	# New messages are saved in env for the next student.
 2454: 	# All messages are saved in nohist_handgrade.db
 2455: 	my ($ctr,$idx) = (1,1);
 2456: 	while ($ctr <= $env{'form.savemsgN'}) {
 2457: 	    if ($env{'form.savemsg'.$ctr} ne '') {
 2458: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
 2459: 		$idx++;
 2460: 	    }
 2461: 	    $ctr++;
 2462: 	}
 2463: 	$ctr = 0;
 2464: 	while ($ctr < $ngrade) {
 2465: 	    if ($env{'form.newmsg'.$ctr} ne '') {
 2466: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
 2467: 		$env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
 2468: 		$idx++;
 2469: 	    }
 2470: 	    $ctr++;
 2471: 	}
 2472: 	$env{'form.savemsgN'} = --$idx;
 2473: 	$keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
 2474: 	my $putresult = &Apache::lonnet::put
 2475: 	    ('nohist_handgrade',\%keyhash,$cdom,$cnum);
 2476:     }
 2477:     # Called by Save & Refresh from Highlight Attribute Window
 2478:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
 2479:     if ($env{'form.refresh'} eq 'on') {
 2480: 	my ($ctr,$total) = (0,0);
 2481: 	while ($ctr < $ngrade) {
 2482: 	    $total++ if  $env{'form.unamedom'.$ctr} ne '';
 2483: 	    $ctr++;
 2484: 	}
 2485: 	$env{'form.NTSTU'}=$ngrade;
 2486: 	$ctr = 0;
 2487: 	while ($ctr < $total) {
 2488: 	    my $processUser = $env{'form.unamedom'.$ctr};
 2489: 	    ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
 2490: 	    $env{'form.fullname'} = $$fullname{$processUser};
 2491: 	    &submission($request,$ctr,$total-1);
 2492: 	    $ctr++;
 2493: 	}
 2494: 	return '';
 2495:     }
 2496: 
 2497: # Go directly to grade student - from submission or link from chart page
 2498:     if ($button eq 'Grade Student') {
 2499: 	(undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
 2500: 	my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
 2501: 	($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
 2502: 	$env{'form.fullname'} = $$fullname{$processUser};
 2503: 	&submission($request,0,0);
 2504: 	return '';
 2505:     }
 2506: 
 2507:     # Get the next/previous one or group of students
 2508:     my $firststu = $env{'form.unamedom0'};
 2509:     my $laststu = $env{'form.unamedom'.($ngrade-1)};
 2510:     my $ctr = 2;
 2511:     while ($laststu eq '') {
 2512: 	$laststu  = $env{'form.unamedom'.($ngrade-$ctr)};
 2513: 	$ctr++;
 2514: 	$laststu = $firststu if ($ctr > $ngrade);
 2515:     }
 2516: 
 2517:     my (@parsedlist,@nextlist);
 2518:     my ($nextflg) = 0;
 2519:     foreach my $item (sort 
 2520: 	     {
 2521: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
 2522: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
 2523: 		 }
 2524: 		 return $a cmp $b;
 2525: 	     } (keys(%$fullname))) {
 2526: 	if ($nextflg == 1 && $button =~ /Next$/) {
 2527: 	    push(@parsedlist,$item);
 2528: 	}
 2529: 	$nextflg = 1 if ($item eq $laststu);
 2530: 	if ($button eq 'Previous') {
 2531: 	    last if ($item eq $firststu);
 2532: 	    push(@parsedlist,$item);
 2533: 	}
 2534:     }
 2535:     $ctr = 0;
 2536:     @parsedlist = reverse @parsedlist if ($button eq 'Previous');
 2537:     my ($partlist) = &response_type($symb);
 2538:     foreach my $student (@parsedlist) {
 2539: 	my $submitonly=$env{'form.submitonly'};
 2540: 	my ($uname,$udom) = split(/:/,$student);
 2541: 	
 2542: 	if ($submitonly eq 'queued') {
 2543: 	    my %queue_status = 
 2544: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
 2545: 							$udom,$uname);
 2546: 	    next if (!defined($queue_status{'gradingqueue'}));
 2547: 	}
 2548: 
 2549: 	if ($submitonly =~ /^(yes|graded|incorrect)$/) {
 2550: #	    my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
 2551: 	    my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
 2552: 	    my $submitted = 0;
 2553: 	    my $ungraded = 0;
 2554: 	    my $incorrect = 0;
 2555: 	    foreach my $item (keys(%status)) {
 2556: 		$submitted = 1 if ($status{$item} ne 'nothing');
 2557: 		$ungraded = 1 if ($status{$item} =~ /^ungraded/);
 2558: 		$incorrect = 1 if ($status{$item} =~ /^incorrect/);
 2559: 		my ($foo,$partid,$foo1) = split(/\./,$item);
 2560: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
 2561: 		    $submitted = 0;
 2562: 		}
 2563: 	    }
 2564: 	    next if (!$submitted && ($submitonly eq 'yes' ||
 2565: 				     $submitonly eq 'incorrect' ||
 2566: 				     $submitonly eq 'graded'));
 2567: 	    next if (!$ungraded && ($submitonly eq 'graded'));
 2568: 	    next if (!$incorrect && $submitonly eq 'incorrect');
 2569: 	}
 2570: 	push(@nextlist,$student) if ($ctr < $ntstu);
 2571: 	last if ($ctr == $ntstu);
 2572: 	$ctr++;
 2573:     }
 2574: 
 2575:     $ctr = 0;
 2576:     my $total = scalar(@nextlist)-1;
 2577: 
 2578:     foreach (sort(@nextlist)) {
 2579: 	my ($uname,$udom,$submitter) = split(/:/);
 2580: 	$env{'form.student'}  = $uname;
 2581: 	$env{'form.userdom'}  = $udom;
 2582: 	$env{'form.fullname'} = $$fullname{$_};
 2583: 	&submission($request,$ctr,$total);
 2584: 	$ctr++;
 2585:     }
 2586:     if ($total < 0) {
 2587: 	my $the_end = '<h3><span class="LC_info">'.&mt('LON-CAPA User Message').'</span></h3><br />'."\n";
 2588: 	$the_end.=&mt('<b>Message: </b> No more students for this section or class.').'<br /><br />'."\n";
 2589: 	$the_end.=&mt('Click on the button below to return to the grading menu.').'<br /><br />'."\n";
 2590: 	$the_end.=&show_grading_menu_form($symb);
 2591: 	$request->print($the_end);
 2592:     }
 2593:     return '';
 2594: }
 2595: 
 2596: #---- Save the score and award for each student, if changed
 2597: sub saveHandGrade {
 2598:     my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
 2599:     my @version_parts;
 2600:     my $usec = &Apache::lonnet::getsection($domain,$stuname,
 2601: 					   $env{'request.course.id'});
 2602:     if (!&canmodify($usec)) { return('not_allowed'); }
 2603:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
 2604:     my @parts_graded;
 2605:     my %newrecord  = ();
 2606:     my ($pts,$wgt) = ('','');
 2607:     my %aggregate = ();
 2608:     my $aggregateflag = 0;
 2609:     my @parts = split(/:/,$env{'form.partlist'.$newflg});
 2610:     foreach my $new_part (@parts) {
 2611: 	#collaborator ($submi may vary for different parts
 2612: 	if ($submitter && $new_part ne $part) { next; }
 2613: 	my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
 2614: 	if ($dropMenu eq 'excused') {
 2615: 	    if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
 2616: 		$newrecord{'resource.'.$new_part.'.solved'} = 'excused';
 2617: 		if (exists($record{'resource.'.$new_part.'.awarded'})) {
 2618: 		    $newrecord{'resource.'.$new_part.'.awarded'} = '';
 2619: 		}
 2620: 	        $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
 2621: 	    }
 2622: 	} elsif ($dropMenu eq 'reset status'
 2623: 		 && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
 2624: 	    foreach my $key (keys(%record)) {
 2625: 		if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
 2626: 	    }
 2627: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
 2628: 		"$env{'user.name'}:$env{'user.domain'}";
 2629:             my $totaltries = $record{'resource.'.$part.'.tries'};
 2630: 
 2631:             my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
 2632: 					       [$new_part]);
 2633:             my $aggtries =$totaltries;
 2634:             if ($last_resets{$new_part}) {
 2635:                 $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
 2636: 					   $new_part);
 2637:             }
 2638: 
 2639:             my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
 2640:             if ($aggtries > 0) {
 2641:                 &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
 2642:                 $aggregateflag = 1;
 2643:             }
 2644: 	} elsif ($dropMenu eq '') {
 2645: 	    $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ? 
 2646: 		    $env{'form.GD_BOX'.$newflg.'_'.$new_part} : 
 2647: 		    $env{'form.RADVAL'.$newflg.'_'.$new_part});
 2648: 	    if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
 2649: 		next;
 2650: 	    }
 2651: 	    $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 : 
 2652: 		$env{'form.WGT'.$newflg.'_'.$new_part};
 2653: 	    my $partial= $pts/$wgt;
 2654: 	    if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
 2655: 		#do not update score for part if not changed.
 2656:                 &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
 2657: 		next;
 2658: 	    } else {
 2659: 	        push(@parts_graded,$new_part);
 2660: 	    }
 2661: 	    if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
 2662: 		$newrecord{'resource.'.$new_part.'.awarded'}  = $partial;
 2663: 	    }
 2664: 	    my $reckey = 'resource.'.$new_part.'.solved';
 2665: 	    if ($partial == 0) {
 2666: 		if ($record{$reckey} ne 'incorrect_by_override') {
 2667: 		    $newrecord{$reckey} = 'incorrect_by_override';
 2668: 		}
 2669: 	    } else {
 2670: 		if ($record{$reckey} ne 'correct_by_override') {
 2671: 		    $newrecord{$reckey} = 'correct_by_override';
 2672: 		}
 2673: 	    }	    
 2674: 	    if ($submitter && 
 2675: 		($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
 2676: 		$newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
 2677: 	    }
 2678: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
 2679: 		"$env{'user.name'}:$env{'user.domain'}";
 2680: 	}
 2681: 	# unless problem has been graded, set flag to version the submitted files
 2682: 	unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/  || 
 2683: 	        $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
 2684: 	        $dropMenu eq 'reset status')
 2685: 	   {
 2686: 	    push(@version_parts,$new_part);
 2687: 	}
 2688:     }
 2689:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2690:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 2691: 
 2692:     if (%newrecord) {
 2693:         if (@version_parts) {
 2694:             my @changed_keys = &version_portfiles(\%record, \@parts_graded, 
 2695:                                 $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
 2696: 	    @newrecord{@changed_keys} = @record{@changed_keys};
 2697: 	    foreach my $new_part (@version_parts) {
 2698: 		&handback_files($request,$symb,$stuname,$domain,$newflg,
 2699: 				$new_part,\%newrecord);
 2700: 	    }
 2701:         }
 2702: 	&Apache::lonnet::cstore(\%newrecord,$symb,
 2703: 				$env{'request.course.id'},$domain,$stuname);
 2704: 	&check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
 2705: 				     $cdom,$cnum,$domain,$stuname);
 2706:     }
 2707:     if ($aggregateflag) {
 2708:         &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
 2709: 			      $cdom,$cnum);
 2710:     }
 2711:     return ('',$pts,$wgt);
 2712: }
 2713: 
 2714: sub check_and_remove_from_queue {
 2715:     my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
 2716:     my @ungraded_parts;
 2717:     foreach my $part (@{$parts}) {
 2718: 	if (    $record->{   'resource.'.$part.'.awarded'} eq ''
 2719: 	     && $record->{   'resource.'.$part.'.solved' } ne 'excused'
 2720: 	     && $newrecord->{'resource.'.$part.'.awarded'} eq ''
 2721: 	     && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
 2722: 		) {
 2723: 	    push(@ungraded_parts, $part);
 2724: 	}
 2725:     }
 2726:     if ( !@ungraded_parts ) {
 2727: 	&Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
 2728: 					       $cnum,$domain,$stuname);
 2729:     }
 2730: }
 2731: 
 2732: sub handback_files {
 2733:     my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
 2734:     my $portfolio_root = '/userfiles/portfolio';
 2735:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
 2736: 
 2737:     my @part_response_id = &flatten_responseType($responseType);
 2738:     foreach my $part_response_id (@part_response_id) {
 2739:     	my ($part_id,$resp_id) = @{ $part_response_id };
 2740: 	my $part_resp = join('_',@{ $part_response_id });
 2741:             if (($env{'form.'.$newflg.'_'.$part_resp.'_returndoc1'}) && ($new_part == $part_id)) {
 2742:                 # if multiple files are uploaded names will be 'returndoc2','returndoc3'
 2743:                 my $file_counter = 1;
 2744: 		my $file_msg;
 2745:                 while ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter}) {
 2746:                     my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'.filename'};
 2747:                     my ($directory,$answer_file) = 
 2748:                         ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter} =~ /^(.*?)([^\/]*)$/);
 2749:                     my ($answer_name,$answer_ver,$answer_ext) =
 2750: 		        &file_name_version_ext($answer_file);
 2751: 		    my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
 2752:                     my $getpropath = 1;
 2753: 		    my @dir_list = &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,$domain,$stuname,$getpropath);
 2754: 		    my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
 2755:                     # fix file name
 2756:                     my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
 2757:                     my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
 2758:             	                                $newflg.'_'.$part_resp.'_returndoc'.$file_counter,
 2759:             	                                $save_file_name);
 2760:                     if ($result !~ m|^/uploaded/|) {
 2761:                         $request->print('<br /><span class="LC_error">'.
 2762:                             &mt('An error occurred ([_1]) while trying to upload [_2].',
 2763:                                 $result,$newflg.'_'.$part_resp.'_returndoc'.$file_counter).
 2764:                                         '</span>');
 2765:                     } else {
 2766:                         # mark the file as read only
 2767:                         my @files = ($save_file_name);
 2768:                         my @what = ($symb,$env{'request.course.id'},'handback');
 2769:                         &Apache::lonnet::mark_as_readonly($domain,$stuname,\@files,\@what);
 2770: 			if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
 2771: 			    $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
 2772: 			}
 2773:                         $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
 2774: 			$file_msg.= "\n".'<br /><span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span><br />";
 2775: 
 2776:                     }
 2777:                     $request->print("<br />".$fname." will be the uploaded file name");
 2778:                     $request->print(" ".$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter});
 2779:                     $file_counter++;
 2780:                 }
 2781: 		my $subject = "File Handed Back by Instructor ";
 2782: 		my $message = "A file has been returned that was originally submitted in reponse to: <br />";
 2783: 		$message .= "<strong>".&Apache::lonnet::gettitle($symb)."</strong><br />";
 2784: 		$message .= ' The returned file(s) are named: '. $file_msg;
 2785: 		$message .= " and can be found in your portfolio space.";
 2786: 		my ($feedurl,$showsymb) = 
 2787: 		    &get_feedurl_and_symb($symb,$domain,$stuname);
 2788:                 my $restitle = &Apache::lonnet::gettitle($symb);
 2789: 		my $msgstatus = 
 2790:                    &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject.
 2791: 			 ' (File Returned) ['.$restitle.']',$message,undef,
 2792:                          $feedurl,undef,undef,undef,$showsymb,$restitle);
 2793:             }
 2794:         }
 2795:     return;
 2796: }
 2797: 
 2798: sub get_feedurl_and_symb {
 2799:     my ($symb,$uname,$udom) = @_;
 2800:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 2801:     $url = &Apache::lonnet::clutter($url);
 2802:     my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
 2803: 					$symb,$udom,$uname);
 2804:     if ($encrypturl =~ /^yes$/i) {
 2805: 	&Apache::lonenc::encrypted(\$url,1);
 2806: 	&Apache::lonenc::encrypted(\$symb,1);
 2807:     }
 2808:     return ($url,$symb);
 2809: }
 2810: 
 2811: sub get_submitted_files {
 2812:     my ($udom,$uname,$partid,$respid,$record) = @_;
 2813:     my @files;
 2814:     if ($$record{"resource.$partid.$respid.portfiles"}) {
 2815:         my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
 2816:         foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
 2817:     	    push(@files,$file_url.$file);
 2818:         }
 2819:     }
 2820:     if ($$record{"resource.$partid.$respid.uploadedurl"}) {
 2821:         push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
 2822:     }
 2823:     return (\@files);
 2824: }
 2825: 
 2826: # ----------- Provides number of tries since last reset.
 2827: sub get_num_tries {
 2828:     my ($record,$last_reset,$part) = @_;
 2829:     my $timestamp = '';
 2830:     my $num_tries = 0;
 2831:     if ($$record{'version'}) {
 2832:         for (my $version=$$record{'version'};$version>=1;$version--) {
 2833:             if (exists($$record{$version.':resource.'.$part.'.solved'})) {
 2834:                 $timestamp = $$record{$version.':timestamp'};
 2835:                 if ($timestamp > $last_reset) {
 2836:                     $num_tries ++;
 2837:                 } else {
 2838:                     last;
 2839:                 }
 2840:             }
 2841:         }
 2842:     }
 2843:     return $num_tries;
 2844: }
 2845: 
 2846: # ----------- Determine decrements required in aggregate totals 
 2847: sub decrement_aggs {
 2848:     my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
 2849:     my %decrement = (
 2850:                         attempts => 0,
 2851:                         users => 0,
 2852:                         correct => 0
 2853:                     );
 2854:     $decrement{'attempts'} = $aggtries;
 2855:     if ($solvedstatus =~ /^correct/) {
 2856:         $decrement{'correct'} = 1;
 2857:     }
 2858:     if ($aggtries == $totaltries) {
 2859:         $decrement{'users'} = 1;
 2860:     }
 2861:     foreach my $type (keys(%decrement)) {
 2862:         $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
 2863:     }
 2864:     return;
 2865: }
 2866: 
 2867: # ----------- Determine timestamps for last reset of aggregate totals for parts  
 2868: sub get_last_resets {
 2869:     my ($symb,$courseid,$partids) =@_;
 2870:     my %last_resets;
 2871:     my $cdom = $env{'course.'.$courseid.'.domain'};
 2872:     my $cname = $env{'course.'.$courseid.'.num'};
 2873:     my @keys;
 2874:     foreach my $part (@{$partids}) {
 2875: 	push(@keys,"$symb\0$part\0resettime");
 2876:     }
 2877:     my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
 2878: 				     $cdom,$cname);
 2879:     foreach my $part (@{$partids}) {
 2880: 	$last_resets{$part}=$results{"$symb\0$part\0resettime"};
 2881:     }
 2882:     return %last_resets;
 2883: }
 2884: 
 2885: # ----------- Handles creating versions for portfolio files as answers
 2886: sub version_portfiles {
 2887:     my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
 2888:     my $version_parts = join('|',@$v_flag);
 2889:     my @returned_keys;
 2890:     my $parts = join('|', @$parts_graded);
 2891:     my $portfolio_root = '/userfiles/portfolio';
 2892:     foreach my $key (keys(%$record)) {
 2893:         my $new_portfiles;
 2894:         if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
 2895:             my @versioned_portfiles;
 2896:             my @portfiles = split(/\s*,\s*/,$$record{$key});
 2897:             foreach my $file (@portfiles) {
 2898:                 &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
 2899:                 my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
 2900: 		my ($answer_name,$answer_ver,$answer_ext) =
 2901: 		    &file_name_version_ext($answer_file);
 2902:                 my $getpropath = 1;    
 2903:                 my @dir_list = &Apache::lonnet::dirlist($portfolio_root.$directory,$domain,$stu_name,$getpropath);
 2904:                 my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
 2905:                 my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
 2906:                 if ($new_answer ne 'problem getting file') {
 2907:                     push(@versioned_portfiles, $directory.$new_answer);
 2908:                     &Apache::lonnet::mark_as_readonly($domain,$stu_name,
 2909:                         [$directory.$new_answer],
 2910:                         [$symb,$env{'request.course.id'},'graded']);
 2911:                 }
 2912:             }
 2913:             $$record{$key} = join(',',@versioned_portfiles);
 2914:             push(@returned_keys,$key);
 2915:         }
 2916:     } 
 2917:     return (@returned_keys);   
 2918: }
 2919: 
 2920: sub get_next_version {
 2921:     my ($answer_name, $answer_ext, $dir_list) = @_;
 2922:     my $version;
 2923:     foreach my $row (@$dir_list) {
 2924:         my ($file) = split(/\&/,$row,2);
 2925:         my ($file_name,$file_version,$file_ext) =
 2926: 	    &file_name_version_ext($file);
 2927:         if (($file_name eq $answer_name) && 
 2928: 	    ($file_ext eq $answer_ext)) {
 2929:                 # gets here if filename and extension match, regardless of version
 2930:                 if ($file_version ne '') {
 2931:                 # a versioned file is found  so save it for later
 2932:                 if ($file_version > $version) {
 2933: 		    $version = $file_version;
 2934: 	        }
 2935:             }
 2936:         }
 2937:     } 
 2938:     $version ++;
 2939:     return($version);
 2940: }
 2941: 
 2942: sub version_selected_portfile {
 2943:     my ($domain,$stu_name,$directory,$file_name,$version) = @_;
 2944:     my ($answer_name,$answer_ver,$answer_ext) =
 2945:         &file_name_version_ext($file_name);
 2946:     my $new_answer;
 2947:     $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
 2948:     if($env{'form.copy'} eq '-1') {
 2949:         $new_answer = 'problem getting file';
 2950:     } else {
 2951:         $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
 2952:         my $copy_result = &Apache::lonnet::finishuserfileupload(
 2953:                             $stu_name,$domain,'copy',
 2954: 		        '/portfolio'.$directory.$new_answer);
 2955:     }    
 2956:     return ($new_answer);
 2957: }
 2958: 
 2959: sub file_name_version_ext {
 2960:     my ($file)=@_;
 2961:     my @file_parts = split(/\./, $file);
 2962:     my ($name,$version,$ext);
 2963:     if (@file_parts > 1) {
 2964: 	$ext=pop(@file_parts);
 2965: 	if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
 2966: 	    $version=pop(@file_parts);
 2967: 	}
 2968: 	$name=join('.',@file_parts);
 2969:     } else {
 2970: 	$name=join('.',@file_parts);
 2971:     }
 2972:     return($name,$version,$ext);
 2973: }
 2974: 
 2975: #--------------------------------------------------------------------------------------
 2976: #
 2977: #-------------------------- Next few routines handles grading by section or whole class
 2978: #
 2979: #--- Javascript to handle grading by section or whole class
 2980: sub viewgrades_js {
 2981:     my ($request) = shift;
 2982: 
 2983:     $request->print(<<VIEWJAVASCRIPT);
 2984: <script type="text/javascript" language="javascript">
 2985:    function writePoint(partid,weight,point) {
 2986: 	var radioButton = document.classgrade["RADVAL_"+partid];
 2987: 	var textbox = document.classgrade["TEXTVAL_"+partid];
 2988: 	if (point == "textval") {
 2989: 	    point = document.classgrade["TEXTVAL_"+partid].value;
 2990: 	    if (isNaN(point) || parseFloat(point) < 0) {
 2991: 		alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
 2992: 		var resetbox = false;
 2993: 		for (var i=0; i<radioButton.length; i++) {
 2994: 		    if (radioButton[i].checked) {
 2995: 			textbox.value = i;
 2996: 			resetbox = true;
 2997: 		    }
 2998: 		}
 2999: 		if (!resetbox) {
 3000: 		    textbox.value = "";
 3001: 		}
 3002: 		return;
 3003: 	    }
 3004: 	    if (parseFloat(point) > parseFloat(weight)) {
 3005: 		var resp = confirm("You entered a value ("+parseFloat(point)+
 3006: 				   ") greater than the weight for the part. Accept?");
 3007: 		if (resp == false) {
 3008: 		    textbox.value = "";
 3009: 		    return;
 3010: 		}
 3011: 	    }
 3012: 	    for (var i=0; i<radioButton.length; i++) {
 3013: 		radioButton[i].checked=false;
 3014: 		if (parseFloat(point) == i) {
 3015: 		    radioButton[i].checked=true;
 3016: 		}
 3017: 	    }
 3018: 
 3019: 	} else {
 3020: 	    textbox.value = parseFloat(point);
 3021: 	}
 3022: 	for (i=0;i<document.classgrade.total.value;i++) {
 3023: 	    var user = document.classgrade["ctr"+i].value;
 3024: 	    user = user.replace(new RegExp(':', 'g'),"_");
 3025: 	    var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3026: 	    var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3027: 	    var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3028: 	    if (saveval != "correct") {
 3029: 		scorename.value = point;
 3030: 		if (selname[0].selected != true) {
 3031: 		    selname[0].selected = true;
 3032: 		}
 3033: 	    }
 3034: 	}
 3035: 	document.classgrade["SELVAL_"+partid][0].selected = true;
 3036:     }
 3037: 
 3038:     function writeRadText(partid,weight) {
 3039: 	var selval   = document.classgrade["SELVAL_"+partid];
 3040: 	var radioButton = document.classgrade["RADVAL_"+partid];
 3041:         var override = document.classgrade["FORCE_"+partid].checked;
 3042: 	var textbox = document.classgrade["TEXTVAL_"+partid];
 3043: 	if (selval[1].selected || selval[2].selected) {
 3044: 	    for (var i=0; i<radioButton.length; i++) {
 3045: 		radioButton[i].checked=false;
 3046: 
 3047: 	    }
 3048: 	    textbox.value = "";
 3049: 
 3050: 	    for (i=0;i<document.classgrade.total.value;i++) {
 3051: 		var user = document.classgrade["ctr"+i].value;
 3052: 		user = user.replace(new RegExp(':', 'g'),"_");
 3053: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3054: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3055: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3056: 		if ((saveval != "correct") || override) {
 3057: 		    scorename.value = "";
 3058: 		    if (selval[1].selected) {
 3059: 			selname[1].selected = true;
 3060: 		    } else {
 3061: 			selname[2].selected = true;
 3062: 			if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value)) 
 3063: 			{document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
 3064: 		    }
 3065: 		}
 3066: 	    }
 3067: 	} else {
 3068: 	    for (i=0;i<document.classgrade.total.value;i++) {
 3069: 		var user = document.classgrade["ctr"+i].value;
 3070: 		user = user.replace(new RegExp(':', 'g'),"_");
 3071: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3072: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3073: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3074: 		if ((saveval != "correct") || override) {
 3075: 		    scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
 3076: 		    selname[0].selected = true;
 3077: 		}
 3078: 	    }
 3079: 	}	    
 3080:     }
 3081: 
 3082:     function changeSelect(partid,user) {
 3083: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
 3084: 	var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
 3085: 	var point  = textbox.value;
 3086: 	var weight = document.classgrade["weight_"+partid].value;
 3087: 
 3088: 	if (isNaN(point) || parseFloat(point) < 0) {
 3089: 	    alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
 3090: 	    textbox.value = "";
 3091: 	    return;
 3092: 	}
 3093: 	if (parseFloat(point) > parseFloat(weight)) {
 3094: 	    var resp = confirm("You entered a value ("+parseFloat(point)+
 3095: 			       ") greater than the weight of the part. Accept?");
 3096: 	    if (resp == false) {
 3097: 		textbox.value = "";
 3098: 		return;
 3099: 	    }
 3100: 	}
 3101: 	selval[0].selected = true;
 3102:     }
 3103: 
 3104:     function changeOneScore(partid,user) {
 3105: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
 3106: 	if (selval[1].selected || selval[2].selected) {
 3107: 	    document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
 3108: 	    if (selval[2].selected) {
 3109: 		document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
 3110: 	    }
 3111:         }
 3112:     }
 3113: 
 3114:     function resetEntry(numpart) {
 3115: 	for (ctpart=0;ctpart<numpart;ctpart++) {
 3116: 	    var partid = document.classgrade["partid_"+ctpart].value;
 3117: 	    var radioButton = document.classgrade["RADVAL_"+partid];
 3118: 	    var textbox = document.classgrade["TEXTVAL_"+partid];
 3119: 	    var selval  = document.classgrade["SELVAL_"+partid];
 3120: 	    for (var i=0; i<radioButton.length; i++) {
 3121: 		radioButton[i].checked=false;
 3122: 
 3123: 	    }
 3124: 	    textbox.value = "";
 3125: 	    selval[0].selected = true;
 3126: 
 3127: 	    for (i=0;i<document.classgrade.total.value;i++) {
 3128: 		var user = document.classgrade["ctr"+i].value;
 3129: 		user = user.replace(new RegExp(':', 'g'),"_");
 3130: 		var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3131: 		resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
 3132: 		var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
 3133: 		resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
 3134: 		var saveselval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3135: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3136: 		if (saveselval == "excused") {
 3137: 		    if (selname[1].selected == false) { selname[1].selected = true;}
 3138: 		} else {
 3139: 		    if (selname[0].selected == false) {selname[0].selected = true};
 3140: 		}
 3141: 	    }
 3142: 	}
 3143:     }
 3144: 
 3145: </script>
 3146: VIEWJAVASCRIPT
 3147: }
 3148: 
 3149: #--- show scores for a section or whole class w/ option to change/update a score
 3150: sub viewgrades {
 3151:     my ($request) = shift;
 3152:     &viewgrades_js($request);
 3153: 
 3154:     my ($symb) = &get_symb($request);
 3155:     #need to make sure we have the correct data for later EXT calls, 
 3156:     #thus invalidate the cache
 3157:     &Apache::lonnet::devalidatecourseresdata(
 3158:                  $env{'course.'.$env{'request.course.id'}.'.num'},
 3159:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
 3160:     &Apache::lonnet::clear_EXT_cache_status();
 3161: 
 3162:     my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
 3163:     $result.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
 3164: 
 3165:     #view individual student submission form - called using Javascript viewOneStudent
 3166:     $result.=&jscriptNform($symb);
 3167: 
 3168:     #beginning of class grading form
 3169:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
 3170:     $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
 3171: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 3172: 	'<input type="hidden" name="command" value="editgrades" />'."\n".
 3173: 	&build_section_inputs().
 3174: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
 3175: 	'<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
 3176: 	'<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
 3177: 
 3178:     my $sectionClass;
 3179:     my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
 3180:     if ($env{'form.section'} eq 'all') {
 3181: 	$sectionClass='Class';
 3182:     } elsif ($env{'form.section'} eq 'none') {
 3183: 	$sectionClass='Students in no Section';
 3184:     } else {
 3185: 	$sectionClass='Students in Section(s) [_1]';
 3186:     }
 3187:     $result.=
 3188: 	'<h3>'.
 3189: 	&mt("Assign Common Grade To $sectionClass",$section_display).'</h3>';
 3190:     $result.= &Apache::loncommon::start_data_table();
 3191:     #radio buttons/text box for assigning points for a section or class.
 3192:     #handles different parts of a problem
 3193:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
 3194:     my %weight = ();
 3195:     my $ctsparts = 0;
 3196:     my %seen = ();
 3197:     my @part_response_id = &flatten_responseType($responseType);
 3198:     foreach my $part_response_id (@part_response_id) {
 3199:     	my ($partid,$respid) = @{ $part_response_id };
 3200: 	my $part_resp = join('_',@{ $part_response_id });
 3201: 	next if $seen{$partid};
 3202: 	$seen{$partid}++;
 3203: 	my $handgrade=$$handgrade{$part_resp};
 3204: 	my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
 3205: 	$weight{$partid} = $wgt eq '' ? '1' : $wgt;
 3206: 
 3207: 	my $display_part=&get_display_part($partid,$symb);
 3208: 	my $radio.='<table border="0"><tr>';  
 3209: 	my $ctr = 0;
 3210: 	while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
 3211: 	    $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
 3212: 		'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
 3213: 		','.$ctr.')" />'.$ctr."</label></td>\n";
 3214: 	    $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
 3215: 	    $ctr++;
 3216: 	}
 3217: 	$radio.='</tr></table>';
 3218: 	my $line = '<input type="text" name="TEXTVAL_'.
 3219: 	    $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
 3220: 		$partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
 3221: 	    $weight{$partid}.' (problem weight)</td>'."\n";
 3222: 	$line.= '<td><select name="SELVAL_'.$partid.'"'.
 3223: 	    'onChange="javascript:writeRadText(\''.$partid.'\','.
 3224: 		$weight{$partid}.')"> '.
 3225: 	    '<option selected="selected"> </option>'.
 3226: 	    '<option value="excused">'.&mt('excused').'</option>'.
 3227: 	    '<option value="reset status">'.&mt('reset status').'</option>'.
 3228: 	    '</select></td>'.
 3229:             '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
 3230: 	$line.='<input type="hidden" name="partid_'.
 3231: 	    $ctsparts.'" value="'.$partid.'" />'."\n";
 3232: 	$line.='<input type="hidden" name="weight_'.
 3233: 	    $partid.'" value="'.$weight{$partid}.'" />'."\n";
 3234: 
 3235: 	$result.=
 3236: 	    &Apache::loncommon::start_data_table_row()."\n".
 3237: 	    &mt('<td><b>Part:</b></td><td>[_1]</td><td><b>Points:</b></td><td>[_2]</td><td>or</td><td>[_3]</td>',$display_part,$radio,$line).
 3238: 	    &Apache::loncommon::end_data_table_row()."\n";
 3239: 	$ctsparts++;
 3240:     }
 3241:     $result.=&Apache::loncommon::end_data_table()."\n".
 3242: 	'<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
 3243:     $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
 3244: 	'onClick="javascript:resetEntry('.$ctsparts.');" />';
 3245: 
 3246:     #table listing all the students in a section/class
 3247:     #header of table
 3248:     $result.= '<h3>'.&mt('Assign Grade to Specific Students in '.$sectionClass,
 3249: 			 $section_display).'</h3>';
 3250:     $result.= &Apache::loncommon::start_data_table().
 3251: 	&Apache::loncommon::start_data_table_header_row().
 3252: 	'<th>'.&mt('No.').'</th>'.
 3253: 	'<th>'.&nameUserString('header')."</th>\n";
 3254:     my (@parts) = sort(&getpartlist($symb));
 3255:     my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
 3256:     my @partids = ();
 3257:     foreach my $part (@parts) {
 3258: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
 3259: 	$display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
 3260: 	if  (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
 3261: 	my ($partid) = &split_part_type($part);
 3262:         push(@partids,$partid);
 3263: 	my $display_part=&get_display_part($partid,$symb);
 3264: 	if ($display =~ /^Partial Credit Factor/) {
 3265: 	    $result.='<th>'.
 3266: 		&mt('Score Part: [_1]<br /> (weight = [_2])',
 3267: 		    $display_part,$weight{$partid}).'</th>'."\n";
 3268: 	    next;
 3269: 	    
 3270: 	} else {
 3271: 	    if ($display =~ /Problem Status/) {
 3272: 		my $grade_status_mt = &mt('Grade Status');
 3273: 		$display =~ s{Problem Status}{$grade_status_mt<br />};
 3274: 	    }
 3275: 	    my $part_mt = &mt('Part:');
 3276: 	    $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
 3277: 	}
 3278: 
 3279: 	$result.='<th>'.$display.'</th>'."\n";
 3280:     }
 3281:     $result.=&Apache::loncommon::end_data_table_header_row();
 3282: 
 3283:     my %last_resets = 
 3284: 	&get_last_resets($symb,$env{'request.course.id'},\@partids);
 3285: 
 3286:     #get info for each student
 3287:     #list all the students - with points and grade status
 3288:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
 3289:     my $ctr = 0;
 3290:     foreach (sort 
 3291: 	     {
 3292: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
 3293: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
 3294: 		 }
 3295: 		 return $a cmp $b;
 3296: 	     } (keys(%$fullname))) {
 3297: 	$ctr++;
 3298: 	$result.=&viewstudentgrade($symb,$env{'request.course.id'},
 3299: 				   $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
 3300:     }
 3301:     $result.=&Apache::loncommon::end_data_table();
 3302:     $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
 3303:     $result.='<input type="button" value="'.&mt('Save').'" '.
 3304: 	'onClick="javascript:submit();" target="_self" /></form>'."\n";
 3305:     if (scalar(%$fullname) eq 0) {
 3306: 	my $colspan=3+scalar(@parts);
 3307: 	my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
 3308:         my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
 3309: 	$result='<span class="LC_warning">'.
 3310: 	    &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
 3311: 	        $section_display, $stu_status).
 3312: 	    '</span>';
 3313:     }
 3314:     $result.=&show_grading_menu_form($symb);
 3315:     return $result;
 3316: }
 3317: 
 3318: #--- call by previous routine to display each student
 3319: sub viewstudentgrade {
 3320:     my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
 3321:     my ($uname,$udom) = split(/:/,$student);
 3322:     my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
 3323:     my %aggregates = (); 
 3324:     my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
 3325: 	'<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
 3326: 	"\n".$ctr.'&nbsp;</td><td>&nbsp;'.
 3327: 	'<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
 3328: 	'\');" target="_self">'.$fullname.'</a> '.
 3329: 	'<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
 3330:     $student=~s/:/_/; # colon doen't work in javascript for names
 3331:     foreach my $apart (@$parts) {
 3332: 	my ($part,$type) = &split_part_type($apart);
 3333: 	my $score=$record{"resource.$part.$type"};
 3334:         $result.='<td align="center">';
 3335:         my ($aggtries,$totaltries);
 3336:         unless (exists($aggregates{$part})) {
 3337: 	    $totaltries = $record{'resource.'.$part.'.tries'};
 3338: 
 3339: 	    $aggtries = $totaltries;
 3340:             if ($$last_resets{$part}) {  
 3341:                 $aggtries = &get_num_tries(\%record,$$last_resets{$part},
 3342: 					   $part);
 3343:             }
 3344:             $result.='<input type="hidden" name="'.
 3345:                 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
 3346:             $result.='<input type="hidden" name="'.
 3347:                 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
 3348:             $aggregates{$part} = 1;
 3349:         }
 3350: 	if ($type eq 'awarded') {
 3351: 	    my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
 3352: 	    $result.='<input type="hidden" name="'.
 3353: 		'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
 3354: 	    $result.='<input type="text" name="'.
 3355: 		'GD_'.$student.'_'.$part.'_awarded" '.
 3356: 		'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
 3357: 		'\')" value="'.$pts.'" size="4" /></td>'."\n";
 3358: 	} elsif ($type eq 'solved') {
 3359: 	    my ($status,$foo)=split(/_/,$score,2);
 3360: 	    $status = 'nothing' if ($status eq '');
 3361: 	    $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
 3362: 		$part.'_solved_s" value="'.$status.'" />'."\n";
 3363: 	    $result.='&nbsp;<select name="'.
 3364: 		'GD_'.$student.'_'.$part.'_solved" '.
 3365: 		'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
 3366: 	    $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>' 
 3367: 		: '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
 3368: 	    $result.='<option value="reset status">'.&mt('reset status').'</option>';
 3369: 	    $result.="</select>&nbsp;</td>\n";
 3370: 	} else {
 3371: 	    $result.='<input type="hidden" name="'.
 3372: 		'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
 3373: 		    "\n";
 3374: 	    $result.='<input type="text" name="'.
 3375: 		'GD_'.$student.'_'.$part.'_'.$type.'" '.
 3376: 		'value="'.$score.'" size="4" /></td>'."\n";
 3377: 	}
 3378:     }
 3379:     $result.=&Apache::loncommon::end_data_table_row();
 3380:     return $result;
 3381: }
 3382: 
 3383: #--- change scores for all the students in a section/class
 3384: #    record does not get update if unchanged
 3385: sub editgrades {
 3386:     my ($request) = @_;
 3387: 
 3388:     my $symb=&get_symb($request);
 3389:     my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
 3390:     my $title='<h2>'.&mt('Current Grade Status').'</h2>';
 3391:     $title.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
 3392:     $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
 3393: 
 3394:     my $result= &Apache::loncommon::start_data_table().
 3395: 	&Apache::loncommon::start_data_table_header_row().
 3396: 	'<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
 3397: 	'<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
 3398:     my %scoreptr = (
 3399: 		    'correct'  =>'correct_by_override',
 3400: 		    'incorrect'=>'incorrect_by_override',
 3401: 		    'excused'  =>'excused',
 3402: 		    'ungraded' =>'ungraded_attempted',
 3403: 		    'nothing'  => '',
 3404: 		    );
 3405:     my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
 3406: 
 3407:     my (@partid);
 3408:     my %weight = ();
 3409:     my %columns = ();
 3410:     my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
 3411: 
 3412:     my (@parts) = sort(&getpartlist($symb));
 3413:     my $header;
 3414:     while ($ctr < $env{'form.totalparts'}) {
 3415: 	my $partid = $env{'form.partid_'.$ctr};
 3416: 	push(@partid,$partid);
 3417: 	$weight{$partid} = $env{'form.weight_'.$partid};
 3418: 	$ctr++;
 3419:     }
 3420:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 3421:     foreach my $partid (@partid) {
 3422: 	$header .= '<th align="center">'.&mt('Old Score').'</th>'.
 3423: 	    '<th align="center">'.&mt('New Score').'</th>';
 3424: 	$columns{$partid}=2;
 3425: 	foreach my $stores (@parts) {
 3426: 	    my ($part,$type) = &split_part_type($stores);
 3427: 	    if ($part !~ m/^\Q$partid\E/) { next;}
 3428: 	    if ($type eq 'awarded' || $type eq 'solved') { next; }
 3429: 	    my $display=&Apache::lonnet::metadata($url,$stores.'.display');
 3430: 	    $display =~ s/\[Part: (\w)+\]//;
 3431: 	    $display =~ s/Number of Attempts/Tries/;
 3432: 	    $header .= '<th align="center">'.&mt('Old '.$display).'</th>'.
 3433: 		'<th align="center">'.&mt('New '.$display).'</th>';
 3434: 	    $columns{$partid}+=2;
 3435: 	}
 3436:     }
 3437:     foreach my $partid (@partid) {
 3438: 	my $display_part=&get_display_part($partid,$symb);
 3439: 	$result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
 3440: 	    &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
 3441: 	    '</th>';
 3442: 
 3443:     }
 3444:     $result .= &Apache::loncommon::end_data_table_header_row().
 3445: 	&Apache::loncommon::start_data_table_header_row().
 3446: 	$header.
 3447: 	&Apache::loncommon::end_data_table_header_row();
 3448:     my @noupdate;
 3449:     my ($updateCtr,$noupdateCtr) = (1,1);
 3450:     for ($i=0; $i<$env{'form.total'}; $i++) {
 3451: 	my $line;
 3452: 	my $user = $env{'form.ctr'.$i};
 3453: 	my ($uname,$udom)=split(/:/,$user);
 3454: 	my %newrecord;
 3455: 	my $updateflag = 0;
 3456: 	$line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
 3457: 	my $usec=$classlist->{"$uname:$udom"}[5];
 3458: 	if (!&canmodify($usec)) {
 3459: 	    my $numcols=scalar(@partid)*4+2;
 3460: 	    push(@noupdate,
 3461: 		 $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
 3462: 		 &mt('Not allowed to modify student')."</span></td></tr>");
 3463: 	    next;
 3464: 	}
 3465:         my %aggregate = ();
 3466:         my $aggregateflag = 0;
 3467: 	$user=~s/:/_/; # colon doen't work in javascript for names
 3468: 	foreach (@partid) {
 3469: 	    my $old_aw    = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
 3470: 	    my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
 3471: 	    my $old_part  = $old_aw eq '' ? '' : $old_part_pcr;
 3472: 	    my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
 3473: 	    my $awarded   = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
 3474: 	    my $pcr       = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
 3475: 	    my $partial   = $awarded eq '' ? '' : $pcr;
 3476: 	    my $score;
 3477: 	    if ($partial eq '') {
 3478: 		$score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
 3479: 	    } elsif ($partial > 0) {
 3480: 		$score = 'correct_by_override';
 3481: 	    } elsif ($partial == 0) {
 3482: 		$score = 'incorrect_by_override';
 3483: 	    }
 3484: 	    my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
 3485: 	    $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
 3486: 
 3487: 	    $newrecord{'resource.'.$_.'.regrader'}=
 3488: 		"$env{'user.name'}:$env{'user.domain'}";
 3489: 	    if ($dropMenu eq 'reset status' &&
 3490: 		$old_score ne '') { # ignore if no previous attempts => nothing to reset
 3491: 		$newrecord{'resource.'.$_.'.tries'} = '';
 3492: 		$newrecord{'resource.'.$_.'.solved'} = '';
 3493: 		$newrecord{'resource.'.$_.'.award'} = '';
 3494: 		$newrecord{'resource.'.$_.'.awarded'} = '';
 3495: 		$updateflag = 1;
 3496:                 if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
 3497:                     my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
 3498:                     my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
 3499:                     my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
 3500:                     &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
 3501:                     $aggregateflag = 1;
 3502:                 }
 3503: 	    } elsif (!($old_part eq $partial && $old_score eq $score)) {
 3504: 		$updateflag = 1;
 3505: 		$newrecord{'resource.'.$_.'.awarded'}  = $partial if $partial ne '';
 3506: 		$newrecord{'resource.'.$_.'.solved'}   = $score;
 3507: 		$rec_update++;
 3508: 	    }
 3509: 
 3510: 	    $line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
 3511: 		'<td align="center">'.$awarded.
 3512: 		($score eq 'excused' ? $score : '').'&nbsp;</td>';
 3513: 
 3514: 
 3515: 	    my $partid=$_;
 3516: 	    foreach my $stores (@parts) {
 3517: 		my ($part,$type) = &split_part_type($stores);
 3518: 		if ($part !~ m/^\Q$partid\E/) { next;}
 3519: 		if ($type eq 'awarded' || $type eq 'solved') { next; }
 3520: 		my $old_aw    = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
 3521: 		my $awarded   = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
 3522: 		if ($awarded ne '' && $awarded ne $old_aw) {
 3523: 		    $newrecord{'resource.'.$part.'.'.$type}= $awarded;
 3524: 		    $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
 3525: 		    $updateflag=1;
 3526: 		}
 3527: 		$line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
 3528: 		    '<td align="center">'.$awarded.'&nbsp;</td>';
 3529: 	    }
 3530: 	}
 3531: 	$line.="\n";
 3532: 
 3533: 	my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3534: 	my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3535: 
 3536: 	if ($updateflag) {
 3537: 	    $count++;
 3538: 	    &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
 3539: 				    $udom,$uname);
 3540: 
 3541: 	    if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
 3542: 					      $cnum,$udom,$uname)) {
 3543: 		# need to figure out if should be in queue.
 3544: 		my %record =  
 3545: 		    &Apache::lonnet::restore($symb,$env{'request.course.id'},
 3546: 					     $udom,$uname);
 3547: 		my $all_graded = 1;
 3548: 		my $none_graded = 1;
 3549: 		foreach my $part (@parts) {
 3550: 		    if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
 3551: 			$all_graded = 0;
 3552: 		    } else {
 3553: 			$none_graded = 0;
 3554: 		    }
 3555: 		}
 3556: 
 3557: 		if ($all_graded || $none_graded) {
 3558: 		    &Apache::bridgetask::remove_from_queue('gradingqueue',
 3559: 							   $symb,$cdom,$cnum,
 3560: 							   $udom,$uname);
 3561: 		}
 3562: 	    }
 3563: 
 3564: 	    $result.=&Apache::loncommon::start_data_table_row().
 3565: 		'<td align="right">&nbsp;'.$updateCtr.'&nbsp;</td>'.$line.
 3566: 		&Apache::loncommon::end_data_table_row();
 3567: 	    $updateCtr++;
 3568: 	} else {
 3569: 	    push(@noupdate,
 3570: 		 '<td align="right">&nbsp;'.$noupdateCtr.'&nbsp;</td>'.$line);
 3571: 	    $noupdateCtr++;
 3572: 	}
 3573:         if ($aggregateflag) {
 3574:             &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
 3575: 				  $cdom,$cnum);
 3576:         }
 3577:     }
 3578:     if (@noupdate) {
 3579: #	my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
 3580: 	my $numcols=scalar(@partid)*4+2;
 3581: 	$result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
 3582: 	    '<td align="center" colspan="'.$numcols.'">'.
 3583: 	    &mt('No Changes Occurred For the Students Below').
 3584: 	    '</td>'.
 3585: 	    &Apache::loncommon::end_data_table_row();
 3586: 	foreach my $line (@noupdate) {
 3587: 	    $result.=
 3588: 		&Apache::loncommon::start_data_table_row().
 3589: 		$line.
 3590: 		&Apache::loncommon::end_data_table_row();
 3591: 	}
 3592:     }
 3593:     $result .= &Apache::loncommon::end_data_table().
 3594: 	&show_grading_menu_form($symb);
 3595:     my $msg = '<p><b>'.
 3596: 	&mt('Number of records updated = [_1] for [quant,_2,student].',
 3597: 	    $rec_update,$count).'</b><br />'.
 3598: 	'<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
 3599: 	'</b></p>';
 3600:     return $title.$msg.$result;
 3601: }
 3602: 
 3603: sub split_part_type {
 3604:     my ($partstr) = @_;
 3605:     my ($temp,@allparts)=split(/_/,$partstr);
 3606:     my $type=pop(@allparts);
 3607:     my $part=join('_',@allparts);
 3608:     return ($part,$type);
 3609: }
 3610: 
 3611: #------------- end of section for handling grading by section/class ---------
 3612: #
 3613: #----------------------------------------------------------------------------
 3614: 
 3615: 
 3616: #----------------------------------------------------------------------------
 3617: #
 3618: #-------------------------- Next few routines handles grading by csv upload
 3619: #
 3620: #--- Javascript to handle csv upload
 3621: sub csvupload_javascript_reverse_associate {
 3622:     my $error1=&mt('You need to specify the username or ID');
 3623:     my $error2=&mt('You need to specify at least one grading field');
 3624:   return(<<ENDPICK);
 3625:   function verify(vf) {
 3626:     var foundsomething=0;
 3627:     var founduname=0;
 3628:     var foundID=0;
 3629:     for (i=0;i<=vf.nfields.value;i++) {
 3630:       tw=eval('vf.f'+i+'.selectedIndex');
 3631:       if (i==0 && tw!=0) { foundID=1; }
 3632:       if (i==1 && tw!=0) { founduname=1; }
 3633:       if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
 3634:     }
 3635:     if (founduname==0 && foundID==0) {
 3636: 	alert('$error1');
 3637: 	return;
 3638:     }
 3639:     if (foundsomething==0) {
 3640: 	alert('$error2');
 3641: 	return;
 3642:     }
 3643:     vf.submit();
 3644:   }
 3645:   function flip(vf,tf) {
 3646:     var nw=eval('vf.f'+tf+'.selectedIndex');
 3647:     var i;
 3648:     for (i=0;i<=vf.nfields.value;i++) {
 3649:       //can not pick the same destination field for both name and domain
 3650:       if (((i ==0)||(i ==1)) && 
 3651:           ((tf==0)||(tf==1)) && 
 3652:           (i!=tf) &&
 3653:           (eval('vf.f'+i+'.selectedIndex')==nw)) {
 3654:         eval('vf.f'+i+'.selectedIndex=0;')
 3655:       }
 3656:     }
 3657:   }
 3658: ENDPICK
 3659: }
 3660: 
 3661: sub csvupload_javascript_forward_associate {
 3662:     my $error1=&mt('You need to specify the username or ID');
 3663:     my $error2=&mt('You need to specify at least one grading field');
 3664:   return(<<ENDPICK);
 3665:   function verify(vf) {
 3666:     var foundsomething=0;
 3667:     var founduname=0;
 3668:     var foundID=0;
 3669:     for (i=0;i<=vf.nfields.value;i++) {
 3670:       tw=eval('vf.f'+i+'.selectedIndex');
 3671:       if (tw==1) { foundID=1; }
 3672:       if (tw==2) { founduname=1; }
 3673:       if (tw>3) { foundsomething=1; }
 3674:     }
 3675:     if (founduname==0 && foundID==0) {
 3676: 	alert('$error1');
 3677: 	return;
 3678:     }
 3679:     if (foundsomething==0) {
 3680: 	alert('$error2');
 3681: 	return;
 3682:     }
 3683:     vf.submit();
 3684:   }
 3685:   function flip(vf,tf) {
 3686:     var nw=eval('vf.f'+tf+'.selectedIndex');
 3687:     var i;
 3688:     //can not pick the same destination field twice
 3689:     for (i=0;i<=vf.nfields.value;i++) {
 3690:       if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
 3691:         eval('vf.f'+i+'.selectedIndex=0;')
 3692:       }
 3693:     }
 3694:   }
 3695: ENDPICK
 3696: }
 3697: 
 3698: sub csvuploadmap_header {
 3699:     my ($request,$symb,$datatoken,$distotal)= @_;
 3700:     my $javascript;
 3701:     if ($env{'form.upfile_associate'} eq 'reverse') {
 3702: 	$javascript=&csvupload_javascript_reverse_associate();
 3703:     } else {
 3704: 	$javascript=&csvupload_javascript_forward_associate();
 3705:     }
 3706: 
 3707:     my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
 3708:     my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
 3709:     my $ignore=&mt('Ignore First Line');
 3710:     $symb = &Apache::lonenc::check_encrypt($symb);
 3711:     $request->print(<<ENDPICK);
 3712: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
 3713: <h3><span class="LC_info">Uploading Class Grades</span></h3>
 3714: $result
 3715: <hr />
 3716: <h3>Identify fields</h3>
 3717: Total number of records found in file: $distotal <hr />
 3718: Enter as many fields as you can. The system will inform you and bring you back
 3719: to this page if the data selected is insufficient to run your class.<hr />
 3720: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
 3721: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
 3722: <input type="hidden" name="associate"  value="" />
 3723: <input type="hidden" name="phase"      value="three" />
 3724: <input type="hidden" name="datatoken"  value="$datatoken" />
 3725: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
 3726: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
 3727: <input type="hidden" name="upfile_associate" 
 3728:                                        value="$env{'form.upfile_associate'}" />
 3729: <input type="hidden" name="symb"       value="$symb" />
 3730: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
 3731: <input type="hidden" name="probTitle"  value="$env{'form.probTitle'}" />
 3732: <input type="hidden" name="command"    value="csvuploadoptions" />
 3733: <hr />
 3734: <script type="text/javascript" language="Javascript">
 3735: $javascript
 3736: </script>
 3737: ENDPICK
 3738:     return '';
 3739: 
 3740: }
 3741: 
 3742: sub csvupload_fields {
 3743:     my ($symb) = @_;
 3744:     my (@parts) = &getpartlist($symb);
 3745:     my @fields=(['ID','Student ID'],
 3746: 		['username','Student Username'],
 3747: 		['domain','Student Domain']);
 3748:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 3749:     foreach my $part (sort(@parts)) {
 3750: 	my @datum;
 3751: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
 3752: 	my $name=$part;
 3753: 	if  (!$display) { $display = $name; }
 3754: 	@datum=($name,$display);
 3755: 	if ($name=~/^stores_(.*)_awarded/) {
 3756: 	    push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
 3757: 	}
 3758: 	push(@fields,\@datum);
 3759:     }
 3760:     return (@fields);
 3761: }
 3762: 
 3763: sub csvuploadmap_footer {
 3764:     my ($request,$i,$keyfields) =@_;
 3765:     $request->print(<<ENDPICK);
 3766: </table>
 3767: <input type="hidden" name="nfields" value="$i" />
 3768: <input type="hidden" name="keyfields" value="$keyfields" />
 3769: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
 3770: </form>
 3771: ENDPICK
 3772: }
 3773: 
 3774: sub checkforfile_js {
 3775:     my $result =<<CSVFORMJS;
 3776: <script type="text/javascript" language="javascript">
 3777:     function checkUpload(formname) {
 3778: 	if (formname.upfile.value == "") {
 3779: 	    alert("Please use the browse button to select a file from your local directory.");
 3780: 	    return false;
 3781: 	}
 3782: 	formname.submit();
 3783:     }
 3784:     </script>
 3785: CSVFORMJS
 3786:     return $result;
 3787: }
 3788: 
 3789: sub upcsvScores_form {
 3790:     my ($request) = shift;
 3791:     my ($symb)=&get_symb($request);
 3792:     if (!$symb) {return '';}
 3793:     my $result=&checkforfile_js();
 3794:     $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
 3795:     my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
 3796:     $result.=$table;
 3797:     $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
 3798:     $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
 3799:     $result.='&nbsp;<b>'.&mt('Specify a file containing the class scores for current resource.').
 3800: 	'</b></td></tr>'."\n";
 3801:     $result.='<tr bgcolor=#ffffe6><td>'."\n";
 3802:     my $upload=&mt("Upload Scores");
 3803:     my $upfile_select=&Apache::loncommon::upfile_select_html();
 3804:     my $ignore=&mt('Ignore First Line');
 3805:     $symb = &Apache::lonenc::check_encrypt($symb);
 3806:     $result.=<<ENDUPFORM;
 3807: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
 3808: <input type="hidden" name="symb" value="$symb" />
 3809: <input type="hidden" name="command" value="csvuploadmap" />
 3810: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
 3811: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
 3812: $upfile_select
 3813: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
 3814: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
 3815: </form>
 3816: ENDUPFORM
 3817:     $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
 3818:                            &mt("How do I create a CSV file from a spreadsheet"))
 3819:     .'</td></tr></table>'."\n";
 3820:     $result.='</td></tr></table><br /><br />'."\n";
 3821:     $result.=&show_grading_menu_form($symb);
 3822:     return $result;
 3823: }
 3824: 
 3825: 
 3826: sub csvuploadmap {
 3827:     my ($request)= @_;
 3828:     my ($symb)=&get_symb($request);
 3829:     if (!$symb) {return '';}
 3830: 
 3831:     my $datatoken;
 3832:     if (!$env{'form.datatoken'}) {
 3833: 	$datatoken=&Apache::loncommon::upfile_store($request);
 3834:     } else {
 3835: 	$datatoken=$env{'form.datatoken'};
 3836: 	&Apache::loncommon::load_tmp_file($request);
 3837:     }
 3838:     my @records=&Apache::loncommon::upfile_record_sep();
 3839:     if ($env{'form.noFirstLine'}) { shift(@records); }
 3840:     &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
 3841:     my ($i,$keyfields);
 3842:     if (@records) {
 3843: 	my @fields=&csvupload_fields($symb);
 3844: 
 3845: 	if ($env{'form.upfile_associate'} eq 'reverse') {	
 3846: 	    &Apache::loncommon::csv_print_samples($request,\@records);
 3847: 	    $i=&Apache::loncommon::csv_print_select_table($request,\@records,
 3848: 							  \@fields);
 3849: 	    foreach (@fields) { $keyfields.=$_->[0].','; }
 3850: 	    chop($keyfields);
 3851: 	} else {
 3852: 	    unshift(@fields,['none','']);
 3853: 	    $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
 3854: 							    \@fields);
 3855:             foreach my $rec (@records) {
 3856:                 my %temp = &Apache::loncommon::record_sep($rec);
 3857:                 if (%temp) {
 3858:                     $keyfields=join(',',sort(keys(%temp)));
 3859:                     last;
 3860:                 }
 3861:             }
 3862: 	}
 3863:     }
 3864:     &csvuploadmap_footer($request,$i,$keyfields);
 3865:     $request->print(&show_grading_menu_form($symb));
 3866: 
 3867:     return '';
 3868: }
 3869: 
 3870: sub csvuploadoptions {
 3871:     my ($request)= @_;
 3872:     my ($symb)=&get_symb($request);
 3873:     my $checked=(($env{'form.noFirstLine'})?'1':'0');
 3874:     my $ignore=&mt('Ignore First Line');
 3875:     $request->print(<<ENDPICK);
 3876: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
 3877: <h3><span class="LC_info">Uploading Class Grade Options</span></h3>
 3878: <input type="hidden" name="command"    value="csvuploadassign" />
 3879: <!--
 3880: <p>
 3881: <label>
 3882:    <input type="checkbox" name="show_full_results" />
 3883:    Show a table of all changes
 3884: </label>
 3885: </p>
 3886: -->
 3887: <p>
 3888: <label>
 3889:    <input type="checkbox" name="overwite_scores" checked="checked" />
 3890:    Overwrite any existing score
 3891: </label>
 3892: </p>
 3893: ENDPICK
 3894:     my %fields=&get_fields();
 3895:     if (!defined($fields{'domain'})) {
 3896: 	my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
 3897: 	$request->print("\n<p> Users are in domain: ".$domform."</p>\n");
 3898:     }
 3899:     foreach my $key (sort(keys(%env))) {
 3900: 	if ($key !~ /^form\.(.*)$/) { next; }
 3901: 	my $cleankey=$1;
 3902: 	if ($cleankey eq 'command') { next; }
 3903: 	$request->print('<input type="hidden" name="'.$cleankey.
 3904: 			'"  value="'.$env{$key}.'" />'."\n");
 3905:     }
 3906:     # FIXME do a check for any duplicated user ids...
 3907:     # FIXME do a check for any invalid user ids?...
 3908:     $request->print('<input type="submit" value="Assign Grades" /><br />
 3909: <hr /></form>'."\n");
 3910:     $request->print(&show_grading_menu_form($symb));
 3911:     return '';
 3912: }
 3913: 
 3914: sub get_fields {
 3915:     my %fields;
 3916:     my @keyfields = split(/\,/,$env{'form.keyfields'});
 3917:     for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
 3918: 	if ($env{'form.upfile_associate'} eq 'reverse') {
 3919: 	    if ($env{'form.f'.$i} ne 'none') {
 3920: 		$fields{$keyfields[$i]}=$env{'form.f'.$i};
 3921: 	    }
 3922: 	} else {
 3923: 	    if ($env{'form.f'.$i} ne 'none') {
 3924: 		$fields{$env{'form.f'.$i}}=$keyfields[$i];
 3925: 	    }
 3926: 	}
 3927:     }
 3928:     return %fields;
 3929: }
 3930: 
 3931: sub csvuploadassign {
 3932:     my ($request)= @_;
 3933:     my ($symb)=&get_symb($request);
 3934:     if (!$symb) {return '';}
 3935:     my $error_msg = '';
 3936:     &Apache::loncommon::load_tmp_file($request);
 3937:     my @gradedata = &Apache::loncommon::upfile_record_sep();
 3938:     if ($env{'form.noFirstLine'}) { shift(@gradedata); }
 3939:     my %fields=&get_fields();
 3940:     $request->print('<h3>Assigning Grades</h3>');
 3941:     my $courseid=$env{'request.course.id'};
 3942:     my ($classlist) = &getclasslist('all',0);
 3943:     my @notallowed;
 3944:     my @skipped;
 3945:     my $countdone=0;
 3946:     foreach my $grade (@gradedata) {
 3947: 	my %entries=&Apache::loncommon::record_sep($grade);
 3948: 	my $domain;
 3949: 	if ($entries{$fields{'domain'}}) {
 3950: 	    $domain=$entries{$fields{'domain'}};
 3951: 	} else {
 3952: 	    $domain=$env{'form.default_domain'};
 3953: 	}
 3954: 	$domain=~s/\s//g;
 3955: 	my $username=$entries{$fields{'username'}};
 3956: 	$username=~s/\s//g;
 3957: 	if (!$username) {
 3958: 	    my $id=$entries{$fields{'ID'}};
 3959: 	    $id=~s/\s//g;
 3960: 	    my %ids=&Apache::lonnet::idget($domain,$id);
 3961: 	    $username=$ids{$id};
 3962: 	}
 3963: 	if (!exists($$classlist{"$username:$domain"})) {
 3964: 	    my $id=$entries{$fields{'ID'}};
 3965: 	    $id=~s/\s//g;
 3966: 	    if ($id) {
 3967: 		push(@skipped,"$id:$domain");
 3968: 	    } else {
 3969: 		push(@skipped,"$username:$domain");
 3970: 	    }
 3971: 	    next;
 3972: 	}
 3973: 	my $usec=$classlist->{"$username:$domain"}[5];
 3974: 	if (!&canmodify($usec)) {
 3975: 	    push(@notallowed,"$username:$domain");
 3976: 	    next;
 3977: 	}
 3978: 	my %points;
 3979: 	my %grades;
 3980: 	foreach my $dest (keys(%fields)) {
 3981: 	    if ($dest eq 'ID' || $dest eq 'username' ||
 3982: 		$dest eq 'domain') { next; }
 3983: 	    if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
 3984: 	    if ($dest=~/stores_(.*)_points/) {
 3985: 		my $part=$1;
 3986: 		my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
 3987: 					      $symb,$domain,$username);
 3988:                 if ($wgt) {
 3989:                     $entries{$fields{$dest}}=~s/\s//g;
 3990:                     my $pcr=$entries{$fields{$dest}} / $wgt;
 3991:                     my $award=($pcr == 0) ? 'incorrect_by_override'
 3992:                                           : 'correct_by_override';
 3993:                     $grades{"resource.$part.awarded"}=$pcr;
 3994:                     $grades{"resource.$part.solved"}=$award;
 3995:                     $points{$part}=1;
 3996:                 } else {
 3997:                     $error_msg = "<br />" .
 3998:                         &mt("Some point values were assigned"
 3999:                             ." for problems with a weight "
 4000:                             ."of zero. These values were "
 4001:                             ."ignored.");
 4002:                 }
 4003: 	    } else {
 4004: 		if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
 4005: 		if ($dest=~/stores_(.*)_solved/)  { if ($points{$1}) {next;} }
 4006: 		my $store_key=$dest;
 4007: 		$store_key=~s/^stores/resource/;
 4008: 		$store_key=~s/_/\./g;
 4009: 		$grades{$store_key}=$entries{$fields{$dest}};
 4010: 	    }
 4011: 	}
 4012: 	if (! %grades) { 
 4013:            push(@skipped,&mt("[_1]: no data to save","$username:$domain")); 
 4014:         } else {
 4015: 	   $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
 4016: 	   my $result=&Apache::lonnet::cstore(\%grades,$symb,
 4017: 					   $env{'request.course.id'},
 4018: 					   $domain,$username);
 4019: 	   if ($result eq 'ok') {
 4020: 	      $request->print('.');
 4021: 	   } else {
 4022: 	      $request->print("<p><span class=\"LC_error\">".
 4023:                               &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
 4024:                                   "$username:$domain",$result)."</span></p>");
 4025: 	   }
 4026: 	   $request->rflush();
 4027: 	   $countdone++;
 4028:         }
 4029:     }
 4030:     $request->print('<br /><span class="LC_info">'.&mt("Saved [_1] students",$countdone)."</span>\n");
 4031:     if (@skipped) {
 4032: 	$request->print('<p><span class="LC_warning">'.&mt('Skipped Students').'</span></p>');
 4033: 	foreach my $student (@skipped) { $request->print("$student<br />\n"); }
 4034:     }
 4035:     if (@notallowed) {
 4036: 	$request->print('<p><span class="LC_error">'.&mt('Students Not Allowed to Modify').'</span></p>');
 4037: 	foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
 4038:     }
 4039:     $request->print("<br />\n");
 4040:     $request->print(&show_grading_menu_form($symb));
 4041:     return $error_msg;
 4042: }
 4043: #------------- end of section for handling csv file upload ---------
 4044: #
 4045: #-------------------------------------------------------------------
 4046: #
 4047: #-------------- Next few routines handle grading by page/sequence
 4048: #
 4049: #--- Select a page/sequence and a student to grade
 4050: sub pickStudentPage {
 4051:     my ($request) = shift;
 4052: 
 4053:     $request->print(<<LISTJAVASCRIPT);
 4054: <script type="text/javascript" language="javascript">
 4055: 
 4056: function checkPickOne(formname) {
 4057:     if (radioSelection(formname.student) == null) {
 4058: 	alert("Please select the student you wish to grade.");
 4059: 	return;
 4060:     }
 4061:     ptr = pullDownSelection(formname.selectpage);
 4062:     formname.page.value = formname["page"+ptr].value;
 4063:     formname.title.value = formname["title"+ptr].value;
 4064:     formname.submit();
 4065: }
 4066: 
 4067: </script>
 4068: LISTJAVASCRIPT
 4069:     &commonJSfunctions($request);
 4070:     my ($symb) = &get_symb($request);
 4071:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
 4072:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
 4073:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
 4074: 
 4075:     my $result='<h3><span class="LC_info">&nbsp;'.
 4076: 	&mt('Manual Grading by Page or Sequence').'</span></h3>';
 4077: 
 4078:     $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
 4079:     my ($titles,$symbx) = &getSymbMap();
 4080:     my ($curpage) =&Apache::lonnet::decode_symb($symb); 
 4081: #    my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb); 
 4082: #    my $type=($curpage =~ /\.(page|sequence)/);
 4083:     my $select = '<select name="selectpage">'."\n";
 4084:     my $ctr=0;
 4085:     foreach (@$titles) {
 4086: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
 4087: 	$select.='<option value="'.$ctr.'" '.
 4088: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
 4089: 	    '>'.$showtitle.'</option>'."\n";
 4090: 	$ctr++;
 4091:     }
 4092:     $select.= '</select>';
 4093:     $result.=&mt('&nbsp;<b>Problems from:</b> [_1]',$select)."<br />\n";
 4094: 
 4095:     $ctr=0;
 4096:     foreach (@$titles) {
 4097: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
 4098: 	$result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
 4099: 	$result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
 4100: 	$ctr++;
 4101:     }
 4102:     $result.='<input type="hidden" name="page" />'."\n".
 4103: 	'<input type="hidden" name="title" />'."\n";
 4104: 
 4105:     my $options =
 4106: 	'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
 4107: 	'<label><input type="radio" name="vProb" value="yes" /> '.&mt('yes').' </label>'."<br />\n";
 4108:     $result.='&nbsp;'.&mt('<b>View Problems Text: </b> [_1]',$options);
 4109: 
 4110:     $options =
 4111: 	'<label><input type="radio" name="lastSub" value="none" /> '.&mt('none').' </label>'."\n".
 4112: 	'<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.&mt('by dates and submissions').'</label>'."\n".
 4113: 	'<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').' </label>'."\n";
 4114:     $result.='&nbsp;'.&mt('<b>Submission Details: </b>[_1]',$options);
 4115:     
 4116:     $result.=&build_section_inputs();
 4117:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
 4118:     $result.='<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
 4119: 	'<input type="hidden" name="command" value="displayPage" />'."\n".
 4120: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 4121: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
 4122: 
 4123:     $result.='&nbsp;'.&mt('<b>Use CODE: [_1] </b>',
 4124: 			  '<input type="text" name="CODE" value="" />').
 4125: 			      '<br />'."\n";
 4126: 
 4127:     $result.='&nbsp;<input type="button" '.
 4128: 	'onClick="javascript:checkPickOne(this.form);" value="'.&mt('Next-&gt;').'" /><br />'."\n";
 4129: 
 4130:     $request->print($result);
 4131: 
 4132:     my $studentTable.='&nbsp;<b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
 4133: 	&Apache::loncommon::start_data_table().
 4134: 	&Apache::loncommon::start_data_table_header_row().
 4135: 	'<th align="right">&nbsp;'.&mt('No.').'</th>'.
 4136: 	'<th>'.&nameUserString('header').'</th>'.
 4137: 	'<th align="right">&nbsp;'.&mt('No.').'</th>'.
 4138: 	'<th>'.&nameUserString('header').'</th>'.
 4139: 	&Apache::loncommon::end_data_table_header_row();
 4140:  
 4141:     my (undef,undef,$fullname) = &getclasslist($getsec,'1');
 4142:     my $ptr = 1;
 4143:     foreach my $student (sort 
 4144: 			 {
 4145: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
 4146: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
 4147: 			     }
 4148: 			     return $a cmp $b;
 4149: 			 } (keys(%$fullname))) {
 4150: 	my ($uname,$udom) = split(/:/,$student);
 4151: 	$studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
 4152:                                   : '</td>');
 4153: 	$studentTable.='<td align="right">'.$ptr.'&nbsp;</td>';
 4154: 	$studentTable.='<td>&nbsp;<label><input type="radio" name="student" value="'.$student.'" /> '
 4155: 	    .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
 4156: 	$studentTable.=
 4157: 	    ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row() 
 4158:                          : '');
 4159: 	$ptr++;
 4160:     }
 4161:     if ($ptr%2 == 0) {
 4162: 	$studentTable.='</td><td>&nbsp;</td><td>&nbsp;</td>'.
 4163: 	    &Apache::loncommon::end_data_table_row();
 4164:     }
 4165:     $studentTable.=&Apache::loncommon::end_data_table()."\n";
 4166:     $studentTable.='<input type="button" '.
 4167: 	'onClick="javascript:checkPickOne(this.form);" value="'.&mt('Next-&gt;').'" /></form>'."\n";
 4168: 
 4169:     $studentTable.=&show_grading_menu_form($symb);
 4170:     $request->print($studentTable);
 4171: 
 4172:     return '';
 4173: }
 4174: 
 4175: sub getSymbMap {
 4176:     my $navmap = Apache::lonnavmaps::navmap->new();
 4177: 
 4178:     my %symbx = ();
 4179:     my @titles = ();
 4180:     my $minder = 0;
 4181: 
 4182:     # Gather every sequence that has problems.
 4183:     my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
 4184: 					       1,0,1);
 4185:     for my $sequence ($navmap->getById('0.0'), @sequences) {
 4186: 	if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
 4187: 	    my $title = $minder.'.'.
 4188: 		&HTML::Entities::encode($sequence->compTitle(),'"\'&');
 4189: 	    push(@titles, $title); # minder in case two titles are identical
 4190: 	    $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
 4191: 	    $minder++;
 4192: 	}
 4193:     }
 4194:     return \@titles,\%symbx;
 4195: }
 4196: 
 4197: #
 4198: #--- Displays a page/sequence w/wo problems, w/wo submissions
 4199: sub displayPage {
 4200:     my ($request) = shift;
 4201: 
 4202:     my ($symb) = &get_symb($request);
 4203:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
 4204:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
 4205:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
 4206:     my $pageTitle = $env{'form.page'};
 4207:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
 4208:     my ($uname,$udom) = split(/:/,$env{'form.student'});
 4209:     my $usec=$classlist->{$env{'form.student'}}[5];
 4210: 
 4211:     #need to make sure we have the correct data for later EXT calls, 
 4212:     #thus invalidate the cache
 4213:     &Apache::lonnet::devalidatecourseresdata(
 4214:                  $env{'course.'.$env{'request.course.id'}.'.num'},
 4215:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
 4216:     &Apache::lonnet::clear_EXT_cache_status();
 4217: 
 4218:     if (!&canview($usec)) {
 4219: 	$request->print('<span class="LC_warning">'.&mt('Unable to view requested student. ([_1])',$env{'form.student'}).'</span>');
 4220: 	$request->print(&show_grading_menu_form($symb));
 4221: 	return;
 4222:     }
 4223:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
 4224:     $result.='<h3>&nbsp;'.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
 4225: 	'</h3>'."\n";
 4226:     $env{'form.CODE'} = uc($env{'form.CODE'});
 4227:     if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
 4228: 	$result.='<h3>&nbsp;'.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
 4229:     } else {
 4230: 	delete($env{'form.CODE'});
 4231:     }
 4232:     &sub_page_js($request);
 4233:     $request->print($result);
 4234: 
 4235:     my $navmap = Apache::lonnavmaps::navmap->new();
 4236:     my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
 4237:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
 4238:     if (!$map) {
 4239: 	$request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
 4240: 	$request->print(&show_grading_menu_form($symb));
 4241: 	return; 
 4242:     }
 4243:     my $iterator = $navmap->getIterator($map->map_start(),
 4244: 					$map->map_finish());
 4245: 
 4246:     my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
 4247: 	'<input type="hidden" name="command" value="gradeByPage" />'."\n".
 4248: 	'<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
 4249: 	'<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
 4250: 	'<input type="hidden" name="page"    value="'.$pageTitle.'" />'."\n".
 4251: 	'<input type="hidden" name="title"   value="'.$env{'form.title'}.'" />'."\n".
 4252: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 4253: 	'<input type="hidden" name="overRideScore" value="no" />'."\n".
 4254: 	'<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
 4255: 
 4256:     if (defined($env{'form.CODE'})) {
 4257: 	$studentTable.=
 4258: 	    '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
 4259:     }
 4260:     my $checkIcon = '<img alt="'.&mt('Check Mark').
 4261: 	'" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
 4262: 
 4263:     $studentTable.='&nbsp;'.&mt('<b>Note:</b> Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon)."\n".
 4264: 	&Apache::loncommon::start_data_table().
 4265: 	&Apache::loncommon::start_data_table_header_row().
 4266: 	'<th align="center">&nbsp;Prob.&nbsp;</th>'.
 4267: 	'<th>&nbsp;'.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
 4268: 	&Apache::loncommon::end_data_table_header_row();
 4269: 
 4270:     &Apache::lonxml::clear_problem_counter();
 4271:     my ($depth,$question,$prob) = (1,1,1);
 4272:     $iterator->next(); # skip the first BEGIN_MAP
 4273:     my $curRes = $iterator->next(); # for "current resource"
 4274:     while ($depth > 0) {
 4275:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
 4276:         if($curRes == $iterator->END_MAP) { $depth--; }
 4277: 
 4278:         if (ref($curRes) && $curRes->is_problem()) {
 4279: 	    my $parts = $curRes->parts();
 4280:             my $title = $curRes->compTitle();
 4281: 	    my $symbx = $curRes->symb();
 4282: 	    $studentTable.=
 4283: 		&Apache::loncommon::start_data_table_row().
 4284: 		'<td align="center" valign="top" >'.$prob.
 4285: 		(scalar(@{$parts}) == 1 ? '' 
 4286: 		                        : '<br />('.&mt('[_1]&nbsp;parts)',
 4287: 							scalar(@{$parts}))
 4288: 		 ).
 4289: 		 '</td>';
 4290: 	    $studentTable.='<td valign="top">';
 4291: 	    my %form = ('CODE' => $env{'form.CODE'},);
 4292: 	    if ($env{'form.vProb'} eq 'yes' ) {
 4293: 		$studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
 4294: 					     undef,'both',\%form);
 4295: 	    } else {
 4296: 		my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
 4297: 		$companswer =~ s|<form(.*?)>||g;
 4298: 		$companswer =~ s|</form>||g;
 4299: #		while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
 4300: #		    $companswer =~ s/$1/ /ms;
 4301: #		    $request->print('match='.$1."<br />\n");
 4302: #		}
 4303: #		$companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
 4304: 		$studentTable.='&nbsp;<b>'.$title.'</b>&nbsp;<br />&nbsp;'.&mt('<b>Correct answer:</b><br />[_1]',$companswer);
 4305: 	    }
 4306: 
 4307: 	    my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
 4308: 
 4309: 	    if ($env{'form.lastSub'} eq 'datesub') {
 4310: 		if ($record{'version'} eq '') {
 4311: 		    $studentTable.='<br />&nbsp;<span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
 4312: 		} else {
 4313: 		    my %responseType = ();
 4314: 		    foreach my $partid (@{$parts}) {
 4315: 			my @responseIds =$curRes->responseIds($partid);
 4316: 			my @responseType =$curRes->responseType($partid);
 4317: 			my %responseIds;
 4318: 			for (my $i=0;$i<=$#responseIds;$i++) {
 4319: 			    $responseIds{$responseIds[$i]}=$responseType[$i];
 4320: 			}
 4321: 			$responseType{$partid} = \%responseIds;
 4322: 		    }
 4323: 		    $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
 4324: 
 4325: 		}
 4326: 	    } elsif ($env{'form.lastSub'} eq 'all') {
 4327: 		my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
 4328: 		$studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
 4329: 									$env{'request.course.id'},
 4330: 									'','.submission');
 4331:  
 4332: 	    }
 4333: 	    if (&canmodify($usec)) {
 4334: 		foreach my $partid (@{$parts}) {
 4335: 		    $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
 4336: 		    $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
 4337: 		    $question++;
 4338: 		}
 4339: 		$prob++;
 4340: 	    }
 4341: 	    $studentTable.='</td></tr>';
 4342: 
 4343: 	}
 4344:         $curRes = $iterator->next();
 4345:     }
 4346: 
 4347:     $studentTable.='</table>'."\n".
 4348: 	'<input type="button" value="'.&mt('Save').'" '.
 4349: 	'onClick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
 4350: 	'</form>'."\n";
 4351:     $studentTable.=&show_grading_menu_form($symb);
 4352:     $request->print($studentTable);
 4353: 
 4354:     return '';
 4355: }
 4356: 
 4357: sub displaySubByDates {
 4358:     my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
 4359:     my $isCODE=0;
 4360:     my $isTask = ($symb =~/\.task$/);
 4361:     if (exists($record->{'resource.CODE'})) { $isCODE=1; }
 4362:     my $studentTable=&Apache::loncommon::start_data_table().
 4363: 	&Apache::loncommon::start_data_table_header_row().
 4364: 	'<th>'.&mt('Date/Time').'</th>'.
 4365: 	($isCODE?'<th>'.&mt('CODE').'</th>':'').
 4366: 	'<th>'.&mt('Submission').'</th>'.
 4367: 	'<th>'.&mt('Status').'</th>'.
 4368: 	&Apache::loncommon::end_data_table_header_row();
 4369:     my ($version);
 4370:     my %mark;
 4371:     my %orders;
 4372:     $mark{'correct_by_student'} = $checkIcon;
 4373:     if (!exists($$record{'1:timestamp'})) {
 4374: 	return '<br />&nbsp;<span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br />';
 4375:     }
 4376: 
 4377:     my $interaction;
 4378:     my $no_increment = 1;
 4379:     for ($version=1;$version<=$$record{'version'};$version++) {
 4380: 	my $timestamp = 
 4381: 	    &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
 4382: 	if (exists($$record{$version.':resource.0.version'})) {
 4383: 	    $interaction = $$record{$version.':resource.0.version'};
 4384: 	}
 4385: 
 4386: 	my $where = ($isTask ? "$version:resource.$interaction"
 4387: 		             : "$version:resource");
 4388: 	$studentTable.=&Apache::loncommon::start_data_table_row().
 4389: 	    '<td>'.$timestamp.'</td>';
 4390: 	if ($isCODE) {
 4391: 	    $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
 4392: 	}
 4393: 	my @versionKeys = split(/\:/,$$record{$version.':keys'});
 4394: 	my @displaySub = ();
 4395: 	foreach my $partid (@{$parts}) {
 4396: 	    my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
 4397: 			            : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
 4398: 	    
 4399: 
 4400: #	    next if ($$record{"$version:resource.$partid.solved"} eq '');
 4401: 	    my $display_part=&get_display_part($partid,$symb);
 4402: 	    foreach my $matchKey (@matchKey) {
 4403: 		if (exists($$record{$version.':'.$matchKey}) &&
 4404: 		    $$record{$version.':'.$matchKey} ne '') {
 4405: 
 4406: 		    my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
 4407: 				               : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
 4408: 		    $displaySub[0].='<b>'.&mt('Part:').'</b>&nbsp;'.$display_part.'&nbsp;';
 4409: 		    $displaySub[0].='<span class="LC_internal_info">('.&mt('ID').'&nbsp;'.
 4410: 			$responseId.')</span>&nbsp;<b>';
 4411: 		    if ($$record{"$where.$partid.tries"} eq '') {
 4412: 			$displaySub[0].=&mt('Trial&nbsp;not&nbsp;counted');
 4413: 		    } else {
 4414: 			$displaySub[0].=&mt('Trial&nbsp;[_1]',
 4415: 					    $$record{"$where.$partid.tries"});
 4416: 		    }
 4417: 		    my $responseType=($isTask ? 'Task'
 4418:                                               : $responseType->{$partid}->{$responseId});
 4419: 		    if (!exists($orders{$partid})) { $orders{$partid}={}; }
 4420: 		    if (!exists($orders{$partid}->{$responseId})) {
 4421: 			$orders{$partid}->{$responseId}=
 4422: 			    &get_order($partid,$responseId,$symb,$uname,$udom,
 4423:                                        $no_increment);
 4424: 		    }
 4425: 		    $displaySub[0].='</b>&nbsp; '.
 4426: 			&cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom).'<br />';
 4427: 		}
 4428: 	    }
 4429: 	    if (exists($$record{"$where.$partid.checkedin"})) {
 4430: 		$displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
 4431: 				    $$record{"$where.$partid.checkedin"},
 4432: 				    $$record{"$where.$partid.checkedin.slot"}).
 4433: 					'<br />';
 4434: 	    }
 4435: 	    if (exists $$record{"$where.$partid.award"}) {
 4436: 		$displaySub[1].='<b>'.&mt('Part:').'</b>&nbsp;'.$display_part.' &nbsp;'.
 4437: 		    lc($$record{"$where.$partid.award"}).' '.
 4438: 		    $mark{$$record{"$where.$partid.solved"}}.
 4439: 		    '<br />';
 4440: 	    }
 4441: 	    if (exists $$record{"$where.$partid.regrader"}) {
 4442: 		$displaySub[2].=$$record{"$where.$partid.regrader"}.
 4443: 		    ' (<b>'.&mt('Part').':</b> '.$display_part.')';
 4444: 	    } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
 4445: 		$displaySub[2].=
 4446: 		    $$record{"$version:resource.$partid.regrader"}.
 4447: 		    ' (<b>'.&mt('Part').':</b> '.$display_part.')';
 4448: 	    }
 4449: 	}
 4450: 	# needed because old essay regrader has not parts info
 4451: 	if (exists $$record{"$version:resource.regrader"}) {
 4452: 	    $displaySub[2].=$$record{"$version:resource.regrader"};
 4453: 	}
 4454: 	$studentTable.='<td>'.$displaySub[0].'&nbsp;</td><td>'.$displaySub[1];
 4455: 	if ($displaySub[2]) {
 4456: 	    $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
 4457: 	}
 4458: 	$studentTable.='&nbsp;</td>'.
 4459: 	    &Apache::loncommon::end_data_table_row();
 4460:     }
 4461:     $studentTable.=&Apache::loncommon::end_data_table();
 4462:     return $studentTable;
 4463: }
 4464: 
 4465: sub updateGradeByPage {
 4466:     my ($request) = shift;
 4467: 
 4468:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
 4469:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
 4470:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
 4471:     my $pageTitle = $env{'form.page'};
 4472:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
 4473:     my ($uname,$udom) = split(/:/,$env{'form.student'});
 4474:     my $usec=$classlist->{$env{'form.student'}}[5];
 4475:     if (!&canmodify($usec)) {
 4476: 	$request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
 4477: 	$request->print(&show_grading_menu_form($env{'form.symb'}));
 4478: 	return;
 4479:     }
 4480:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
 4481:     $result.='<h3>&nbsp;'.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
 4482: 	'</h3>'."\n";
 4483: 
 4484:     $request->print($result);
 4485: 
 4486:     my $navmap = Apache::lonnavmaps::navmap->new();
 4487:     my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
 4488:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
 4489:     if (!$map) {
 4490: 	$request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
 4491: 	my ($symb)=&get_symb($request);
 4492: 	$request->print(&show_grading_menu_form($symb));
 4493: 	return; 
 4494:     }
 4495:     my $iterator = $navmap->getIterator($map->map_start(),
 4496: 					$map->map_finish());
 4497: 
 4498:     my $studentTable=
 4499: 	&Apache::loncommon::start_data_table().
 4500: 	&Apache::loncommon::start_data_table_header_row().
 4501: 	'<th align="center">&nbsp;'.&mt('Prob.').'&nbsp;</th>'.
 4502: 	'<th>&nbsp;'.&mt('Title').'&nbsp;</th>'.
 4503: 	'<th>&nbsp;'.&mt('Previous Score').'&nbsp;</th>'.
 4504: 	'<th>&nbsp;'.&mt('New Score').'&nbsp;</th>'.
 4505: 	&Apache::loncommon::end_data_table_header_row();
 4506: 
 4507:     $iterator->next(); # skip the first BEGIN_MAP
 4508:     my $curRes = $iterator->next(); # for "current resource"
 4509:     my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
 4510:     while ($depth > 0) {
 4511:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
 4512:         if($curRes == $iterator->END_MAP) { $depth--; }
 4513: 
 4514:         if (ref($curRes) && $curRes->is_problem()) {
 4515: 	    my $parts = $curRes->parts();
 4516:             my $title = $curRes->compTitle();
 4517: 	    my $symbx = $curRes->symb();
 4518: 	    $studentTable.=
 4519: 		&Apache::loncommon::start_data_table_row().
 4520: 		'<td align="center" valign="top" >'.$prob.
 4521: 		(scalar(@{$parts}) == 1 ? '' 
 4522:                                         : '<br />('.&mt('[quant,_1,&nbsp;part]',scalar(@{$parts}))
 4523: 		.')').'</td>';
 4524: 	    $studentTable.='<td valign="top">&nbsp;<b>'.$title.'</b>&nbsp;</td>';
 4525: 
 4526: 	    my %newrecord=();
 4527: 	    my @displayPts=();
 4528:             my %aggregate = ();
 4529:             my $aggregateflag = 0;
 4530: 	    foreach my $partid (@{$parts}) {
 4531: 		my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
 4532: 		my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
 4533: 
 4534: 		my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ? 
 4535: 		    $env{'form.WGT'.$question.'_'.$partid} : 1;
 4536: 		my $partial = $newpts/$wgt;
 4537: 		my $score;
 4538: 		if ($partial > 0) {
 4539: 		    $score = 'correct_by_override';
 4540: 		} elsif ($newpts ne '') { #empty is taken as 0
 4541: 		    $score = 'incorrect_by_override';
 4542: 		}
 4543: 		my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
 4544: 		if ($dropMenu eq 'excused') {
 4545: 		    $partial = '';
 4546: 		    $score = 'excused';
 4547: 		} elsif ($dropMenu eq 'reset status'
 4548: 			 && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
 4549: 		    $newrecord{'resource.'.$partid.'.tries'} = 0;
 4550: 		    $newrecord{'resource.'.$partid.'.solved'} = '';
 4551: 		    $newrecord{'resource.'.$partid.'.award'} = '';
 4552: 		    $newrecord{'resource.'.$partid.'.awarded'} = 0;
 4553: 		    $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
 4554: 		    $changeflag++;
 4555: 		    $newpts = '';
 4556:                     
 4557:                     my $aggtries =  $env{'form.aggtries'.$question.'_'.$partid};
 4558:                     my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
 4559:                     my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
 4560:                     if ($aggtries > 0) {
 4561:                         &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
 4562:                         $aggregateflag = 1;
 4563:                     }
 4564: 		}
 4565: 		my $display_part=&get_display_part($partid,$curRes->symb());
 4566: 		my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
 4567: 		$displayPts[0].='&nbsp;<b>'.&mt('Part').':</b> '.$display_part.' = '.
 4568: 		    (($oldstatus eq 'excused') ? 'excused' : $oldpts).
 4569: 		    '&nbsp;<br />';
 4570: 		$displayPts[1].='&nbsp;<b>'.&mt('Part').':</b> '.$display_part.' = '.
 4571: 		     (($score eq 'excused') ? 'excused' : $newpts).
 4572: 		    '&nbsp;<br />';
 4573: 		$question++;
 4574: 		next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
 4575: 
 4576: 		$newrecord{'resource.'.$partid.'.awarded'}  = $partial if $partial ne '';
 4577: 		$newrecord{'resource.'.$partid.'.solved'}   = $score if $score ne '';
 4578: 		$newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
 4579: 		    if (scalar(keys(%newrecord)) > 0);
 4580: 
 4581: 		$changeflag++;
 4582: 	    }
 4583: 	    if (scalar(keys(%newrecord)) > 0) {
 4584: 		my %record = 
 4585: 		    &Apache::lonnet::restore($symbx,$env{'request.course.id'},
 4586: 					     $udom,$uname);
 4587: 
 4588: 		if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
 4589: 		    $newrecord{'resource.CODE'} = $env{'form.CODE'};
 4590: 		} elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
 4591: 		    $newrecord{'resource.CODE'} = '';
 4592: 		}
 4593: 		&Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
 4594: 					$udom,$uname);
 4595: 		%record = &Apache::lonnet::restore($symbx,
 4596: 						   $env{'request.course.id'},
 4597: 						   $udom,$uname);
 4598: 		&check_and_remove_from_queue($parts,\%record,undef,$symbx,
 4599: 					     $cdom,$cnum,$udom,$uname);
 4600: 	    }
 4601: 	    
 4602:             if ($aggregateflag) {
 4603:                 &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
 4604:                       $env{'course.'.$env{'request.course.id'}.'.domain'},
 4605:                       $env{'course.'.$env{'request.course.id'}.'.num'});
 4606:             }
 4607: 
 4608: 	    $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
 4609: 		'<td valign="top">'.$displayPts[1].'</td>'.
 4610: 		&Apache::loncommon::end_data_table_row();
 4611: 
 4612: 	    $prob++;
 4613: 	}
 4614:         $curRes = $iterator->next();
 4615:     }
 4616: 
 4617:     $studentTable.=&Apache::loncommon::end_data_table();
 4618:     $studentTable.=&show_grading_menu_form($env{'form.symb'});
 4619:     my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
 4620: 		  &mt('The scores were changed for [quant,_1,problem].',
 4621: 		  $changeflag));
 4622:     $request->print($grademsg.$studentTable);
 4623: 
 4624:     return '';
 4625: }
 4626: 
 4627: #-------- end of section for handling grading by page/sequence ---------
 4628: #
 4629: #-------------------------------------------------------------------
 4630: 
 4631: #--------------------Scantron Grading-----------------------------------
 4632: #
 4633: #------ start of section for handling grading by page/sequence ---------
 4634: 
 4635: =pod
 4636: 
 4637: =head1 Bubble sheet grading routines
 4638: 
 4639:   For this documentation:
 4640: 
 4641:    'scanline' refers to the full line of characters
 4642:    from the file that we are parsing that represents one entire sheet
 4643: 
 4644:    'bubble line' refers to the data
 4645:    representing the line of bubbles that are on the physical bubble sheet
 4646: 
 4647: 
 4648: The overall process is that a scanned in bubble sheet data is uploaded
 4649: into a course. When a user wants to grade, they select a
 4650: sequence/folder of resources, a file of bubble sheet info, and pick
 4651: one of the predefined configurations for what each scanline looks
 4652: like.
 4653: 
 4654: Next each scanline is checked for any errors of either 'missing
 4655: bubbles' (it's an error because it may have been mis-scanned
 4656: because too light bubbling), 'double bubble' (each bubble line should
 4657: have no more that one letter picked), invalid or duplicated CODE,
 4658: invalid student ID
 4659: 
 4660: If the CODE option is used that determines the randomization of the
 4661: homework problems, either way the student ID is looked up into a
 4662: username:domain.
 4663: 
 4664: During the validation phase the instructor can choose to skip scanlines. 
 4665: 
 4666: After the validation phase, there are now 3 bubble sheet files
 4667: 
 4668:   scantron_original_filename (unmodified original file)
 4669:   scantron_corrected_filename (file where the corrected information has replaced the original information)
 4670:   scantron_skipped_filename (contains the exact text of scanlines that where skipped)
 4671: 
 4672: Also there is a separate hash nohist_scantrondata that contains extra
 4673: correction information that isn't representable in the bubble sheet
 4674: file (see &scantron_getfile() for more information)
 4675: 
 4676: After all scanlines are either valid, marked as valid or skipped, then
 4677: foreach line foreach problem in the picked sequence, an ssi request is
 4678: made that simulates a user submitting their selected letter(s) against
 4679: the homework problem.
 4680: 
 4681: =over 4
 4682: 
 4683: 
 4684: 
 4685: =item defaultFormData
 4686: 
 4687:   Returns html hidden inputs used to hold context/default values.
 4688: 
 4689:  Arguments:
 4690:   $symb - $symb of the current resource 
 4691: 
 4692: =cut
 4693: 
 4694: sub defaultFormData {
 4695:     my ($symb)=@_;
 4696:     return '<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 4697:      '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
 4698:      '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
 4699: }
 4700: 
 4701: 
 4702: =pod 
 4703: 
 4704: =item getSequenceDropDown
 4705: 
 4706:    Return html dropdown of possible sequences to grade
 4707:  
 4708:  Arguments:
 4709:    $symb - $symb of the current resource 
 4710: 
 4711: =cut
 4712: 
 4713: sub getSequenceDropDown {
 4714:     my ($symb)=@_;
 4715:     my $result='<select name="selectpage">'."\n";
 4716:     my ($titles,$symbx) = &getSymbMap();
 4717:     my ($curpage)=&Apache::lonnet::decode_symb($symb); 
 4718:     my $ctr=0;
 4719:     foreach (@$titles) {
 4720: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
 4721: 	$result.='<option value="'.$$symbx{$_}.'" '.
 4722: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
 4723: 	    '>'.$showtitle.'</option>'."\n";
 4724: 	$ctr++;
 4725:     }
 4726:     $result.= '</select>';
 4727:     return $result;
 4728: }
 4729: 
 4730: my %bubble_lines_per_response;     # no. bubble lines for each response.
 4731:                                    # index is "symb.part_id"
 4732: 
 4733: my %first_bubble_line;             # First bubble line no. for each bubble.
 4734: 
 4735: my %subdivided_bubble_lines;       # no. bubble lines for optionresponse, 
 4736:                                    # matchresponse or rankresponse, where 
 4737:                                    # an individual response can have multiple 
 4738:                                    # lines
 4739: 
 4740: my %responsetype_per_response;     # responsetype for each response
 4741: 
 4742: # Save and restore the bubble lines array to the form env.
 4743: 
 4744: 
 4745: sub save_bubble_lines {
 4746:     foreach my $line (keys(%bubble_lines_per_response)) {
 4747: 	$env{"form.scantron.bubblelines.$line"}  = $bubble_lines_per_response{$line};
 4748: 	$env{"form.scantron.first_bubble_line.$line"} =
 4749: 	    $first_bubble_line{$line};
 4750:         $env{"form.scantron.sub_bubblelines.$line"} = 
 4751:             $subdivided_bubble_lines{$line};
 4752:         $env{"form.scantron.responsetype.$line"} =
 4753:             $responsetype_per_response{$line};
 4754:     }
 4755: }
 4756: 
 4757: 
 4758: sub restore_bubble_lines {
 4759:     my $line = 0;
 4760:     %bubble_lines_per_response = ();
 4761:     while ($env{"form.scantron.bubblelines.$line"}) {
 4762: 	my $value = $env{"form.scantron.bubblelines.$line"};
 4763: 	$bubble_lines_per_response{$line} = $value;
 4764: 	$first_bubble_line{$line}  =
 4765: 	    $env{"form.scantron.first_bubble_line.$line"};
 4766:         $subdivided_bubble_lines{$line} =
 4767:             $env{"form.scantron.sub_bubblelines.$line"};
 4768:         $responsetype_per_response{$line} =
 4769:             $env{"form.scantron.responsetype.$line"};
 4770: 	$line++;
 4771:     }
 4772: 
 4773: }
 4774: 
 4775: #  Given the parsed scanline, get the response for 
 4776: #  'answer' number n:
 4777: 
 4778: sub get_response_bubbles {
 4779:     my ($parsed_line, $response)  = @_;
 4780: 
 4781: 
 4782:     my $bubble_line = $first_bubble_line{$response-1} +1;
 4783:     my $bubble_lines= $bubble_lines_per_response{$response-1};
 4784:     
 4785:     my $selected = "";
 4786: 
 4787:     for (my $bline = 0; $bline < $bubble_lines; $bline++) {
 4788: 	$selected .= $$parsed_line{"scantron.$bubble_line.answer"}.":";
 4789: 	$bubble_line++;
 4790:     }
 4791:     return $selected;
 4792: }
 4793: 
 4794: =pod 
 4795: 
 4796: =item scantron_filenames
 4797: 
 4798:    Returns a list of the scantron files in the current course 
 4799: 
 4800: =cut
 4801: 
 4802: sub scantron_filenames {
 4803:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 4804:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 4805:     my $getpropath = 1;
 4806:     my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
 4807:                                        $getpropath);
 4808:     my @possiblenames;
 4809:     foreach my $filename (sort(@files)) {
 4810: 	($filename)=split(/&/,$filename);
 4811: 	if ($filename!~/^scantron_orig_/) { next ; }
 4812: 	$filename=~s/^scantron_orig_//;
 4813: 	push(@possiblenames,$filename);
 4814:     }
 4815:     return @possiblenames;
 4816: }
 4817: 
 4818: =pod 
 4819: 
 4820: =item scantron_uploads
 4821: 
 4822:    Returns  html drop-down list of scantron files in current course.
 4823: 
 4824:  Arguments:
 4825:    $file2grade - filename to set as selected in the dropdown
 4826: 
 4827: =cut
 4828: 
 4829: sub scantron_uploads {
 4830:     my ($file2grade) = @_;
 4831:     my $result=	'<select name="scantron_selectfile">';
 4832:     $result.="<option></option>";
 4833:     foreach my $filename (sort(&scantron_filenames())) {
 4834: 	$result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
 4835:     }
 4836:     $result.="</select>";
 4837:     return $result;
 4838: }
 4839: 
 4840: =pod 
 4841: 
 4842: =item scantron_scantab
 4843: 
 4844:   Returns html drop down of the scantron formats in the scantronformat.tab
 4845:   file.
 4846: 
 4847: =cut
 4848: 
 4849: sub scantron_scantab {
 4850:     my $result='<select name="scantron_format">'."\n";
 4851:     $result.='<option></option>'."\n";
 4852:     my @lines = &get_scantronformat_file();
 4853:     if (@lines > 0) {
 4854:         foreach my $line (@lines) {
 4855:             next if (($line =~ /^\#/) || ($line eq ''));
 4856: 	    my ($name,$descrip)=split(/:/,$line);
 4857: 	    $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
 4858:         }
 4859:     }
 4860:     $result.='</select>'."\n";
 4861:     return $result;
 4862: }
 4863: 
 4864: =pod
 4865: 
 4866: =item get_scantronformat_file
 4867: 
 4868:   Returns an array containing lines from the scantron format file for
 4869:   the domain of the course.
 4870: 
 4871:   If a url for a custom.tab file is listed in domain's configuration.db, 
 4872:   lines are from this file.
 4873: 
 4874:   Otherwise, if a default.tab has been published in RES space by the 
 4875:   domainconfig user, lines are from this file.
 4876: 
 4877:   Otherwise, fall back to getting lines from the legacy file on the
 4878:   local server:  /home/httpd/lonTabs/default_scantronformat.tab    
 4879: 
 4880: =cut
 4881: 
 4882: sub get_scantronformat_file {
 4883:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
 4884:     my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
 4885:     my $gottab = 0;
 4886:     my @lines;
 4887:     if (ref($domconfig{'scantron'}) eq 'HASH') {
 4888:         if ($domconfig{'scantron'}{'scantronformat'} ne '') {
 4889:             my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
 4890:             if ($formatfile ne '-1') {
 4891:                 @lines = split("\n",$formatfile,-1);
 4892:                 $gottab = 1;
 4893:             }
 4894:         }
 4895:     }
 4896:     if (!$gottab) {
 4897:         my $confname = $cdom.'-domainconfig';
 4898:         my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
 4899:         my $formatfile =  &Apache::lonnet::getfile($default);
 4900:         if ($formatfile ne '-1') {
 4901:             @lines = split("\n",$formatfile,-1);
 4902:             $gottab = 1;
 4903:         }
 4904:     }
 4905:     if (!$gottab) {
 4906:         my @domains = &Apache::lonnet::current_machine_domains();
 4907:         if (grep(/^\Q$cdom\E$/,@domains)) {
 4908:             my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
 4909:             @lines = <$fh>;
 4910:             close($fh);
 4911:         } else {
 4912:             my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
 4913:             @lines = <$fh>;
 4914:             close($fh);
 4915:         }
 4916:     }
 4917:     return @lines;
 4918: }
 4919: 
 4920: =pod 
 4921: 
 4922: =item scantron_CODElist
 4923: 
 4924:   Returns html drop down of the saved CODE lists from current course,
 4925:   generated from earlier printings.
 4926: 
 4927: =cut
 4928: 
 4929: sub scantron_CODElist {
 4930:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 4931:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 4932:     my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
 4933:     my $namechoice='<option></option>';
 4934:     foreach my $name (sort {uc($a) cmp uc($b)} @names) {
 4935: 	if ($name =~ /^error: 2 /) { next; }
 4936: 	if ($name =~ /^type\0/) { next; }
 4937: 	$namechoice.='<option value="'.$name.'">'.$name.'</option>';
 4938:     }
 4939:     $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
 4940:     return $namechoice;
 4941: }
 4942: 
 4943: =pod 
 4944: 
 4945: =item scantron_CODEunique
 4946: 
 4947:   Returns the html for "Each CODE to be used once" radio.
 4948: 
 4949: =cut
 4950: 
 4951: sub scantron_CODEunique {
 4952:     my $result='<span class="LC_nobreak">
 4953:                  <label><input type="radio" name="scantron_CODEunique"
 4954:                         value="yes" checked="checked" />'.&mt('Yes').' </label>
 4955:                 </span>
 4956:                 <span class="LC_nobreak">
 4957:                  <label><input type="radio" name="scantron_CODEunique"
 4958:                         value="no" />'.&mt('No').' </label>
 4959:                 </span>';
 4960:     return $result;
 4961: }
 4962: 
 4963: =pod 
 4964: 
 4965: =item scantron_selectphase
 4966: 
 4967:   Generates the initial screen to start the bubble sheet process.
 4968:   Allows for - starting a grading run.
 4969:              - downloading existing scan data (original, corrected
 4970:                                                 or skipped info)
 4971: 
 4972:              - uploading new scan data
 4973: 
 4974:  Arguments:
 4975:   $r          - The Apache request object
 4976:   $file2grade - name of the file that contain the scanned data to score
 4977: 
 4978: =cut
 4979: 
 4980: sub scantron_selectphase {
 4981:     my ($r,$file2grade) = @_;
 4982:     my ($symb)=&get_symb($r);
 4983:     if (!$symb) {return '';}
 4984:     my $sequence_selector=&getSequenceDropDown($symb);
 4985:     my $default_form_data=&defaultFormData($symb);
 4986:     my $grading_menu_button=&show_grading_menu_form($symb);
 4987:     my $file_selector=&scantron_uploads($file2grade);
 4988:     my $format_selector=&scantron_scantab();
 4989:     my $CODE_selector=&scantron_CODElist();
 4990:     my $CODE_unique=&scantron_CODEunique();
 4991:     my $result;
 4992: 
 4993:     $ssi_error = 0;
 4994: 
 4995:     # Chunk of form to prompt for a file to grade and how:
 4996: 
 4997:     $result.= '
 4998:     <br />
 4999:     <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
 5000:     <input type="hidden" name="command" value="scantron_warning" />
 5001:     '.$default_form_data.'
 5002:     '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 5003:        '.&Apache::loncommon::start_data_table_header_row().'
 5004:             <th colspan="2">
 5005:               &nbsp;'.&mt('Specify file and which Folder/Sequence to grade').'
 5006:             </th>
 5007:        '.&Apache::loncommon::end_data_table_header_row().'
 5008:        '.&Apache::loncommon::start_data_table_row().'
 5009:             <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
 5010:        '.&Apache::loncommon::end_data_table_row().'
 5011:        '.&Apache::loncommon::start_data_table_row().'
 5012:             <td> '.&mt('Filename of scoring office file:').' </td><td> '.$file_selector.' </td>
 5013:        '.&Apache::loncommon::end_data_table_row().'
 5014:        '.&Apache::loncommon::start_data_table_row().'
 5015:             <td> '.&mt('Format of data file:').' </td><td> '.$format_selector.' </td>
 5016:        '.&Apache::loncommon::end_data_table_row().'
 5017:        '.&Apache::loncommon::start_data_table_row().'
 5018:             <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
 5019:        '.&Apache::loncommon::end_data_table_row().'
 5020:        '.&Apache::loncommon::start_data_table_row().'
 5021:             <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
 5022:        '.&Apache::loncommon::end_data_table_row().'
 5023:        '.&Apache::loncommon::start_data_table_row().'
 5024: 	    <td> '.&mt('Options:').' </td>
 5025:             <td>
 5026: 	       <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
 5027:                <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
 5028:                <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
 5029: 	    </td>
 5030:        '.&Apache::loncommon::end_data_table_row().'
 5031:        '.&Apache::loncommon::start_data_table_row().'
 5032:             <td colspan="2">
 5033:               <input type="submit" value="'.&mt('Grading: Validate Scantron Records').'" />
 5034:             </td>
 5035:        '.&Apache::loncommon::end_data_table_row().'
 5036:     '.&Apache::loncommon::end_data_table().'
 5037:     </form>
 5038: ';
 5039:    
 5040:     $r->print($result);
 5041: 
 5042:     if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
 5043:         &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
 5044: 
 5045: 	# Chunk of form to prompt for a scantron file upload.
 5046: 
 5047:         $r->print('
 5048:     <br />
 5049:     '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 5050:        '.&Apache::loncommon::start_data_table_header_row().'
 5051:             <th>
 5052:               &nbsp;'.&mt('Specify a Scantron data file to upload.').'
 5053:             </th>
 5054:        '.&Apache::loncommon::end_data_table_header_row().'
 5055:        '.&Apache::loncommon::start_data_table_row().'
 5056:             <td>
 5057: ');
 5058:     my $default_form_data=&defaultFormData(&get_symb($r,1));
 5059:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
 5060:     my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
 5061:     $r->print('
 5062:               <script type="text/javascript" language="javascript">
 5063:     function checkUpload(formname) {
 5064: 	if (formname.upfile.value == "") {
 5065: 	    alert("'.&mt('Please use the browse button to select a file from your local directory.').'");
 5066: 	    return false;
 5067: 	}
 5068: 	formname.submit();
 5069:     }
 5070:               </script>
 5071: 
 5072:               <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
 5073:                 '.$default_form_data.'
 5074:                 <input name="courseid" type="hidden" value="'.$cnum.'" />
 5075:                 <input name="domainid" type="hidden" value="'.$cdom.'" />
 5076:                 <input name="command" value="scantronupload_save" type="hidden" />
 5077:                 '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
 5078:                 <br />
 5079:                 <input type="button" onClick="javascript:checkUpload(this.form);" value="'.&mt('Upload Scantron Data').'" />
 5080:               </form>
 5081: ');
 5082: 
 5083:         $r->print('
 5084:             </td>
 5085:        '.&Apache::loncommon::end_data_table_row().'
 5086:        '.&Apache::loncommon::end_data_table().'
 5087: ');
 5088:     }
 5089: 
 5090:     # Chunk of the form that prompts to view a scoring office file,
 5091:     # corrected file, skipped records in a file.
 5092: 
 5093:     $r->print('
 5094:    <br />
 5095:    <form action="/adm/grades" name="scantron_download">
 5096:      '.$default_form_data.'
 5097:      <input type="hidden" name="command" value="scantron_download" />
 5098:      '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 5099:        '.&Apache::loncommon::start_data_table_header_row().'
 5100:               <th>
 5101:                 &nbsp;'.&mt('Download a scoring office file').'
 5102:               </th>
 5103:        '.&Apache::loncommon::end_data_table_header_row().'
 5104:        '.&Apache::loncommon::start_data_table_row().'
 5105:               <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).' 
 5106:                 <br />
 5107:                 <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
 5108:        '.&Apache::loncommon::end_data_table_row().'
 5109:      '.&Apache::loncommon::end_data_table().'
 5110:    </form>
 5111:    <br />
 5112: ');
 5113: 
 5114:     &Apache::lonpickcode::code_list($r,2);
 5115: 
 5116:     $r->print('<br /><form method="post" name="checkscantron">'.
 5117:              $default_form_data."\n".
 5118:              &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
 5119:              &Apache::loncommon::start_data_table_header_row()."\n".
 5120:              '<th colspan="2">
 5121:               &nbsp;'.&mt('Review scantron data and submissions for a previously graded folder/sequence')."\n".
 5122:              '</th>'."\n".
 5123:               &Apache::loncommon::end_data_table_header_row()."\n".
 5124:               &Apache::loncommon::start_data_table_row()."\n".
 5125:               '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
 5126:               '<td> '.$sequence_selector.' </td>'.
 5127:               &Apache::loncommon::end_data_table_row()."\n".
 5128:               &Apache::loncommon::start_data_table_row()."\n".
 5129:               '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
 5130:               '<td> '.$file_selector.' </td>'."\n".
 5131:               &Apache::loncommon::end_data_table_row()."\n".
 5132:               &Apache::loncommon::start_data_table_row()."\n".
 5133:               '<td> '.&mt('Format of data file:').' </td>'."\n".
 5134:               '<td> '.$format_selector.' </td>'."\n".
 5135:               &Apache::loncommon::end_data_table_row()."\n".
 5136:               &Apache::loncommon::start_data_table_row()."\n".
 5137:               '<td colspan="2">'."\n".
 5138:               '<input type="hidden" name="command" value="checksubmissions" />'."\n".
 5139:               '<input type="submit" value="'.&mt('Review Scantron Data and Submission Records').'" />'."\n".
 5140:               '</td>'."\n".
 5141:               &Apache::loncommon::end_data_table_row()."\n".
 5142:               &Apache::loncommon::end_data_table()."\n".
 5143:               '</form><br />');
 5144:     $r->print($grading_menu_button);
 5145:     return;
 5146: }
 5147: 
 5148: =pod
 5149: 
 5150: =item get_scantron_config
 5151: 
 5152:    Parse and return the scantron configuration line selected as a
 5153:    hash of configuration file fields.
 5154: 
 5155:  Arguments:
 5156:     which - the name of the configuration to parse from the file.
 5157: 
 5158: 
 5159:  Returns:
 5160:             If the named configuration is not in the file, an empty
 5161:             hash is returned.
 5162:     a hash with the fields
 5163:       name         - internal name for the this configuration setup
 5164:       description  - text to display to operator that describes this config
 5165:       CODElocation - if 0 or the string 'none'
 5166:                           - no CODE exists for this config
 5167:                      if -1 || the string 'letter'
 5168:                           - a CODE exists for this config and is
 5169:                             a string of letters
 5170:                      Unsupported value (but planned for future support)
 5171:                           if a positive integer
 5172:                                - The CODE exists as the first n items from
 5173:                                  the question section of the form
 5174:                           if the string 'number'
 5175:                                - The CODE exists for this config and is
 5176:                                  a string of numbers
 5177:       CODEstart   - (only matter if a CODE exists) column in the line where
 5178:                      the CODE starts
 5179:       CODElength  - length of the CODE
 5180:       IDstart     - column where the student ID number starts
 5181:       IDlength    - length of the student ID info
 5182:       Qstart      - column where the information from the bubbled
 5183:                     'questions' start
 5184:       Qlength     - number of columns comprising a single bubble line from
 5185:                     the sheet. (usually either 1 or 10)
 5186:       Qon         - either a single character representing the character used
 5187:                     to signal a bubble was chosen in the positional setup, or
 5188:                     the string 'letter' if the letter of the chosen bubble is
 5189:                     in the final, or 'number' if a number representing the
 5190:                     chosen bubble is in the file (1->A 0->J)
 5191:       Qoff        - the character used to represent that a bubble was
 5192:                     left blank
 5193:       PaperID     - if the scanning process generates a unique number for each
 5194:                     sheet scanned the column that this ID number starts in
 5195:       PaperIDlength - number of columns that comprise the unique ID number
 5196:                       for the sheet of paper
 5197:       FirstName   - column that the first name starts in
 5198:       FirstNameLength - number of columns that the first name spans
 5199:  
 5200:       LastName    - column that the last name starts in
 5201:       LastNameLength - number of columns that the last name spans
 5202: 
 5203: =cut
 5204: 
 5205: sub get_scantron_config {
 5206:     my ($which) = @_;
 5207:     my @lines = &get_scantronformat_file();
 5208:     my %config;
 5209:     #FIXME probably should move to XML it has already gotten a bit much now
 5210:     foreach my $line (@lines) {
 5211: 	my ($name,$descrip)=split(/:/,$line);
 5212: 	if ($name ne $which ) { next; }
 5213: 	chomp($line);
 5214: 	my @config=split(/:/,$line);
 5215: 	$config{'name'}=$config[0];
 5216: 	$config{'description'}=$config[1];
 5217: 	$config{'CODElocation'}=$config[2];
 5218: 	$config{'CODEstart'}=$config[3];
 5219: 	$config{'CODElength'}=$config[4];
 5220: 	$config{'IDstart'}=$config[5];
 5221: 	$config{'IDlength'}=$config[6];
 5222: 	$config{'Qstart'}=$config[7];
 5223:  	$config{'Qlength'}=$config[8];
 5224: 	$config{'Qoff'}=$config[9];
 5225: 	$config{'Qon'}=$config[10];
 5226: 	$config{'PaperID'}=$config[11];
 5227: 	$config{'PaperIDlength'}=$config[12];
 5228: 	$config{'FirstName'}=$config[13];
 5229: 	$config{'FirstNamelength'}=$config[14];
 5230: 	$config{'LastName'}=$config[15];
 5231: 	$config{'LastNamelength'}=$config[16];
 5232: 	last;
 5233:     }
 5234:     return %config;
 5235: }
 5236: 
 5237: =pod 
 5238: 
 5239: =item username_to_idmap
 5240: 
 5241:     creates a hash keyed by student id with values of the corresponding
 5242:     student username:domain.
 5243: 
 5244:   Arguments:
 5245: 
 5246:     $classlist - reference to the class list hash. This is a hash
 5247:                  keyed by student name:domain  whose elements are references
 5248:                  to arrays containing various chunks of information
 5249:                  about the student. (See loncoursedata for more info).
 5250: 
 5251:   Returns
 5252:     %idmap - the constructed hash
 5253: 
 5254: =cut
 5255: 
 5256: sub username_to_idmap {
 5257:     my ($classlist)= @_;
 5258:     my %idmap;
 5259:     foreach my $student (keys(%$classlist)) {
 5260: 	$idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
 5261: 	    $student;
 5262:     }
 5263:     return %idmap;
 5264: }
 5265: 
 5266: =pod
 5267: 
 5268: =item scantron_fixup_scanline
 5269: 
 5270:    Process a requested correction to a scanline.
 5271: 
 5272:   Arguments:
 5273:     $scantron_config   - hash from &get_scantron_config()
 5274:     $scan_data         - hash of correction information 
 5275:                           (see &scantron_getfile())
 5276:     $line              - existing scanline
 5277:     $whichline         - line number of the passed in scanline
 5278:     $field             - type of change to process 
 5279:                          (either 
 5280:                           'ID'     -> correct the student ID number
 5281:                           'CODE'   -> correct the CODE
 5282:                           'answer' -> fixup the submitted answers)
 5283:     
 5284:    $args               - hash of additional info,
 5285:                           - 'ID' 
 5286:                                'newid' -> studentID to use in replacement
 5287:                                           of existing one
 5288:                           - 'CODE' 
 5289:                                'CODE_ignore_dup' - set to true if duplicates
 5290:                                                    should be ignored.
 5291: 	                       'CODE' - is new code or 'use_unfound'
 5292:                                         if the existing unfound code should
 5293:                                         be used as is
 5294:                           - 'answer'
 5295:                                'response' - new answer or 'none' if blank
 5296:                                'question' - the bubble line to change
 5297:                                'questionnum' - the question identifier,
 5298:                                                may include subquestion. 
 5299: 
 5300:   Returns:
 5301:     $line - the modified scanline
 5302: 
 5303:   Side effects: 
 5304:     $scan_data - may be updated
 5305: 
 5306: =cut
 5307: 
 5308: 
 5309: sub scantron_fixup_scanline {
 5310:     my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
 5311:     if ($field eq 'ID') {
 5312: 	if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
 5313: 	    return ($line,1,'New value too large');
 5314: 	}
 5315: 	if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
 5316: 	    $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
 5317: 				     $args->{'newid'});
 5318: 	}
 5319: 	substr($line,$$scantron_config{'IDstart'}-1,
 5320: 	       $$scantron_config{'IDlength'})=$args->{'newid'};
 5321: 	if ($args->{'newid'}=~/^\s*$/) {
 5322: 	    &scan_data($scan_data,"$whichline.user",
 5323: 		       $args->{'username'}.':'.$args->{'domain'});
 5324: 	}
 5325:     } elsif ($field eq 'CODE') {
 5326: 	if ($args->{'CODE_ignore_dup'}) {
 5327: 	    &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
 5328: 	}
 5329: 	&scan_data($scan_data,"$whichline.useCODE",'1');
 5330: 	if ($args->{'CODE'} ne 'use_unfound') {
 5331: 	    if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
 5332: 		return ($line,1,'New CODE value too large');
 5333: 	    }
 5334: 	    if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
 5335: 		$args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
 5336: 	    }
 5337: 	    substr($line,$$scantron_config{'CODEstart'}-1,
 5338: 		   $$scantron_config{'CODElength'})=$args->{'CODE'};
 5339: 	}
 5340:     } elsif ($field eq 'answer') {
 5341: 	my $length=$scantron_config->{'Qlength'};
 5342: 	my $off=$scantron_config->{'Qoff'};
 5343: 	my $on=$scantron_config->{'Qon'};
 5344: 	my $answer=${off}x$length;
 5345: 	if ($args->{'response'} eq 'none') {
 5346: 	    &scan_data($scan_data,
 5347: 		       "$whichline.no_bubble.".$args->{'questionnum'},'1');
 5348: 	} else {
 5349: 	    if ($on eq 'letter') {
 5350: 		my @alphabet=('A'..'Z');
 5351: 		$answer=$alphabet[$args->{'response'}];
 5352: 	    } elsif ($on eq 'number') {
 5353: 		$answer=$args->{'response'}+1;
 5354: 		if ($answer == 10) { $answer = '0'; }
 5355: 	    } else {
 5356: 		substr($answer,$args->{'response'},1)=$on;
 5357: 	    }
 5358: 	    &scan_data($scan_data,
 5359: 		       "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
 5360: 	}
 5361: 	my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
 5362: 	substr($line,$where-1,$length)=$answer;
 5363:     }
 5364:     return $line;
 5365: }
 5366: 
 5367: =pod
 5368: 
 5369: =item scan_data
 5370: 
 5371:     Edit or look up  an item in the scan_data hash.
 5372: 
 5373:   Arguments:
 5374:     $scan_data  - The hash (see scantron_getfile)
 5375:     $key        - shorthand of the key to edit (actual key is
 5376:                   scantronfilename_key).
 5377:     $data        - New value of the hash entry.
 5378:     $delete      - If true, the entry is removed from the hash.
 5379: 
 5380:   Returns:
 5381:     The new value of the hash table field (undefined if deleted).
 5382: 
 5383: =cut
 5384: 
 5385: 
 5386: sub scan_data {
 5387:     my ($scan_data,$key,$value,$delete)=@_;
 5388:     my $filename=$env{'form.scantron_selectfile'};
 5389:     if (defined($value)) {
 5390: 	$scan_data->{$filename.'_'.$key} = $value;
 5391:     }
 5392:     if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
 5393:     return $scan_data->{$filename.'_'.$key};
 5394: }
 5395: 
 5396: # ----- These first few routines are general use routines.----
 5397: 
 5398: # Return the number of occurences of a pattern in a string.
 5399: 
 5400: sub occurence_count {
 5401:     my ($string, $pattern) = @_;
 5402: 
 5403:     my @matches = ($string =~ /$pattern/g);
 5404: 
 5405:     return scalar(@matches);
 5406: }
 5407: 
 5408: 
 5409: # Take a string known to have digits and convert all the
 5410: # digits into letters in the range J,A..I.
 5411: 
 5412: sub digits_to_letters {
 5413:     my ($input) = @_;
 5414: 
 5415:     my @alphabet = ('J', 'A'..'I');
 5416: 
 5417:     my @input    = split(//, $input);
 5418:     my $output ='';
 5419:     for (my $i = 0; $i < scalar(@input); $i++) {
 5420: 	if ($input[$i] =~ /\d/) {
 5421: 	    $output .= $alphabet[$input[$i]];
 5422: 	} else {
 5423: 	    $output .= $input[$i];
 5424: 	}
 5425:     }
 5426:     return $output;
 5427: }
 5428: 
 5429: =pod 
 5430: 
 5431: =item scantron_parse_scanline
 5432: 
 5433:   Decodes a scanline from the selected scantron file
 5434: 
 5435:  Arguments:
 5436:     line             - The text of the scantron file line to process
 5437:     whichline        - Line number
 5438:     scantron_config  - Hash describing the format of the scantron lines.
 5439:     scan_data        - Hash of extra information about the scanline
 5440:                        (see scantron_getfile for more information)
 5441:     just_header      - True if should not process question answers but only
 5442:                        the stuff to the left of the answers.
 5443:  Returns:
 5444:    Hash containing the result of parsing the scanline
 5445: 
 5446:    Keys are all proceeded by the string 'scantron.'
 5447: 
 5448:        CODE    - the CODE in use for this scanline
 5449:        useCODE - 1 if the CODE is invalid but it usage has been forced
 5450:                  by the operator
 5451:        CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
 5452:                             CODEs were selected, but the usage has been
 5453:                             forced by the operator
 5454:        ID  - student ID
 5455:        PaperID - if used, the ID number printed on the sheet when the 
 5456:                  paper was scanned
 5457:        FirstName - first name from the sheet
 5458:        LastName  - last name from the sheet
 5459: 
 5460:      if just_header was not true these key may also exist
 5461: 
 5462:        missingerror - a list of bubble ranges that are considered to be answers
 5463:                       to a single question that don't have any bubbles filled in.
 5464:                       Of the form questionnumber:firstbubblenumber:count.
 5465:        doubleerror  - a list of bubble ranges that are considered to be answers
 5466:                       to a single question that have more than one bubble filled in.
 5467:                       Of the form questionnumber::firstbubblenumber:count
 5468:    
 5469:                 In the above, count is the number of bubble responses in the
 5470:                 input line needed to represent the possible answers to the question.
 5471:                 e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
 5472:                 per line would have count = 2.
 5473: 
 5474:        maxquest     - the number of the last bubble line that was parsed
 5475: 
 5476:        (<number> starts at 1)
 5477:        <number>.answer - zero or more letters representing the selected
 5478:                          letters from the scanline for the bubble line 
 5479:                          <number>.
 5480:                          if blank there was either no bubble or there where
 5481:                          multiple bubbles, (consult the keys missingerror and
 5482:                          doubleerror if this is an error condition)
 5483: 
 5484: =cut
 5485: 
 5486: sub scantron_parse_scanline {
 5487:     my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
 5488: 
 5489:     my %record;
 5490:     my $questions=substr($line,$$scantron_config{'Qstart'}-1);  # Answers
 5491:     my $data=substr($line,0,$$scantron_config{'Qstart'}-1);     # earlier stuff
 5492:     if (!($$scantron_config{'CODElocation'} eq 0 ||
 5493: 	  $$scantron_config{'CODElocation'} eq 'none')) {
 5494: 	if ($$scantron_config{'CODElocation'} < 0 ||
 5495: 	    $$scantron_config{'CODElocation'} eq 'letter' ||
 5496: 	    $$scantron_config{'CODElocation'} eq 'number') {
 5497: 	    $record{'scantron.CODE'}=substr($data,
 5498: 					    $$scantron_config{'CODEstart'}-1,
 5499: 					    $$scantron_config{'CODElength'});
 5500: 	    if (&scan_data($scan_data,"$whichline.useCODE")) {
 5501: 		$record{'scantron.useCODE'}=1;
 5502: 	    }
 5503: 	    if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
 5504: 		$record{'scantron.CODE_ignore_dup'}=1;
 5505: 	    }
 5506: 	} else {
 5507: 	    #FIXME interpret first N questions
 5508: 	}
 5509:     }
 5510:     $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
 5511: 				  $$scantron_config{'IDlength'});
 5512:     $record{'scantron.PaperID'}=
 5513: 	substr($data,$$scantron_config{'PaperID'}-1,
 5514: 	       $$scantron_config{'PaperIDlength'});
 5515:     $record{'scantron.FirstName'}=
 5516: 	substr($data,$$scantron_config{'FirstName'}-1,
 5517: 	       $$scantron_config{'FirstNamelength'});
 5518:     $record{'scantron.LastName'}=
 5519: 	substr($data,$$scantron_config{'LastName'}-1,
 5520: 	       $$scantron_config{'LastNamelength'});
 5521:     if ($just_header) { return \%record; }
 5522: 
 5523:     my @alphabet=('A'..'Z');
 5524:     my $questnum=0;
 5525:     my $ansnum  =1;		# Multiple 'answer lines'/question.
 5526: 
 5527:     chomp($questions);		# Get rid of any trailing \n.
 5528:     $questions =~ s/\r$//;      # Get rid of trailing \r too (MAC or Win uploads).
 5529:     while (length($questions)) {
 5530: 	my $answers_needed = $bubble_lines_per_response{$questnum};
 5531:         my $answer_length  = ($$scantron_config{'Qlength'} * $answers_needed)
 5532:                              || 1;
 5533:         $questnum++;
 5534:         my $quest_id = $questnum;
 5535:         my $currentquest = substr($questions,0,$answer_length);
 5536:         $questions       = substr($questions,$answer_length);
 5537:         if (length($currentquest) < $answer_length) { next; }
 5538: 
 5539:         if ($subdivided_bubble_lines{$questnum-1} =~ /,/) {
 5540:             my $subquestnum = 1;
 5541:             my $subquestions = $currentquest;
 5542:             my @subanswers_needed = 
 5543:                 split(/,/,$subdivided_bubble_lines{$questnum-1});  
 5544:             foreach my $subans (@subanswers_needed) {
 5545:                 my $subans_length =
 5546:                     ($$scantron_config{'Qlength'} * $subans)  || 1;
 5547:                 my $currsubquest = substr($subquestions,0,$subans_length);
 5548:                 $subquestions   = substr($subquestions,$subans_length);
 5549:                 $quest_id = "$questnum.$subquestnum";
 5550:                 if (($$scantron_config{'Qon'} eq 'letter') ||
 5551:                     ($$scantron_config{'Qon'} eq 'number')) {
 5552:                     $ansnum = &scantron_validator_lettnum($ansnum, 
 5553:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,
 5554:                         \@alphabet,\%record,$scantron_config,$scan_data);
 5555:                 } else {
 5556:                     $ansnum = &scantron_validator_positional($ansnum,
 5557:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,                        \@alphabet,\%record,$scantron_config,$scan_data);
 5558:                 }
 5559:                 $subquestnum ++;
 5560:             }
 5561:         } else {
 5562:             if (($$scantron_config{'Qon'} eq 'letter') ||
 5563:                 ($$scantron_config{'Qon'} eq 'number')) {
 5564:                 $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
 5565:                     $quest_id,$answers_needed,$currentquest,$whichline,
 5566:                     \@alphabet,\%record,$scantron_config,$scan_data);
 5567:             } else {
 5568:                 $ansnum = &scantron_validator_positional($ansnum,$questnum,
 5569:                     $quest_id,$answers_needed,$currentquest,$whichline,
 5570:                     \@alphabet,\%record,$scantron_config,$scan_data);
 5571:             }
 5572:         }
 5573:     }
 5574:     $record{'scantron.maxquest'}=$questnum;
 5575:     return \%record;
 5576: }
 5577: 
 5578: sub scantron_validator_lettnum {
 5579:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
 5580:         $alphabet,$record,$scantron_config,$scan_data) = @_;
 5581: 
 5582:     # Qon 'letter' implies for each slot in currquest we have:
 5583:     #    ? or * for doubles, a letter in A-Z for a bubble, and
 5584:     #    about anything else (esp. a value of Qoff) for missing
 5585:     #    bubbles.
 5586:     #
 5587:     # Qon 'number' implies each slot gives a digit that indexes the
 5588:     #    bubbles filled, or Qoff, or a non-number for unbubbled lines,
 5589:     #    and * or ? for double bubbles on a single line.
 5590:     #
 5591: 
 5592:     my $matchon;
 5593:     if ($$scantron_config{'Qon'} eq 'letter') {
 5594:         $matchon = '[A-Z]';
 5595:     } elsif ($$scantron_config{'Qon'} eq 'number') {
 5596:         $matchon = '\d';
 5597:     }
 5598:     my $occurrences = 0;
 5599:     if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
 5600:         ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
 5601:         ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
 5602:         ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
 5603:         ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
 5604:         ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
 5605:         my @singlelines = split('',$currquest);
 5606:         foreach my $entry (@singlelines) {
 5607:             $occurrences = &occurence_count($entry,$matchon);
 5608:             if ($occurrences > 1) {
 5609:                 last;
 5610:             }
 5611:         } 
 5612:     } else {
 5613:         $occurrences = &occurence_count($currquest,$matchon); 
 5614:     }
 5615:     if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
 5616:         push(@{$record->{'scantron.doubleerror'}},$quest_id);
 5617:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 5618:             my $bubble = substr($currquest,$ans,1);
 5619:             if ($bubble =~ /$matchon/ ) {
 5620:                 if ($$scantron_config{'Qon'} eq 'number') {
 5621:                     if ($bubble == 0) {
 5622:                         $bubble = 10; 
 5623:                     }
 5624:                     $record->{"scantron.$ansnum.answer"} = 
 5625:                         $alphabet->[$bubble-1];
 5626:                 } else {
 5627:                     $record->{"scantron.$ansnum.answer"} = $bubble;
 5628:                 }
 5629:             } else {
 5630:                 $record->{"scantron.$ansnum.answer"}='';
 5631:             }
 5632:             $ansnum++;
 5633:         }
 5634:     } elsif (!defined($currquest)
 5635:             || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
 5636:             || (&occurence_count($currquest,$matchon) == 0)) {
 5637:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
 5638:             $record->{"scantron.$ansnum.answer"}='';
 5639:             $ansnum++;
 5640:         }
 5641:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
 5642:             push(@{$record->{'scantron.missingerror'}},$quest_id);
 5643:         }
 5644:     } else {
 5645:         if ($$scantron_config{'Qon'} eq 'number') {
 5646:             $currquest = &digits_to_letters($currquest);            
 5647:         }
 5648:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 5649:             my $bubble = substr($currquest,$ans,1);
 5650:             $record->{"scantron.$ansnum.answer"} = $bubble;
 5651:             $ansnum++;
 5652:         }
 5653:     }
 5654:     return $ansnum;
 5655: }
 5656: 
 5657: sub scantron_validator_positional {
 5658:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
 5659:         $whichline,$alphabet,$record,$scantron_config,$scan_data) = @_;
 5660: 
 5661:     # Otherwise there's a positional notation;
 5662:     # each bubble line requires Qlength items, and there are filled in
 5663:     # bubbles for each case where there 'Qon' characters.
 5664:     #
 5665: 
 5666:     my @array=split($$scantron_config{'Qon'},$currquest,-1);
 5667: 
 5668:     # If the split only gives us one element.. the full length of the
 5669:     # answer string, no bubbles are filled in:
 5670: 
 5671:     if ($answers_needed eq '') {
 5672:         return;
 5673:     }
 5674: 
 5675:     if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
 5676:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
 5677:             $record->{"scantron.$ansnum.answer"}='';
 5678:             $ansnum++;
 5679:         }
 5680:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
 5681:             push(@{$record->{"scantron.missingerror"}},$quest_id);
 5682:         }
 5683:     } elsif (scalar(@array) == 2) {
 5684:         my $location = length($array[0]);
 5685:         my $line_num = int($location / $$scantron_config{'Qlength'});
 5686:         my $bubble   = $alphabet->[$location % $$scantron_config{'Qlength'}];
 5687:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 5688:             if ($ans eq $line_num) {
 5689:                 $record->{"scantron.$ansnum.answer"} = $bubble;
 5690:             } else {
 5691:                 $record->{"scantron.$ansnum.answer"} = ' ';
 5692:             }
 5693:             $ansnum++;
 5694:          }
 5695:     } else {
 5696:         #  If there's more than one instance of a bubble character
 5697:         #  That's a double bubble; with positional notation we can
 5698:         #  record all the bubbles filled in as well as the
 5699:         #  fact this response consists of multiple bubbles.
 5700:         #
 5701:         if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
 5702:             ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
 5703:             ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
 5704:             ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
 5705:             ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
 5706:             ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
 5707:             my $doubleerror = 0;
 5708:             while (($currquest >= $$scantron_config{'Qlength'}) && 
 5709:                    (!$doubleerror)) {
 5710:                my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
 5711:                $currquest = substr($currquest,$$scantron_config{'Qlength'});
 5712:                my @currarray = split($$scantron_config{'Qon'},$currline,-1);
 5713:                if (length(@currarray) > 2) {
 5714:                    $doubleerror = 1;
 5715:                } 
 5716:             }
 5717:             if ($doubleerror) {
 5718:                 push(@{$record->{'scantron.doubleerror'}},$quest_id);
 5719:             }
 5720:         } else {
 5721:             push(@{$record->{'scantron.doubleerror'}},$quest_id);
 5722:         }
 5723:         my $item = $ansnum;
 5724:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 5725:             $record->{"scantron.$item.answer"} = '';
 5726:             $item ++;
 5727:         }
 5728: 
 5729:         my @ans=@array;
 5730:         my $i=0;
 5731:         my $increment = 0;
 5732:         while ($#ans) {
 5733:             $i+=length($ans[0]) + $increment;
 5734:             my $line   = int($i/$$scantron_config{'Qlength'} + $ansnum);
 5735:             my $bubble = $i%$$scantron_config{'Qlength'};
 5736:             $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
 5737:             shift(@ans);
 5738:             $increment = 1;
 5739:         }
 5740:         $ansnum += $answers_needed;
 5741:     }
 5742:     return $ansnum;
 5743: }
 5744: 
 5745: =pod
 5746: 
 5747: =item scantron_add_delay
 5748: 
 5749:    Adds an error message that occurred during the grading phase to a
 5750:    queue of messages to be shown after grading pass is complete
 5751: 
 5752:  Arguments:
 5753:    $delayqueue  - arrary ref of hash ref of error messages
 5754:    $scanline    - the scanline that caused the error
 5755:    $errormesage - the error message
 5756:    $errorcode   - a numeric code for the error
 5757: 
 5758:  Side Effects:
 5759:    updates the $delayqueue to have a new hash ref of the error
 5760: 
 5761: =cut
 5762: 
 5763: sub scantron_add_delay {
 5764:     my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
 5765:     push(@$delayqueue,
 5766: 	 {'line' => $scanline, 'emsg' => $errormessage,
 5767: 	  'ecode' => $errorcode }
 5768: 	 );
 5769: }
 5770: 
 5771: =pod
 5772: 
 5773: =item scantron_find_student
 5774: 
 5775:    Finds the username for the current scanline
 5776: 
 5777:   Arguments:
 5778:    $scantron_record - hash result from scantron_parse_scanline
 5779:    $scan_data       - hash of correction information 
 5780:                       (see &scantron_getfile() form more information)
 5781:    $idmap           - hash from &username_to_idmap()
 5782:    $line            - number of current scanline
 5783:  
 5784:   Returns:
 5785:    Either 'username:domain' or undef if unknown
 5786: 
 5787: =cut
 5788: 
 5789: sub scantron_find_student {
 5790:     my ($scantron_record,$scan_data,$idmap,$line)=@_;
 5791:     my $scanID=$$scantron_record{'scantron.ID'};
 5792:     if ($scanID =~ /^\s*$/) {
 5793:  	return &scan_data($scan_data,"$line.user");
 5794:     }
 5795:     foreach my $id (keys(%$idmap)) {
 5796:  	if (lc($id) eq lc($scanID)) {
 5797:  	    return $$idmap{$id};
 5798:  	}
 5799:     }
 5800:     return undef;
 5801: }
 5802: 
 5803: =pod
 5804: 
 5805: =item scantron_filter
 5806: 
 5807:    Filter sub for lonnavmaps, filters out hidden resources if ignore
 5808:    hidden resources was selected
 5809: 
 5810: =cut
 5811: 
 5812: sub scantron_filter {
 5813:     my ($curres)=@_;
 5814: 
 5815:     if (ref($curres) && $curres->is_problem()) {
 5816: 	# if the user has asked to not have either hidden
 5817: 	# or 'randomout' controlled resources to be graded
 5818: 	# don't include them
 5819: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
 5820: 	    && $curres->randomout) {
 5821: 	    return 0;
 5822: 	}
 5823: 	return 1;
 5824:     }
 5825:     return 0;
 5826: }
 5827: 
 5828: =pod
 5829: 
 5830: =item scantron_process_corrections
 5831: 
 5832:    Gets correction information out of submitted form data and corrects
 5833:    the scanline
 5834: 
 5835: =cut
 5836: 
 5837: sub scantron_process_corrections {
 5838:     my ($r) = @_;
 5839:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 5840:     my ($scanlines,$scan_data)=&scantron_getfile();
 5841:     my $classlist=&Apache::loncoursedata::get_classlist();
 5842:     my $which=$env{'form.scantron_line'};
 5843:     my $line=&scantron_get_line($scanlines,$scan_data,$which);
 5844:     my ($skip,$err,$errmsg);
 5845:     if ($env{'form.scantron_skip_record'}) {
 5846: 	$skip=1;
 5847:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
 5848: 	my $newstudent=$env{'form.scantron_username'}.':'.
 5849: 	    $env{'form.scantron_domain'};
 5850: 	my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
 5851: 	($line,$err,$errmsg)=
 5852: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
 5853: 				     'ID',{'newid'=>$newid,
 5854: 				    'username'=>$env{'form.scantron_username'},
 5855: 				    'domain'=>$env{'form.scantron_domain'}});
 5856:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
 5857: 	my $resolution=$env{'form.scantron_CODE_resolution'};
 5858: 	my $newCODE;
 5859: 	my %args;
 5860: 	if      ($resolution eq 'use_unfound') {
 5861: 	    $newCODE='use_unfound';
 5862: 	} elsif ($resolution eq 'use_found') {
 5863: 	    $newCODE=$env{'form.scantron_CODE_selectedvalue'};
 5864: 	} elsif ($resolution eq 'use_typed') {
 5865: 	    $newCODE=$env{'form.scantron_CODE_newvalue'};
 5866: 	} elsif ($resolution =~ /^use_closest_(\d+)/) {
 5867: 	    $newCODE=$env{"form.scantron_CODE_closest_$1"};
 5868: 	}
 5869: 	if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
 5870: 	    $args{'CODE_ignore_dup'}=1;
 5871: 	}
 5872: 	$args{'CODE'}=$newCODE;
 5873: 	($line,$err,$errmsg)=
 5874: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
 5875: 				     'CODE',\%args);
 5876:     } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
 5877: 	foreach my $question (split(',',$env{'form.scantron_questions'})) {
 5878: 	    ($line,$err,$errmsg)=
 5879: 		&scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
 5880: 					 $which,'answer',
 5881: 					 { 'question'=>$question,
 5882: 		      		   'response'=>$env{"form.scantron_correct_Q_$question"},
 5883:                                    'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
 5884: 	    if ($err) { last; }
 5885: 	}
 5886:     }
 5887:     if ($err) {
 5888: 	$r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
 5889:     } else {
 5890: 	&scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
 5891: 	&scantron_putfile($scanlines,$scan_data);
 5892:     }
 5893: }
 5894: 
 5895: =pod
 5896: 
 5897: =item reset_skipping_status
 5898: 
 5899:    Forgets the current set of remember skipped scanlines (and thus
 5900:    reverts back to considering all lines in the
 5901:    scantron_skipped_<filename> file)
 5902: 
 5903: =cut
 5904: 
 5905: sub reset_skipping_status {
 5906:     my ($scanlines,$scan_data)=&scantron_getfile();
 5907:     &scan_data($scan_data,'remember_skipping',undef,1);
 5908:     &scantron_putfile(undef,$scan_data);
 5909: }
 5910: 
 5911: =pod
 5912: 
 5913: =item start_skipping
 5914: 
 5915:    Marks a scanline to be skipped. 
 5916: 
 5917: =cut
 5918: 
 5919: sub start_skipping {
 5920:     my ($scan_data,$i)=@_;
 5921:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
 5922:     if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
 5923: 	$remembered{$i}=2;
 5924:     } else {
 5925: 	$remembered{$i}=1;
 5926:     }
 5927:     &scan_data($scan_data,'remember_skipping',join(':',%remembered));
 5928: }
 5929: 
 5930: =pod
 5931: 
 5932: =item should_be_skipped
 5933: 
 5934:    Checks whether a scanline should be skipped.
 5935: 
 5936: =cut
 5937: 
 5938: sub should_be_skipped {
 5939:     my ($scanlines,$scan_data,$i)=@_;
 5940:     if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
 5941: 	# not redoing old skips
 5942: 	if ($scanlines->{'skipped'}[$i]) { return 1; }
 5943: 	return 0;
 5944:     }
 5945:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
 5946: 
 5947:     if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
 5948: 	return 0;
 5949:     }
 5950:     return 1;
 5951: }
 5952: 
 5953: =pod
 5954: 
 5955: =item remember_current_skipped
 5956: 
 5957:    Discovers what scanlines are in the scantron_skipped_<filename>
 5958:    file and remembers them into scan_data for later use.
 5959: 
 5960: =cut
 5961: 
 5962: sub remember_current_skipped {
 5963:     my ($scanlines,$scan_data)=&scantron_getfile();
 5964:     my %to_remember;
 5965:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 5966: 	if ($scanlines->{'skipped'}[$i]) {
 5967: 	    $to_remember{$i}=1;
 5968: 	}
 5969:     }
 5970: 
 5971:     &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
 5972:     &scantron_putfile(undef,$scan_data);
 5973: }
 5974: 
 5975: =pod
 5976: 
 5977: =item check_for_error
 5978: 
 5979:     Checks if there was an error when attempting to remove a specific
 5980:     scantron_.. bubble sheet data file. Prints out an error if
 5981:     something went wrong.
 5982: 
 5983: =cut
 5984: 
 5985: sub check_for_error {
 5986:     my ($r,$result)=@_;
 5987:     if ($result ne 'ok' && $result ne 'not_found' ) {
 5988: 	$r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
 5989:     }
 5990: }
 5991: 
 5992: =pod
 5993: 
 5994: =item scantron_warning_screen
 5995: 
 5996:    Interstitial screen to make sure the operator has selected the
 5997:    correct options before we start the validation phase.
 5998: 
 5999: =cut
 6000: 
 6001: sub scantron_warning_screen {
 6002:     my ($button_text)=@_;
 6003:     my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
 6004:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 6005:     my $CODElist;
 6006:     if ($scantron_config{'CODElocation'} &&
 6007: 	$scantron_config{'CODEstart'} &&
 6008: 	$scantron_config{'CODElength'}) {
 6009: 	$CODElist=$env{'form.scantron_CODElist'};
 6010: 	if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
 6011: 	$CODElist=
 6012: 	    '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
 6013: 	    $env{'form.scantron_CODElist'}.'</tt></td></tr>';
 6014:     }
 6015:     return ('
 6016: <p>
 6017: <span class="LC_warning">
 6018: '.&mt('Please double check the information below before clicking on \'[_1]\'',&mt($button_text)).'</span>
 6019: </p>
 6020: <table>
 6021: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
 6022: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
 6023: '.$CODElist.'
 6024: </table>
 6025: <br />
 6026: <p> '.&mt('If this information is correct, please click on \'[_1]\'.',&mt($button_text)).'</p>
 6027: <p> '.&mt('If something is incorrect, please click the \'Grading Menu\' button to start over.').'</p>
 6028: 
 6029: <br />
 6030: ');
 6031: }
 6032: 
 6033: =pod
 6034: 
 6035: =item scantron_do_warning
 6036: 
 6037:    Check if the operator has picked something for all required
 6038:    fields. Error out if something is missing.
 6039: 
 6040: =cut
 6041: 
 6042: sub scantron_do_warning {
 6043:     my ($r)=@_;
 6044:     my ($symb)=&get_symb($r);
 6045:     if (!$symb) {return '';}
 6046:     my $default_form_data=&defaultFormData($symb);
 6047:     $r->print(&scantron_form_start().$default_form_data);
 6048:     if ( $env{'form.selectpage'} eq '' ||
 6049: 	 $env{'form.scantron_selectfile'} eq '' ||
 6050: 	 $env{'form.scantron_format'} eq '' ) {
 6051: 	$r->print("<p>".&mt('You have forgetten to specify some information. Please go Back and try again.')."</p>");
 6052: 	if ( $env{'form.selectpage'} eq '') {
 6053: 	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
 6054: 	} 
 6055: 	if ( $env{'form.scantron_selectfile'} eq '') {
 6056: 	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a file that contains the student\'s response data.').'</span></p>');
 6057: 	} 
 6058: 	if ( $env{'form.scantron_format'} eq '') {
 6059: 	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a the format of the student\'s response data.').'</span></p>');
 6060: 	} 
 6061:     } else {
 6062: 	my $warning=&scantron_warning_screen('Grading: Validate Records');
 6063: 	$r->print('
 6064: '.$warning.'
 6065: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
 6066: <input type="hidden" name="command" value="scantron_validate" />
 6067: ');
 6068:     }
 6069:     $r->print("</form><br />".&show_grading_menu_form($symb));
 6070:     return '';
 6071: }
 6072: 
 6073: =pod
 6074: 
 6075: =item scantron_form_start
 6076: 
 6077:     html hidden input for remembering all selected grading options
 6078: 
 6079: =cut
 6080: 
 6081: sub scantron_form_start {
 6082:     my ($max_bubble)=@_;
 6083:     my $result= <<SCANTRONFORM;
 6084: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
 6085:   <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
 6086:   <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
 6087:   <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
 6088:   <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
 6089:   <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
 6090:   <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
 6091:   <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
 6092:   <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
 6093:   <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
 6094: SCANTRONFORM
 6095: 
 6096:   my $line = 0;
 6097:     while (defined($env{"form.scantron.bubblelines.$line"})) {
 6098:        my $chunk =
 6099: 	   '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
 6100:        $chunk .=
 6101: 	   '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
 6102:        $chunk .= 
 6103:            '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
 6104:        $chunk .=
 6105:            '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
 6106:        $result .= $chunk;
 6107:        $line++;
 6108:    }
 6109:     return $result;
 6110: }
 6111: 
 6112: =pod
 6113: 
 6114: =item scantron_validate_file
 6115: 
 6116:     Dispatch routine for doing validation of a bubble sheet data file.
 6117: 
 6118:     Also processes any necessary information resets that need to
 6119:     occur before validation begins (ignore previous corrections,
 6120:     restarting the skipped records processing)
 6121: 
 6122: =cut
 6123: 
 6124: sub scantron_validate_file {
 6125:     my ($r) = @_;
 6126:     my ($symb)=&get_symb($r);
 6127:     if (!$symb) {return '';}
 6128:     my $default_form_data=&defaultFormData($symb);
 6129:     
 6130:     # do the detection of only doing skipped records first befroe we delete
 6131:     # them when doing the corrections reset
 6132:     if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
 6133: 	&reset_skipping_status();
 6134:     }
 6135:     if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
 6136: 	&remember_current_skipped();
 6137: 	$env{'form.scantron_options_redo'}='redo_skipped_ready';
 6138:     }
 6139: 
 6140:     if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
 6141: 	&check_for_error($r,&scantron_remove_file('corrected'));
 6142: 	&check_for_error($r,&scantron_remove_file('skipped'));
 6143: 	&check_for_error($r,&scantron_remove_scan_data());
 6144: 	$env{'form.scantron_options_ignore'}='done';
 6145:     }
 6146: 
 6147:     if ($env{'form.scantron_corrections'}) {
 6148: 	&scantron_process_corrections($r);
 6149:     }
 6150:     $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
 6151:     #get the student pick code ready
 6152:     $r->print(&Apache::loncommon::studentbrowser_javascript());
 6153:     my $max_bubble=&scantron_get_maxbubble();
 6154:     my $result=&scantron_form_start($max_bubble).$default_form_data;
 6155:     $r->print($result);
 6156:     
 6157:     my @validate_phases=( 'sequence',
 6158: 			  'ID',
 6159: 			  'CODE',
 6160: 			  'doublebubble',
 6161: 			  'missingbubbles');
 6162:     if (!$env{'form.validatepass'}) {
 6163: 	$env{'form.validatepass'} = 0;
 6164:     }
 6165:     my $currentphase=$env{'form.validatepass'};
 6166: 
 6167: 
 6168:     my $stop=0;
 6169:     while (!$stop && $currentphase < scalar(@validate_phases)) {
 6170: 	$r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
 6171: 	$r->rflush();
 6172: 	my $which="scantron_validate_".$validate_phases[$currentphase];
 6173: 	{
 6174: 	    no strict 'refs';
 6175: 	    ($stop,$currentphase)=&$which($r,$currentphase);
 6176: 	}
 6177:     }
 6178:     if (!$stop) {
 6179: 	my $warning=&scantron_warning_screen('Start Grading');
 6180: 	$r->print(&mt('Validation process complete.').'<br />
 6181: '.$warning.'
 6182: <input type="submit" name="submit" value="'.&mt('Start Grading').'" />
 6183: <input type="hidden" name="command" value="scantron_process" />
 6184: ');
 6185: 
 6186:     } else {
 6187: 	$r->print('<input type="hidden" name="command" value="scantron_validate" />');
 6188: 	$r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
 6189:     }
 6190:     if ($stop) {
 6191: 	if ($validate_phases[$currentphase] eq 'sequence') {
 6192: 	    $r->print('<input type="submit" name="submit" value="'.&mt('Ignore -&gt;').' " />');
 6193: 	    $r->print(' '.&mt('this error').' <br />');
 6194: 
 6195: 	    $r->print(" <p>".&mt("Or click the 'Grading Menu' button to start over.")."</p>");
 6196: 	} else {
 6197:             if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
 6198: 	        $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue -&gt;').'" onclick="javascript:verify_bubble_radio(this.form)" />');
 6199:             } else {
 6200:                 $r->print('<input type="submit" name="submit" value="'.&mt('Continue -&gt;').'" />');
 6201:             }
 6202: 	    $r->print(' '.&mt('using corrected info').' <br />');
 6203: 	    $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
 6204: 	    $r->print(" ".&mt("this scanline saving it for later."));
 6205: 	}
 6206:     }
 6207:     $r->print(" </form><br />".&show_grading_menu_form($symb));
 6208:     return '';
 6209: }
 6210: 
 6211: 
 6212: =pod
 6213: 
 6214: =item scantron_remove_file
 6215: 
 6216:    Removes the requested bubble sheet data file, makes sure that
 6217:    scantron_original_<filename> is never removed
 6218: 
 6219: 
 6220: =cut
 6221: 
 6222: sub scantron_remove_file {
 6223:     my ($which)=@_;
 6224:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 6225:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 6226:     my $file='scantron_';
 6227:     if ($which eq 'corrected' || $which eq 'skipped') {
 6228: 	$file.=$which.'_';
 6229:     } else {
 6230: 	return 'refused';
 6231:     }
 6232:     $file.=$env{'form.scantron_selectfile'};
 6233:     return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
 6234: }
 6235: 
 6236: 
 6237: =pod
 6238: 
 6239: =item scantron_remove_scan_data
 6240: 
 6241:    Removes all scan_data correction for the requested bubble sheet
 6242:    data file.  (In the case that both the are doing skipped records we need
 6243:    to remember the old skipped lines for the time being so that element
 6244:    persists for a while.)
 6245: 
 6246: =cut
 6247: 
 6248: sub scantron_remove_scan_data {
 6249:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 6250:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 6251:     my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
 6252:     my @todelete;
 6253:     my $filename=$env{'form.scantron_selectfile'};
 6254:     foreach my $key (@keys) {
 6255: 	if ($key=~/^\Q$filename\E_/) {
 6256: 	    if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
 6257: 		$key=~/remember_skipping/) {
 6258: 		next;
 6259: 	    }
 6260: 	    push(@todelete,$key);
 6261: 	}
 6262:     }
 6263:     my $result;
 6264:     if (@todelete) {
 6265: 	$result = &Apache::lonnet::del('nohist_scantrondata',
 6266: 				       \@todelete,$cdom,$cname);
 6267:     } else {
 6268: 	$result = 'ok';
 6269:     }
 6270:     return $result;
 6271: }
 6272: 
 6273: 
 6274: =pod
 6275: 
 6276: =item scantron_getfile
 6277: 
 6278:     Fetches the requested bubble sheet data file (all 3 versions), and
 6279:     the scan_data hash
 6280:   
 6281:   Arguments:
 6282:     None
 6283: 
 6284:   Returns:
 6285:     2 hash references
 6286: 
 6287:      - first one has 
 6288:          orig      -
 6289:          corrected -
 6290:          skipped   -  each of which points to an array ref of the specified
 6291:                       file broken up into individual lines
 6292:          count     - number of scanlines
 6293:  
 6294:      - second is the scan_data hash possible keys are
 6295:        ($number refers to scanline numbered $number and thus the key affects
 6296:         only that scanline
 6297:         $bubline refers to the specific bubble line element and the aspects
 6298:         refers to that specific bubble line element)
 6299: 
 6300:        $number.user - username:domain to use
 6301:        $number.CODE_ignore_dup 
 6302:                     - ignore the duplicate CODE error 
 6303:        $number.useCODE
 6304:                     - use the CODE in the scanline as is
 6305:        $number.no_bubble.$bubline
 6306:                     - it is valid that there is no bubbled in bubble
 6307:                       at $number $bubline
 6308:        remember_skipping
 6309:                     - a frozen hash containing keys of $number and values
 6310:                       of either 
 6311:                         1 - we are on a 'do skipped records pass' and plan
 6312:                             on processing this line
 6313:                         2 - we are on a 'do skipped records pass' and this
 6314:                             scanline has been marked to skip yet again
 6315: 
 6316: =cut
 6317: 
 6318: sub scantron_getfile {
 6319:     #FIXME really would prefer a scantron directory
 6320:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 6321:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 6322:     my $lines;
 6323:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 6324: 		       'scantron_orig_'.$env{'form.scantron_selectfile'});
 6325:     my %scanlines;
 6326:     $scanlines{'orig'}=[(split("\n",$lines,-1))];
 6327:     my $temp=$scanlines{'orig'};
 6328:     $scanlines{'count'}=$#$temp;
 6329: 
 6330:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 6331: 		       'scantron_corrected_'.$env{'form.scantron_selectfile'});
 6332:     if ($lines eq '-1') {
 6333: 	$scanlines{'corrected'}=[];
 6334:     } else {
 6335: 	$scanlines{'corrected'}=[(split("\n",$lines,-1))];
 6336:     }
 6337:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 6338: 		       'scantron_skipped_'.$env{'form.scantron_selectfile'});
 6339:     if ($lines eq '-1') {
 6340: 	$scanlines{'skipped'}=[];
 6341:     } else {
 6342: 	$scanlines{'skipped'}=[(split("\n",$lines,-1))];
 6343:     }
 6344:     my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
 6345:     if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
 6346:     my %scan_data = @tmp;
 6347:     return (\%scanlines,\%scan_data);
 6348: }
 6349: 
 6350: =pod
 6351: 
 6352: =item lonnet_putfile
 6353: 
 6354:    Wrapper routine to call &Apache::lonnet::finishuserfileupload
 6355: 
 6356:  Arguments:
 6357:    $contents - data to store
 6358:    $filename - filename to store $contents into
 6359: 
 6360:  Returns:
 6361:    result value from &Apache::lonnet::finishuserfileupload
 6362: 
 6363: =cut
 6364: 
 6365: sub lonnet_putfile {
 6366:     my ($contents,$filename)=@_;
 6367:     my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
 6368:     my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 6369:     $env{'form.sillywaytopassafilearound'}=$contents;
 6370:     &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
 6371: 
 6372: }
 6373: 
 6374: =pod
 6375: 
 6376: =item scantron_putfile
 6377: 
 6378:     Stores the current version of the bubble sheet data files, and the
 6379:     scan_data hash. (Does not modify the original version only the
 6380:     corrected and skipped versions.
 6381: 
 6382:  Arguments:
 6383:     $scanlines - hash ref that looks like the first return value from
 6384:                  &scantron_getfile()
 6385:     $scan_data - hash ref that looks like the second return value from
 6386:                  &scantron_getfile()
 6387: 
 6388: =cut
 6389: 
 6390: sub scantron_putfile {
 6391:     my ($scanlines,$scan_data) = @_;
 6392:     #FIXME really would prefer a scantron directory
 6393:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 6394:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 6395:     if ($scanlines) {
 6396: 	my $prefix='scantron_';
 6397: # no need to update orig, shouldn't change
 6398: #   &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
 6399: #		    $env{'form.scantron_selectfile'});
 6400: 	&lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
 6401: 			$prefix.'corrected_'.
 6402: 			$env{'form.scantron_selectfile'});
 6403: 	&lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
 6404: 			$prefix.'skipped_'.
 6405: 			$env{'form.scantron_selectfile'});
 6406:     }
 6407:     &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
 6408: }
 6409: 
 6410: =pod
 6411: 
 6412: =item scantron_get_line
 6413: 
 6414:    Returns the correct version of the scanline
 6415: 
 6416:  Arguments:
 6417:     $scanlines - hash ref that looks like the first return value from
 6418:                  &scantron_getfile()
 6419:     $scan_data - hash ref that looks like the second return value from
 6420:                  &scantron_getfile()
 6421:     $i         - number of the requested line (starts at 0)
 6422: 
 6423:  Returns:
 6424:    A scanline, (either the original or the corrected one if it
 6425:    exists), or undef if the requested scanline should be
 6426:    skipped. (Either because it's an skipped scanline, or it's an
 6427:    unskipped scanline and we are not doing a 'do skipped scanlines'
 6428:    pass.
 6429: 
 6430: =cut
 6431: 
 6432: sub scantron_get_line {
 6433:     my ($scanlines,$scan_data,$i)=@_;
 6434:     if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
 6435:     #if ($scanlines->{'skipped'}[$i]) { return undef; }
 6436:     if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
 6437:     return $scanlines->{'orig'}[$i]; 
 6438: }
 6439: 
 6440: =pod
 6441: 
 6442: =item scantron_todo_count
 6443: 
 6444:     Counts the number of scanlines that need processing.
 6445: 
 6446:  Arguments:
 6447:     $scanlines - hash ref that looks like the first return value from
 6448:                  &scantron_getfile()
 6449:     $scan_data - hash ref that looks like the second return value from
 6450:                  &scantron_getfile()
 6451: 
 6452:  Returns:
 6453:     $count - number of scanlines to process
 6454: 
 6455: =cut
 6456: 
 6457: sub get_todo_count {
 6458:     my ($scanlines,$scan_data)=@_;
 6459:     my $count=0;
 6460:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 6461: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 6462: 	if ($line=~/^[\s\cz]*$/) { next; }
 6463: 	$count++;
 6464:     }
 6465:     return $count;
 6466: }
 6467: 
 6468: =pod
 6469: 
 6470: =item scantron_put_line
 6471: 
 6472:     Updates the 'corrected' or 'skipped' versions of the bubble sheet
 6473:     data file.
 6474: 
 6475:  Arguments:
 6476:     $scanlines - hash ref that looks like the first return value from
 6477:                  &scantron_getfile()
 6478:     $scan_data - hash ref that looks like the second return value from
 6479:                  &scantron_getfile()
 6480:     $i         - line number to update
 6481:     $newline   - contents of the updated scanline
 6482:     $skip      - if true make the line for skipping and update the
 6483:                  'skipped' file
 6484: 
 6485: =cut
 6486: 
 6487: sub scantron_put_line {
 6488:     my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
 6489:     if ($skip) {
 6490: 	$scanlines->{'skipped'}[$i]=$newline;
 6491: 	&start_skipping($scan_data,$i);
 6492: 	return;
 6493:     }
 6494:     $scanlines->{'corrected'}[$i]=$newline;
 6495: }
 6496: 
 6497: =pod
 6498: 
 6499: =item scantron_clear_skip
 6500: 
 6501:    Remove a line from the 'skipped' file
 6502: 
 6503:  Arguments:
 6504:     $scanlines - hash ref that looks like the first return value from
 6505:                  &scantron_getfile()
 6506:     $scan_data - hash ref that looks like the second return value from
 6507:                  &scantron_getfile()
 6508:     $i         - line number to update
 6509: 
 6510: =cut
 6511: 
 6512: sub scantron_clear_skip {
 6513:     my ($scanlines,$scan_data,$i)=@_;
 6514:     if (exists($scanlines->{'skipped'}[$i])) {
 6515: 	undef($scanlines->{'skipped'}[$i]);
 6516: 	return 1;
 6517:     }
 6518:     return 0;
 6519: }
 6520: 
 6521: =pod
 6522: 
 6523: =item scantron_filter_not_exam
 6524: 
 6525:    Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
 6526:    filter out resources that are not marked as 'exam' mode
 6527: 
 6528: =cut
 6529: 
 6530: sub scantron_filter_not_exam {
 6531:     my ($curres)=@_;
 6532:     
 6533:     if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
 6534: 	# if the user has asked to not have either hidden
 6535: 	# or 'randomout' controlled resources to be graded
 6536: 	# don't include them
 6537: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
 6538: 	    && $curres->randomout) {
 6539: 	    return 0;
 6540: 	}
 6541: 	return 1;
 6542:     }
 6543:     return 0;
 6544: }
 6545: 
 6546: =pod
 6547: 
 6548: =item scantron_validate_sequence
 6549: 
 6550:     Validates the selected sequence, checking for resource that are
 6551:     not set to exam mode.
 6552: 
 6553: =cut
 6554: 
 6555: sub scantron_validate_sequence {
 6556:     my ($r,$currentphase) = @_;
 6557: 
 6558:     my $navmap=Apache::lonnavmaps::navmap->new();
 6559:     my (undef,undef,$sequence)=
 6560: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
 6561: 
 6562:     my $map=$navmap->getResourceByUrl($sequence);
 6563: 
 6564:     $r->print('<input type="hidden" name="validate_sequence_exam"
 6565:                                     value="ignore" />');
 6566:     if ($env{'form.validate_sequence_exam'} ne 'ignore') {
 6567: 	my @resources=
 6568: 	    $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
 6569: 	if (@resources) {
 6570: 	    $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>");
 6571: 	    return (1,$currentphase);
 6572: 	}
 6573:     }
 6574: 
 6575:     return (0,$currentphase+1);
 6576: }
 6577: 
 6578: 
 6579: 
 6580: sub scantron_validate_ID {
 6581:     my ($r,$currentphase) = @_;
 6582:     
 6583:     #get student info
 6584:     my $classlist=&Apache::loncoursedata::get_classlist();
 6585:     my %idmap=&username_to_idmap($classlist);
 6586: 
 6587:     #get scantron line setup
 6588:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 6589:     my ($scanlines,$scan_data)=&scantron_getfile();
 6590:     
 6591:     &scantron_get_maxbubble();	# parse needs the bubble_lines.. array.
 6592: 
 6593:     my %found=('ids'=>{},'usernames'=>{});
 6594:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 6595: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 6596: 	if ($line=~/^[\s\cz]*$/) { next; }
 6597: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 6598: 						 $scan_data);
 6599: 	my $id=$$scan_record{'scantron.ID'};
 6600: 	my $found;
 6601: 	foreach my $checkid (keys(%idmap)) {
 6602: 	    if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
 6603: 	}
 6604: 	if ($found) {
 6605: 	    my $username=$idmap{$found};
 6606: 	    if ($found{'ids'}{$found}) {
 6607: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 6608: 					 $line,'duplicateID',$found);
 6609: 		return(1,$currentphase);
 6610: 	    } elsif ($found{'usernames'}{$username}) {
 6611: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 6612: 					 $line,'duplicateID',$username);
 6613: 		return(1,$currentphase);
 6614: 	    }
 6615: 	    #FIXME store away line we previously saw the ID on to use above
 6616: 	    $found{'ids'}{$found}++;
 6617: 	    $found{'usernames'}{$username}++;
 6618: 	} else {
 6619: 	    if ($id =~ /^\s*$/) {
 6620: 		my $username=&scan_data($scan_data,"$i.user");
 6621: 		if (defined($username) && $found{'usernames'}{$username}) {
 6622: 		    &scantron_get_correction($r,$i,$scan_record,
 6623: 					     \%scantron_config,
 6624: 					     $line,'duplicateID',$username);
 6625: 		    return(1,$currentphase);
 6626: 		} elsif (!defined($username)) {
 6627: 		    &scantron_get_correction($r,$i,$scan_record,
 6628: 					     \%scantron_config,
 6629: 					     $line,'incorrectID');
 6630: 		    return(1,$currentphase);
 6631: 		}
 6632: 		$found{'usernames'}{$username}++;
 6633: 	    } else {
 6634: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 6635: 					 $line,'incorrectID');
 6636: 		return(1,$currentphase);
 6637: 	    }
 6638: 	}
 6639:     }
 6640: 
 6641:     return (0,$currentphase+1);
 6642: }
 6643: 
 6644: 
 6645: sub scantron_get_correction {
 6646:     my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
 6647: #FIXME in the case of a duplicated ID the previous line, probably need
 6648: #to show both the current line and the previous one and allow skipping
 6649: #the previous one or the current one
 6650: 
 6651:     if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
 6652: 	$r->print("<p>".&mt("<b>An error was detected ($error)</b>".
 6653: 			    " for PaperID <tt>[_1]</tt>",
 6654: 			    $$scan_record{'scantron.PaperID'})."</p> \n");
 6655:     } else {
 6656: 	$r->print("<p>".&mt("<b>An error was detected ($error)</b>".
 6657: 			    " in scanline [_1] <pre>[_2]</pre>",
 6658: 			    $i,$line)."</p> \n");
 6659:     }
 6660:     my $message="<p>".&mt("The ID on the form is  <tt>[_1]</tt><br />".
 6661: 			  "The name on the paper is [_2],[_3]",
 6662: 			  $$scan_record{'scantron.ID'},
 6663: 			  $$scan_record{'scantron.LastName'},
 6664: 			  $$scan_record{'scantron.FirstName'})."</p>";
 6665: 
 6666:     $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
 6667:     $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
 6668:                            # Array populated for doublebubble or
 6669:     my @lines_to_correct;  # missingbubble errors to build javascript
 6670:                            # to validate radio button checking   
 6671: 
 6672:     if ($error =~ /ID$/) {
 6673: 	if ($error eq 'incorrectID') {
 6674: 	    $r->print("<p>".&mt("The encoded ID is not in the classlist").
 6675: 		      "</p>\n");
 6676: 	} elsif ($error eq 'duplicateID') {
 6677: 	    $r->print("<p>".&mt("The encoded ID has also been used by a previous paper [_1]",$arg)."</p>\n");
 6678: 	}
 6679: 	$r->print($message);
 6680: 	$r->print("<p>".&mt("How should I handle this?")." <br /> \n");
 6681: 	$r->print("\n<ul><li> ");
 6682: 	#FIXME it would be nice if this sent back the user ID and
 6683: 	#could do partial userID matches
 6684: 	$r->print(&Apache::loncommon::selectstudent_link('scantronupload',
 6685: 				       'scantron_username','scantron_domain'));
 6686: 	$r->print(": <input type='text' name='scantron_username' value='' />");
 6687: 	$r->print("\n@".
 6688: 		 &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
 6689: 
 6690: 	$r->print('</li>');
 6691:     } elsif ($error =~ /CODE$/) {
 6692: 	if ($error eq 'incorrectCODE') {
 6693: 	    $r->print("<p>".&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
 6694: 	} elsif ($error eq 'duplicateCODE') {
 6695: 	    $r->print("<p>".&mt("The encoded CODE has also been used by a previous paper [_1], and CODEs are supposed to be unique.",join(', ',@{$arg}))."</p>\n");
 6696: 	}
 6697: 	$r->print("<p>".&mt("The CODE on the form is  <tt>'[_1]'</tt>",
 6698: 			    $$scan_record{'scantron.CODE'})."<br />\n");
 6699: 	$r->print($message);
 6700: 	$r->print("<p>".&mt("How should I handle this?")." <br /> \n");
 6701: 	$r->print("\n<br /> ");
 6702: 	my $i=0;
 6703: 	if ($error eq 'incorrectCODE' 
 6704: 	    && $$scan_record{'scantron.CODE'}=~/\S/ ) {
 6705: 	    my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
 6706: 	    if ($closest > 0) {
 6707: 		foreach my $testcode (@{$closest}) {
 6708: 		    my $checked='';
 6709: 		    if (!$i) { $checked=' checked="checked" '; }
 6710: 		    $r->print("
 6711:    <label>
 6712:        <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i' $checked />
 6713:        ".&mt("Use the similar CODE [_1] instead.",
 6714: 	    "<b><tt>".$testcode."</tt></b>")."
 6715:     </label>
 6716:     <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
 6717: 		    $r->print("\n<br />");
 6718: 		    $i++;
 6719: 		}
 6720: 	    }
 6721: 	}
 6722: 	if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
 6723: 	    my $checked; if (!$i) { $checked=' checked="checked" '; }
 6724: 	    $r->print("
 6725:     <label>
 6726:         <input type='radio' name='scantron_CODE_resolution' value='use_unfound' $checked />
 6727:        ".&mt("Use the CODE [_1] that is was on the paper, ignoring the error.",
 6728: 	     "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
 6729:     </label>");
 6730: 	    $r->print("\n<br />");
 6731: 	}
 6732: 
 6733: 	$r->print(<<ENDSCRIPT);
 6734: <script type="text/javascript">
 6735: function change_radio(field) {
 6736:     var slct=document.scantronupload.scantron_CODE_resolution;
 6737:     var i;
 6738:     for (i=0;i<slct.length;i++) {
 6739:         if (slct[i].value==field) { slct[i].checked=true; }
 6740:     }
 6741: }
 6742: </script>
 6743: ENDSCRIPT
 6744: 	my $href="/adm/pickcode?".
 6745: 	   "form=".&escape("scantronupload").
 6746: 	   "&scantron_format=".&escape($env{'form.scantron_format'}).
 6747: 	   "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
 6748: 	   "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
 6749: 	   "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
 6750: 	if ($env{'form.scantron_CODElist'} =~ /\S/) { 
 6751: 	    $r->print("
 6752:     <label>
 6753:        <input type='radio' name='scantron_CODE_resolution' value='use_found' />
 6754:        ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
 6755: 	     "<a target='_blank' href='$href'>","</a>")."
 6756:     </label> 
 6757:     ".&mt("Selected CODE is [_1]","<input readonly='true' type='text' size='8' name='scantron_CODE_selectedvalue' onfocus=\"javascript:change_radio('use_found')\" onchange=\"javascript:change_radio('use_found')\" />"));
 6758: 	    $r->print("\n<br />");
 6759: 	}
 6760: 	$r->print("
 6761:     <label>
 6762:        <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
 6763:        ".&mt("Use [_1] as the CODE.",
 6764: 	     "</label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" />"));
 6765: 	$r->print("\n<br /><br />");
 6766:     } elsif ($error eq 'doublebubble') {
 6767: 	$r->print("<p>".&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
 6768: 
 6769: 	# The form field scantron_questions is acutally a list of line numbers.
 6770: 	# represented by this form so:
 6771: 
 6772: 	my $line_list = &questions_to_line_list($arg);
 6773: 
 6774: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
 6775: 		  $line_list.'" />');
 6776: 	$r->print($message);
 6777: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
 6778: 	foreach my $question (@{$arg}) {
 6779: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
 6780:                                                    $scan_record, $error);
 6781:             push(@lines_to_correct,@linenums);
 6782: 	}
 6783:         $r->print(&verify_bubbles_checked(@lines_to_correct));
 6784:     } elsif ($error eq 'missingbubble') {
 6785: 	$r->print("<p>".&mt("There have been <b>no</b> bubbles scanned for some question(s)")."</p>\n");
 6786: 	$r->print($message);
 6787: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
 6788: 	$r->print(&mt("Some questions have no scanned bubbles.")."\n");
 6789: 
 6790: 	# The form field scantron_questions is actually a list of line numbers not
 6791: 	# a list of question numbers. Therefore:
 6792: 	#
 6793: 	
 6794: 	my $line_list = &questions_to_line_list($arg);
 6795: 
 6796: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
 6797: 		  $line_list.'" />');
 6798: 	foreach my $question (@{$arg}) {
 6799: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
 6800:                                                    $scan_record, $error);
 6801:             push(@lines_to_correct,@linenums);
 6802: 	}
 6803:         $r->print(&verify_bubbles_checked(@lines_to_correct));
 6804:     } else {
 6805: 	$r->print("\n<ul>");
 6806:     }
 6807:     $r->print("\n</li></ul>");
 6808: }
 6809: 
 6810: sub verify_bubbles_checked {
 6811:     my (@ansnums) = @_;
 6812:     my $ansnumstr = join('","',@ansnums);
 6813:     my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
 6814:     my $output = (<<ENDSCRIPT);
 6815: <script type="text/javascript">
 6816: function verify_bubble_radio(form) {
 6817:     var ansnumArray = new Array ("$ansnumstr");
 6818:     var need_bubble_count = 0;
 6819:     for (var i=0; i<ansnumArray.length; i++) {
 6820:         if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
 6821:             var bubble_picked = 0; 
 6822:             for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
 6823:                 if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
 6824:                     bubble_picked = 1;
 6825:                 }
 6826:             }
 6827:             if (bubble_picked == 0) {
 6828:                 need_bubble_count ++;
 6829:             }
 6830:         }
 6831:     }
 6832:     if (need_bubble_count) {
 6833:         alert("$warning");
 6834:         return;
 6835:     }
 6836:     form.submit(); 
 6837: }
 6838: </script>
 6839: ENDSCRIPT
 6840:     return $output;
 6841: }
 6842: 
 6843: =pod
 6844: 
 6845: =item  questions_to_line_list
 6846: 
 6847: Converts a list of questions into a string of comma separated
 6848: line numbers in the answer sheet used by the questions.  This is
 6849: used to fill in the scantron_questions form field.
 6850: 
 6851:   Arguments:
 6852:      questions    - Reference to an array of questions.
 6853: 
 6854: =cut
 6855: 
 6856: 
 6857: sub questions_to_line_list {
 6858:     my ($questions) = @_;
 6859:     my @lines;
 6860: 
 6861:     foreach my $item (@{$questions}) {
 6862:         my $question = $item;
 6863:         my ($first,$count,$last);
 6864:         if ($item =~ /^(\d+)\.(\d+)$/) {
 6865:             $question = $1;
 6866:             my $subquestion = $2;
 6867:             $first = $first_bubble_line{$question-1} + 1;
 6868:             my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
 6869:             my $subcount = 1;
 6870:             while ($subcount<$subquestion) {
 6871:                 $first += $subans[$subcount-1];
 6872:                 $subcount ++;
 6873:             }
 6874:             $count = $subans[$subquestion-1];
 6875:         } else {
 6876: 	    $first   = $first_bubble_line{$question-1} + 1;
 6877: 	    $count   = $bubble_lines_per_response{$question-1};
 6878:         }
 6879:         $last = $first+$count-1;
 6880:         push(@lines, ($first..$last));
 6881:     }
 6882:     return join(',', @lines);
 6883: }
 6884: 
 6885: =pod 
 6886: 
 6887: =item prompt_for_corrections
 6888: 
 6889: Prompts for a potentially multiline correction to the
 6890: user's bubbling (factors out common code from scantron_get_correction
 6891: for multi and missing bubble cases).
 6892: 
 6893:  Arguments:
 6894:    $r           - Apache request object.
 6895:    $question    - The question number to prompt for.
 6896:    $scan_config - The scantron file configuration hash.
 6897:    $scan_record - Reference to the hash that has the the parsed scanlines.
 6898:    $error       - Type of error
 6899: 
 6900:  Implicit inputs:
 6901:    %bubble_lines_per_response   - Starting line numbers for each question.
 6902:                                   Numbered from 0 (but question numbers are from
 6903:                                   1.
 6904:    %first_bubble_line           - Starting bubble line for each question.
 6905:    %subdivided_bubble_lines     - optionresponse, matchresponse and rankresponse 
 6906:                                   type problems render as separate sub-questions, 
 6907:                                   in exam mode. This hash contains a 
 6908:                                   comma-separated list of the lines per 
 6909:                                   sub-question.
 6910:    %responsetype_per_response   - essayresponse, formularesponse,
 6911:                                   stringresponse, imageresponse, reactionresponse,
 6912:                                   and organicresponse type problem parts can have
 6913:                                   multiple lines per response if the weight
 6914:                                   assigned exceeds 10.  In this case, only
 6915:                                   one bubble per line is permitted, but more 
 6916:                                   than one line might contain bubbles, e.g.
 6917:                                   bubbling of: line 1 - J, line 2 - J, 
 6918:                                   line 3 - B would assign 22 points.  
 6919: 
 6920: =cut
 6921: 
 6922: sub prompt_for_corrections {
 6923:     my ($r, $question, $scan_config, $scan_record, $error) = @_;
 6924:     my ($current_line,$lines);
 6925:     my @linenums;
 6926:     my $questionnum = $question;
 6927:     if ($question =~ /^(\d+)\.(\d+)$/) {
 6928:         $question = $1;
 6929:         $current_line = $first_bubble_line{$question-1} + 1 ;
 6930:         my $subquestion = $2;
 6931:         my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
 6932:         my $subcount = 1;
 6933:         while ($subcount<$subquestion) {
 6934:             $current_line += $subans[$subcount-1];
 6935:             $subcount ++;
 6936:         }
 6937:         $lines = $subans[$subquestion-1];
 6938:     } else {
 6939:         $current_line = $first_bubble_line{$question-1} + 1 ;
 6940:         $lines        = $bubble_lines_per_response{$question-1};
 6941:     }
 6942:     if ($lines > 1) {
 6943:         $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
 6944:         if (($responsetype_per_response{$question-1} eq 'essayresponse') ||
 6945:             ($responsetype_per_response{$question-1} eq 'formularesponse') ||
 6946:             ($responsetype_per_response{$question-1} eq 'stringresponse') ||
 6947:             ($responsetype_per_response{$question-1} eq 'imageresponse') ||
 6948:             ($responsetype_per_response{$question-1} eq 'reactionresponse') ||
 6949:             ($responsetype_per_response{$question-1} eq 'organicresponse')) {
 6950:             $r->print(&mt("Although this particular question type requires handgrading, the instructions for this question in the exam directed students to leave [quant,_1,line] blank on their scantron sheets.",$lines).'<br /><br />'.&mt('A non-zero score can be assigned to the student during scantron grading by selecting a bubble in at least one line.').'<br />'.&mt('The score for this question will be a sum of the numeric values for the selected bubbles from each line, where A=1 point, B=2 points etc.').'<br />'.&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.").'<br /><br />');
 6951:         } else {
 6952:             $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
 6953:         }
 6954:     }
 6955:     for (my $i =0; $i < $lines; $i++) {
 6956:         my $selected = $$scan_record{"scantron.$current_line.answer"};
 6957: 	&scantron_bubble_selector($r,$scan_config,$current_line, 
 6958: 	        		  $questionnum,$error,split('', $selected));
 6959:         push(@linenums,$current_line);
 6960: 	$current_line++;
 6961:     }
 6962:     if ($lines > 1) {
 6963: 	$r->print("<hr /><br />");
 6964:     }
 6965:     return @linenums;
 6966: }
 6967: 
 6968: =pod
 6969: 
 6970: =item scantron_bubble_selector
 6971:   
 6972:    Generates the html radiobuttons to correct a single bubble line
 6973:    possibly showing the existing the selected bubbles if known
 6974: 
 6975:  Arguments:
 6976:     $r           - Apache request object
 6977:     $scan_config - hash from &get_scantron_config()
 6978:     $line        - Number of the line being displayed.
 6979:     $questionnum - Question number (may include subquestion)
 6980:     $error       - Type of error.
 6981:     @selected    - Array of bubbles picked on this line.
 6982: 
 6983: =cut
 6984: 
 6985: sub scantron_bubble_selector {
 6986:     my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
 6987:     my $max=$$scan_config{'Qlength'};
 6988: 
 6989:     my $scmode=$$scan_config{'Qon'};
 6990:     if ($scmode eq 'number' || $scmode eq 'letter') { $max=10; }	     
 6991: 
 6992:     my @alphabet=('A'..'Z');
 6993:     $r->print(&Apache::loncommon::start_data_table().
 6994:               &Apache::loncommon::start_data_table_row());
 6995:     $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
 6996:     for (my $i=0;$i<$max+1;$i++) {
 6997: 	$r->print("\n".'<td align="center">');
 6998: 	if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
 6999: 	else { $r->print('&nbsp;'); }
 7000: 	$r->print('</td>');
 7001:     }
 7002:     $r->print(&Apache::loncommon::end_data_table_row().
 7003:               &Apache::loncommon::start_data_table_row());
 7004:     for (my $i=0;$i<$max;$i++) {
 7005: 	$r->print("\n".
 7006: 		  '<td><label><input type="radio" name="scantron_correct_Q_'.
 7007: 		  $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
 7008:     }
 7009:     my $nobub_checked = ' ';
 7010:     if ($error eq 'missingbubble') {
 7011:         $nobub_checked = ' checked = "checked" ';
 7012:     }
 7013:     $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
 7014: 	      $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
 7015:               '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
 7016:               $line.'" value="'.$questionnum.'" /></td>');
 7017:     $r->print(&Apache::loncommon::end_data_table_row().
 7018:               &Apache::loncommon::end_data_table());
 7019: }
 7020: 
 7021: =pod
 7022: 
 7023: =item num_matches
 7024: 
 7025:    Counts the number of characters that are the same between the two arguments.
 7026: 
 7027:  Arguments:
 7028:    $orig - CODE from the scanline
 7029:    $code - CODE to match against
 7030: 
 7031:  Returns:
 7032:    $count - integer count of the number of same characters between the
 7033:             two arguments
 7034: 
 7035: =cut
 7036: 
 7037: sub num_matches {
 7038:     my ($orig,$code) = @_;
 7039:     my @code=split(//,$code);
 7040:     my @orig=split(//,$orig);
 7041:     my $same=0;
 7042:     for (my $i=0;$i<scalar(@code);$i++) {
 7043: 	if ($code[$i] eq $orig[$i]) { $same++; }
 7044:     }
 7045:     return $same;
 7046: }
 7047: 
 7048: =pod
 7049: 
 7050: =item scantron_get_closely_matching_CODEs
 7051: 
 7052:    Cycles through all CODEs and finds the set that has the greatest
 7053:    number of same characters as the provided CODE
 7054: 
 7055:  Arguments:
 7056:    $allcodes - hash ref returned by &get_codes()
 7057:    $CODE     - CODE from the current scanline
 7058: 
 7059:  Returns:
 7060:    2 element list
 7061:     - first elements is number of how closely matching the best fit is 
 7062:       (5 means best set has 5 matching characters)
 7063:     - second element is an arrary ref containing the set of valid CODEs
 7064:       that best fit the passed in CODE
 7065: 
 7066: =cut
 7067: 
 7068: sub scantron_get_closely_matching_CODEs {
 7069:     my ($allcodes,$CODE)=@_;
 7070:     my @CODEs;
 7071:     foreach my $testcode (sort(keys(%{$allcodes}))) {
 7072: 	push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
 7073:     }
 7074: 
 7075:     return ($#CODEs,$CODEs[-1]);
 7076: }
 7077: 
 7078: =pod
 7079: 
 7080: =item get_codes
 7081: 
 7082:    Builds a hash which has keys of all of the valid CODEs from the selected
 7083:    set of remembered CODEs.
 7084: 
 7085:  Arguments:
 7086:   $old_name - name of the set of remembered CODEs
 7087:   $cdom     - domain of the course
 7088:   $cnum     - internal course name
 7089: 
 7090:  Returns:
 7091:   %allcodes - keys are the valid CODEs, values are all 1
 7092: 
 7093: =cut
 7094: 
 7095: sub get_codes {
 7096:     my ($old_name, $cdom, $cnum) = @_;
 7097:     if (!$old_name) {
 7098: 	$old_name=$env{'form.scantron_CODElist'};
 7099:     }
 7100:     if (!$cdom) {
 7101: 	$cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
 7102:     }
 7103:     if (!$cnum) {
 7104: 	$cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
 7105:     }
 7106:     my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
 7107: 				    $cdom,$cnum);
 7108:     my %allcodes;
 7109:     if ($result{"type\0$old_name"} eq 'number') {
 7110: 	%allcodes=map {($_,1)} split(',',$result{$old_name});
 7111:     } else {
 7112: 	%allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
 7113:     }
 7114:     return %allcodes;
 7115: }
 7116: 
 7117: =pod
 7118: 
 7119: =item scantron_validate_CODE
 7120: 
 7121:    Validates all scanlines in the selected file to not have any
 7122:    invalid or underspecified CODEs and that none of the codes are
 7123:    duplicated if this was requested.
 7124: 
 7125: =cut
 7126: 
 7127: sub scantron_validate_CODE {
 7128:     my ($r,$currentphase) = @_;
 7129:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 7130:     if ($scantron_config{'CODElocation'} &&
 7131: 	$scantron_config{'CODEstart'} &&
 7132: 	$scantron_config{'CODElength'}) {
 7133: 	if (!defined($env{'form.scantron_CODElist'})) {
 7134: 	    &FIXME_blow_up()
 7135: 	}
 7136:     } else {
 7137: 	return (0,$currentphase+1);
 7138:     }
 7139:     
 7140:     my %usedCODEs;
 7141: 
 7142:     my %allcodes=&get_codes();
 7143: 
 7144:     &scantron_get_maxbubble();	# parse needs the lines per response array.
 7145: 
 7146:     my ($scanlines,$scan_data)=&scantron_getfile();
 7147:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7148: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7149: 	if ($line=~/^[\s\cz]*$/) { next; }
 7150: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 7151: 						 $scan_data);
 7152: 	my $CODE=$$scan_record{'scantron.CODE'};
 7153: 	my $error=0;
 7154: 	if (!&Apache::lonnet::validCODE($CODE)) {
 7155: 	    &scantron_get_correction($r,$i,$scan_record,
 7156: 				     \%scantron_config,
 7157: 				     $line,'incorrectCODE',\%allcodes);
 7158: 	    return(1,$currentphase);
 7159: 	}
 7160: 	if (%allcodes && !exists($allcodes{$CODE}) 
 7161: 	    && !$$scan_record{'scantron.useCODE'}) {
 7162: 	    &scantron_get_correction($r,$i,$scan_record,
 7163: 				     \%scantron_config,
 7164: 				     $line,'incorrectCODE',\%allcodes);
 7165: 	    return(1,$currentphase);
 7166: 	}
 7167: 	if (exists($usedCODEs{$CODE}) 
 7168: 	    && $env{'form.scantron_CODEunique'} eq 'yes'
 7169: 	    && !$$scan_record{'scantron.CODE_ignore_dup'}) {
 7170: 	    &scantron_get_correction($r,$i,$scan_record,
 7171: 				     \%scantron_config,
 7172: 				     $line,'duplicateCODE',$usedCODEs{$CODE});
 7173: 	    return(1,$currentphase);
 7174: 	}
 7175: 	push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
 7176:     }
 7177:     return (0,$currentphase+1);
 7178: }
 7179: 
 7180: =pod
 7181: 
 7182: =item scantron_validate_doublebubble
 7183: 
 7184:    Validates all scanlines in the selected file to not have any
 7185:    bubble lines with multiple bubbles marked.
 7186: 
 7187: =cut
 7188: 
 7189: sub scantron_validate_doublebubble {
 7190:     my ($r,$currentphase) = @_;
 7191:     #get student info
 7192:     my $classlist=&Apache::loncoursedata::get_classlist();
 7193:     my %idmap=&username_to_idmap($classlist);
 7194: 
 7195:     #get scantron line setup
 7196:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 7197:     my ($scanlines,$scan_data)=&scantron_getfile();
 7198:     &scantron_get_maxbubble();	# parse needs the bubble line array.
 7199: 
 7200:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7201: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7202: 	if ($line=~/^[\s\cz]*$/) { next; }
 7203: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 7204: 						 $scan_data);
 7205: 	if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
 7206: 	&scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
 7207: 				 'doublebubble',
 7208: 				 $$scan_record{'scantron.doubleerror'});
 7209:     	return (1,$currentphase);
 7210:     }
 7211:     return (0,$currentphase+1);
 7212: }
 7213: 
 7214: 
 7215: sub scantron_get_maxbubble {
 7216:     if (defined($env{'form.scantron_maxbubble'}) &&
 7217: 	$env{'form.scantron_maxbubble'}) {
 7218: 	&restore_bubble_lines();
 7219: 	return $env{'form.scantron_maxbubble'};
 7220:     }
 7221: 
 7222:     my (undef, undef, $sequence) =
 7223: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
 7224: 
 7225:     my $navmap=Apache::lonnavmaps::navmap->new();
 7226:     my $map=$navmap->getResourceByUrl($sequence);
 7227:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 7228: 
 7229:     &Apache::lonxml::clear_problem_counter();
 7230: 
 7231:     my $uname       = $env{'form.student'};
 7232:     my $udom        = $env{'form.userdom'};
 7233:     my $cid         = $env{'request.course.id'};
 7234:     my $total_lines = 0;
 7235:     %bubble_lines_per_response = ();
 7236:     %first_bubble_line         = ();
 7237:     %subdivided_bubble_lines   = ();
 7238:     %responsetype_per_response = ();
 7239:   
 7240:     my $response_number = 0;
 7241:     my $bubble_line     = 0;
 7242:     foreach my $resource (@resources) {
 7243:         my $symb = $resource->symb();
 7244: 
 7245:         my (@parts,@allparts,@possible_parts);
 7246: 
 7247:         # Need to retrieve part IDs and response IDs because essayresponse,
 7248:         # reactionresponse and organicresponse items are not included in 
 7249:         # $analysis{'parts'} from lonnet::ssi.  
 7250:         if (ref($resource->parts()) eq 'ARRAY') {
 7251:             foreach my $part (@{$resource->parts()}) {
 7252:                 if (!&Apache::loncommon::check_if_partid_hidden($part,$symb,$udom,$uname)) {
 7253:                     my @resp_ids = $resource->responseIds($part);
 7254:                     foreach my $id (@resp_ids) {
 7255:                         my $part_id = $part.'.'.$id;
 7256:                         push(@possible_parts,$part_id);
 7257:                     }
 7258:                 }
 7259:             }
 7260:         }
 7261: 
 7262:         my $result=&ssi_with_retries($resource->src(), $ssi_retries,
 7263:                                         ('symb' => $symb,
 7264:                                          'grade_target' => 'analyze',
 7265:                                          'grade_courseid' => $cid,
 7266:                                          'grade_domain' => $udom,
 7267:                                          'grade_username' => $uname));
 7268:         my (undef, $an) =
 7269:             split(/_HASH_REF__/,$result, 2);
 7270: 
 7271: 	my %analysis = &Apache::lonnet::str2hash($an);
 7272: 
 7273:         if (ref($analysis{'parts'}) eq 'ARRAY') {
 7274:             foreach my $part (@{$analysis{'parts'}}) {
 7275:                 my ($id,$respid) = split(/\./,$part);
 7276:                 if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
 7277:                     push(@parts,$part);
 7278:                 }
 7279:             }
 7280:         }
 7281:         # Add part_ids for any essayresponse, reactionresponse or 
 7282:         # organicresponse items. 
 7283:         foreach my $part_id (@possible_parts) {
 7284:             if (grep(/^\Q$part_id\E$/,@parts)) {
 7285:                 push(@allparts,$part_id);
 7286:             } else {
 7287:                 if (($analysis{$part_id.'.type'} eq 'essayresponse') ||
 7288:                     ($analysis{$part_id.'.type'} eq 'reactionresponse') ||
 7289:                     ($analysis{$part_id.'.type'} eq 'organicresponse')) {
 7290:                     push(@allparts,$part_id);
 7291:                 }
 7292:             }
 7293:         }
 7294: 
 7295: 	foreach my $part_id (@allparts) {
 7296:             my $lines;
 7297: 
 7298: 	    # TODO - make this a persistent hash not an array.
 7299: 
 7300:             # optionresponse, matchresponse and rankresponse type items 
 7301:             # render as separate sub-questions in exam mode.
 7302:             if (($analysis{$part_id.'.type'} eq 'optionresponse') ||
 7303:                 ($analysis{$part_id.'.type'} eq 'matchresponse') ||
 7304:                 ($analysis{$part_id.'.type'} eq 'rankresponse')) {
 7305:                 my ($numbub,$numshown);
 7306:                 if ($analysis{$part_id.'.type'} eq 'optionresponse') {
 7307:                     if (ref($analysis{$part_id.'.options'}) eq 'ARRAY') {
 7308:                         $numbub = scalar(@{$analysis{$part_id.'.options'}});
 7309:                     }
 7310:                 } elsif ($analysis{$part_id.'.type'} eq 'matchresponse') {
 7311:                     if (ref($analysis{$part_id.'.items'}) eq 'ARRAY') {
 7312:                         $numbub = scalar(@{$analysis{$part_id.'.items'}});
 7313:                     }
 7314:                 } elsif ($analysis{$part_id.'.type'} eq 'rankresponse') {
 7315:                     if (ref($analysis{$part_id.'.foils'}) eq 'ARRAY') {
 7316:                         $numbub = scalar(@{$analysis{$part_id.'.foils'}});
 7317:                     }
 7318:                 }
 7319:                 if (ref($analysis{$part_id.'.shown'}) eq 'ARRAY') {
 7320:                     $numshown = scalar(@{$analysis{$part_id.'.shown'}});
 7321:                 }
 7322:                 my $bubbles_per_line = 10;
 7323:                 my $inner_bubble_lines = int($numbub/$bubbles_per_line);
 7324:                 if (($numbub % $bubbles_per_line) != 0) {
 7325:                     $inner_bubble_lines++;
 7326:                 }
 7327:                 for (my $i=0; $i<$numshown; $i++) {
 7328:                     $subdivided_bubble_lines{$response_number} .= 
 7329:                         $inner_bubble_lines.',';
 7330:                 }
 7331:                 $subdivided_bubble_lines{$response_number} =~ s/,$//;
 7332:                 $lines = $numshown * $inner_bubble_lines;
 7333:             } else {
 7334:                 $lines = $analysis{"$part_id.bubble_lines"};
 7335:             } 
 7336: 
 7337:             $first_bubble_line{$response_number} = $bubble_line;
 7338: 	    $bubble_lines_per_response{$response_number} = $lines;
 7339:             $responsetype_per_response{$response_number} = 
 7340:                 $analysis{$part_id.'.type'};
 7341: 	    $response_number++;
 7342: 
 7343: 	    $bubble_line +=  $lines;
 7344: 	    $total_lines +=  $lines;
 7345: 	}
 7346: 
 7347:     }
 7348:     &Apache::lonnet::delenv('scantron\.');
 7349: 
 7350:     &save_bubble_lines();
 7351:     $env{'form.scantron_maxbubble'} =
 7352: 	$total_lines;
 7353:     return $env{'form.scantron_maxbubble'};
 7354: }
 7355: 
 7356: 
 7357: sub scantron_validate_missingbubbles {
 7358:     my ($r,$currentphase) = @_;
 7359:     #get student info
 7360:     my $classlist=&Apache::loncoursedata::get_classlist();
 7361:     my %idmap=&username_to_idmap($classlist);
 7362: 
 7363:     #get scantron line setup
 7364:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 7365:     my ($scanlines,$scan_data)=&scantron_getfile();
 7366:     my $max_bubble=&scantron_get_maxbubble();
 7367:     if (!$max_bubble) { $max_bubble=2**31; }
 7368:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7369: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7370: 	if ($line=~/^[\s\cz]*$/) { next; }
 7371: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 7372: 						 $scan_data);
 7373: 	if (!defined($$scan_record{'scantron.missingerror'})) { next; }
 7374: 	my @to_correct;
 7375: 	
 7376: 	# Probably here's where the error is...
 7377: 
 7378: 	foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
 7379:             my $lastbubble;
 7380:             if ($missing =~ /^(\d+)\.(\d+)$/) {
 7381:                my $question = $1;
 7382:                my $subquestion = $2;
 7383:                if (!defined($first_bubble_line{$question -1})) { next; }
 7384:                my $first = $first_bubble_line{$question-1};
 7385:                my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
 7386:                my $subcount = 1;
 7387:                while ($subcount<$subquestion) {
 7388:                    $first += $subans[$subcount-1];
 7389:                    $subcount ++;
 7390:                }
 7391:                my $count = $subans[$subquestion-1];
 7392:                $lastbubble = $first + $count;
 7393:             } else {
 7394:                 if (!defined($first_bubble_line{$missing - 1})) { next; }
 7395:                 $lastbubble = $first_bubble_line{$missing - 1} + $bubble_lines_per_response{$missing - 1};
 7396:             }
 7397:             if ($lastbubble > $max_bubble) { next; }
 7398: 	    push(@to_correct,$missing);
 7399: 	}
 7400: 	if (@to_correct) {
 7401: 	    &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 7402: 				     $line,'missingbubble',\@to_correct);
 7403: 	    return (1,$currentphase);
 7404: 	}
 7405: 
 7406:     }
 7407:     return (0,$currentphase+1);
 7408: }
 7409: 
 7410: 
 7411: sub scantron_process_students {
 7412:     my ($r) = @_;
 7413: 
 7414:     my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
 7415:     my ($symb)=&get_symb($r);
 7416:     if (!$symb) {
 7417: 	return '';
 7418:     }
 7419:     my $default_form_data=&defaultFormData($symb);
 7420: 
 7421:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 7422:     my ($scanlines,$scan_data)=&scantron_getfile();
 7423:     my $classlist=&Apache::loncoursedata::get_classlist();
 7424:     my %idmap=&username_to_idmap($classlist);
 7425:     my $navmap=Apache::lonnavmaps::navmap->new();
 7426:     my $map=$navmap->getResourceByUrl($sequence);
 7427:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 7428: #    $r->print("geto ".scalar(@resources)."<br />");
 7429:     my $result= <<SCANTRONFORM;
 7430: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
 7431:   <input type="hidden" name="command" value="scantron_configphase" />
 7432:   $default_form_data
 7433: SCANTRONFORM
 7434:     $r->print($result);
 7435: 
 7436:     my @delayqueue;
 7437:     my %completedstudents;
 7438:     
 7439:     my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
 7440:     my $count=&get_todo_count($scanlines,$scan_data);
 7441:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
 7442:  				    'Scantron Progress',$count,
 7443: 				    'inline',undef,'scantronupload');
 7444:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
 7445: 					  'Processing first student');
 7446:     my $start=&Time::HiRes::time();
 7447:     my $i=-1;
 7448:     my ($uname,$udom,$started);
 7449: 
 7450:     &scantron_get_maxbubble();	# Need the bubble lines array to parse.
 7451:     
 7452: 
 7453:     # If an ssi failed in scantron_get_maxbubble, put an error message out to
 7454:     # the user and return.
 7455: 
 7456:     if ($ssi_error) {
 7457: 	$r->print("</form>");
 7458: 	&ssi_print_error($r);
 7459: 	$r->print(&show_grading_menu_form($symb));
 7460:         &Apache::lonnet::remove_lock($lock);
 7461: 	return '';		# Dunno why the other returns return '' rather than just returning.
 7462:     }
 7463: 
 7464:     while ($i<$scanlines->{'count'}) {
 7465:  	($uname,$udom)=('','');
 7466:  	$i++;
 7467:  	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7468:  	if ($line=~/^[\s\cz]*$/) { next; }
 7469: 	if ($started) {
 7470: 	    &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
 7471: 						     'last student');
 7472: 	}
 7473: 	$started=1;
 7474:  	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 7475:  						 $scan_data);
 7476:  	unless ($uname=&scantron_find_student($scan_record,$scan_data,
 7477:  					      \%idmap,$i)) {
 7478:   	    &scantron_add_delay(\@delayqueue,$line,
 7479:  				'Unable to find a student that matches',1);
 7480:  	    next;
 7481:   	}
 7482:  	if (exists $completedstudents{$uname}) {
 7483:  	    &scantron_add_delay(\@delayqueue,$line,
 7484:  				'Student '.$uname.' has multiple sheets',2);
 7485:  	    next;
 7486:  	}
 7487:   	($uname,$udom)=split(/:/,$uname);
 7488: 
 7489: 	&Apache::lonxml::clear_problem_counter();
 7490:   	&Apache::lonnet::appenv($scan_record);
 7491: 
 7492: 	if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
 7493: 	    &scantron_putfile($scanlines,$scan_data);
 7494: 	}
 7495: 	
 7496: 	my $i=0;
 7497: 	foreach my $resource (@resources) {
 7498: 	    $i++;
 7499: 	    my %form=('submitted'     =>'scantron',
 7500: 		      'grade_target'  =>'grade',
 7501: 		      'grade_username'=>$uname,
 7502: 		      'grade_domain'  =>$udom,
 7503: 		      'grade_courseid'=>$env{'request.course.id'},
 7504: 		      'grade_symb'    =>$resource->symb());
 7505: 	    if (exists($scan_record->{'scantron.CODE'})
 7506: 		&& 
 7507: 		&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'})) {
 7508: 		$form{'CODE'}=$scan_record->{'scantron.CODE'};
 7509: 	    } else {
 7510: 		$form{'CODE'}='';
 7511: 	    } 
 7512: 	    my $result=&ssi_with_retries($resource->src(), $ssi_retries, %form);
 7513: 	    if ($ssi_error) {
 7514: 		$ssi_error = 0;	# So end of handler error message does not trigger.
 7515: 		$r->print("</form>");
 7516: 		&ssi_print_error($r);
 7517: 		$r->print(&show_grading_menu_form($symb));
 7518:                 &Apache::lonnet::remove_lock($lock);
 7519: 		return '';	# Why return ''?  Beats me.
 7520: 	    }
 7521: 
 7522: 	    if (&Apache::loncommon::connection_aborted($r)) { last; }
 7523: 	}
 7524: 	$completedstudents{$uname}={'line'=>$line};
 7525: 	if (&Apache::loncommon::connection_aborted($r)) { last; }
 7526:     } continue {
 7527: 	&Apache::lonxml::clear_problem_counter();
 7528: 	&Apache::lonnet::delenv('scantron\.');
 7529:     }
 7530:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 7531:     &Apache::lonnet::remove_lock($lock);
 7532: #    my $lasttime = &Time::HiRes::time()-$start;
 7533: #    $r->print("<p>took $lasttime</p>");
 7534: 
 7535:     $r->print("</form>");
 7536:     $r->print(&show_grading_menu_form($symb));
 7537:     return '';
 7538: }
 7539: 
 7540: sub scantron_upload_scantron_data {
 7541:     my ($r)=@_;
 7542:     $r->print(&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}));
 7543:     my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
 7544: 							  'domainid',
 7545: 							  'coursename');
 7546:     my $domsel=&Apache::loncommon::select_dom_form($env{'request.role.domain'},
 7547: 						   'domainid');
 7548:     my $default_form_data=&defaultFormData(&get_symb($r,1));
 7549:     $r->print('
 7550: <script type="text/javascript" language="javascript">
 7551:     function checkUpload(formname) {
 7552: 	if (formname.upfile.value == "") {
 7553: 	    alert("Please use the browse button to select a file from your local directory.");
 7554: 	    return false;
 7555: 	}
 7556: 	formname.submit();
 7557:     }
 7558: </script>
 7559: 
 7560: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
 7561: '.$default_form_data.'
 7562: <table>
 7563: <tr><td>'.$select_link.'                             </td></tr>
 7564: <tr><td>'.&mt('Course ID:').'     </td>
 7565:     <td><input name="courseid"   type="text" />      </td></tr>
 7566: <tr><td>'.&mt('Course Name:').'   </td>
 7567:     <td><input name="coursename" type="text" />      </td></tr>
 7568: <tr><td>'.&mt('Domain:').'        </td>
 7569:     <td>'.$domsel.'                                  </td></tr>
 7570: <tr><td>'.&mt('File to upload:').'</td>
 7571:     <td><input type="file" name="upfile" size="50" /></td></tr>
 7572: </table>
 7573: <input name="command" value="scantronupload_save" type="hidden" />
 7574: <input type="button" onClick="javascript:checkUpload(this.form);" value="'.&mt('Upload Scantron Data').'" />
 7575: </form>
 7576: ');
 7577:     return '';
 7578: }
 7579: 
 7580: 
 7581: sub scantron_upload_scantron_data_save {
 7582:     my($r)=@_;
 7583:     my ($symb)=&get_symb($r,1);
 7584:     my $doanotherupload=
 7585: 	'<br /><form action="/adm/grades" method="post">'."\n".
 7586: 	'<input type="hidden" name="command" value="scantronupload" />'."\n".
 7587: 	'<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
 7588: 	'</form>'."\n";
 7589:     if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
 7590: 	!&Apache::lonnet::allowed('usc',
 7591: 			    $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
 7592: 	$r->print(&mt("You are not allowed to upload Scantron data to the requested course.")."<br />");
 7593: 	if ($symb) {
 7594: 	    $r->print(&show_grading_menu_form($symb));
 7595: 	} else {
 7596: 	    $r->print($doanotherupload);
 7597: 	}
 7598: 	return '';
 7599:     }
 7600:     my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
 7601:     $r->print(&mt("Doing upload to [_1]",$coursedata{'description'})." <br />");
 7602:     my $fname=$env{'form.upfile.filename'};
 7603:     #FIXME
 7604:     #copied from lonnet::userfileupload()
 7605:     #make that function able to target a specified course
 7606:     # Replace Windows backslashes by forward slashes
 7607:     $fname=~s/\\/\//g;
 7608:     # Get rid of everything but the actual filename
 7609:     $fname=~s/^.*\/([^\/]+)$/$1/;
 7610:     # Replace spaces by underscores
 7611:     $fname=~s/\s+/\_/g;
 7612:     # Replace all other weird characters by nothing
 7613:     $fname=~s/[^\w\.\-]//g;
 7614:     # See if there is anything left
 7615:     unless ($fname) { return 'error: no uploaded file'; }
 7616:     my $uploadedfile=$fname;
 7617:     $fname='scantron_orig_'.$fname;
 7618:     if (length($env{'form.upfile'}) < 2) {
 7619: 	$r->print(&mt("<span class=\"LC_error\">Error:</span> The file you attempted to upload, [_1]  contained no information. Please check that you entered the correct filename.",'<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</span>"));
 7620:     } else {
 7621: 	my $result=&Apache::lonnet::finishuserfileupload($env{'form.courseid'},$env{'form.domainid'},'upfile',$fname);
 7622: 	if ($result =~ m|^/uploaded/|) {
 7623: 	    $r->print(&mt("<span class=\"LC_success\">Success:</span> Successfully uploaded [_1] bytes of data into location [_2]",
 7624: 			  (length($env{'form.upfile'})-1),
 7625: 			  '<span class="LC_filename">'.$result."</span>"));
 7626: 	} else {
 7627: 	    $r->print(&mt("<span class=\"LC_error\">Error:</span> An error ([_1]) occurred when attempting to upload the file, [_2]",
 7628: 			  $result,
 7629: 			  '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</span>"));
 7630: 
 7631: 	}
 7632:     }
 7633:     if ($symb) {
 7634: 	$r->print(&scantron_selectphase($r,$uploadedfile));
 7635:     } else {
 7636: 	$r->print($doanotherupload);
 7637:     }
 7638:     return '';
 7639: }
 7640: 
 7641: sub valid_file {
 7642:     my ($requested_file)=@_;
 7643:     foreach my $filename (sort(&scantron_filenames())) {
 7644: 	if ($requested_file eq $filename) { return 1; }
 7645:     }
 7646:     return 0;
 7647: }
 7648: 
 7649: sub scantron_download_scantron_data {
 7650:     my ($r)=@_;
 7651:     my $default_form_data=&defaultFormData(&get_symb($r,1));
 7652:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7653:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7654:     my $file=$env{'form.scantron_selectfile'};
 7655:     if (! &valid_file($file)) {
 7656: 	$r->print('
 7657: 	<p>
 7658: 	    '.&mt('The requested file name was invalid.').'
 7659:         </p>
 7660: ');
 7661: 	$r->print(&show_grading_menu_form(&get_symb($r,1)));
 7662: 	return;
 7663:     }
 7664:     my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
 7665:     my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
 7666:     my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
 7667:     &Apache::lonnet::allowuploaded('/adm/grades',$orig);
 7668:     &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
 7669:     &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
 7670:     $r->print('
 7671:     <p>
 7672: 	'.&mt('[_1]Original[_2] file as uploaded by the scantron office.',
 7673: 	      '<a href="'.$orig.'">','</a>').'
 7674:     </p>
 7675:     <p>
 7676: 	'.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
 7677: 	      '<a href="'.$corrected.'">','</a>').'
 7678:     </p>
 7679:     <p>
 7680: 	'.&mt('[_1]Skipped[_2], a file of records that were skipped.',
 7681: 	      '<a href="'.$skipped.'">','</a>').'
 7682:     </p>
 7683: ');
 7684:     $r->print(&show_grading_menu_form(&get_symb($r,1)));
 7685:     return '';
 7686: }
 7687: 
 7688: sub checkscantron_results {
 7689:     my ($r) = @_;
 7690:     my ($symb)=&get_symb($r);
 7691:     if (!$symb) {return '';}
 7692:     my $grading_menu_button=&show_grading_menu_form($symb);
 7693:     my $cid = $env{'request.course.id'};
 7694:     my %lettdig = (
 7695:                     A => 1,
 7696:                     B => 2,
 7697:                     C => 3,
 7698:                     D => 4,
 7699:                     E => 5,
 7700:                     F => 6,
 7701:                     G => 7,
 7702:                     H => 8,
 7703:                     I => 9,
 7704:                     J => 0,
 7705:                   );
 7706:     my $numletts = scalar(keys(%lettdig));
 7707:     my $cnum = $env{'course.'.$cid.'.num'};
 7708:     my $cdom = $env{'course.'.$cid.'.domain'};
 7709:     my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
 7710:     my %record;
 7711:     my %scantron_config =
 7712:         &Apache::grades::get_scantron_config($env{'form.scantron_format'});
 7713:     my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
 7714:     my $classlist=&Apache::loncoursedata::get_classlist();
 7715:     my %idmap=&Apache::grades::username_to_idmap($classlist);
 7716:     my $navmap=Apache::lonnavmaps::navmap->new();
 7717:     my $map=$navmap->getResourceByUrl($sequence);
 7718:     my @resources=$navmap->retrieveResources($map,undef,1,0);
 7719:     my (%scandata,%lastname,%bylast);
 7720:     $r->print('
 7721: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
 7722: 
 7723:     my @delayqueue;
 7724:     my %completedstudents;
 7725: 
 7726:     my $count=&Apache::grades::get_todo_count($scanlines,$scan_data);
 7727:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron/Submissions Comparison Status',
 7728:                                     'Progress of Scantron Data/Submission Records Comparison',$count,
 7729:                                     'inline',undef,'checkscantron');
 7730:     my ($username,$domain,$uname,$started);
 7731: 
 7732:     &Apache::grades::scantron_get_maxbubble();  # Need the bubble lines array to parse.
 7733: 
 7734:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
 7735:                                           'Processing first student');
 7736:     my $start=&Time::HiRes::time();
 7737:     my $i=-1;
 7738: 
 7739:     while ($i<$scanlines->{'count'}) {
 7740:         ($username,$domain,$uname)=('','','');
 7741:         $i++;
 7742:         my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
 7743:         if ($line=~/^[\s\cz]*$/) { next; }
 7744:         if ($started) {
 7745:             &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
 7746:                                                      'last student');
 7747:         }
 7748:         $started=1;
 7749:         my $scan_record=
 7750:             &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
 7751:                                                      $scan_data);
 7752:         unless ($uname=&Apache::grades::scantron_find_student($scan_record,$scan_data,
 7753:                                                               \%idmap,$i)) {
 7754:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
 7755:                                 'Unable to find a student that matches',1);
 7756:             next;
 7757:         }
 7758:         if (exists $completedstudents{$uname}) {
 7759:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
 7760:                                 'Student '.$uname.' has multiple sheets',2);
 7761:             next;
 7762:         }
 7763:         my $pid = $scan_record->{'scantron.ID'};
 7764:         $lastname{$pid} = $scan_record->{'scantron.LastName'};
 7765:         push(@{$bylast{$lastname{$pid}}},$pid);
 7766:         my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
 7767:         $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
 7768:         chomp($scandata{$pid});
 7769:         $scandata{$pid} =~ s/\r$//;
 7770:         ($username,$domain)=split(/:/,$uname);
 7771:         my $counter = -1;
 7772:         my (%expected,%startpos);
 7773:         foreach my $resource (@resources) {
 7774:             next if (!$resource->is_problem());
 7775:             my $symb = $resource->symb();
 7776:             my $partsref = $resource->parts();
 7777:             my @parts;
 7778:             my @part_ids = ();
 7779:             if (ref($partsref) eq 'ARRAY') {
 7780:                @parts = @{$partsref};
 7781:                foreach my $part (@parts) {
 7782:                    my @resp_ids = $resource->responseIds($part);
 7783:                    foreach my $resp (@resp_ids) {
 7784:                        $counter ++;
 7785:                        my $part_id = $part.'.'.$resp;
 7786:                        $expected{$part_id} = 0;
 7787:                        push(@part_ids,$part_id);
 7788:                        if ($env{"form.scantron.sub_bubblelines.$counter"}) {
 7789:                            my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$counter"});
 7790:                            foreach my $item (@sub_lines) {
 7791:                                $expected{$part_id} += $item;
 7792:                            }
 7793:                        } else {
 7794:                            $expected{$part_id} = $env{"form.scantron.bubblelines.$counter"};
 7795:                        }
 7796:                        $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
 7797:                    }
 7798:                 }
 7799:             }
 7800:             if ($symb) {
 7801:                 my %recorded;
 7802:                 my (%returnhash) =
 7803:                     &Apache::lonnet::restore($symb,$cid,$domain,$username);
 7804:                 if ($returnhash{'version'}) {
 7805:                     my %lasthash=();
 7806:                     my $version;
 7807:                     for ($version=1;$version<=$returnhash{'version'};$version++) {
 7808:                         foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
 7809:                             $lasthash{$key}=$returnhash{$version.':'.$key};
 7810:                         }
 7811:                     }
 7812:                     foreach my $key (keys(%lasthash)) {
 7813:                         if ($key =~ /\.scantron$/) {
 7814:                             my $value = &unescape($lasthash{$key});
 7815:                             my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
 7816:                             if ($value eq '') {
 7817:                                 for (my $i=0; $i<$expected{$part_id}; $i++) {
 7818:                                     for (my $j=0; $j<$scantron_config{'length'}; $j++) {
 7819:                                         $recorded{$part_id} .= $;
 7820:                                     }
 7821:                                 }
 7822:                             } else {
 7823:                                 my @tocheck;
 7824:                                 my @items = split(//,$value);
 7825:                                 if (($scantron_config{'Qon'} eq 'letter') ||
 7826:                                     ($scantron_config{'Qon'} eq 'number')) {
 7827:                                     if (@items < $expected{$part_id}) {
 7828:                                         my $fragment = substr($scandata{$pid},$startpos{$part_id},$expected{$part_id});
 7829:                                         my @singles = split(//,$fragment);
 7830:                                         foreach my $pos (@singles) {
 7831:                                             if ($pos eq ' ') {
 7832:                                                 push(@tocheck,$pos);
 7833:                                             } else {
 7834:                                                 my $next = shift(@items);
 7835:                                                 push(@tocheck,$next);
 7836:                                             }
 7837:                                         }
 7838:                                     } else {
 7839:                                         @tocheck = @items;
 7840:                                     }
 7841:                                     foreach my $letter (@tocheck) {
 7842:                                         if ($scantron_config{'Qon'} eq 'letter') {
 7843:                                             if ($letter !~ /^[A-J]$/) {
 7844:                                                 $letter = $scantron_config{'Qoff'};
 7845:                                             }
 7846:                                             $recorded{$part_id} .= $letter;
 7847:                                         } elsif ($scantron_config{'Qon'} eq 'number') {
 7848:                                             my $digit;
 7849:                                             if ($letter !~ /^[A-J]$/) {
 7850:                                                 $digit = $scantron_config{'Qoff'};
 7851:                                             } else {
 7852:                                                 $digit = $lettdig{$letter};
 7853:                                             }
 7854:                                             $recorded{$part_id} .= $digit;
 7855:                                         }
 7856:                                     }
 7857:                                 } else {
 7858:                                     @tocheck = @items;
 7859:                                     for (my $i=0; $i<$expected{$part_id}; $i++) {
 7860:                                         my $curr_sub = shift(@tocheck);
 7861:                                         my $digit;
 7862:                                         if ($curr_sub =~ /^[A-J]$/) {
 7863:                                             $digit = $lettdig{$curr_sub}-1;
 7864:                                         }
 7865:                                         if ($curr_sub eq 'J') {
 7866:                                             $digit += scalar($numletts);
 7867:                                         }
 7868:                                         for (my $j=0; $j<$scantron_config{'Qlength'}; $j++) {
 7869:                                             if ($j == $digit) {
 7870:                                                 $recorded{$part_id} .= $scantron_config{'Qon'};
 7871:                                             } else {
 7872:                                                 $recorded{$part_id} .= $scantron_config{'Qoff'};
 7873:                                             }
 7874:                                         }
 7875:                                     }
 7876:                                 }
 7877:                             }
 7878:                         }
 7879:                     }
 7880:                 }
 7881:                 foreach my $part_id (@part_ids) {
 7882:                     if ($recorded{$part_id} eq '') {
 7883:                         for (my $i=0; $i<$expected{$part_id}; $i++) {
 7884:                             for (my $j=0; $j<$scantron_config{'Qlength'}; $j++) {
 7885:                                 $recorded{$part_id} .= $scantron_config{'Qoff'};
 7886:                             }
 7887:                         }
 7888:                     }
 7889:                     $record{$pid} .= $recorded{$part_id};
 7890:                 }
 7891:             }
 7892:         }
 7893:     }
 7894:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 7895:     $r->print('<br />');
 7896:     my ($okstudents,$badstudents,$numstudents,$passed,$failed);
 7897:     $passed = 0;
 7898:     $failed = 0;
 7899:     $numstudents = 0;
 7900:     foreach my $last (sort(keys(%bylast))) {
 7901:         if (ref($bylast{$last}) eq 'ARRAY') {
 7902:             foreach my $pid (sort(@{$bylast{$last}})) {
 7903:                 my $showscandata = $scandata{$pid};
 7904:                 my $showrecord = $record{$pid};
 7905:                 $showscandata =~ s/\s/&nbsp;/g;
 7906:                 $showrecord =~ s/\s/&nbsp;/g;
 7907:                 if ($scandata{$pid} eq $record{$pid}) {
 7908:                     my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
 7909:                     $okstudents .= '<tr class="'.$css_class.'">'.
 7910: '<td>'.&mt('Scantron').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
 7911: '</tr>'."\n".
 7912: '<tr class="'.$css_class.'">'."\n".
 7913: '<td>Submissions</td><td>'.$showrecord.'</td></tr>'."\n";
 7914:                     $passed ++;
 7915:                 } else {
 7916:                     my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
 7917:                     $badstudents .= '<tr class="'.$css_class.'"><td>'.&mt('Scantron').'</td><td><span class="LC_nobreak">'.$scandata{$pid}.'</span></td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
 7918: '</tr>'."\n".
 7919: '<tr class="'.$css_class.'">'."\n".
 7920: '<td>Submissions</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
 7921: '</tr>'."\n";
 7922:                     $failed ++;
 7923:                 }
 7924:                 $numstudents ++;
 7925:             }
 7926:         }
 7927:     }
 7928:     $r->print('<p>'.&mt('Comparison of scantron data (including corrections) with corresponding submission records (most recent submission) for <b>[quant,_1,student]</b>  ([_2] scantron lines/student).',$numstudents,$env{'form.scantron_maxbubble'}).'</p>');
 7929:     $r->print('<p>'.&mt('Exact matches for <b>[quant,_1,student]</b>.',$passed).'<br />'.&mt('Discrepancies detected for <b>[quant,_1,student]</b>.',$failed).'</p>');
 7930:     if ($passed) {
 7931:         $r->print(&mt('Students with exact correspondence between scantron data and submissions are as follows:').'<br /><br />');
 7932:         $r->print(&Apache::loncommon::start_data_table()."\n".
 7933:                  &Apache::loncommon::start_data_table_header_row()."\n".
 7934:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
 7935:                  &Apache::loncommon::end_data_table_header_row()."\n".
 7936:                  $okstudents."\n".
 7937:                  &Apache::loncommon::end_data_table().'<br />');
 7938:     }
 7939:     if ($failed) {
 7940:         $r->print(&mt('Students with differences between scantron data and submissions are as follows:').'<br /><br />');
 7941:         $r->print(&Apache::loncommon::start_data_table()."\n".
 7942:                  &Apache::loncommon::start_data_table_header_row()."\n".
 7943:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
 7944:                  &Apache::loncommon::end_data_table_header_row()."\n".
 7945:                  $badstudents."\n".
 7946:                  &Apache::loncommon::end_data_table()).'<br />'.
 7947:                  &mt('Differences can occur if submissions were modified using manual grading after a scantron grading pass.').'<br />'.&mt('If unexpected discrepancies were detected, it is recommended that you inspect the original scantron sheets.');  
 7948:     }
 7949:     $r->print('</form><br />'.$grading_menu_button);
 7950:     return;
 7951: }
 7952: 
 7953: 
 7954: #-------- end of section for handling grading scantron forms -------
 7955: #
 7956: #-------------------------------------------------------------------
 7957: 
 7958: #-------------------------- Menu interface -------------------------
 7959: #
 7960: #--- Show a Grading Menu button - Calls the next routine ---
 7961: sub show_grading_menu_form {
 7962:     my ($symb)=@_;
 7963:     my $result.='<br /><form action="/adm/grades" method="post">'."\n".
 7964: 	'<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 7965: 	'<input type="hidden" name="saveState"  value="'.$env{'form.saveState'}.'" />'."\n".
 7966: 	'<input type="hidden" name="command" value="gradingmenu" />'."\n".
 7967: 	'<input type="submit" name="submit" value="'.&mt('Grading Menu').'" />'."\n".
 7968: 	'</form>'."\n";
 7969:     return $result;
 7970: }
 7971: 
 7972: # -- Retrieve choices for grading form
 7973: sub savedState {
 7974:     my %savedState = ();
 7975:     if ($env{'form.saveState'}) {
 7976: 	foreach (split(/:/,$env{'form.saveState'})) {
 7977: 	    my ($key,$value) = split(/=/,$_,2);
 7978: 	    $savedState{$key} = $value;
 7979: 	}
 7980:     }
 7981:     return \%savedState;
 7982: }
 7983: 
 7984: sub grading_menu {
 7985:     my ($request) = @_;
 7986:     my ($symb)=&get_symb($request);
 7987:     if (!$symb) {return '';}
 7988:     my $probTitle = &Apache::lonnet::gettitle($symb);
 7989:     my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
 7990: 
 7991:     $request->print($table);
 7992:     my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
 7993:                   'handgrade'=>$hdgrade,
 7994:                   'probTitle'=>$probTitle,
 7995:                   'command'=>'submit_options',
 7996:                   'saveState'=>"",
 7997:                   'gradingMenu'=>1,
 7998:                   'showgrading'=>"yes");
 7999:     
 8000:     my $url1 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 8001:     
 8002:     $fields{'command'} = 'csvform';
 8003:     my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 8004:     
 8005:     $fields{'command'} = 'processclicker';
 8006:     my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 8007:     
 8008:     $fields{'command'} = 'scantron_selectphase';
 8009:     my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 8010:     
 8011:     my @menu = ({	categorytitle=>'Course Grading',
 8012:             items =>[
 8013:                         {	linktext => 'Manual Grading/View Submissions',
 8014:                     		url => $url1,
 8015:                     		permission => 'F',
 8016:                     		icon => 'edit-find-replace.png',
 8017:                     		linktitle => 'Start the process of hand grading submissions.'
 8018:                         },
 8019:                 	    {	linktext => 'Upload Scores',
 8020:                     		url => $url2,
 8021:                     		permission => 'F',
 8022:                     		icon => 'uploadscores.png',
 8023:                     		linktitle => 'Specify a file containing the class scores for current resource.'
 8024:                 	    },
 8025:                 	    {	linktext => 'Process Clicker',
 8026:                     		url => $url3,
 8027:                     		permission => 'F',
 8028:                     		icon => 'addClickerInfoFile.png',
 8029:                     		linktitle => 'Specify a file containing the clicker information for this resource.'
 8030:                 	    },
 8031:                 	    {	linktext => 'Grade/Manage/Review Scantron Forms',
 8032:                     		url => $url4,
 8033:                     		permission => 'F',
 8034:                     		icon => 'stat.png',
 8035:                     		linktitle => 'Grade scantron exams, upload/download scantron data files, and review previously graded scantron exams.'
 8036:                 	    }
 8037:                     ]
 8038:             });
 8039: 
 8040:     #$fields{'command'} = 'verify';
 8041:     #$url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 8042:     #
 8043:     # Create the menu
 8044:     my $Str;
 8045:     # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
 8046:     $Str .= '<form method="post" action="" name="gradingMenu">';
 8047:     $Str .= '<input type="hidden" name="command" value="" />'.
 8048:     	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 8049: 	'<input type="hidden" name="handgrade"   value="'.$hdgrade.'" />'."\n".
 8050: 	'<input type="hidden" name="probTitle"   value="'.$probTitle.'" />'."\n".
 8051: 	'<input type="hidden" name="saveState"   value="" />'."\n".
 8052: 	'<input type="hidden" name="gradingMenu" value="1" />'."\n".
 8053: 	'<input type="hidden" name="showgrading" value="yes" />'."\n";
 8054: 
 8055:     $Str .= Apache::lonhtmlcommon::generate_menu(@menu);
 8056:     #$menudata->{'jscript'}
 8057:     $Str .='<hr /><input type="button" value="'.&mt('Verify Receipt').'" '.
 8058:         ''.
 8059:         ' onClick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
 8060:         ' /> '.
 8061:         &Apache::lonnet::recprefix($env{'request.course.id'}).
 8062:         '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />';
 8063: 
 8064:     $Str .="</form>\n";
 8065:     $request->print(<<GRADINGMENUJS);
 8066: <script type="text/javascript" language="javascript">
 8067:     function checkChoice(formname,val,cmdx) {
 8068: 	if (val <= 2) {
 8069: 	    var cmd = radioSelection(formname.radioChoice);
 8070: 	    var cmdsave = cmd;
 8071: 	} else {
 8072: 	    cmd = cmdx;
 8073: 	    cmdsave = 'submission';
 8074: 	}
 8075: 	formname.command.value = cmd;
 8076: 	if (val < 5) formname.submit();
 8077: 	if (val == 5) {
 8078: 	    if (!checkReceiptNo(formname,'notOK')) { 
 8079: 	        return false;
 8080: 	    } else {
 8081: 	        formname.submit();
 8082: 	    }
 8083: 	}
 8084:     }
 8085: 
 8086:     function checkReceiptNo(formname,nospace) {
 8087: 	var receiptNo = formname.receipt.value;
 8088: 	var checkOpt = false;
 8089: 	if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
 8090: 	if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
 8091: 	if (checkOpt) {
 8092: 	    alert("Please enter a receipt number given by a student in the receipt box.");
 8093: 	    formname.receipt.value = "";
 8094: 	    formname.receipt.focus();
 8095: 	    return false;
 8096: 	}
 8097: 	return true;
 8098:     }
 8099: </script>
 8100: GRADINGMENUJS
 8101:     &commonJSfunctions($request);
 8102:     return $Str;    
 8103: }
 8104: 
 8105: 
 8106: #--- Displays the submissions first page -------
 8107: sub submit_options {
 8108:     my ($request) = @_;
 8109:     my ($symb)=&get_symb($request);
 8110:     if (!$symb) {return '';}
 8111:     my $probTitle = &Apache::lonnet::gettitle($symb);
 8112: 
 8113:     $request->print(<<GRADINGMENUJS);
 8114: <script type="text/javascript" language="javascript">
 8115:     function checkChoice(formname,val,cmdx) {
 8116: 	if (val <= 2) {
 8117: 	    var cmd = radioSelection(formname.radioChoice);
 8118: 	    var cmdsave = cmd;
 8119: 	} else {
 8120: 	    cmd = cmdx;
 8121: 	    cmdsave = 'submission';
 8122: 	}
 8123: 	formname.command.value = cmd;
 8124: 	formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
 8125: 	    ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
 8126: 	if (val < 5) formname.submit();
 8127: 	if (val == 5) {
 8128: 	    if (!checkReceiptNo(formname,'notOK')) { return false;}
 8129: 	    formname.submit();
 8130: 	}
 8131: 	if (val < 7) formname.submit();
 8132:     }
 8133: 
 8134:     function checkReceiptNo(formname,nospace) {
 8135: 	var receiptNo = formname.receipt.value;
 8136: 	var checkOpt = false;
 8137: 	if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
 8138: 	if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
 8139: 	if (checkOpt) {
 8140: 	    alert("Please enter a receipt number given by a student in the receipt box.");
 8141: 	    formname.receipt.value = "";
 8142: 	    formname.receipt.focus();
 8143: 	    return false;
 8144: 	}
 8145: 	return true;
 8146:     }
 8147: </script>
 8148: GRADINGMENUJS
 8149:     &commonJSfunctions($request);
 8150:     my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
 8151:     my $result;
 8152:     my (undef,$sections) = &getclasslist('all','0');
 8153:     my $savedState = &savedState();
 8154:     my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
 8155:     my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
 8156:     my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
 8157:     my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
 8158: 
 8159:     # Preselect sections
 8160:     my $selsec="";
 8161:     if (ref($sections)) {
 8162:         foreach my $section (sort(@$sections)) {
 8163:             $selsec.='<option value="'.$section.'" '.
 8164:                 ($saveSec eq $section ? 'selected="selected"':'').'>'.$section.'</option>'."\n";
 8165:         }
 8166:     }
 8167: 
 8168:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 8169: 	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 8170: 	'<input type="hidden" name="handgrade"   value="'.$hdgrade.'" />'."\n".
 8171: 	'<input type="hidden" name="probTitle"   value="'.$probTitle.'" />'."\n".
 8172: 	'<input type="hidden" name="command"     value="" />'."\n".
 8173: 	'<input type="hidden" name="saveState"   value="" />'."\n".
 8174: 	'<input type="hidden" name="gradingMenu" value="1" />'."\n".
 8175: 	'<input type="hidden" name="showgrading" value="yes" />'."\n";
 8176: 
 8177:     $result.='
 8178: <h2>
 8179:   '.&mt('Grade Current Resource').'
 8180: </h2>
 8181: <div>
 8182:   '.$table.'
 8183: </div>
 8184: 
 8185: <div class="LC_columnSection">
 8186:   
 8187:     <fieldset>
 8188:       <legend>
 8189:        '.&mt('Sections').'
 8190:       </legend>
 8191:       <select name="section" multiple="multiple" size="5">'."\n";
 8192:     $result.= $selsec;
 8193:     $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> &nbsp; ';
 8194:     $result.='
 8195:     </fieldset>
 8196:   
 8197:     <fieldset>
 8198:       <legend>
 8199:         '.&mt('Groups').'
 8200:       </legend>
 8201:       '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
 8202:     </fieldset>
 8203:   
 8204:     <fieldset>
 8205:       <legend>
 8206:         '.&mt('Access Status').'
 8207:       </legend>
 8208:       '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'
 8209:     </fieldset>
 8210:   
 8211:     <fieldset>
 8212:       <legend>
 8213:         '.&mt('Submission Status').'
 8214:       </legend>
 8215:       <select name="submitonly" size="5">
 8216: 	         <option value="yes" '.      ($saveSub eq 'yes'       ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>
 8217: 	         <option value="queued" '.   ($saveSub eq 'queued'    ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>
 8218: 	         <option value="graded" '.   ($saveSub eq 'graded'    ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>
 8219: 	         <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>
 8220:                  <option value="all" '.      ($saveSub eq 'all'       ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>
 8221:       </select>
 8222:     </fieldset>
 8223:   
 8224: </div>
 8225: 
 8226: <br />
 8227:           <div>
 8228:             <div>
 8229:               <label>
 8230:                 <input type="radio" name="radioChoice" value="submission" '.
 8231:                   ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.
 8232:              &mt('Select individual students to grade and view submissions.').'
 8233: 	      </label> 
 8234:             </div>
 8235:             <div>
 8236: 	      <label>
 8237:                 <input type="radio" name="radioChoice" value="viewgrades" '.
 8238:                   ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
 8239:                     &mt('Grade all selected students in a grading table.').'
 8240:               </label>
 8241:             </div>
 8242:             <div>
 8243: 	      <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next-&gt;').'" />
 8244:             </div>
 8245:           </div>
 8246: 
 8247: 
 8248:         <h2>
 8249:          '.&mt('Grade Complete Folder for One Student').'
 8250:         </h2>
 8251:         <div>
 8252:             <div>
 8253:               <label>
 8254:                 <input type="radio" name="radioChoice" value="pickStudentPage" '.
 8255: 	  ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
 8256:   &mt('The <b>complete</b> page/sequence/folder: For one student').'
 8257:               </label>
 8258:             </div>
 8259:             <div>
 8260: 	      <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next-&gt;').'" />
 8261:             </div>
 8262:         </div>
 8263:   </form>';
 8264:     $result .= &show_grading_menu_form($symb);
 8265:     return $result;
 8266: }
 8267: 
 8268: sub reset_perm {
 8269:     undef(%perm);
 8270: }
 8271: 
 8272: sub init_perm {
 8273:     &reset_perm();
 8274:     foreach my $test_perm ('vgr','mgr','opa') {
 8275: 
 8276: 	my $scope = $env{'request.course.id'};
 8277: 	if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
 8278: 
 8279: 	    $scope .= '/'.$env{'request.course.sec'};
 8280: 	    if ( $perm{$test_perm}=
 8281: 		 &Apache::lonnet::allowed($test_perm,$scope)) {
 8282: 		$perm{$test_perm.'_section'}=$env{'request.course.sec'};
 8283: 	    } else {
 8284: 		delete($perm{$test_perm});
 8285: 	    }
 8286: 	}
 8287:     }
 8288: }
 8289: 
 8290: sub gather_clicker_ids {
 8291:     my %clicker_ids;
 8292: 
 8293:     my $classlist = &Apache::loncoursedata::get_classlist();
 8294: 
 8295:     # Set up a couple variables.
 8296:     my $username_idx = &Apache::loncoursedata::CL_SNAME();
 8297:     my $domain_idx   = &Apache::loncoursedata::CL_SDOM();
 8298:     my $status_idx   = &Apache::loncoursedata::CL_STATUS();
 8299: 
 8300:     foreach my $student (keys(%$classlist)) {
 8301:         if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
 8302:         my $username = $classlist->{$student}->[$username_idx];
 8303:         my $domain   = $classlist->{$student}->[$domain_idx];
 8304:         my $clickers =
 8305: 	    (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
 8306:         foreach my $id (split(/\,/,$clickers)) {
 8307:             $id=~s/^[\#0]+//;
 8308:             $id=~s/[\-\:]//g;
 8309:             if (exists($clicker_ids{$id})) {
 8310: 		$clicker_ids{$id}.=','.$username.':'.$domain;
 8311:             } else {
 8312: 		$clicker_ids{$id}=$username.':'.$domain;
 8313:             }
 8314:         }
 8315:     }
 8316:     return %clicker_ids;
 8317: }
 8318: 
 8319: sub gather_adv_clicker_ids {
 8320:     my %clicker_ids;
 8321:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
 8322:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 8323:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
 8324:     foreach my $element (sort(keys(%coursepersonnel))) {
 8325:         foreach my $person (split(/\,/,$coursepersonnel{$element})) {
 8326:             my ($puname,$pudom)=split(/\:/,$person);
 8327:             my $clickers =
 8328: 		(&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
 8329:             foreach my $id (split(/\,/,$clickers)) {
 8330: 		$id=~s/^[\#0]+//;
 8331:                 $id=~s/[\-\:]//g;
 8332: 		if (exists($clicker_ids{$id})) {
 8333: 		    $clicker_ids{$id}.=','.$puname.':'.$pudom;
 8334: 		} else {
 8335: 		    $clicker_ids{$id}=$puname.':'.$pudom;
 8336: 		}
 8337:             }
 8338:         }
 8339:     }
 8340:     return %clicker_ids;
 8341: }
 8342: 
 8343: sub clicker_grading_parameters {
 8344:     return ('gradingmechanism' => 'scalar',
 8345:             'upfiletype' => 'scalar',
 8346:             'specificid' => 'scalar',
 8347:             'pcorrect' => 'scalar',
 8348:             'pincorrect' => 'scalar');
 8349: }
 8350: 
 8351: sub process_clicker {
 8352:     my ($r)=@_;
 8353:     my ($symb)=&get_symb($r);
 8354:     if (!$symb) {return '';}
 8355:     my $result=&checkforfile_js();
 8356:     $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
 8357:     my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
 8358:     $result.=$table;
 8359:     $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
 8360:     $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
 8361:     $result.='&nbsp;<b>'.&mt('Specify a file containing the clicker information for this resource.').
 8362:         '</b></td></tr>'."\n";
 8363:     $result.='<tr bgcolor=#ffffe6><td>'."\n";
 8364: # Attempt to restore parameters from last session, set defaults if not present
 8365:     my %Saveable_Parameters=&clicker_grading_parameters();
 8366:     &Apache::loncommon::restore_course_settings('grades_clicker',
 8367:                                                  \%Saveable_Parameters);
 8368:     if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
 8369:     if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
 8370:     if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
 8371:     if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
 8372: 
 8373:     my %checked;
 8374:     foreach my $gradingmechanism ('attendance','personnel','specific','given') {
 8375:        if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
 8376:           $checked{$gradingmechanism}="checked='checked'";
 8377:        }
 8378:     }
 8379: 
 8380:     my $upload=&mt("Upload File");
 8381:     my $type=&mt("Type");
 8382:     my $attendance=&mt("Award points just for participation");
 8383:     my $personnel=&mt("Correctness determined from response by course personnel");
 8384:     my $specific=&mt("Correctness determined from response with clicker ID(s)"); 
 8385:     my $given=&mt("Correctness determined from given list of answers").' '.
 8386:               '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
 8387:     my $pcorrect=&mt("Percentage points for correct solution");
 8388:     my $pincorrect=&mt("Percentage points for incorrect solution");
 8389:     my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
 8390: 						   ('iclicker' => 'i>clicker',
 8391:                                                     'interwrite' => 'interwrite PRS'));
 8392:     $symb = &Apache::lonenc::check_encrypt($symb);
 8393:     $result.=<<ENDUPFORM;
 8394: <script type="text/javascript">
 8395: function sanitycheck() {
 8396: // Accept only integer percentages
 8397:    document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
 8398:    document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
 8399: // Find out grading choice
 8400:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
 8401:       if (document.forms.gradesupload.gradingmechanism[i].checked) {
 8402:          gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
 8403:       }
 8404:    }
 8405: // By default, new choice equals user selection
 8406:    newgradingchoice=gradingchoice;
 8407: // Not good to give more points for false answers than correct ones
 8408:    if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
 8409:       document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
 8410:    }
 8411: // If new choice is attendance only, and old choice was correctness-based, restore defaults
 8412:    if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
 8413:       document.forms.gradesupload.pcorrect.value=100;
 8414:       document.forms.gradesupload.pincorrect.value=100;
 8415:    }
 8416: // If the values are different, cannot be attendance only
 8417:    if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
 8418:        (gradingchoice=='attendance')) {
 8419:        newgradingchoice='personnel';
 8420:    }
 8421: // Change grading choice to new one
 8422:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
 8423:       if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
 8424:          document.forms.gradesupload.gradingmechanism[i].checked=true;
 8425:       } else {
 8426:          document.forms.gradesupload.gradingmechanism[i].checked=false;
 8427:       }
 8428:    }
 8429: // Remember the old state
 8430:    document.forms.gradesupload.waschecked.value=newgradingchoice;
 8431: }
 8432: </script>
 8433: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
 8434: <input type="hidden" name="symb" value="$symb" />
 8435: <input type="hidden" name="command" value="processclickerfile" />
 8436: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
 8437: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
 8438: <input type="file" name="upfile" size="50" />
 8439: <br /><label>$type: $selectform</label>
 8440: <br /><label><input type="radio" name="gradingmechanism" value="attendance" $checked{'attendance'} onClick="sanitycheck()" />$attendance </label>
 8441: <br /><label><input type="radio" name="gradingmechanism" value="personnel" $checked{'personnel'} onClick="sanitycheck()" />$personnel</label>
 8442: <br /><label><input type="radio" name="gradingmechanism" value="specific" $checked{'specific'} onClick="sanitycheck()" />$specific </label>
 8443: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
 8444: <br /><label><input type="radio" name="gradingmechanism" value="given" $checked{'given'} onClick="sanitycheck()" />$given </label>
 8445: <br />&nbsp;&nbsp;&nbsp;
 8446: <input type="text" name="givenanswer" size="50" />
 8447: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
 8448: <br /><label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onChange="sanitycheck()" /></label>
 8449: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onChange="sanitycheck()" /></label>
 8450: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
 8451: </form>
 8452: ENDUPFORM
 8453:     $result.='</td></tr></table>'."\n".
 8454:              '</td></tr></table><br /><br />'."\n";
 8455:     $result.=&show_grading_menu_form($symb);
 8456:     return $result;
 8457: }
 8458: 
 8459: sub process_clicker_file {
 8460:     my ($r)=@_;
 8461:     my ($symb)=&get_symb($r);
 8462:     if (!$symb) {return '';}
 8463: 
 8464:     my %Saveable_Parameters=&clicker_grading_parameters();
 8465:     &Apache::loncommon::store_course_settings('grades_clicker',
 8466:                                               \%Saveable_Parameters);
 8467: 
 8468:     my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
 8469:     if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
 8470: 	$result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
 8471: 	return $result.&show_grading_menu_form($symb);
 8472:     }
 8473:     if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
 8474:         $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
 8475:         return $result.&show_grading_menu_form($symb);
 8476:     }
 8477:     my $foundgiven=0;
 8478:     if ($env{'form.gradingmechanism'} eq 'given') {
 8479:         $env{'form.givenanswer'}=~s/^\s*//gs;
 8480:         $env{'form.givenanswer'}=~s/\s*$//gs;
 8481:         $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-]+/\,/g;
 8482:         $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
 8483:         my @answers=split(/\,/,$env{'form.givenanswer'});
 8484:         $foundgiven=$#answers+1;
 8485:     }
 8486:     my %clicker_ids=&gather_clicker_ids();
 8487:     my %correct_ids;
 8488:     if ($env{'form.gradingmechanism'} eq 'personnel') {
 8489: 	%correct_ids=&gather_adv_clicker_ids();
 8490:     }
 8491:     if ($env{'form.gradingmechanism'} eq 'specific') {
 8492: 	foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
 8493: 	   $correct_id=~tr/a-z/A-Z/;
 8494: 	   $correct_id=~s/\s//gs;
 8495: 	   $correct_id=~s/^[\#0]+//;
 8496:            $correct_id=~s/[\-\:]//g;
 8497:            if ($correct_id) {
 8498: 	      $correct_ids{$correct_id}='specified';
 8499:            }
 8500:         }
 8501:     }
 8502:     if ($env{'form.gradingmechanism'} eq 'attendance') {
 8503: 	$result.=&mt('Score based on attendance only');
 8504:     } elsif ($env{'form.gradingmechanism'} eq 'given') {
 8505:         $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
 8506:     } else {
 8507: 	my $number=0;
 8508: 	$result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
 8509: 	foreach my $id (sort(keys(%correct_ids))) {
 8510: 	    $result.='<br /><tt>'.$id.'</tt> - ';
 8511: 	    if ($correct_ids{$id} eq 'specified') {
 8512: 		$result.=&mt('specified');
 8513: 	    } else {
 8514: 		my ($uname,$udom)=split(/\:/,$correct_ids{$id});
 8515: 		$result.=&Apache::loncommon::plainname($uname,$udom);
 8516: 	    }
 8517: 	    $number++;
 8518: 	}
 8519:         $result.="</p>\n";
 8520: 	if ($number==0) {
 8521: 	    $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
 8522: 	    return $result.&show_grading_menu_form($symb);
 8523: 	}
 8524:     }
 8525:     if (length($env{'form.upfile'}) < 2) {
 8526:         $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
 8527: 		     '<span class="LC_error">',
 8528: 		     '</span>',
 8529: 		     '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
 8530:         return $result.&show_grading_menu_form($symb);
 8531:     }
 8532: 
 8533: # Were able to get all the info needed, now analyze the file
 8534: 
 8535:     $result.=&Apache::loncommon::studentbrowser_javascript();
 8536:     $symb = &Apache::lonenc::check_encrypt($symb);
 8537:     my $heading=&mt('Scanning clicker file');
 8538:     $result.=(<<ENDHEADER);
 8539: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
 8540: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
 8541: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
 8542: <form method="post" action="/adm/grades" name="clickeranalysis">
 8543: <input type="hidden" name="symb" value="$symb" />
 8544: <input type="hidden" name="command" value="assignclickergrades" />
 8545: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
 8546: <input type="hidden" name="saveState"  value="$env{'form.saveState'}" />
 8547: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
 8548: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
 8549: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
 8550: ENDHEADER
 8551:     if ($env{'form.gradingmechanism'} eq 'given') {
 8552:        $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
 8553:     } 
 8554:     my %responses;
 8555:     my @questiontitles;
 8556:     my $errormsg='';
 8557:     my $number=0;
 8558:     if ($env{'form.upfiletype'} eq 'iclicker') {
 8559: 	($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
 8560:     }
 8561:     if ($env{'form.upfiletype'} eq 'interwrite') {
 8562:         ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
 8563:     }
 8564:     $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
 8565:              '<input type="hidden" name="number" value="'.$number.'" />'.
 8566:              &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
 8567:                  $env{'form.pcorrect'},$env{'form.pincorrect'}).
 8568:              '<br />';
 8569:     if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
 8570:        $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
 8571:        return $result.&show_grading_menu_form($symb);
 8572:     } 
 8573: # Remember Question Titles
 8574: # FIXME: Possibly need delimiter other than ":"
 8575:     for (my $i=0;$i<$number;$i++) {
 8576:         $result.='<input type="hidden" name="question:'.$i.'" value="'.
 8577:                  &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
 8578:     }
 8579:     my $correct_count=0;
 8580:     my $student_count=0;
 8581:     my $unknown_count=0;
 8582: # Match answers with usernames
 8583: # FIXME: Possibly need delimiter other than ":"
 8584:     foreach my $id (keys(%responses)) {
 8585:        if ($correct_ids{$id}) {
 8586:           $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
 8587:           $correct_count++;
 8588:        } elsif ($clicker_ids{$id}) {
 8589:           if ($clicker_ids{$id}=~/\,/) {
 8590: # More than one user with the same clicker!
 8591:              $result.="\n<hr />".&mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
 8592:              $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
 8593:                            "<select name='multi".$id."'>";
 8594:              foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
 8595:                  $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
 8596:              }
 8597:              $result.='</select>';
 8598:              $unknown_count++;
 8599:           } else {
 8600: # Good: found one and only one user with the right clicker
 8601:              $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
 8602:              $student_count++;
 8603:           }
 8604:        } else {
 8605:           $result.="\n<hr />".&mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
 8606:           $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
 8607:                    "\n".&mt("Username").": <input type='text' name='uname".$id."' />&nbsp;".
 8608:                    "\n".&mt("Domain").": ".
 8609:                    &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).'&nbsp;'.
 8610:                    &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id);
 8611:           $unknown_count++;
 8612:        }
 8613:     }
 8614:     $result.='<hr />'.
 8615:              &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
 8616:     if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
 8617:        if ($correct_count==0) {
 8618:           $errormsg.="Found no correct answers answers for grading!";
 8619:        } elsif ($correct_count>1) {
 8620:           $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
 8621:        }
 8622:     }
 8623:     if ($number<1) {
 8624:        $errormsg.="Found no questions.";
 8625:     }
 8626:     if ($errormsg) {
 8627:        $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
 8628:     } else {
 8629:        $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
 8630:     }
 8631:     $result.='</form></td></tr></table>'."\n".
 8632:              '</td></tr></table><br /><br />'."\n";
 8633:     return $result.&show_grading_menu_form($symb);
 8634: }
 8635: 
 8636: sub iclicker_eval {
 8637:     my ($questiontitles,$responses)=@_;
 8638:     my $number=0;
 8639:     my $errormsg='';
 8640:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
 8641:         my %components=&Apache::loncommon::record_sep($line);
 8642:         my @entries=map {$components{$_}} (sort(keys(%components)));
 8643: 	if ($entries[0] eq 'Question') {
 8644: 	    for (my $i=3;$i<$#entries;$i+=6) {
 8645: 		$$questiontitles[$number]=$entries[$i];
 8646: 		$number++;
 8647: 	    }
 8648: 	}
 8649: 	if ($entries[0]=~/^\#/) {
 8650: 	    my $id=$entries[0];
 8651: 	    my @idresponses;
 8652: 	    $id=~s/^[\#0]+//;
 8653: 	    for (my $i=0;$i<$number;$i++) {
 8654: 		my $idx=3+$i*6;
 8655: 		push(@idresponses,$entries[$idx]);
 8656: 	    }
 8657: 	    $$responses{$id}=join(',',@idresponses);
 8658: 	}
 8659:     }
 8660:     return ($errormsg,$number);
 8661: }
 8662: 
 8663: sub interwrite_eval {
 8664:     my ($questiontitles,$responses)=@_;
 8665:     my $number=0;
 8666:     my $errormsg='';
 8667:     my $skipline=1;
 8668:     my $questionnumber=0;
 8669:     my %idresponses=();
 8670:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
 8671:         my %components=&Apache::loncommon::record_sep($line);
 8672:         my @entries=map {$components{$_}} (sort(keys(%components)));
 8673:         if ($entries[1] eq 'Time') { $skipline=0; next; }
 8674:         if ($entries[1] eq 'Response') { $skipline=1; }
 8675:         next if $skipline;
 8676:         if ($entries[0]!=$questionnumber) {
 8677:            $questionnumber=$entries[0];
 8678:            $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
 8679:            $number++;
 8680:         }
 8681:         my $id=$entries[4];
 8682:         $id=~s/^[\#0]+//;
 8683:         $id=~s/^v\d*\://i;
 8684:         $id=~s/[\-\:]//g;
 8685:         $idresponses{$id}[$number]=$entries[6];
 8686:     }
 8687:     foreach my $id (keys(%idresponses)) {
 8688:        $$responses{$id}=join(',',@{$idresponses{$id}});
 8689:        $$responses{$id}=~s/^\s*\,//;
 8690:     }
 8691:     return ($errormsg,$number);
 8692: }
 8693: 
 8694: sub assign_clicker_grades {
 8695:     my ($r)=@_;
 8696:     my ($symb)=&get_symb($r);
 8697:     if (!$symb) {return '';}
 8698: # See which part we are saving to
 8699:     my ($partlist,$handgrade,$responseType) = &response_type($symb);
 8700: # FIXME: This should probably look for the first handgradeable part
 8701:     my $part=$$partlist[0];
 8702: # Start screen output
 8703:     my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
 8704: 
 8705:     my $heading=&mt('Assigning grades based on clicker file');
 8706:     $result.=(<<ENDHEADER);
 8707: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
 8708: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
 8709: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
 8710: ENDHEADER
 8711: # Get correct result
 8712: # FIXME: Possibly need delimiter other than ":"
 8713:     my @correct=();
 8714:     my $gradingmechanism=$env{'form.gradingmechanism'};
 8715:     my $number=$env{'form.number'};
 8716:     if ($gradingmechanism ne 'attendance') {
 8717:        foreach my $key (keys(%env)) {
 8718:           if ($key=~/^form\.correct\:/) {
 8719:              my @input=split(/\,/,$env{$key});
 8720:              for (my $i=0;$i<=$#input;$i++) {
 8721:                  if (($correct[$i]) && ($input[$i]) &&
 8722:                      ($correct[$i] ne $input[$i])) {
 8723:                     $result.='<br /><span class="LC_warning">'.
 8724:                              &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
 8725:                                  $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
 8726:                  } elsif ($input[$i]) {
 8727:                     $correct[$i]=$input[$i];
 8728:                  }
 8729:              }
 8730:           }
 8731:        }
 8732:        for (my $i=0;$i<$number;$i++) {
 8733:           if (!$correct[$i]) {
 8734:              $result.='<br /><span class="LC_error">'.
 8735:                       &mt('No correct result given for question "[_1]"!',
 8736:                           $env{'form.question:'.$i}).'</span>';
 8737:           }
 8738:        }
 8739:        $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ($_?$_:'-') } @correct));
 8740:     }
 8741: # Start grading
 8742:     my $pcorrect=$env{'form.pcorrect'};
 8743:     my $pincorrect=$env{'form.pincorrect'};
 8744:     my $storecount=0;
 8745:     foreach my $key (keys(%env)) {
 8746:        my $user='';
 8747:        if ($key=~/^form\.student\:(.*)$/) {
 8748:           $user=$1;
 8749:        }
 8750:        if ($key=~/^form\.unknown\:(.*)$/) {
 8751:           my $id=$1;
 8752:           if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
 8753:              $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
 8754:           } elsif ($env{'form.multi'.$id}) {
 8755:              $user=$env{'form.multi'.$id};
 8756:           }
 8757:        }
 8758:        if ($user) { 
 8759:           my @answer=split(/\,/,$env{$key});
 8760:           my $sum=0;
 8761:           my $realnumber=$number;
 8762:           for (my $i=0;$i<$number;$i++) {
 8763:              if ($answer[$i]) {
 8764:                 if ($gradingmechanism eq 'attendance') {
 8765:                    $sum+=$pcorrect;
 8766:                 } elsif ($answer[$i] eq '*') {
 8767:                    $sum+=$pcorrect;
 8768:                 } elsif ($answer[$i] eq '-') {
 8769:                    $realnumber--;
 8770:                 } else {
 8771:                    if ($answer[$i] eq $correct[$i]) {
 8772:                       $sum+=$pcorrect;
 8773:                    } else {
 8774:                       $sum+=$pincorrect;
 8775:                    }
 8776:                 }
 8777:              }
 8778:           }
 8779:           my $ave=$sum/(100*$realnumber);
 8780: # Store
 8781:           my ($username,$domain)=split(/\:/,$user);
 8782:           my %grades=();
 8783:           $grades{"resource.$part.solved"}='correct_by_override';
 8784:           $grades{"resource.$part.awarded"}=$ave;
 8785:           $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
 8786:           my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
 8787:                                                  $env{'request.course.id'},
 8788:                                                  $domain,$username);
 8789:           if ($returncode ne 'ok') {
 8790:              $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
 8791:           } else {
 8792:              $storecount++;
 8793:           }
 8794:        }
 8795:     }
 8796: # We are done
 8797:     $result.='<br />'.&mt('Successfully stored grades for [_1] student(s).',$storecount).
 8798:              '</td></tr></table>'."\n".
 8799:              '</td></tr></table><br /><br />'."\n";
 8800:     return $result.&show_grading_menu_form($symb);
 8801: }
 8802: 
 8803: sub handler {
 8804:     my $request=$_[0];
 8805:     &reset_caches();
 8806:     if ($env{'browser.mathml'}) {
 8807: 	&Apache::loncommon::content_type($request,'text/xml');
 8808:     } else {
 8809: 	&Apache::loncommon::content_type($request,'text/html');
 8810:     }
 8811:     $request->send_http_header;
 8812:     return '' if $request->header_only;
 8813:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
 8814:     my $symb=&get_symb($request,1);
 8815:     my @commands=&Apache::loncommon::get_env_multiple('form.command');
 8816:     my $command=$commands[0];
 8817: 
 8818:     if ($#commands > 0) {
 8819: 	&Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
 8820:     }
 8821: 
 8822:     $ssi_error = 0;
 8823:     my $brcrum = [{href=>"/adm/grades",text=>"Grading"}];
 8824:     $request->print(&Apache::loncommon::start_page('Grading',undef,
 8825:                                           {'bread_crumbs' => $brcrum}));
 8826:     if ($symb eq '' && $command eq '') {
 8827: 	if ($env{'user.adv'}) {
 8828: 	    if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
 8829: 		($env{'form.codethree'})) {
 8830: 		my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
 8831: 		    $env{'form.codethree'};
 8832: 		my ($tsymb,$tuname,$tudom,$tcrsid)=
 8833: 		    &Apache::lonnet::checkin($token);
 8834: 		if ($tsymb) {
 8835: 		    my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
 8836: 		    if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
 8837: 			$request->print(&ssi_with_retries('/res/'.$url, $ssi_retries,
 8838: 					  ('grade_username' => $tuname,
 8839: 					   'grade_domain' => $tudom,
 8840: 					   'grade_courseid' => $tcrsid,
 8841: 					   'grade_symb' => $tsymb)));
 8842: 		    } else {
 8843: 			$request->print('<h3>Not authorized: '.$token.'</h3>');
 8844: 		    }
 8845: 		} else {
 8846: 		    $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
 8847: 		}
 8848: 	    } else {
 8849: 		$request->print(&Apache::lonxml::tokeninputfield());
 8850: 	    }
 8851: 	}
 8852:     } else {
 8853: 	&init_perm();
 8854: 	if ($command eq 'submission' && $perm{'vgr'}) {
 8855: 	    ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
 8856: 	} elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
 8857: 	    &pickStudentPage($request);
 8858: 	} elsif ($command eq 'displayPage' && $perm{'vgr'}) {
 8859: 	    &displayPage($request);
 8860: 	} elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
 8861: 	    &updateGradeByPage($request);
 8862: 	} elsif ($command eq 'processGroup' && $perm{'vgr'}) {
 8863: 	    &processGroup($request);
 8864: 	} elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
 8865: 	    $request->print(&grading_menu($request));
 8866: 	} elsif ($command eq 'submit_options' && $perm{'vgr'}) {
 8867: 	    $request->print(&submit_options($request));
 8868: 	} elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
 8869: 	    $request->print(&viewgrades($request));
 8870: 	} elsif ($command eq 'handgrade' && $perm{'mgr'}) {
 8871: 	    $request->print(&processHandGrade($request));
 8872: 	} elsif ($command eq 'editgrades' && $perm{'mgr'}) {
 8873: 	    $request->print(&editgrades($request));
 8874: 	} elsif ($command eq 'verify' && $perm{'vgr'}) {
 8875: 	    $request->print(&verifyreceipt($request));
 8876:         } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
 8877:             $request->print(&process_clicker($request));
 8878:         } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
 8879:             $request->print(&process_clicker_file($request));
 8880:         } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
 8881:             $request->print(&assign_clicker_grades($request));
 8882: 	} elsif ($command eq 'csvform' && $perm{'mgr'}) {
 8883: 	    $request->print(&upcsvScores_form($request));
 8884: 	} elsif ($command eq 'csvupload' && $perm{'mgr'}) {
 8885: 	    $request->print(&csvupload($request));
 8886: 	} elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
 8887: 	    $request->print(&csvuploadmap($request));
 8888: 	} elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
 8889: 	    if ($env{'form.associate'} ne 'Reverse Association') {
 8890: 		$request->print(&csvuploadoptions($request));
 8891: 	    } else {
 8892: 		if ( $env{'form.upfile_associate'} ne 'reverse' ) {
 8893: 		    $env{'form.upfile_associate'} = 'reverse';
 8894: 		} else {
 8895: 		    $env{'form.upfile_associate'} = 'forward';
 8896: 		}
 8897: 		$request->print(&csvuploadmap($request));
 8898: 	    }
 8899: 	} elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
 8900: 	    $request->print(&csvuploadassign($request));
 8901: 	} elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
 8902: 	    $request->print(&scantron_selectphase($request));
 8903:  	} elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
 8904:  	    $request->print(&scantron_do_warning($request));
 8905: 	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
 8906: 	    $request->print(&scantron_validate_file($request));
 8907: 	} elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
 8908: 	    $request->print(&scantron_process_students($request));
 8909:  	} elsif ($command eq 'scantronupload' && 
 8910:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
 8911: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
 8912:  	    $request->print(&scantron_upload_scantron_data($request)); 
 8913:  	} elsif ($command eq 'scantronupload_save' &&
 8914:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
 8915: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
 8916:  	    $request->print(&scantron_upload_scantron_data_save($request));
 8917:  	} elsif ($command eq 'scantron_download' &&
 8918: 		 &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
 8919:  	    $request->print(&scantron_download_scantron_data($request));
 8920:         } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
 8921:             $request->print(&checkscantron_results($request));     
 8922: 	} elsif ($command) {
 8923: 	    $request->print("Access Denied ($command)");
 8924: 	}
 8925:     }
 8926:     if ($ssi_error) {
 8927: 	&ssi_print_error($request);
 8928:     }
 8929:     $request->print(&Apache::loncommon::end_page());
 8930:     &reset_caches();
 8931:     return '';
 8932: }
 8933: 
 8934: 1;
 8935: 
 8936: __END__;
 8937: 
 8938: 
 8939: =head1 NAME
 8940: 
 8941: Apache::grades
 8942: 
 8943: =head1 SYNOPSIS
 8944: 
 8945: Handles the viewing of grades.
 8946: 
 8947: This is part of the LearningOnline Network with CAPA project
 8948: described at http://www.lon-capa.org.
 8949: 
 8950: =head1 OVERVIEW
 8951: 
 8952: Do an ssi with retries:
 8953: While I'd love to factor out this with the vesrion in lonprintout,
 8954: that would either require a data coupling between modules, which I refuse to perpetuate (there's quite enough of that already), or would require the invention of another infrastructure
 8955: I'm not quite ready to invent (e.g. an ssi_with_retry object).
 8956: 
 8957: At least the logic that drives this has been pulled out into loncommon.
 8958: 
 8959: 
 8960: 
 8961: ssi_with_retries - Does the server side include of a resource.
 8962:                      if the ssi call returns an error we'll retry it up to
 8963:                      the number of times requested by the caller.
 8964:                      If we still have a proble, no text is appended to the
 8965:                      output and we set some global variables.
 8966:                      to indicate to the caller an SSI error occurred.  
 8967:                      All of this is supposed to deal with the issues described
 8968:                      in LonCAPA BZ 5631 see:
 8969:                      http://bugs.lon-capa.org/show_bug.cgi?id=5631
 8970:                      by informing the user that this happened.
 8971: 
 8972: Parameters:
 8973:   resource   - The resource to include.  This is passed directly, without
 8974:                interpretation to lonnet::ssi.
 8975:   form       - The form hash parameters that guide the interpretation of the resource
 8976:                
 8977:   retries    - Number of retries allowed before giving up completely.
 8978: Returns:
 8979:   On success, returns the rendered resource identified by the resource parameter.
 8980: Side Effects:
 8981:   The following global variables can be set:
 8982:    ssi_error                - If an unrecoverable error occurred this becomes true.
 8983:                               It is up to the caller to initialize this to false
 8984:                               if desired.
 8985:    ssi_error_resource  - If an unrecoverable error occurred, this is the value
 8986:                               of the resource that could not be rendered by the ssi
 8987:                               call.
 8988:    ssi_error_message   - The error string fetched from the ssi response
 8989:                               in the event of an error.
 8990: 
 8991: 
 8992: =head1 HANDLER SUBROUTINE
 8993: 
 8994: ssi_with_retries()
 8995: 
 8996: =head1 SUBROUTINES
 8997: 
 8998: =over
 8999: 
 9000: =item scantron_get_correction() : 
 9001: 
 9002:    Builds the interface screen to interact with the operator to fix a
 9003:    specific error condition in a specific scanline
 9004: 
 9005:  Arguments:
 9006:     $r           - Apache request object
 9007:     $i           - number of the current scanline
 9008:     $scan_record - hash ref as returned from &scantron_parse_scanline()
 9009:     $scan_config - hash ref as returned from &get_scantron_config()
 9010:     $line        - full contents of the current scanline
 9011:     $error       - error condition, valid values are
 9012:                    'incorrectCODE', 'duplicateCODE',
 9013:                    'doublebubble', 'missingbubble',
 9014:                    'duplicateID', 'incorrectID'
 9015:     $arg         - extra information needed
 9016:        For errors:
 9017:          - duplicateID   - paper number that this studentID was seen before on
 9018:          - duplicateCODE - array ref of the paper numbers this CODE was
 9019:                            seen on before
 9020:          - incorrectCODE - current incorrect CODE 
 9021:          - doublebubble  - array ref of the bubble lines that have double
 9022:                            bubble errors
 9023:          - missingbubble - array ref of the bubble lines that have missing
 9024:                            bubble errors
 9025: 
 9026: =item  scantron_get_maxbubble() : 
 9027: 
 9028:    Returns the maximum number of bubble lines that are expected to
 9029:    occur. Does this by walking the selected sequence rendering the
 9030:    resource and then checking &Apache::lonxml::get_problem_counter()
 9031:    for what the current value of the problem counter is.
 9032: 
 9033:    Caches the results to $env{'form.scantron_maxbubble'},
 9034:    $env{'form.scantron.bubble_lines.n'}, 
 9035:    $env{'form.scantron.first_bubble_line.n'} and
 9036:    $env{"form.scantron.sub_bubblelines.n"}
 9037:    which are the total number of bubble, lines, the number of bubble
 9038:    lines for response n and number of the first bubble line for response n,
 9039:    and a comma separated list of numbers of bubble lines for sub-questions
 9040:    (for optionresponse, matchresponse, and rankresponse items), for response n.  
 9041: 
 9042: 
 9043: =item  scantron_validate_missingbubbles() : 
 9044: 
 9045:    Validates all scanlines in the selected file to not have any
 9046:     answers that don't have bubbles that have not been verified
 9047:     to be bubble free.
 9048: 
 9049: =item  scantron_process_students() : 
 9050: 
 9051:    Routine that does the actual grading of the bubble sheet information.
 9052: 
 9053:    The parsed scanline hash is added to %env 
 9054: 
 9055:    Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
 9056:    foreach resource , with the form data of
 9057: 
 9058: 	'submitted'     =>'scantron' 
 9059: 	'grade_target'  =>'grade',
 9060: 	'grade_username'=> username of student
 9061: 	'grade_domain'  => domain of student
 9062: 	'grade_courseid'=> of course
 9063: 	'grade_symb'    => symb of resource to grade
 9064: 
 9065:     This triggers a grading pass. The problem grading code takes care
 9066:     of converting the bubbled letter information (now in %env) into a
 9067:     valid submission.
 9068: 
 9069: =item  scantron_upload_scantron_data() :
 9070: 
 9071:     Creates the screen for adding a new bubble sheet data file to a course.
 9072: 
 9073: =item  scantron_upload_scantron_data_save() : 
 9074: 
 9075:    Adds a provided bubble information data file to the course if user
 9076:    has the correct privileges to do so. 
 9077: 
 9078: =item  valid_file() :
 9079: 
 9080:    Validates that the requested bubble data file exists in the course.
 9081: 
 9082: =item  scantron_download_scantron_data() : 
 9083: 
 9084:    Shows a list of the three internal files (original, corrected,
 9085:    skipped) for a specific bubble sheet data file that exists in the
 9086:    course.
 9087: 
 9088: =item  scantron_validate_ID() : 
 9089: 
 9090:    Validates all scanlines in the selected file to not have any
 9091:    invalid or underspecified student IDs
 9092: 
 9093: =back
 9094: 
 9095: =cut

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