File:  [LON-CAPA] / loncom / homework / grades.pm
Revision 1.757: download - view: text, annotated - select for diffs
Thu Jan 31 17:44:18 2019 UTC (5 years, 2 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Uploaded bubblesheet data can consist of comma separated values.
  Wording changes and display style for bubbletype div ste to "block".

    1: # The LearningOnline Network with CAPA
    2: # The LON-CAPA Grading handler
    3: #
    4: # $Id: grades.pm,v 1.757 2019/01/31 17:44:18 raeburn 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 :http);
   44: use Apache::lonlocal;
   45: use Apache::lonenc;
   46: use Apache::lonstathelpers;
   47: use Apache::lonquickgrades;
   48: use Apache::bridgetask();
   49: use Apache::lontexconvert();
   50: use String::Similarity;
   51: use LONCAPA;
   52: 
   53: use POSIX qw(floor);
   54: 
   55: 
   56: 
   57: my %perm=();
   58: my %old_essays=();
   59: 
   60: #  These variables are used to recover from ssi errors
   61: 
   62: my $ssi_retries = 5;
   63: my $ssi_error;
   64: my $ssi_error_resource;
   65: my $ssi_error_message;
   66: 
   67: 
   68: sub ssi_with_retries {
   69:     my ($resource, $retries, %form) = @_;
   70:     my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
   71:     if ($response->is_error) {
   72: 	$ssi_error          = 1;
   73: 	$ssi_error_resource = $resource;
   74: 	$ssi_error_message  = $response->code . " " . $response->message;
   75:     }
   76: 
   77:     return $content;
   78: 
   79: }
   80: #
   81: #  Prodcuces an ssi retry failure error message to the user:
   82: #
   83: 
   84: sub ssi_print_error {
   85:     my ($r) = @_;
   86:     my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
   87:     $r->print('
   88: <br />
   89: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
   90: <p>
   91: '.&mt('Unable to retrieve a resource from a server:').'<br />
   92: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
   93: '.&mt('Error:').' '.$ssi_error_message.'
   94: </p>
   95: <p>'.
   96: &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 />'.
   97: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
   98: '</p>');
   99:     return;
  100: }
  101: 
  102: #
  103: # --- Retrieve the parts from the metadata file.---
  104: # Returns an array of everything that the resources stores away
  105: #
  106: 
  107: sub getpartlist {
  108:     my ($symb,$errorref) = @_;
  109: 
  110:     my $navmap   = Apache::lonnavmaps::navmap->new();
  111:     unless (ref($navmap)) {
  112:         if (ref($errorref)) { 
  113:             $$errorref = 'navmap';
  114:             return;
  115:         }
  116:     }
  117:     my $res      = $navmap->getBySymb($symb);
  118:     my $partlist = $res->parts();
  119:     my $url      = $res->src();
  120:     my $toolsymb;
  121:     if ($url =~ /ext\.tool$/) {
  122:         $toolsymb = $symb;
  123:     }
  124:     my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys',$toolsymb));
  125: 
  126:     my @stores;
  127:     foreach my $part (@{ $partlist }) {
  128: 	foreach my $key (@metakeys) {
  129: 	    if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
  130: 	}
  131:     }
  132:     return @stores;
  133: }
  134: 
  135: #--- Format fullname, username:domain if different for display
  136: #--- Use anywhere where the student names are listed
  137: sub nameUserString {
  138:     my ($type,$fullname,$uname,$udom) = @_;
  139:     if ($type eq 'header') {
  140: 	return '<b>&nbsp;'.&mt('Fullname').'&nbsp;</b><span class="LC_internal_info">('.&mt('Username').')</span>';
  141:     } else {
  142: 	return '&nbsp;'.$fullname.'<span class="LC_internal_info">&nbsp;('.$uname.
  143: 	    ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
  144:     }
  145: }
  146: 
  147: #--- Get the partlist and the response type for a given problem. ---
  148: #--- Indicate if a response type is coded handgraded or not. ---
  149: #--- Sets response_error pointer to "1" if navmaps object broken ---
  150: sub response_type {
  151:     my ($symb,$response_error) = @_;
  152: 
  153:     my $navmap = Apache::lonnavmaps::navmap->new();
  154:     unless (ref($navmap)) {
  155:         if (ref($response_error)) {
  156:             $$response_error = 1;
  157:         }
  158:         return;
  159:     }
  160:     my $res = $navmap->getBySymb($symb);
  161:     unless (ref($res)) {
  162:         $$response_error = 1;
  163:         return;
  164:     }
  165:     my $partlist = $res->parts();
  166:     my %vPart = 
  167: 	map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
  168:     my (%response_types,%handgrade);
  169:     foreach my $part (@{ $partlist }) {
  170: 	next if (%vPart && !exists($vPart{$part}));
  171: 
  172: 	my @types = $res->responseType($part);
  173: 	my @ids = $res->responseIds($part);
  174: 	for (my $i=0; $i < scalar(@ids); $i++) {
  175: 	    $response_types{$part}{$ids[$i]} = $types[$i];
  176: 	    $handgrade{$part.'_'.$ids[$i]} = 
  177: 		&Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
  178: 				     '.handgrade',$symb);
  179: 	}
  180:     }
  181:     return ($partlist,\%handgrade,\%response_types);
  182: }
  183: 
  184: sub flatten_responseType {
  185:     my ($responseType) = @_;
  186:     my @part_response_id =
  187: 	map { 
  188: 	    my $part = $_;
  189: 	    map {
  190: 		[$part,$_]
  191: 		} sort(keys(%{ $responseType->{$part} }));
  192: 	} sort(keys(%$responseType));
  193:     return @part_response_id;
  194: }
  195: 
  196: sub get_display_part {
  197:     my ($partID,$symb)=@_;
  198:     my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
  199:     if (defined($display) and $display ne '') {
  200:         $display.= ' (<span class="LC_internal_info">'
  201:                   .&mt('Part ID: [_1]',$partID).'</span>)';
  202:     } else {
  203: 	$display=$partID;
  204:     }
  205:     return $display;
  206: }
  207: 
  208: sub reset_caches {
  209:     &reset_analyze_cache();
  210:     &reset_perm();
  211:     &reset_old_essays();
  212: }
  213: 
  214: {
  215:     my %analyze_cache;
  216:     my %analyze_cache_formkeys;
  217: 
  218:     sub reset_analyze_cache {
  219: 	undef(%analyze_cache);
  220:         undef(%analyze_cache_formkeys);
  221:     }
  222: 
  223:     sub get_analyze {
  224: 	my ($symb,$uname,$udom,$no_increment,$add_to_hash,$type,$trial,$rndseed,$bubbles_per_row)=@_;
  225: 	my $key = "$symb\0$uname\0$udom";
  226:         if ($type eq 'randomizetry') {
  227:             if ($trial ne '') {
  228:                 $key .= "\0".$trial;
  229:             }
  230:         }
  231: 	if (exists($analyze_cache{$key})) {
  232:             my $getupdate = 0;
  233:             if (ref($add_to_hash) eq 'HASH') {
  234:                 foreach my $item (keys(%{$add_to_hash})) {
  235:                     if (ref($analyze_cache_formkeys{$key}) eq 'HASH') {
  236:                         if (!exists($analyze_cache_formkeys{$key}{$item})) {
  237:                             $getupdate = 1;
  238:                             last;
  239:                         }
  240:                     } else {
  241:                         $getupdate = 1;
  242:                     }
  243:                 }
  244:             }
  245:             if (!$getupdate) {
  246:                 return $analyze_cache{$key};
  247:             }
  248:         }
  249: 
  250: 	my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
  251: 	$url=&Apache::lonnet::clutter($url);
  252:         my %form = ('grade_target'      => 'analyze',
  253:                     'grade_domain'      => $udom,
  254:                     'grade_symb'        => $symb,
  255:                     'grade_courseid'    =>  $env{'request.course.id'},
  256:                     'grade_username'    => $uname,
  257:                     'grade_noincrement' => $no_increment);
  258:         if ($bubbles_per_row ne '') {
  259:             $form{'bubbles_per_row'} = $bubbles_per_row;
  260:         }
  261:         if ($type eq 'randomizetry') {
  262:             $form{'grade_questiontype'} = $type;
  263:             if ($rndseed ne '') {
  264:                 $form{'grade_rndseed'} = $rndseed;
  265:             }
  266:         }
  267:         if (ref($add_to_hash)) {
  268:             %form = (%form,%{$add_to_hash});
  269:         }
  270: 	my $subresult=&ssi_with_retries($url, $ssi_retries,%form);
  271: 	(undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
  272: 	my %analyze=&Apache::lonnet::str2hash($subresult);
  273:         if (ref($add_to_hash) eq 'HASH') {
  274:             $analyze_cache_formkeys{$key} = $add_to_hash;
  275:         } else {
  276:             $analyze_cache_formkeys{$key} = {};
  277:         }
  278: 	return $analyze_cache{$key} = \%analyze;
  279:     }
  280: 
  281:     sub get_order {
  282: 	my ($partid,$respid,$symb,$uname,$udom,$no_increment,$type,$trial,$rndseed)=@_;
  283: 	my $analyze = &get_analyze($symb,$uname,$udom,$no_increment,undef,$type,$trial,$rndseed);
  284: 	return $analyze->{"$partid.$respid.shown"};
  285:     }
  286: 
  287:     sub get_radiobutton_correct_foil {
  288: 	my ($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed)=@_;
  289: 	my $analyze = &get_analyze($symb,$uname,$udom,undef,undef,$type,$trial,$rndseed);
  290:         my $foils = &get_order($partid,$respid,$symb,$uname,$udom,undef,$type,$trial,$rndseed);
  291:         if (ref($foils) eq 'ARRAY') {
  292: 	    foreach my $foil (@{$foils}) {
  293: 	        if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
  294: 		    return $foil;
  295: 	        }
  296: 	    }
  297: 	}
  298:     }
  299: 
  300:     sub scantron_partids_tograde {
  301:         my ($resource,$cid,$uname,$udom,$check_for_randomlist,$bubbles_per_row,$scancode) = @_;
  302:         my (%analysis,@parts);
  303:         if (ref($resource)) {
  304:             my $symb = $resource->symb();
  305:             my $add_to_form;
  306:             if ($check_for_randomlist) {
  307:                 $add_to_form = { 'check_parts_withrandomlist' => 1,};
  308:             }
  309:             if ($scancode) {
  310:                 if (ref($add_to_form) eq 'HASH') {
  311:                     $add_to_form->{'code_for_randomlist'} = $scancode;
  312:                 } else {
  313:                     $add_to_form = { 'code_for_randomlist' => $scancode,};
  314:                 }
  315:             }
  316:             my $analyze = 
  317:                 &get_analyze($symb,$uname,$udom,undef,$add_to_form,
  318:                              undef,undef,undef,$bubbles_per_row);
  319:             if (ref($analyze) eq 'HASH') {
  320:                 %analysis = %{$analyze};
  321:             }
  322:             if (ref($analysis{'parts'}) eq 'ARRAY') {
  323:                 foreach my $part (@{$analysis{'parts'}}) {
  324:                     my ($id,$respid) = split(/\./,$part);
  325:                     if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
  326:                         push(@parts,$part);
  327:                     }
  328:                 }
  329:             }
  330:         }
  331:         return (\%analysis,\@parts);
  332:     }
  333: 
  334: }
  335: 
  336: #--- Clean response type for display
  337: #--- Currently filters option/rank/radiobutton/match/essay/Task
  338: #        response types only.
  339: sub cleanRecord {
  340:     my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
  341: 	$uname,$udom,$type,$trial,$rndseed) = @_;
  342:     my $grayFont = '<span class="LC_internal_info">';
  343:     if ($response =~ /^(option|rank)$/) {
  344: 	my %answer=&Apache::lonnet::str2hash($answer);
  345:         my @answer = %answer;
  346:         %answer = map {&HTML::Entities::encode($_, '"<>&')}  @answer;
  347: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
  348: 	my ($toprow,$bottomrow);
  349: 	foreach my $foil (@$order) {
  350: 	    if ($grading{$foil} == 1) {
  351: 		$toprow.='<td><b>'.$answer{$foil}.'&nbsp;</b></td>';
  352: 	    } else {
  353: 		$toprow.='<td><i>'.$answer{$foil}.'&nbsp;</i></td>';
  354: 	    }
  355: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
  356: 	}
  357: 	return '<blockquote><table border="1">'.
  358: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
  359: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
  360: 	    $bottomrow.'</tr></table></blockquote>';
  361:     } elsif ($response eq 'match') {
  362: 	my %answer=&Apache::lonnet::str2hash($answer);
  363:         my @answer = %answer;
  364:         %answer = map {&HTML::Entities::encode($_, '"<>&')}  @answer;
  365: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
  366: 	my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
  367: 	my ($toprow,$middlerow,$bottomrow);
  368: 	foreach my $foil (@$order) {
  369: 	    my $item=shift(@items);
  370: 	    if ($grading{$foil} == 1) {
  371: 		$toprow.='<td><b>'.$item.'&nbsp;</b></td>';
  372: 		$middlerow.='<td><b>'.$grayFont.$answer{$foil}.'&nbsp;</span></b></td>';
  373: 	    } else {
  374: 		$toprow.='<td><i>'.$item.'&nbsp;</i></td>';
  375: 		$middlerow.='<td><i>'.$grayFont.$answer{$foil}.'&nbsp;</span></i></td>';
  376: 	    }
  377: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
  378: 	}
  379: 	return '<blockquote><table border="1">'.
  380: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
  381: 	    '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
  382: 	    $middlerow.'</tr>'.
  383: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
  384: 	    $bottomrow.'</tr></table></blockquote>';
  385:     } elsif ($response eq 'radiobutton') {
  386: 	my %answer=&Apache::lonnet::str2hash($answer);
  387:         my @answer = %answer;
  388:         %answer = map {&HTML::Entities::encode($_, '"<>&')}  @answer;
  389: 	my ($toprow,$bottomrow);
  390: 	my $correct = 
  391: 	    &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed);
  392: 	foreach my $foil (@$order) {
  393: 	    if (exists($answer{$foil})) {
  394: 		if ($foil eq $correct) {
  395: 		    $toprow.='<td><b>'.&mt('true').'</b></td>';
  396: 		} else {
  397: 		    $toprow.='<td><i>'.&mt('true').'</i></td>';
  398: 		}
  399: 	    } else {
  400: 		$toprow.='<td>'.&mt('false').'</td>';
  401: 	    }
  402: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
  403: 	}
  404: 	return '<blockquote><table border="1">'.
  405: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
  406: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
  407: 	    $bottomrow.'</tr></table></blockquote>';
  408:     } elsif ($response eq 'essay') {
  409: 	if (! exists ($env{'form.'.$symb})) {
  410: 	    my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
  411: 						  $env{'course.'.$env{'request.course.id'}.'.domain'},
  412: 						  $env{'course.'.$env{'request.course.id'}.'.num'});
  413: 
  414: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
  415: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
  416: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
  417: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
  418: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
  419: 	    $env{'form.'.$symb} = 1; # so that we don't have to read it from disk for multiple sub of the same prob.
  420: 	}
  421:         $answer = &Apache::lontexconvert::msgtexconverted($answer);
  422: 	return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
  423: 
  424:     } elsif ( $response eq 'organic') {
  425:         my $result=&mt('Smile representation: [_1]',
  426:                            '"<tt>'.&HTML::Entities::encode($answer, '"<>&').'</tt>"');
  427: 	my $jme=$record->{$version."resource.$partid.$respid.molecule"};
  428: 	$result.=&Apache::chemresponse::jme_img($jme,$answer,400);
  429: 	return $result;
  430:     } elsif ( $response eq 'Task') {
  431: 	if ( $answer eq 'SUBMITTED') {
  432: 	    my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
  433: 	    my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
  434: 	    return $result;
  435: 	} elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
  436: 	    my @matches = grep(/^\Q$version\E.*?\.instance$/,
  437: 			       keys(%{$record}));
  438: 	    return join('<br />',($version,@matches));
  439: 			       
  440: 			       
  441: 	} else {
  442: 	    my $result =
  443: 		'<p>'
  444: 		.&mt('Overall result: [_1]',
  445: 		     $record->{$version."resource.$respid.$partid.status"})
  446: 		.'</p>';
  447: 	    
  448: 	    $result .= '<ul>';
  449: 	    my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
  450: 			     keys(%{$record}));
  451: 	    foreach my $grade (sort(@grade)) {
  452: 		my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
  453: 		$result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
  454: 				     $dim, $record->{$grade}).
  455: 			  '</li>';
  456: 	    }
  457: 	    $result.='</ul>';
  458: 	    return $result;
  459: 	}
  460:     } elsif ( $response =~ m/(?:numerical|formula|custom)/) {
  461:         # Respect multiple input fields, see Bug #5409
  462: 	$answer = 
  463: 	    &Apache::loncommon::format_previous_attempt_value('submission',
  464: 							      $answer);
  465: 	return $answer;
  466:     }
  467:     return &HTML::Entities::encode($answer, '"<>&');
  468: }
  469: 
  470: #-- A couple of common js functions
  471: sub commonJSfunctions {
  472:     my $request = shift;
  473:     $request->print(&Apache::lonhtmlcommon::scripttag(<<COMMONJSFUNCTIONS));
  474:     function radioSelection(radioButton) {
  475: 	var selection=null;
  476: 	if (radioButton.length > 1) {
  477: 	    for (var i=0; i<radioButton.length; i++) {
  478: 		if (radioButton[i].checked) {
  479: 		    return radioButton[i].value;
  480: 		}
  481: 	    }
  482: 	} else {
  483: 	    if (radioButton.checked) return radioButton.value;
  484: 	}
  485: 	return selection;
  486:     }
  487: 
  488:     function pullDownSelection(selectOne) {
  489: 	var selection="";
  490: 	if (selectOne.length > 1) {
  491: 	    for (var i=0; i<selectOne.length; i++) {
  492: 		if (selectOne[i].selected) {
  493: 		    return selectOne[i].value;
  494: 		}
  495: 	    }
  496: 	} else {
  497:             // only one value it must be the selected one
  498: 	    return selectOne.value;
  499: 	}
  500:     }
  501: COMMONJSFUNCTIONS
  502: }
  503: 
  504: #--- Dumps the class list with usernames,list of sections,
  505: #--- section, ids and fullnames for each user.
  506: sub getclasslist {
  507:     my ($getsec,$filterbyaccstatus,$getgroup,$symb,$submitonly,$filterbysubmstatus) = @_;
  508:     my @getsec;
  509:     my @getgroup;
  510:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
  511:     if (!ref($getsec)) {
  512: 	if ($getsec ne '' && $getsec ne 'all') {
  513: 	    @getsec=($getsec);
  514: 	}
  515:     } else {
  516: 	@getsec=@{$getsec};
  517:     }
  518:     if (grep(/^all$/,@getsec)) { undef(@getsec); }
  519:     if (!ref($getgroup)) {
  520: 	if ($getgroup ne '' && $getgroup ne 'all') {
  521: 	    @getgroup=($getgroup);
  522: 	}
  523:     } else {
  524: 	@getgroup=@{$getgroup};
  525:     }
  526:     if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
  527: 
  528:     my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
  529:     # Bail out if we were unable to get the classlist
  530:     return if (! defined($classlist));
  531:     &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
  532:     #
  533:     my %sections;
  534:     my %fullnames;
  535:     my ($cdom,$cnum,$partlist);
  536:     if (($filterbysubmstatus) && ($submitonly ne 'all') && ($symb ne '')) {
  537:         $cdom = $env{"course.$env{'request.course.id'}.domain"};
  538:         $cnum = $env{"course.$env{'request.course.id'}.num"};
  539:         my $res_error;
  540:         ($partlist,my $handgrade,my $responseType) = &response_type($symb,\$res_error);
  541:     }
  542:     foreach my $student (keys(%$classlist)) {
  543:         my $end      = 
  544:             $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
  545:         my $start    = 
  546:             $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
  547:         my $id       = 
  548:             $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
  549:         my $section  = 
  550:             $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
  551:         my $fullname = 
  552:             $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
  553:         my $status   = 
  554:             $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
  555:         my $group   = 
  556:             $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
  557: 	# filter students according to status selected
  558: 	if ($filterbyaccstatus && (!($stu_status =~ /Any/))) {
  559: 	    if (!($stu_status =~ $status)) {
  560: 		delete($classlist->{$student});
  561: 		next;
  562: 	    }
  563: 	}
  564: 	# filter students according to groups selected
  565: 	my @stu_groups = split(/,/,$group);
  566: 	if (@getgroup) {
  567: 	    my $exclude = 1;
  568: 	    foreach my $grp (@getgroup) {
  569: 	        foreach my $stu_group (@stu_groups) {
  570: 	            if ($stu_group eq $grp) {
  571: 	                $exclude = 0;
  572:     	            } 
  573: 	        }
  574:     	        if (($grp eq 'none') && !$group) {
  575:         	    $exclude = 0;
  576:         	}
  577: 	    }
  578: 	    if ($exclude) {
  579: 	        delete($classlist->{$student});
  580: 		next;
  581: 	    }
  582: 	}
  583:         if (($filterbysubmstatus) && ($submitonly ne 'all') && ($symb ne '')) {
  584:             my $udom =
  585:                 $classlist->{$student}->[&Apache::loncoursedata::CL_SDOM()];
  586:             my $uname =
  587:                 $classlist->{$student}->[&Apache::loncoursedata::CL_SNAME()];
  588:             if (($symb ne '') && ($udom ne '') && ($uname ne '')) {
  589:                 if ($submitonly eq 'queued') {
  590:                     my %queue_status =
  591:                         &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
  592:                                                                 $udom,$uname);
  593:                     if (!defined($queue_status{'gradingqueue'})) {
  594:                         delete($classlist->{$student});
  595:                         next;
  596:                     }
  597:                 } else {
  598:                     my (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
  599:                     my $submitted = 0;
  600:                     my $graded = 0;
  601:                     my $incorrect = 0;
  602:                     foreach (keys(%status)) {
  603:                         $submitted = 1 if ($status{$_} ne 'nothing');
  604:                         $graded = 1 if ($status{$_} =~ /^ungraded/);
  605:                         $incorrect = 1 if ($status{$_} =~ /^incorrect/);
  606: 
  607:                         my ($foo,$partid,$foo1) = split(/\./,$_);
  608:                         if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
  609:                             $submitted = 0;
  610:                         }
  611:                     }
  612:                     if (!$submitted && ($submitonly eq 'yes' ||
  613:                                         $submitonly eq 'incorrect' ||
  614:                                         $submitonly eq 'graded')) {
  615:                         delete($classlist->{$student});
  616:                         next;
  617:                     } elsif (!$graded && ($submitonly eq 'graded')) {
  618:                         delete($classlist->{$student});
  619:                         next;
  620:                     } elsif (!$incorrect && $submitonly eq 'incorrect') {
  621:                         delete($classlist->{$student});
  622:                         next;
  623:                     }
  624:                 }
  625:             }
  626:         }
  627: 	$section = ($section ne '' ? $section : 'none');
  628: 	if (&canview($section)) {
  629: 	    if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
  630: 		$sections{$section}++;
  631: 		if ($classlist->{$student}) {
  632: 		    $fullnames{$student}=$fullname;
  633: 		}
  634: 	    } else {
  635: 		delete($classlist->{$student});
  636: 	    }
  637: 	} else {
  638: 	    delete($classlist->{$student});
  639: 	}
  640:     }
  641:     my @sections = sort(keys(%sections));
  642:     return ($classlist,\@sections,\%fullnames);
  643: }
  644: 
  645: sub canmodify {
  646:     my ($sec)=@_;
  647:     if ($perm{'mgr'}) {
  648: 	if (!defined($perm{'mgr_section'})) {
  649: 	    # can modify whole class
  650: 	    return 1;
  651: 	} else {
  652: 	    if ($sec eq $perm{'mgr_section'}) {
  653: 		#can modify the requested section
  654: 		return 1;
  655: 	    } else {
  656: 		# can't modify the request section
  657: 		return 0;
  658: 	    }
  659: 	}
  660:     }
  661:     #can't modify
  662:     return 0;
  663: }
  664: 
  665: sub canview {
  666:     my ($sec)=@_;
  667:     if ($perm{'vgr'}) {
  668: 	if (!defined($perm{'vgr_section'})) {
  669: 	    # can modify whole class
  670: 	    return 1;
  671: 	} else {
  672: 	    if ($sec eq $perm{'vgr_section'}) {
  673: 		#can modify the requested section
  674: 		return 1;
  675: 	    } else {
  676: 		# can't modify the request section
  677: 		return 0;
  678: 	    }
  679: 	}
  680:     }
  681:     #can't modify
  682:     return 0;
  683: }
  684: 
  685: #--- Retrieve the grade status of a student for all the parts
  686: sub student_gradeStatus {
  687:     my ($symb,$udom,$uname,$partlist) = @_;
  688:     my %record     = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
  689:     my %partstatus = ();
  690:     foreach (@$partlist) {
  691: 	my ($status,undef)   = split(/_/,$record{"resource.$_.solved"},2);
  692: 	$status              = 'nothing' if ($status eq '');
  693: 	$partstatus{$_}      = $status;
  694: 	my $subkey           = "resource.$_.submitted_by";
  695: 	$partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
  696:     }
  697:     return %partstatus;
  698: }
  699: 
  700: # hidden form and javascript that calls the form
  701: # Use by verifyscript and viewgrades
  702: # Shows a student's view of problem and submission
  703: sub jscriptNform {
  704:     my ($symb) = @_;
  705:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
  706:     my $jscript= &Apache::lonhtmlcommon::scripttag(
  707: 	'    function viewOneStudent(user,domain) {'."\n".
  708: 	'	document.onestudent.student.value = user;'."\n".
  709: 	'	document.onestudent.userdom.value = domain;'."\n".
  710: 	'	document.onestudent.submit();'."\n".
  711: 	'    }'."\n".
  712: 	"\n");
  713:     $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
  714: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
  715: 	'<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
  716: 	'<input type="hidden" name="command" value="submission" />'."\n".
  717: 	'<input type="hidden" name="student" value="" />'."\n".
  718: 	'<input type="hidden" name="userdom" value="" />'."\n".
  719: 	'</form>'."\n";
  720:     return $jscript;
  721: }
  722: 
  723: 
  724: 
  725: # Given the score (as a number [0-1] and the weight) what is the final
  726: # point value? This function will round to the nearest tenth, third,
  727: # or quarter if one of those is within the tolerance of .00001.
  728: sub compute_points {
  729:     my ($score, $weight) = @_;
  730:     
  731:     my $tolerance = .00001;
  732:     my $points = $score * $weight;
  733: 
  734:     # Check for nearness to 1/x.
  735:     my $check_for_nearness = sub {
  736:         my ($factor) = @_;
  737:         my $num = ($points * $factor) + $tolerance;
  738:         my $floored_num = floor($num);
  739:         if ($num - $floored_num < 2 * $tolerance * $factor) {
  740:             return $floored_num / $factor;
  741:         }
  742:         return $points;
  743:     };
  744: 
  745:     $points = $check_for_nearness->(10);
  746:     $points = $check_for_nearness->(3);
  747:     $points = $check_for_nearness->(4);
  748:     
  749:     return $points;
  750: }
  751: 
  752: #------------------ End of general use routines --------------------
  753: 
  754: #
  755: # Find most similar essay
  756: #
  757: 
  758: sub most_similar {
  759:     my ($uname,$udom,$symb,$uessay)=@_;
  760: 
  761:     unless ($symb) { return ''; }
  762: 
  763:     unless (ref($old_essays{$symb}) eq 'HASH') { return ''; }
  764: 
  765: # ignore spaces and punctuation
  766: 
  767:     $uessay=~s/\W+/ /gs;
  768: 
  769: # ignore empty submissions (occuring when only files are sent)
  770: 
  771:     unless ($uessay=~/\w+/s) { return ''; }
  772: 
  773: # these will be returned. Do not care if not at least 50 percent similar
  774:     my $limit=0.6;
  775:     my $sname='';
  776:     my $sdom='';
  777:     my $scrsid='';
  778:     my $sessay='';
  779: # go through all essays ...
  780:     foreach my $tkey (keys(%{$old_essays{$symb}})) {
  781: 	my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
  782: # ... except the same student
  783:         next if (($tname eq $uname) && ($tdom eq $udom));
  784: 	my $tessay=$old_essays{$symb}{$tkey};
  785: 	$tessay=~s/\W+/ /gs;
  786: # String similarity gives up if not even limit
  787: 	my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
  788: # Found one
  789: 	if ($tsimilar>$limit) {
  790: 	    $limit=$tsimilar;
  791: 	    $sname=$tname;
  792: 	    $sdom=$tdom;
  793: 	    $scrsid=$tcrsid;
  794: 	    $sessay=$old_essays{$symb}{$tkey};
  795: 	}
  796:     }
  797:     if ($limit>0.6) {
  798:        return ($sname,$sdom,$scrsid,$sessay,$limit);
  799:     } else {
  800:        return ('','','','',0);
  801:     }
  802: }
  803: 
  804: #-------------------------------------------------------------------
  805: 
  806: #------------------------------------ Receipt Verification Routines
  807: #
  808: 
  809: sub initialverifyreceipt {
  810:    my ($request,$symb) = @_;
  811:    &commonJSfunctions($request);
  812:    return '<form name="gradingMenu" action=""><input type="submit" value="'.&mt('Verify Receipt Number.').'" />'.
  813:         &Apache::lonnet::recprefix($env{'request.course.id'}).
  814:         '-<input type="text" name="receipt" size="4" />'.
  815:         '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
  816:         '<input type="hidden" name="command" value="verify" />'.
  817:         "</form>\n";
  818: }
  819: 
  820: #--- Check whether a receipt number is valid.---
  821: sub verifyreceipt {
  822:     my ($request,$symb)  = @_;
  823: 
  824:     my $courseid = $env{'request.course.id'};
  825:     my $receipt  = &Apache::lonnet::recprefix($courseid).'-'.
  826: 	$env{'form.receipt'};
  827:     $receipt     =~ s/[^\-\d]//g;
  828: 
  829:     my $title.=
  830: 	'<h3><span class="LC_info">'.
  831: 	&mt('Verifying Receipt Number [_1]',$receipt).
  832: 	'</span></h3>'."\n";
  833: 
  834:     my ($string,$contents,$matches) = ('','',0);
  835:     my (undef,undef,$fullname) = &getclasslist('all','0');
  836:     
  837:     my $receiptparts=0;
  838:     if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
  839: 	$env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
  840:     my $parts=['0'];
  841:     if ($receiptparts) {
  842:         my $res_error; 
  843:         ($parts)=&response_type($symb,\$res_error);
  844:         if ($res_error) {
  845:             return &navmap_errormsg();
  846:         } 
  847:     }
  848:     
  849:     my $header = 
  850: 	&Apache::loncommon::start_data_table().
  851: 	&Apache::loncommon::start_data_table_header_row().
  852: 	'<th>&nbsp;'.&mt('Fullname').'&nbsp;</th>'."\n".
  853: 	'<th>&nbsp;'.&mt('Username').'&nbsp;</th>'."\n".
  854: 	'<th>&nbsp;'.&mt('Domain').'&nbsp;</th>';
  855:     if ($receiptparts) {
  856: 	$header.='<th>&nbsp;'.&mt('Problem Part').'&nbsp;</th>';
  857:     }
  858:     $header.=
  859: 	&Apache::loncommon::end_data_table_header_row();
  860: 
  861:     foreach (sort 
  862: 	     {
  863: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
  864: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
  865: 		 }
  866: 		 return $a cmp $b;
  867: 	     } (keys(%$fullname))) {
  868: 	my ($uname,$udom)=split(/\:/);
  869: 	foreach my $part (@$parts) {
  870: 	    if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
  871: 		$contents.=
  872: 		    &Apache::loncommon::start_data_table_row().
  873: 		    '<td>&nbsp;'."\n".
  874: 		    '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
  875: 		    '\');" target="_self">'.$$fullname{$_}.'</a>&nbsp;</td>'."\n".
  876: 		    '<td>&nbsp;'.$uname.'&nbsp;</td>'.
  877: 		    '<td>&nbsp;'.$udom.'&nbsp;</td>';
  878: 		if ($receiptparts) {
  879: 		    $contents.='<td>&nbsp;'.$part.'&nbsp;</td>';
  880: 		}
  881: 		$contents.= 
  882: 		    &Apache::loncommon::end_data_table_row()."\n";
  883: 		
  884: 		$matches++;
  885: 	    }
  886: 	}
  887:     }
  888:     if ($matches == 0) {
  889:         $string = $title
  890:                  .'<p class="LC_warning">'
  891:                  .&mt('No match found for the above receipt number.')
  892:                  .'</p>';
  893:     } else {
  894: 	$string = &jscriptNform($symb).$title.
  895: 	    '<p>'.
  896: 	    &mt('The above receipt number matches the following [quant,_1,student].',$matches).
  897: 	    '</p>'.
  898: 	    $header.
  899: 	    $contents.
  900: 	    &Apache::loncommon::end_data_table()."\n";
  901:     }
  902:     return $string;
  903: }
  904: 
  905: #--- This is called by a number of programs.
  906: #--- Called from the Grading Menu - View/Grade an individual student
  907: #--- Also called directly when one clicks on the subm button 
  908: #    on the problem page.
  909: sub listStudents {
  910:     my ($request,$symb,$submitonly) = @_;
  911: 
  912:     my $is_tool   = ($symb =~ /ext\.tool$/);
  913:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
  914:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
  915:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
  916:     my $getgroup  = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
  917:     unless ($submitonly) {
  918:        $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
  919:     }
  920: 
  921:     my $result='';
  922:     my $res_error;
  923:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
  924: 
  925:     my %js_lt = &Apache::lonlocal::texthash (
  926: 		'multiple' => 'Please select a student or group of students before clicking on the Next button.',
  927: 		'single'   => 'Please select the student before clicking on the Next button.',
  928: 	     );
  929:     &js_escape(\%js_lt);
  930:     $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
  931:     function checkSelect(checkBox) {
  932: 	var ctr=0;
  933: 	var sense="";
  934: 	if (checkBox.length > 1) {
  935: 	    for (var i=0; i<checkBox.length; i++) {
  936: 		if (checkBox[i].checked) {
  937: 		    ctr++;
  938: 		}
  939: 	    }
  940: 	    sense = '$js_lt{'multiple'}';
  941: 	} else {
  942: 	    if (checkBox.checked) {
  943: 		ctr = 1;
  944: 	    }
  945: 	    sense = '$js_lt{'single'}';
  946: 	}
  947: 	if (ctr == 0) {
  948: 	    alert(sense);
  949: 	    return false;
  950: 	}
  951: 	document.gradesub.submit();
  952:     }
  953: 
  954:     function reLoadList(formname) {
  955: 	if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
  956: 	formname.command.value = 'submission';
  957: 	formname.submit();
  958:     }
  959: LISTJAVASCRIPT
  960: 
  961:     &commonJSfunctions($request);
  962:     $request->print($result);
  963: 
  964:     my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
  965: 	"\n";
  966: 	
  967:     $gradeTable .= &Apache::lonhtmlcommon::start_pick_box();
  968:     unless ($is_tool) {
  969:         $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
  970:                       .'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n"
  971:                       .'<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n"
  972:                       .'<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label><br />'."\n"
  973:                       .&Apache::lonhtmlcommon::row_closure();
  974:         $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Answer'))
  975:                       .'<label><input type="radio" name="vAns" value="no"  /> '.&mt('no').' </label>'."\n"
  976:                       .'<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n"
  977:                       .'<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label><br />'."\n"
  978:                       .&Apache::lonhtmlcommon::row_closure();
  979:     }
  980: 
  981:     my $submission_options;
  982:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
  983:     my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
  984:     $env{'form.Status'} = $saveStatus;
  985:     my %optiontext;
  986:     if ($is_tool) {
  987:         %optiontext = &Apache::lonlocal::texthash (
  988:                           lastonly => 'last transaction',
  989:                           last     => 'last transaction with details',
  990:                           datesub  => 'all transactions',
  991:                           all      => 'all transactions with details',
  992:                       );
  993:     } else {
  994:         %optiontext = &Apache::lonlocal::texthash (
  995:                           lastonly => 'last submission',
  996:                           last     => 'last submission with details',
  997:                           datesub  => 'all submissions',
  998:                           all      => 'all submissions with details',
  999:                       );
 1000:     }
 1001:     $submission_options.=
 1002:         '<span class="LC_nobreak">'.
 1003:         '<label><input type="radio" name="lastSub" value="lastonly" /> '.
 1004:         $optiontext{'lastonly'}.' </label></span>'."\n".
 1005:         '<span class="LC_nobreak">'.
 1006:         '<label><input type="radio" name="lastSub" value="last" /> '.
 1007:         $optiontext{'last'}.' </label></span>'."\n".
 1008:         '<span class="LC_nobreak">'.
 1009:         '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.
 1010:         $optiontext{'datesub'}.'</label></span>'."\n".
 1011:         '<span class="LC_nobreak">'.
 1012:         '<label><input type="radio" name="lastSub" value="all" /> '.
 1013:         $optiontext{'all'}.'</label></span>';
 1014:     my $viewtitle;
 1015:     if ($is_tool) {
 1016:         $viewtitle = &mt('View Transactions');
 1017:     } else {
 1018:         $viewtitle = &mt('View Submissions');
 1019:     }
 1020:     $gradeTable .= &Apache::lonhtmlcommon::row_title($viewtitle)
 1021:                   .$submission_options
 1022:                   .&Apache::lonhtmlcommon::row_closure();
 1023: 
 1024:     my $closure;
 1025:     if (($is_tool) && (exists($env{'form.Status'}))) {
 1026:         $closure = 1;
 1027:     }
 1028:     $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Grading Increments'))
 1029:                   .'<select name="increment">'
 1030:                   .'<option value="1">'.&mt('Whole Points').'</option>'
 1031:                   .'<option value=".5">'.&mt('Half Points').'</option>'
 1032:                   .'<option value=".25">'.&mt('Quarter Points').'</option>'
 1033:                   .'<option value=".1">'.&mt('Tenths of a Point').'</option>'
 1034:                   .'</select>'
 1035:                   .&Apache::lonhtmlcommon::row_closure($closure);
 1036: 
 1037:     $gradeTable .= 
 1038:         &build_section_inputs().
 1039: 	'<input type="hidden" name="submitonly"  value="'.$submitonly.'" />'."\n".
 1040: 	'<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 1041: 	'<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
 1042: 
 1043:     if (exists($env{'form.Status'})) {
 1044: 	$gradeTable .= '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
 1045:     } else {
 1046:         if ($is_tool) {
 1047:             $closure = 1;
 1048:         }
 1049:         $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Student Status'))
 1050:                       .&Apache::lonhtmlcommon::StatusOptions(
 1051:                            $saveStatus,undef,1,'javascript:reLoadList(this.form);')
 1052:                       .&Apache::lonhtmlcommon::row_closure($closure);
 1053:     }
 1054: 
 1055:     unless ($is_tool) {
 1056:         $closure = 1;
 1057:         $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Check For Plagiarism'))
 1058:                       .'<input type="checkbox" name="checkPlag" checked="checked" />'
 1059:                       .&Apache::lonhtmlcommon::row_closure($closure);
 1060:     }
 1061:     $gradeTable .= &Apache::lonhtmlcommon::end_pick_box();
 1062:     my $regrademsg;
 1063:     if ($is_tool) {
 1064:         $regrademsg =&mt("To view/grade/regrade, click on the check box(es) next to the student's name(s). Then click on the Next button.");
 1065:     } else {
 1066:         $regrademsg = &mt("To view/grade/regrade a submission or a group of submissions, click on the check box(es) next to the student's name(s). Then click on the Next button.");
 1067:     }
 1068:     $gradeTable .= '<p>'
 1069:                   .$regrademsg."\n"
 1070:                   .'<input type="hidden" name="command" value="processGroup" />'
 1071:                   .'</p>';
 1072: 
 1073: # checkall buttons
 1074:     $gradeTable.=&check_script('gradesub', 'stuinfo');
 1075:     $gradeTable.='<input type="button" '."\n".
 1076:         'onclick="javascript:checkSelect(this.form.stuinfo);" '."\n".
 1077:         'value="'.&mt('Next').' &rarr;" /> <br />'."\n";
 1078:     $gradeTable.=&check_buttons();
 1079:     my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
 1080:     $gradeTable.= &Apache::loncommon::start_data_table().
 1081: 	&Apache::loncommon::start_data_table_header_row();
 1082:     my $loop = 0;
 1083:     while ($loop < 2) {
 1084: 	$gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
 1085: 	    '<th>'.&nameUserString('header').'&nbsp;'.&mt('Section/Group').'</th>';
 1086: 	if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
 1087: 	    foreach my $part (sort(@$partlist)) {
 1088: 		my $display_part=
 1089: 		    &get_display_part((split(/_/,$part))[0],$symb);
 1090: 		$gradeTable.=
 1091: 		    '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
 1092: 	    }
 1093: 	} elsif ($submitonly eq 'queued') {
 1094: 	    $gradeTable.='<th>'.&mt('Queue Status').'&nbsp;</th>';
 1095: 	}
 1096: 	$loop++;
 1097: #	$gradeTable.='<td></td>' if ($loop%2 ==1);
 1098:     }
 1099:     $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
 1100: 
 1101:     my $ctr = 0;
 1102:     foreach my $student (sort 
 1103: 			 {
 1104: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
 1105: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
 1106: 			     }
 1107: 			     return $a cmp $b;
 1108: 			 }
 1109: 			 (keys(%$fullname))) {
 1110: 	my ($uname,$udom) = split(/:/,$student);
 1111: 
 1112: 	my %status = ();
 1113: 
 1114: 	if ($submitonly eq 'queued') {
 1115: 	    my %queue_status = 
 1116: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
 1117: 							$udom,$uname);
 1118: 	    next if (!defined($queue_status{'gradingqueue'}));
 1119: 	    $status{'gradingqueue'} = $queue_status{'gradingqueue'};
 1120: 	}
 1121: 
 1122: 	if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
 1123: 	    (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
 1124: 	    my $submitted = 0;
 1125: 	    my $graded = 0;
 1126: 	    my $incorrect = 0;
 1127: 	    foreach (keys(%status)) {
 1128: 		$submitted = 1 if ($status{$_} ne 'nothing');
 1129: 		$graded = 1 if ($status{$_} =~ /^ungraded/);
 1130: 		$incorrect = 1 if ($status{$_} =~ /^incorrect/);
 1131: 		
 1132: 		my ($foo,$partid,$foo1) = split(/\./,$_);
 1133: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
 1134: 		    $submitted = 0;
 1135: 		    my ($part)=split(/\./,$partid);
 1136: 		    $gradeTable.='<input type="hidden" name="'.
 1137: 			$student.':'.$part.':submitted_by" value="'.
 1138: 			$status{'resource.'.$partid.'.submitted_by'}.'" />';
 1139: 		}
 1140: 	    }
 1141: 	    
 1142: 	    next if (!$submitted && ($submitonly eq 'yes' ||
 1143: 				     $submitonly eq 'incorrect' ||
 1144: 				     $submitonly eq 'graded'));
 1145: 	    next if (!$graded && ($submitonly eq 'graded'));
 1146: 	    next if (!$incorrect && $submitonly eq 'incorrect');
 1147: 	}
 1148: 
 1149: 	$ctr++;
 1150: 	my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
 1151:         my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
 1152: 	if ( $perm{'vgr'} eq 'F' ) {
 1153: 	    if ($ctr%2 ==1) {
 1154: 		$gradeTable.= &Apache::loncommon::start_data_table_row();
 1155: 	    }
 1156: 	    $gradeTable.='<td align="right">'.$ctr.'&nbsp;</td>'.
 1157:                '<td align="center"><label><input type="checkbox" name="stuinfo" value="'.
 1158:                $student.':'.$$fullname{$student}.':::SECTION'.$section.
 1159: 	       ')&nbsp;" />&nbsp;&nbsp;</label></td>'."\n".'<td>'.
 1160: 	       &nameUserString(undef,$$fullname{$student},$uname,$udom).
 1161: 	       '&nbsp;'.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
 1162: 
 1163: 	    if ($submitonly ne 'all') {
 1164: 		foreach (sort(keys(%status))) {
 1165: 		    next if ($_ =~ /^resource.*?submitted_by$/);
 1166: 		    $gradeTable.='<td align="center">&nbsp;'.&mt($status{$_}).'&nbsp;</td>'."\n";
 1167: 		}
 1168: 	    }
 1169: #	    $gradeTable.='<td></td>' if ($ctr%2 ==1);
 1170: 	    if ($ctr%2 ==0) {
 1171: 		$gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
 1172: 	    }
 1173: 	}
 1174:     }
 1175:     if ($ctr%2 ==1) {
 1176: 	$gradeTable.='<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';
 1177: 	    if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
 1178: 		foreach (@$partlist) {
 1179: 		    $gradeTable.='<td>&nbsp;</td>';
 1180: 		}
 1181: 	    } elsif ($submitonly eq 'queued') {
 1182: 		$gradeTable.='<td>&nbsp;</td>';
 1183: 	    }
 1184: 	$gradeTable.=&Apache::loncommon::end_data_table_row();
 1185:     }
 1186: 
 1187:     $gradeTable.=&Apache::loncommon::end_data_table()."\n".
 1188:         '<input type="button" '.
 1189:         'onclick="javascript:checkSelect(this.form.stuinfo);" '.
 1190:         'value="'.&mt('Next').' &rarr;" /></form>'."\n";
 1191:     if ($ctr == 0) {
 1192: 	my $num_students=(scalar(keys(%$fullname)));
 1193: 	if ($num_students eq 0) {
 1194: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
 1195: 	} else {
 1196: 	    my $submissions='submissions';
 1197: 	    if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
 1198: 	    if ($submitonly eq 'graded'   ) { $submissions = 'ungraded submissions'; }
 1199: 	    if ($submitonly eq 'queued'   ) { $submissions = 'queued submissions'; }
 1200: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">'.
 1201: 		&mt('No '.$submissions.' found for this resource for any students. ([quant,_1,student] checked for '.$submissions.')',
 1202: 		    $num_students).
 1203: 		'</span><br />';
 1204: 	}
 1205:     } elsif ($ctr == 1) {
 1206: 	$gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
 1207:     }
 1208:     $request->print($gradeTable);
 1209:     return '';
 1210: }
 1211: 
 1212: #---- Called from the listStudents routine
 1213: 
 1214: sub check_script {
 1215:     my ($form, $type)=@_;
 1216:     my $chkallscript= &Apache::lonhtmlcommon::scripttag('
 1217:     function checkall() {
 1218:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
 1219:             ele = document.forms.'.$form.'.elements[i];
 1220:             if (ele.name == "'.$type.'") {
 1221:             document.forms.'.$form.'.elements[i].checked=true;
 1222:                                        }
 1223:         }
 1224:     }
 1225: 
 1226:     function checksec() {
 1227:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
 1228:             ele = document.forms.'.$form.'.elements[i];
 1229:            string = document.forms.'.$form.'.chksec.value;
 1230:            if
 1231:           (ele.value.indexOf(":::SECTION"+string)>0) {
 1232:               document.forms.'.$form.'.elements[i].checked=true;
 1233:             }
 1234:         }
 1235:     }
 1236: 
 1237: 
 1238:     function uncheckall() {
 1239:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
 1240:             ele = document.forms.'.$form.'.elements[i];
 1241:             if (ele.name == "'.$type.'") {
 1242:             document.forms.'.$form.'.elements[i].checked=false;
 1243:                                        }
 1244:         }
 1245:     }
 1246: 
 1247: '."\n");
 1248:     return $chkallscript;
 1249: }
 1250: 
 1251: sub check_buttons {
 1252:     my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
 1253:     $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" />&nbsp;';
 1254:     $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
 1255:     $buttons.='<input type="text" size="5" name="chksec" />&nbsp;';
 1256:     return $buttons;
 1257: }
 1258: 
 1259: #     Displays the submissions for one student or a group of students
 1260: sub processGroup {
 1261:     my ($request,$symb)  = @_;
 1262:     my $ctr        = 0;
 1263:     my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
 1264:     my $total      = scalar(@stuchecked)-1;
 1265: 
 1266:     foreach my $student (@stuchecked) {
 1267: 	my ($uname,$udom,$fullname) = split(/:/,$student);
 1268: 	$env{'form.student'}        = $uname;
 1269: 	$env{'form.userdom'}        = $udom;
 1270: 	$env{'form.fullname'}       = $fullname;
 1271: 	&submission($request,$ctr,$total,$symb);
 1272: 	$ctr++;
 1273:     }
 1274:     return '';
 1275: }
 1276: 
 1277: #------------------------------------------------------------------------------------
 1278: #
 1279: #-------------------------- Next few routines handles grading by student, essentially
 1280: #                           handles essay response type problem/part
 1281: #
 1282: #--- Javascript to handle the submission page functionality ---
 1283: sub sub_page_js {
 1284:     my $request = shift;
 1285:     my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
 1286:     &js_escape(\$alertmsg);
 1287:     $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
 1288:     function updateRadio(formname,id,weight) {
 1289: 	var gradeBox = formname["GD_BOX"+id];
 1290: 	var radioButton = formname["RADVAL"+id];
 1291: 	var oldpts = formname["oldpts"+id].value;
 1292: 	var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
 1293: 	gradeBox.value = pts;
 1294: 	var resetbox = false;
 1295: 	if (isNaN(pts) || pts < 0) {
 1296: 	    alert("$alertmsg"+pts);
 1297: 	    for (var i=0; i<radioButton.length; i++) {
 1298: 		if (radioButton[i].checked) {
 1299: 		    gradeBox.value = i;
 1300: 		    resetbox = true;
 1301: 		}
 1302: 	    }
 1303: 	    if (!resetbox) {
 1304: 		formtextbox.value = "";
 1305: 	    }
 1306: 	    return;
 1307: 	}
 1308: 
 1309: 	if (pts > weight) {
 1310: 	    var resp = confirm("You entered a value ("+pts+
 1311: 			       ") greater than the weight for the part. Accept?");
 1312: 	    if (resp == false) {
 1313: 		gradeBox.value = oldpts;
 1314: 		return;
 1315: 	    }
 1316: 	}
 1317: 
 1318: 	for (var i=0; i<radioButton.length; i++) {
 1319: 	    radioButton[i].checked=false;
 1320: 	    if (pts == i && pts != "") {
 1321: 		radioButton[i].checked=true;
 1322: 	    }
 1323: 	}
 1324: 	updateSelect(formname,id);
 1325: 	formname["stores"+id].value = "0";
 1326:     }
 1327: 
 1328:     function writeBox(formname,id,pts) {
 1329: 	var gradeBox = formname["GD_BOX"+id];
 1330: 	if (checkSolved(formname,id) == 'update') {
 1331: 	    gradeBox.value = pts;
 1332: 	} else {
 1333: 	    var oldpts = formname["oldpts"+id].value;
 1334: 	    gradeBox.value = oldpts;
 1335: 	    var radioButton = formname["RADVAL"+id];
 1336: 	    for (var i=0; i<radioButton.length; i++) {
 1337: 		radioButton[i].checked=false;
 1338: 		if (i == oldpts) {
 1339: 		    radioButton[i].checked=true;
 1340: 		}
 1341: 	    }
 1342: 	}
 1343: 	formname["stores"+id].value = "0";
 1344: 	updateSelect(formname,id);
 1345: 	return;
 1346:     }
 1347: 
 1348:     function clearRadBox(formname,id) {
 1349: 	if (checkSolved(formname,id) == 'noupdate') {
 1350: 	    updateSelect(formname,id);
 1351: 	    return;
 1352: 	}
 1353: 	gradeSelect = formname["GD_SEL"+id];
 1354: 	for (var i=0; i<gradeSelect.length; i++) {
 1355: 	    if (gradeSelect[i].selected) {
 1356: 		var selectx=i;
 1357: 	    }
 1358: 	}
 1359: 	var stores = formname["stores"+id];
 1360: 	if (selectx == stores.value) { return };
 1361: 	var gradeBox = formname["GD_BOX"+id];
 1362: 	gradeBox.value = "";
 1363: 	var radioButton = formname["RADVAL"+id];
 1364: 	for (var i=0; i<radioButton.length; i++) {
 1365: 	    radioButton[i].checked=false;
 1366: 	}
 1367: 	stores.value = selectx;
 1368:     }
 1369: 
 1370:     function checkSolved(formname,id) {
 1371: 	if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
 1372: 	    var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
 1373: 	    if (!reply) {return "noupdate";}
 1374: 	    formname.overRideScore.value = 'yes';
 1375: 	}
 1376: 	return "update";
 1377:     }
 1378: 
 1379:     function updateSelect(formname,id) {
 1380: 	formname["GD_SEL"+id][0].selected = true;
 1381: 	return;
 1382:     }
 1383: 
 1384: //=========== Check that a point is assigned for all the parts  ============
 1385:     function checksubmit(formname,val,total,parttot) {
 1386: 	formname.gradeOpt.value = val;
 1387: 	if (val == "Save & Next") {
 1388: 	    for (i=0;i<=total;i++) {
 1389: 		for (j=0;j<parttot;j++) {
 1390: 		    var partid = formname["partid"+i+"_"+j].value;
 1391: 		    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
 1392: 			var points = formname["GD_BOX"+i+"_"+partid].value;
 1393: 			if (points == "") {
 1394: 			    var name = formname["name"+i].value;
 1395: 			    var studentID = (name != '' ? name : formname["unamedom"+i].value);
 1396: 			    var resp = confirm("You did not assign a score for "+studentID+
 1397: 					       ", part "+partid+". Continue?");
 1398: 			    if (resp == false) {
 1399: 				formname["GD_BOX"+i+"_"+partid].focus();
 1400: 				return false;
 1401: 			    }
 1402: 			}
 1403: 		    }
 1404: 		}
 1405: 	    }
 1406: 	}
 1407: 	formname.submit();
 1408:     }
 1409: 
 1410: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
 1411:     function checkSubmitPage(formname,total) {
 1412: 	noscore = new Array(100);
 1413: 	var ptr = 0;
 1414: 	for (i=1;i<total;i++) {
 1415: 	    var partid = formname["q_"+i].value;
 1416: 	    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
 1417: 		var points = formname["GD_BOX"+i+"_"+partid].value;
 1418: 		var status = formname["solved"+i+"_"+partid].value;
 1419: 		if (points == "" && status != "correct_by_student") {
 1420: 		    noscore[ptr] = i;
 1421: 		    ptr++;
 1422: 		}
 1423: 	    }
 1424: 	}
 1425: 	if (ptr != 0) {
 1426: 	    var sense = ptr == 1 ? ": " : "s: ";
 1427: 	    var prolist = "";
 1428: 	    if (ptr == 1) {
 1429: 		prolist = noscore[0];
 1430: 	    } else {
 1431: 		var i = 0;
 1432: 		while (i < ptr-1) {
 1433: 		    prolist += noscore[i]+", ";
 1434: 		    i++;
 1435: 		}
 1436: 		prolist += "and "+noscore[i];
 1437: 	    }
 1438: 	    var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
 1439: 	    if (resp == false) {
 1440: 		return false;
 1441: 	    }
 1442: 	}
 1443: 
 1444: 	formname.submit();
 1445:     }
 1446: SUBJAVASCRIPT
 1447: }
 1448: 
 1449: #--- javascript for essay type problem --
 1450: sub sub_page_kw_js {
 1451:     my $request = shift;
 1452:     my $iconpath = $request->dir_config('lonIconsURL');
 1453:     &commonJSfunctions($request);
 1454: 
 1455:     my $inner_js_msg_central= (<<INNERJS);
 1456: <script type="text/javascript">
 1457:     function checkInput() {
 1458:       opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
 1459:       var nmsg   = opener.document.SCORE.savemsgN.value;
 1460:       var usrctr = document.msgcenter.usrctr.value;
 1461:       var newval = opener.document.SCORE["newmsg"+usrctr];
 1462:       newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
 1463: 
 1464:       var msgchk = "";
 1465:       if (document.msgcenter.subchk.checked) {
 1466:          msgchk = "msgsub,";
 1467:       }
 1468:       var includemsg = 0;
 1469:       for (var i=1; i<=nmsg; i++) {
 1470:           var opnmsg = opener.document.SCORE["savemsg"+i];
 1471:           var frmmsg = document.msgcenter["msg"+i];
 1472:           opnmsg.value = opener.checkEntities(frmmsg.value);
 1473:           var showflg = opener.document.SCORE["shownOnce"+i];
 1474:           showflg.value = "1";
 1475:           var chkbox = document.msgcenter["msgn"+i];
 1476:           if (chkbox.checked) {
 1477:              msgchk += "savemsg"+i+",";
 1478:              includemsg = 1;
 1479:           }
 1480:       }
 1481:       if (document.msgcenter.newmsgchk.checked) {
 1482:          msgchk += "newmsg"+usrctr;
 1483:          includemsg = 1;
 1484:       }
 1485:       imgformname = opener.document.SCORE["mailicon"+usrctr];
 1486:       imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
 1487:       var includemsg = opener.document.SCORE["includemsg"+usrctr];
 1488:       includemsg.value = msgchk;
 1489: 
 1490:       self.close()
 1491: 
 1492:     }
 1493: </script>
 1494: INNERJS
 1495: 
 1496:     my $inner_js_highlight_central= (<<INNERJS);
 1497: <script type="text/javascript">
 1498:     function updateChoice(flag) {
 1499:       opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
 1500:       opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
 1501:       opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
 1502:       opener.document.SCORE.refresh.value = "on";
 1503:       if (opener.document.SCORE.keywords.value!=""){
 1504:          opener.document.SCORE.submit();
 1505:       }
 1506:       self.close()
 1507:     }
 1508: </script>
 1509: INNERJS
 1510: 
 1511:     my $start_page_msg_central = 
 1512:         &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
 1513: 				       {'js_ready'  => 1,
 1514: 					'only_body' => 1,
 1515: 					'bgcolor'   =>'#FFFFFF',});
 1516:     my $end_page_msg_central = 
 1517: 	&Apache::loncommon::end_page({'js_ready' => 1});
 1518: 
 1519: 
 1520:     my $start_page_highlight_central = 
 1521:         &Apache::loncommon::start_page('Highlight Central',
 1522: 				       $inner_js_highlight_central,
 1523: 				       {'js_ready'  => 1,
 1524: 					'only_body' => 1,
 1525: 					'bgcolor'   =>'#FFFFFF',});
 1526:     my $end_page_highlight_central = 
 1527: 	&Apache::loncommon::end_page({'js_ready' => 1});
 1528: 
 1529:     my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
 1530:     $docopen=~s/^document\.//;
 1531:     my %js_lt = &Apache::lonlocal::texthash(
 1532:                 keyw => 'Keywords list, separated by a space. Add/delete to list if desired.',
 1533:                 plse => 'Please select a word or group of words from document and then click this link.',
 1534:                 adds => 'Add selection to keyword list? Edit if desired.',
 1535:                 col1 => 'red',
 1536:                 col2 => 'green',
 1537:                 col3 => 'blue',
 1538:                 siz1 => 'normal',
 1539:                 siz2 => '+1',
 1540:                 siz3 => '+2',
 1541:                 sty1 => 'normal',
 1542:                 sty2 => 'italic',
 1543:                 sty3 => 'bold',
 1544:              );
 1545:     my %html_js_lt = &Apache::lonlocal::texthash(
 1546:                 comp => 'Compose Message for: ',
 1547:                 incl => 'Include',
 1548:                 type => 'Type',
 1549:                 subj => 'Subject',
 1550:                 mesa => 'Message',
 1551:                 new  => 'New',
 1552:                 save => 'Save',
 1553:                 canc => 'Cancel',
 1554:                 kehi => 'Keyword Highlight Options',
 1555:                 txtc => 'Text Color',
 1556:                 font => 'Font Size',
 1557:                 fnst => 'Font Style',
 1558:              );
 1559:     &js_escape(\%js_lt);
 1560:     &html_escape(\%html_js_lt);
 1561:     &js_escape(\%html_js_lt);
 1562:     $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
 1563: 
 1564: //===================== Show list of keywords ====================
 1565:   function keywords(formname) {
 1566:     var nret = prompt("$js_lt{'keyw'}",formname.keywords.value);
 1567:     if (nret==null) return;
 1568:     formname.keywords.value = nret;
 1569: 
 1570:     if (formname.keywords.value != "") {
 1571: 	formname.refresh.value = "on";
 1572: 	formname.submit();
 1573:     }
 1574:     return;
 1575:   }
 1576: 
 1577: //===================== Script to view submitted by ==================
 1578:   function viewSubmitter(submitter) {
 1579:     document.SCORE.refresh.value = "on";
 1580:     document.SCORE.NCT.value = "1";
 1581:     document.SCORE.unamedom0.value = submitter;
 1582:     document.SCORE.submit();
 1583:     return;
 1584:   }
 1585: 
 1586: //===================== Script to add keyword(s) ==================
 1587:   function getSel() {
 1588:     if (document.getSelection) txt = document.getSelection();
 1589:     else if (document.selection) txt = document.selection.createRange().text;
 1590:     else return;
 1591:     var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
 1592:     if (cleantxt=="") {
 1593: 	alert("$js_lt{'plse'}");
 1594: 	return;
 1595:     }
 1596:     var nret = prompt("$js_lt{'adds'}",cleantxt);
 1597:     if (nret==null) return;
 1598:     document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
 1599:     if (document.SCORE.keywords.value != "") {
 1600: 	document.SCORE.refresh.value = "on";
 1601: 	document.SCORE.submit();
 1602:     }
 1603:     return;
 1604:   }
 1605: 
 1606: //====================== Script for composing message ==============
 1607:    // preload images
 1608:    img1 = new Image();
 1609:    img1.src = "$iconpath/mailbkgrd.gif";
 1610:    img2 = new Image();
 1611:    img2.src = "$iconpath/mailto.gif";
 1612: 
 1613:   function msgCenter(msgform,usrctr,fullname) {
 1614:     var Nmsg  = msgform.savemsgN.value;
 1615:     savedMsgHeader(Nmsg,usrctr,fullname);
 1616:     var subject = msgform.msgsub.value;
 1617:     var msgchk = document.SCORE["includemsg"+usrctr].value;
 1618:     re = /msgsub/;
 1619:     var shwsel = "";
 1620:     if (re.test(msgchk)) { shwsel = "checked" }
 1621:     subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
 1622:     displaySubject(checkEntities(subject),shwsel);
 1623:     for (var i=1; i<=Nmsg; i++) {
 1624: 	var testmsg = "savemsg"+i+",";
 1625: 	re = new RegExp(testmsg,"g");
 1626: 	shwsel = "";
 1627: 	if (re.test(msgchk)) { shwsel = "checked" }
 1628: 	var message = document.SCORE["savemsg"+i].value;
 1629: 	message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
 1630: 	displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
 1631: 	                                   //any &lt; is already converted to <, etc. However, only once!!
 1632:     }
 1633:     newmsg = document.SCORE["newmsg"+usrctr].value;
 1634:     shwsel = "";
 1635:     re = /newmsg/;
 1636:     if (re.test(msgchk)) { shwsel = "checked" }
 1637:     newMsg(newmsg,shwsel);
 1638:     msgTail(); 
 1639:     return;
 1640:   }
 1641: 
 1642:   function checkEntities(strx) {
 1643:     if (strx.length == 0) return strx;
 1644:     var orgStr = ["&", "<", ">", '"']; 
 1645:     var newStr = ["&amp;", "&lt;", "&gt;", "&quot;"];
 1646:     var counter = 0;
 1647:     while (counter < 4) {
 1648: 	strx = strReplace(strx,orgStr[counter],newStr[counter]);
 1649: 	counter++;
 1650:     }
 1651:     return strx;
 1652:   }
 1653: 
 1654:   function strReplace(strx, orgStr, newStr) {
 1655:     return strx.split(orgStr).join(newStr);
 1656:   }
 1657: 
 1658:   function savedMsgHeader(Nmsg,usrctr,fullname) {
 1659:     var height = 70*Nmsg+250;
 1660:     if (height > 600) {
 1661: 	height = 600;
 1662:     }
 1663:     var xpos = (screen.width-600)/2;
 1664:     xpos = (xpos < 0) ? '0' : xpos;
 1665:     var ypos = (screen.height-height)/2-30;
 1666:     ypos = (ypos < 0) ? '0' : ypos;
 1667: 
 1668:     pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars=yes,screenx='+xpos+',screeny='+ypos+',width=700,height='+height);
 1669:     pWin.focus();
 1670:     pDoc = pWin.document;
 1671:     pDoc.$docopen;
 1672:     pDoc.write('$start_page_msg_central');
 1673: 
 1674:     pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
 1675:     pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
 1676:     pDoc.write("<h1>&nbsp;$html_js_lt{'comp'}\"+fullname+\"<\\/h1>");
 1677: 
 1678:     pDoc.write('<table style="border:1px solid black;"><tr>');
 1679:     pDoc.write("<td><b>$html_js_lt{'incl'}<\\/b><\\/td><td><b>$html_js_lt{'type'}<\\/b><\\/td><td><b>$html_js_lt{'mesa'}<\\/td><\\/tr>");
 1680: }
 1681:     function displaySubject(msg,shwsel) {
 1682:     pDoc = pWin.document;
 1683:     pDoc.write("<tr>");
 1684:     pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
 1685:     pDoc.write("<td>$html_js_lt{'subj'}<\\/td>");
 1686:     pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"40\\" maxlength=\\"80\\"><\\/td><\\/tr>");
 1687: }
 1688: 
 1689:   function displaySavedMsg(ctr,msg,shwsel) {
 1690:     pDoc = pWin.document;
 1691:     pDoc.write("<tr>");
 1692:     pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
 1693:     pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
 1694:     pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
 1695: }
 1696: 
 1697:   function newMsg(newmsg,shwsel) {
 1698:     pDoc = pWin.document;
 1699:     pDoc.write("<tr>");
 1700:     pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
 1701:     pDoc.write("<td align=\\"center\\">$html_js_lt{'new'}<\\/td>");
 1702:     pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
 1703: }
 1704: 
 1705:   function msgTail() {
 1706:     pDoc = pWin.document;
 1707:     //pDoc.write("<\\/table>");
 1708:     pDoc.write("<\\/td><\\/tr><\\/table>&nbsp;");
 1709:     pDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'save'}\\" onclick=\\"javascript:checkInput()\\">&nbsp;&nbsp;");
 1710:     pDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
 1711:     pDoc.write("<\\/form>");
 1712:     pDoc.write('$end_page_msg_central');
 1713:     pDoc.close();
 1714: }
 1715: 
 1716: //====================== Script for keyword highlight options ==============
 1717:   function kwhighlight() {
 1718:     var kwclr    = document.SCORE.kwclr.value;
 1719:     var kwsize   = document.SCORE.kwsize.value;
 1720:     var kwstyle  = document.SCORE.kwstyle.value;
 1721:     var redsel = "";
 1722:     var grnsel = "";
 1723:     var blusel = "";
 1724:     var txtcol1 = "$js_lt{'col1'}";
 1725:     var txtcol2 = "$js_lt{'col2'}";
 1726:     var txtcol3 = "$js_lt{'col3'}";
 1727:     var txtsiz1 = "$js_lt{'siz1'}";
 1728:     var txtsiz2 = "$js_lt{'siz2'}";
 1729:     var txtsiz3 = "$js_lt{'siz3'}";
 1730:     var txtsty1 = "$js_lt{'sty1'}";
 1731:     var txtsty2 = "$js_lt{'sty2'}";
 1732:     var txtsty3 = "$js_lt{'sty3'}";
 1733:     if (kwclr=="red")   {var redsel="checked='checked'"};
 1734:     if (kwclr=="green") {var grnsel="checked='checked'"};
 1735:     if (kwclr=="blue")  {var blusel="checked='checked'"};
 1736:     var sznsel = "";
 1737:     var sz1sel = "";
 1738:     var sz2sel = "";
 1739:     if (kwsize=="0")  {var sznsel="checked='checked'"};
 1740:     if (kwsize=="+1") {var sz1sel="checked='checked'"};
 1741:     if (kwsize=="+2") {var sz2sel="checked='checked'"};
 1742:     var synsel = "";
 1743:     var syisel = "";
 1744:     var sybsel = "";
 1745:     if (kwstyle=="")    {var synsel="checked='checked'"};
 1746:     if (kwstyle=="<i>") {var syisel="checked='checked'"};
 1747:     if (kwstyle=="<b>") {var sybsel="checked='checked'"};
 1748:     highlightCentral();
 1749:     highlightbody('red',txtcol1,redsel,'0',txtsiz1,sznsel,'',txtsty1,synsel);
 1750:     highlightbody('green',txtcol2,grnsel,'+1',txtsiz2,sz1sel,'<i>',txtsty2,syisel);
 1751:     highlightbody('blue',txtcol3,blusel,'+2',txtsiz3,sz2sel,'<b>',txtsty3,sybsel);
 1752:     highlightend();
 1753:     return;
 1754:   }
 1755: 
 1756:   function highlightCentral() {
 1757: //    if (window.hwdWin) window.hwdWin.close();
 1758:     var xpos = (screen.width-400)/2;
 1759:     xpos = (xpos < 0) ? '0' : xpos;
 1760:     var ypos = (screen.height-330)/2-30;
 1761:     ypos = (ypos < 0) ? '0' : ypos;
 1762: 
 1763:     hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
 1764:     hwdWin.focus();
 1765:     var hDoc = hwdWin.document;
 1766:     hDoc.$docopen;
 1767:     hDoc.write('$start_page_highlight_central');
 1768:     hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
 1769:     hDoc.write("<h1>$html_js_lt{'kehi'}<\\/h1>");
 1770: 
 1771:     hDoc.write('<table border="0" width="100%"><tr style="background-color:#A1D676">');
 1772:     hDoc.write("<th>$html_js_lt{'txtc'}<\\/th><th>$html_js_lt{'font'}<\\/th><th>$html_js_lt{'fnst'}<\\/th><\\/tr>");
 1773:   }
 1774: 
 1775:   function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) { 
 1776:     var hDoc = hwdWin.document;
 1777:     hDoc.write("<tr>");
 1778:     hDoc.write("<td align=\\"left\\">");
 1779:     hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+" \\/>&nbsp;"+clrtxt+"<\\/td>");
 1780:     hDoc.write("<td align=\\"left\\">");
 1781:     hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+" \\/>&nbsp;"+sztxt+"<\\/td>");
 1782:     hDoc.write("<td align=\\"left\\">");
 1783:     hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+" \\/>&nbsp;"+sytxt+"<\\/td>");
 1784:     hDoc.write("<\\/tr>");
 1785:   }
 1786: 
 1787:   function highlightend() { 
 1788:     var hDoc = hwdWin.document;
 1789:     hDoc.write("<\\/table><br \\/>");
 1790:     hDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'save'}\\" onclick=\\"javascript:updateChoice(1)\\" \\/>&nbsp;&nbsp;");
 1791:     hDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'canc'}\\" onclick=\\"self.close()\\" \\/><br /><br />");
 1792:     hDoc.write("<\\/form>");
 1793:     hDoc.write('$end_page_highlight_central');
 1794:     hDoc.close();
 1795:   }
 1796: 
 1797: SUBJAVASCRIPT
 1798: }
 1799: 
 1800: sub get_increment {
 1801:     my $increment = $env{'form.increment'};
 1802:     if ($increment != 1 && $increment != .5 && $increment != .25 &&
 1803:         $increment != .1) {
 1804:         $increment = 1;
 1805:     }
 1806:     return $increment;
 1807: }
 1808: 
 1809: sub gradeBox_start {
 1810:     return (
 1811:         &Apache::loncommon::start_data_table()
 1812:        .&Apache::loncommon::start_data_table_header_row()
 1813:        .'<th>'.&mt('Part').'</th>'
 1814:        .'<th>'.&mt('Points').'</th>'
 1815:        .'<th>&nbsp;</th>'
 1816:        .'<th>'.&mt('Assign Grade').'</th>'
 1817:        .'<th>'.&mt('Weight').'</th>'
 1818:        .'<th>'.&mt('Grade Status').'</th>'
 1819:        .&Apache::loncommon::end_data_table_header_row()
 1820:     );
 1821: }
 1822: 
 1823: sub gradeBox_end {
 1824:     return (
 1825:         &Apache::loncommon::end_data_table()
 1826:     );
 1827: }
 1828: #--- displays the grading box, used in essay type problem and grading by page/sequence
 1829: sub gradeBox {
 1830:     my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
 1831:     my $checkIcon = '<img alt="'.&mt('Check Mark').
 1832: 	'" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
 1833:     my $wgt    = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
 1834:     my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)') 
 1835:                            : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
 1836:     $wgt       = ($wgt > 0 ? $wgt : '1');
 1837:     my $score  = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
 1838: 		  '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
 1839:     my $data_WGT='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
 1840:     my $display_part= &get_display_part($partid,$symb);
 1841:     my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
 1842: 				       [$partid]);
 1843:     my $aggtries = $$record{'resource.'.$partid.'.tries'};
 1844:     if ($last_resets{$partid}) {
 1845:         $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
 1846:     }
 1847:     my $result=&Apache::loncommon::start_data_table_row();
 1848:     my $ctr = 0;
 1849:     my $thisweight = 0;
 1850:     my $increment = &get_increment();
 1851: 
 1852:     my $radio.='<table border="0"><tr>'."\n";  # display radio buttons in a nice table 10 across
 1853:     while ($thisweight<=$wgt) {
 1854: 	$radio.= '<td><span class="LC_nobreak"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
 1855:         'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
 1856: 	    $thisweight.')" value="'.$thisweight.'" '.
 1857: 	    ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
 1858: 	$radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
 1859:         $thisweight += $increment;
 1860: 	$ctr++;
 1861:     }
 1862:     $radio.='</tr></table>';
 1863: 
 1864:     my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
 1865: 	($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
 1866: 	'onchange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
 1867: 	$wgt.')" /></td>'."\n";
 1868:     $line.='<td>/'.$wgt.' '.$wgtmsg.
 1869: 	($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? '&nbsp;'.$checkIcon : '').
 1870: 	' </td>'."\n";
 1871:     $line.='<td><select name="GD_SEL'.$counter.'_'.$partid.'" '.
 1872: 	'onchange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
 1873:     if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
 1874: 	$line.='<option></option>'.
 1875: 	    '<option value="excused" selected="selected">'.&mt('excused').'</option>';
 1876:     } else {
 1877: 	$line.='<option selected="selected"></option>'.
 1878: 	    '<option value="excused" >'.&mt('excused').'</option>';
 1879:     }
 1880:     $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
 1881: 
 1882: 
 1883:     $result .= 
 1884: 	    '<td>'.$data_WGT.$display_part.'</td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>';
 1885:     $result.=&Apache::loncommon::end_data_table_row();
 1886:     $result.=&Apache::loncommon::start_data_table_row().'<td colspan="6">';
 1887:     $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
 1888: 	'<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
 1889: 	'<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
 1890: 	$$record{'resource.'.$partid.'.solved'}.'" />'."\n".
 1891:         '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
 1892:         $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
 1893:         '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
 1894:         $aggtries.'" />'."\n";
 1895:     my $res_error;
 1896:     $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record,\$res_error);
 1897:     $result.='</td>'.&Apache::loncommon::end_data_table_row();
 1898:     if ($res_error) {
 1899:         return &navmap_errormsg();
 1900:     }
 1901:     return $result;
 1902: }
 1903: 
 1904: sub handback_box {
 1905:     my ($symb,$uname,$udom,$counter,$partid,$record,$res_error_pointer) = @_;
 1906:     my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error_pointer);
 1907:     my (@respids);
 1908:     my @part_response_id = &flatten_responseType($responseType);
 1909:     foreach my $part_response_id (@part_response_id) {
 1910:     	my ($part,$resp) = @{ $part_response_id };
 1911:         if ($part eq $partid) {
 1912:             push(@respids,$resp);
 1913:         }
 1914:     }
 1915:     my $result;
 1916:     foreach my $respid (@respids) {
 1917: 	my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
 1918: 	my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
 1919: 	next if (!@$files);
 1920: 	my $file_counter = 0;
 1921: 	foreach my $file (@$files) {
 1922: 	    if ($file =~ /\/portfolio\//) {
 1923:                 $file_counter++;
 1924:     	        my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
 1925:     	        my ($name,$version,$ext) = &Apache::lonnet::file_name_version_ext($file_disp);
 1926:     	        $file_disp = "$name.$ext";
 1927:     	        $file = $file_path.$file_disp;
 1928:     	        $result.=&mt('Return commented version of [_1] to student.',
 1929:     			 '<span class="LC_filename">'.$file_disp.'</span>');
 1930:     	        $result.='<input type="file"   name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
 1931:     	        $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />'."\n";
 1932: 	    }
 1933: 	}
 1934:         if ($file_counter) {
 1935:             $result .= '<input type="hidden" name="'.$prefix.'countreturndoc" value="'.$file_counter.'" />'."\n".
 1936:                        '<span class="LC_info">'.
 1937:                        '('.&mt('File(s) will be uploaded when you click on Save &amp; Next below.',$file_counter).')</span><br /><br />';
 1938:         }
 1939:     }
 1940:     return $result;    
 1941: }
 1942: 
 1943: sub show_problem {
 1944:     my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
 1945:     my $rendered;
 1946:     my %form = ((ref($form) eq 'HASH')? %{$form} : ());
 1947:     &Apache::lonxml::remember_problem_counter();
 1948:     if ($mode eq 'both' or $mode eq 'text') {
 1949: 	$rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
 1950: 						       $env{'request.course.id'},
 1951: 						       undef,\%form);
 1952:     }
 1953:     if ($removeform) {
 1954: 	$rendered=~s|<form(.*?)>||g;
 1955: 	$rendered=~s|</form>||g;
 1956: 	$rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
 1957:     }
 1958:     my $companswer;
 1959:     if ($mode eq 'both' or $mode eq 'answer') {
 1960: 	&Apache::lonxml::restore_problem_counter();
 1961: 	$companswer=
 1962: 	    &Apache::loncommon::get_student_answers($symb,$uname,$udom,
 1963: 						    $env{'request.course.id'},
 1964: 						    %form);
 1965:     }
 1966:     if ($removeform) {
 1967: 	$companswer=~s|<form(.*?)>||g;
 1968: 	$companswer=~s|</form>||g;
 1969: 	$companswer=~s|name="submit"|name="would_have_been_submit"|g;
 1970:     }
 1971:     my $renderheading = &mt('View of the problem');
 1972:     my $answerheading = &mt('Correct answer');
 1973:     if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
 1974:         my $stu_fullname = $env{'form.fullname'};
 1975:         if ($stu_fullname eq '') {
 1976:             $stu_fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
 1977:         }
 1978:         my $forwhom = &nameUserString(undef,$stu_fullname,$uname,$udom);
 1979:         if ($forwhom ne '') {
 1980:             $renderheading = &mt('View of the problem for[_1]',$forwhom);
 1981:             $answerheading = &mt('Correct answer for[_1]',$forwhom);
 1982:         }
 1983:     }
 1984:     $rendered=
 1985:         '<div class="LC_Box">'
 1986:        .'<h3 class="LC_hcell">'.$renderheading.'</h3>'
 1987:        .$rendered
 1988:        .'</div>';
 1989:     $companswer=
 1990:         '<div class="LC_Box">'
 1991:        .'<h3 class="LC_hcell">'.$answerheading.'</h3>'
 1992:        .$companswer
 1993:        .'</div>';
 1994:     my $result;
 1995:     if ($mode eq 'both') {
 1996:         $result=$rendered.$companswer;
 1997:     } elsif ($mode eq 'text') {
 1998:         $result=$rendered;
 1999:     } elsif ($mode eq 'answer') {
 2000:         $result=$companswer;
 2001:     }
 2002:     return $result;
 2003: }
 2004: 
 2005: sub files_exist {
 2006:     my ($r, $symb) = @_;
 2007:     my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
 2008:     foreach my $student (@students) {
 2009:         my ($uname,$udom,$fullname) = split(/:/,$student);
 2010:         my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
 2011: 					      $udom,$uname);
 2012:         my ($string,$timestamp)= &get_last_submission(\%record);
 2013:         foreach my $submission (@$string) {
 2014:             my ($partid,$respid) =
 2015: 		($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
 2016:             my $files=&get_submitted_files($udom,$uname,$partid,$respid,
 2017: 					   \%record);
 2018:             return 1 if (@$files);
 2019:         }
 2020:     }
 2021:     return 0;
 2022: }
 2023: 
 2024: sub download_all_link {
 2025:     my ($r,$symb) = @_;
 2026:     unless (&files_exist($r, $symb)) {
 2027:        $r->print(&mt('There are currently no submitted documents.'));
 2028:        return;
 2029:     }
 2030:     my $all_students = 
 2031: 	join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
 2032: 
 2033:     my $parts =
 2034: 	join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
 2035: 
 2036:     my $identifier = &Apache::loncommon::get_cgi_id();
 2037:     &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
 2038:                              'cgi.'.$identifier.'.symb' => $symb,
 2039:                              'cgi.'.$identifier.'.parts' => $parts,});
 2040:     $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
 2041: 	      &mt('Download All Submitted Documents').'</a>');
 2042:     return;
 2043: }
 2044: 
 2045: sub submit_download_link {
 2046:     my ($request,$symb) = @_;
 2047:     if (!$symb) { return ''; }
 2048: #FIXME: Figure out which type of problem this is and provide appropriate download
 2049:     my $res_error;
 2050:     my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error);
 2051:     if (ref($res_error)) {
 2052:         if ($$res_error) {
 2053:             $request->print(&mt('An error occurred retrieving response types'));
 2054:             return;
 2055:         }
 2056:     }
 2057:     my ($numupload,$numessay) = (0,0);
 2058:     if (ref($responseType) eq 'HASH') {
 2059:         foreach my $part (sort(keys(%$responseType))) {
 2060:             foreach my $id (sort(keys(%{ $responseType->{$part} }))) {
 2061:                 my $responsetype = $responseType->{$part}->{$id};
 2062:                 if ($responsetype eq 'essay') {
 2063:                     my $uploadedfiletypes =
 2064:                         &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes",$symb);
 2065:                     if ($uploadedfiletypes) {
 2066:                         $numupload++;
 2067:                     } else {
 2068:                         $numessay++;
 2069:                     }
 2070:                 }
 2071:             }
 2072:         }
 2073:     }
 2074:     if (($numupload) || ($numessay)) {
 2075:         my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
 2076:         my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
 2077:         my $getgroup  = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
 2078:         (undef,undef,my $fullname) = &getclasslist($getsec,1,$getgroup,$symb,$submitonly,1);
 2079:         if (ref($fullname) eq 'HASH') {
 2080:             my @students = map { $_.':'.$fullname->{$_} } (keys(%{$fullname}));
 2081:             if (@students) {
 2082:                 @{$env{'form.stuinfo'}} = @students;
 2083:                 if ($numupload) {
 2084:                     &download_all_link($request,$symb);
 2085:                 }
 2086: # FIXME Need to provide a mechanism to download essays, i.e., if $numessay > 0
 2087: # Needs to omit user's identity if resource instance is for an anonymous survey.
 2088:             } else {
 2089:                 $request->print(&mt('No students match the criteria you selected'));
 2090:             }
 2091:         } else {
 2092:             $request->print(&mt('Could not retrieve student information'));
 2093:         }
 2094:     } else {
 2095:         $request->print(&mt('No essayresponse items found'));
 2096:     }
 2097:     return;
 2098: }
 2099: 
 2100: sub build_section_inputs {
 2101:     my $section_inputs;
 2102:     if ($env{'form.section'} eq '') {
 2103:         $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
 2104:     } else {
 2105:         my @sections = &Apache::loncommon::get_env_multiple('form.section');
 2106:         foreach my $section (@sections) {
 2107:             $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
 2108:         }
 2109:     }
 2110:     return $section_inputs;
 2111: }
 2112: 
 2113: # --------------------------- show submissions of a student, option to grade 
 2114: sub submission {
 2115:     my ($request,$counter,$total,$symb) = @_;
 2116:     my ($uname,$udom)     = ($env{'form.student'},$env{'form.userdom'});
 2117:     $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
 2118:     my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
 2119:     $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
 2120: 
 2121:     my $probtitle=&Apache::lonnet::gettitle($symb); 
 2122:     if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
 2123:     my $is_tool = ($symb =~ /ext\.tool$/);
 2124:     my ($essayurl,%coursedesc_by_cid);
 2125: 
 2126:     if (!&canview($usec)) {
 2127:         $request->print(
 2128:             '<span class="LC_warning">'.
 2129:             &mt('Unable to view requested student.').
 2130:             ' '.&mt('([_1] in section [_2] in course id [_3])',
 2131:                         $uname.':'.$udom,$usec,$env{'request.course.id'}).
 2132:             '</span>');
 2133: 	return;
 2134:     }
 2135: 
 2136:     if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
 2137:     unless ($is_tool) { 
 2138:         if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
 2139:         if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
 2140:     }
 2141:     my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
 2142:     my $checkIcon = '<img alt="'.&mt('Check Mark').
 2143: 	'" src="'.$request->dir_config('lonIconsURL').
 2144: 	'/check.gif" height="16" border="0" />';
 2145: 
 2146:     # header info
 2147:     if ($counter == 0) {
 2148: 	&sub_page_js($request);
 2149: 	&sub_page_kw_js($request);
 2150: 
 2151: 	# option to display problem, only once else it cause problems 
 2152:         # with the form later since the problem has a form.
 2153: 	if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
 2154: 	    my $mode;
 2155: 	    if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
 2156: 		$mode='both';
 2157: 	    } elsif ($env{'form.vProb'} eq 'yes') {
 2158: 		$mode='text';
 2159: 	    } elsif ($env{'form.vAns'} eq 'yes') {
 2160: 		$mode='answer';
 2161: 	    }
 2162: 	    &Apache::lonxml::clear_problem_counter();
 2163: 	    $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
 2164: 	}
 2165: 
 2166: 	# kwclr is the only variable that is guaranteed not to be blank 
 2167:         # if this subroutine has been called once.
 2168: 	my %keyhash = ();
 2169: #	if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
 2170:         if (1) {
 2171: 	    %keyhash = &Apache::lonnet::dump('nohist_handgrade',
 2172: 					     $env{'course.'.$env{'request.course.id'}.'.domain'},
 2173: 					     $env{'course.'.$env{'request.course.id'}.'.num'});
 2174: 
 2175: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
 2176: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
 2177: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
 2178: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
 2179: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
 2180: 	    $env{'form.msgsub'}   = $keyhash{$symb.'_subject'} ne '' ? 
 2181: 		$keyhash{$symb.'_subject'} : $probtitle;
 2182: 	    $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
 2183: 	}
 2184: 	my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
 2185: 	my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
 2186: 	$request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
 2187: 			'<input type="hidden" name="command"    value="handgrade" />'."\n".
 2188: 			'<input type="hidden" name="Status"     value="'.$stu_status.'" />'."\n".
 2189: 			'<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
 2190: 			'<input type="hidden" name="refresh"    value="off" />'."\n".
 2191: 			'<input type="hidden" name="studentNo"  value="" />'."\n".
 2192: 			'<input type="hidden" name="gradeOpt"   value="" />'."\n".
 2193: 			'<input type="hidden" name="symb"       value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 2194: 			'<input type="hidden" name="vProb"      value="'.$env{'form.vProb'}.'" />'."\n".
 2195: 			'<input type="hidden" name="vAns"       value="'.$env{'form.vAns'}.'" />'."\n".
 2196: 			'<input type="hidden" name="lastSub"    value="'.$env{'form.lastSub'}.'" />'."\n".
 2197: 			&build_section_inputs().
 2198: 			'<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
 2199: 			'<input type="hidden" name="NCT"'.
 2200: 			' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
 2201: #	if ($env{'form.handgrade'} eq 'yes') {
 2202:         if (1) {
 2203: 	    $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
 2204: 			    '<input type="hidden" name="kwclr"    value="'.$env{'form.kwclr'}.'" />'."\n".
 2205: 			    '<input type="hidden" name="kwsize"   value="'.$env{'form.kwsize'}.'" />'."\n".
 2206: 			    '<input type="hidden" name="kwstyle"  value="'.$env{'form.kwstyle'}.'" />'."\n".
 2207: 			    '<input type="hidden" name="msgsub"   value="'.$env{'form.msgsub'}.'" />'."\n".
 2208: 			    '<input type="hidden" name="shownSub" value="0" />'."\n".
 2209: 			    '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
 2210: 	    foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
 2211: 		$request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
 2212: 	    }
 2213: 	}
 2214: 	
 2215: 	my ($cts,$prnmsg) = (1,'');
 2216: 	while ($cts <= $env{'form.savemsgN'}) {
 2217: 	    $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
 2218: 		(!exists($keyhash{$symb.'_savemsg'.$cts}) ? 
 2219: 		 &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
 2220: 		 &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
 2221: 		'" />'."\n".
 2222: 		'<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
 2223: 	    $cts++;
 2224: 	}
 2225: 	$request->print($prnmsg);
 2226: 
 2227: #	if ($env{'form.handgrade'} eq 'yes') {
 2228:         unless ($is_tool) {
 2229: 
 2230:             my %lt = &Apache::lonlocal::texthash(
 2231:                           keyh => 'Keyword Highlighting for Essays',
 2232:                           keyw => 'Keyword Options',
 2233:                           list => 'List',
 2234:                           past => 'Paste Selection to List',
 2235:                           high => 'Highlight Attribute',
 2236:                      );    
 2237: #
 2238: # Print out the keyword options line
 2239: #
 2240: 	    $request->print(
 2241:                 '<div class="LC_columnSection">'
 2242:                .'<fieldset><legend>'.$lt{'keyh'}.'</legend>'
 2243:                .&Apache::lonhtmlcommon::funclist_from_array(
 2244:                     ['<a href="javascript:keywords(document.SCORE);" target="_self">'.$lt{'list'}.'</a>',
 2245:                      '<a href="#" onmousedown="javascript:getSel(); return false"
 2246:  class="page">'.$lt{'past'}.'</a>',
 2247:                      '<a href="javascript:kwhighlight();" target="_self">'.$lt{'high'}.'</a>'],
 2248:                     {legend => $lt{'keyw'}})
 2249:                .'</fieldset></div>'
 2250:             );
 2251: 
 2252: #
 2253: # Load the other essays for similarity check
 2254: #
 2255:             (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
 2256:             if ($essayurl eq 'lib/templates/simpleproblem.problem') {
 2257:                 my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2258:                 my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 2259:                 if ($cdom ne '' && $cnum ne '') {
 2260:                     my ($map,$id,$res) = &Apache::lonnet::decode_symb($symb);
 2261:                     if ($map =~ m{^\Quploaded/$cdom/$cnum/\E(default(?:|_\d+)\.(?:sequence|page))$}) {
 2262:                         my $apath = $1.'_'.$id;
 2263:                         $apath=~s/\W/\_/gs;
 2264:                         &init_old_essays($symb,$apath,$cdom,$cnum);
 2265:                     }
 2266:                 }
 2267:             } else {
 2268: 	        my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
 2269: 	        $apath=&escape($apath);
 2270: 	        $apath=~s/\W/\_/gs;
 2271:                 &init_old_essays($symb,$apath,$adom,$aname);
 2272:             }
 2273:         }
 2274:     }
 2275: 
 2276: # This is where output for one specific student would start
 2277:     my $add_class = ($counter%2) ? ' LC_grade_show_user_odd_row' : '';
 2278:     $request->print(
 2279:         "\n\n"
 2280:        .'<div class="LC_grade_show_user'.$add_class.'">'
 2281:        .'<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</h2>'
 2282:        ."\n"
 2283:     );
 2284: 
 2285:     # Show additional functions if allowed
 2286:     if ($perm{'vgr'}) {
 2287:         $request->print(
 2288:             &Apache::loncommon::track_student_link(
 2289:                 'View recent activity',
 2290:                 $uname,$udom,'check')
 2291:            .' '
 2292:         );
 2293:     }
 2294:     if ($perm{'opa'}) {
 2295:         $request->print(
 2296:             &Apache::loncommon::pprmlink(
 2297:                 &mt('Set/Change parameters'),
 2298:                 $uname,$udom,$symb,'check'));
 2299:     }
 2300: 
 2301:     # Show Problem
 2302:     if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
 2303: 	my $mode;
 2304: 	if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
 2305: 	    $mode='both';
 2306: 	} elsif ($env{'form.vProb'} eq 'all' ) {
 2307: 	    $mode='text';
 2308: 	} elsif ($env{'form.vAns'} eq 'all') {
 2309: 	    $mode='answer';
 2310: 	}
 2311: 	&Apache::lonxml::clear_problem_counter();
 2312: 	$request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
 2313:     }
 2314: 
 2315:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
 2316:     my $res_error;
 2317:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
 2318:     if ($res_error) {
 2319:         $request->print(&navmap_errormsg());
 2320:         return;
 2321:     }
 2322: 
 2323:     # Display student info
 2324:     $request->print(($counter == 0 ? '' : '<br />'));
 2325: 
 2326:     my $boxtitle = &mt('Submissions');
 2327:     if ($is_tool) {
 2328:         $boxtitle = &mt('Transactions')
 2329:     }
 2330:     my $result='<div class="LC_Box">'
 2331:               .'<h3 class="LC_hcell">'.$boxtitle.'</h3>';
 2332:     $result.='<input type="hidden" name="name'.$counter.
 2333:              '" value="'.$env{'form.fullname'}.'" />'."\n";
 2334: #    if ($env{'form.handgrade'} eq 'no') {
 2335:     unless ($is_tool) {
 2336:         $result.='<p class="LC_info">'
 2337:                 .&mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)
 2338:                 ."</p>\n";
 2339:     }
 2340: 
 2341:     # If any part of the problem is an essay-response (handgraded), then check for collaborators
 2342:     my $fullname;
 2343:     my $col_fullnames = [];
 2344: #    if ($env{'form.handgrade'} eq 'yes') {
 2345:     unless ($is_tool) {
 2346: 	(my $sub_result,$fullname,$col_fullnames)=
 2347: 	    &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
 2348: 				 $counter);
 2349: 	$result.=$sub_result;
 2350:     }
 2351:     $request->print($result."\n");
 2352:     
 2353:     # print student answer/submission
 2354:     # Options are (1) Handgraded submission only
 2355:     #             (2) Last submission, includes submission that is not handgraded 
 2356:     #                  (for multi-response type part)
 2357:     #             (3) Last submission plus the parts info
 2358:     #             (4) The whole record for this student
 2359:     
 2360:     my ($string,$timestamp)= &get_last_submission(\%record,$is_tool);
 2361: 	
 2362:     my $lastsubonly;
 2363: 
 2364:     if ($$timestamp eq '') {
 2365:         $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>'; 
 2366:     } elsif ($is_tool) {
 2367:         $lastsubonly =
 2368:             '<div class="LC_grade_submissions_body">'
 2369:            .'<b>'.&mt('Date Grade Passed Back:').'</b> '.$$timestamp."</div>\n";
 2370:     } else {
 2371:         $lastsubonly =
 2372:             '<div class="LC_grade_submissions_body">'
 2373:            .'<b>'.&mt('Date Submitted:').'</b> '.$$timestamp."\n";
 2374: 
 2375: 	my %seenparts;
 2376: 	my @part_response_id = &flatten_responseType($responseType);
 2377: 	foreach my $part (@part_response_id) {
 2378: 	    next if ($env{'form.lastSub'} eq 'hdgrade' 
 2379: 			 && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
 2380: 
 2381: 	    my ($partid,$respid) = @{ $part };
 2382: 	    my $display_part=&get_display_part($partid,$symb);
 2383: 	    if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
 2384: 		if (exists($seenparts{$partid})) { next; }
 2385: 		$seenparts{$partid}=1;
 2386:                 $request->print(
 2387:                     '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
 2388:                     ' <b>'.&mt('Collaborative submission by: [_1]',
 2389:                                '<a href="javascript:viewSubmitter(\''.
 2390:                                $env{"form.$uname:$udom:$partid:submitted_by"}.
 2391:                                '\');" target="_self">'.
 2392:                                $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a>').
 2393:                     '<br />');
 2394: 		next;
 2395: 		}
 2396: 	    my $responsetype = $responseType->{$partid}->{$respid};
 2397: 	    if (!exists($record{"resource.$partid.$respid.submission"})) {
 2398:                 $lastsubonly.="\n".'<div class="LC_grade_submission_part">'.
 2399:                     '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
 2400:                     ' <span class="LC_internal_info">'.
 2401:                     '('.&mt('Response ID: [_1]',$respid).')'.
 2402:                     '</span>&nbsp; &nbsp;'.
 2403: 	       	    '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br /><br /></div>';
 2404: 		next;
 2405: 	    }
 2406: 	    foreach my $submission (@$string) {
 2407: 		my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
 2408: 		if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
 2409: 		my ($ressub,$hide,$draft,$subval) = split(/:/,$submission,4);
 2410: 		# Similarity check
 2411:                 my $similar='';
 2412:                 my ($type,$trial,$rndseed);
 2413:                 if ($hide eq 'rand') {
 2414:                     $type = 'randomizetry';
 2415:                     $trial = $record{"resource.$partid.tries"};
 2416:                     $rndseed = $record{"resource.$partid.rndseed"};
 2417:                 }
 2418: 	        if ($env{'form.checkPlag'}) {
 2419:     		    my ($oname,$odom,$ocrsid,$oessay,$osim)=
 2420: 		        &most_similar($uname,$udom,$symb,$subval);
 2421: 		    if ($osim) {
 2422: 			$osim=int($osim*100.0);
 2423:                         if ($hide eq 'anon') {
 2424:                             $similar='<hr /><span class="LC_warning">'.&mt("Essay was found to be similar to another essay submitted for this assignment.").'<br />'.
 2425:                                      &mt('As the current submission is for an anonymous survey, no other details are available.').'</span><hr />';
 2426:                         } else {
 2427: 			    $similar='<hr />';
 2428:                             if ($essayurl eq 'lib/templates/simpleproblem.problem') {
 2429:                                 $similar .= '<h3><span class="LC_warning">'.
 2430:                                             &mt('Essay is [_1]% similar to an essay by [_2]',
 2431:                                                 $osim,
 2432:                                                 &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')').
 2433:                                             '</span></h3>';
 2434:                             } else {
 2435:                                 my %old_course_desc;
 2436:                                 if ($ocrsid ne '') {
 2437:                                     if (ref($coursedesc_by_cid{$ocrsid}) eq 'HASH') {
 2438:                                         %old_course_desc = %{$coursedesc_by_cid{$ocrsid}};
 2439:                                     } else {
 2440:                                         my $args;
 2441:                                         if ($ocrsid ne $env{'request.course.id'}) {
 2442:                                             $args = {'one_time' => 1};
 2443:                                         }
 2444:                                         %old_course_desc =
 2445:                                             &Apache::lonnet::coursedescription($ocrsid,$args);
 2446:                                         $coursedesc_by_cid{$ocrsid} = \%old_course_desc;
 2447:                                     }
 2448:                                     $similar .=
 2449:                                         '<h3><span class="LC_warning">'.
 2450:                                         &mt('Essay is [_1]% similar to an essay by [_2] in course [_3] (course id [_4]:[_5])',
 2451:                                             $osim,
 2452:                                             &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')',
 2453:                                             $old_course_desc{'description'},
 2454:                                             $old_course_desc{'num'},
 2455:                                             $old_course_desc{'domain'}).
 2456:                                         '</span></h3>';
 2457:                                 } else {
 2458:                                     $similar .=
 2459:                                         '<h3><span class="LC_warning">'.
 2460:                                         &mt('Essay is [_1]% similar to an essay by [_2] in an unknown course',
 2461:                                             $osim,
 2462:                                             &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')').
 2463:                                         '</span></h3>';
 2464:                                 }
 2465:                             }
 2466:                             $similar .= '<blockquote><i>'.
 2467:                                         &keywords_highlight($oessay).
 2468:                                         '</i></blockquote><hr />';
 2469:                         }
 2470: 	            }
 2471: 		}
 2472: 		my $order=&get_order($partid,$respid,$symb,$uname,$udom,
 2473:                                      undef,$type,$trial,$rndseed);
 2474:                 if ($env{'form.lastSub'} eq 'lastonly' || $env{'form.lastSub'} eq 'datesub' || $env{'form.lastSub'} =~ /^(last|all)$/ || ($env{'form.lastSub'} eq 'hdgrade' && 
 2475: 			 $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
 2476: 		    my $display_part=&get_display_part($partid,$symb);
 2477:                     $lastsubonly.='<div class="LC_grade_submission_part">'.
 2478:                         '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
 2479:                         ' <span class="LC_internal_info">'.
 2480:                         '('.&mt('Response ID: [_1]',$respid).')'.
 2481:                         '</span>&nbsp; &nbsp;';
 2482: 		    my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
 2483:                         
 2484: 		    if (@$files) {
 2485:                         if ($hide eq 'anon') {
 2486:                             $lastsubonly.='<br />'.&mt('[quant,_1,file] uploaded to this anonymous survey',scalar(@{$files}));
 2487:                         } else {
 2488:                             $lastsubonly.='<br /><br />'.'<b>'.&mt('Submitted Files:').'</b>'
 2489:                                         .'<br /><span class="LC_warning">';
 2490:                             if(@$files == 1) {
 2491:                                 $lastsubonly .= &mt('Like all files provided by users, this file may contain viruses!');
 2492:                             } else {
 2493:                                 $lastsubonly .= &mt('Like all files provided by users, these files may contain viruses!');
 2494:                             }
 2495:                             $lastsubonly .= '</span>';                         
 2496:                             foreach my $file (@$files) {
 2497:                                 &Apache::lonnet::allowuploaded('/adm/grades',$file);
 2498:                                 $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border="0" alt="" /> '.$file.'</a>';
 2499:                             }
 2500:                         }
 2501: 			$lastsubonly.='<br />';
 2502:                     }
 2503:                     if ($hide eq 'anon') {
 2504:                         $lastsubonly.='<br /><b>'.&mt('Anonymous Survey').'</b>'; 
 2505:                     } else {
 2506:              	        $lastsubonly.='<br /><b>'.&mt('Submitted Answer:').' </b>';
 2507:                         if ($draft) {
 2508:                             $lastsubonly.= ' <span class="LC_warning">'.&mt('Draft Copy').'</span>';
 2509:                         }
 2510:                         $subval =
 2511: 			    &cleanRecord($subval,$responsetype,$symb,$partid,
 2512: 					 $respid,\%record,$order,undef,$uname,$udom,$type,$trial,$rndseed);
 2513:                         if ($responsetype eq 'essay') {
 2514:                             $subval =~ s{\n}{<br />}g;
 2515:                         }
 2516:                         $lastsubonly.=$subval."\n";
 2517:                     }
 2518: 	            if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
 2519: 		    $lastsubonly.='</div>';
 2520: 		}
 2521:             }
 2522: 	}
 2523: 	$lastsubonly.='</div>'."\n"; # End: LC_grade_submissions_body
 2524:     }
 2525:     $request->print($lastsubonly);
 2526:     if ($env{'form.lastSub'} eq 'datesub') {
 2527:         my ($parts,$handgrade,$responseType) = &response_type($symb,\$res_error);
 2528: 	$request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
 2529:   
 2530:     } 
 2531:     if ($env{'form.lastSub'} =~ /^(last|all)$/) {
 2532:         my $identifier = (&canmodify($usec)? $counter : '');
 2533:         $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
 2534: 								 $env{'request.course.id'},
 2535: 								 $last,'.submission',
 2536: 								 'Apache::grades::keywords_highlight',
 2537:                                                                  $usec,$identifier));
 2538:     }
 2539:     $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
 2540: 	.$udom.'" />'."\n");
 2541:     # return if view submission with no grading option
 2542:     if (!&canmodify($usec)) {
 2543: 	$request->print('<p><span class="LC_warning">'.&mt('No grading privileges').'</span></p></div>');
 2544: 	return;
 2545:     } else {
 2546: 	$request->print('</div>'."\n");
 2547:     }
 2548: 
 2549:     # essay grading message center
 2550: #    if ($env{'form.handgrade'} eq 'yes') {
 2551:     if (1) {
 2552: 	my $result='<div class="LC_grade_message_center">';
 2553:     
 2554: 	$result.='<div class="LC_grade_message_center_header">'.
 2555: 	    &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
 2556: 	my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
 2557: 	my $msgfor = $givenn.' '.$lastname;
 2558: 	if (scalar(@$col_fullnames) > 0) {
 2559: 	    my $lastone = pop(@$col_fullnames);
 2560: 	    $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
 2561: 	}
 2562: 	$msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
 2563: 	$result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
 2564: 	    '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
 2565: 	$result.='&nbsp;<a href="javascript:msgCenter(document.SCORE,'.$counter.
 2566: 	    ',\''.$msgfor.'\');" target="_self">'.
 2567: 	    &mt('Compose message to student'.(scalar(@$col_fullnames) >= 1 ? 's' : '')).'</a><label> ('.
 2568: 	    &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
 2569: 	    ' <img src="'.$request->dir_config('lonIconsURL').
 2570: 	    '/mailbkgrd.gif" width="14" height="10" alt="" name="mailicon'.$counter.'" />'."\n".
 2571: 	    '<br />&nbsp;('.
 2572: 	    &mt('Message will be sent when you click on Save &amp; Next below.').")\n";
 2573: 	$result.='</div></div>';
 2574: 	$request->print($result);
 2575:     }
 2576: 
 2577:     my %seen = ();
 2578:     my @partlist;
 2579:     my @gradePartRespid;
 2580:     my @part_response_id;
 2581:     if ($is_tool) {
 2582:         @part_response_id = ([0,'']);
 2583:     } else {
 2584:         @part_response_id = &flatten_responseType($responseType);
 2585:     }
 2586:     $request->print(
 2587:         '<div class="LC_Box">'
 2588:        .'<h3 class="LC_hcell">'.&mt('Assign Grades').'</h3>'
 2589:     );
 2590:     $request->print(&gradeBox_start());
 2591:     foreach my $part_response_id (@part_response_id) {
 2592:     	my ($partid,$respid) = @{ $part_response_id };
 2593: 	my $part_resp = join('_',@{ $part_response_id });
 2594: 	next if ($seen{$partid} > 0);
 2595: 	$seen{$partid}++;
 2596: 	next if ($$handgrade{$part_resp} ne 'yes' 
 2597: 		 && $env{'form.lastSub'} eq 'hdgrade');
 2598: 	push(@partlist,$partid);
 2599: 	push(@gradePartRespid,$partid.'.'.$respid);
 2600: 	$request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
 2601:     }
 2602:     $request->print(&gradeBox_end()); # </div>
 2603:     $request->print('</div>');
 2604: 
 2605:     $request->print('<div class="LC_grade_info_links">');
 2606:     $request->print('</div>');
 2607: 
 2608:     $result='<input type="hidden" name="partlist'.$counter.
 2609: 	'" value="'.(join ":",@partlist).'" />'."\n";
 2610:     $result.='<input type="hidden" name="gradePartRespid'.
 2611: 	'" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
 2612:     my $ctr = 0;
 2613:     while ($ctr < scalar(@partlist)) {
 2614: 	$result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
 2615: 	    $partlist[$ctr].'" />'."\n";
 2616: 	$ctr++;
 2617:     }
 2618:     $request->print($result.''."\n");
 2619: 
 2620: # Done with printing info for one student
 2621: 
 2622:     $request->print('</div>');#LC_grade_show_user
 2623: 
 2624: 
 2625:     # print end of form
 2626:     if ($counter == $total) {
 2627:         my $endform='<br /><hr /><table border="0"><tr><td>'."\n";
 2628: 	$endform.='<input type="button" value="'.&mt('Save &amp; Next').'" '.
 2629: 	    'onclick="javascript:checksubmit(this.form,\'Save & Next\','.
 2630: 	    $total.','.scalar(@partlist).');" target="_self" /> &nbsp;'."\n";
 2631: 	my $ntstu ='<select name="NTSTU">'.
 2632: 	    '<option>1</option><option>2</option>'.
 2633: 	    '<option>3</option><option>5</option>'.
 2634: 	    '<option>7</option><option>10</option></select>'."\n";
 2635: 	my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
 2636: 	$ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
 2637:         $endform.=&mt('[_1]student(s)',$ntstu);
 2638: 	$endform.='&nbsp;&nbsp;<input type="button" value="'.&mt('Previous').'" '.
 2639: 	    'onclick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> &nbsp;'."\n".
 2640: 	    '<input type="button" value="'.&mt('Next').'" '.
 2641: 	    'onclick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> &nbsp;';
 2642:         $endform.='<span class="LC_warning">'.
 2643:                   &mt('(Next and Previous (student) do not save the scores.)').
 2644:                   '</span>'."\n" ;
 2645:         $endform.="<input type='hidden' value='".&get_increment().
 2646:             "' name='increment' />";
 2647: 	$endform.='</td></tr></table></form>';
 2648: 	$request->print($endform);
 2649:     }
 2650:     return '';
 2651: }
 2652: 
 2653: sub check_collaborators {
 2654:     my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
 2655:     my ($result,@col_fullnames);
 2656:     my ($classlist,undef,$fullname) = &getclasslist('all','0');
 2657:     foreach my $part (keys(%$handgrade)) {
 2658: 	my $ncol = &Apache::lonnet::EXT('resource.'.$part.
 2659: 					'.maxcollaborators',
 2660: 					$symb,$udom,$uname);
 2661: 	next if ($ncol <= 0);
 2662: 	$part =~ s/\_/\./g;
 2663: 	next if ($record->{'resource.'.$part.'.collaborators'} eq '');
 2664: 	my (@good_collaborators, @bad_collaborators);
 2665: 	foreach my $possible_collaborator
 2666: 	    (split(/[,;\s]+/,$record->{'resource.'.$part.'.collaborators'})) { 
 2667: 	    $possible_collaborator =~ s/[\$\^\(\)]//g;
 2668: 	    next if ($possible_collaborator eq '');
 2669: 	    my ($co_name,$co_dom) = split(/:/,$possible_collaborator);
 2670: 	    $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
 2671: 	    next if ($co_name eq $uname && $co_dom eq $udom);
 2672: 	    # Doing this grep allows 'fuzzy' specification
 2673: 	    my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i, 
 2674: 			       keys(%$classlist));
 2675: 	    if (! scalar(@matches)) {
 2676: 		push(@bad_collaborators, $possible_collaborator);
 2677: 	    } else {
 2678: 		push(@good_collaborators, @matches);
 2679: 	    }
 2680: 	}
 2681: 	if (scalar(@good_collaborators) != 0) {
 2682: 	    $result.='<br />'.&mt('Collaborators:').'<ol>';
 2683: 	    foreach my $name (@good_collaborators) {
 2684: 		my ($lastname,$givenn) = split(/,/,$$fullname{$name});
 2685: 		push(@col_fullnames, $givenn.' '.$lastname);
 2686: 		$result.='<li>'.$fullname->{$name}.'</li>';
 2687: 	    }
 2688: 	    $result.='</ol><br />'."\n";
 2689: 	    my ($part)=split(/\./,$part);
 2690: 	    $result.='<input type="hidden" name="collaborator'.$counter.
 2691: 		'" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
 2692: 		"\n";
 2693: 	}
 2694: 	if (scalar(@bad_collaborators) > 0) {
 2695: 	    $result.='<div class="LC_warning">';
 2696: 	    $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
 2697: 	    $result .= '</div>';
 2698: 	}         
 2699: 	if (scalar(@bad_collaborators > $ncol)) {
 2700: 	    $result .= '<div class="LC_warning">';
 2701: 	    $result .= &mt('This student has submitted too many '.
 2702: 		'collaborators.  Maximum is [_1].',$ncol);
 2703: 	    $result .= '</div>';
 2704: 	}
 2705:     }
 2706:     return ($result,$fullname,\@col_fullnames);
 2707: }
 2708: 
 2709: #--- Retrieve the last submission for all the parts
 2710: sub get_last_submission {
 2711:     my ($returnhash,$is_tool)=@_;
 2712:     my (@string,$timestamp,%lasthidden);
 2713:     if ($$returnhash{'version'}) {
 2714: 	my %lasthash=();
 2715: 	my ($version);
 2716: 	for ($version=1;$version<=$$returnhash{'version'};$version++) {
 2717: 	    foreach my $key (sort(split(/\:/,
 2718: 					$$returnhash{$version.':keys'}))) {
 2719: 		$lasthash{$key}=$$returnhash{$version.':'.$key};
 2720: 		$timestamp = 
 2721: 		    &Apache::lonlocal::locallocaltime($$returnhash{$version.':timestamp'});
 2722: 	    }
 2723: 	}
 2724:         my (%typeparts,%randombytry);
 2725:         my $showsurv = 
 2726:             &Apache::lonnet::allowed('vas',$env{'request.course.id'});
 2727:         foreach my $key (sort(keys(%lasthash))) {
 2728:             if ($key =~ /\.type$/) {
 2729:                 if (($lasthash{$key} eq 'anonsurvey') || 
 2730:                     ($lasthash{$key} eq 'anonsurveycred') ||
 2731:                     ($lasthash{$key} eq 'randomizetry')) {
 2732:                     my ($ign,@parts) = split(/\./,$key);
 2733:                     pop(@parts);
 2734:                     my $id = join('.',@parts);
 2735:                     if ($lasthash{$key} eq 'randomizetry') {
 2736:                         $randombytry{$ign.'.'.$id} = $lasthash{$key};
 2737:                     } else {
 2738:                         unless ($showsurv) {
 2739:                             $typeparts{$ign.'.'.$id} = $lasthash{$key};
 2740:                         }
 2741:                     }
 2742:                     delete($lasthash{$key});
 2743:                 }
 2744:             }
 2745:         }
 2746:         my @hidden = keys(%typeparts);
 2747:         my @randomize = keys(%randombytry);
 2748: 	foreach my $key (keys(%lasthash)) {
 2749: 	    next if ($key !~ /\.submission$/);
 2750:             my $hide;
 2751:             if (@hidden) {
 2752:                 foreach my $id (@hidden) {
 2753:                     if ($key =~ /^\Q$id\E/) {
 2754:                         $hide = 'anon';
 2755:                         last;
 2756:                     }
 2757:                 }
 2758:             }
 2759:             unless ($hide) {
 2760:                 if (@randomize) {
 2761:                     foreach my $id (@randomize) {
 2762:                         if ($key =~ /^\Q$id\E/) {
 2763:                             $hide = 'rand';
 2764:                             last;
 2765:                         }
 2766:                     }
 2767:                 }
 2768:             }
 2769: 	    my ($partid,$foo) = split(/submission$/,$key);
 2770: 	    my $draft  = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ? 1 : 0;
 2771:             push(@string, join(':', $key, $hide, $draft, (
 2772:                 ref($lasthash{$key}) eq 'ARRAY' ?
 2773:                     join(',', @{$lasthash{$key}}) : $lasthash{$key}) ));
 2774: 	}
 2775:     }
 2776:     if (!@string) {
 2777:         my $msg;
 2778:         if ($is_tool) {
 2779:             $msg = &mt('No grade passed back.');
 2780:         } else {
 2781:             $msg = &mt('Nothing submitted - no attempts.');
 2782:         }
 2783: 	$string[0] =
 2784: 	    '<span class="LC_warning">'.$msg.'</span>';
 2785:     }
 2786:     return (\@string,\$timestamp);
 2787: }
 2788: 
 2789: #--- High light keywords, with style choosen by user.
 2790: sub keywords_highlight {
 2791:     my $string    = shift;
 2792:     my $size      = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
 2793:     my $styleon   = $env{'form.kwstyle'} eq ''  ? '' : $env{'form.kwstyle'};
 2794:     (my $styleoff = $styleon) =~ s/\</\<\//;
 2795:     my @keylist   = split(/[,\s+]/,$env{'form.keywords'});
 2796:     foreach my $keyword (@keylist) {
 2797: 	$string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
 2798:     }
 2799:     return $string;
 2800: }
 2801: 
 2802: # For Tasks provide a mechanism to display previous version for one specific student
 2803: 
 2804: sub show_previous_task_version {
 2805:     my ($request,$symb) = @_;
 2806:     if ($symb eq '') {
 2807:         $request->print(
 2808:             '<span class="LC_error">'.
 2809:             &mt('Unable to handle ambiguous references.').
 2810:             '</span>');
 2811:         return '';
 2812:     }
 2813:     my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
 2814:     my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
 2815:     if (!&canview($usec)) {
 2816:         $request->print(
 2817:             '<span class="LC_warning">'.
 2818:             &mt('Unable to view previous version for requested student.').
 2819:             ' '.&mt('([_1] in section [_2] in course id [_3])',
 2820:                     $uname.':'.$udom,$usec,$env{'request.course.id'}).
 2821:             '</span>');
 2822:         return;
 2823:     }
 2824:     my $mode = 'both';
 2825:     my $isTask = ($symb =~/\.task$/);
 2826:     if ($isTask) {
 2827:         if ($env{'form.previousversion'} =~ /^\d+$/) {
 2828:             if ($env{'form.fullname'} eq '') {
 2829:                 $env{'form.fullname'} =
 2830:                     &Apache::loncommon::plainname($uname,$udom,'lastname');
 2831:             }
 2832:             my $probtitle=&Apache::lonnet::gettitle($symb);
 2833:             $request->print("\n\n".
 2834:                             '<div class="LC_grade_show_user">'.
 2835:                             '<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
 2836:                             '</h2>'."\n");
 2837:             &Apache::lonxml::clear_problem_counter();
 2838:             $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,
 2839:                             {'previousversion' => $env{'form.previousversion'} }));
 2840:             $request->print("\n</div>");
 2841:         }
 2842:     }
 2843:     return;
 2844: }
 2845: 
 2846: sub choose_task_version_form {
 2847:     my ($symb,$uname,$udom,$nomenu) = @_;
 2848:     my $isTask = ($symb =~/\.task$/);
 2849:     my ($current,$version,$result,$js,$displayed,$rowtitle);
 2850:     if ($isTask) {
 2851:         my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
 2852:                                               $udom,$uname);
 2853:         if (($record{'resource.0.version'} eq '') ||
 2854:             ($record{'resource.0.version'} < 2)) {
 2855:             return ($record{'resource.0.version'},
 2856:                     $record{'resource.0.version'},$result,$js);
 2857:         } else {
 2858:             $current = $record{'resource.0.version'};
 2859:         }
 2860:         if ($env{'form.previousversion'}) {
 2861:             $displayed = $env{'form.previousversion'};
 2862:             $rowtitle = &mt('Choose another version:')
 2863:         } else {
 2864:             $displayed = $current;
 2865:             $rowtitle = &mt('Show earlier version:');
 2866:         }
 2867:         $result = '<div class="LC_left_float">';
 2868:         my $list;
 2869:         my $numversions = 0;
 2870:         for (my $i=1; $i<=$record{'resource.0.version'}; $i++) {
 2871:             if ($i == $current) {
 2872:                 if (!$env{'form.previousversion'} || $nomenu) {
 2873:                     next;
 2874:                 } else {
 2875:                     $list .= '<option value="'.$i.'">'.&mt('Current').'</option>'."\n";
 2876:                     $numversions ++;
 2877:                 }
 2878:             } elsif (defined($record{'resource.'.$i.'.0.status'})) {
 2879:                 unless ($i == $env{'form.previousversion'}) {
 2880:                     $numversions ++;
 2881:                 }
 2882:                 $list .= '<option value="'.$i.'">'.$i.'</option>'."\n";
 2883:             }
 2884:         }
 2885:         if ($numversions) {
 2886:             $symb = &HTML::Entities::encode($symb,'<>"&');
 2887:             $result .=
 2888:                 '<form name="getprev" method="post" action=""'.
 2889:                 ' onsubmit="return previousVersion('."'$uname','$udom','$symb','$displayed'".');">'.
 2890:                 &Apache::loncommon::start_data_table().
 2891:                 &Apache::loncommon::start_data_table_row().
 2892:                 '<th align="left">'.$rowtitle.'</th>'.
 2893:                 '<td><select name="version">'.
 2894:                 '<option>'.&mt('Select').'</option>'.
 2895:                 $list.
 2896:                 '</select></td>'.
 2897:                 &Apache::loncommon::end_data_table_row();
 2898:             unless ($nomenu) {
 2899:                 $result .= &Apache::loncommon::start_data_table_row().
 2900:                 '<th align="left">'.&mt('Open in new window').'</th>'.
 2901:                 '<td><span class="LC_nobreak">'.
 2902:                 '<label><input type="radio" name="prevwin" value="1" />'.
 2903:                 &mt('Yes').'</label>'.
 2904:                 '<label><input type="radio" name="prevwin" value="0" checked="checked" />'.&mt('No').'</label>'.
 2905:                 '</span></td>'.
 2906:                 &Apache::loncommon::end_data_table_row();
 2907:             }
 2908:             $result .=
 2909:                 &Apache::loncommon::start_data_table_row().
 2910:                 '<th align="left">&nbsp;</th>'.
 2911:                 '<td>'.
 2912:                 '<input type="submit" name="prevsub" value="'.&mt('Display').'" />'.
 2913:                 '</td>'.
 2914:                 &Apache::loncommon::end_data_table_row().
 2915:                 &Apache::loncommon::end_data_table().
 2916:                 '</form>';
 2917:             $js = &previous_display_javascript($nomenu,$current);
 2918:         } elsif ($displayed && $nomenu) {
 2919:             $result .= '<a href="javascript:window.close()">'.&mt('Close window').'</a>';
 2920:         } else {
 2921:             $result .= &mt('No previous versions to show for this student');
 2922:         }
 2923:         $result .= '</div>';
 2924:     }
 2925:     return ($current,$displayed,$result,$js);
 2926: }
 2927: 
 2928: sub previous_display_javascript {
 2929:     my ($nomenu,$current) = @_;
 2930:     my $js = <<"JSONE";
 2931: <script type="text/javascript">
 2932: // <![CDATA[
 2933: function previousVersion(uname,udom,symb) {
 2934:     var current = '$current';
 2935:     var version = document.getprev.version.options[document.getprev.version.selectedIndex].value;
 2936:     var prevstr = new RegExp("^\\\\d+\$");
 2937:     if (!prevstr.test(version)) {
 2938:         return false;
 2939:     }
 2940:     var url = '';
 2941:     if (version == current) {
 2942:         url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=submission';
 2943:     } else {
 2944:         url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=versionsub&previousversion='+version;
 2945:     }
 2946: JSONE
 2947:     if ($nomenu) {
 2948:         $js .= <<"JSTWO";
 2949:     document.location.href = url;
 2950: JSTWO
 2951:     } else {
 2952:         $js .= <<"JSTHREE";
 2953:     var newwin = 0;
 2954:     for (var i=0; i<document.getprev.prevwin.length; i++) {
 2955:         if (document.getprev.prevwin[i].checked == true) {
 2956:             newwin = document.getprev.prevwin[i].value;
 2957:         }
 2958:     }
 2959:     if (newwin == 1) {
 2960:         var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
 2961:         url = url+'&inhibitmenu=yes';
 2962:         if (typeof(previousWin) == 'undefined' || previousWin.closed) {
 2963:             previousWin = window.open(url,'',options,1);
 2964:         } else {
 2965:             previousWin.location.href = url;
 2966:         }
 2967:         previousWin.focus();
 2968:         return false;
 2969:     } else {
 2970:         document.location.href = url;
 2971:         return false;
 2972:     }
 2973: JSTHREE
 2974:     }
 2975:     $js .= <<"ENDJS";
 2976:     return false;
 2977: }
 2978: // ]]>
 2979: </script>
 2980: ENDJS
 2981: 
 2982: }
 2983: 
 2984: #--- Called from submission routine
 2985: sub processHandGrade {
 2986:     my ($request,$symb) = @_;
 2987:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 2988:     my $button = $env{'form.gradeOpt'};
 2989:     my $ngrade = $env{'form.NCT'};
 2990:     my $ntstu  = $env{'form.NTSTU'};
 2991:     my $cdom   = $env{'course.'.$env{'request.course.id'}.'.domain'};
 2992:     my $cnum   = $env{'course.'.$env{'request.course.id'}.'.num'};
 2993: 
 2994:     if ($button eq 'Save & Next') {
 2995: 	my $ctr = 0;
 2996: 	while ($ctr < $ngrade) {
 2997: 	    my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
 2998: 	    my ($errorflag,$pts,$wgt,$numhidden) = 
 2999:                 &saveHandGrade($request,$symb,$uname,$udom,$ctr);
 3000: 	    if ($errorflag eq 'no_score') {
 3001: 		$ctr++;
 3002: 		next;
 3003: 	    }
 3004: 	    if ($errorflag eq 'not_allowed') {
 3005: 		$request->print(
 3006:                     '<span class="LC_error">'
 3007:                    .&mt('Not allowed to modify grades for [_1]',"$uname:$udom")
 3008:                    .'</span>');
 3009: 		$ctr++;
 3010: 		next;
 3011: 	    }
 3012:             if ($numhidden) {
 3013:                 $request->print(
 3014:                     '<span class="LC_info">'
 3015:                    .&mt('For [_1]: [quant,_2,transaction] hidden',"$uname:$udom",$numhidden)
 3016:                    .'</span><br />');
 3017:             }
 3018: 	    my $includemsg = $env{'form.includemsg'.$ctr};
 3019: 	    my ($subject,$message,$msgstatus) = ('','','');
 3020: 	    my $restitle = &Apache::lonnet::gettitle($symb);
 3021:             my ($feedurl,$showsymb) =
 3022: 		&get_feedurl_and_symb($symb,$uname,$udom);
 3023: 	    my $messagetail;
 3024: 	    if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
 3025: 		$subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
 3026: 		unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
 3027: 		$subject.=' ['.$restitle.']';
 3028: 		my (@msgnum) = split(/,/,$includemsg);
 3029: 		foreach (@msgnum) {
 3030: 		    $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
 3031: 		}
 3032: 		$message =&Apache::lonfeedback::clear_out_html($message);
 3033: 		if ($env{'form.withgrades'.$ctr}) {
 3034: 		    $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
 3035: 		    $messagetail = " for <a href=\"".
 3036: 		                   $feedurl."?symb=$showsymb\">$restitle</a>";
 3037: 		}
 3038: 		$msgstatus = 
 3039:                     &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
 3040: 						     $message.$messagetail,
 3041:                                                      undef,$feedurl,undef,
 3042:                                                      undef,undef,$showsymb,
 3043:                                                      $restitle);
 3044: 		$request->print('<br />'.&mt('Sending message to [_1]',$uname.':'.$udom).': '.
 3045: 				$msgstatus.'<br />');
 3046: 	    }
 3047: 	    if ($env{'form.collaborator'.$ctr}) {
 3048: 		my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
 3049: 		foreach my $collabstr (@collabstrs) {
 3050: 		    my ($part,@collaborators) = split(/:/,$collabstr);
 3051: 		    foreach my $collaborator (@collaborators) {
 3052: 			my ($errorflag,$pts,$wgt) = 
 3053: 			    &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
 3054: 					   $env{'form.unamedom'.$ctr},$part);
 3055: 			if ($errorflag eq 'not_allowed') {
 3056: 			    $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
 3057: 			    next;
 3058: 			} elsif ($message ne '') {
 3059: 			    my ($baseurl,$showsymb) = 
 3060: 				&get_feedurl_and_symb($symb,$collaborator,
 3061: 						      $udom);
 3062: 			    if ($env{'form.withgrades'.$ctr}) {
 3063: 				$messagetail = " for <a href=\"".
 3064:                                     $baseurl."?symb=$showsymb\">$restitle</a>";
 3065: 			    }
 3066: 			    $msgstatus = 
 3067: 				&Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
 3068: 			}
 3069: 		    }
 3070: 		}
 3071: 	    }
 3072: 	    $ctr++;
 3073: 	}
 3074:     }
 3075: 
 3076: #    if ($env{'form.handgrade'} eq 'yes') {
 3077:     if (1) {
 3078: 	# Keywords sorted in alphabatical order
 3079: 	my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
 3080: 	my %keyhash = ();
 3081: 	$env{'form.keywords'}           =~ s/,\s{0,}|\s+/ /g;
 3082: 	$env{'form.keywords'}           =~ s/^\s+|\s+$//;
 3083: 	my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
 3084: 	$env{'form.keywords'} = join(' ',@keywords);
 3085: 	$keyhash{$symb.'_keywords'}     = $env{'form.keywords'};
 3086: 	$keyhash{$symb.'_subject'}      = $env{'form.msgsub'};
 3087: 	$keyhash{$loginuser.'_kwclr'}   = $env{'form.kwclr'};
 3088: 	$keyhash{$loginuser.'_kwsize'}  = $env{'form.kwsize'};
 3089: 	$keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
 3090: 
 3091: 	# message center - Order of message gets changed. Blank line is eliminated.
 3092: 	# New messages are saved in env for the next student.
 3093: 	# All messages are saved in nohist_handgrade.db
 3094: 	my ($ctr,$idx) = (1,1);
 3095: 	while ($ctr <= $env{'form.savemsgN'}) {
 3096: 	    if ($env{'form.savemsg'.$ctr} ne '') {
 3097: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
 3098: 		$idx++;
 3099: 	    }
 3100: 	    $ctr++;
 3101: 	}
 3102: 	$ctr = 0;
 3103: 	while ($ctr < $ngrade) {
 3104: 	    if ($env{'form.newmsg'.$ctr} ne '') {
 3105: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
 3106: 		$env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
 3107: 		$idx++;
 3108: 	    }
 3109: 	    $ctr++;
 3110: 	}
 3111: 	$env{'form.savemsgN'} = --$idx;
 3112: 	$keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
 3113: 	my $putresult = &Apache::lonnet::put
 3114: 	    ('nohist_handgrade',\%keyhash,$cdom,$cnum);
 3115:     }
 3116:     # Called by Save & Refresh from Highlight Attribute Window
 3117:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
 3118:     if ($env{'form.refresh'} eq 'on') {
 3119: 	my ($ctr,$total) = (0,0);
 3120: 	while ($ctr < $ngrade) {
 3121: 	    $total++ if  $env{'form.unamedom'.$ctr} ne '';
 3122: 	    $ctr++;
 3123: 	}
 3124: 	$env{'form.NTSTU'}=$ngrade;
 3125: 	$ctr = 0;
 3126: 	while ($ctr < $total) {
 3127: 	    my $processUser = $env{'form.unamedom'.$ctr};
 3128: 	    ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
 3129: 	    $env{'form.fullname'} = $$fullname{$processUser};
 3130: 	    &submission($request,$ctr,$total-1,$symb);
 3131: 	    $ctr++;
 3132: 	}
 3133: 	return '';
 3134:     }
 3135: 
 3136:     # Get the next/previous one or group of students
 3137:     my $firststu = $env{'form.unamedom0'};
 3138:     my $laststu = $env{'form.unamedom'.($ngrade-1)};
 3139:     my $ctr = 2;
 3140:     while ($laststu eq '') {
 3141: 	$laststu  = $env{'form.unamedom'.($ngrade-$ctr)};
 3142: 	$ctr++;
 3143: 	$laststu = $firststu if ($ctr > $ngrade);
 3144:     }
 3145: 
 3146:     my (@parsedlist,@nextlist);
 3147:     my ($nextflg) = 0;
 3148:     foreach my $item (sort 
 3149: 	     {
 3150: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
 3151: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
 3152: 		 }
 3153: 		 return $a cmp $b;
 3154: 	     } (keys(%$fullname))) {
 3155: # FIXME: this is fishy, looks like the button label
 3156: 	if ($nextflg == 1 && $button =~ /Next$/) {
 3157: 	    push(@parsedlist,$item);
 3158: 	}
 3159: 	$nextflg = 1 if ($item eq $laststu);
 3160: 	if ($button eq 'Previous') {
 3161: 	    last if ($item eq $firststu);
 3162: 	    push(@parsedlist,$item);
 3163: 	}
 3164:     }
 3165:     $ctr = 0;
 3166: # FIXME: this is fishy, looks like the button label
 3167:     @parsedlist = reverse @parsedlist if ($button eq 'Previous');
 3168:     my $res_error;
 3169:     my ($partlist) = &response_type($symb,\$res_error);
 3170:     if ($res_error) {
 3171:         $request->print(&navmap_errormsg());
 3172:         return;
 3173:     }
 3174:     foreach my $student (@parsedlist) {
 3175: 	my $submitonly=$env{'form.submitonly'};
 3176: 	my ($uname,$udom) = split(/:/,$student);
 3177: 	
 3178: 	if ($submitonly eq 'queued') {
 3179: 	    my %queue_status = 
 3180: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
 3181: 							$udom,$uname);
 3182: 	    next if (!defined($queue_status{'gradingqueue'}));
 3183: 	}
 3184: 
 3185: 	if ($submitonly =~ /^(yes|graded|incorrect)$/) {
 3186: #	    my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
 3187: 	    my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
 3188: 	    my $submitted = 0;
 3189: 	    my $ungraded = 0;
 3190: 	    my $incorrect = 0;
 3191: 	    foreach my $item (keys(%status)) {
 3192: 		$submitted = 1 if ($status{$item} ne 'nothing');
 3193: 		$ungraded = 1 if ($status{$item} =~ /^ungraded/);
 3194: 		$incorrect = 1 if ($status{$item} =~ /^incorrect/);
 3195: 		my ($foo,$partid,$foo1) = split(/\./,$item);
 3196: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
 3197: 		    $submitted = 0;
 3198: 		}
 3199: 	    }
 3200: 	    next if (!$submitted && ($submitonly eq 'yes' ||
 3201: 				     $submitonly eq 'incorrect' ||
 3202: 				     $submitonly eq 'graded'));
 3203: 	    next if (!$ungraded && ($submitonly eq 'graded'));
 3204: 	    next if (!$incorrect && $submitonly eq 'incorrect');
 3205: 	}
 3206: 	push(@nextlist,$student) if ($ctr < $ntstu);
 3207: 	last if ($ctr == $ntstu);
 3208: 	$ctr++;
 3209:     }
 3210: 
 3211:     $ctr = 0;
 3212:     my $total = scalar(@nextlist)-1;
 3213: 
 3214:     foreach (sort(@nextlist)) {
 3215: 	my ($uname,$udom,$submitter) = split(/:/);
 3216: 	$env{'form.student'}  = $uname;
 3217: 	$env{'form.userdom'}  = $udom;
 3218: 	$env{'form.fullname'} = $$fullname{$_};
 3219: 	&submission($request,$ctr,$total,$symb);
 3220: 	$ctr++;
 3221:     }
 3222:     if ($total < 0) {
 3223: 	my $the_end.='<p>'.&mt('[_1]Message:[_2] No more students for this section or class.','<b>','</b>').'</p>'."\n";
 3224: 	$request->print($the_end);
 3225:     }
 3226:     return '';
 3227: }
 3228: 
 3229: #---- Save the score and award for each student, if changed
 3230: sub saveHandGrade {
 3231:     my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
 3232:     my @version_parts;
 3233:     my $usec = &Apache::lonnet::getsection($domain,$stuname,
 3234: 					   $env{'request.course.id'});
 3235:     if (!&canmodify($usec)) { return('not_allowed'); }
 3236:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
 3237:     my @parts_graded;
 3238:     my %newrecord  = ();
 3239:     my ($pts,$wgt,$totchg) = ('','',0);
 3240:     my %aggregate = ();
 3241:     my $aggregateflag = 0;
 3242:     if ($env{'form.HIDE'.$newflg}) {
 3243:         my ($version,$parts) = split(/:/,$env{'form.HIDE'.$newflg},2);
 3244:         my $numchgs = &makehidden($version,$parts,\%record,$symb,$domain,$stuname,1);
 3245:         $totchg += $numchgs;
 3246:     }
 3247:     my @parts = split(/:/,$env{'form.partlist'.$newflg});
 3248:     foreach my $new_part (@parts) {
 3249: 	#collaborator ($submi may vary for different parts
 3250: 	if ($submitter && $new_part ne $part) { next; }
 3251: 	my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
 3252: 	if ($dropMenu eq 'excused') {
 3253: 	    if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
 3254: 		$newrecord{'resource.'.$new_part.'.solved'} = 'excused';
 3255: 		if (exists($record{'resource.'.$new_part.'.awarded'})) {
 3256: 		    $newrecord{'resource.'.$new_part.'.awarded'} = '';
 3257: 		}
 3258: 	        $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
 3259: 	    }
 3260: 	} elsif ($dropMenu eq 'reset status'
 3261: 		 && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
 3262: 	    foreach my $key (keys(%record)) {
 3263: 		if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
 3264: 	    }
 3265: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
 3266: 		"$env{'user.name'}:$env{'user.domain'}";
 3267:             my $totaltries = $record{'resource.'.$part.'.tries'};
 3268: 
 3269:             my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
 3270: 					       [$new_part]);
 3271:             my $aggtries =$totaltries;
 3272:             if ($last_resets{$new_part}) {
 3273:                 $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
 3274: 					   $new_part);
 3275:             }
 3276: 
 3277:             my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
 3278:             if ($aggtries > 0) {
 3279:                 &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
 3280:                 $aggregateflag = 1;
 3281:             }
 3282: 	} elsif ($dropMenu eq '') {
 3283: 	    $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ? 
 3284: 		    $env{'form.GD_BOX'.$newflg.'_'.$new_part} : 
 3285: 		    $env{'form.RADVAL'.$newflg.'_'.$new_part});
 3286: 	    if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
 3287: 		next;
 3288: 	    }
 3289: 	    $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 : 
 3290: 		$env{'form.WGT'.$newflg.'_'.$new_part};
 3291: 	    my $partial= $pts/$wgt;
 3292: 	    if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
 3293: 		#do not update score for part if not changed.
 3294:                 &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
 3295: 		next;
 3296: 	    } else {
 3297: 	        push(@parts_graded,$new_part);
 3298: 	    }
 3299: 	    if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
 3300: 		$newrecord{'resource.'.$new_part.'.awarded'}  = $partial;
 3301: 	    }
 3302: 	    my $reckey = 'resource.'.$new_part.'.solved';
 3303: 	    if ($partial == 0) {
 3304: 		if ($record{$reckey} ne 'incorrect_by_override') {
 3305: 		    $newrecord{$reckey} = 'incorrect_by_override';
 3306: 		}
 3307: 	    } else {
 3308: 		if ($record{$reckey} ne 'correct_by_override') {
 3309: 		    $newrecord{$reckey} = 'correct_by_override';
 3310: 		}
 3311: 	    }	    
 3312: 	    if ($submitter && 
 3313: 		($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
 3314: 		$newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
 3315: 	    }
 3316: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
 3317: 		"$env{'user.name'}:$env{'user.domain'}";
 3318: 	}
 3319: 	# unless problem has been graded, set flag to version the submitted files
 3320: 	unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/  || 
 3321: 	        $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
 3322: 	        $dropMenu eq 'reset status')
 3323: 	   {
 3324: 	    push(@version_parts,$new_part);
 3325: 	}
 3326:     }
 3327:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 3328:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 3329: 
 3330:     if (%newrecord) {
 3331:         if (@version_parts) {
 3332:             my @changed_keys = &version_portfiles(\%record, \@parts_graded, 
 3333:                                 $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
 3334: 	    @newrecord{@changed_keys} = @record{@changed_keys};
 3335: 	    foreach my $new_part (@version_parts) {
 3336: 		&handback_files($request,$symb,$stuname,$domain,$newflg,
 3337: 				$new_part,\%newrecord);
 3338: 	    }
 3339:         }
 3340: 	&Apache::lonnet::cstore(\%newrecord,$symb,
 3341: 				$env{'request.course.id'},$domain,$stuname);
 3342: 	&check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
 3343: 				     $cdom,$cnum,$domain,$stuname);
 3344:     }
 3345:     if ($aggregateflag) {
 3346:         &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
 3347: 			      $cdom,$cnum);
 3348:     }
 3349:     return ('',$pts,$wgt,$totchg);
 3350: }
 3351: 
 3352: sub makehidden {
 3353:     my ($version,$parts,$record,$symb,$domain,$stuname,$tolog) = @_;
 3354:     return unless (ref($record) eq 'HASH');
 3355:     my %modified;
 3356:     my $numchanged = 0;
 3357:     if (exists($record->{$version.':keys'})) {
 3358:         my $partsregexp = $parts;
 3359:         $partsregexp =~ s/,/|/g;
 3360:         foreach my $key (split(/\:/,$record->{$version.':keys'})) {
 3361:             if ($key =~ /^resource\.(?:$partsregexp)\.([^\.]+)$/) {
 3362:                  my $item = $1;
 3363:                  unless (($item eq 'solved') || ($item =~ /^award(|msg|ed)$/)) {
 3364:                      $modified{$key} = $record->{$version.':'.$key};
 3365:                  }
 3366:             } elsif ($key =~ m{^(resource\.(?:$partsregexp)\.[^\.]+\.)(.+)$}) {
 3367:                 $modified{$1.'hidden'.$2} = $record->{$version.':'.$key};
 3368:             } elsif ($key =~ /^(ip|timestamp|host)$/) {
 3369:                 $modified{$key} = $record->{$version.':'.$key};
 3370:             }
 3371:         }
 3372:         if (keys(%modified)) {
 3373:             if (&Apache::lonnet::putstore($env{'request.course.id'},$symb,$version,\%modified,
 3374:                                           $domain,$stuname,$tolog) eq 'ok') {
 3375:                 $numchanged ++;
 3376:             }
 3377:         }
 3378:     }
 3379:     return $numchanged;
 3380: }
 3381: 
 3382: sub check_and_remove_from_queue {
 3383:     my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
 3384:     my @ungraded_parts;
 3385:     foreach my $part (@{$parts}) {
 3386: 	if (    $record->{   'resource.'.$part.'.awarded'} eq ''
 3387: 	     && $record->{   'resource.'.$part.'.solved' } ne 'excused'
 3388: 	     && $newrecord->{'resource.'.$part.'.awarded'} eq ''
 3389: 	     && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
 3390: 		) {
 3391: 	    push(@ungraded_parts, $part);
 3392: 	}
 3393:     }
 3394:     if ( !@ungraded_parts ) {
 3395: 	&Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
 3396: 					       $cnum,$domain,$stuname);
 3397:     }
 3398: }
 3399: 
 3400: sub handback_files {
 3401:     my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
 3402:     my $portfolio_root = '/userfiles/portfolio';
 3403:     my $res_error;
 3404:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
 3405:     if ($res_error) {
 3406:         $request->print('<br />'.&navmap_errormsg().'<br />');
 3407:         return;
 3408:     }
 3409:     my @handedback;
 3410:     my $file_msg;
 3411:     my @part_response_id = &flatten_responseType($responseType);
 3412:     foreach my $part_response_id (@part_response_id) {
 3413:     	my ($part_id,$resp_id) = @{ $part_response_id };
 3414: 	my $part_resp = join('_',@{ $part_response_id });
 3415:         if (($env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'} =~ /^\d+$/) & ($new_part eq $part_id)) {
 3416:             for (my $counter=1; $counter<=$env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'}; $counter++) {
 3417:                 # if multiple files are uploaded names will be 'returndoc2','returndoc3' 
 3418:                 if ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter}) {
 3419:                     my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter.'.filename'};
 3420:                     my ($directory,$answer_file) = 
 3421:                         ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter} =~ /^(.*?)([^\/]*)$/);
 3422:                     my ($answer_name,$answer_ver,$answer_ext) =
 3423: 		        &Apache::lonnet::file_name_version_ext($answer_file);
 3424: 		    my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
 3425:                     my $getpropath = 1;
 3426:                     my ($dir_list,$listerror) = 
 3427:                         &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,
 3428:                                                  $domain,$stuname,$getpropath);
 3429: 		    my $version = &Apache::lonnet::get_next_version($answer_name,$answer_ext,$dir_list);
 3430:                     # fix filename
 3431:                     my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
 3432:                     my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
 3433:             	                                $newflg.'_'.$part_resp.'_returndoc'.$counter,
 3434:             	                                $save_file_name);
 3435:                     if ($result !~ m|^/uploaded/|) {
 3436:                         $request->print('<br /><span class="LC_error">'.
 3437:                             &mt('An error occurred ([_1]) while trying to upload [_2].',
 3438:                                 $result,$newflg.'_'.$part_resp.'_returndoc'.$counter).
 3439:                                         '</span>');
 3440:                     } else {
 3441:                         # mark the file as read only
 3442:                         push(@handedback,$save_file_name);
 3443: 			if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
 3444: 			    $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
 3445: 			}
 3446:                         $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
 3447: 			$file_msg.= '<span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span> <br />";
 3448:                     }
 3449:                     $request->print('<br />'.&mt('[_1] will be the uploaded filename [_2]','<span class="LC_info">'.$fname.'</span>','<span class="LC_filename">'.$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter}.'</span>'));
 3450:                 }
 3451:             }
 3452:         }
 3453:     }
 3454:     if (@handedback > 0) {
 3455:         $request->print('<br />');
 3456:         my @what = ($symb,$env{'request.course.id'},'handback');
 3457:         &Apache::lonnet::mark_as_readonly($domain,$stuname,\@handedback,\@what);
 3458:         my $user_lh = &Apache::loncommon::user_lang($stuname,$domain,$env{'request.course.id'});    
 3459:         my ($subject,$message);
 3460:         if (scalar(@handedback) == 1) {
 3461:             $subject = &mt_user($user_lh,'File Handed Back by Instructor');
 3462:             $message = &mt_user($user_lh,'A file has been returned that was originally submitted in response to: ');
 3463:         } else {
 3464:             $subject = &mt_user($user_lh,'Files Handed Back by Instructor');
 3465:             $message = &mt_user($user_lh,'Files have been returned that were originally submitted in response to: ');
 3466:         }
 3467:         $message .= "<p><strong>".&Apache::lonnet::gettitle($symb)." </strong></p>";
 3468:         $message .= &mt_user($user_lh,'The returned file(s) are named: [_1]',"<br />$file_msg <br />").
 3469:                     &mt_user($user_lh,'The file(s) can be found in your [_1]portfolio[_2].','<a href="/adm/portfolio">','</a>');
 3470:         my ($feedurl,$showsymb) =
 3471:             &get_feedurl_and_symb($symb,$domain,$stuname);
 3472:         my $restitle = &Apache::lonnet::gettitle($symb);
 3473:         $subject .= ' '.&mt_user($user_lh,'(File Returned)').' ['.$restitle.']';
 3474:         my $msgstatus =
 3475:              &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject,
 3476:                  $message,undef,$feedurl,undef,undef,undef,$showsymb,
 3477:                  $restitle);
 3478:         if ($msgstatus) {
 3479:             $request->print(&mt('Notification message status: [_1]','<span class="LC_info">'.$msgstatus.'</span>').'<br />');
 3480:         }
 3481:     }
 3482:     return;
 3483: }
 3484: 
 3485: sub get_feedurl_and_symb {
 3486:     my ($symb,$uname,$udom) = @_;
 3487:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 3488:     $url = &Apache::lonnet::clutter($url);
 3489:     my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
 3490: 					$symb,$udom,$uname);
 3491:     if ($encrypturl =~ /^yes$/i) {
 3492: 	&Apache::lonenc::encrypted(\$url,1);
 3493: 	&Apache::lonenc::encrypted(\$symb,1);
 3494:     }
 3495:     return ($url,$symb);
 3496: }
 3497: 
 3498: sub get_submitted_files {
 3499:     my ($udom,$uname,$partid,$respid,$record) = @_;
 3500:     my @files;
 3501:     if ($$record{"resource.$partid.$respid.portfiles"}) {
 3502:         my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
 3503:         foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
 3504:     	    push(@files,$file_url.$file);
 3505:         }
 3506:     }
 3507:     if ($$record{"resource.$partid.$respid.uploadedurl"}) {
 3508:         push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
 3509:     }
 3510:     return (\@files);
 3511: }
 3512: 
 3513: # ----------- Provides number of tries since last reset.
 3514: sub get_num_tries {
 3515:     my ($record,$last_reset,$part) = @_;
 3516:     my $timestamp = '';
 3517:     my $num_tries = 0;
 3518:     if ($$record{'version'}) {
 3519:         for (my $version=$$record{'version'};$version>=1;$version--) {
 3520:             if (exists($$record{$version.':resource.'.$part.'.solved'})) {
 3521:                 $timestamp = $$record{$version.':timestamp'};
 3522:                 if ($timestamp > $last_reset) {
 3523:                     $num_tries ++;
 3524:                 } else {
 3525:                     last;
 3526:                 }
 3527:             }
 3528:         }
 3529:     }
 3530:     return $num_tries;
 3531: }
 3532: 
 3533: # ----------- Determine decrements required in aggregate totals 
 3534: sub decrement_aggs {
 3535:     my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
 3536:     my %decrement = (
 3537:                         attempts => 0,
 3538:                         users => 0,
 3539:                         correct => 0
 3540:                     );
 3541:     $decrement{'attempts'} = $aggtries;
 3542:     if ($solvedstatus =~ /^correct/) {
 3543:         $decrement{'correct'} = 1;
 3544:     }
 3545:     if ($aggtries == $totaltries) {
 3546:         $decrement{'users'} = 1;
 3547:     }
 3548:     foreach my $type (keys(%decrement)) {
 3549:         $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
 3550:     }
 3551:     return;
 3552: }
 3553: 
 3554: # ----------- Determine timestamps for last reset of aggregate totals for parts  
 3555: sub get_last_resets {
 3556:     my ($symb,$courseid,$partids) =@_;
 3557:     my %last_resets;
 3558:     my $cdom = $env{'course.'.$courseid.'.domain'};
 3559:     my $cname = $env{'course.'.$courseid.'.num'};
 3560:     my @keys;
 3561:     foreach my $part (@{$partids}) {
 3562: 	push(@keys,"$symb\0$part\0resettime");
 3563:     }
 3564:     my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
 3565: 				     $cdom,$cname);
 3566:     foreach my $part (@{$partids}) {
 3567: 	$last_resets{$part}=$results{"$symb\0$part\0resettime"};
 3568:     }
 3569:     return %last_resets;
 3570: }
 3571: 
 3572: # ----------- Handles creating versions for portfolio files as answers
 3573: sub version_portfiles {
 3574:     my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
 3575:     my $version_parts = join('|',@$v_flag);
 3576:     my @returned_keys;
 3577:     my $parts = join('|', @$parts_graded);
 3578:     foreach my $key (keys(%$record)) {
 3579:         my $new_portfiles;
 3580:         if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
 3581:             my @versioned_portfiles;
 3582:             my @portfiles = split(/\s*,\s*/,$$record{$key});
 3583:             if (@portfiles) {
 3584:                 &Apache::lonnet::portfiles_versioning($symb,$domain,$stu_name,\@portfiles,
 3585:                                                       \@versioned_portfiles);
 3586:             }
 3587:             $$record{$key} = join(',',@versioned_portfiles);
 3588:             push(@returned_keys,$key);
 3589:         }
 3590:     } 
 3591:     return (@returned_keys);   
 3592: }
 3593: 
 3594: #--------------------------------------------------------------------------------------
 3595: #
 3596: #-------------------------- Next few routines handles grading by section or whole class
 3597: #
 3598: #--- Javascript to handle grading by section or whole class
 3599: sub viewgrades_js {
 3600:     my ($request) = shift;
 3601: 
 3602:     my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
 3603:     &js_escape(\$alertmsg);
 3604:     $request->print(&Apache::lonhtmlcommon::scripttag(<<VIEWJAVASCRIPT));
 3605:    function writePoint(partid,weight,point) {
 3606: 	var radioButton = document.classgrade["RADVAL_"+partid];
 3607: 	var textbox = document.classgrade["TEXTVAL_"+partid];
 3608: 	if (point == "textval") {
 3609: 	    point = document.classgrade["TEXTVAL_"+partid].value;
 3610: 	    if (isNaN(point) || parseFloat(point) < 0) {
 3611: 		alert("$alertmsg"+parseFloat(point));
 3612: 		var resetbox = false;
 3613: 		for (var i=0; i<radioButton.length; i++) {
 3614: 		    if (radioButton[i].checked) {
 3615: 			textbox.value = i;
 3616: 			resetbox = true;
 3617: 		    }
 3618: 		}
 3619: 		if (!resetbox) {
 3620: 		    textbox.value = "";
 3621: 		}
 3622: 		return;
 3623: 	    }
 3624: 	    if (parseFloat(point) > parseFloat(weight)) {
 3625: 		var resp = confirm("You entered a value ("+parseFloat(point)+
 3626: 				   ") greater than the weight for the part. Accept?");
 3627: 		if (resp == false) {
 3628: 		    textbox.value = "";
 3629: 		    return;
 3630: 		}
 3631: 	    }
 3632: 	    for (var i=0; i<radioButton.length; i++) {
 3633: 		radioButton[i].checked=false;
 3634: 		if (parseFloat(point) == i) {
 3635: 		    radioButton[i].checked=true;
 3636: 		}
 3637: 	    }
 3638: 
 3639: 	} else {
 3640: 	    textbox.value = parseFloat(point);
 3641: 	}
 3642: 	for (i=0;i<document.classgrade.total.value;i++) {
 3643: 	    var user = document.classgrade["ctr"+i].value;
 3644: 	    user = user.replace(new RegExp(':', 'g'),"_");
 3645: 	    var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3646: 	    var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3647: 	    var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3648: 	    if (saveval != "correct") {
 3649: 		scorename.value = point;
 3650: 		if (selname[0].selected != true) {
 3651: 		    selname[0].selected = true;
 3652: 		}
 3653: 	    }
 3654: 	}
 3655: 	document.classgrade["SELVAL_"+partid][0].selected = true;
 3656:     }
 3657: 
 3658:     function writeRadText(partid,weight) {
 3659: 	var selval   = document.classgrade["SELVAL_"+partid];
 3660: 	var radioButton = document.classgrade["RADVAL_"+partid];
 3661:         var override = document.classgrade["FORCE_"+partid].checked;
 3662: 	var textbox = document.classgrade["TEXTVAL_"+partid];
 3663: 	if (selval[1].selected || selval[2].selected) {
 3664: 	    for (var i=0; i<radioButton.length; i++) {
 3665: 		radioButton[i].checked=false;
 3666: 
 3667: 	    }
 3668: 	    textbox.value = "";
 3669: 
 3670: 	    for (i=0;i<document.classgrade.total.value;i++) {
 3671: 		var user = document.classgrade["ctr"+i].value;
 3672: 		user = user.replace(new RegExp(':', 'g'),"_");
 3673: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3674: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3675: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3676: 		if ((saveval != "correct") || override) {
 3677: 		    scorename.value = "";
 3678: 		    if (selval[1].selected) {
 3679: 			selname[1].selected = true;
 3680: 		    } else {
 3681: 			selname[2].selected = true;
 3682: 			if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value)) 
 3683: 			{document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
 3684: 		    }
 3685: 		}
 3686: 	    }
 3687: 	} else {
 3688: 	    for (i=0;i<document.classgrade.total.value;i++) {
 3689: 		var user = document.classgrade["ctr"+i].value;
 3690: 		user = user.replace(new RegExp(':', 'g'),"_");
 3691: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3692: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3693: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3694: 		if ((saveval != "correct") || override) {
 3695: 		    scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
 3696: 		    selname[0].selected = true;
 3697: 		}
 3698: 	    }
 3699: 	}	    
 3700:     }
 3701: 
 3702:     function changeSelect(partid,user) {
 3703: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
 3704: 	var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
 3705: 	var point  = textbox.value;
 3706: 	var weight = document.classgrade["weight_"+partid].value;
 3707: 
 3708: 	if (isNaN(point) || parseFloat(point) < 0) {
 3709: 	    alert("$alertmsg"+parseFloat(point));
 3710: 	    textbox.value = "";
 3711: 	    return;
 3712: 	}
 3713: 	if (parseFloat(point) > parseFloat(weight)) {
 3714: 	    var resp = confirm("You entered a value ("+parseFloat(point)+
 3715: 			       ") greater than the weight of the part. Accept?");
 3716: 	    if (resp == false) {
 3717: 		textbox.value = "";
 3718: 		return;
 3719: 	    }
 3720: 	}
 3721: 	selval[0].selected = true;
 3722:     }
 3723: 
 3724:     function changeOneScore(partid,user) {
 3725: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
 3726: 	if (selval[1].selected || selval[2].selected) {
 3727: 	    document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
 3728: 	    if (selval[2].selected) {
 3729: 		document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
 3730: 	    }
 3731:         }
 3732:     }
 3733: 
 3734:     function resetEntry(numpart) {
 3735: 	for (ctpart=0;ctpart<numpart;ctpart++) {
 3736: 	    var partid = document.classgrade["partid_"+ctpart].value;
 3737: 	    var radioButton = document.classgrade["RADVAL_"+partid];
 3738: 	    var textbox = document.classgrade["TEXTVAL_"+partid];
 3739: 	    var selval  = document.classgrade["SELVAL_"+partid];
 3740: 	    for (var i=0; i<radioButton.length; i++) {
 3741: 		radioButton[i].checked=false;
 3742: 
 3743: 	    }
 3744: 	    textbox.value = "";
 3745: 	    selval[0].selected = true;
 3746: 
 3747: 	    for (i=0;i<document.classgrade.total.value;i++) {
 3748: 		var user = document.classgrade["ctr"+i].value;
 3749: 		user = user.replace(new RegExp(':', 'g'),"_");
 3750: 		var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
 3751: 		resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
 3752: 		var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
 3753: 		resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
 3754: 		var saveselval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
 3755: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
 3756: 		if (saveselval == "excused") {
 3757: 		    if (selname[1].selected == false) { selname[1].selected = true;}
 3758: 		} else {
 3759: 		    if (selname[0].selected == false) {selname[0].selected = true};
 3760: 		}
 3761: 	    }
 3762: 	}
 3763:     }
 3764: 
 3765: VIEWJAVASCRIPT
 3766: }
 3767: 
 3768: #--- show scores for a section or whole class w/ option to change/update a score
 3769: sub viewgrades {
 3770:     my ($request,$symb) = @_;
 3771:     my ($is_tool,$toolsymb);
 3772:     if ($symb =~ /ext\.tool$/) {
 3773:         $is_tool = 1;
 3774:         $toolsymb = $symb;
 3775:     }
 3776:     &viewgrades_js($request);
 3777: 
 3778:     #need to make sure we have the correct data for later EXT calls, 
 3779:     #thus invalidate the cache
 3780:     &Apache::lonnet::devalidatecourseresdata(
 3781:                  $env{'course.'.$env{'request.course.id'}.'.num'},
 3782:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
 3783:     &Apache::lonnet::clear_EXT_cache_status();
 3784: 
 3785:     my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
 3786: 
 3787:     #view individual student submission form - called using Javascript viewOneStudent
 3788:     $result.=&jscriptNform($symb);
 3789: 
 3790:     #beginning of class grading form
 3791:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
 3792:     $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
 3793: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 3794: 	'<input type="hidden" name="command" value="editgrades" />'."\n".
 3795: 	&build_section_inputs().
 3796: 	'<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
 3797: 
 3798:     #retrieve selected groups
 3799:     my (@groups,$group_display);
 3800:     @groups = &Apache::loncommon::get_env_multiple('form.group');
 3801:     if (grep(/^all$/,@groups)) {
 3802:         @groups = ('all');
 3803:     } elsif (grep(/^none$/,@groups)) {
 3804:         @groups = ('none');
 3805:     } elsif (@groups > 0) {
 3806:         $group_display = join(', ',@groups);
 3807:     }
 3808: 
 3809:     my ($common_header,$specific_header,@sections,$section_display);
 3810:     @sections = &Apache::loncommon::get_env_multiple('form.section');
 3811:     if (grep(/^all$/,@sections)) {
 3812:         @sections = ('all');
 3813:         if ($group_display) {
 3814:             $common_header = &mt('Assign Common Grade to Students in Group(s) [_1]',$group_display);
 3815:             $specific_header = &mt('Assign Grade to Specific Students in Group(s) [_1]',$group_display);
 3816:         } elsif (grep(/^none$/,@groups)) {
 3817:             $common_header = &mt('Assign Common Grade to Students not assigned to any groups');
 3818:             $specific_header = &mt('Assign Grade to Specific Students not assigned to any groups');
 3819:         } else {
 3820: 	    $common_header = &mt('Assign Common Grade to Class');
 3821:             $specific_header = &mt('Assign Grade to Specific Students in Class');
 3822:         }
 3823:     } elsif (grep(/^none$/,@sections)) {
 3824:         @sections = ('none');
 3825:         if ($group_display) {
 3826:             $common_header = &mt('Assign Common Grade to Students in no Section and in Group(s) [_1]',$group_display);
 3827:             $specific_header = &mt('Assign Grade to Specific Students in no Section and in Group(s)',$group_display);
 3828:         } elsif (grep(/^none$/,@groups)) {
 3829:             $common_header = &mt('Assign Common Grade to Students in no Section and in no Group');
 3830:             $specific_header = &mt('Assign Grade to Specific Students in no Section and in no Group');
 3831:         } else {
 3832:             $common_header = &mt('Assign Common Grade to Students in no Section');
 3833: 	    $specific_header = &mt('Assign Grade to Specific Students in no Section');
 3834:         }
 3835:     } else {
 3836:         $section_display = join (", ",@sections);
 3837:         if ($group_display) {
 3838:             $common_header = &mt('Assign Common Grade to Students in Section(s) [_1], and in Group(s) [_2]',
 3839:                                  $section_display,$group_display);
 3840:             $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1], and in Group(s) [_2]',
 3841:                                    $section_display,$group_display);
 3842:         } elsif (grep(/^none$/,@groups)) {
 3843:             $common_header = &mt('Assign Common Grade to Students in Section(s) [_1] and no Group',$section_display);
 3844:             $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1] and no Group',$section_display);
 3845:         } else {
 3846:             $common_header = &mt('Assign Common Grade to Students in Section(s) [_1]',$section_display);
 3847: 	    $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1]',$section_display);
 3848:         }
 3849:     }
 3850:     my %submit_types = &substatus_options();
 3851:     my $submission_status = $submit_types{$env{'form.submitonly'}};
 3852: 
 3853:     if ($env{'form.submitonly'} eq 'all') {
 3854:         $result.= '<h3>'.$common_header.'</h3>';
 3855:     } else {
 3856:         my $text;
 3857:         if ($is_tool) {
 3858:             $text = &mt('(transaction status: "[_1]")',$submission_status);
 3859:         } else {
 3860:             $text = &mt('(submission status: "[_1]")',$submission_status);
 3861:         }
 3862:         $result.= '<h3>'.$common_header.'&nbsp;'.$text.'</h3>';
 3863:     }
 3864:     $result .= &Apache::loncommon::start_data_table();
 3865:     #radio buttons/text box for assigning points for a section or class.
 3866:     #handles different parts of a problem
 3867:     my $res_error;
 3868:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
 3869:     if ($res_error) {
 3870:         return &navmap_errormsg();
 3871:     }
 3872:     my %weight = ();
 3873:     my $ctsparts = 0;
 3874:     my %seen = ();
 3875:     my @part_response_id;
 3876:     if ($is_tool) {
 3877:         @part_response_id = ([0,'']);
 3878:     } else {
 3879:         @part_response_id = &flatten_responseType($responseType);
 3880:     }
 3881:     foreach my $part_response_id (@part_response_id) {
 3882:     	my ($partid,$respid) = @{ $part_response_id };
 3883: 	my $part_resp = join('_',@{ $part_response_id });
 3884: 	next if $seen{$partid};
 3885: 	$seen{$partid}++;
 3886: #	my $handgrade=$$handgrade{$part_resp};
 3887: 	my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
 3888: 	$weight{$partid} = $wgt eq '' ? '1' : $wgt;
 3889: 
 3890: 	my $display_part=&get_display_part($partid,$symb);
 3891: 	my $radio.='<table border="0"><tr>';  
 3892: 	my $ctr = 0;
 3893: 	while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
 3894: 	    $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
 3895: 		'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
 3896: 		','.$ctr.')" />'.$ctr."</label></td>\n";
 3897: 	    $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
 3898: 	    $ctr++;
 3899: 	}
 3900: 	$radio.='</tr></table>';
 3901: 	my $line = '<input type="text" name="TEXTVAL_'.
 3902: 	    $partid.'" size="4" '.'onchange="javascript:writePoint(\''.
 3903: 		$partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
 3904: 	    $weight{$partid}.' '.&mt('(problem weight)').'</td>'."\n";
 3905:         $line.= '<td><b>'.&mt('Grade Status').':</b>'.
 3906:             '<select name="SELVAL_'.$partid.'" '.
 3907:             'onchange="javascript:writeRadText(\''.$partid.'\','.
 3908:                 $weight{$partid}.')"> '.
 3909: 	    '<option selected="selected"> </option>'.
 3910: 	    '<option value="excused">'.&mt('excused').'</option>'.
 3911: 	    '<option value="reset status">'.&mt('reset status').'</option>'.
 3912: 	    '</select></td>'.
 3913:             '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
 3914: 	$line.='<input type="hidden" name="partid_'.
 3915: 	    $ctsparts.'" value="'.$partid.'" />'."\n";
 3916: 	$line.='<input type="hidden" name="weight_'.
 3917: 	    $partid.'" value="'.$weight{$partid}.'" />'."\n";
 3918: 
 3919: 	$result.=
 3920: 	    &Apache::loncommon::start_data_table_row()."\n".
 3921: 	    '<td><b>'.&mt('Part:').'</b></td><td>'.$display_part.'</td><td><b>'.&mt('Points:').'</b></td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>'.
 3922: 	    &Apache::loncommon::end_data_table_row()."\n";
 3923: 	$ctsparts++;
 3924:     }
 3925:     $result.=&Apache::loncommon::end_data_table()."\n".
 3926: 	'<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
 3927:     $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
 3928: 	'onclick="javascript:resetEntry('.$ctsparts.');" />';
 3929: 
 3930:     #table listing all the students in a section/class
 3931:     #header of table
 3932:     if ($env{'form.submitonly'} eq 'all') {
 3933:         $result.= '<h3>'.$specific_header.'</h3>';
 3934:     } else {
 3935:         my $text;
 3936:         if ($is_tool) {
 3937:             $text = &mt('(transaction status: "[_1]")',$submission_status);
 3938:         } else {
 3939:             $text = &mt('(submission status: "[_1]")',$submission_status);
 3940:         }
 3941:         $result.= '<h3>'.$specific_header.'&nbsp;'.$text.'</h3>';
 3942:     }
 3943:     $result.= &Apache::loncommon::start_data_table().
 3944: 	      &Apache::loncommon::start_data_table_header_row().
 3945: 	      '<th>'.&mt('No.').'</th>'.
 3946: 	      '<th>'.&nameUserString('header')."</th>\n";
 3947:     my $partserror;
 3948:     my (@parts) = sort(&getpartlist($symb,\$partserror));
 3949:     if ($partserror) {
 3950:         return &navmap_errormsg();
 3951:     }
 3952:     my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
 3953:     my @partids = ();
 3954:     foreach my $part (@parts) {
 3955: 	my $display=&Apache::lonnet::metadata($url,$part.'.display',$toolsymb);
 3956:         my $narrowtext = &mt('Tries');
 3957: 	$display =~ s|^Number of Attempts|$narrowtext <br />|; # makes the column narrower
 3958: 	if  (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name',$toolsymb); }
 3959: 	my ($partid) = &split_part_type($part);
 3960:         push(@partids,$partid);
 3961: #
 3962: # FIXME: Looks like $display looks at English text
 3963: #
 3964: 	my $display_part=&get_display_part($partid,$symb);
 3965: 	if ($display =~ /^Partial Credit Factor/) {
 3966: 	    $result.='<th>'.
 3967: 		&mt('Score Part: [_1][_2](weight = [_3])',
 3968: 		    $display_part,'<br />',$weight{$partid}).'</th>'."\n";
 3969: 	    next;
 3970: 	    
 3971: 	} else {
 3972: 	    if ($display =~ /Problem Status/) {
 3973: 		my $grade_status_mt = &mt('Grade Status');
 3974: 		$display =~ s{Problem Status}{$grade_status_mt<br />};
 3975: 	    }
 3976: 	    my $part_mt = &mt('Part:');
 3977: 	    $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
 3978: 	}
 3979: 
 3980: 	$result.='<th>'.$display.'</th>'."\n";
 3981:     }
 3982:     $result.=&Apache::loncommon::end_data_table_header_row();
 3983: 
 3984:     my %last_resets = 
 3985: 	&get_last_resets($symb,$env{'request.course.id'},\@partids);
 3986: 
 3987:     #get info for each student
 3988:     #list all the students - with points and grade status
 3989:     my (undef,undef,$fullname) = &getclasslist(\@sections,'1',\@groups);
 3990:     my $ctr = 0;
 3991:     foreach (sort 
 3992: 	     {
 3993: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
 3994: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
 3995: 		 }
 3996: 		 return $a cmp $b;
 3997: 	     } (keys(%$fullname))) {
 3998: 	$result.=&viewstudentgrade($symb,$env{'request.course.id'},
 3999: 				   $_,$$fullname{$_},\@parts,\%weight,\$ctr,\%last_resets,$is_tool);
 4000:     }
 4001:     $result.=&Apache::loncommon::end_data_table();
 4002:     $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
 4003:     $result.='<input type="button" value="'.&mt('Save').'" '.
 4004: 	'onclick="javascript:submit();" target="_self" /></form>'."\n";
 4005:     if ($ctr == 0) {
 4006:         my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
 4007:         $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>'.
 4008:                 '<span class="LC_warning">';
 4009:         if ($env{'form.submitonly'} eq 'all') {
 4010:             if (grep(/^all$/,@sections)) {
 4011:                 if (grep(/^all$/,@groups)) {
 4012:                     $result .= &mt('There are no students with enrollment status [_1] to modify or grade.',
 4013:                                    $stu_status);
 4014:                 } elsif (grep(/^none$/,@groups)) {
 4015:                     $result .= &mt('There are no students with no group assigned and with enrollment status [_1] to modify or grade.',
 4016:                                    $stu_status); 
 4017:                 } else {
 4018:                     $result .= &mt('There are no students in group(s) [_1] with enrollment status [_2] to modify or grade.',
 4019:                                    $group_display,$stu_status);
 4020:                 }
 4021:             } elsif (grep(/^none$/,@sections)) {
 4022:                 if (grep(/^all$/,@groups)) {
 4023:                     $result .= &mt('There are no students in no section with enrollment status [_1] to modify or grade.',
 4024:                                    $stu_status);
 4025:                 } elsif (grep(/^none$/,@groups)) {
 4026:                     $result .= &mt('There are no students in no section and no group with enrollment status [_1] to modify or grade.',
 4027:                                    $stu_status);
 4028:                 } else {
 4029:                     $result .= &mt('There are no students in no section in group(s) [_1] with enrollment status [_2] to modify or grade.',
 4030:                                    $group_display,$stu_status);
 4031:                 }
 4032:             } else {
 4033:                 if (grep(/^all$/,@groups)) {
 4034:                     $result .= &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
 4035:                                    $section_display,$stu_status);
 4036:                 } elsif (grep(/^none$/,@groups)) {
 4037:                     $result .= &mt('There are no students in section(s) [_1] and no group with enrollment status [_2] to modify or grade.',
 4038:                                    $section_display,$stu_status);
 4039:                 } else {
 4040:                     $result .= &mt('There are no students in section(s) [_1] and group(s) [_2] with enrollment status [_3] to modify or grade.',
 4041:                                    $section_display,$group_display,$stu_status);
 4042:                 }
 4043:             }
 4044:         } else {
 4045:             if (grep(/^all$/,@sections)) {
 4046:                 if (grep(/^all$/,@groups)) {
 4047:                     $result .= &mt('There are no students with enrollment status [_1] and submission status "[_2]" to modify or grade.',
 4048:                                    $stu_status,$submission_status);
 4049:                 } elsif (grep(/^none$/,@groups)) {
 4050:                     $result .= &mt('There are no students with no group assigned with enrollment status [_1] and submission status "[_2]" to modify or grade.',
 4051:                                    $stu_status,$submission_status);
 4052:                 } else {
 4053:                     $result .= &mt('There are no students in group(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
 4054:                                    $group_display,$stu_status,$submission_status);
 4055:                 }
 4056:             } elsif (grep(/^none$/,@sections)) {
 4057:                 if (grep(/^all$/,@groups)) {
 4058:                     $result .= &mt('There are no students in no section with enrollment status [_1] and submission status "[_2]" to modify or grade.',
 4059:                                    $stu_status,$submission_status);
 4060:                 } elsif (grep(/^none$/,@groups)) {
 4061:                     $result .= &mt('There are no students in no section and no group with enrollment status [_1] and submission status "[_2]" to modify or grade.',
 4062:                                    $stu_status,$submission_status);
 4063:                 } else {
 4064:                     $result .= &mt('There are no students in no section in group(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
 4065:                                    $group_display,$stu_status,$submission_status);
 4066:                 }
 4067:             } else {
 4068:                 if (grep(/^all$/,@groups)) {
 4069: 	            $result .= &mt('There are no students in section(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
 4070: 	                           $section_display,$stu_status,$submission_status);
 4071:                 } elsif (grep(/^none$/,@groups)) {
 4072:                     $result .= &mt('There are no students in section(s) [_1] and no group with enrollment status [_2] and submission status "[_3]" to modify or grade.',
 4073:                                    $section_display,$stu_status,$submission_status);
 4074:                 } else {
 4075:                     $result .= &mt('There are no students in section(s) [_1] and group(s) [_2] with enrollment status [_3] and submission status "[_4]" to modify or grade.',
 4076:                                    $section_display,$group_display,$stu_status,$submission_status);
 4077:                 }
 4078:             }
 4079:         }
 4080: 	$result .= '</span><br />';
 4081:     }
 4082:     return $result;
 4083: }
 4084: 
 4085: #--- call by previous routine to display each student who satisfies submission filter. 
 4086: sub viewstudentgrade {
 4087:     my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets,$is_tool) = @_;
 4088:     my ($uname,$udom) = split(/:/,$student);
 4089:     my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
 4090:     my $submitonly = $env{'form.submitonly'};
 4091:     unless (($submitonly eq 'all') || ($submitonly eq 'queued')) {
 4092:         my %partstatus = ();
 4093:         if (ref($parts) eq 'ARRAY') {
 4094:             foreach my $apart (@{$parts}) {
 4095:                 my ($part,$type) = &split_part_type($apart);
 4096:                 my ($status,undef) = split(/_/,$record{"resource.$part.solved"},2);
 4097:                 $status = 'nothing' if ($status eq '');
 4098:                 $partstatus{$part}      = $status;
 4099:                 my $subkey = "resource.$part.submitted_by";
 4100:                 $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
 4101:             }
 4102:             my $submitted = 0;
 4103:             my $graded = 0;
 4104:             my $incorrect = 0;
 4105:             foreach my $key (keys(%partstatus)) {
 4106:                 $submitted = 1 if ($partstatus{$key} ne 'nothing');
 4107:                 $graded = 1 if ($partstatus{$key} =~ /^ungraded/);
 4108:                 $incorrect = 1 if ($partstatus{$key} =~ /^incorrect/);
 4109: 
 4110:                 my $partid = (split(/\./,$key))[1];
 4111:                 if ($partstatus{'resource.'.$partid.'.'.$key.'.submitted_by'} ne '') {
 4112:                     $submitted = 0;
 4113:                 }
 4114:             }
 4115:             return if (!$submitted && ($submitonly eq 'yes' ||
 4116:                                        $submitonly eq 'incorrect' ||
 4117:                                        $submitonly eq 'graded'));
 4118:             return if (!$graded && ($submitonly eq 'graded'));
 4119:             return if (!$incorrect && $submitonly eq 'incorrect');
 4120:         }
 4121:     }
 4122:     if ($submitonly eq 'queued') {
 4123:         my ($cdom,$cnum) = split(/_/,$courseid);
 4124:         my %queue_status =
 4125:             &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
 4126:                                                     $udom,$uname);
 4127:         return if (!defined($queue_status{'gradingqueue'}));
 4128:     }
 4129:     $$ctr++;
 4130:     my %aggregates = ();
 4131:     my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
 4132: 	'<input type="hidden" name="ctr'.($$ctr-1).'" value="'.$student.'" />'.
 4133: 	"\n".$$ctr.'&nbsp;</td><td>&nbsp;'.
 4134: 	'<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
 4135: 	'\');" target="_self">'.$fullname.'</a> '.
 4136: 	'<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
 4137:     $student=~s/:/_/; # colon doen't work in javascript for names
 4138:     foreach my $apart (@$parts) {
 4139: 	my ($part,$type) = &split_part_type($apart);
 4140: 	my $score=$record{"resource.$part.$type"};
 4141:         $result.='<td align="center">';
 4142:         my ($aggtries,$totaltries);
 4143:         unless (exists($aggregates{$part})) {
 4144: 	    $totaltries = $record{'resource.'.$part.'.tries'};
 4145: 	    $aggtries = $totaltries;
 4146:             if ($$last_resets{$part}) {  
 4147:                 $aggtries = &get_num_tries(\%record,$$last_resets{$part},
 4148: 					   $part);
 4149:             }
 4150:             $result.='<input type="hidden" name="'.
 4151:                 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
 4152:             $result.='<input type="hidden" name="'.
 4153:                 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
 4154:             $aggregates{$part} = 1;
 4155:         }
 4156: 	if ($type eq 'awarded') {
 4157: 	    my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
 4158: 	    $result.='<input type="hidden" name="'.
 4159: 		'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
 4160: 	    $result.='<input type="text" name="'.
 4161: 		'GD_'.$student.'_'.$part.'_awarded" '.
 4162:                 'onchange="javascript:changeSelect(\''.$part.'\',\''.$student.
 4163: 		'\')" value="'.$pts.'" size="4" /></td>'."\n";
 4164: 	} elsif ($type eq 'solved') {
 4165: 	    my ($status,$foo)=split(/_/,$score,2);
 4166: 	    $status = 'nothing' if ($status eq '');
 4167: 	    $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
 4168: 		$part.'_solved_s" value="'.$status.'" />'."\n";
 4169: 	    $result.='&nbsp;<select name="'.
 4170: 		'GD_'.$student.'_'.$part.'_solved" '.
 4171:                 'onchange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
 4172: 	    $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>' 
 4173: 		: '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
 4174: 	    $result.='<option value="reset status">'.&mt('reset status').'</option>';
 4175: 	    $result.="</select>&nbsp;</td>\n";
 4176: 	} else {
 4177: 	    $result.='<input type="hidden" name="'.
 4178: 		'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
 4179: 		    "\n";
 4180: 	    $result.='<input type="text" name="'.
 4181: 		'GD_'.$student.'_'.$part.'_'.$type.'" '.
 4182: 		'value="'.$score.'" size="4" /></td>'."\n";
 4183: 	}
 4184:     }
 4185:     $result.=&Apache::loncommon::end_data_table_row();
 4186:     return $result;
 4187: }
 4188: 
 4189: #--- change scores for all the students in a section/class
 4190: #    record does not get update if unchanged
 4191: sub editgrades {
 4192:     my ($request,$symb) = @_;
 4193:     my $toolsymb;
 4194:     if ($symb =~ /ext\.tool$/) {
 4195:         $toolsymb = $symb;
 4196:     }
 4197: 
 4198:     my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
 4199:     my $title='<h2>'.&mt('Current Grade Status').'</h2>';
 4200:     $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
 4201: 
 4202:     my $result= &Apache::loncommon::start_data_table().
 4203: 	&Apache::loncommon::start_data_table_header_row().
 4204: 	'<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
 4205: 	'<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
 4206:     my %scoreptr = (
 4207: 		    'correct'  =>'correct_by_override',
 4208: 		    'incorrect'=>'incorrect_by_override',
 4209: 		    'excused'  =>'excused',
 4210: 		    'ungraded' =>'ungraded_attempted',
 4211:                     'credited' =>'credit_attempted',
 4212: 		    'nothing'  => '',
 4213: 		    );
 4214:     my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
 4215: 
 4216:     my (@partid);
 4217:     my %weight = ();
 4218:     my %columns = ();
 4219:     my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
 4220: 
 4221:     my $partserror;
 4222:     my (@parts) = sort(&getpartlist($symb,\$partserror));
 4223:     if ($partserror) {
 4224:         return &navmap_errormsg();
 4225:     }
 4226:     my $header;
 4227:     while ($ctr < $env{'form.totalparts'}) {
 4228: 	my $partid = $env{'form.partid_'.$ctr};
 4229: 	push(@partid,$partid);
 4230: 	$weight{$partid} = $env{'form.weight_'.$partid};
 4231: 	$ctr++;
 4232:     }
 4233:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 4234:     my $totcolspan = 0;
 4235:     foreach my $partid (@partid) {
 4236: 	$header .= '<th align="center">'.&mt('Old Score').'</th>'.
 4237: 	    '<th align="center">'.&mt('New Score').'</th>';
 4238: 	$columns{$partid}=2;
 4239: 	foreach my $stores (@parts) {
 4240: 	    my ($part,$type) = &split_part_type($stores);
 4241: 	    if ($part !~ m/^\Q$partid\E/) { next;}
 4242: 	    if ($type eq 'awarded' || $type eq 'solved') { next; }
 4243: 	    my $display=&Apache::lonnet::metadata($url,$stores.'.display',$toolsymb);
 4244: 	    $display =~ s/\[Part: \Q$part\E\]//;
 4245:             my $narrowtext = &mt('Tries');
 4246: 	    $display =~ s/Number of Attempts/$narrowtext/;
 4247: 	    $header .= '<th align="center">'.&mt('Old').' '.$display.'</th>'.
 4248: 		'<th align="center">'.&mt('New').' '.$display.'</th>';
 4249: 	    $columns{$partid}+=2;
 4250: 	}
 4251:         $totcolspan += $columns{$partid};
 4252:     }
 4253:     foreach my $partid (@partid) {
 4254: 	my $display_part=&get_display_part($partid,$symb);
 4255: 	$result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
 4256: 	    &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
 4257: 	    '</th>';
 4258: 
 4259:     }
 4260:     $result .= &Apache::loncommon::end_data_table_header_row().
 4261: 	&Apache::loncommon::start_data_table_header_row().
 4262: 	$header.
 4263: 	&Apache::loncommon::end_data_table_header_row();
 4264:     my @noupdate;
 4265:     my ($updateCtr,$noupdateCtr) = (1,1);
 4266:     for ($i=0; $i<$env{'form.total'}; $i++) {
 4267: 	my $user = $env{'form.ctr'.$i};
 4268: 	my ($uname,$udom)=split(/:/,$user);
 4269: 	my %newrecord;
 4270: 	my $updateflag = 0;
 4271: 	my $usec=$classlist->{"$uname:$udom"}[5];
 4272: 	my $canmodify = &canmodify($usec);
 4273: 	my $line = '<td'.($canmodify?'':' colspan="2"').'>'.
 4274: 		   &nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
 4275: 	if (!$canmodify) {
 4276: 	    push(@noupdate,
 4277: 		 $line."<td colspan=\"$totcolspan\"><span class=\"LC_warning\">".
 4278: 		 &mt('Not allowed to modify student')."</span></td>");
 4279: 	    next;
 4280: 	}
 4281:         my %aggregate = ();
 4282:         my $aggregateflag = 0;
 4283: 	$user=~s/:/_/; # colon doen't work in javascript for names
 4284: 	foreach (@partid) {
 4285: 	    my $old_aw    = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
 4286: 	    my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
 4287: 	    my $old_part  = $old_aw eq '' ? '' : $old_part_pcr;
 4288: 	    my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
 4289: 	    my $awarded   = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
 4290: 	    my $pcr       = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
 4291: 	    my $partial   = $awarded eq '' ? '' : $pcr;
 4292: 	    my $score;
 4293: 	    if ($partial eq '') {
 4294: 		$score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
 4295: 	    } elsif ($partial > 0) {
 4296: 		$score = 'correct_by_override';
 4297: 	    } elsif ($partial == 0) {
 4298: 		$score = 'incorrect_by_override';
 4299: 	    }
 4300: 	    my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
 4301: 	    $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
 4302: 
 4303: 	    $newrecord{'resource.'.$_.'.regrader'}=
 4304: 		"$env{'user.name'}:$env{'user.domain'}";
 4305: 	    if ($dropMenu eq 'reset status' &&
 4306: 		$old_score ne '') { # ignore if no previous attempts => nothing to reset
 4307: 		$newrecord{'resource.'.$_.'.tries'} = '';
 4308: 		$newrecord{'resource.'.$_.'.solved'} = '';
 4309: 		$newrecord{'resource.'.$_.'.award'} = '';
 4310: 		$newrecord{'resource.'.$_.'.awarded'} = '';
 4311: 		$updateflag = 1;
 4312:                 if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
 4313:                     my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
 4314:                     my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
 4315:                     my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
 4316:                     &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
 4317:                     $aggregateflag = 1;
 4318:                 }
 4319: 	    } elsif (!($old_part eq $partial && $old_score eq $score)) {
 4320: 		$updateflag = 1;
 4321: 		$newrecord{'resource.'.$_.'.awarded'}  = $partial if $partial ne '';
 4322: 		$newrecord{'resource.'.$_.'.solved'}   = $score;
 4323: 		$rec_update++;
 4324: 	    }
 4325: 
 4326: 	    $line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
 4327: 		'<td align="center">'.$awarded.
 4328: 		($score eq 'excused' ? $score : '').'&nbsp;</td>';
 4329: 
 4330: 
 4331: 	    my $partid=$_;
 4332: 	    foreach my $stores (@parts) {
 4333: 		my ($part,$type) = &split_part_type($stores);
 4334: 		if ($part !~ m/^\Q$partid\E/) { next;}
 4335: 		if ($type eq 'awarded' || $type eq 'solved') { next; }
 4336: 		my $old_aw    = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
 4337: 		my $awarded   = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
 4338: 		if ($awarded ne '' && $awarded ne $old_aw) {
 4339: 		    $newrecord{'resource.'.$part.'.'.$type}= $awarded;
 4340: 		    $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
 4341: 		    $updateflag=1;
 4342: 		}
 4343: 		$line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
 4344: 		    '<td align="center">'.$awarded.'&nbsp;</td>';
 4345: 	    }
 4346: 	}
 4347: 	$line.="\n";
 4348: 
 4349: 	my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 4350: 	my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 4351: 
 4352: 	if ($updateflag) {
 4353: 	    $count++;
 4354: 	    &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
 4355: 				    $udom,$uname);
 4356: 
 4357: 	    if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
 4358: 					      $cnum,$udom,$uname)) {
 4359: 		# need to figure out if should be in queue.
 4360: 		my %record =  
 4361: 		    &Apache::lonnet::restore($symb,$env{'request.course.id'},
 4362: 					     $udom,$uname);
 4363: 		my $all_graded = 1;
 4364: 		my $none_graded = 1;
 4365: 		foreach my $part (@parts) {
 4366: 		    if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
 4367: 			$all_graded = 0;
 4368: 		    } else {
 4369: 			$none_graded = 0;
 4370: 		    }
 4371: 		}
 4372: 
 4373: 		if ($all_graded || $none_graded) {
 4374: 		    &Apache::bridgetask::remove_from_queue('gradingqueue',
 4375: 							   $symb,$cdom,$cnum,
 4376: 							   $udom,$uname);
 4377: 		}
 4378: 	    }
 4379: 
 4380: 	    $result.=&Apache::loncommon::start_data_table_row().
 4381: 		'<td align="right">&nbsp;'.$updateCtr.'&nbsp;</td>'.$line.
 4382: 		&Apache::loncommon::end_data_table_row();
 4383: 	    $updateCtr++;
 4384: 	} else {
 4385: 	    push(@noupdate,
 4386: 		 '<td align="right">&nbsp;'.$noupdateCtr.'&nbsp;</td>'.$line);
 4387: 	    $noupdateCtr++;
 4388: 	}
 4389:         if ($aggregateflag) {
 4390:             &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
 4391: 				  $cdom,$cnum);
 4392:         }
 4393:     }
 4394:     if (@noupdate) {
 4395:         my $numcols=$totcolspan+2;
 4396: 	$result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
 4397: 	    '<td align="center" colspan="'.$numcols.'">'.
 4398: 	    &mt('No Changes Occurred For the Students Below').
 4399: 	    '</td>'.
 4400: 	    &Apache::loncommon::end_data_table_row();
 4401: 	foreach my $line (@noupdate) {
 4402: 	    $result.=
 4403: 		&Apache::loncommon::start_data_table_row().
 4404: 		$line.
 4405: 		&Apache::loncommon::end_data_table_row();
 4406: 	}
 4407:     }
 4408:     $result .= &Apache::loncommon::end_data_table();
 4409:     my $msg = '<p><b>'.
 4410: 	&mt('Number of records updated = [_1] for [quant,_2,student].',
 4411: 	    $rec_update,$count).'</b><br />'.
 4412: 	'<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
 4413: 	'</b></p>';
 4414:     return $title.$msg.$result;
 4415: }
 4416: 
 4417: sub split_part_type {
 4418:     my ($partstr) = @_;
 4419:     my ($temp,@allparts)=split(/_/,$partstr);
 4420:     my $type=pop(@allparts);
 4421:     my $part=join('_',@allparts);
 4422:     return ($part,$type);
 4423: }
 4424: 
 4425: #------------- end of section for handling grading by section/class ---------
 4426: #
 4427: #----------------------------------------------------------------------------
 4428: 
 4429: 
 4430: #----------------------------------------------------------------------------
 4431: #
 4432: #-------------------------- Next few routines handles grading by csv upload
 4433: #
 4434: #--- Javascript to handle csv upload
 4435: sub csvupload_javascript_reverse_associate {
 4436:     my $error1=&mt('You need to specify the username, the student/employee ID, or the clicker ID');
 4437:     my $error2=&mt('You need to specify at least one grading field');
 4438:   &js_escape(\$error1);
 4439:   &js_escape(\$error2);
 4440:   return(<<ENDPICK);
 4441:   function verify(vf) {
 4442:     var foundsomething=0;
 4443:     var founduname=0;
 4444:     var foundID=0;
 4445:     var foundclicker=0;
 4446:     for (i=0;i<=vf.nfields.value;i++) {
 4447:       tw=eval('vf.f'+i+'.selectedIndex');
 4448:       if (i==0 && tw!=0) { foundID=1; }
 4449:       if (i==1 && tw!=0) { founduname=1; }
 4450:       if (i==2 && tw!=0) { foundclicker=1; }
 4451:       if (i!=0 && i!=1 && i!=2 && i!=3 && tw!=0) { foundsomething=1; }
 4452:     }
 4453:     if (founduname==0 && foundID==0 && foundclicker==0) {
 4454: 	alert('$error1');
 4455: 	return;
 4456:     }
 4457:     if (foundsomething==0) {
 4458: 	alert('$error2');
 4459: 	return;
 4460:     }
 4461:     vf.submit();
 4462:   }
 4463:   function flip(vf,tf) {
 4464:     var nw=eval('vf.f'+tf+'.selectedIndex');
 4465:     var i;
 4466:     for (i=0;i<=vf.nfields.value;i++) {
 4467:       //can not pick the same destination field for both name and domain
 4468:       if (((i ==0)||(i ==1)) && 
 4469:           ((tf==0)||(tf==1)) && 
 4470:           (i!=tf) &&
 4471:           (eval('vf.f'+i+'.selectedIndex')==nw)) {
 4472:         eval('vf.f'+i+'.selectedIndex=0;')
 4473:       }
 4474:     }
 4475:   }
 4476: ENDPICK
 4477: }
 4478: 
 4479: sub csvupload_javascript_forward_associate {
 4480:     my $error1=&mt('You need to specify the username, the student/employee ID, or the clicker ID');
 4481:     my $error2=&mt('You need to specify at least one grading field');
 4482:   &js_escape(\$error1);
 4483:   &js_escape(\$error2);
 4484:   return(<<ENDPICK);
 4485:   function verify(vf) {
 4486:     var foundsomething=0;
 4487:     var founduname=0;
 4488:     var foundID=0;
 4489:     var foundclicker=0;
 4490:     for (i=0;i<=vf.nfields.value;i++) {
 4491:       tw=eval('vf.f'+i+'.selectedIndex');
 4492:       if (tw==1) { foundID=1; }
 4493:       if (tw==2) { founduname=1; }
 4494:       if (tw==3) { foundclicker=1; }
 4495:       if (tw>4) { foundsomething=1; }
 4496:     }
 4497:     if (founduname==0 && foundID==0 && Æ’oundclicker==0) {
 4498: 	alert('$error1');
 4499: 	return;
 4500:     }
 4501:     if (foundsomething==0) {
 4502: 	alert('$error2');
 4503: 	return;
 4504:     }
 4505:     vf.submit();
 4506:   }
 4507:   function flip(vf,tf) {
 4508:     var nw=eval('vf.f'+tf+'.selectedIndex');
 4509:     var i;
 4510:     //can not pick the same destination field twice
 4511:     for (i=0;i<=vf.nfields.value;i++) {
 4512:       if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
 4513:         eval('vf.f'+i+'.selectedIndex=0;')
 4514:       }
 4515:     }
 4516:   }
 4517: ENDPICK
 4518: }
 4519: 
 4520: sub csvuploadmap_header {
 4521:     my ($request,$symb,$datatoken,$distotal)= @_;
 4522:     my $javascript;
 4523:     if ($env{'form.upfile_associate'} eq 'reverse') {
 4524: 	$javascript=&csvupload_javascript_reverse_associate();
 4525:     } else {
 4526: 	$javascript=&csvupload_javascript_forward_associate();
 4527:     }
 4528: 
 4529:     $symb = &Apache::lonenc::check_encrypt($symb);
 4530:     $request->print('<form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">'.
 4531:                     &mt('Total number of records found in file: [_1]',$distotal).'<hr />'.
 4532:                     &mt('Associate entries from the uploaded file with as many fields as you can.'));
 4533:     my $reverse=&mt("Reverse Association");
 4534:     $request->print(<<ENDPICK);
 4535: <br />
 4536: <input type="button" value="$reverse" onclick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
 4537: <input type="hidden" name="associate"  value="" />
 4538: <input type="hidden" name="phase"      value="three" />
 4539: <input type="hidden" name="datatoken"  value="$datatoken" />
 4540: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
 4541: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
 4542: <input type="hidden" name="upfile_associate" 
 4543:                                        value="$env{'form.upfile_associate'}" />
 4544: <input type="hidden" name="symb"       value="$symb" />
 4545: <input type="hidden" name="command"    value="csvuploadoptions" />
 4546: <hr />
 4547: ENDPICK
 4548:     $request->print(&Apache::lonhtmlcommon::scripttag($javascript));
 4549:     return '';
 4550: 
 4551: }
 4552: 
 4553: sub csvupload_fields {
 4554:     my ($symb,$errorref) = @_;
 4555:     my $toolsymb;
 4556:     if ($symb =~ /ext\.tool$/) {
 4557:         $toolsymb = $symb;
 4558:     }
 4559:     my (@parts) = &getpartlist($symb,$errorref);
 4560:     if (ref($errorref)) {
 4561:         if ($$errorref) {
 4562:             return;
 4563:         }
 4564:     }
 4565: 
 4566:     my @fields=(['ID','Student/Employee ID'],
 4567: 		['username','Student Username'],
 4568: 		['clicker','Clicker ID'],
 4569: 		['domain','Student Domain']);
 4570:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
 4571:     foreach my $part (sort(@parts)) {
 4572: 	my @datum;
 4573: 	my $display=&Apache::lonnet::metadata($url,$part.'.display',$toolsymb);
 4574: 	my $name=$part;
 4575: 	if (!$display) { $display = $name; }
 4576: 	@datum=($name,$display);
 4577: 	if ($name=~/^stores_(.*)_awarded/) {
 4578: 	    push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
 4579: 	}
 4580: 	push(@fields,\@datum);
 4581:     }
 4582:     return (@fields);
 4583: }
 4584: 
 4585: sub csvuploadmap_footer {
 4586:     my ($request,$i,$keyfields) =@_;
 4587:     my $buttontext = &mt('Assign Grades');
 4588:     $request->print(<<ENDPICK);
 4589: </table>
 4590: <input type="hidden" name="nfields" value="$i" />
 4591: <input type="hidden" name="keyfields" value="$keyfields" />
 4592: <input type="button" onclick="javascript:verify(this.form)" value="$buttontext" /><br />
 4593: </form>
 4594: ENDPICK
 4595: }
 4596: 
 4597: sub checkforfile_js {
 4598:     my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
 4599:     &js_escape(\$alertmsg);
 4600:     my $result = &Apache::lonhtmlcommon::scripttag(<<CSVFORMJS);
 4601:     function checkUpload(formname) {
 4602: 	if (formname.upfile.value == "") {
 4603: 	    alert("$alertmsg");
 4604: 	    return false;
 4605: 	}
 4606: 	formname.submit();
 4607:     }
 4608: CSVFORMJS
 4609:     return $result;
 4610: }
 4611: 
 4612: sub upcsvScores_form {
 4613:     my ($request,$symb) = @_;
 4614:     if (!$symb) {return '';}
 4615:     my $result=&checkforfile_js();
 4616:     $result.=&Apache::loncommon::start_data_table().
 4617:              &Apache::loncommon::start_data_table_header_row().
 4618:              '<th>'.&mt('Specify a file containing the class scores for current resource.').'</th>'.
 4619:              &Apache::loncommon::end_data_table_header_row().
 4620:              &Apache::loncommon::start_data_table_row().'<td>';
 4621:     my $upload=&mt("Upload Scores");
 4622:     my $upfile_select=&Apache::loncommon::upfile_select_html();
 4623:     my $ignore=&mt('Ignore First Line');
 4624:     $symb = &Apache::lonenc::check_encrypt($symb);
 4625:     $result.=<<ENDUPFORM;
 4626: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
 4627: <input type="hidden" name="symb" value="$symb" />
 4628: <input type="hidden" name="command" value="csvuploadmap" />
 4629: $upfile_select
 4630: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
 4631: </form>
 4632: ENDUPFORM
 4633:     $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
 4634:                            &mt("How do I create a CSV file from a spreadsheet")).
 4635:              '</td>'.
 4636:             &Apache::loncommon::end_data_table_row().
 4637:             &Apache::loncommon::end_data_table();
 4638:     return $result;
 4639: }
 4640: 
 4641: 
 4642: sub csvuploadmap {
 4643:     my ($request,$symb)= @_;
 4644:     if (!$symb) {return '';}
 4645: 
 4646:     my $datatoken;
 4647:     if (!$env{'form.datatoken'}) {
 4648: 	$datatoken=&Apache::loncommon::upfile_store($request);
 4649:     } else {
 4650: 	$datatoken=&Apache::loncommon::valid_datatoken($env{'form.datatoken'});
 4651:         if ($datatoken ne '') {
 4652: 	    &Apache::loncommon::load_tmp_file($request,$datatoken);
 4653:         }
 4654:     }
 4655:     my @records=&Apache::loncommon::upfile_record_sep();
 4656:     &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
 4657:     my ($i,$keyfields);
 4658:     if (@records) {
 4659:         my $fieldserror;
 4660: 	my @fields=&csvupload_fields($symb,\$fieldserror);
 4661:         if ($fieldserror) {
 4662:             $request->print(&navmap_errormsg());
 4663:             return;
 4664:         }
 4665: 	if ($env{'form.upfile_associate'} eq 'reverse') {	
 4666: 	    &Apache::loncommon::csv_print_samples($request,\@records);
 4667: 	    $i=&Apache::loncommon::csv_print_select_table($request,\@records,
 4668: 							  \@fields);
 4669: 	    foreach (@fields) { $keyfields.=$_->[0].','; }
 4670: 	    chop($keyfields);
 4671: 	} else {
 4672: 	    unshift(@fields,['none','']);
 4673: 	    $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
 4674: 							    \@fields);
 4675:             foreach my $rec (@records) {
 4676:                 my %temp = &Apache::loncommon::record_sep($rec);
 4677:                 if (%temp) {
 4678:                     $keyfields=join(',',sort(keys(%temp)));
 4679:                     last;
 4680:                 }
 4681:             }
 4682: 	}
 4683:     }
 4684:     &csvuploadmap_footer($request,$i,$keyfields);
 4685: 
 4686:     return '';
 4687: }
 4688: 
 4689: sub csvuploadoptions {
 4690:     my ($request,$symb)= @_;
 4691:     my $overwrite=&mt('Overwrite any existing score');
 4692:     $request->print(<<ENDPICK);
 4693: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
 4694: <input type="hidden" name="command"    value="csvuploadassign" />
 4695: <p>
 4696: <label>
 4697:    <input type="checkbox" name="overwite_scores" checked="checked" />
 4698:    $overwrite
 4699: </label>
 4700: </p>
 4701: ENDPICK
 4702:     my %fields=&get_fields();
 4703:     if (!defined($fields{'domain'})) {
 4704: 	my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
 4705: 	$request->print("\n<p>".&mt('Users are in domain: [_1]',$domform)."</p>\n");
 4706:     }
 4707:     foreach my $key (sort(keys(%env))) {
 4708: 	if ($key !~ /^form\.(.*)$/) { next; }
 4709: 	my $cleankey=$1;
 4710: 	if ($cleankey eq 'command') { next; }
 4711: 	$request->print('<input type="hidden" name="'.$cleankey.
 4712: 			'"  value="'.$env{$key}.'" />'."\n");
 4713:     }
 4714:     # FIXME do a check for any duplicated user ids...
 4715:     # FIXME do a check for any invalid user ids?...
 4716:     $request->print('<input type="submit" value="'.&mt('Assign Grades').'" /><br />
 4717: <hr /></form>'."\n");
 4718:     return '';
 4719: }
 4720: 
 4721: sub get_fields {
 4722:     my %fields;
 4723:     my @keyfields = split(/\,/,$env{'form.keyfields'});
 4724:     for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
 4725: 	if ($env{'form.upfile_associate'} eq 'reverse') {
 4726: 	    if ($env{'form.f'.$i} ne 'none') {
 4727: 		$fields{$keyfields[$i]}=$env{'form.f'.$i};
 4728: 	    }
 4729: 	} else {
 4730: 	    if ($env{'form.f'.$i} ne 'none') {
 4731: 		$fields{$env{'form.f'.$i}}=$keyfields[$i];
 4732: 	    }
 4733: 	}
 4734:     }
 4735:     return %fields;
 4736: }
 4737: 
 4738: sub csvuploadassign {
 4739:     my ($request,$symb)= @_;
 4740:     if (!$symb) {return '';}
 4741:     my $error_msg = '';
 4742:     my $datatoken = &Apache::loncommon::valid_datatoken($env{'form.datatoken'});
 4743:     if ($datatoken ne '') { 
 4744:         &Apache::loncommon::load_tmp_file($request,$datatoken);
 4745:     }
 4746:     my @gradedata = &Apache::loncommon::upfile_record_sep();
 4747:     my %fields=&get_fields();
 4748:     my $courseid=$env{'request.course.id'};
 4749:     my ($classlist) = &getclasslist('all',0);
 4750:     my @notallowed;
 4751:     my @skipped;
 4752:     my @warnings;
 4753:     my $countdone=0;
 4754:     foreach my $grade (@gradedata) {
 4755: 	my %entries=&Apache::loncommon::record_sep($grade);
 4756: 	my $domain;
 4757: 	if ($entries{$fields{'domain'}}) {
 4758: 	    $domain=$entries{$fields{'domain'}};
 4759: 	} else {
 4760: 	    $domain=$env{'form.default_domain'};
 4761: 	}
 4762: 	$domain=~s/\s//g;
 4763: 	my $username=$entries{$fields{'username'}};
 4764: 	$username=~s/\s//g;
 4765: 	if (!$username) {
 4766: 	    my $id=$entries{$fields{'ID'}};
 4767: 	    $id=~s/\s//g;
 4768:             if ($id ne '') {
 4769: 	        my %ids=&Apache::lonnet::idget($domain,[$id]);
 4770: 	        $username=$ids{$id};
 4771:             } else {
 4772:                 if ($entries{$fields{'clicker'}}) {
 4773:                     my $clicker = $entries{$fields{'clicker'}};
 4774:                     $clicker=~s/\s//g;
 4775:                     if ($clicker ne '') {
 4776:                         my %clickers = &Apache::lonnet::idget($domain,[$clicker],'clickers');
 4777:                         if ($clickers{$clicker} ne '') {  
 4778:                             my $match = 0;
 4779:                             my @inclass;
 4780:                             foreach my $poss (split(/,/,$clickers{$clicker})) {
 4781:                                 if (exists($$classlist{"$poss:$domain"})) {
 4782:                                     $username = $poss;
 4783:                                     push(@inclass,$poss);
 4784:                                     $match ++;
 4785:                                     
 4786:                                 }
 4787:                             }
 4788:                             if ($match > 1) {
 4789:                                 undef($username); 
 4790:                                 $request->print('<p class="LC_warning">'.
 4791:                                                 &mt('Score not saved for clicker: [_1] (matched multiple usernames: [_2])',
 4792:                                                 $clicker,join(', ',@inclass)).'</p>');
 4793:                             }
 4794:                         }
 4795:                     }
 4796:                 }
 4797:             }
 4798: 	}
 4799: 	if (!exists($$classlist{"$username:$domain"})) {
 4800: 	    my $id=$entries{$fields{'ID'}};
 4801: 	    $id=~s/\s//g;
 4802:             my $clicker = $entries{$fields{'clicker'}};
 4803:             $clicker=~s/\s//g;
 4804:             if ($clicker) {
 4805:                 push(@skipped,"$clicker:$domain");
 4806: 	    } elsif ($id) {
 4807: 		push(@skipped,"$id:$domain");
 4808: 	    } else {
 4809: 		push(@skipped,"$username:$domain");
 4810: 	    }
 4811: 	    next;
 4812: 	}
 4813: 	my $usec=$classlist->{"$username:$domain"}[5];
 4814: 	if (!&canmodify($usec)) {
 4815: 	    push(@notallowed,"$username:$domain");
 4816: 	    next;
 4817: 	}
 4818: 	my %points;
 4819: 	my %grades;
 4820: 	foreach my $dest (keys(%fields)) {
 4821: 	    if ($dest eq 'ID' || $dest eq 'username' ||
 4822: 		$dest eq 'domain') { next; }
 4823: 	    if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
 4824: 	    if ($dest=~/stores_(.*)_points/) {
 4825: 		my $part=$1;
 4826: 		my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
 4827: 					      $symb,$domain,$username);
 4828:                 if ($wgt) {
 4829:                     $entries{$fields{$dest}}=~s/\s//g;
 4830:                     my $pcr=$entries{$fields{$dest}} / $wgt;
 4831:                     my $award=($pcr == 0) ? 'incorrect_by_override'
 4832:                                           : 'correct_by_override';
 4833:                     if ($pcr>1) {
 4834:                        push(@warnings,&mt("[_1]: point value larger than weight","$username:$domain"));
 4835:                     }
 4836:                     $grades{"resource.$part.awarded"}=$pcr;
 4837:                     $grades{"resource.$part.solved"}=$award;
 4838:                     $points{$part}=1;
 4839:                 } else {
 4840:                     $error_msg = "<br />" .
 4841:                         &mt("Some point values were assigned"
 4842:                             ." for problems with a weight "
 4843:                             ."of zero. These values were "
 4844:                             ."ignored.");
 4845:                 }
 4846: 	    } else {
 4847: 		if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
 4848: 		if ($dest=~/stores_(.*)_solved/)  { if ($points{$1}) {next;} }
 4849: 		my $store_key=$dest;
 4850: 		$store_key=~s/^stores/resource/;
 4851: 		$store_key=~s/_/\./g;
 4852: 		$grades{$store_key}=$entries{$fields{$dest}};
 4853: 	    }
 4854: 	}
 4855: 	if (! %grades) { 
 4856:            push(@skipped,&mt("[_1]: no data to save","$username:$domain")); 
 4857:         } else {
 4858: 	   $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
 4859: 	   my $result=&Apache::lonnet::cstore(\%grades,$symb,
 4860: 					   $env{'request.course.id'},
 4861: 					   $domain,$username);
 4862: 	   if ($result eq 'ok') {
 4863: # Successfully stored
 4864: 	      $request->print('.');
 4865: # Remove from grading queue
 4866:               &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,
 4867:                                              $env{'course.'.$env{'request.course.id'}.'.domain'},
 4868:                                              $env{'course.'.$env{'request.course.id'}.'.num'},
 4869:                                              $domain,$username);
 4870:               $countdone++;
 4871:            } else {
 4872: 	      $request->print("<p><span class=\"LC_error\">".
 4873:                               &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
 4874:                                   "$username:$domain",$result)."</span></p>");
 4875: 	   }
 4876: 	   $request->rflush();
 4877:         }
 4878:     }
 4879:     $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt("Saved scores for [quant,_1,student]",$countdone),$countdone==0));
 4880:     if (@warnings) {
 4881:         $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Warnings generated for the following saved scores:'),1).'<br />');
 4882:         $request->print(join(', ',@warnings));
 4883:     }
 4884:     if (@skipped) {
 4885: 	$request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('No scores stored for the following username(s):'),1).'<br />');
 4886:         $request->print(join(', ',@skipped));
 4887:     }
 4888:     if (@notallowed) {
 4889: 	$request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Modification of scores not allowed for the following username(s):'),1).'<br />');
 4890: 	$request->print(join(', ',@notallowed));
 4891:     }
 4892:     $request->print("<br />\n");
 4893:     return $error_msg;
 4894: }
 4895: #------------- end of section for handling csv file upload ---------
 4896: #
 4897: #-------------------------------------------------------------------
 4898: #
 4899: #-------------- Next few routines handle grading by page/sequence
 4900: #
 4901: #--- Select a page/sequence and a student to grade
 4902: sub pickStudentPage {
 4903:     my ($request,$symb) = @_;
 4904: 
 4905:     my $alertmsg = &mt('Please select the student you wish to grade.');
 4906:     &js_escape(\$alertmsg);
 4907:     $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
 4908: 
 4909: function checkPickOne(formname) {
 4910:     if (radioSelection(formname.student) == null) {
 4911: 	alert("$alertmsg");
 4912: 	return;
 4913:     }
 4914:     ptr = pullDownSelection(formname.selectpage);
 4915:     formname.page.value = formname["page"+ptr].value;
 4916:     formname.title.value = formname["title"+ptr].value;
 4917:     formname.submit();
 4918: }
 4919: 
 4920: LISTJAVASCRIPT
 4921:     &commonJSfunctions($request);
 4922: 
 4923:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
 4924:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
 4925:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
 4926: 
 4927:     my $result='<h3><span class="LC_info">&nbsp;'.
 4928: 	&mt('Manual Grading by Page or Sequence').'</span></h3>';
 4929: 
 4930:     $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
 4931:     my $map_error;
 4932:     my ($titles,$symbx) = &getSymbMap($map_error);
 4933:     if ($map_error) {
 4934:         $request->print(&navmap_errormsg());
 4935:         return; 
 4936:     }
 4937:     my ($curpage) =&Apache::lonnet::decode_symb($symb); 
 4938: #    my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb); 
 4939: #    my $type=($curpage =~ /\.(page|sequence)/);
 4940: 
 4941:     # Collection of hidden fields
 4942:     my $ctr=0;
 4943:     foreach (@$titles) {
 4944:         my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
 4945:         $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
 4946:         $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
 4947:         $ctr++;
 4948:     }
 4949:     $result.='<input type="hidden" name="page" />'."\n".
 4950:         '<input type="hidden" name="title" />'."\n";
 4951: 
 4952:     $result.=&build_section_inputs();
 4953:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
 4954:     $result.='<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
 4955: 	'<input type="hidden" name="command" value="displayPage" />'."\n".
 4956: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 4957: 
 4958:     # Show grading options
 4959:     $result.=&Apache::lonhtmlcommon::start_pick_box();
 4960:     my $select = '<select name="selectpage">'."\n";
 4961:     $ctr=0;
 4962:     foreach (@$titles) {
 4963: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
 4964: 	$select.='<option value="'.$ctr.'"'.
 4965: 	    ($$symbx{$_} =~ /$curpage$/ ? ' selected="selected"' : '').
 4966: 	    '>'.$showtitle.'</option>'."\n";
 4967: 	$ctr++;
 4968:     }
 4969:     $select.= '</select>';
 4970: 
 4971:     $result.=
 4972:         &Apache::lonhtmlcommon::row_title(&mt('Problems from'))
 4973:        .$select
 4974:        .&Apache::lonhtmlcommon::row_closure();
 4975: 
 4976:     $result.=
 4977:         &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
 4978:        .'<label><input type="radio" name="vProb" value="no"'
 4979:            .' checked="checked" /> '.&mt('no').' </label>'."\n"
 4980:        .'<label><input type="radio" name="vProb" value="yes" />'
 4981:            .&mt('yes').'</label>'."\n"
 4982:        .&Apache::lonhtmlcommon::row_closure();
 4983: 
 4984:     $result.=
 4985:         &Apache::lonhtmlcommon::row_title(&mt('View Submissions'))
 4986:        .'<label><input type="radio" name="lastSub" value="none" /> '
 4987:            .&mt('none').' </label>'."\n"
 4988:        .'<label><input type="radio" name="lastSub" value="datesub"'
 4989:            .' checked="checked" /> '.&mt('all submissions').'</label>'."\n"
 4990:        .'<label><input type="radio" name="lastSub" value="all" /> '
 4991:            .&mt('all submissions with details').' </label>'
 4992:        .&Apache::lonhtmlcommon::row_closure();
 4993:     
 4994:     $result.=
 4995:         &Apache::lonhtmlcommon::row_title(&mt('Use CODE'))
 4996:        .'<input type="text" name="CODE" value="" />'
 4997:        .&Apache::lonhtmlcommon::row_closure(1)
 4998:        .&Apache::lonhtmlcommon::end_pick_box();
 4999: 
 5000:     # Show list of students to select for grading
 5001:     $result.='<br /><input type="button" '.
 5002:              'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' &rarr;" /><br />'."\n";
 5003: 
 5004:     $request->print($result);
 5005: 
 5006:     my $studentTable.='&nbsp;<b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
 5007: 	&Apache::loncommon::start_data_table().
 5008: 	&Apache::loncommon::start_data_table_header_row().
 5009: 	'<th align="right">&nbsp;'.&mt('No.').'</th>'.
 5010: 	'<th>'.&nameUserString('header').'</th>'.
 5011: 	'<th align="right">&nbsp;'.&mt('No.').'</th>'.
 5012: 	'<th>'.&nameUserString('header').'</th>'.
 5013: 	&Apache::loncommon::end_data_table_header_row();
 5014:  
 5015:     my (undef,undef,$fullname) = &getclasslist($getsec,'1');
 5016:     my $ptr = 1;
 5017:     foreach my $student (sort 
 5018: 			 {
 5019: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
 5020: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
 5021: 			     }
 5022: 			     return $a cmp $b;
 5023: 			 } (keys(%$fullname))) {
 5024: 	my ($uname,$udom) = split(/:/,$student);
 5025: 	$studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
 5026:                                   : '</td>');
 5027: 	$studentTable.='<td align="right">'.$ptr.'&nbsp;</td>';
 5028: 	$studentTable.='<td>&nbsp;<label><input type="radio" name="student" value="'.$student.'" /> '
 5029: 	    .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
 5030: 	$studentTable.=
 5031: 	    ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row() 
 5032:                          : '');
 5033: 	$ptr++;
 5034:     }
 5035:     if ($ptr%2 == 0) {
 5036: 	$studentTable.='</td><td>&nbsp;</td><td>&nbsp;</td>'.
 5037: 	    &Apache::loncommon::end_data_table_row();
 5038:     }
 5039:     $studentTable.=&Apache::loncommon::end_data_table()."\n";
 5040:     $studentTable.='<input type="button" '.
 5041:                    'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' &rarr;" /></form>'."\n";
 5042: 
 5043:     $request->print($studentTable);
 5044: 
 5045:     return '';
 5046: }
 5047: 
 5048: sub getSymbMap {
 5049:     my ($map_error) = @_;
 5050:     my $navmap = Apache::lonnavmaps::navmap->new();
 5051:     unless (ref($navmap)) {
 5052:         if (ref($map_error)) {
 5053:             $$map_error = 'navmap';
 5054:         }
 5055:         return;
 5056:     }
 5057:     my %symbx = ();
 5058:     my @titles = ();
 5059:     my $minder = 0;
 5060: 
 5061:     # Gather every sequence that has problems.
 5062:     my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
 5063: 					       1,0,1);
 5064:     for my $sequence ($navmap->getById('0.0'), @sequences) {
 5065: 	if ($navmap->hasResource($sequence, sub { shift->is_gradable(); }, 0) ) {
 5066: 	    my $title = $minder.'.'.
 5067: 		&HTML::Entities::encode($sequence->compTitle(),'"\'&');
 5068: 	    push(@titles, $title); # minder in case two titles are identical
 5069: 	    $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
 5070: 	    $minder++;
 5071: 	}
 5072:     }
 5073:     return \@titles,\%symbx;
 5074: }
 5075: 
 5076: #
 5077: #--- Displays a page/sequence w/wo problems, w/wo submissions
 5078: sub displayPage {
 5079:     my ($request,$symb) = @_;
 5080:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
 5081:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
 5082:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
 5083:     my $pageTitle = $env{'form.page'};
 5084:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
 5085:     my ($uname,$udom) = split(/:/,$env{'form.student'});
 5086:     my $usec=$classlist->{$env{'form.student'}}[5];
 5087: 
 5088:     #need to make sure we have the correct data for later EXT calls, 
 5089:     #thus invalidate the cache
 5090:     &Apache::lonnet::devalidatecourseresdata(
 5091:                  $env{'course.'.$env{'request.course.id'}.'.num'},
 5092:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
 5093:     &Apache::lonnet::clear_EXT_cache_status();
 5094: 
 5095:     if (!&canview($usec)) {
 5096:         $request->print(
 5097:             '<span class="LC_warning">'.
 5098:             &mt('Unable to view requested student. ([_1])',
 5099:                     $env{'form.student'}).
 5100:             '</span>');
 5101:         return;
 5102:     }
 5103:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
 5104:     $result.='<h3>&nbsp;'.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
 5105: 	'</h3>'."\n";
 5106:     $env{'form.CODE'} = uc($env{'form.CODE'});
 5107:     if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
 5108: 	$result.='<h3>&nbsp;'.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
 5109:     } else {
 5110: 	delete($env{'form.CODE'});
 5111:     }
 5112:     &sub_page_js($request);
 5113:     $request->print($result);
 5114: 
 5115:     my $navmap = Apache::lonnavmaps::navmap->new();
 5116:     unless (ref($navmap)) {
 5117:         $request->print(&navmap_errormsg());
 5118:         return;
 5119:     }
 5120:     my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
 5121:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
 5122:     if (!$map) {
 5123: 	$request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
 5124: 	return; 
 5125:     }
 5126:     my $iterator = $navmap->getIterator($map->map_start(),
 5127: 					$map->map_finish());
 5128: 
 5129:     my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
 5130: 	'<input type="hidden" name="command" value="gradeByPage" />'."\n".
 5131: 	'<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
 5132: 	'<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
 5133: 	'<input type="hidden" name="page"    value="'.$pageTitle.'" />'."\n".
 5134: 	'<input type="hidden" name="title"   value="'.$env{'form.title'}.'" />'."\n".
 5135: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
 5136: 	'<input type="hidden" name="overRideScore" value="no" />'."\n";
 5137: 
 5138:     if (defined($env{'form.CODE'})) {
 5139: 	$studentTable.=
 5140: 	    '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
 5141:     }
 5142:     my $checkIcon = '<img alt="'.&mt('Check Mark').
 5143: 	'" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
 5144: 
 5145:     $studentTable.='&nbsp;<span class="LC_info">'.
 5146:         &mt('Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon).
 5147:         '</span>'."\n".
 5148: 	&Apache::loncommon::start_data_table().
 5149: 	&Apache::loncommon::start_data_table_header_row().
 5150: 	'<th>'.&mt('Prob.').'</th>'.
 5151: 	'<th>&nbsp;'.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
 5152: 	&Apache::loncommon::end_data_table_header_row();
 5153: 
 5154:     &Apache::lonxml::clear_problem_counter();
 5155:     my ($depth,$question,$prob) = (1,1,1);
 5156:     $iterator->next(); # skip the first BEGIN_MAP
 5157:     my $curRes = $iterator->next(); # for "current resource"
 5158:     while ($depth > 0) {
 5159:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
 5160:         if($curRes == $iterator->END_MAP) { $depth--; }
 5161: 
 5162:         if (ref($curRes) && $curRes->is_gradable()) {
 5163: 	    my $parts = $curRes->parts();
 5164:             my $title = $curRes->compTitle();
 5165: 	    my $symbx = $curRes->symb();
 5166:             my $is_tool = ($symbx =~ /ext\.tool$/);
 5167: 	    $studentTable.=
 5168: 		&Apache::loncommon::start_data_table_row().
 5169: 		'<td align="center" valign="top" >'.$prob.
 5170: 		(scalar(@{$parts}) == 1 ? '' 
 5171: 		                        : '<br />('.&mt('[_1]parts',
 5172: 							scalar(@{$parts}).'&nbsp;').')'
 5173: 		 ).
 5174: 		 '</td>';
 5175: 	    $studentTable.='<td valign="top">';
 5176: 	    my %form = ('CODE' => $env{'form.CODE'},);
 5177:             if ($is_tool) {
 5178:                 $studentTable.='&nbsp;<b>'.$title.'</b><br />';
 5179:             } else {
 5180: 	        if ($env{'form.vProb'} eq 'yes' ) {
 5181: 		    $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
 5182: 					         undef,'both',\%form);
 5183: 	        } else {
 5184: 		    my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
 5185: 		    $companswer =~ s|<form(.*?)>||g;
 5186: 		    $companswer =~ s|</form>||g;
 5187: #		    while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
 5188: #		        $companswer =~ s/$1/ /ms;
 5189: #		        $request->print('match='.$1."<br />\n");
 5190: #		    }
 5191: #		    $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
 5192: 		    $studentTable.='&nbsp;<b>'.$title.'</b>&nbsp;<br />&nbsp;<b>'.&mt('Correct answer').':</b><br />'.$companswer;
 5193: 		}
 5194: 	    }
 5195: 
 5196: 	    my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
 5197: 
 5198: 	    if ($env{'form.lastSub'} eq 'datesub') {
 5199: 		if ($record{'version'} eq '') {
 5200:                     my $msg = &mt('No recorded submission for this problem.');
 5201:                     if ($is_tool) {
 5202:                         $msg = &mt('No recorded transactions for this external tool');
 5203:                     }
 5204: 		    $studentTable.='<br />&nbsp;<span class="LC_warning">'.$msg.'</span><br />';
 5205: 		} else {
 5206: 		    my %responseType = ();
 5207: 		    foreach my $partid (@{$parts}) {
 5208: 			my @responseIds =$curRes->responseIds($partid);
 5209: 			my @responseType =$curRes->responseType($partid);
 5210: 			my %responseIds;
 5211: 			for (my $i=0;$i<=$#responseIds;$i++) {
 5212: 			    $responseIds{$responseIds[$i]}=$responseType[$i];
 5213: 			}
 5214: 			$responseType{$partid} = \%responseIds;
 5215: 		    }
 5216: 		    $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
 5217: 		}
 5218: 	    } elsif ($env{'form.lastSub'} eq 'all') {
 5219: 		my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
 5220:                 my $identifier = (&canmodify($usec)? $prob : ''); 
 5221: 		$studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
 5222: 									$env{'request.course.id'},
 5223: 									'','.submission',undef,
 5224:                                                                         $usec,$identifier);
 5225:  
 5226: 	    }
 5227: 	    if (&canmodify($usec)) {
 5228:             $studentTable.=&gradeBox_start();
 5229: 		foreach my $partid (@{$parts}) {
 5230: 		    $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
 5231: 		    $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
 5232: 		    $question++;
 5233: 		}
 5234:             $studentTable.=&gradeBox_end();
 5235: 		$prob++;
 5236: 	    }
 5237: 	    $studentTable.='</td></tr>';
 5238: 
 5239: 	}
 5240:         $curRes = $iterator->next();
 5241:     }
 5242: 
 5243:     $studentTable.=
 5244:         '</table>'."\n".
 5245:         '<input type="button" value="'.&mt('Save').'" '.
 5246:         'onclick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
 5247:         '</form>'."\n";
 5248:     $request->print($studentTable);
 5249: 
 5250:     return '';
 5251: }
 5252: 
 5253: sub displaySubByDates {
 5254:     my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
 5255:     my $isCODE=0;
 5256:     my $isTask = ($symb =~/\.task$/);
 5257:     my $is_tool = ($symb =~/\.tool$/);
 5258:     if (exists($record->{'resource.CODE'})) { $isCODE=1; }
 5259:     my $studentTable=&Apache::loncommon::start_data_table().
 5260: 	&Apache::loncommon::start_data_table_header_row().
 5261: 	'<th>'.&mt('Date/Time').'</th>'.
 5262: 	($isCODE?'<th>'.&mt('CODE').'</th>':'').
 5263:         ($isTask?'<th>'.&mt('Version').'</th>':'').
 5264: 	'<th>'.($is_tool?&mt('Grade'):&mt('Submission')).'</th>'.
 5265: 	'<th>'.&mt('Status').'</th>'.
 5266: 	&Apache::loncommon::end_data_table_header_row();
 5267:     my ($version);
 5268:     my %mark;
 5269:     my %orders;
 5270:     $mark{'correct_by_student'} = $checkIcon;
 5271:     if (!exists($$record{'1:timestamp'})) {
 5272:         if ($is_tool) {
 5273:             return '<br />&nbsp;<span class="LC_warning">'.&mt('No grade passed back.').'</span><br />';
 5274:         } else {
 5275:             return '<br />&nbsp;<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br />';
 5276:         }
 5277:     }
 5278: 
 5279:     my $interaction;
 5280:     my $no_increment = 1;
 5281:     my (%lastrndseed,%lasttype);
 5282:     for ($version=1;$version<=$$record{'version'};$version++) {
 5283: 	my $timestamp = 
 5284: 	    &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
 5285: 	if (exists($$record{$version.':resource.0.version'})) {
 5286: 	    $interaction = $$record{$version.':resource.0.version'};
 5287: 	}
 5288:         if ($isTask && $env{'form.previousversion'}) {
 5289:             next unless ($interaction == $env{'form.previousversion'});
 5290:         }
 5291: 	my $where = ($isTask ? "$version:resource.$interaction"
 5292: 		             : "$version:resource");
 5293: 	$studentTable.=&Apache::loncommon::start_data_table_row().
 5294: 	    '<td>'.$timestamp.'</td>';
 5295: 	if ($isCODE) {
 5296: 	    $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
 5297: 	}
 5298:         if ($isTask) {
 5299:             $studentTable.='<td>'.$interaction.'</td>';
 5300:         }
 5301: 	my @versionKeys = split(/\:/,$$record{$version.':keys'});
 5302: 	my @displaySub = ();
 5303: 	foreach my $partid (@{$parts}) {
 5304:             my ($hidden,$type);
 5305:             $type = $$record{$version.':resource.'.$partid.'.type'};
 5306:             if (($type eq 'anonsurvey') || ($type eq 'anonsurveycred')) {
 5307:                 $hidden = 1;
 5308:             }
 5309:             my @matchKey;
 5310:             if ($isTask) {
 5311:                 @matchKey = sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys);
 5312:             } elsif ($is_tool) {
 5313:                 @matchKey = sort(grep /^resource\.\Q$partid\E\.awarded$/,@versionKeys);
 5314:             } else {
 5315:                 @matchKey = sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys);
 5316:             }
 5317: #	    next if ($$record{"$version:resource.$partid.solved"} eq '');
 5318: 	    my $display_part=&get_display_part($partid,$symb);
 5319: 	    foreach my $matchKey (@matchKey) {
 5320: 		if (exists($$record{$version.':'.$matchKey}) &&
 5321: 		    $$record{$version.':'.$matchKey} ne '') {
 5322:                     if ($is_tool) {
 5323:                         $displaySub[0].=$$record{"$version:resource.$partid.awarded"};
 5324:                     } else {
 5325: 		        my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
 5326: 				                   : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
 5327:                         $displaySub[0].='<span class="LC_nobreak">';
 5328:                         $displaySub[0].='<b>'.&mt('Part: [_1]',$display_part).'</b>'
 5329:                                        .' <span class="LC_internal_info">'
 5330:                                        .'('.&mt('Response ID: [_1]',$responseId).')'
 5331:                                        .'</span>'
 5332:                                        .' <b>';
 5333:                         if ($hidden) {
 5334:                             $displaySub[0].= &mt('Anonymous Survey').'</b>';
 5335:                         } else {
 5336:                             my ($trial,$rndseed,$newvariation);
 5337:                             if ($type eq 'randomizetry') {
 5338:                                 $trial = $$record{"$where.$partid.tries"};
 5339:                                 $rndseed = $$record{"$where.$partid.rndseed"};
 5340:                             }
 5341: 		            if ($$record{"$where.$partid.tries"} eq '') {
 5342: 			        $displaySub[0].=&mt('Trial not counted');
 5343: 		            } else {
 5344: 			        $displaySub[0].=&mt('Trial: [_1]',
 5345: 					        $$record{"$where.$partid.tries"});
 5346:                                 if (($rndseed ne '') && ($lastrndseed{$partid} ne '')) {
 5347:                                     if (($rndseed ne $lastrndseed{$partid}) &&
 5348:                                         (($type eq 'randomizetry') || ($lasttype{$partid} eq 'randomizetry'))) {
 5349:                                         $newvariation = '&nbsp;('.&mt('New variation this try').')';
 5350:                                     }
 5351:                                 }
 5352:                                 $lastrndseed{$partid} = $rndseed;
 5353:                                 $lasttype{$partid} = $type;
 5354: 		            }
 5355: 		            my $responseType=($isTask ? 'Task'
 5356:                                               : $responseType->{$partid}->{$responseId});
 5357: 		            if (!exists($orders{$partid})) { $orders{$partid}={}; }
 5358: 		            if ((!exists($orders{$partid}->{$responseId})) || ($trial)) {
 5359: 			        $orders{$partid}->{$responseId}=
 5360: 			            &get_order($partid,$responseId,$symb,$uname,$udom,
 5361:                                                $no_increment,$type,$trial,$rndseed);
 5362: 		            }
 5363: 		            $displaySub[0].='</b>'.$newvariation.'</span>'; # /nobreak
 5364: 		            $displaySub[0].='&nbsp; '.
 5365: 			        &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom,$type,$trial,$rndseed).'<br />';
 5366:                         }
 5367:                     }
 5368: 		}
 5369: 	    }
 5370: 	    if (exists($$record{"$where.$partid.checkedin"})) {
 5371: 		$displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
 5372: 				    $$record{"$where.$partid.checkedin"},
 5373: 				    $$record{"$where.$partid.checkedin.slot"}).
 5374: 					'<br />';
 5375: 	    }
 5376: 	    if (exists $$record{"$where.$partid.award"}) {
 5377: 		$displaySub[1].='<b>'.&mt('Part:').'</b>&nbsp;'.$display_part.' &nbsp;'.
 5378: 		    lc($$record{"$where.$partid.award"}).' '.
 5379: 		    $mark{$$record{"$where.$partid.solved"}}.
 5380: 		    '<br />';
 5381: 	    } elsif (($is_tool) && (exists($$record{"$version:resource.$partid.solved"}))) {
 5382: 		if ($$record{"$version:resource.$partid.solved"} =~ /^(in|)correct_by_passback$/) {
 5383: 		    $displaySub[1].=&mt('Grade passed back by external tool');
 5384: 		}
 5385: 	    }
 5386: 	    if (exists $$record{"$where.$partid.regrader"}) {
 5387: 		$displaySub[2].=$$record{"$where.$partid.regrader"};
 5388: 		unless ($is_tool) {
 5389: 		    $displaySub[2].=' (<b>'.&mt('Part').':</b> '.$display_part.')';
 5390: 		}
 5391: 	    } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
 5392: 		$displaySub[2].=
 5393: 		    $$record{"$version:resource.$partid.regrader"};
 5394:                 unless ($is_tool) {
 5395: 		    $displaySub[2].=' (<b>'.&mt('Part').':</b> '.$display_part.')';
 5396:                 }
 5397: 	    }
 5398: 	}
 5399: 	# needed because old essay regrader has not parts info
 5400: 	if (exists $$record{"$version:resource.regrader"}) {
 5401: 	    $displaySub[2].=$$record{"$version:resource.regrader"};
 5402: 	}
 5403: 	$studentTable.='<td>'.$displaySub[0].'&nbsp;</td><td>'.$displaySub[1];
 5404: 	if ($displaySub[2]) {
 5405: 	    $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
 5406: 	}
 5407: 	$studentTable.='&nbsp;</td>'.
 5408: 	    &Apache::loncommon::end_data_table_row();
 5409:     }
 5410:     $studentTable.=&Apache::loncommon::end_data_table();
 5411:     return $studentTable;
 5412: }
 5413: 
 5414: sub updateGradeByPage {
 5415:     my ($request,$symb) = @_;
 5416: 
 5417:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
 5418:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
 5419:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
 5420:     my $pageTitle = $env{'form.page'};
 5421:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
 5422:     my ($uname,$udom) = split(/:/,$env{'form.student'});
 5423:     my $usec=$classlist->{$env{'form.student'}}[5];
 5424:     if (!&canmodify($usec)) {
 5425: 	$request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
 5426: 	return;
 5427:     }
 5428:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
 5429:     $result.='<h3>&nbsp;'.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
 5430: 	'</h3>'."\n";
 5431: 
 5432:     $request->print($result);
 5433: 
 5434: 
 5435:     my $navmap = Apache::lonnavmaps::navmap->new();
 5436:     unless (ref($navmap)) {
 5437:         $request->print(&navmap_errormsg());
 5438:         return;
 5439:     }
 5440:     my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
 5441:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
 5442:     if (!$map) {
 5443: 	$request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
 5444: 	return; 
 5445:     }
 5446:     my $iterator = $navmap->getIterator($map->map_start(),
 5447: 					$map->map_finish());
 5448: 
 5449:     my $studentTable=
 5450: 	&Apache::loncommon::start_data_table().
 5451: 	&Apache::loncommon::start_data_table_header_row().
 5452: 	'<th align="center">&nbsp;'.&mt('Prob.').'&nbsp;</th>'.
 5453: 	'<th>&nbsp;'.&mt('Title').'&nbsp;</th>'.
 5454: 	'<th>&nbsp;'.&mt('Previous Score').'&nbsp;</th>'.
 5455: 	'<th>&nbsp;'.&mt('New Score').'&nbsp;</th>'.
 5456: 	&Apache::loncommon::end_data_table_header_row();
 5457: 
 5458:     $iterator->next(); # skip the first BEGIN_MAP
 5459:     my $curRes = $iterator->next(); # for "current resource"
 5460:     my ($depth,$question,$prob,$changeflag,$hideflag)= (1,1,1,0,0);
 5461:     while ($depth > 0) {
 5462:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
 5463:         if($curRes == $iterator->END_MAP) { $depth--; }
 5464: 
 5465:         if (ref($curRes) && $curRes->is_problem()) {
 5466: 	    my $parts = $curRes->parts();
 5467:             my $title = $curRes->compTitle();
 5468: 	    my $symbx = $curRes->symb();
 5469: 	    $studentTable.=
 5470: 		&Apache::loncommon::start_data_table_row().
 5471: 		'<td align="center" valign="top" >'.$prob.
 5472: 		(scalar(@{$parts}) == 1 ? '' 
 5473:                                         : '<br />('.&mt('[quant,_1,part]',scalar(@{$parts}))
 5474: 		.')').'</td>';
 5475: 	    $studentTable.='<td valign="top">&nbsp;<b>'.$title.'</b>&nbsp;</td>';
 5476: 
 5477: 	    my %newrecord=();
 5478: 	    my @displayPts=();
 5479:             my %aggregate = ();
 5480:             my $aggregateflag = 0;
 5481:             if ($env{'form.HIDE'.$prob}) {
 5482:                 my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
 5483:                 my ($version,$parts) = split(/:/,$env{'form.HIDE'.$prob},2);
 5484:                 my $numchgs = &makehidden($version,$parts,\%record,$symbx,$udom,$uname,1);
 5485:                 $hideflag += $numchgs;
 5486:             }
 5487: 	    foreach my $partid (@{$parts}) {
 5488: 		my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
 5489: 		my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
 5490: 
 5491: 		my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ? 
 5492: 		    $env{'form.WGT'.$question.'_'.$partid} : 1;
 5493: 		my $partial = $newpts/$wgt;
 5494: 		my $score;
 5495: 		if ($partial > 0) {
 5496: 		    $score = 'correct_by_override';
 5497: 		} elsif ($newpts ne '') { #empty is taken as 0
 5498: 		    $score = 'incorrect_by_override';
 5499: 		}
 5500: 		my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
 5501: 		if ($dropMenu eq 'excused') {
 5502: 		    $partial = '';
 5503: 		    $score = 'excused';
 5504: 		} elsif ($dropMenu eq 'reset status'
 5505: 			 && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
 5506: 		    $newrecord{'resource.'.$partid.'.tries'} = 0;
 5507: 		    $newrecord{'resource.'.$partid.'.solved'} = '';
 5508: 		    $newrecord{'resource.'.$partid.'.award'} = '';
 5509: 		    $newrecord{'resource.'.$partid.'.awarded'} = 0;
 5510: 		    $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
 5511: 		    $changeflag++;
 5512: 		    $newpts = '';
 5513:                     
 5514:                     my $aggtries =  $env{'form.aggtries'.$question.'_'.$partid};
 5515:                     my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
 5516:                     my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
 5517:                     if ($aggtries > 0) {
 5518:                         &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
 5519:                         $aggregateflag = 1;
 5520:                     }
 5521: 		}
 5522: 		my $display_part=&get_display_part($partid,$curRes->symb());
 5523: 		my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
 5524: 		$displayPts[0].='&nbsp;<b>'.&mt('Part').':</b> '.$display_part.' = '.
 5525: 		    (($oldstatus eq 'excused') ? 'excused' : $oldpts).
 5526: 		    '&nbsp;<br />';
 5527: 		$displayPts[1].='&nbsp;<b>'.&mt('Part').':</b> '.$display_part.' = '.
 5528: 		     (($score eq 'excused') ? 'excused' : $newpts).
 5529: 		    '&nbsp;<br />';
 5530: 		$question++;
 5531: 		next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
 5532: 
 5533: 		$newrecord{'resource.'.$partid.'.awarded'}  = $partial if $partial ne '';
 5534: 		$newrecord{'resource.'.$partid.'.solved'}   = $score if $score ne '';
 5535: 		$newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
 5536: 		    if (scalar(keys(%newrecord)) > 0);
 5537: 
 5538: 		$changeflag++;
 5539: 	    }
 5540: 	    if (scalar(keys(%newrecord)) > 0) {
 5541: 		my %record = 
 5542: 		    &Apache::lonnet::restore($symbx,$env{'request.course.id'},
 5543: 					     $udom,$uname);
 5544: 
 5545: 		if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
 5546: 		    $newrecord{'resource.CODE'} = $env{'form.CODE'};
 5547: 		} elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
 5548: 		    $newrecord{'resource.CODE'} = '';
 5549: 		}
 5550: 		&Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
 5551: 					$udom,$uname);
 5552: 		%record = &Apache::lonnet::restore($symbx,
 5553: 						   $env{'request.course.id'},
 5554: 						   $udom,$uname);
 5555: 		&check_and_remove_from_queue($parts,\%record,undef,$symbx,
 5556: 					     $cdom,$cnum,$udom,$uname);
 5557: 	    }
 5558: 	    
 5559:             if ($aggregateflag) {
 5560:                 &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
 5561:                       $env{'course.'.$env{'request.course.id'}.'.domain'},
 5562:                       $env{'course.'.$env{'request.course.id'}.'.num'});
 5563:             }
 5564: 
 5565: 	    $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
 5566: 		'<td valign="top">'.$displayPts[1].'</td>'.
 5567: 		&Apache::loncommon::end_data_table_row();
 5568: 
 5569: 	    $prob++;
 5570: 	}
 5571:         $curRes = $iterator->next();
 5572:     }
 5573: 
 5574:     $studentTable.=&Apache::loncommon::end_data_table();
 5575:     my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
 5576: 		  &mt('The scores were changed for [quant,_1,problem].',
 5577: 		  $changeflag).'<br />');
 5578:     my $hidemsg=($hideflag == 0 ? '' :
 5579:                  &mt('Submissions were marked "hidden" for [quant,_1,transaction].',
 5580:                      $hideflag).'<br />');
 5581:     $request->print($hidemsg.$grademsg.$studentTable);
 5582: 
 5583:     return '';
 5584: }
 5585: 
 5586: #-------- end of section for handling grading by page/sequence ---------
 5587: #
 5588: #-------------------------------------------------------------------
 5589: 
 5590: #-------------------- Bubblesheet (Scantron) Grading -------------------
 5591: #
 5592: #------ start of section for handling grading by page/sequence ---------
 5593: 
 5594: =pod
 5595: 
 5596: =head1 Bubble sheet grading routines
 5597: 
 5598:   For this documentation:
 5599: 
 5600:    'scanline' refers to the full line of characters
 5601:    from the file that we are parsing that represents one entire sheet
 5602: 
 5603:    'bubble line' refers to the data
 5604:    representing the line of bubbles that are on the physical bubblesheet
 5605: 
 5606: 
 5607: The overall process is that a scanned in bubblesheet data is uploaded
 5608: into a course. When a user wants to grade, they select a
 5609: sequence/folder of resources, a file of bubblesheet info, and pick
 5610: one of the predefined configurations for what each scanline looks
 5611: like.
 5612: 
 5613: Next each scanline is checked for any errors of either 'missing
 5614: bubbles' (it's an error because it may have been mis-scanned
 5615: because too light bubbling), 'double bubble' (each bubble line should
 5616: have no more than one letter picked), invalid or duplicated CODE,
 5617: invalid student/employee ID
 5618: 
 5619: If the CODE option is used that determines the randomization of the
 5620: homework problems, either way the student/employee ID is looked up into a
 5621: username:domain.
 5622: 
 5623: During the validation phase the instructor can choose to skip scanlines. 
 5624: 
 5625: After the validation phase, there are now 3 bubblesheet files
 5626: 
 5627:   scantron_original_filename (unmodified original file)
 5628:   scantron_corrected_filename (file where the corrected information has replaced the original information)
 5629:   scantron_skipped_filename (contains the exact text of scanlines that where skipped)
 5630: 
 5631: Also there is a separate hash nohist_scantrondata that contains extra
 5632: correction information that isn't representable in the bubblesheet
 5633: file (see &scantron_getfile() for more information)
 5634: 
 5635: After all scanlines are either valid, marked as valid or skipped, then
 5636: foreach line foreach problem in the picked sequence, an ssi request is
 5637: made that simulates a user submitting their selected letter(s) against
 5638: the homework problem.
 5639: 
 5640: =over 4
 5641: 
 5642: 
 5643: 
 5644: =item defaultFormData
 5645: 
 5646:   Returns html hidden inputs used to hold context/default values.
 5647: 
 5648:  Arguments:
 5649:   $symb - $symb of the current resource 
 5650: 
 5651: =cut
 5652: 
 5653: sub defaultFormData {
 5654:     my ($symb)=@_;
 5655:     return '<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />';
 5656: }
 5657: 
 5658: 
 5659: =pod 
 5660: 
 5661: =item getSequenceDropDown
 5662: 
 5663:    Return html dropdown of possible sequences to grade
 5664:  
 5665:  Arguments:
 5666:    $symb - $symb of the current resource
 5667:    $map_error - ref to scalar which will container error if
 5668:                 $navmap object is unavailable in &getSymbMap().
 5669: 
 5670: =cut
 5671: 
 5672: sub getSequenceDropDown {
 5673:     my ($symb,$map_error)=@_;
 5674:     my $result='<select name="selectpage">'."\n";
 5675:     my ($titles,$symbx) = &getSymbMap($map_error);
 5676:     if (ref($map_error)) {
 5677:         return if ($$map_error);
 5678:     }
 5679:     my ($curpage)=&Apache::lonnet::decode_symb($symb); 
 5680:     my $ctr=0;
 5681:     foreach (@$titles) {
 5682: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
 5683: 	$result.='<option value="'.$$symbx{$_}.'" '.
 5684: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
 5685: 	    '>'.$showtitle.'</option>'."\n";
 5686: 	$ctr++;
 5687:     }
 5688:     $result.= '</select>';
 5689:     return $result;
 5690: }
 5691: 
 5692: my %bubble_lines_per_response;     # no. bubble lines for each response.
 5693:                                    # key is zero-based index - 0, 1, 2 ...
 5694: 
 5695: my %first_bubble_line;             # First bubble line no. for each bubble.
 5696: 
 5697: my %subdivided_bubble_lines;       # no. bubble lines for optionresponse, 
 5698:                                    # matchresponse or rankresponse, where 
 5699:                                    # an individual response can have multiple 
 5700:                                    # lines
 5701: 
 5702: my %responsetype_per_response;     # responsetype for each response
 5703: 
 5704: my %masterseq_id_responsenum;      # src_id (e.g., 12.3_0.11 etc.) for each
 5705:                                    # numbered response. Needed when randomorder
 5706:                                    # or randompick are in use. Key is ID, value 
 5707:                                    # is response number.
 5708: 
 5709: # Save and restore the bubble lines array to the form env.
 5710: 
 5711: 
 5712: sub save_bubble_lines {
 5713:     foreach my $line (keys(%bubble_lines_per_response)) {
 5714: 	$env{"form.scantron.bubblelines.$line"}  = $bubble_lines_per_response{$line};
 5715: 	$env{"form.scantron.first_bubble_line.$line"} =
 5716: 	    $first_bubble_line{$line};
 5717:         $env{"form.scantron.sub_bubblelines.$line"} = 
 5718:             $subdivided_bubble_lines{$line};
 5719:         $env{"form.scantron.responsetype.$line"} =
 5720:             $responsetype_per_response{$line};
 5721:     }
 5722:     foreach my $resid (keys(%masterseq_id_responsenum)) {
 5723:         my $line = $masterseq_id_responsenum{$resid};
 5724:         $env{"form.scantron.residpart.$line"} = $resid;
 5725:     }
 5726: }
 5727: 
 5728: 
 5729: sub restore_bubble_lines {
 5730:     my $line = 0;
 5731:     %bubble_lines_per_response = ();
 5732:     %masterseq_id_responsenum = ();
 5733:     while ($env{"form.scantron.bubblelines.$line"}) {
 5734: 	my $value = $env{"form.scantron.bubblelines.$line"};
 5735: 	$bubble_lines_per_response{$line} = $value;
 5736: 	$first_bubble_line{$line}  =
 5737: 	    $env{"form.scantron.first_bubble_line.$line"};
 5738:         $subdivided_bubble_lines{$line} =
 5739:             $env{"form.scantron.sub_bubblelines.$line"};
 5740:         $responsetype_per_response{$line} =
 5741:             $env{"form.scantron.responsetype.$line"};
 5742:         my $id = $env{"form.scantron.residpart.$line"};
 5743:         $masterseq_id_responsenum{$id} = $line;
 5744: 	$line++;
 5745:     }
 5746: }
 5747: 
 5748: =pod 
 5749: 
 5750: =item scantron_filenames
 5751: 
 5752:    Returns a list of the scantron files in the current course 
 5753: 
 5754: =cut
 5755: 
 5756: sub scantron_filenames {
 5757:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 5758:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 5759:     my $getpropath = 1;
 5760:     my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
 5761:                                                         $cname,$getpropath);
 5762:     my @possiblenames;
 5763:     if (ref($dirlist) eq 'ARRAY') {
 5764:         foreach my $filename (sort(@{$dirlist})) {
 5765: 	    ($filename)=split(/&/,$filename);
 5766: 	    if ($filename!~/^scantron_orig_/) { next ; }
 5767: 	    $filename=~s/^scantron_orig_//;
 5768: 	    push(@possiblenames,$filename);
 5769:         }
 5770:     }
 5771:     return @possiblenames;
 5772: }
 5773: 
 5774: =pod 
 5775: 
 5776: =item scantron_uploads
 5777: 
 5778:    Returns  html drop-down list of scantron files in current course.
 5779: 
 5780:  Arguments:
 5781:    $file2grade - filename to set as selected in the dropdown
 5782: 
 5783: =cut
 5784: 
 5785: sub scantron_uploads {
 5786:     my ($file2grade) = @_;
 5787:     my $result=	'<select name="scantron_selectfile">';
 5788:     $result.="<option></option>";
 5789:     foreach my $filename (sort(&scantron_filenames())) {
 5790: 	$result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
 5791:     }
 5792:     $result.="</select>";
 5793:     return $result;
 5794: }
 5795: 
 5796: =pod 
 5797: 
 5798: =item scantron_scantab
 5799: 
 5800:   Returns html drop down of the scantron formats in the scantronformat.tab
 5801:   file.
 5802: 
 5803: =cut
 5804: 
 5805: sub scantron_scantab {
 5806:     my $result='<select name="scantron_format">'."\n";
 5807:     $result.='<option></option>'."\n";
 5808:     my @lines = &Apache::lonnet::get_scantronformat_file();
 5809:     if (@lines > 0) {
 5810:         foreach my $line (@lines) {
 5811:             next if (($line =~ /^\#/) || ($line eq ''));
 5812: 	    my ($name,$descrip)=split(/:/,$line);
 5813: 	    $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
 5814:         }
 5815:     }
 5816:     $result.='</select>'."\n";
 5817:     return $result;
 5818: }
 5819: 
 5820: =pod 
 5821: 
 5822: =item scantron_CODElist
 5823: 
 5824:   Returns html drop down of the saved CODE lists from current course,
 5825:   generated from earlier printings.
 5826: 
 5827: =cut
 5828: 
 5829: sub scantron_CODElist {
 5830:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 5831:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 5832:     my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
 5833:     my $namechoice='<option></option>';
 5834:     foreach my $name (sort {uc($a) cmp uc($b)} @names) {
 5835: 	if ($name =~ /^error: 2 /) { next; }
 5836: 	if ($name =~ /^type\0/) { next; }
 5837: 	$namechoice.='<option value="'.$name.'">'.$name.'</option>';
 5838:     }
 5839:     $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
 5840:     return $namechoice;
 5841: }
 5842: 
 5843: =pod 
 5844: 
 5845: =item scantron_CODEunique
 5846: 
 5847:   Returns the html for "Each CODE to be used once" radio.
 5848: 
 5849: =cut
 5850: 
 5851: sub scantron_CODEunique {
 5852:     my $result='<span class="LC_nobreak">
 5853:                  <label><input type="radio" name="scantron_CODEunique"
 5854:                         value="yes" checked="checked" />'.&mt('Yes').' </label>
 5855:                 </span>
 5856:                 <span class="LC_nobreak">
 5857:                  <label><input type="radio" name="scantron_CODEunique"
 5858:                         value="no" />'.&mt('No').' </label>
 5859:                 </span>';
 5860:     return $result;
 5861: }
 5862: 
 5863: =pod 
 5864: 
 5865: =item scantron_selectphase
 5866: 
 5867:   Generates the initial screen to start the bubblesheet process.
 5868:   Allows for - starting a grading run.
 5869:              - downloading existing scan data (original, corrected
 5870:                                                 or skipped info)
 5871: 
 5872:              - uploading new scan data
 5873: 
 5874:  Arguments:
 5875:   $r          - The Apache request object
 5876:   $file2grade - name of the file that contain the scanned data to score
 5877: 
 5878: =cut
 5879: 
 5880: sub scantron_selectphase {
 5881:     my ($r,$file2grade,$symb) = @_;
 5882:     if (!$symb) {return '';}
 5883:     my $map_error;
 5884:     my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
 5885:     if ($map_error) {
 5886:         $r->print('<br />'.&navmap_errormsg().'<br />');
 5887:         return;
 5888:     }
 5889:     my $default_form_data=&defaultFormData($symb);
 5890:     my $file_selector=&scantron_uploads($file2grade);
 5891:     my $format_selector=&scantron_scantab();
 5892:     my $CODE_selector=&scantron_CODElist();
 5893:     my $CODE_unique=&scantron_CODEunique();
 5894:     my $result;
 5895: 
 5896:     $ssi_error = 0;
 5897: 
 5898:     if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
 5899:         &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
 5900: 
 5901: 	# Chunk of form to prompt for a scantron file upload.
 5902: 
 5903:         $r->print('
 5904:     <br />');
 5905:     my $default_form_data=&defaultFormData($symb);
 5906:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
 5907:     my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
 5908:     my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
 5909:     &js_escape(\$alertmsg);
 5910:     my ($formatoptions,$formattitle,$formatjs) = &scantron_upload_dataformat($cdom);
 5911:     $r->print(&Apache::lonhtmlcommon::scripttag('
 5912:     function checkUpload(formname) {
 5913: 	if (formname.upfile.value == "") {
 5914: 	    alert("'.$alertmsg.'");
 5915: 	    return false;
 5916: 	}
 5917: 	formname.submit();
 5918:     }'."\n".$formatjs));
 5919:     $r->print('
 5920:               <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
 5921:                 '.$default_form_data.'
 5922:                 <input name="courseid" type="hidden" value="'.$cnum.'" />
 5923:                 <input name="domainid" type="hidden" value="'.$cdom.'" />
 5924:                 <input name="command" value="scantronupload_save" type="hidden" />
 5925:               '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 5926:               '.&Apache::loncommon::start_data_table_header_row().'
 5927:                 <th>
 5928:                 &nbsp;'.&mt('Specify a bubblesheet data file to upload.').'
 5929:                 </th>
 5930:               '.&Apache::loncommon::end_data_table_header_row().'
 5931:               '.&Apache::loncommon::start_data_table_row().'
 5932:             <td>
 5933:                 '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'<br />'."\n");
 5934:     if ($formatoptions) {
 5935:         $r->print('</td>
 5936:                  '.&Apache::loncommon::end_data_table_row().'
 5937:                  '.&Apache::loncommon::start_data_table_row().'
 5938:                  <td>'.$formattitle.('&nbsp;'x2).$formatoptions.'
 5939:                  </td>
 5940:                  '.&Apache::loncommon::end_data_table_row().'
 5941:                  '.&Apache::loncommon::start_data_table_row().'
 5942:                  <td>'
 5943:         );
 5944:     } else {
 5945:         $r->print(' <br />');
 5946:     }
 5947:     $r->print('<input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
 5948:               </td>
 5949:              '.&Apache::loncommon::end_data_table_row().'
 5950:              '.&Apache::loncommon::end_data_table().'
 5951:              </form>'
 5952:     );
 5953: 
 5954:     }
 5955: 
 5956:     # Chunk of form to prompt for a file to grade and how:
 5957: 
 5958:     $result.= '
 5959:     <br />
 5960:     <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
 5961:     <input type="hidden" name="command" value="scantron_warning" />
 5962:     '.$default_form_data.'
 5963:     '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 5964:        '.&Apache::loncommon::start_data_table_header_row().'
 5965:             <th colspan="2">
 5966:               &nbsp;'.&mt('Specify file and which Folder/Sequence to grade').'
 5967:             </th>
 5968:        '.&Apache::loncommon::end_data_table_header_row().'
 5969:        '.&Apache::loncommon::start_data_table_row().'
 5970:             <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
 5971:        '.&Apache::loncommon::end_data_table_row().'
 5972:        '.&Apache::loncommon::start_data_table_row().'
 5973:             <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
 5974:        '.&Apache::loncommon::end_data_table_row().'
 5975:        '.&Apache::loncommon::start_data_table_row().'
 5976:             <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
 5977:        '.&Apache::loncommon::end_data_table_row().'
 5978:        '.&Apache::loncommon::start_data_table_row().'
 5979:             <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
 5980:        '.&Apache::loncommon::end_data_table_row().'
 5981:        '.&Apache::loncommon::start_data_table_row().'
 5982:             <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
 5983:        '.&Apache::loncommon::end_data_table_row().'
 5984:        '.&Apache::loncommon::start_data_table_row().'
 5985: 	    <td> '.&mt('Options:').' </td>
 5986:             <td>
 5987: 	       <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
 5988:                <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
 5989:                <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
 5990: 	    </td>
 5991:        '.&Apache::loncommon::end_data_table_row().'
 5992:        '.&Apache::loncommon::start_data_table_row().'
 5993:             <td colspan="2">
 5994:               <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
 5995:             </td>
 5996:        '.&Apache::loncommon::end_data_table_row().'
 5997:     '.&Apache::loncommon::end_data_table().'
 5998:     </form>
 5999: ';
 6000:    
 6001:     $r->print($result);
 6002: 
 6003: 
 6004: 
 6005:     # Chunk of the form that prompts to view a scoring office file,
 6006:     # corrected file, skipped records in a file.
 6007: 
 6008:     $r->print('
 6009:    <br />
 6010:    <form action="/adm/grades" name="scantron_download">
 6011:      '.$default_form_data.'
 6012:      <input type="hidden" name="command" value="scantron_download" />
 6013:      '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 6014:        '.&Apache::loncommon::start_data_table_header_row().'
 6015:               <th>
 6016:                 &nbsp;'.&mt('Download a scoring office file').'
 6017:               </th>
 6018:        '.&Apache::loncommon::end_data_table_header_row().'
 6019:        '.&Apache::loncommon::start_data_table_row().'
 6020:               <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).' 
 6021:                 <br />
 6022:                 <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
 6023:        '.&Apache::loncommon::end_data_table_row().'
 6024:      '.&Apache::loncommon::end_data_table().'
 6025:    </form>
 6026:    <br />
 6027: ');
 6028: 
 6029:     &Apache::lonpickcode::code_list($r,2);
 6030: 
 6031:     $r->print('<br /><form method="post" name="checkscantron" action="">'.
 6032:              $default_form_data."\n".
 6033:              &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
 6034:              &Apache::loncommon::start_data_table_header_row()."\n".
 6035:              '<th colspan="2">
 6036:               &nbsp;'.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
 6037:              '</th>'."\n".
 6038:               &Apache::loncommon::end_data_table_header_row()."\n".
 6039:               &Apache::loncommon::start_data_table_row()."\n".
 6040:               '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
 6041:               '<td> '.$sequence_selector.' </td>'.
 6042:               &Apache::loncommon::end_data_table_row()."\n".
 6043:               &Apache::loncommon::start_data_table_row()."\n".
 6044:               '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
 6045:               '<td> '.$file_selector.' </td>'."\n".
 6046:               &Apache::loncommon::end_data_table_row()."\n".
 6047:               &Apache::loncommon::start_data_table_row()."\n".
 6048:               '<td> '.&mt('Format of data file:').' </td>'."\n".
 6049:               '<td> '.$format_selector.' </td>'."\n".
 6050:               &Apache::loncommon::end_data_table_row()."\n".
 6051:               &Apache::loncommon::start_data_table_row()."\n".
 6052:               '<td> '.&mt('Options').' </td>'."\n".
 6053:               '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
 6054:               &Apache::loncommon::end_data_table_row()."\n".
 6055:               &Apache::loncommon::start_data_table_row()."\n".
 6056:               '<td colspan="2">'."\n".
 6057:               '<input type="hidden" name="command" value="checksubmissions" />'."\n".
 6058:               '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
 6059:               '</td>'."\n".
 6060:               &Apache::loncommon::end_data_table_row()."\n".
 6061:               &Apache::loncommon::end_data_table()."\n".
 6062:               '</form><br />');
 6063:     return;
 6064: }
 6065: 
 6066: =pod 
 6067: 
 6068: =item username_to_idmap
 6069: 
 6070:     creates a hash keyed by student/employee ID with values of the corresponding
 6071:     student username:domain. If a single ID occurs for more than one student,
 6072:     the status of the student is checked, and if Active, the value in the hash
 6073:     will be set to the Active student.
 6074: 
 6075:   Arguments:
 6076: 
 6077:     $classlist - reference to the class list hash. This is a hash
 6078:                  keyed by student name:domain  whose elements are references
 6079:                  to arrays containing various chunks of information
 6080:                  about the student. (See loncoursedata for more info).
 6081: 
 6082:   Returns
 6083:     %idmap - the constructed hash
 6084: 
 6085: =cut
 6086: 
 6087: sub username_to_idmap {
 6088:     my ($classlist)= @_;
 6089:     my %idmap;
 6090:     foreach my $student (keys(%$classlist)) {
 6091:         my $id = $classlist->{$student}->[&Apache::loncoursedata::CL_ID];
 6092:         unless ($id eq '') {
 6093:             if (!exists($idmap{$id})) {
 6094:                 $idmap{$id} = $student;
 6095:             } else {
 6096:                 my $status = $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS];
 6097:                 if ($status eq 'Active') {
 6098:                     $idmap{$id} = $student;
 6099:                 }
 6100:             }
 6101:         }
 6102:     }
 6103:     return %idmap;
 6104: }
 6105: 
 6106: =pod
 6107: 
 6108: =item scantron_fixup_scanline
 6109: 
 6110:    Process a requested correction to a scanline.
 6111: 
 6112:   Arguments:
 6113:     $scantron_config   - hash from &Apache::lonnet::get_scantron_config()
 6114:     $scan_data         - hash of correction information 
 6115:                           (see &scantron_getfile())
 6116:     $line              - existing scanline
 6117:     $whichline         - line number of the passed in scanline
 6118:     $field             - type of change to process 
 6119:                          (either 
 6120:                           'ID'     -> correct the student/employee ID
 6121:                           'CODE'   -> correct the CODE
 6122:                           'answer' -> fixup the submitted answers)
 6123:     
 6124:    $args               - hash of additional info,
 6125:                           - 'ID' 
 6126:                                'newid' -> studentID to use in replacement
 6127:                                           of existing one
 6128:                           - 'CODE' 
 6129:                                'CODE_ignore_dup' - set to true if duplicates
 6130:                                                    should be ignored.
 6131: 	                       'CODE' - is new code or 'use_unfound'
 6132:                                         if the existing unfound code should
 6133:                                         be used as is
 6134:                           - 'answer'
 6135:                                'response' - new answer or 'none' if blank
 6136:                                'question' - the bubble line to change
 6137:                                'questionnum' - the question identifier,
 6138:                                                may include subquestion. 
 6139: 
 6140:   Returns:
 6141:     $line - the modified scanline
 6142: 
 6143:   Side effects: 
 6144:     $scan_data - may be updated
 6145: 
 6146: =cut
 6147: 
 6148: 
 6149: sub scantron_fixup_scanline {
 6150:     my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
 6151:     if ($field eq 'ID') {
 6152: 	if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
 6153: 	    return ($line,1,'New value too large');
 6154: 	}
 6155: 	if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
 6156: 	    $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
 6157: 				     $args->{'newid'});
 6158: 	}
 6159: 	substr($line,$$scantron_config{'IDstart'}-1,
 6160: 	       $$scantron_config{'IDlength'})=$args->{'newid'};
 6161: 	if ($args->{'newid'}=~/^\s*$/) {
 6162: 	    &scan_data($scan_data,"$whichline.user",
 6163: 		       $args->{'username'}.':'.$args->{'domain'});
 6164: 	}
 6165:     } elsif ($field eq 'CODE') {
 6166: 	if ($args->{'CODE_ignore_dup'}) {
 6167: 	    &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
 6168: 	}
 6169: 	&scan_data($scan_data,"$whichline.useCODE",'1');
 6170: 	if ($args->{'CODE'} ne 'use_unfound') {
 6171: 	    if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
 6172: 		return ($line,1,'New CODE value too large');
 6173: 	    }
 6174: 	    if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
 6175: 		$args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
 6176: 	    }
 6177: 	    substr($line,$$scantron_config{'CODEstart'}-1,
 6178: 		   $$scantron_config{'CODElength'})=$args->{'CODE'};
 6179: 	}
 6180:     } elsif ($field eq 'answer') {
 6181: 	my $length=$scantron_config->{'Qlength'};
 6182: 	my $off=$scantron_config->{'Qoff'};
 6183: 	my $on=$scantron_config->{'Qon'};
 6184: 	my $answer=${off}x$length;
 6185: 	if ($args->{'response'} eq 'none') {
 6186: 	    &scan_data($scan_data,
 6187: 		       "$whichline.no_bubble.".$args->{'questionnum'},'1');
 6188: 	} else {
 6189: 	    if ($on eq 'letter') {
 6190: 		my @alphabet=('A'..'Z');
 6191: 		$answer=$alphabet[$args->{'response'}];
 6192: 	    } elsif ($on eq 'number') {
 6193: 		$answer=$args->{'response'}+1;
 6194: 		if ($answer == 10) { $answer = '0'; }
 6195: 	    } else {
 6196: 		substr($answer,$args->{'response'},1)=$on;
 6197: 	    }
 6198: 	    &scan_data($scan_data,
 6199: 		       "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
 6200: 	}
 6201: 	my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
 6202: 	substr($line,$where-1,$length)=$answer;
 6203:     }
 6204:     return $line;
 6205: }
 6206: 
 6207: =pod
 6208: 
 6209: =item scan_data
 6210: 
 6211:     Edit or look up  an item in the scan_data hash.
 6212: 
 6213:   Arguments:
 6214:     $scan_data  - The hash (see scantron_getfile)
 6215:     $key        - shorthand of the key to edit (actual key is
 6216:                   scantronfilename_key).
 6217:     $data        - New value of the hash entry.
 6218:     $delete      - If true, the entry is removed from the hash.
 6219: 
 6220:   Returns:
 6221:     The new value of the hash table field (undefined if deleted).
 6222: 
 6223: =cut
 6224: 
 6225: 
 6226: sub scan_data {
 6227:     my ($scan_data,$key,$value,$delete)=@_;
 6228:     my $filename=$env{'form.scantron_selectfile'};
 6229:     if (defined($value)) {
 6230: 	$scan_data->{$filename.'_'.$key} = $value;
 6231:     }
 6232:     if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
 6233:     return $scan_data->{$filename.'_'.$key};
 6234: }
 6235: 
 6236: # ----- These first few routines are general use routines.----
 6237: 
 6238: # Return the number of occurences of a pattern in a string.
 6239: 
 6240: sub occurence_count {
 6241:     my ($string, $pattern) = @_;
 6242: 
 6243:     my @matches = ($string =~ /$pattern/g);
 6244: 
 6245:     return scalar(@matches);
 6246: }
 6247: 
 6248: 
 6249: # Take a string known to have digits and convert all the
 6250: # digits into letters in the range J,A..I.
 6251: 
 6252: sub digits_to_letters {
 6253:     my ($input) = @_;
 6254: 
 6255:     my @alphabet = ('J', 'A'..'I');
 6256: 
 6257:     my @input    = split(//, $input);
 6258:     my $output ='';
 6259:     for (my $i = 0; $i < scalar(@input); $i++) {
 6260: 	if ($input[$i] =~ /\d/) {
 6261: 	    $output .= $alphabet[$input[$i]];
 6262: 	} else {
 6263: 	    $output .= $input[$i];
 6264: 	}
 6265:     }
 6266:     return $output;
 6267: }
 6268: 
 6269: =pod 
 6270: 
 6271: =item scantron_parse_scanline
 6272: 
 6273:   Decodes a scanline from the selected bubblesheet file
 6274: 
 6275:  Arguments:
 6276:     line             - The text of the bubblesheet file line to process
 6277:     whichline        - Line number
 6278:     scantron_config  - Hash describing the format of the bubblesheet lines.
 6279:     scan_data        - Hash of extra information about the scanline
 6280:                        (see scantron_getfile for more information)
 6281:     just_header      - True if should not process question answers but only
 6282:                        the stuff to the left of the answers.
 6283:     randomorder      - True if randomorder in use
 6284:     randompick       - True if randompick in use
 6285:     sequence         - Exam folder URL
 6286:     master_seq       - Ref to array containing symbs in exam folder
 6287:     symb_to_resource - Ref to hash of symbs for resources in exam folder
 6288:                        (corresponding values are resource objects)
 6289:     partids_by_symb  - Ref to hash of symb -> array ref of partIDs
 6290:     orderedforcode   - Ref to hash of arrays. keys are CODEs and values
 6291:                        are refs to an array of resource objects, ordered
 6292:                        according to order used for CODE, when randomorder
 6293:                        and or randompick are in use.
 6294:     respnumlookup    - Ref to hash mapping question numbers in bubble lines
 6295:                        for current line to question number used for same question
 6296:                         in "Master Sequence" (as seen by Course Coordinator).
 6297:     startline        - Ref to hash where key is question number (0 is first)
 6298:                        and value is number of first bubble line for current 
 6299:                        student or code-based randompick and/or randomorder.
 6300:     totalref         - Ref of scalar used to score total number of bubble
 6301:                        lines needed for responses in a scan line (used when
 6302:                        randompick in use. 
 6303:     
 6304:  Returns:
 6305:    Hash containing the result of parsing the scanline
 6306: 
 6307:    Keys are all proceeded by the string 'scantron.'
 6308: 
 6309:        CODE    - the CODE in use for this scanline
 6310:        useCODE - 1 if the CODE is invalid but it usage has been forced
 6311:                  by the operator
 6312:        CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
 6313:                             CODEs were selected, but the usage has been
 6314:                             forced by the operator
 6315:        ID  - student/employee ID
 6316:        PaperID - if used, the ID number printed on the sheet when the 
 6317:                  paper was scanned
 6318:        FirstName - first name from the sheet
 6319:        LastName  - last name from the sheet
 6320: 
 6321:      if just_header was not true these key may also exist
 6322: 
 6323:        missingerror - a list of bubble ranges that are considered to be answers
 6324:                       to a single question that don't have any bubbles filled in.
 6325:                       Of the form questionnumber:firstbubblenumber:count.
 6326:        doubleerror  - a list of bubble ranges that are considered to be answers
 6327:                       to a single question that have more than one bubble filled in.
 6328:                       Of the form questionnumber::firstbubblenumber:count
 6329:    
 6330:                 In the above, count is the number of bubble responses in the
 6331:                 input line needed to represent the possible answers to the question.
 6332:                 e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
 6333:                 per line would have count = 2.
 6334: 
 6335:        maxquest     - the number of the last bubble line that was parsed
 6336: 
 6337:        (<number> starts at 1)
 6338:        <number>.answer - zero or more letters representing the selected
 6339:                          letters from the scanline for the bubble line 
 6340:                          <number>.
 6341:                          if blank there was either no bubble or there where
 6342:                          multiple bubbles, (consult the keys missingerror and
 6343:                          doubleerror if this is an error condition)
 6344: 
 6345: =cut
 6346: 
 6347: sub scantron_parse_scanline {
 6348:     my ($line,$whichline,$scantron_config,$scan_data,$just_header,$idmap,
 6349:         $randomorder,$randompick,$sequence,$master_seq,$symb_to_resource,
 6350:         $partids_by_symb,$orderedforcode,$respnumlookup,$startline,$totalref)=@_;
 6351: 
 6352:     my %record;
 6353:     my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # stuff before answers
 6354:     if (!($$scantron_config{'CODElocation'} eq 0 ||
 6355: 	  $$scantron_config{'CODElocation'} eq 'none')) {
 6356: 	if ($$scantron_config{'CODElocation'} < 0 ||
 6357: 	    $$scantron_config{'CODElocation'} eq 'letter' ||
 6358: 	    $$scantron_config{'CODElocation'} eq 'number') {
 6359: 	    $record{'scantron.CODE'}=substr($data,
 6360: 					    $$scantron_config{'CODEstart'}-1,
 6361: 					    $$scantron_config{'CODElength'});
 6362: 	    if (&scan_data($scan_data,"$whichline.useCODE")) {
 6363: 		$record{'scantron.useCODE'}=1;
 6364: 	    }
 6365: 	    if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
 6366: 		$record{'scantron.CODE_ignore_dup'}=1;
 6367: 	    }
 6368: 	} else {
 6369: 	    #FIXME interpret first N questions
 6370: 	}
 6371:     }
 6372:     $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
 6373: 				  $$scantron_config{'IDlength'});
 6374:     $record{'scantron.PaperID'}=
 6375: 	substr($data,$$scantron_config{'PaperID'}-1,
 6376: 	       $$scantron_config{'PaperIDlength'});
 6377:     $record{'scantron.FirstName'}=
 6378: 	substr($data,$$scantron_config{'FirstName'}-1,
 6379: 	       $$scantron_config{'FirstNamelength'});
 6380:     $record{'scantron.LastName'}=
 6381: 	substr($data,$$scantron_config{'LastName'}-1,
 6382: 	       $$scantron_config{'LastNamelength'});
 6383:     if ($just_header) { return \%record; }
 6384: 
 6385:     my @alphabet=('A'..'Z');
 6386:     my $questnum=0;
 6387:     my $ansnum  =1;		# Multiple 'answer lines'/question.
 6388: 
 6389:     my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
 6390:     if ($randompick || $randomorder) {
 6391:         my $total = &get_respnum_lookups($sequence,$scan_data,$idmap,$line,\%record,
 6392:                                          $master_seq,$symb_to_resource,
 6393:                                          $partids_by_symb,$orderedforcode,
 6394:                                          $respnumlookup,$startline);
 6395:         if ($total) {
 6396:             $lastpos = $total*$$scantron_config{'Qlength'}; 
 6397:         }
 6398:         if (ref($totalref)) {
 6399:             $$totalref = $total;
 6400:         }
 6401:     }
 6402:     my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos);  # Answers
 6403:     chomp($questions);		# Get rid of any trailing \n.
 6404:     $questions =~ s/\r$//;      # Get rid of trailing \r too (MAC or Win uploads).
 6405:     while (length($questions)) {
 6406:         my $answers_needed;
 6407:         if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6408:             $answers_needed = $bubble_lines_per_response{$respnumlookup->{$questnum}};
 6409:         } else {
 6410: 	    $answers_needed = $bubble_lines_per_response{$questnum};
 6411:         }
 6412:         my $answer_length  = ($$scantron_config{'Qlength'} * $answers_needed)
 6413:                              || 1;
 6414:         $questnum++;
 6415:         my $quest_id = $questnum;
 6416:         my $currentquest = substr($questions,0,$answer_length);
 6417:         $questions       = substr($questions,$answer_length);
 6418:         if (length($currentquest) < $answer_length) { next; }
 6419: 
 6420:         my $subdivided;
 6421:         if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6422:             $subdivided = $subdivided_bubble_lines{$respnumlookup->{$questnum-1}};
 6423:         } else {
 6424:             $subdivided = $subdivided_bubble_lines{$questnum-1};
 6425:         }
 6426:         if ($subdivided =~ /,/) {
 6427:             my $subquestnum = 1;
 6428:             my $subquestions = $currentquest;
 6429:             my @subanswers_needed = split(/,/,$subdivided);
 6430:             foreach my $subans (@subanswers_needed) {
 6431:                 my $subans_length =
 6432:                     ($$scantron_config{'Qlength'} * $subans)  || 1;
 6433:                 my $currsubquest = substr($subquestions,0,$subans_length);
 6434:                 $subquestions   = substr($subquestions,$subans_length);
 6435:                 $quest_id = "$questnum.$subquestnum";
 6436:                 if (($$scantron_config{'Qon'} eq 'letter') ||
 6437:                     ($$scantron_config{'Qon'} eq 'number')) {
 6438:                     $ansnum = &scantron_validator_lettnum($ansnum, 
 6439:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,
 6440:                         \@alphabet,\%record,$scantron_config,$scan_data,
 6441:                         $randomorder,$randompick,$respnumlookup);
 6442:                 } else {
 6443:                     $ansnum = &scantron_validator_positional($ansnum,
 6444:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,
 6445:                         \@alphabet,\%record,$scantron_config,$scan_data,
 6446:                         $randomorder,$randompick,$respnumlookup);
 6447:                 }
 6448:                 $subquestnum ++;
 6449:             }
 6450:         } else {
 6451:             if (($$scantron_config{'Qon'} eq 'letter') ||
 6452:                 ($$scantron_config{'Qon'} eq 'number')) {
 6453:                 $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
 6454:                     $quest_id,$answers_needed,$currentquest,$whichline,
 6455:                     \@alphabet,\%record,$scantron_config,$scan_data,
 6456:                     $randomorder,$randompick,$respnumlookup);
 6457:             } else {
 6458:                 $ansnum = &scantron_validator_positional($ansnum,$questnum,
 6459:                     $quest_id,$answers_needed,$currentquest,$whichline,
 6460:                     \@alphabet,\%record,$scantron_config,$scan_data,
 6461:                     $randomorder,$randompick,$respnumlookup);
 6462:             }
 6463:         }
 6464:     }
 6465:     $record{'scantron.maxquest'}=$questnum;
 6466:     return \%record;
 6467: }
 6468: 
 6469: sub get_master_seq {
 6470:     my ($resources,$master_seq,$symb_to_resource) = @_;
 6471:     return unless ((ref($resources) eq 'ARRAY') && (ref($master_seq) eq 'ARRAY') && 
 6472:                    (ref($symb_to_resource) eq 'HASH'));
 6473:     my $resource_error;
 6474:     foreach my $resource (@{$resources}) {
 6475:         my $ressymb;
 6476:         if (ref($resource)) {
 6477:             $ressymb = $resource->symb();
 6478:             push(@{$master_seq},$ressymb);
 6479:             $symb_to_resource->{$ressymb} = $resource;
 6480:         } else {
 6481:             $resource_error = 1;
 6482:             last;
 6483:         }
 6484:     }
 6485:     return $resource_error;
 6486: }
 6487: 
 6488: sub get_respnum_lookups {
 6489:     my ($sequence,$scan_data,$idmap,$line,$record,$master_seq,$symb_to_resource,
 6490:         $partids_by_symb,$orderedforcode,$respnumlookup,$startline) = @_;
 6491:     return unless ((ref($record) eq 'HASH') && (ref($master_seq) eq 'ARRAY') &&
 6492:                    (ref($symb_to_resource) eq 'HASH') && (ref($partids_by_symb) eq 'HASH') &&
 6493:                    (ref($orderedforcode) eq 'HASH') && (ref($respnumlookup) eq 'HASH') &&
 6494:                    (ref($startline) eq 'HASH'));
 6495:     my ($user,$scancode);
 6496:     if ((exists($record->{'scantron.CODE'})) &&
 6497:         (&Apache::lonnet::validCODE($record->{'scantron.CODE'}))) {
 6498:         $scancode = $record->{'scantron.CODE'};
 6499:     } else {
 6500:         $user = &scantron_find_student($record,$scan_data,$idmap,$line);
 6501:     }
 6502:     my @mapresources =
 6503:         &users_order($user,$scancode,$sequence,$master_seq,$symb_to_resource,
 6504:                      $orderedforcode);
 6505:     my $total = 0;
 6506:     my $count = 0;
 6507:     foreach my $resource (@mapresources) {
 6508:         my $id = $resource->id();
 6509:         my $symb = $resource->symb();
 6510:         if (ref($partids_by_symb->{$symb}) eq 'ARRAY') {
 6511:             foreach my $partid (@{$partids_by_symb->{$symb}}) {
 6512:                 my $respnum = $masterseq_id_responsenum{$id.'_'.$partid};
 6513:                 if ($respnum ne '') {
 6514:                     $respnumlookup->{$count} = $respnum;
 6515:                     $startline->{$count} = $total;
 6516:                     $total += $bubble_lines_per_response{$respnum};
 6517:                     $count ++;
 6518:                 }
 6519:             }
 6520:         }
 6521:     }
 6522:     return $total;
 6523: }
 6524: 
 6525: sub scantron_validator_lettnum {
 6526:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
 6527:         $alphabet,$record,$scantron_config,$scan_data,$randomorder,
 6528:         $randompick,$respnumlookup) = @_;
 6529: 
 6530:     # Qon 'letter' implies for each slot in currquest we have:
 6531:     #    ? or * for doubles, a letter in A-Z for a bubble, and
 6532:     #    about anything else (esp. a value of Qoff) for missing
 6533:     #    bubbles.
 6534:     #
 6535:     # Qon 'number' implies each slot gives a digit that indexes the
 6536:     #    bubbles filled, or Qoff, or a non-number for unbubbled lines,
 6537:     #    and * or ? for double bubbles on a single line.
 6538:     #
 6539: 
 6540:     my $matchon;
 6541:     if ($$scantron_config{'Qon'} eq 'letter') {
 6542:         $matchon = '[A-Z]';
 6543:     } elsif ($$scantron_config{'Qon'} eq 'number') {
 6544:         $matchon = '\d';
 6545:     }
 6546:     my $occurrences = 0;
 6547:     my $responsenum = $questnum-1;
 6548:     if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6549:        $responsenum = $respnumlookup->{$questnum-1} 
 6550:     }
 6551:     if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
 6552:         ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
 6553:         ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
 6554:         ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
 6555:         ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
 6556:         ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
 6557:         my @singlelines = split('',$currquest);
 6558:         foreach my $entry (@singlelines) {
 6559:             $occurrences = &occurence_count($entry,$matchon);
 6560:             if ($occurrences > 1) {
 6561:                 last;
 6562:             }
 6563:         }
 6564:     } else {
 6565:         $occurrences = &occurence_count($currquest,$matchon); 
 6566:     }
 6567:     if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
 6568:         push(@{$record->{'scantron.doubleerror'}},$quest_id);
 6569:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6570:             my $bubble = substr($currquest,$ans,1);
 6571:             if ($bubble =~ /$matchon/ ) {
 6572:                 if ($$scantron_config{'Qon'} eq 'number') {
 6573:                     if ($bubble == 0) {
 6574:                         $bubble = 10; 
 6575:                     }
 6576:                     $record->{"scantron.$ansnum.answer"} = 
 6577:                         $alphabet->[$bubble-1];
 6578:                 } else {
 6579:                     $record->{"scantron.$ansnum.answer"} = $bubble;
 6580:                 }
 6581:             } else {
 6582:                 $record->{"scantron.$ansnum.answer"}='';
 6583:             }
 6584:             $ansnum++;
 6585:         }
 6586:     } elsif (!defined($currquest)
 6587:             || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
 6588:             || (&occurence_count($currquest,$matchon) == 0)) {
 6589:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
 6590:             $record->{"scantron.$ansnum.answer"}='';
 6591:             $ansnum++;
 6592:         }
 6593:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
 6594:             push(@{$record->{'scantron.missingerror'}},$quest_id);
 6595:         }
 6596:     } else {
 6597:         if ($$scantron_config{'Qon'} eq 'number') {
 6598:             $currquest = &digits_to_letters($currquest);            
 6599:         }
 6600:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6601:             my $bubble = substr($currquest,$ans,1);
 6602:             $record->{"scantron.$ansnum.answer"} = $bubble;
 6603:             $ansnum++;
 6604:         }
 6605:     }
 6606:     return $ansnum;
 6607: }
 6608: 
 6609: sub scantron_validator_positional {
 6610:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
 6611:         $whichline,$alphabet,$record,$scantron_config,$scan_data,
 6612:         $randomorder,$randompick,$respnumlookup) = @_;
 6613: 
 6614:     # Otherwise there's a positional notation;
 6615:     # each bubble line requires Qlength items, and there are filled in
 6616:     # bubbles for each case where there 'Qon' characters.
 6617:     #
 6618: 
 6619:     my @array=split($$scantron_config{'Qon'},$currquest,-1);
 6620: 
 6621:     # If the split only gives us one element.. the full length of the
 6622:     # answer string, no bubbles are filled in:
 6623: 
 6624:     if ($answers_needed eq '') {
 6625:         return;
 6626:     }
 6627: 
 6628:     if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
 6629:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
 6630:             $record->{"scantron.$ansnum.answer"}='';
 6631:             $ansnum++;
 6632:         }
 6633:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
 6634:             push(@{$record->{"scantron.missingerror"}},$quest_id);
 6635:         }
 6636:     } elsif (scalar(@array) == 2) {
 6637:         my $location = length($array[0]);
 6638:         my $line_num = int($location / $$scantron_config{'Qlength'});
 6639:         my $bubble   = $alphabet->[$location % $$scantron_config{'Qlength'}];
 6640:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6641:             if ($ans eq $line_num) {
 6642:                 $record->{"scantron.$ansnum.answer"} = $bubble;
 6643:             } else {
 6644:                 $record->{"scantron.$ansnum.answer"} = ' ';
 6645:             }
 6646:             $ansnum++;
 6647:          }
 6648:     } else {
 6649:         #  If there's more than one instance of a bubble character
 6650:         #  That's a double bubble; with positional notation we can
 6651:         #  record all the bubbles filled in as well as the
 6652:         #  fact this response consists of multiple bubbles.
 6653:         #
 6654:         my $responsenum = $questnum-1;
 6655:         if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6656:             $responsenum = $respnumlookup->{$questnum-1}
 6657:         }
 6658:         if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
 6659:             ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
 6660:             ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
 6661:             ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
 6662:             ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
 6663:             ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
 6664:             my $doubleerror = 0;
 6665:             while (($currquest >= $$scantron_config{'Qlength'}) && 
 6666:                    (!$doubleerror)) {
 6667:                my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
 6668:                $currquest = substr($currquest,$$scantron_config{'Qlength'});
 6669:                my @currarray = split($$scantron_config{'Qon'},$currline,-1);
 6670:                if (length(@currarray) > 2) {
 6671:                    $doubleerror = 1;
 6672:                } 
 6673:             }
 6674:             if ($doubleerror) {
 6675:                 push(@{$record->{'scantron.doubleerror'}},$quest_id);
 6676:             }
 6677:         } else {
 6678:             push(@{$record->{'scantron.doubleerror'}},$quest_id);
 6679:         }
 6680:         my $item = $ansnum;
 6681:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6682:             $record->{"scantron.$item.answer"} = '';
 6683:             $item ++;
 6684:         }
 6685: 
 6686:         my @ans=@array;
 6687:         my $i=0;
 6688:         my $increment = 0;
 6689:         while ($#ans) {
 6690:             $i+=length($ans[0]) + $increment;
 6691:             my $line   = int($i/$$scantron_config{'Qlength'} + $ansnum);
 6692:             my $bubble = $i%$$scantron_config{'Qlength'};
 6693:             $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
 6694:             shift(@ans);
 6695:             $increment = 1;
 6696:         }
 6697:         $ansnum += $answers_needed;
 6698:     }
 6699:     return $ansnum;
 6700: }
 6701: 
 6702: =pod
 6703: 
 6704: =item scantron_add_delay
 6705: 
 6706:    Adds an error message that occurred during the grading phase to a
 6707:    queue of messages to be shown after grading pass is complete
 6708: 
 6709:  Arguments:
 6710:    $delayqueue  - arrary ref of hash ref of error messages
 6711:    $scanline    - the scanline that caused the error
 6712:    $errormesage - the error message
 6713:    $errorcode   - a numeric code for the error
 6714: 
 6715:  Side Effects:
 6716:    updates the $delayqueue to have a new hash ref of the error
 6717: 
 6718: =cut
 6719: 
 6720: sub scantron_add_delay {
 6721:     my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
 6722:     push(@$delayqueue,
 6723: 	 {'line' => $scanline, 'emsg' => $errormessage,
 6724: 	  'ecode' => $errorcode }
 6725: 	 );
 6726: }
 6727: 
 6728: =pod
 6729: 
 6730: =item scantron_find_student
 6731: 
 6732:    Finds the username for the current scanline
 6733: 
 6734:   Arguments:
 6735:    $scantron_record - hash result from scantron_parse_scanline
 6736:    $scan_data       - hash of correction information 
 6737:                       (see &scantron_getfile() form more information)
 6738:    $idmap           - hash from &username_to_idmap()
 6739:    $line            - number of current scanline
 6740:  
 6741:   Returns:
 6742:    Either 'username:domain' or undef if unknown
 6743: 
 6744: =cut
 6745: 
 6746: sub scantron_find_student {
 6747:     my ($scantron_record,$scan_data,$idmap,$line)=@_;
 6748:     my $scanID=$$scantron_record{'scantron.ID'};
 6749:     if ($scanID =~ /^\s*$/) {
 6750:  	return &scan_data($scan_data,"$line.user");
 6751:     }
 6752:     foreach my $id (keys(%$idmap)) {
 6753:  	if (lc($id) eq lc($scanID)) {
 6754:  	    return $$idmap{$id};
 6755:  	}
 6756:     }
 6757:     return undef;
 6758: }
 6759: 
 6760: =pod
 6761: 
 6762: =item scantron_filter
 6763: 
 6764:    Filter sub for lonnavmaps, filters out hidden resources if ignore
 6765:    hidden resources was selected
 6766: 
 6767: =cut
 6768: 
 6769: sub scantron_filter {
 6770:     my ($curres)=@_;
 6771: 
 6772:     if (ref($curres) && $curres->is_problem()) {
 6773: 	# if the user has asked to not have either hidden
 6774: 	# or 'randomout' controlled resources to be graded
 6775: 	# don't include them
 6776: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
 6777: 	    && $curres->randomout) {
 6778: 	    return 0;
 6779: 	}
 6780: 	return 1;
 6781:     }
 6782:     return 0;
 6783: }
 6784: 
 6785: =pod
 6786: 
 6787: =item scantron_process_corrections
 6788: 
 6789:    Gets correction information out of submitted form data and corrects
 6790:    the scanline
 6791: 
 6792: =cut
 6793: 
 6794: sub scantron_process_corrections {
 6795:     my ($r) = @_;
 6796:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 6797:     my ($scanlines,$scan_data)=&scantron_getfile();
 6798:     my $classlist=&Apache::loncoursedata::get_classlist();
 6799:     my $which=$env{'form.scantron_line'};
 6800:     my $line=&scantron_get_line($scanlines,$scan_data,$which);
 6801:     my ($skip,$err,$errmsg);
 6802:     if ($env{'form.scantron_skip_record'}) {
 6803: 	$skip=1;
 6804:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
 6805: 	my $newstudent=$env{'form.scantron_username'}.':'.
 6806: 	    $env{'form.scantron_domain'};
 6807: 	my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
 6808: 	($line,$err,$errmsg)=
 6809: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
 6810: 				     'ID',{'newid'=>$newid,
 6811: 				    'username'=>$env{'form.scantron_username'},
 6812: 				    'domain'=>$env{'form.scantron_domain'}});
 6813:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
 6814: 	my $resolution=$env{'form.scantron_CODE_resolution'};
 6815: 	my $newCODE;
 6816: 	my %args;
 6817: 	if      ($resolution eq 'use_unfound') {
 6818: 	    $newCODE='use_unfound';
 6819: 	} elsif ($resolution eq 'use_found') {
 6820: 	    $newCODE=$env{'form.scantron_CODE_selectedvalue'};
 6821: 	} elsif ($resolution eq 'use_typed') {
 6822: 	    $newCODE=$env{'form.scantron_CODE_newvalue'};
 6823: 	} elsif ($resolution =~ /^use_closest_(\d+)/) {
 6824: 	    $newCODE=$env{"form.scantron_CODE_closest_$1"};
 6825: 	}
 6826: 	if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
 6827: 	    $args{'CODE_ignore_dup'}=1;
 6828: 	}
 6829: 	$args{'CODE'}=$newCODE;
 6830: 	($line,$err,$errmsg)=
 6831: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
 6832: 				     'CODE',\%args);
 6833:     } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
 6834: 	foreach my $question (split(',',$env{'form.scantron_questions'})) {
 6835: 	    ($line,$err,$errmsg)=
 6836: 		&scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
 6837: 					 $which,'answer',
 6838: 					 { 'question'=>$question,
 6839: 		      		   'response'=>$env{"form.scantron_correct_Q_$question"},
 6840:                                    'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
 6841: 	    if ($err) { last; }
 6842: 	}
 6843:     }
 6844:     if ($err) {
 6845:         $r->print(
 6846:             '<p class="LC_error">'
 6847:            .&mt('Unable to accept last correction, an error occurred: [_1]',
 6848:                 $errmsg)
 6849:            .'</p>');
 6850:     } else {
 6851: 	&scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
 6852: 	&scantron_putfile($scanlines,$scan_data);
 6853:     }
 6854: }
 6855: 
 6856: =pod
 6857: 
 6858: =item reset_skipping_status
 6859: 
 6860:    Forgets the current set of remember skipped scanlines (and thus
 6861:    reverts back to considering all lines in the
 6862:    scantron_skipped_<filename> file)
 6863: 
 6864: =cut
 6865: 
 6866: sub reset_skipping_status {
 6867:     my ($scanlines,$scan_data)=&scantron_getfile();
 6868:     &scan_data($scan_data,'remember_skipping',undef,1);
 6869:     &scantron_putfile(undef,$scan_data);
 6870: }
 6871: 
 6872: =pod
 6873: 
 6874: =item start_skipping
 6875: 
 6876:    Marks a scanline to be skipped. 
 6877: 
 6878: =cut
 6879: 
 6880: sub start_skipping {
 6881:     my ($scan_data,$i)=@_;
 6882:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
 6883:     if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
 6884: 	$remembered{$i}=2;
 6885:     } else {
 6886: 	$remembered{$i}=1;
 6887:     }
 6888:     &scan_data($scan_data,'remember_skipping',join(':',%remembered));
 6889: }
 6890: 
 6891: =pod
 6892: 
 6893: =item should_be_skipped
 6894: 
 6895:    Checks whether a scanline should be skipped.
 6896: 
 6897: =cut
 6898: 
 6899: sub should_be_skipped {
 6900:     my ($scanlines,$scan_data,$i)=@_;
 6901:     if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
 6902: 	# not redoing old skips
 6903: 	if ($scanlines->{'skipped'}[$i]) { return 1; }
 6904: 	return 0;
 6905:     }
 6906:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
 6907: 
 6908:     if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
 6909: 	return 0;
 6910:     }
 6911:     return 1;
 6912: }
 6913: 
 6914: =pod
 6915: 
 6916: =item remember_current_skipped
 6917: 
 6918:    Discovers what scanlines are in the scantron_skipped_<filename>
 6919:    file and remembers them into scan_data for later use.
 6920: 
 6921: =cut
 6922: 
 6923: sub remember_current_skipped {
 6924:     my ($scanlines,$scan_data)=&scantron_getfile();
 6925:     my %to_remember;
 6926:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 6927: 	if ($scanlines->{'skipped'}[$i]) {
 6928: 	    $to_remember{$i}=1;
 6929: 	}
 6930:     }
 6931: 
 6932:     &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
 6933:     &scantron_putfile(undef,$scan_data);
 6934: }
 6935: 
 6936: =pod
 6937: 
 6938: =item check_for_error
 6939: 
 6940:     Checks if there was an error when attempting to remove a specific
 6941:     scantron_.. bubblesheet data file. Prints out an error if
 6942:     something went wrong.
 6943: 
 6944: =cut
 6945: 
 6946: sub check_for_error {
 6947:     my ($r,$result)=@_;
 6948:     if ($result ne 'ok' && $result ne 'not_found' ) {
 6949: 	$r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
 6950:     }
 6951: }
 6952: 
 6953: =pod
 6954: 
 6955: =item scantron_warning_screen
 6956: 
 6957:    Interstitial screen to make sure the operator has selected the
 6958:    correct options before we start the validation phase.
 6959: 
 6960: =cut
 6961: 
 6962: sub scantron_warning_screen {
 6963:     my ($button_text,$symb)=@_;
 6964:     my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
 6965:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 6966:     my $CODElist;
 6967:     if ($scantron_config{'CODElocation'} &&
 6968: 	$scantron_config{'CODEstart'} &&
 6969: 	$scantron_config{'CODElength'}) {
 6970: 	$CODElist=$env{'form.scantron_CODElist'};
 6971: 	if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">'.&mt('None').'</span>'; }
 6972: 	$CODElist=
 6973: 	    '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
 6974: 	    $env{'form.scantron_CODElist'}.'</tt></td></tr>';
 6975:     }
 6976:     my $lastbubblepoints;
 6977:     if ($env{'form.scantron_lastbubblepoints'} ne '') {
 6978:         $lastbubblepoints =
 6979:             '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
 6980:             $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
 6981:     }
 6982:     return ('
 6983: <p>
 6984: <span class="LC_warning">
 6985: '.&mt("Please double check the information below before clicking on '[_1]'",&mt($button_text)).'</span>
 6986: </p>
 6987: <table>
 6988: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
 6989: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
 6990: '.$CODElist.$lastbubblepoints.'
 6991: </table>
 6992: <p> '.&mt("If this information is correct, please click on '[_1]'.",&mt($button_text)).'<br />
 6993: '.&mt('If something is incorrect, please return to [_1]Grade/Manage/Review Bubblesheets[_2] to start over.','<a href="/adm/grades?symb='.$symb.'&command=scantron_selectphase" class="LC_info">','</a>').'</p>
 6994: 
 6995: <br />
 6996: ');
 6997: }
 6998: 
 6999: =pod
 7000: 
 7001: =item scantron_do_warning
 7002: 
 7003:    Check if the operator has picked something for all required
 7004:    fields. Error out if something is missing.
 7005: 
 7006: =cut
 7007: 
 7008: sub scantron_do_warning {
 7009:     my ($r,$symb)=@_;
 7010:     if (!$symb) {return '';}
 7011:     my $default_form_data=&defaultFormData($symb);
 7012:     $r->print(&scantron_form_start().$default_form_data);
 7013:     if ( $env{'form.selectpage'} eq '' ||
 7014: 	 $env{'form.scantron_selectfile'} eq '' ||
 7015: 	 $env{'form.scantron_format'} eq '' ) {
 7016: 	$r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
 7017: 	if ( $env{'form.selectpage'} eq '') {
 7018: 	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
 7019: 	} 
 7020: 	if ( $env{'form.scantron_selectfile'} eq '') {
 7021: 	    $r->print('<p><span class="LC_error">'.&mt("You have not selected a file that contains the student's response data.").'</span></p>');
 7022: 	} 
 7023: 	if ( $env{'form.scantron_format'} eq '') {
 7024: 	    $r->print('<p><span class="LC_error">'.&mt("You have not selected the format of the student's response data.").'</span></p>');
 7025: 	} 
 7026:     } else {
 7027: 	my $warning=&scantron_warning_screen('Grading: Validate Records',$symb);
 7028:         my $bubbledbyhand=&hand_bubble_option();
 7029: 	$r->print('
 7030: '.$warning.$bubbledbyhand.'
 7031: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
 7032: <input type="hidden" name="command" value="scantron_validate" />
 7033: ');
 7034:     }
 7035:     $r->print("</form><br />");
 7036:     return '';
 7037: }
 7038: 
 7039: =pod
 7040: 
 7041: =item scantron_form_start
 7042: 
 7043:     html hidden input for remembering all selected grading options
 7044: 
 7045: =cut
 7046: 
 7047: sub scantron_form_start {
 7048:     my ($max_bubble)=@_;
 7049:     my $result= <<SCANTRONFORM;
 7050: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
 7051:   <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
 7052:   <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
 7053:   <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
 7054:   <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
 7055:   <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
 7056:   <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
 7057:   <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
 7058:   <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
 7059:   <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
 7060: SCANTRONFORM
 7061: 
 7062:   my $line = 0;
 7063:     while (defined($env{"form.scantron.bubblelines.$line"})) {
 7064:        my $chunk =
 7065: 	   '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
 7066:        $chunk .=
 7067: 	   '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
 7068:        $chunk .= 
 7069:            '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
 7070:        $chunk .=
 7071:            '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
 7072:        $chunk .=
 7073:            '<input type="hidden" name="scantron.residpart.'.$line.'" value="'.$env{"form.scantron.residpart.$line"}.'" />'."\n";
 7074:        $result .= $chunk;
 7075:        $line++;
 7076:     }
 7077:     return $result;
 7078: }
 7079: 
 7080: =pod
 7081: 
 7082: =item scantron_validate_file
 7083: 
 7084:     Dispatch routine for doing validation of a bubblesheet data file.
 7085: 
 7086:     Also processes any necessary information resets that need to
 7087:     occur before validation begins (ignore previous corrections,
 7088:     restarting the skipped records processing)
 7089: 
 7090: =cut
 7091: 
 7092: sub scantron_validate_file {
 7093:     my ($r,$symb) = @_;
 7094:     if (!$symb) {return '';}
 7095:     my $default_form_data=&defaultFormData($symb);
 7096:     
 7097:     # do the detection of only doing skipped records first before we delete
 7098:     # them when doing the corrections reset
 7099:     if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
 7100: 	&reset_skipping_status();
 7101:     }
 7102:     if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
 7103: 	&remember_current_skipped();
 7104: 	$env{'form.scantron_options_redo'}='redo_skipped_ready';
 7105:     }
 7106: 
 7107:     if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
 7108: 	&check_for_error($r,&scantron_remove_file('corrected'));
 7109: 	&check_for_error($r,&scantron_remove_file('skipped'));
 7110: 	&check_for_error($r,&scantron_remove_scan_data());
 7111: 	$env{'form.scantron_options_ignore'}='done';
 7112:     }
 7113: 
 7114:     if ($env{'form.scantron_corrections'}) {
 7115: 	&scantron_process_corrections($r);
 7116:     }
 7117:     $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
 7118:     #get the student pick code ready
 7119:     $r->print(&Apache::loncommon::studentbrowser_javascript());
 7120:     my $nav_error;
 7121:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 7122:     my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
 7123:     if ($nav_error) {
 7124:         $r->print(&navmap_errormsg());
 7125:         return '';
 7126:     }
 7127:     my $result=&scantron_form_start($max_bubble).$default_form_data;
 7128:     if ($env{'form.scantron_lastbubblepoints'} ne '') {
 7129:         $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
 7130:     }
 7131:     $r->print($result);
 7132:     
 7133:     my @validate_phases=( 'sequence',
 7134: 			  'ID',
 7135: 			  'CODE',
 7136: 			  'doublebubble',
 7137: 			  'missingbubbles');
 7138:     if (!$env{'form.validatepass'}) {
 7139: 	$env{'form.validatepass'} = 0;
 7140:     }
 7141:     my $currentphase=$env{'form.validatepass'};
 7142: 
 7143: 
 7144:     my $stop=0;
 7145:     while (!$stop && $currentphase < scalar(@validate_phases)) {
 7146: 	$r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
 7147: 	$r->rflush();
 7148:      
 7149: 	my $which="scantron_validate_".$validate_phases[$currentphase];
 7150: 	{
 7151: 	    no strict 'refs';
 7152: 	    ($stop,$currentphase)=&$which($r,$currentphase);
 7153: 	}
 7154:     }
 7155:     if (!$stop) {
 7156: 	my $warning=&scantron_warning_screen('Start Grading',$symb);
 7157: 	$r->print(&mt('Validation process complete.').'<br />'.
 7158:                   $warning.
 7159:                   &mt('Perform verification for each student after storage of submissions?').
 7160:                   '&nbsp;<span class="LC_nobreak"><label>'.
 7161:                   '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
 7162:                   ('&nbsp;'x3).'<label>'.
 7163:                   '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
 7164:                   '</label></span><br />'.
 7165:                   &mt('Grading will take longer if you use verification.').'<br />'.
 7166:                   &mt('Otherwise, Grade/Manage/Review Bubblesheets [_1] Review bubblesheet data can be used once grading is complete.','&raquo;').'<br /><br />'.
 7167:                   '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
 7168:                   '<input type="hidden" name="command" value="scantron_process" />'."\n");
 7169:     } else {
 7170: 	$r->print('<input type="hidden" name="command" value="scantron_validate" />');
 7171: 	$r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
 7172:     }
 7173:     if ($stop) {
 7174: 	if ($validate_phases[$currentphase] eq 'sequence') {
 7175: 	    $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' &rarr; " />');
 7176: 	    $r->print(' '.&mt('this error').' <br />');
 7177: 
 7178: 	    $r->print('<p>'.&mt('Or return to [_1]Grade/Manage/Review Bubblesheets[_2] to start over.','<a href="/adm/grades?symb='.$symb.'&command=scantron_selectphase" class="LC_info">','</a>').'</p>');
 7179: 	} else {
 7180:             if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
 7181: 	        $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' &rarr;" onclick="javascript:verify_bubble_radio(this.form)" />');
 7182:             } else {
 7183:                 $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' &rarr;" />');
 7184:             }
 7185: 	    $r->print(' '.&mt('using corrected info').' <br />');
 7186: 	    $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
 7187: 	    $r->print(" ".&mt("this scanline saving it for later."));
 7188: 	}
 7189:     }
 7190:     $r->print(" </form><br />");
 7191:     return '';
 7192: }
 7193: 
 7194: 
 7195: =pod
 7196: 
 7197: =item scantron_remove_file
 7198: 
 7199:    Removes the requested bubblesheet data file, makes sure that
 7200:    scantron_original_<filename> is never removed
 7201: 
 7202: 
 7203: =cut
 7204: 
 7205: sub scantron_remove_file {
 7206:     my ($which)=@_;
 7207:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7208:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7209:     my $file='scantron_';
 7210:     if ($which eq 'corrected' || $which eq 'skipped') {
 7211: 	$file.=$which.'_';
 7212:     } else {
 7213: 	return 'refused';
 7214:     }
 7215:     $file.=$env{'form.scantron_selectfile'};
 7216:     return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
 7217: }
 7218: 
 7219: 
 7220: =pod
 7221: 
 7222: =item scantron_remove_scan_data
 7223: 
 7224:    Removes all scan_data correction for the requested bubblesheet
 7225:    data file.  (In the case that both the are doing skipped records we need
 7226:    to remember the old skipped lines for the time being so that element
 7227:    persists for a while.)
 7228: 
 7229: =cut
 7230: 
 7231: sub scantron_remove_scan_data {
 7232:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7233:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7234:     my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
 7235:     my @todelete;
 7236:     my $filename=$env{'form.scantron_selectfile'};
 7237:     foreach my $key (@keys) {
 7238: 	if ($key=~/^\Q$filename\E_/) {
 7239: 	    if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
 7240: 		$key=~/remember_skipping/) {
 7241: 		next;
 7242: 	    }
 7243: 	    push(@todelete,$key);
 7244: 	}
 7245:     }
 7246:     my $result;
 7247:     if (@todelete) {
 7248: 	$result = &Apache::lonnet::del('nohist_scantrondata',
 7249: 				       \@todelete,$cdom,$cname);
 7250:     } else {
 7251: 	$result = 'ok';
 7252:     }
 7253:     return $result;
 7254: }
 7255: 
 7256: 
 7257: =pod
 7258: 
 7259: =item scantron_getfile
 7260: 
 7261:     Fetches the requested bubblesheet data file (all 3 versions), and
 7262:     the scan_data hash
 7263:   
 7264:   Arguments:
 7265:     None
 7266: 
 7267:   Returns:
 7268:     2 hash references
 7269: 
 7270:      - first one has 
 7271:          orig      -
 7272:          corrected -
 7273:          skipped   -  each of which points to an array ref of the specified
 7274:                       file broken up into individual lines
 7275:          count     - number of scanlines
 7276:  
 7277:      - second is the scan_data hash possible keys are
 7278:        ($number refers to scanline numbered $number and thus the key affects
 7279:         only that scanline
 7280:         $bubline refers to the specific bubble line element and the aspects
 7281:         refers to that specific bubble line element)
 7282: 
 7283:        $number.user - username:domain to use
 7284:        $number.CODE_ignore_dup 
 7285:                     - ignore the duplicate CODE error 
 7286:        $number.useCODE
 7287:                     - use the CODE in the scanline as is
 7288:        $number.no_bubble.$bubline
 7289:                     - it is valid that there is no bubbled in bubble
 7290:                       at $number $bubline
 7291:        remember_skipping
 7292:                     - a frozen hash containing keys of $number and values
 7293:                       of either 
 7294:                         1 - we are on a 'do skipped records pass' and plan
 7295:                             on processing this line
 7296:                         2 - we are on a 'do skipped records pass' and this
 7297:                             scanline has been marked to skip yet again
 7298: 
 7299: =cut
 7300: 
 7301: sub scantron_getfile {
 7302:     #FIXME really would prefer a scantron directory
 7303:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7304:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7305:     my $lines;
 7306:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 7307: 		       'scantron_orig_'.$env{'form.scantron_selectfile'});
 7308:     my %scanlines;
 7309:     $scanlines{'orig'}=[(split("\n",$lines,-1))];
 7310:     my $temp=$scanlines{'orig'};
 7311:     $scanlines{'count'}=$#$temp;
 7312: 
 7313:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 7314: 		       'scantron_corrected_'.$env{'form.scantron_selectfile'});
 7315:     if ($lines eq '-1') {
 7316: 	$scanlines{'corrected'}=[];
 7317:     } else {
 7318: 	$scanlines{'corrected'}=[(split("\n",$lines,-1))];
 7319:     }
 7320:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 7321: 		       'scantron_skipped_'.$env{'form.scantron_selectfile'});
 7322:     if ($lines eq '-1') {
 7323: 	$scanlines{'skipped'}=[];
 7324:     } else {
 7325: 	$scanlines{'skipped'}=[(split("\n",$lines,-1))];
 7326:     }
 7327:     my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
 7328:     if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
 7329:     my %scan_data = @tmp;
 7330:     return (\%scanlines,\%scan_data);
 7331: }
 7332: 
 7333: =pod
 7334: 
 7335: =item lonnet_putfile
 7336: 
 7337:    Wrapper routine to call &Apache::lonnet::finishuserfileupload
 7338: 
 7339:  Arguments:
 7340:    $contents - data to store
 7341:    $filename - filename to store $contents into
 7342: 
 7343:  Returns:
 7344:    result value from &Apache::lonnet::finishuserfileupload
 7345: 
 7346: =cut
 7347: 
 7348: sub lonnet_putfile {
 7349:     my ($contents,$filename)=@_;
 7350:     my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7351:     my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7352:     $env{'form.sillywaytopassafilearound'}=$contents;
 7353:     &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
 7354: 
 7355: }
 7356: 
 7357: =pod
 7358: 
 7359: =item scantron_putfile
 7360: 
 7361:     Stores the current version of the bubblesheet data files, and the
 7362:     scan_data hash. (Does not modify the original version only the
 7363:     corrected and skipped versions.
 7364: 
 7365:  Arguments:
 7366:     $scanlines - hash ref that looks like the first return value from
 7367:                  &scantron_getfile()
 7368:     $scan_data - hash ref that looks like the second return value from
 7369:                  &scantron_getfile()
 7370: 
 7371: =cut
 7372: 
 7373: sub scantron_putfile {
 7374:     my ($scanlines,$scan_data) = @_;
 7375:     #FIXME really would prefer a scantron directory
 7376:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7377:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7378:     if ($scanlines) {
 7379: 	my $prefix='scantron_';
 7380: # no need to update orig, shouldn't change
 7381: #   &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
 7382: #		    $env{'form.scantron_selectfile'});
 7383: 	&lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
 7384: 			$prefix.'corrected_'.
 7385: 			$env{'form.scantron_selectfile'});
 7386: 	&lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
 7387: 			$prefix.'skipped_'.
 7388: 			$env{'form.scantron_selectfile'});
 7389:     }
 7390:     &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
 7391: }
 7392: 
 7393: =pod
 7394: 
 7395: =item scantron_get_line
 7396: 
 7397:    Returns the correct version of the scanline
 7398: 
 7399:  Arguments:
 7400:     $scanlines - hash ref that looks like the first return value from
 7401:                  &scantron_getfile()
 7402:     $scan_data - hash ref that looks like the second return value from
 7403:                  &scantron_getfile()
 7404:     $i         - number of the requested line (starts at 0)
 7405: 
 7406:  Returns:
 7407:    A scanline, (either the original or the corrected one if it
 7408:    exists), or undef if the requested scanline should be
 7409:    skipped. (Either because it's an skipped scanline, or it's an
 7410:    unskipped scanline and we are not doing a 'do skipped scanlines'
 7411:    pass.
 7412: 
 7413: =cut
 7414: 
 7415: sub scantron_get_line {
 7416:     my ($scanlines,$scan_data,$i)=@_;
 7417:     if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
 7418:     #if ($scanlines->{'skipped'}[$i]) { return undef; }
 7419:     if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
 7420:     return $scanlines->{'orig'}[$i]; 
 7421: }
 7422: 
 7423: =pod
 7424: 
 7425: =item scantron_todo_count
 7426: 
 7427:     Counts the number of scanlines that need processing.
 7428: 
 7429:  Arguments:
 7430:     $scanlines - hash ref that looks like the first return value from
 7431:                  &scantron_getfile()
 7432:     $scan_data - hash ref that looks like the second return value from
 7433:                  &scantron_getfile()
 7434: 
 7435:  Returns:
 7436:     $count - number of scanlines to process
 7437: 
 7438: =cut
 7439: 
 7440: sub get_todo_count {
 7441:     my ($scanlines,$scan_data)=@_;
 7442:     my $count=0;
 7443:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7444: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7445: 	if ($line=~/^[\s\cz]*$/) { next; }
 7446: 	$count++;
 7447:     }
 7448:     return $count;
 7449: }
 7450: 
 7451: =pod
 7452: 
 7453: =item scantron_put_line
 7454: 
 7455:     Updates the 'corrected' or 'skipped' versions of the bubblesheet
 7456:     data file.
 7457: 
 7458:  Arguments:
 7459:     $scanlines - hash ref that looks like the first return value from
 7460:                  &scantron_getfile()
 7461:     $scan_data - hash ref that looks like the second return value from
 7462:                  &scantron_getfile()
 7463:     $i         - line number to update
 7464:     $newline   - contents of the updated scanline
 7465:     $skip      - if true make the line for skipping and update the
 7466:                  'skipped' file
 7467: 
 7468: =cut
 7469: 
 7470: sub scantron_put_line {
 7471:     my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
 7472:     if ($skip) {
 7473: 	$scanlines->{'skipped'}[$i]=$newline;
 7474: 	&start_skipping($scan_data,$i);
 7475: 	return;
 7476:     }
 7477:     $scanlines->{'corrected'}[$i]=$newline;
 7478: }
 7479: 
 7480: =pod
 7481: 
 7482: =item scantron_clear_skip
 7483: 
 7484:    Remove a line from the 'skipped' file
 7485: 
 7486:  Arguments:
 7487:     $scanlines - hash ref that looks like the first return value from
 7488:                  &scantron_getfile()
 7489:     $scan_data - hash ref that looks like the second return value from
 7490:                  &scantron_getfile()
 7491:     $i         - line number to update
 7492: 
 7493: =cut
 7494: 
 7495: sub scantron_clear_skip {
 7496:     my ($scanlines,$scan_data,$i)=@_;
 7497:     if (exists($scanlines->{'skipped'}[$i])) {
 7498: 	undef($scanlines->{'skipped'}[$i]);
 7499: 	return 1;
 7500:     }
 7501:     return 0;
 7502: }
 7503: 
 7504: =pod
 7505: 
 7506: =item scantron_filter_not_exam
 7507: 
 7508:    Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
 7509:    filter out resources that are not marked as 'exam' mode
 7510: 
 7511: =cut
 7512: 
 7513: sub scantron_filter_not_exam {
 7514:     my ($curres)=@_;
 7515:     
 7516:     if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
 7517: 	# if the user has asked to not have either hidden
 7518: 	# or 'randomout' controlled resources to be graded
 7519: 	# don't include them
 7520: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
 7521: 	    && $curres->randomout) {
 7522: 	    return 0;
 7523: 	}
 7524: 	return 1;
 7525:     }
 7526:     return 0;
 7527: }
 7528: 
 7529: =pod
 7530: 
 7531: =item scantron_validate_sequence
 7532: 
 7533:     Validates the selected sequence, checking for resource that are
 7534:     not set to exam mode.
 7535: 
 7536: =cut
 7537: 
 7538: sub scantron_validate_sequence {
 7539:     my ($r,$currentphase) = @_;
 7540: 
 7541:     my $navmap=Apache::lonnavmaps::navmap->new();
 7542:     unless (ref($navmap)) {
 7543:         $r->print(&navmap_errormsg());
 7544:         return (1,$currentphase);
 7545:     }
 7546:     my (undef,undef,$sequence)=
 7547: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
 7548: 
 7549:     my $map=$navmap->getResourceByUrl($sequence);
 7550: 
 7551:     $r->print('<input type="hidden" name="validate_sequence_exam"
 7552:                                     value="ignore" />');
 7553:     if ($env{'form.validate_sequence_exam'} ne 'ignore') {
 7554: 	my @resources=
 7555: 	    $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
 7556: 	if (@resources) {
 7557: 	    $r->print(
 7558:                 '<p class="LC_warning">'
 7559:                .&mt('Some resources in the sequence currently are not set to'
 7560:                    .' bubblesheet exam mode. Grading these resources currently may not'
 7561:                    .' work correctly.')
 7562:                .'</p>'
 7563:             );
 7564: 	    return (1,$currentphase);
 7565: 	}
 7566:     }
 7567: 
 7568:     return (0,$currentphase+1);
 7569: }
 7570: 
 7571: 
 7572: 
 7573: sub scantron_validate_ID {
 7574:     my ($r,$currentphase) = @_;
 7575:     
 7576:     #get student info
 7577:     my $classlist=&Apache::loncoursedata::get_classlist();
 7578:     my %idmap=&username_to_idmap($classlist);
 7579: 
 7580:     #get scantron line setup
 7581:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 7582:     my ($scanlines,$scan_data)=&scantron_getfile();
 7583: 
 7584:     my $nav_error;
 7585:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
 7586:     if ($nav_error) {
 7587:         $r->print(&navmap_errormsg());
 7588:         return(1,$currentphase);
 7589:     }
 7590: 
 7591:     my %found=('ids'=>{},'usernames'=>{});
 7592:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7593: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7594: 	if ($line=~/^[\s\cz]*$/) { next; }
 7595: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 7596: 						 $scan_data);
 7597: 	my $id=$$scan_record{'scantron.ID'};
 7598: 	my $found;
 7599: 	foreach my $checkid (keys(%idmap)) {
 7600: 	    if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
 7601: 	}
 7602: 	if ($found) {
 7603: 	    my $username=$idmap{$found};
 7604: 	    if ($found{'ids'}{$found}) {
 7605: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 7606: 					 $line,'duplicateID',$found);
 7607: 		return(1,$currentphase);
 7608: 	    } elsif ($found{'usernames'}{$username}) {
 7609: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 7610: 					 $line,'duplicateID',$username);
 7611: 		return(1,$currentphase);
 7612: 	    }
 7613: 	    #FIXME store away line we previously saw the ID on to use above
 7614: 	    $found{'ids'}{$found}++;
 7615: 	    $found{'usernames'}{$username}++;
 7616: 	} else {
 7617: 	    if ($id =~ /^\s*$/) {
 7618: 		my $username=&scan_data($scan_data,"$i.user");
 7619: 		if (defined($username) && $found{'usernames'}{$username}) {
 7620: 		    &scantron_get_correction($r,$i,$scan_record,
 7621: 					     \%scantron_config,
 7622: 					     $line,'duplicateID',$username);
 7623: 		    return(1,$currentphase);
 7624: 		} elsif (!defined($username)) {
 7625: 		    &scantron_get_correction($r,$i,$scan_record,
 7626: 					     \%scantron_config,
 7627: 					     $line,'incorrectID');
 7628: 		    return(1,$currentphase);
 7629: 		}
 7630: 		$found{'usernames'}{$username}++;
 7631: 	    } else {
 7632: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 7633: 					 $line,'incorrectID');
 7634: 		return(1,$currentphase);
 7635: 	    }
 7636: 	}
 7637:     }
 7638: 
 7639:     return (0,$currentphase+1);
 7640: }
 7641: 
 7642: 
 7643: sub scantron_get_correction {
 7644:     my ($r,$i,$scan_record,$scan_config,$line,$error,$arg,
 7645:         $randomorder,$randompick,$respnumlookup,$startline)=@_;
 7646: #FIXME in the case of a duplicated ID the previous line, probably need
 7647: #to show both the current line and the previous one and allow skipping
 7648: #the previous one or the current one
 7649: 
 7650:     if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
 7651:         $r->print(
 7652:             '<p class="LC_warning">'
 7653:            .&mt('An error was detected ([_1]) for PaperID [_2]',
 7654:                 "<b>$error</b>",
 7655:                 '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
 7656:            ."</p> \n");
 7657:     } else {
 7658:         $r->print(
 7659:             '<p class="LC_warning">'
 7660:            .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
 7661:                 "<b>$error</b>", $i, "<pre>$line</pre>")
 7662:            ."</p> \n");
 7663:     }
 7664:     my $message =
 7665:         '<p>'
 7666:        .&mt('The ID on the form is [_1]',
 7667:             "<tt>$$scan_record{'scantron.ID'}</tt>")
 7668:        .'<br />'
 7669:        .&mt('The name on the paper is [_1], [_2]',
 7670:             $$scan_record{'scantron.LastName'},
 7671:             $$scan_record{'scantron.FirstName'})
 7672:        .'</p>';
 7673: 
 7674:     $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
 7675:     $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
 7676:                            # Array populated for doublebubble or
 7677:     my @lines_to_correct;  # missingbubble errors to build javascript
 7678:                            # to validate radio button checking   
 7679: 
 7680:     if ($error =~ /ID$/) {
 7681: 	if ($error eq 'incorrectID') {
 7682:             $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
 7683: 		      "</p>\n");
 7684: 	} elsif ($error eq 'duplicateID') {
 7685:             $r->print('<p class="LC_warning">'.&mt("The encoded ID has also been used by a previous paper [_1]",$arg)."</p>\n");
 7686: 	}
 7687: 	$r->print($message);
 7688: 	$r->print("<p>".&mt("How should I handle this?")." <br /> \n");
 7689: 	$r->print("\n<ul><li> ");
 7690: 	#FIXME it would be nice if this sent back the user ID and
 7691: 	#could do partial userID matches
 7692: 	$r->print(&Apache::loncommon::selectstudent_link('scantronupload',
 7693: 				       'scantron_username','scantron_domain'));
 7694: 	$r->print(": <input type='text' name='scantron_username' value='' />");
 7695: 	$r->print("\n:\n".
 7696: 		 &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
 7697: 
 7698: 	$r->print('</li>');
 7699:     } elsif ($error =~ /CODE$/) {
 7700: 	if ($error eq 'incorrectCODE') {
 7701: 	    $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
 7702: 	} elsif ($error eq 'duplicateCODE') {
 7703: 	    $r->print('<p class="LC_warning">'.&mt("The encoded CODE has also been used by a previous paper [_1], and CODEs are supposed to be unique.",join(', ',@{$arg}))."</p>\n");
 7704: 	}
 7705: 	$r->print("<p>".&mt('The CODE on the form is [_1]',
 7706: 			    "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
 7707:                  ."</p>\n");
 7708: 	$r->print($message);
 7709: 	$r->print("<p>".&mt("How should I handle this?")."</p>\n");
 7710: 	$r->print("\n<br /> ");
 7711: 	my $i=0;
 7712: 	if ($error eq 'incorrectCODE' 
 7713: 	    && $$scan_record{'scantron.CODE'}=~/\S/ ) {
 7714: 	    my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
 7715: 	    if ($closest > 0) {
 7716: 		foreach my $testcode (@{$closest}) {
 7717: 		    my $checked='';
 7718: 		    if (!$i) { $checked=' checked="checked"'; }
 7719: 		    $r->print("
 7720:    <label>
 7721:        <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
 7722:        ".&mt("Use the similar CODE [_1] instead.",
 7723: 	    "<b><tt>".$testcode."</tt></b>")."
 7724:     </label>
 7725:     <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
 7726: 		    $r->print("\n<br />");
 7727: 		    $i++;
 7728: 		}
 7729: 	    }
 7730: 	}
 7731: 	if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
 7732: 	    my $checked; if (!$i) { $checked=' checked="checked"'; }
 7733: 	    $r->print("
 7734:     <label>
 7735:         <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
 7736:        ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
 7737: 	     "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
 7738:     </label>");
 7739: 	    $r->print("\n<br />");
 7740: 	}
 7741: 
 7742: 	$r->print(&Apache::lonhtmlcommon::scripttag(<<ENDSCRIPT));
 7743: function change_radio(field) {
 7744:     var slct=document.scantronupload.scantron_CODE_resolution;
 7745:     var i;
 7746:     for (i=0;i<slct.length;i++) {
 7747:         if (slct[i].value==field) { slct[i].checked=true; }
 7748:     }
 7749: }
 7750: ENDSCRIPT
 7751: 	my $href="/adm/pickcode?".
 7752: 	   "form=".&escape("scantronupload").
 7753: 	   "&scantron_format=".&escape($env{'form.scantron_format'}).
 7754: 	   "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
 7755: 	   "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
 7756: 	   "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
 7757: 	if ($env{'form.scantron_CODElist'} =~ /\S/) { 
 7758: 	    $r->print("
 7759:     <label>
 7760:        <input type='radio' name='scantron_CODE_resolution' value='use_found' />
 7761:        ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
 7762: 	     "<a target='_blank' href='$href'>","</a>")."
 7763:     </label> 
 7764:     ".&mt("Selected CODE is [_1]",'<input readonly="readonly" type="text" size="8" name="scantron_CODE_selectedvalue" onfocus="javascript:change_radio(\'use_found\')" onchange="javascript:change_radio(\'use_found\')" />'));
 7765: 	    $r->print("\n<br />");
 7766: 	}
 7767: 	$r->print("
 7768:     <label>
 7769:        <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
 7770:        ".&mt("Use [_1] as the CODE.",
 7771: 	     "</label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" />"));
 7772: 	$r->print("\n<br /><br />");
 7773:     } elsif ($error eq 'doublebubble') {
 7774: 	$r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
 7775: 
 7776: 	# The form field scantron_questions is acutally a list of line numbers.
 7777: 	# represented by this form so:
 7778: 
 7779: 	my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
 7780:                                                 $respnumlookup,$startline);
 7781: 
 7782: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
 7783: 		  $line_list.'" />');
 7784: 	$r->print($message);
 7785: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
 7786: 	foreach my $question (@{$arg}) {
 7787: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
 7788:                                                    $scan_record, $error,
 7789:                                                    $randomorder,$randompick,
 7790:                                                    $respnumlookup,$startline);
 7791:             push(@lines_to_correct,@linenums);
 7792: 	}
 7793:         $r->print(&verify_bubbles_checked(@lines_to_correct));
 7794:     } elsif ($error eq 'missingbubble') {
 7795: 	$r->print('<p class="LC_warning">'.&mt("There have been [_1]no[_2] bubbles scanned for some question(s)",'<b>','</b>')."</p>\n");
 7796: 	$r->print($message);
 7797: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
 7798: 	$r->print(&mt("Some questions have no scanned bubbles.")."\n");
 7799: 
 7800: 	# The form field scantron_questions is actually a list of line numbers not
 7801: 	# a list of question numbers. Therefore:
 7802: 	#
 7803: 
 7804: 	my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
 7805:                                                 $respnumlookup,$startline);
 7806: 
 7807: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
 7808: 		  $line_list.'" />');
 7809: 	foreach my $question (@{$arg}) {
 7810: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
 7811:                                                    $scan_record, $error,
 7812:                                                    $randomorder,$randompick,
 7813:                                                    $respnumlookup,$startline);
 7814:             push(@lines_to_correct,@linenums);
 7815: 	}
 7816:         $r->print(&verify_bubbles_checked(@lines_to_correct));
 7817:     } else {
 7818: 	$r->print("\n<ul>");
 7819:     }
 7820:     $r->print("\n</li></ul>");
 7821: }
 7822: 
 7823: sub verify_bubbles_checked {
 7824:     my (@ansnums) = @_;
 7825:     my $ansnumstr = join('","',@ansnums);
 7826:     my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
 7827:     &js_escape(\$warning);
 7828:     my $output = &Apache::lonhtmlcommon::scripttag((<<ENDSCRIPT));
 7829: function verify_bubble_radio(form) {
 7830:     var ansnumArray = new Array ("$ansnumstr");
 7831:     var need_bubble_count = 0;
 7832:     for (var i=0; i<ansnumArray.length; i++) {
 7833:         if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
 7834:             var bubble_picked = 0; 
 7835:             for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
 7836:                 if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
 7837:                     bubble_picked = 1;
 7838:                 }
 7839:             }
 7840:             if (bubble_picked == 0) {
 7841:                 need_bubble_count ++;
 7842:             }
 7843:         }
 7844:     }
 7845:     if (need_bubble_count) {
 7846:         alert("$warning");
 7847:         return;
 7848:     }
 7849:     form.submit(); 
 7850: }
 7851: ENDSCRIPT
 7852:     return $output;
 7853: }
 7854: 
 7855: =pod
 7856: 
 7857: =item  questions_to_line_list
 7858: 
 7859: Converts a list of questions into a string of comma separated
 7860: line numbers in the answer sheet used by the questions.  This is
 7861: used to fill in the scantron_questions form field.
 7862: 
 7863:   Arguments:
 7864:      questions    - Reference to an array of questions.
 7865:      randomorder  - True if randomorder in use.
 7866:      randompick   - True if randompick in use.
 7867:      respnumlookup - Reference to HASH mapping question numbers in bubble lines
 7868:                      for current line to question number used for same question
 7869:                      in "Master Seqence" (as seen by Course Coordinator).
 7870:      startline    - Reference to hash where key is question number (0 is first)
 7871:                     and key is number of first bubble line for current student
 7872:                     or code-based randompick and/or randomorder.
 7873: 
 7874: =cut
 7875: 
 7876: 
 7877: sub questions_to_line_list {
 7878:     my ($questions,$randomorder,$randompick,$respnumlookup,$startline) = @_;
 7879:     my @lines;
 7880: 
 7881:     foreach my $item (@{$questions}) {
 7882:         my $question = $item;
 7883:         my ($first,$count,$last);
 7884:         if ($item =~ /^(\d+)\.(\d+)$/) {
 7885:             $question = $1;
 7886:             my $subquestion = $2;
 7887:             my $responsenum = $question-1;
 7888:             if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 7889:                 $responsenum = $respnumlookup->{$question-1};
 7890:                 if (ref($startline) eq 'HASH') {
 7891:                     $first = $startline->{$question-1} + 1;
 7892:                 }
 7893:             } else {
 7894:                 $first = $first_bubble_line{$responsenum} + 1;
 7895:             }
 7896:             my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
 7897:             my $subcount = 1;
 7898:             while ($subcount<$subquestion) {
 7899:                 $first += $subans[$subcount-1];
 7900:                 $subcount ++;
 7901:             }
 7902:             $count = $subans[$subquestion-1];
 7903:         } else {
 7904:             my $responsenum = $question-1;
 7905:             if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 7906:                 $responsenum = $respnumlookup->{$question-1};
 7907:                 if (ref($startline) eq 'HASH') {
 7908:                     $first = $startline->{$question-1} + 1;
 7909:                 }
 7910:             } else {
 7911:                 $first = $first_bubble_line{$responsenum} + 1;
 7912:             }
 7913: 	    $count   = $bubble_lines_per_response{$responsenum};
 7914:         }
 7915:         $last = $first+$count-1;
 7916:         push(@lines, ($first..$last));
 7917:     }
 7918:     return join(',', @lines);
 7919: }
 7920: 
 7921: =pod 
 7922: 
 7923: =item prompt_for_corrections
 7924: 
 7925: Prompts for a potentially multiline correction to the
 7926: user's bubbling (factors out common code from scantron_get_correction
 7927: for multi and missing bubble cases).
 7928: 
 7929:  Arguments:
 7930:    $r           - Apache request object.
 7931:    $question    - The question number to prompt for.
 7932:    $scan_config - The scantron file configuration hash.
 7933:    $scan_record - Reference to the hash that has the the parsed scanlines.
 7934:    $error       - Type of error
 7935:    $randomorder - True if randomorder in use.
 7936:    $randompick  - True if randompick in use.
 7937:    $respnumlookup - Reference to HASH mapping question numbers in bubble lines
 7938:                     for current line to question number used for same question
 7939:                     in "Master Seqence" (as seen by Course Coordinator).
 7940:    $startline   - Reference to hash where key is question number (0 is first)
 7941:                   and value is number of first bubble line for current student
 7942:                   or code-based randompick and/or randomorder.
 7943: 
 7944: 
 7945:  Implicit inputs:
 7946:    %bubble_lines_per_response   - Starting line numbers for each question.
 7947:                                   Numbered from 0 (but question numbers are from
 7948:                                   1.
 7949:    %first_bubble_line           - Starting bubble line for each question.
 7950:    %subdivided_bubble_lines     - optionresponse, matchresponse and rankresponse 
 7951:                                   type problems render as separate sub-questions, 
 7952:                                   in exam mode. This hash contains a 
 7953:                                   comma-separated list of the lines per 
 7954:                                   sub-question.
 7955:    %responsetype_per_response   - essayresponse, formularesponse,
 7956:                                   stringresponse, imageresponse, reactionresponse,
 7957:                                   and organicresponse type problem parts can have
 7958:                                   multiple lines per response if the weight
 7959:                                   assigned exceeds 10.  In this case, only
 7960:                                   one bubble per line is permitted, but more 
 7961:                                   than one line might contain bubbles, e.g.
 7962:                                   bubbling of: line 1 - J, line 2 - J, 
 7963:                                   line 3 - B would assign 22 points.  
 7964: 
 7965: =cut
 7966: 
 7967: sub prompt_for_corrections {
 7968:     my ($r, $question, $scan_config, $scan_record, $error, $randomorder,
 7969:         $randompick, $respnumlookup, $startline) = @_;
 7970:     my ($current_line,$lines);
 7971:     my @linenums;
 7972:     my $questionnum = $question;
 7973:     my ($first,$responsenum);
 7974:     if ($question =~ /^(\d+)\.(\d+)$/) {
 7975:         $question = $1;
 7976:         my $subquestion = $2;
 7977:         if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 7978:             $responsenum = $respnumlookup->{$question-1};
 7979:             if (ref($startline) eq 'HASH') {
 7980:                 $first = $startline->{$question-1};
 7981:             }
 7982:         } else {
 7983:             $responsenum = $question-1;
 7984:             $first = $first_bubble_line{$responsenum};
 7985:         }
 7986:         $current_line = $first + 1 ;
 7987:         my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
 7988:         my $subcount = 1;
 7989:         while ($subcount<$subquestion) {
 7990:             $current_line += $subans[$subcount-1];
 7991:             $subcount ++;
 7992:         }
 7993:         $lines = $subans[$subquestion-1];
 7994:     } else {
 7995:         if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 7996:             $responsenum = $respnumlookup->{$question-1};
 7997:             if (ref($startline) eq 'HASH') { 
 7998:                 $first = $startline->{$question-1};
 7999:             }
 8000:         } else {
 8001:             $responsenum = $question-1;
 8002:             $first = $first_bubble_line{$responsenum};
 8003:         }
 8004:         $current_line = $first + 1;
 8005:         $lines        = $bubble_lines_per_response{$responsenum};
 8006:     }
 8007:     if ($lines > 1) {
 8008:         $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
 8009:         if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
 8010:             ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
 8011:             ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
 8012:             ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
 8013:             ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
 8014:             ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
 8015:             $r->print(
 8016:                 &mt("Although this particular question type requires handgrading, the instructions for this question in the bubblesheet exam directed students to leave [quant,_1,line] blank on their bubblesheets.",$lines)
 8017:                .'<br /><br />'
 8018:                .&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.')
 8019:                .'<br />'
 8020:                .&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.')
 8021:                .'<br />'
 8022:                .&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.")
 8023:                .'<br /><br />'
 8024:             );
 8025:         } else {
 8026:             $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
 8027:         }
 8028:     }
 8029:     for (my $i =0; $i < $lines; $i++) {
 8030:         my $selected = $$scan_record{"scantron.$current_line.answer"};
 8031: 	&scantron_bubble_selector($r,$scan_config,$current_line,
 8032: 	        		  $questionnum,$error,split('', $selected));
 8033:         push(@linenums,$current_line);
 8034: 	$current_line++;
 8035:     }
 8036:     if ($lines > 1) {
 8037: 	$r->print("<hr /><br />");
 8038:     }
 8039:     return @linenums;
 8040: }
 8041: 
 8042: =pod
 8043: 
 8044: =item scantron_bubble_selector
 8045:   
 8046:    Generates the html radiobuttons to correct a single bubble line
 8047:    possibly showing the existing the selected bubbles if known
 8048: 
 8049:  Arguments:
 8050:     $r           - Apache request object
 8051:     $scan_config - hash from &Apache::lonnet::get_scantron_config()
 8052:     $line        - Number of the line being displayed.
 8053:     $questionnum - Question number (may include subquestion)
 8054:     $error       - Type of error.
 8055:     @selected    - Array of bubbles picked on this line.
 8056: 
 8057: =cut
 8058: 
 8059: sub scantron_bubble_selector {
 8060:     my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
 8061:     my $max=$$scan_config{'Qlength'};
 8062: 
 8063:     my $scmode=$$scan_config{'Qon'};
 8064:     if ($scmode eq 'number' || $scmode eq 'letter') { 
 8065:         if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
 8066:             ($$scan_config{'BubblesPerRow'} > 0)) {
 8067:             $max=$$scan_config{'BubblesPerRow'};
 8068:             if (($scmode eq 'number') && ($max > 10)) {
 8069:                 $max = 10;
 8070:             } elsif (($scmode eq 'letter') && $max > 26) {
 8071:                 $max = 26;
 8072:             }
 8073:         } else {
 8074:             $max = 10;
 8075:         }
 8076:     }
 8077: 
 8078:     my @alphabet=('A'..'Z');
 8079:     $r->print(&Apache::loncommon::start_data_table().
 8080:               &Apache::loncommon::start_data_table_row());
 8081:     $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
 8082:     for (my $i=0;$i<$max+1;$i++) {
 8083: 	$r->print("\n".'<td align="center">');
 8084: 	if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
 8085: 	else { $r->print('&nbsp;'); }
 8086: 	$r->print('</td>');
 8087:     }
 8088:     $r->print(&Apache::loncommon::end_data_table_row().
 8089:               &Apache::loncommon::start_data_table_row());
 8090:     for (my $i=0;$i<$max;$i++) {
 8091: 	$r->print("\n".
 8092: 		  '<td><label><input type="radio" name="scantron_correct_Q_'.
 8093: 		  $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
 8094:     }
 8095:     my $nobub_checked = ' ';
 8096:     if ($error eq 'missingbubble') {
 8097:         $nobub_checked = ' checked = "checked" ';
 8098:     }
 8099:     $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
 8100: 	      $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
 8101:               '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
 8102:               $line.'" value="'.$questionnum.'" /></td>');
 8103:     $r->print(&Apache::loncommon::end_data_table_row().
 8104:               &Apache::loncommon::end_data_table());
 8105: }
 8106: 
 8107: =pod
 8108: 
 8109: =item num_matches
 8110: 
 8111:    Counts the number of characters that are the same between the two arguments.
 8112: 
 8113:  Arguments:
 8114:    $orig - CODE from the scanline
 8115:    $code - CODE to match against
 8116: 
 8117:  Returns:
 8118:    $count - integer count of the number of same characters between the
 8119:             two arguments
 8120: 
 8121: =cut
 8122: 
 8123: sub num_matches {
 8124:     my ($orig,$code) = @_;
 8125:     my @code=split(//,$code);
 8126:     my @orig=split(//,$orig);
 8127:     my $same=0;
 8128:     for (my $i=0;$i<scalar(@code);$i++) {
 8129: 	if ($code[$i] eq $orig[$i]) { $same++; }
 8130:     }
 8131:     return $same;
 8132: }
 8133: 
 8134: =pod
 8135: 
 8136: =item scantron_get_closely_matching_CODEs
 8137: 
 8138:    Cycles through all CODEs and finds the set that has the greatest
 8139:    number of same characters as the provided CODE
 8140: 
 8141:  Arguments:
 8142:    $allcodes - hash ref returned by &get_codes()
 8143:    $CODE     - CODE from the current scanline
 8144: 
 8145:  Returns:
 8146:    2 element list
 8147:     - first elements is number of how closely matching the best fit is 
 8148:       (5 means best set has 5 matching characters)
 8149:     - second element is an arrary ref containing the set of valid CODEs
 8150:       that best fit the passed in CODE
 8151: 
 8152: =cut
 8153: 
 8154: sub scantron_get_closely_matching_CODEs {
 8155:     my ($allcodes,$CODE)=@_;
 8156:     my @CODEs;
 8157:     foreach my $testcode (sort(keys(%{$allcodes}))) {
 8158: 	push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
 8159:     }
 8160: 
 8161:     return ($#CODEs,$CODEs[-1]);
 8162: }
 8163: 
 8164: =pod
 8165: 
 8166: =item get_codes
 8167: 
 8168:    Builds a hash which has keys of all of the valid CODEs from the selected
 8169:    set of remembered CODEs.
 8170: 
 8171:  Arguments:
 8172:   $old_name - name of the set of remembered CODEs
 8173:   $cdom     - domain of the course
 8174:   $cnum     - internal course name
 8175: 
 8176:  Returns:
 8177:   %allcodes - keys are the valid CODEs, values are all 1
 8178: 
 8179: =cut
 8180: 
 8181: sub get_codes {
 8182:     my ($old_name, $cdom, $cnum) = @_;
 8183:     if (!$old_name) {
 8184: 	$old_name=$env{'form.scantron_CODElist'};
 8185:     }
 8186:     if (!$cdom) {
 8187: 	$cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
 8188:     }
 8189:     if (!$cnum) {
 8190: 	$cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
 8191:     }
 8192:     my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
 8193: 				    $cdom,$cnum);
 8194:     my %allcodes;
 8195:     if ($result{"type\0$old_name"} eq 'number') {
 8196: 	%allcodes=map {($_,1)} split(',',$result{$old_name});
 8197:     } else {
 8198: 	%allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
 8199:     }
 8200:     return %allcodes;
 8201: }
 8202: 
 8203: =pod
 8204: 
 8205: =item scantron_validate_CODE
 8206: 
 8207:    Validates all scanlines in the selected file to not have any
 8208:    invalid or underspecified CODEs and that none of the codes are
 8209:    duplicated if this was requested.
 8210: 
 8211: =cut
 8212: 
 8213: sub scantron_validate_CODE {
 8214:     my ($r,$currentphase) = @_;
 8215:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 8216:     if ($scantron_config{'CODElocation'} &&
 8217: 	$scantron_config{'CODEstart'} &&
 8218: 	$scantron_config{'CODElength'}) {
 8219: 	if (!defined($env{'form.scantron_CODElist'})) {
 8220: 	    &FIXME_blow_up()
 8221: 	}
 8222:     } else {
 8223: 	return (0,$currentphase+1);
 8224:     }
 8225:     
 8226:     my %usedCODEs;
 8227: 
 8228:     my %allcodes=&get_codes();
 8229: 
 8230:     my $nav_error;
 8231:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
 8232:     if ($nav_error) {
 8233:         $r->print(&navmap_errormsg());
 8234:         return(1,$currentphase);
 8235:     }
 8236: 
 8237:     my ($scanlines,$scan_data)=&scantron_getfile();
 8238:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 8239: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8240: 	if ($line=~/^[\s\cz]*$/) { next; }
 8241: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 8242: 						 $scan_data);
 8243: 	my $CODE=$$scan_record{'scantron.CODE'};
 8244: 	my $error=0;
 8245: 	if (!&Apache::lonnet::validCODE($CODE)) {
 8246: 	    &scantron_get_correction($r,$i,$scan_record,
 8247: 				     \%scantron_config,
 8248: 				     $line,'incorrectCODE',\%allcodes);
 8249: 	    return(1,$currentphase);
 8250: 	}
 8251: 	if (%allcodes && !exists($allcodes{$CODE}) 
 8252: 	    && !$$scan_record{'scantron.useCODE'}) {
 8253: 	    &scantron_get_correction($r,$i,$scan_record,
 8254: 				     \%scantron_config,
 8255: 				     $line,'incorrectCODE',\%allcodes);
 8256: 	    return(1,$currentphase);
 8257: 	}
 8258: 	if (exists($usedCODEs{$CODE}) 
 8259: 	    && $env{'form.scantron_CODEunique'} eq 'yes'
 8260: 	    && !$$scan_record{'scantron.CODE_ignore_dup'}) {
 8261: 	    &scantron_get_correction($r,$i,$scan_record,
 8262: 				     \%scantron_config,
 8263: 				     $line,'duplicateCODE',$usedCODEs{$CODE});
 8264: 	    return(1,$currentphase);
 8265: 	}
 8266: 	push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
 8267:     }
 8268:     return (0,$currentphase+1);
 8269: }
 8270: 
 8271: =pod
 8272: 
 8273: =item scantron_validate_doublebubble
 8274: 
 8275:    Validates all scanlines in the selected file to not have any
 8276:    bubble lines with multiple bubbles marked.
 8277: 
 8278: =cut
 8279: 
 8280: sub scantron_validate_doublebubble {
 8281:     my ($r,$currentphase) = @_;
 8282:     #get student info
 8283:     my $classlist=&Apache::loncoursedata::get_classlist();
 8284:     my %idmap=&username_to_idmap($classlist);
 8285:     my (undef,undef,$sequence)=
 8286:         &Apache::lonnet::decode_symb($env{'form.selectpage'});
 8287: 
 8288:     #get scantron line setup
 8289:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 8290:     my ($scanlines,$scan_data)=&scantron_getfile();
 8291: 
 8292:     my $navmap = Apache::lonnavmaps::navmap->new();
 8293:     unless (ref($navmap)) {
 8294:         $r->print(&navmap_errormsg());
 8295:         return(1,$currentphase);
 8296:     }
 8297:     my $map=$navmap->getResourceByUrl($sequence);
 8298:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8299:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 8300:         %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
 8301:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 8302: 
 8303:     my $nav_error;
 8304:     if (ref($map)) {
 8305:         $randomorder = $map->randomorder();
 8306:         $randompick = $map->randompick();
 8307:         if ($randomorder || $randompick) {
 8308:             $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 8309:             if ($nav_error) {
 8310:                 $r->print(&navmap_errormsg());
 8311:                 return(1,$currentphase);
 8312:             }
 8313:             &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 8314:                                     \%grader_randomlists_by_symb,$bubbles_per_row);
 8315:         }
 8316:     } else {
 8317:         $r->print(&navmap_errormsg());
 8318:         return(1,$currentphase);
 8319:     }
 8320: 
 8321:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
 8322:     if ($nav_error) {
 8323:         $r->print(&navmap_errormsg());
 8324:         return(1,$currentphase);
 8325:     }
 8326: 
 8327:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 8328: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8329: 	if ($line=~/^[\s\cz]*$/) { next; }
 8330: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 8331: 						 $scan_data,undef,\%idmap,$randomorder,
 8332:                                                  $randompick,$sequence,\@master_seq,
 8333:                                                  \%symb_to_resource,\%grader_partids_by_symb,
 8334:                                                  \%orderedforcode,\%respnumlookup,\%startline);
 8335: 	if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
 8336: 	&scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
 8337: 				 'doublebubble',
 8338: 				 $$scan_record{'scantron.doubleerror'},
 8339:                                  $randomorder,$randompick,\%respnumlookup,\%startline);
 8340:     	return (1,$currentphase);
 8341:     }
 8342:     return (0,$currentphase+1);
 8343: }
 8344: 
 8345: 
 8346: sub scantron_get_maxbubble {
 8347:     my ($nav_error,$scantron_config) = @_;
 8348:     if (defined($env{'form.scantron_maxbubble'}) &&
 8349: 	$env{'form.scantron_maxbubble'}) {
 8350: 	&restore_bubble_lines();
 8351: 	return $env{'form.scantron_maxbubble'};
 8352:     }
 8353: 
 8354:     my (undef, undef, $sequence) =
 8355: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
 8356: 
 8357:     my $navmap=Apache::lonnavmaps::navmap->new();
 8358:     unless (ref($navmap)) {
 8359:         if (ref($nav_error)) {
 8360:             $$nav_error = 1;
 8361:         }
 8362:         return;
 8363:     }
 8364:     my $map=$navmap->getResourceByUrl($sequence);
 8365:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8366:     my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
 8367: 
 8368:     &Apache::lonxml::clear_problem_counter();
 8369: 
 8370:     my $uname       = $env{'user.name'};
 8371:     my $udom        = $env{'user.domain'};
 8372:     my $cid         = $env{'request.course.id'};
 8373:     my $total_lines = 0;
 8374:     %bubble_lines_per_response = ();
 8375:     %first_bubble_line         = ();
 8376:     %subdivided_bubble_lines   = ();
 8377:     %responsetype_per_response = ();
 8378:     %masterseq_id_responsenum  = ();
 8379: 
 8380:     my $response_number = 0;
 8381:     my $bubble_line     = 0;
 8382:     foreach my $resource (@resources) {
 8383:         my $resid = $resource->id(); 
 8384:         my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
 8385:                                                           $udom,undef,$bubbles_per_row);
 8386:         if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
 8387: 	    foreach my $part_id (@{$parts}) {
 8388:                 my $lines;
 8389: 
 8390: 	        # TODO - make this a persistent hash not an array.
 8391: 
 8392:                 # optionresponse, matchresponse and rankresponse type items 
 8393:                 # render as separate sub-questions in exam mode.
 8394:                 if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
 8395:                     ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
 8396:                     ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
 8397:                     my ($numbub,$numshown);
 8398:                     if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
 8399:                         if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
 8400:                             $numbub = scalar(@{$analysis->{$part_id.'.options'}});
 8401:                         }
 8402:                     } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
 8403:                         if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
 8404:                             $numbub = scalar(@{$analysis->{$part_id.'.items'}});
 8405:                         }
 8406:                     } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
 8407:                         if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
 8408:                             $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
 8409:                         }
 8410:                     }
 8411:                     if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
 8412:                         $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
 8413:                     }
 8414:                     my $bubbles_per_row =
 8415:                         &bubblesheet_bubbles_per_row($scantron_config);
 8416:                     my $inner_bubble_lines = int($numbub/$bubbles_per_row);
 8417:                     if (($numbub % $bubbles_per_row) != 0) {
 8418:                         $inner_bubble_lines++;
 8419:                     }
 8420:                     for (my $i=0; $i<$numshown; $i++) {
 8421:                         $subdivided_bubble_lines{$response_number} .= 
 8422:                             $inner_bubble_lines.',';
 8423:                     }
 8424:                     $subdivided_bubble_lines{$response_number} =~ s/,$//;
 8425:                     $lines = $numshown * $inner_bubble_lines;
 8426:                 } else {
 8427:                     $lines = $analysis->{"$part_id.bubble_lines"};
 8428:                 }
 8429: 
 8430:                 $first_bubble_line{$response_number} = $bubble_line;
 8431: 	        $bubble_lines_per_response{$response_number} = $lines;
 8432:                 $responsetype_per_response{$response_number} = 
 8433:                     $analysis->{$part_id.'.type'};
 8434:                 $masterseq_id_responsenum{$resid.'_'.$part_id} = $response_number;  
 8435: 	        $response_number++;
 8436: 
 8437: 	        $bubble_line +=  $lines;
 8438: 	        $total_lines +=  $lines;
 8439: 	    }
 8440:         }
 8441:     }
 8442:     &Apache::lonnet::delenv('scantron.');
 8443: 
 8444:     &save_bubble_lines();
 8445:     $env{'form.scantron_maxbubble'} =
 8446: 	$total_lines;
 8447:     return $env{'form.scantron_maxbubble'};
 8448: }
 8449: 
 8450: sub bubblesheet_bubbles_per_row {
 8451:     my ($scantron_config) = @_;
 8452:     my $bubbles_per_row;
 8453:     if (ref($scantron_config) eq 'HASH') {
 8454:         $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
 8455:     }
 8456:     if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
 8457:         $bubbles_per_row = 10;
 8458:     }
 8459:     return $bubbles_per_row;
 8460: }
 8461: 
 8462: sub scantron_validate_missingbubbles {
 8463:     my ($r,$currentphase) = @_;
 8464:     #get student info
 8465:     my $classlist=&Apache::loncoursedata::get_classlist();
 8466:     my %idmap=&username_to_idmap($classlist);
 8467:     my (undef,undef,$sequence)=
 8468:         &Apache::lonnet::decode_symb($env{'form.selectpage'});
 8469: 
 8470:     #get scantron line setup
 8471:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 8472:     my ($scanlines,$scan_data)=&scantron_getfile();
 8473: 
 8474:     my $navmap = Apache::lonnavmaps::navmap->new();
 8475:     unless (ref($navmap)) {
 8476:         $r->print(&navmap_errormsg());
 8477:         return(1,$currentphase);
 8478:     }
 8479: 
 8480:     my $map=$navmap->getResourceByUrl($sequence);
 8481:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8482:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 8483:         %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
 8484:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 8485: 
 8486:     my $nav_error;
 8487:     if (ref($map)) {
 8488:         $randomorder = $map->randomorder();
 8489:         $randompick = $map->randompick();
 8490:         if ($randomorder || $randompick) {
 8491:             $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 8492:             if ($nav_error) {
 8493:                 $r->print(&navmap_errormsg());
 8494:                 return(1,$currentphase);
 8495:             }
 8496:             &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 8497:                                     \%grader_randomlists_by_symb,$bubbles_per_row);
 8498:         }
 8499:     } else {
 8500:         $r->print(&navmap_errormsg());
 8501:         return(1,$currentphase);
 8502:     }
 8503: 
 8504: 
 8505:     my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
 8506:     if ($nav_error) {
 8507:         $r->print(&navmap_errormsg());
 8508:         return(1,$currentphase);
 8509:     }
 8510: 
 8511:     if (!$max_bubble) { $max_bubble=2**31; }
 8512:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 8513: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8514: 	if ($line=~/^[\s\cz]*$/) { next; }
 8515: 	my $scan_record =
 8516:             &scantron_parse_scanline($line,$i,\%scantron_config,$scan_data,undef,\%idmap,
 8517: 				     $randomorder,$randompick,$sequence,\@master_seq,
 8518:                                      \%symb_to_resource,\%grader_partids_by_symb,
 8519:                                      \%orderedforcode,\%respnumlookup,\%startline);
 8520: 	if (!defined($$scan_record{'scantron.missingerror'})) { next; }
 8521: 	my @to_correct;
 8522: 	
 8523: 	# Probably here's where the error is...
 8524: 
 8525: 	foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
 8526:             my $lastbubble;
 8527:             if ($missing =~ /^(\d+)\.(\d+)$/) {
 8528:                my $question = $1;
 8529:                my $subquestion = $2;
 8530:                my ($first,$responsenum);
 8531:                if ($randomorder || $randompick) {
 8532:                    $responsenum = $respnumlookup{$question-1};
 8533:                    $first = $startline{$question-1};
 8534:                } else {
 8535:                    $responsenum = $question-1; 
 8536:                    $first = $first_bubble_line{$responsenum};
 8537:                }
 8538:                if (!defined($first)) { next; }
 8539:                my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
 8540:                my $subcount = 1;
 8541:                while ($subcount<$subquestion) {
 8542:                    $first += $subans[$subcount-1];
 8543:                    $subcount ++;
 8544:                }
 8545:                my $count = $subans[$subquestion-1];
 8546:                $lastbubble = $first + $count;
 8547:             } else {
 8548:                my ($first,$responsenum);
 8549:                if ($randomorder || $randompick) {
 8550:                    $responsenum = $respnumlookup{$missing-1};
 8551:                    $first = $startline{$missing-1};
 8552:                } else {
 8553:                    $responsenum = $missing-1;
 8554:                    $first = $first_bubble_line{$responsenum};
 8555:                }
 8556:                if (!defined($first)) { next; }
 8557:                $lastbubble = $first + $bubble_lines_per_response{$responsenum};
 8558:             }
 8559:             if ($lastbubble > $max_bubble) { next; }
 8560: 	    push(@to_correct,$missing);
 8561: 	}
 8562: 	if (@to_correct) {
 8563: 	    &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 8564: 				     $line,'missingbubble',\@to_correct,
 8565:                                      $randomorder,$randompick,\%respnumlookup,
 8566:                                      \%startline);
 8567: 	    return (1,$currentphase);
 8568: 	}
 8569: 
 8570:     }
 8571:     return (0,$currentphase+1);
 8572: }
 8573: 
 8574: sub hand_bubble_option {
 8575:     my (undef, undef, $sequence) =
 8576:         &Apache::lonnet::decode_symb($env{'form.selectpage'});
 8577:     return if ($sequence eq '');
 8578:     my $navmap = Apache::lonnavmaps::navmap->new();
 8579:     unless (ref($navmap)) {
 8580:         return;
 8581:     }
 8582:     my $needs_hand_bubbles;
 8583:     my $map=$navmap->getResourceByUrl($sequence);
 8584:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8585:     foreach my $res (@resources) {
 8586:         if (ref($res)) {
 8587:             if ($res->is_problem()) {
 8588:                 my $partlist = $res->parts();
 8589:                 foreach my $part (@{ $partlist }) {
 8590:                     my @types = $res->responseType($part);
 8591:                     if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
 8592:                         $needs_hand_bubbles = 1;
 8593:                         last;
 8594:                     }
 8595:                 }
 8596:             }
 8597:         }
 8598:     }
 8599:     if ($needs_hand_bubbles) {
 8600:         my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 8601:         my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 8602:         return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
 8603:                &mt('If you have already graded these by bubbling sheets to indicate points awarded, [_1]what point value is assigned to a filled last bubble in each row?','<br />').
 8604:                '<label><input type="radio" name="scantron_lastbubblepoints" value="'.$bubbles_per_row.'" checked="checked" />'.&mt('[quant,_1,point]',$bubbles_per_row).'</label>&nbsp;'.&mt('or').'&nbsp;'.
 8605:                '<label><input type="radio" name="scantron_lastbubblepoints" value="0" />'.&mt('0 points').'</label></p>';
 8606:     }
 8607:     return;
 8608: }
 8609: 
 8610: sub scantron_process_students {
 8611:     my ($r,$symb) = @_;
 8612: 
 8613:     my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
 8614:     if (!$symb) {
 8615: 	return '';
 8616:     }
 8617:     my $default_form_data=&defaultFormData($symb);
 8618: 
 8619:     my %scantron_config=&Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 8620:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config); 
 8621:     my ($scanlines,$scan_data)=&scantron_getfile();
 8622:     my $classlist=&Apache::loncoursedata::get_classlist();
 8623:     my %idmap=&username_to_idmap($classlist);
 8624:     my $navmap=Apache::lonnavmaps::navmap->new();
 8625:     unless (ref($navmap)) {
 8626:         $r->print(&navmap_errormsg());
 8627:         return '';
 8628:     }
 8629:     my $map=$navmap->getResourceByUrl($sequence);
 8630:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 8631:         %grader_randomlists_by_symb);
 8632:     if (ref($map)) {
 8633:         $randomorder = $map->randomorder();
 8634:         $randompick = $map->randompick();
 8635:     } else {
 8636:         $r->print(&navmap_errormsg());
 8637:         return '';
 8638:     }
 8639:     my $nav_error;
 8640:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8641:     if ($randomorder || $randompick) {
 8642:         $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 8643:         if ($nav_error) {
 8644:             $r->print(&navmap_errormsg());
 8645:             return '';
 8646:         }
 8647:     }
 8648:     &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 8649:                             \%grader_randomlists_by_symb,$bubbles_per_row);
 8650: 
 8651:     my ($uname,$udom);
 8652:     my $result= <<SCANTRONFORM;
 8653: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
 8654:   <input type="hidden" name="command" value="scantron_configphase" />
 8655:   $default_form_data
 8656: SCANTRONFORM
 8657:     $r->print($result);
 8658: 
 8659:     my @delayqueue;
 8660:     my (%completedstudents,%scandata);
 8661:     
 8662:     my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
 8663:     my $count=&get_todo_count($scanlines,$scan_data);
 8664:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
 8665:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
 8666:     $r->print('<br />');
 8667:     my $start=&Time::HiRes::time();
 8668:     my $i=-1;
 8669:     my $started;
 8670: 
 8671:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
 8672:     if ($nav_error) {
 8673:         $r->print(&navmap_errormsg());
 8674:         return '';
 8675:     }
 8676: 
 8677:     # If an ssi failed in scantron_get_maxbubble, put an error message out to
 8678:     # the user and return.
 8679: 
 8680:     if ($ssi_error) {
 8681: 	$r->print("</form>");
 8682: 	&ssi_print_error($r);
 8683:         &Apache::lonnet::remove_lock($lock);
 8684: 	return '';		# Dunno why the other returns return '' rather than just returning.
 8685:     }
 8686: 
 8687:     my %lettdig = &Apache::lonnet::letter_to_digits();
 8688:     my $numletts = scalar(keys(%lettdig));
 8689:     my %orderedforcode;
 8690: 
 8691:     while ($i<$scanlines->{'count'}) {
 8692:  	($uname,$udom)=('','');
 8693:  	$i++;
 8694:  	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8695:  	if ($line=~/^[\s\cz]*$/) { next; }
 8696: 	if ($started) {
 8697: 	    &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
 8698: 	}
 8699: 	$started=1;
 8700:         my %respnumlookup = ();
 8701:         my %startline = ();
 8702:         my $total;
 8703:  	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 8704:                                                  $scan_data,undef,\%idmap,$randomorder,
 8705:                                                  $randompick,$sequence,\@master_seq,
 8706:                                                  \%symb_to_resource,\%grader_partids_by_symb,
 8707:                                                  \%orderedforcode,\%respnumlookup,\%startline,
 8708:                                                  \$total);
 8709:  	unless ($uname=&scantron_find_student($scan_record,$scan_data,
 8710:  					      \%idmap,$i)) {
 8711:   	    &scantron_add_delay(\@delayqueue,$line,
 8712:  				'Unable to find a student that matches',1);
 8713:  	    next;
 8714:   	}
 8715:  	if (exists $completedstudents{$uname}) {
 8716:  	    &scantron_add_delay(\@delayqueue,$line,
 8717:  				'Student '.$uname.' has multiple sheets',2);
 8718:  	    next;
 8719:  	}
 8720:         my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
 8721:         my $user = $uname.':'.$usec;
 8722:   	($uname,$udom)=split(/:/,$uname);
 8723: 
 8724:         my $scancode;
 8725:         if ((exists($scan_record->{'scantron.CODE'})) &&
 8726:             (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
 8727:             $scancode = $scan_record->{'scantron.CODE'};
 8728:         } else {
 8729:             $scancode = '';
 8730:         }
 8731: 
 8732:         my @mapresources = @resources;
 8733:         if ($randomorder || $randompick) {
 8734:             @mapresources = 
 8735:                 &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
 8736:                              \%orderedforcode);
 8737:         }
 8738:         my (%partids_by_symb,$res_error);
 8739:         foreach my $resource (@mapresources) {
 8740:             my $ressymb;
 8741:             if (ref($resource)) {
 8742:                 $ressymb = $resource->symb();
 8743:             } else {
 8744:                 $res_error = 1;
 8745:                 last;
 8746:             }
 8747:             if ((exists($grader_randomlists_by_symb{$ressymb})) ||
 8748:                 (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
 8749:                 my $currcode;
 8750:                 if (exists($grader_randomlists_by_symb{$ressymb})) {
 8751:                     $currcode = $scancode;
 8752:                 }
 8753:                 my ($analysis,$parts) =
 8754:                     &scantron_partids_tograde($resource,$env{'request.course.id'},
 8755:                                               $uname,$udom,undef,$bubbles_per_row,
 8756:                                               $currcode);
 8757:                 $partids_by_symb{$ressymb} = $parts;
 8758:             } else {
 8759:                 $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
 8760:             }
 8761:         }
 8762: 
 8763:         if ($res_error) {
 8764:             &scantron_add_delay(\@delayqueue,$line,
 8765:                                 'An error occurred while grading student '.$uname,2);
 8766:             next;
 8767:         }
 8768: 
 8769: 	&Apache::lonxml::clear_problem_counter();
 8770:   	&Apache::lonnet::appenv($scan_record);
 8771: 
 8772: 	if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
 8773: 	    &scantron_putfile($scanlines,$scan_data);
 8774: 	}
 8775: 	
 8776:         if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
 8777:                                    \@mapresources,\%partids_by_symb,
 8778:                                    $bubbles_per_row,$randomorder,$randompick,
 8779:                                    \%respnumlookup,\%startline) 
 8780:             eq 'ssi_error') {
 8781:             $ssi_error = 0; # So end of handler error message does not trigger.
 8782:             $r->print("</form>");
 8783:             &ssi_print_error($r);
 8784:             &Apache::lonnet::remove_lock($lock);
 8785:             return '';      # Why return ''?  Beats me.
 8786:         }
 8787: 
 8788:         if (($scancode) && ($randomorder || $randompick)) {
 8789:             my $parmresult =
 8790:                 &Apache::lonparmset::storeparm_by_symb($symb,
 8791:                                                        '0_examcode',2,$scancode,
 8792:                                                        'string_examcode',$uname,
 8793:                                                        $udom);
 8794:         }
 8795: 	$completedstudents{$uname}={'line'=>$line};
 8796:         if ($env{'form.verifyrecord'}) {
 8797:             my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
 8798:             if ($randompick) {
 8799:                 if ($total) {
 8800:                     $lastpos = $total*$scantron_config{'Qlength'};
 8801:                 }
 8802:             }
 8803: 
 8804:             my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
 8805:             chomp($studentdata);
 8806:             $studentdata =~ s/\r$//;
 8807:             my $studentrecord = '';
 8808:             my $counter = -1;
 8809:             foreach my $resource (@mapresources) {
 8810:                 my $ressymb = $resource->symb();
 8811:                 ($counter,my $recording) =
 8812:                     &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
 8813:                                              $counter,$studentdata,$partids_by_symb{$ressymb},
 8814:                                              \%scantron_config,\%lettdig,$numletts,$randomorder,
 8815:                                              $randompick,\%respnumlookup,\%startline);
 8816:                 $studentrecord .= $recording;
 8817:             }
 8818:             if ($studentrecord ne $studentdata) {
 8819:                 &Apache::lonxml::clear_problem_counter();
 8820:                 if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
 8821:                                            \@mapresources,\%partids_by_symb,
 8822:                                            $bubbles_per_row,$randomorder,$randompick,
 8823:                                            \%respnumlookup,\%startline) 
 8824:                     eq 'ssi_error') {
 8825:                     $ssi_error = 0; # So end of handler error message does not trigger.
 8826:                     $r->print("</form>");
 8827:                     &ssi_print_error($r);
 8828:                     &Apache::lonnet::remove_lock($lock);
 8829:                     delete($completedstudents{$uname});
 8830:                     return '';
 8831:                 }
 8832:                 $counter = -1;
 8833:                 $studentrecord = '';
 8834:                 foreach my $resource (@mapresources) {
 8835:                     my $ressymb = $resource->symb();
 8836:                     ($counter,my $recording) =
 8837:                         &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
 8838:                                                  $counter,$studentdata,$partids_by_symb{$ressymb},
 8839:                                                  \%scantron_config,\%lettdig,$numletts,
 8840:                                                  $randomorder,$randompick,\%respnumlookup,
 8841:                                                  \%startline);
 8842:                     $studentrecord .= $recording;
 8843:                 }
 8844:                 if ($studentrecord ne $studentdata) {
 8845:                     $r->print('<p><span class="LC_warning">');
 8846:                     if ($scancode eq '') {
 8847:                         $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
 8848:                                   $uname.':'.$udom,$scan_record->{'scantron.ID'}));
 8849:                     } else {
 8850:                         $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
 8851:                                   $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
 8852:                     }
 8853:                     $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
 8854:                               &Apache::loncommon::start_data_table_header_row()."\n".
 8855:                               '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
 8856:                               &Apache::loncommon::end_data_table_header_row()."\n".
 8857:                               &Apache::loncommon::start_data_table_row().
 8858:                               '<td>'.&mt('Bubblesheet').'</td>'.
 8859:                               '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentdata.'</tt></span></td>'.
 8860:                               &Apache::loncommon::end_data_table_row().
 8861:                               &Apache::loncommon::start_data_table_row().
 8862:                               '<td>'.&mt('Stored submissions').'</td>'.
 8863:                               '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentrecord.'</tt></span></td>'."\n".
 8864:                               &Apache::loncommon::end_data_table_row().
 8865:                               &Apache::loncommon::end_data_table().'</p>');
 8866:                 } else {
 8867:                     $r->print('<br /><span class="LC_warning">'.
 8868:                              &mt('A second grading pass was needed for user: [_1] with ID: [_2], because a mismatch was seen on the first pass.',$uname.':'.$udom,$scan_record->{'scantron.ID'}).'<br />'.
 8869:                              &mt("As a consequence, this user's submission history records two tries.").
 8870:                                  '</span><br />');
 8871:                 }
 8872:             }
 8873:         }
 8874:         if (&Apache::loncommon::connection_aborted($r)) { last; }
 8875:     } continue {
 8876: 	&Apache::lonxml::clear_problem_counter();
 8877: 	&Apache::lonnet::delenv('scantron.');
 8878:     }
 8879:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 8880:     &Apache::lonnet::remove_lock($lock);
 8881: #    my $lasttime = &Time::HiRes::time()-$start;
 8882: #    $r->print("<p>took $lasttime</p>");
 8883: 
 8884:     $r->print("</form>");
 8885:     return '';
 8886: }
 8887: 
 8888: sub graders_resources_pass {
 8889:     my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
 8890:         $bubbles_per_row) = @_;
 8891:     if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) && 
 8892:         (ref($grader_randomlists_by_symb) eq 'HASH')) {
 8893:         foreach my $resource (@{$resources}) {
 8894:             my $ressymb = $resource->symb();
 8895:             my ($analysis,$parts) =
 8896:                 &scantron_partids_tograde($resource,$env{'request.course.id'},
 8897:                                           $env{'user.name'},$env{'user.domain'},
 8898:                                           1,$bubbles_per_row);
 8899:             $grader_partids_by_symb->{$ressymb} = $parts;
 8900:             if (ref($analysis) eq 'HASH') {
 8901:                 if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
 8902:                     $grader_randomlists_by_symb->{$ressymb} =
 8903:                         $analysis->{'parts_withrandomlist'};
 8904:                 }
 8905:             }
 8906:         }
 8907:     }
 8908:     return;
 8909: }
 8910: 
 8911: =pod
 8912: 
 8913: =item users_order
 8914: 
 8915:   Returns array of resources in current map, ordered based on either CODE,
 8916:   if this is a CODEd exam, or based on student's identity if this is a 
 8917:   "NAMEd" exam.
 8918: 
 8919:   Should be used when randomorder and/or randompick applied when the 
 8920:   corresponding exam was printed, prior to students completing bubblesheets 
 8921:   for the version of the exam the student received.
 8922: 
 8923: =cut
 8924: 
 8925: sub users_order  {
 8926:     my ($user,$scancode,$mapurl,$master_seq,$symb_to_resource,$orderedforcode) = @_;
 8927:     my @mapresources;
 8928:     unless ((ref($master_seq) eq 'ARRAY') && (ref($symb_to_resource) eq 'HASH')) {
 8929:         return @mapresources;
 8930:     }
 8931:     if ($scancode) {
 8932:         if ((ref($orderedforcode) eq 'HASH') && (ref($orderedforcode->{$scancode}) eq 'ARRAY')) {
 8933:             @mapresources = @{$orderedforcode->{$scancode}};
 8934:         } else {
 8935:             $env{'form.CODE'} = $scancode;
 8936:             my $actual_seq =
 8937:                 &Apache::lonprintout::master_seq_to_person_seq($mapurl,
 8938:                                                                $master_seq,
 8939:                                                                $user,$scancode,1);
 8940:             if (ref($actual_seq) eq 'ARRAY') {
 8941:                 @mapresources = map { $symb_to_resource->{$_}; } @{$actual_seq};
 8942:                 if (ref($orderedforcode) eq 'HASH') {
 8943:                     if (@mapresources > 0) { 
 8944:                         $orderedforcode->{$scancode} = \@mapresources;
 8945:                     }
 8946:                 }
 8947:             }
 8948:             delete($env{'form.CODE'});
 8949:         }
 8950:     } else {
 8951:         my $actual_seq =
 8952:             &Apache::lonprintout::master_seq_to_person_seq($mapurl,
 8953:                                                            $master_seq,
 8954:                                                            $user,undef,1);
 8955:         if (ref($actual_seq) eq 'ARRAY') {
 8956:             @mapresources = 
 8957:                 map { $symb_to_resource->{$_}; } @{$actual_seq};
 8958:         }
 8959:     }
 8960:     return @mapresources;
 8961: }
 8962: 
 8963: sub grade_student_bubbles {
 8964:     my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row,
 8965:         $randomorder,$randompick,$respnumlookup,$startline) = @_;
 8966:     my $uselookup = 0;
 8967:     if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH') &&
 8968:         (ref($startline) eq 'HASH')) {
 8969:         $uselookup = 1;
 8970:     }
 8971: 
 8972:     if (ref($resources) eq 'ARRAY') {
 8973:         my $count = 0;
 8974:         foreach my $resource (@{$resources}) {
 8975:             my $ressymb = $resource->symb();
 8976:             my %form = ('submitted'      => 'scantron',
 8977:                         'grade_target'   => 'grade',
 8978:                         'grade_username' => $uname,
 8979:                         'grade_domain'   => $udom,
 8980:                         'grade_courseid' => $env{'request.course.id'},
 8981:                         'grade_symb'     => $ressymb,
 8982:                         'CODE'           => $scancode
 8983:                        );
 8984:             if ($bubbles_per_row ne '') {
 8985:                 $form{'bubbles_per_row'} = $bubbles_per_row;
 8986:             }
 8987:             if ($env{'form.scantron_lastbubblepoints'} ne '') {
 8988:                 $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
 8989:             }
 8990:             if (ref($parts) eq 'HASH') {
 8991:                 if (ref($parts->{$ressymb}) eq 'ARRAY') {
 8992:                     foreach my $part (@{$parts->{$ressymb}}) {
 8993:                         if ($uselookup) {
 8994:                             $form{'scantron_questnum_start.'.$part} = $startline->{$count} + 1;
 8995:                         } else {
 8996:                             $form{'scantron_questnum_start.'.$part} =
 8997:                                 1+$env{'form.scantron.first_bubble_line.'.$count};
 8998:                         }
 8999:                         $count++;
 9000:                     }
 9001:                 }
 9002:             }
 9003:             my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
 9004:             return 'ssi_error' if ($ssi_error);
 9005:             last if (&Apache::loncommon::connection_aborted($r));
 9006:         }
 9007:     }
 9008:     return;
 9009: }
 9010: 
 9011: sub scantron_upload_scantron_data {
 9012:     my ($r,$symb)=@_;
 9013:     my $dom = $env{'request.role.domain'};
 9014:     my ($formatoptions,$formattitle,$formatjs) = &scantron_upload_dataformat($dom);
 9015:     my $domdesc = &Apache::lonnet::domain($dom,'description');
 9016:     $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
 9017:     my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
 9018: 							  'domainid',
 9019: 							  'coursename',$dom);
 9020:     my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
 9021:                        ('&nbsp'x2).&mt('(shows course personnel)'); 
 9022:     my $default_form_data=&defaultFormData($symb);
 9023:     my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
 9024:     &js_escape(\$nofile_alert);
 9025:     my $nocourseid_alert = &mt("Please use the 'Select Course' link to open a separate window where you can search for a course to which a file can be uploaded.");
 9026:     &js_escape(\$nocourseid_alert);
 9027:     $r->print(&Apache::lonhtmlcommon::scripttag('
 9028:     function checkUpload(formname) {
 9029: 	if (formname.upfile.value == "") {
 9030: 	    alert("'.$nofile_alert.'");
 9031: 	    return false;
 9032: 	}
 9033:         if (formname.courseid.value == "") {
 9034:             alert("'.$nocourseid_alert.'");
 9035:             return false;
 9036:         }
 9037: 	formname.submit();
 9038:     }
 9039: 
 9040:     function ToSyllabus() {
 9041:         var cdom = '."'$dom'".';
 9042:         var cnum = document.rules.courseid.value;
 9043:         if (cdom == "" || cdom == null) {
 9044:             return;
 9045:         }
 9046:         if (cnum == "" || cnum == null) {
 9047:            return;
 9048:         }
 9049:         syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
 9050:                             "height=350,width=350,scrollbars=yes,menubar=no");
 9051:         return;
 9052:     }
 9053: 
 9054:     '.$formatjs.'
 9055: '));
 9056:     $r->print('
 9057: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
 9058: 
 9059: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
 9060: '.$default_form_data.
 9061:   &Apache::lonhtmlcommon::start_pick_box().
 9062:   &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
 9063:   '<input name="courseid" type="text" size="30" />'.$select_link.
 9064:   &Apache::lonhtmlcommon::row_closure().
 9065:   &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
 9066:   '<input name="coursename" type="text" size="30" />'.$syllabuslink.
 9067:   &Apache::lonhtmlcommon::row_closure().
 9068:   &Apache::lonhtmlcommon::row_title(&mt('Domain')).
 9069:   '<input name="domainid" type="hidden" />'.$domdesc.
 9070:   &Apache::lonhtmlcommon::row_closure());
 9071:     if ($formatoptions) {
 9072:         $r->print(&Apache::lonhtmlcommon::row_title($formattitle).$formatoptions.
 9073:                   &Apache::lonhtmlcommon::row_closure());
 9074:     }
 9075:     $r->print(
 9076:   &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
 9077:   '<input type="file" name="upfile" size="50" />'.
 9078:   &Apache::lonhtmlcommon::row_closure(1).
 9079:   &Apache::lonhtmlcommon::end_pick_box().'<br />
 9080: 
 9081: <input name="command" value="scantronupload_save" type="hidden" />
 9082: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
 9083: </form>
 9084: ');
 9085:     return '';
 9086: }
 9087: 
 9088: sub scantron_upload_dataformat {
 9089:     my ($dom) = @_;
 9090:     my ($formatoptions,$formattitle,$formatjs);
 9091:     $formatjs = <<'END';
 9092: function toggleScantab(form) {
 9093:    return;
 9094: }
 9095: END
 9096:     my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$dom);
 9097:     if (ref($domconfig{'scantron'}) eq 'HASH') {
 9098:         if (ref($domconfig{'scantron'}{'config'}) eq 'HASH') {
 9099:             if (keys(%{$domconfig{'scantron'}{'config'}}) > 1) {
 9100:                 if (($domconfig{'scantron'}{'config'}{'dat'}) &&
 9101:                     (ref($domconfig{'scantron'}{'config'}{'csv'}) eq 'HASH')) {
 9102:                     if (ref($domconfig{'scantron'}{'config'}{'csv'}{'fields'}) eq 'HASH') {  
 9103:                         if (keys(%{$domconfig{'scantron'}{'config'}{'csv'}{'fields'}})) {
 9104:                             my ($onclick,$formatextra,$singleline);
 9105:                             my @lines = &Apache::lonnet::get_scantronformat_file();
 9106:                             my $count = 0;
 9107:                             foreach my $line (@lines) {
 9108:                                 next if ($line =~ /^#/);
 9109:                                 $singleline = $line;
 9110:                                 $count ++;
 9111:                             }
 9112:                             if ($count > 1) {
 9113:                                 $formatextra = '<div style="display:none" id="bubbletype">'.
 9114:                                                '<span class="LC_nobreak">'.
 9115:                                                &mt('Bubblesheet type:').'&nbsp;'.
 9116:                                                &scantron_scantab().'</span></div>';
 9117:                                 $onclick = ' onclick="toggleScantab(this.form);"';
 9118:                                 $formatjs = <<"END";
 9119: function toggleScantab(form) {
 9120:     var divid = 'bubbletype';
 9121:     if (document.getElementById(divid)) {
 9122:         var radioname = 'fileformat';
 9123:         var num = form.elements[radioname].length;
 9124:         if (num) {
 9125:             for (var i=0; i<num; i++) {
 9126:                 if (form.elements[radioname][i].checked) {
 9127:                     var chosen = form.elements[radioname][i].value;
 9128:                     if (chosen == 'dat') {
 9129:                         document.getElementById(divid).style.display = 'none';
 9130:                     } else if (chosen == 'csv') {
 9131:                         document.getElementById(divid).style.display = 'block';
 9132:                     }
 9133:                 }
 9134:             }
 9135:         }
 9136:     }
 9137:     return;
 9138: }
 9139: 
 9140: END
 9141:                             } elsif ($count == 1) {
 9142:                                 my $formatname = (split(/:/,$singleline,2))[0];
 9143:                                 $formatextra = '<input type="hidden" name="scantron_format" value="'.$formatname.'" />';
 9144:                             }
 9145:                             $formattitle = &mt('File format');
 9146:                             $formatoptions = '<label><input name="fileformat" type="radio" value="dat" checked="checked"'.$onclick.' />'.
 9147:                                              &mt('Plain Text (no delimiters)').
 9148:                                              '</label>'.('&nbsp;'x2).
 9149:                                              '<label><input name="fileformat" type="radio" value="csv"'.$onclick.' />'.
 9150:                                              &mt('Comma separated values').'</label>'.$formatextra;
 9151:                         }
 9152:                     }
 9153:                 }
 9154:             } elsif (keys(%{$domconfig{'scantron'}{'config'}}) == 1) {
 9155:                 if (ref($domconfig{'scantron'}{'config'}{'csv'}{'fields'}) eq 'HASH') {
 9156:                     if (keys(%{$domconfig{'scantron'}{'config'}{'csv'}{'fields'}})) {
 9157:                         $formattitle = &mt('Bubblesheet type');
 9158:                         $formatoptions = &scantron_scantab();
 9159:                     }
 9160:                 }
 9161:             }
 9162:         }
 9163:     }
 9164:     return ($formatoptions,$formattitle,$formatjs);
 9165: }
 9166: 
 9167: sub scantron_upload_scantron_data_save {
 9168:     my($r,$symb)=@_;
 9169:     my $doanotherupload=
 9170: 	'<br /><form action="/adm/grades" method="post">'."\n".
 9171: 	'<input type="hidden" name="command" value="scantronupload" />'."\n".
 9172: 	'<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
 9173: 	'</form>'."\n";
 9174:     if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
 9175: 	!&Apache::lonnet::allowed('usc',
 9176: 			    $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
 9177: 	$r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
 9178: 	unless ($symb) {
 9179: 	    $r->print($doanotherupload);
 9180: 	}
 9181: 	return '';
 9182:     }
 9183:     my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
 9184:     my $uploadedfile;
 9185:     $r->print('<p>'.&mt('Uploading file to [_1]','"'.$coursedata{'description'}.'"').'</p>');
 9186:     if (length($env{'form.upfile'}) < 2) {
 9187:         $r->print(
 9188:             &Apache::lonhtmlcommon::confirm_success(
 9189:                 &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
 9190:                         '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1));
 9191:     } else {
 9192:         my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$env{'form.domainid'});
 9193:         my $parser;
 9194:         if (ref($domconfig{'scantron'}) eq 'HASH') {
 9195:             if (ref($domconfig{'scantron'}{'config'}) eq 'HASH') {
 9196:                 my $is_csv;
 9197:                 my @possibles = keys(%{$domconfig{'scantron'}{'config'}});
 9198:                 if (@possibles > 1) {
 9199:                     if ($env{'form.fileformat'} eq 'csv') {
 9200:                         if (ref($domconfig{'scantron'}{'config'}{'csv'}) eq 'HASH') {
 9201:                             if (ref($domconfig{'scantron'}{'config'}{'csv'}{'fields'}) eq 'HASH') {
 9202:                                 if (keys(%{$domconfig{'scantron'}{'config'}{'csv'}{'fields'}}) > 1) {
 9203:                                     $is_csv = 1;
 9204:                                 }
 9205:                             }
 9206:                         }
 9207:                     }
 9208:                 } elsif (@possibles == 1) {
 9209:                     if (ref($domconfig{'scantron'}{'config'}{'csv'}) eq 'HASH') {
 9210:                         if (ref($domconfig{'scantron'}{'config'}{'csv'}{'fields'}) eq 'HASH') {
 9211:                             if (keys(%{$domconfig{'scantron'}{'config'}{'csv'}{'fields'}}) > 1) {
 9212:                                 $is_csv = 1;
 9213:                             }
 9214:                         }
 9215:                     }
 9216:                 }
 9217:                 if ($is_csv) {
 9218:                    $parser = $domconfig{'scantron'}{'config'}{'csv'};
 9219:                 }
 9220:             }
 9221:         }
 9222:         my $result =
 9223:             &Apache::lonnet::userfileupload('upfile','scantron','scantron',$parser,'','',
 9224:                                             $env{'form.courseid'},$env{'form.domainid'});
 9225:         if ($result =~ m{^/uploaded/}) {
 9226:             $r->print(
 9227:                 &Apache::lonhtmlcommon::confirm_success(&mt('Upload successful')).'<br />'.
 9228:                 &mt('Uploaded [_1] bytes of data into location: [_2]',
 9229:                         (length($env{'form.upfile'})-1),
 9230:                         '<span class="LC_filename">'.$result.'</span>'));
 9231:             ($uploadedfile) = ($result =~ m{/([^/]+)$});
 9232:             $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
 9233:                                                        $env{'form.courseid'},$uploadedfile));
 9234:         } else {
 9235:             $r->print(
 9236:                 &Apache::lonhtmlcommon::confirm_success(&mt('Upload failed'),1).'<br />'.
 9237:                     &mt('An error ([_1]) occurred when attempting to upload the file: [_2]',
 9238:                           $result,
 9239: 			  '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
 9240: 	}
 9241:     }
 9242:     if ($symb) {
 9243: 	$r->print(&scantron_selectphase($r,$uploadedfile,$symb));
 9244:     } else {
 9245: 	$r->print($doanotherupload);
 9246:     }
 9247:     return '';
 9248: }
 9249: 
 9250: sub validate_uploaded_scantron_file {
 9251:     my ($cdom,$cname,$fname) = @_;
 9252:     my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
 9253:     my @lines;
 9254:     if ($scanlines ne '-1') {
 9255:         @lines=split("\n",$scanlines,-1);
 9256:     }
 9257:     my $output;
 9258:     if (@lines) {
 9259:         my (%counts,$max_match_format);
 9260:         my ($found_match_count,$max_match_count,$max_match_pct) = (0,0,0);
 9261:         my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
 9262:         my %idmap = &username_to_idmap($classlist);
 9263:         foreach my $key (keys(%idmap)) {
 9264:             my $lckey = lc($key);
 9265:             $idmap{$lckey} = $idmap{$key};
 9266:         }
 9267:         my %unique_formats;
 9268:         my @formatlines = &Apache::lonnet::get_scantronformat_file();
 9269:         foreach my $line (@formatlines) {
 9270:             chomp($line);
 9271:             my @config = split(/:/,$line);
 9272:             my $idstart = $config[5];
 9273:             my $idlength = $config[6];
 9274:             if (($idstart ne '') && ($idlength > 0)) {
 9275:                 if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
 9276:                     push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]); 
 9277:                 } else {
 9278:                     $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
 9279:                 }
 9280:             }
 9281:         }
 9282:         foreach my $key (keys(%unique_formats)) {
 9283:             my ($idstart,$idlength) = split(':',$key);
 9284:             %{$counts{$key}} = (
 9285:                                'found'   => 0,
 9286:                                'total'   => 0,
 9287:                               );
 9288:             foreach my $line (@lines) {
 9289:                 next if ($line =~ /^#/);
 9290:                 next if ($line =~ /^[\s\cz]*$/);
 9291:                 my $id = substr($line,$idstart-1,$idlength);
 9292:                 $id = lc($id);
 9293:                 if (exists($idmap{$id})) {
 9294:                     $counts{$key}{'found'} ++;
 9295:                 }
 9296:                 $counts{$key}{'total'} ++;
 9297:             }
 9298:             if ($counts{$key}{'total'}) {
 9299:                 my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
 9300:                 if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
 9301:                     $max_match_pct = $percent_match;
 9302:                     $max_match_format = $key;
 9303:                     $found_match_count = $counts{$key}{'found'};
 9304:                     $max_match_count = $counts{$key}{'total'};
 9305:                 }
 9306:             }
 9307:         }
 9308:         if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
 9309:             my $format_descs;
 9310:             my $numwithformat = @{$unique_formats{$max_match_format}};
 9311:             for (my $i=0; $i<$numwithformat; $i++) {
 9312:                 my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
 9313:                 if ($i<$numwithformat-2) {
 9314:                     $format_descs .= '"<i>'.$desc.'</i>", ';
 9315:                 } elsif ($i==$numwithformat-2) {
 9316:                     $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
 9317:                 } elsif ($i==$numwithformat-1) {
 9318:                     $format_descs .= '"<i>'.$desc.'</i>"';
 9319:                 }
 9320:             }
 9321:             my $showpct = sprintf("%.0f",$max_match_pct).'%';
 9322:             $output .= '<br />';
 9323:             if ($found_match_count == $max_match_count) {
 9324:                 # 100% matching entries
 9325:                 $output .= &Apache::lonhtmlcommon::confirm_success(
 9326:                      &mt('Comparison of student IDs: [_1] matching ([quant,_2,entry,entries])',
 9327:                             '<b>'.$showpct.'</b>',$found_match_count)).'<br />'.
 9328:                 &mt('Comparison of student IDs in the uploaded file with'.
 9329:                     ' the course roster found matches for [_1] of the [_2] entries'.
 9330:                     ' in the file (for the format defined for [_3]).',
 9331:                         '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs);
 9332:             } else {
 9333:                 # Not all entries matching? -> Show warning and additional info
 9334:                 $output .=
 9335:                     &Apache::lonhtmlcommon::confirm_success(
 9336:                         &mt('Comparison of student IDs: [_1] matching ([_2]/[quant,_3,entry,entries])',
 9337:                                 '<b>'.$showpct.'</b>',$found_match_count,$max_match_count).'<br />'.
 9338:                         &mt('Not all entries could be matched!'),1).'<br />'.
 9339:                     &mt('Comparison of student IDs in the uploaded file with'.
 9340:                         ' the course roster found matches for [_1] of the [_2] entries'.
 9341:                         ' in the file (for the format defined for [_3]).',
 9342:                             '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs).
 9343:                     '<p class="LC_info">'.
 9344:                     &mt('A low percentage of matches results from one of the following:').
 9345:                     '</p><ul>'.
 9346:                     '<li>'.&mt('The file was uploaded to the wrong course.').'</li>'.
 9347:                     '<li>'.&mt('The data is not in the format expected for the domain: [_1]',
 9348:                                '<i>'.$cdom.'</i>').'</li>'.
 9349:                     '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
 9350:                     '<li>'.&mt('The course roster is not up to date.').'</li>'.
 9351:                     '</ul>';
 9352:             }
 9353:         }
 9354:     } else {
 9355:         $output = '<p class="LC_warning">'.&mt('Uploaded file contained no data').'</p>';
 9356:     }
 9357:     return $output;
 9358: }
 9359: 
 9360: sub valid_file {
 9361:     my ($requested_file)=@_;
 9362:     foreach my $filename (sort(&scantron_filenames())) {
 9363: 	if ($requested_file eq $filename) { return 1; }
 9364:     }
 9365:     return 0;
 9366: }
 9367: 
 9368: sub scantron_download_scantron_data {
 9369:     my ($r,$symb)=@_;
 9370:     my $default_form_data=&defaultFormData($symb);
 9371:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 9372:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 9373:     my $file=$env{'form.scantron_selectfile'};
 9374:     if (! &valid_file($file)) {
 9375: 	$r->print('
 9376: 	<p>
 9377: 	    '.&mt('The requested filename was invalid.').'
 9378:         </p>
 9379: ');
 9380: 	return;
 9381:     }
 9382:     my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
 9383:     my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
 9384:     my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
 9385:     &Apache::lonnet::allowuploaded('/adm/grades',$orig);
 9386:     &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
 9387:     &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
 9388:     $r->print('
 9389:     <p>
 9390: 	'.&mt('[_1]Original[_2] file as uploaded by the bubblesheet scanning office.',
 9391: 	      '<a href="'.$orig.'">','</a>').'
 9392:     </p>
 9393:     <p>
 9394: 	'.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
 9395: 	      '<a href="'.$corrected.'">','</a>').'
 9396:     </p>
 9397:     <p>
 9398: 	'.&mt('[_1]Skipped[_2], a file of records that were skipped.',
 9399: 	      '<a href="'.$skipped.'">','</a>').'
 9400:     </p>
 9401: ');
 9402:     return '';
 9403: }
 9404: 
 9405: sub checkscantron_results {
 9406:     my ($r,$symb) = @_;
 9407:     if (!$symb) {return '';}
 9408:     my $cid = $env{'request.course.id'};
 9409:     my %lettdig = &Apache::lonnet::letter_to_digits();
 9410:     my $numletts = scalar(keys(%lettdig));
 9411:     my $cnum = $env{'course.'.$cid.'.num'};
 9412:     my $cdom = $env{'course.'.$cid.'.domain'};
 9413:     my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
 9414:     my %record;
 9415:     my %scantron_config =
 9416:         &Apache::lonnet::get_scantron_config($env{'form.scantron_format'});
 9417:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 9418:     my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
 9419:     my $classlist=&Apache::loncoursedata::get_classlist();
 9420:     my %idmap=&Apache::grades::username_to_idmap($classlist);
 9421:     my $navmap=Apache::lonnavmaps::navmap->new();
 9422:     unless (ref($navmap)) {
 9423:         $r->print(&navmap_errormsg());
 9424:         return '';
 9425:     }
 9426:     my $map=$navmap->getResourceByUrl($sequence);
 9427:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 9428:         %grader_randomlists_by_symb,%orderedforcode);
 9429:     if (ref($map)) { 
 9430:         $randomorder=$map->randomorder();
 9431:         $randompick=$map->randompick();
 9432:     }
 9433:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 9434:     my $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 9435:     if ($nav_error) {
 9436:         $r->print(&navmap_errormsg());
 9437:         return '';
 9438:     }
 9439:     &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 9440:                             \%grader_randomlists_by_symb,$bubbles_per_row);
 9441:     my ($uname,$udom);
 9442:     my (%scandata,%lastname,%bylast);
 9443:     $r->print('
 9444: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
 9445: 
 9446:     my @delayqueue;
 9447:     my %completedstudents;
 9448: 
 9449:     my $count=&get_todo_count($scanlines,$scan_data);
 9450:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
 9451:     my ($username,$domain,$started);
 9452:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
 9453:     if ($nav_error) {
 9454:         $r->print(&navmap_errormsg());
 9455:         return '';
 9456:     }
 9457: 
 9458:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
 9459:     my $start=&Time::HiRes::time();
 9460:     my $i=-1;
 9461: 
 9462:     while ($i<$scanlines->{'count'}) {
 9463:         ($username,$domain,$uname)=('','','');
 9464:         $i++;
 9465:         my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
 9466:         if ($line=~/^[\s\cz]*$/) { next; }
 9467:         if ($started) {
 9468:             &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
 9469:         }
 9470:         $started=1;
 9471:         my $scan_record=
 9472:             &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
 9473:                                                      $scan_data);
 9474:         unless ($uname=&scantron_find_student($scan_record,$scan_data,
 9475:                                               \%idmap,$i)) {
 9476:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
 9477:                                 'Unable to find a student that matches',1);
 9478:             next;
 9479:         }
 9480:         if (exists $completedstudents{$uname}) {
 9481:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
 9482:                                 'Student '.$uname.' has multiple sheets',2);
 9483:             next;
 9484:         }
 9485:         my $pid = $scan_record->{'scantron.ID'};
 9486:         $lastname{$pid} = $scan_record->{'scantron.LastName'};
 9487:         push(@{$bylast{$lastname{$pid}}},$pid);
 9488:         my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
 9489:         my $user = $uname.':'.$usec;
 9490:         ($username,$domain)=split(/:/,$uname);
 9491: 
 9492:         my $scancode;
 9493:         if ((exists($scan_record->{'scantron.CODE'})) &&
 9494:             (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
 9495:             $scancode = $scan_record->{'scantron.CODE'};
 9496:         } else {
 9497:             $scancode = '';
 9498:         }
 9499: 
 9500:         my @mapresources = @resources;
 9501:         my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
 9502:         my %respnumlookup=();
 9503:         my %startline=();
 9504:         if ($randomorder || $randompick) {
 9505:             @mapresources =
 9506:                 &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
 9507:                              \%orderedforcode);
 9508:             my $total = &get_respnum_lookups($sequence,$scan_data,\%idmap,$line,
 9509:                                              $scan_record,\@master_seq,\%symb_to_resource,
 9510:                                              \%grader_partids_by_symb,\%orderedforcode,
 9511:                                              \%respnumlookup,\%startline);
 9512:             if ($randompick && $total) {
 9513:                 $lastpos = $total*$scantron_config{'Qlength'};
 9514:             }
 9515:         }
 9516:         $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
 9517:         chomp($scandata{$pid});
 9518:         $scandata{$pid} =~ s/\r$//;
 9519: 
 9520:         my $counter = -1;
 9521:         foreach my $resource (@mapresources) {
 9522:             my $parts;
 9523:             my $ressymb = $resource->symb();
 9524:             if ((exists($grader_randomlists_by_symb{$ressymb})) ||
 9525:                 (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
 9526:                 my $currcode;
 9527:                 if (exists($grader_randomlists_by_symb{$ressymb})) {
 9528:                     $currcode = $scancode;
 9529:                 }
 9530:                 (my $analysis,$parts) =
 9531:                     &scantron_partids_tograde($resource,$env{'request.course.id'},
 9532:                                               $username,$domain,undef,
 9533:                                               $bubbles_per_row,$currcode);
 9534:             } else {
 9535:                 $parts = $grader_partids_by_symb{$ressymb};
 9536:             }
 9537:             ($counter,my $recording) =
 9538:                 &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
 9539:                                          $scandata{$pid},$parts,
 9540:                                          \%scantron_config,\%lettdig,$numletts,
 9541:                                          $randomorder,$randompick,
 9542:                                          \%respnumlookup,\%startline);
 9543:             $record{$pid} .= $recording;
 9544:         }
 9545:     }
 9546:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 9547:     $r->print('<br />');
 9548:     my ($okstudents,$badstudents,$numstudents,$passed,$failed);
 9549:     $passed = 0;
 9550:     $failed = 0;
 9551:     $numstudents = 0;
 9552:     foreach my $last (sort(keys(%bylast))) {
 9553:         if (ref($bylast{$last}) eq 'ARRAY') {
 9554:             foreach my $pid (sort(@{$bylast{$last}})) {
 9555:                 my $showscandata = $scandata{$pid};
 9556:                 my $showrecord = $record{$pid};
 9557:                 $showscandata =~ s/\s/&nbsp;/g;
 9558:                 $showrecord =~ s/\s/&nbsp;/g;
 9559:                 if ($scandata{$pid} eq $record{$pid}) {
 9560:                     my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
 9561:                     $okstudents .= '<tr class="'.$css_class.'">'.
 9562: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
 9563: '</tr>'."\n".
 9564: '<tr class="'.$css_class.'">'."\n".
 9565: '<td>'.&mt('Submissions').'</td><td>'.$showrecord.'</td></tr>'."\n";
 9566:                     $passed ++;
 9567:                 } else {
 9568:                     my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
 9569:                     $badstudents .= '<tr class="'.$css_class.'"><td>'.&mt('Bubblesheet').'</td><td><span class="LC_nobreak">'.$scandata{$pid}.'</span></td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
 9570: '</tr>'."\n".
 9571: '<tr class="'.$css_class.'">'."\n".
 9572: '<td>'.&mt('Submissions').'</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
 9573: '</tr>'."\n";
 9574:                     $failed ++;
 9575:                 }
 9576:                 $numstudents ++;
 9577:             }
 9578:         }
 9579:     }
 9580:     $r->print(
 9581:         '<p>'
 9582:        .&mt('Comparison of bubblesheet data (including corrections) with corresponding submission records (most recent submission) for [_1][quant,_2,student][_3] ([quant,_4,bubblesheet line] per student).',
 9583:             '<b>',
 9584:             $numstudents,
 9585:             '</b>',
 9586:             $env{'form.scantron_maxbubble'})
 9587:        .'</p>'
 9588:     );
 9589:     $r->print('<p>'
 9590:              .&mt('Exact matches for [_1][quant,_2,student][_3].','<b>',$passed,'</b>')
 9591:              .'<br />'
 9592:              .&mt('Discrepancies detected for [_1][quant,_2,student][_3].','<b>',$failed,'</b>')
 9593:              .'</p>'
 9594:     );
 9595:     if ($passed) {
 9596:         $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
 9597:         $r->print(&Apache::loncommon::start_data_table()."\n".
 9598:                  &Apache::loncommon::start_data_table_header_row()."\n".
 9599:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
 9600:                  &Apache::loncommon::end_data_table_header_row()."\n".
 9601:                  $okstudents."\n".
 9602:                  &Apache::loncommon::end_data_table().'<br />');
 9603:     }
 9604:     if ($failed) {
 9605:         $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
 9606:         $r->print(&Apache::loncommon::start_data_table()."\n".
 9607:                  &Apache::loncommon::start_data_table_header_row()."\n".
 9608:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
 9609:                  &Apache::loncommon::end_data_table_header_row()."\n".
 9610:                  $badstudents."\n".
 9611:                  &Apache::loncommon::end_data_table()).'<br />'.
 9612:                  &mt('Differences can occur if submissions were modified using manual grading after a bubblesheet grading pass.').'<br />'.&mt('If unexpected discrepancies were detected, it is recommended that you inspect the original bubblesheets.');  
 9613:     }
 9614:     $r->print('</form><br />');
 9615:     return;
 9616: }
 9617: 
 9618: sub verify_scantron_grading {
 9619:     my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
 9620:         $scantron_config,$lettdig,$numletts,$randomorder,$randompick,
 9621:         $respnumlookup,$startline) = @_;
 9622:     my ($record,%expected,%startpos);
 9623:     return ($counter,$record) if (!ref($resource));
 9624:     return ($counter,$record) if (!$resource->is_problem());
 9625:     my $symb = $resource->symb();
 9626:     return ($counter,$record) if (ref($partids) ne 'ARRAY');
 9627:     foreach my $part_id (@{$partids}) {
 9628:         $counter ++;
 9629:         $expected{$part_id} = 0;
 9630:         my $respnum = $counter;
 9631:         if ($randomorder || $randompick) {
 9632:             $respnum = $respnumlookup->{$counter};
 9633:             $startpos{$part_id} = $startline->{$counter} + 1;
 9634:         } else {
 9635:             $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
 9636:         }
 9637:         if ($env{"form.scantron.sub_bubblelines.$respnum"}) {
 9638:             my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$respnum"});
 9639:             foreach my $item (@sub_lines) {
 9640:                 $expected{$part_id} += $item;
 9641:             }
 9642:         } else {
 9643:             $expected{$part_id} = $env{"form.scantron.bubblelines.$respnum"};
 9644:         }
 9645:     }
 9646:     if ($symb) {
 9647:         my %recorded;
 9648:         my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
 9649:         if ($returnhash{'version'}) {
 9650:             my %lasthash=();
 9651:             my $version;
 9652:             for ($version=1;$version<=$returnhash{'version'};$version++) {
 9653:                 foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
 9654:                     $lasthash{$key}=$returnhash{$version.':'.$key};
 9655:                 }
 9656:             }
 9657:             foreach my $key (keys(%lasthash)) {
 9658:                 if ($key =~ /\.scantron$/) {
 9659:                     my $value = &unescape($lasthash{$key});
 9660:                     my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
 9661:                     if ($value eq '') {
 9662:                         for (my $i=0; $i<$expected{$part_id}; $i++) {
 9663:                             for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
 9664:                                 $recorded{$part_id} .= $scantron_config->{'Qoff'};
 9665:                             }
 9666:                         }
 9667:                     } else {
 9668:                         my @tocheck;
 9669:                         my @items = split(//,$value);
 9670:                         if (($scantron_config->{'Qon'} eq 'letter') ||
 9671:                             ($scantron_config->{'Qon'} eq 'number')) {
 9672:                             if (@items < $expected{$part_id}) {
 9673:                                 my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
 9674:                                 my @singles = split(//,$fragment);
 9675:                                 foreach my $pos (@singles) {
 9676:                                     if ($pos eq ' ') {
 9677:                                         push(@tocheck,$pos);
 9678:                                     } else {
 9679:                                         my $next = shift(@items);
 9680:                                         push(@tocheck,$next);
 9681:                                     }
 9682:                                 }
 9683:                             } else {
 9684:                                 @tocheck = @items;
 9685:                             }
 9686:                             foreach my $letter (@tocheck) {
 9687:                                 if ($scantron_config->{'Qon'} eq 'letter') {
 9688:                                     if ($letter !~ /^[A-J]$/) {
 9689:                                         $letter = $scantron_config->{'Qoff'};
 9690:                                     }
 9691:                                     $recorded{$part_id} .= $letter;
 9692:                                 } elsif ($scantron_config->{'Qon'} eq 'number') {
 9693:                                     my $digit;
 9694:                                     if ($letter !~ /^[A-J]$/) {
 9695:                                         $digit = $scantron_config->{'Qoff'};
 9696:                                     } else {
 9697:                                         $digit = $lettdig->{$letter};
 9698:                                     }
 9699:                                     $recorded{$part_id} .= $digit;
 9700:                                 }
 9701:                             }
 9702:                         } else {
 9703:                             @tocheck = @items;
 9704:                             for (my $i=0; $i<$expected{$part_id}; $i++) {
 9705:                                 my $curr_sub = shift(@tocheck);
 9706:                                 my $digit;
 9707:                                 if ($curr_sub =~ /^[A-J]$/) {
 9708:                                     $digit = $lettdig->{$curr_sub}-1;
 9709:                                 }
 9710:                                 if ($curr_sub eq 'J') {
 9711:                                     $digit += scalar($numletts);
 9712:                                 }
 9713:                                 for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
 9714:                                     if ($j == $digit) {
 9715:                                         $recorded{$part_id} .= $scantron_config->{'Qon'};
 9716:                                     } else {
 9717:                                         $recorded{$part_id} .= $scantron_config->{'Qoff'};
 9718:                                     }
 9719:                                 }
 9720:                             }
 9721:                         }
 9722:                     }
 9723:                 }
 9724:             }
 9725:         }
 9726:         foreach my $part_id (@{$partids}) {
 9727:             if ($recorded{$part_id} eq '') {
 9728:                 for (my $i=0; $i<$expected{$part_id}; $i++) {
 9729:                     for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
 9730:                         $recorded{$part_id} .= $scantron_config->{'Qoff'};
 9731:                     }
 9732:                 }
 9733:             }
 9734:             $record .= $recorded{$part_id};
 9735:         }
 9736:     }
 9737:     return ($counter,$record);
 9738: }
 9739: 
 9740: 
 9741: #-------- end of section for handling grading scantron forms -------
 9742: #
 9743: #-------------------------------------------------------------------
 9744: 
 9745: #-------------------------- Menu interface -------------------------
 9746: #
 9747: #--- Href with symb and command ---
 9748: 
 9749: sub href_symb_cmd {
 9750:     my ($symb,$cmd)=@_;
 9751:     return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&amp;command='.$cmd;
 9752: }
 9753: 
 9754: sub grading_menu {
 9755:     my ($request,$symb) = @_;
 9756:     if (!$symb) {return '';}
 9757: 
 9758:     my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
 9759:                   'command'=>'individual');
 9760:     
 9761:     my $url1a = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9762: 
 9763:     $fields{'command'}='ungraded';
 9764:     my $url1b=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9765: 
 9766:     $fields{'command'}='table';
 9767:     my $url1c=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9768: 
 9769:     $fields{'command'}='all_for_one';
 9770:     my $url1d=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9771: 
 9772:     $fields{'command'}='downloadfilesselect';
 9773:     my $url1e=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9774: 
 9775:     $fields{'command'} = 'csvform';
 9776:     my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9777:     
 9778:     $fields{'command'} = 'processclicker';
 9779:     my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9780:     
 9781:     $fields{'command'} = 'scantron_selectphase';
 9782:     my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9783: 
 9784:     $fields{'command'} = 'initialverifyreceipt';
 9785:     my $url5 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9786:     
 9787:     my @menu = ({	categorytitle=>'Hand Grading',
 9788:             items =>[
 9789:                         {	linktext => 'Select individual students to grade',
 9790:                     		url => $url1a,
 9791:                     		permission => 'F',
 9792:                     		icon => 'grade_students.png',
 9793:                     		linktitle => 'Grade current resource for a selection of students.'
 9794:                         }, 
 9795:                         {       linktext => 'Grade ungraded submissions.',
 9796:                                 url => $url1b,
 9797:                                 permission => 'F',
 9798:                                 icon => 'ungrade_sub.png',
 9799:                                 linktitle => 'Grade all submissions that have not been graded yet.'
 9800:                         },
 9801: 
 9802:                         {       linktext => 'Grading table',
 9803:                                 url => $url1c,
 9804:                                 permission => 'F',
 9805:                                 icon => 'grading_table.png',
 9806:                                 linktitle => 'Grade current resource for all students.'
 9807:                         },
 9808:                         {       linktext => 'Grade page/folder for one student',
 9809:                                 url => $url1d,
 9810:                                 permission => 'F',
 9811:                                 icon => 'grade_PageFolder.png',
 9812:                                 linktitle => 'Grade all resources in current page/sequence/folder for one student.'
 9813:                         },
 9814:                         {       linktext => 'Download submissions',
 9815:                                 url => $url1e,
 9816:                                 permission => 'F',
 9817:                                 icon => 'download_sub.png',
 9818:                                 linktitle => 'Download all students submissions.'
 9819:                         }]},
 9820:                          { categorytitle=>'Automated Grading',
 9821:                items =>[
 9822: 
 9823:                 	    {	linktext => 'Upload Scores',
 9824:                     		url => $url2,
 9825:                     		permission => 'F',
 9826:                     		icon => 'uploadscores.png',
 9827:                     		linktitle => 'Specify a file containing the class scores for current resource.'
 9828:                 	    },
 9829:                 	    {	linktext => 'Process Clicker',
 9830:                     		url => $url3,
 9831:                     		permission => 'F',
 9832:                     		icon => 'addClickerInfoFile.png',
 9833:                     		linktitle => 'Specify a file containing the clicker information for this resource.'
 9834:                 	    },
 9835:                 	    {	linktext => 'Grade/Manage/Review Bubblesheets',
 9836:                     		url => $url4,
 9837:                     		permission => 'F',
 9838:                     		icon => 'bubblesheet.png',
 9839:                     		linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
 9840:                 	    },
 9841:                             {   linktext => 'Verify Receipt Number',
 9842:                                 url => $url5,
 9843:                                 permission => 'F',
 9844:                                 icon => 'receipt_number.png',
 9845:                                 linktitle => 'Verify a system-generated receipt number for correct problem solution.'
 9846:                             }
 9847: 
 9848:                     ]
 9849:             });
 9850: 
 9851:     # Create the menu
 9852:     my $Str;
 9853:     $Str .= '<form method="post" action="" name="gradingMenu">';
 9854:     $Str .= '<input type="hidden" name="command" value="" />'.
 9855:     	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9856: 
 9857:     $Str .= &Apache::lonhtmlcommon::generate_menu(@menu);
 9858:     return $Str;    
 9859: }
 9860: 
 9861: 
 9862: sub ungraded {
 9863:     my ($request)=@_;
 9864:     &submit_options($request);
 9865: }
 9866: 
 9867: sub submit_options_sequence {
 9868:     my ($request,$symb) = @_;
 9869:     if (!$symb) {return '';}
 9870:     &commonJSfunctions($request);
 9871:     my $result;
 9872: 
 9873:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 9874:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9875:     $result.=&selectfield(0).
 9876:             '<input type="hidden" name="command" value="pickStudentPage" />
 9877:             <div>
 9878:               <input type="submit" value="'.&mt('Next').' &rarr;" />
 9879:             </div>
 9880:         </div>
 9881:   </form>';
 9882:     return $result;
 9883: }
 9884: 
 9885: sub submit_options_table {
 9886:     my ($request,$symb) = @_;
 9887:     if (!$symb) {return '';}
 9888:     &commonJSfunctions($request);
 9889:     my $is_tool = ($symb =~ /ext\.tool$/);
 9890:     my $result;
 9891: 
 9892:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 9893:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9894: 
 9895:     $result.=&selectfield(1,$is_tool).
 9896:             '<input type="hidden" name="command" value="viewgrades" />
 9897:             <div>
 9898:               <input type="submit" value="'.&mt('Next').' &rarr;" />
 9899:             </div>
 9900:         </div>
 9901:   </form>';
 9902:     return $result;
 9903: }
 9904: 
 9905: sub submit_options_download {
 9906:     my ($request,$symb) = @_;
 9907:     if (!$symb) {return '';}
 9908: 
 9909:     my $is_tool = ($symb =~ /ext\.tool$/);
 9910:     &commonJSfunctions($request);
 9911: 
 9912:     my $result='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 9913:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9914:     $result.='
 9915: <h2>
 9916:   '.&mt('Select Students for whom to Download Submissions').'
 9917: </h2>'.&selectfield(1,$is_tool).'
 9918:                 <input type="hidden" name="command" value="downloadfileslink" /> 
 9919:               <input type="submit" value="'.&mt('Next').' &rarr;" />
 9920:             </div>
 9921:           </div>
 9922: 
 9923: 
 9924:   </form>';
 9925:     return $result;
 9926: }
 9927: 
 9928: #--- Displays the submissions first page -------
 9929: sub submit_options {
 9930:     my ($request,$symb) = @_;
 9931:     if (!$symb) {return '';}
 9932: 
 9933:     my $is_tool = ($symb =~ /ext\.tool$/);
 9934:     &commonJSfunctions($request);
 9935:     my $result;
 9936: 
 9937:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 9938: 	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9939:     $result.=&selectfield(1,$is_tool).'
 9940:                 <input type="hidden" name="command" value="submission" /> 
 9941: 	      <input type="submit" value="'.&mt('Next').' &rarr;" />
 9942:             </div>
 9943:           </div>
 9944: 
 9945: 
 9946:   </form>';
 9947:     return $result;
 9948: }
 9949: 
 9950: sub selectfield {
 9951:    my ($full,$is_tool)=@_;
 9952:    my %options;
 9953:    if ($is_tool) {
 9954:        %options =
 9955:            (&transtatus_options,
 9956:             'select_form_order' => ['yes','incorrect','all']);
 9957:    } else {
 9958:        %options = 
 9959:            (&substatus_options,
 9960:             'select_form_order' => ['yes','queued','graded','incorrect','all']);
 9961:    }
 9962:    my $result='<div class="LC_columnSection">
 9963:   
 9964:     <fieldset>
 9965:       <legend>
 9966:        '.&mt('Sections').'
 9967:       </legend>
 9968:       '.&Apache::lonstatistics::SectionSelect('section','multiple',5).'
 9969:     </fieldset>
 9970:   
 9971:     <fieldset>
 9972:       <legend>
 9973:         '.&mt('Groups').'
 9974:       </legend>
 9975:       '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
 9976:     </fieldset>
 9977:   
 9978:     <fieldset>
 9979:       <legend>
 9980:         '.&mt('Access Status').'
 9981:       </legend>
 9982:       '.&Apache::lonhtmlcommon::StatusOptions(undef,undef,5,undef,'mult').'
 9983:     </fieldset>';
 9984:     if ($full) {
 9985:         my $heading = &mt('Submission Status');
 9986:         if ($is_tool) {
 9987:             $heading = &mt('Transaction Status');
 9988:         }
 9989:         $result.='
 9990:     <fieldset>
 9991:       <legend>
 9992:         '.$heading.'
 9993:       </legend>'.
 9994:        &Apache::loncommon::select_form('all','submitonly',\%options).
 9995:    '</fieldset>';
 9996:     }
 9997:     $result.='</div><br />';
 9998:     return $result;
 9999: }
10000: 
10001: sub substatus_options {
10002:     return &Apache::lonlocal::texthash(
10003:                                       'yes'       => 'with submissions',
10004:                                       'queued'    => 'in grading queue',
10005:                                       'graded'    => 'with ungraded submissions',
10006:                                       'incorrect' => 'with incorrect submissions',
10007:                                       'all'       => 'with any status',
10008:                                       );
10009: }
10010: 
10011: sub transtatus_options {
10012:     return &Apache::lonlocal::texthash(
10013:                                        'yes'       => 'with score transactions',
10014:                                        'incorrect' => 'with less than full credit',
10015:                                        'all'       => 'with any status',
10016:                                       );
10017: }
10018: 
10019: sub reset_perm {
10020:     undef(%perm);
10021: }
10022: 
10023: sub init_perm {
10024:     &reset_perm();
10025:     foreach my $test_perm ('vgr','mgr','opa') {
10026: 
10027: 	my $scope = $env{'request.course.id'};
10028: 	if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
10029: 
10030: 	    $scope .= '/'.$env{'request.course.sec'};
10031: 	    if ( $perm{$test_perm}=
10032: 		 &Apache::lonnet::allowed($test_perm,$scope)) {
10033: 		$perm{$test_perm.'_section'}=$env{'request.course.sec'};
10034: 	    } else {
10035: 		delete($perm{$test_perm});
10036: 	    }
10037: 	}
10038:     }
10039: }
10040: 
10041: sub init_old_essays {
10042:     my ($symb,$apath,$adom,$aname) = @_;
10043:     if ($symb ne '') {
10044:         my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
10045:         if (keys(%essays) > 0) {
10046:             $old_essays{$symb} = \%essays;
10047:         }
10048:     }
10049:     return;
10050: }
10051: 
10052: sub reset_old_essays {
10053:     undef(%old_essays);
10054: }
10055: 
10056: sub gather_clicker_ids {
10057:     my %clicker_ids;
10058: 
10059:     my $classlist = &Apache::loncoursedata::get_classlist();
10060: 
10061:     # Set up a couple variables.
10062:     my $username_idx = &Apache::loncoursedata::CL_SNAME();
10063:     my $domain_idx   = &Apache::loncoursedata::CL_SDOM();
10064:     my $status_idx   = &Apache::loncoursedata::CL_STATUS();
10065: 
10066:     foreach my $student (keys(%$classlist)) {
10067:         if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
10068:         my $username = $classlist->{$student}->[$username_idx];
10069:         my $domain   = $classlist->{$student}->[$domain_idx];
10070:         my $clickers =
10071: 	    (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
10072:         foreach my $id (split(/\,/,$clickers)) {
10073:             $id=~s/^[\#0]+//;
10074:             $id=~s/[\-\:]//g;
10075:             if (exists($clicker_ids{$id})) {
10076: 		$clicker_ids{$id}.=','.$username.':'.$domain;
10077:             } else {
10078: 		$clicker_ids{$id}=$username.':'.$domain;
10079:             }
10080:         }
10081:     }
10082:     return %clicker_ids;
10083: }
10084: 
10085: sub gather_adv_clicker_ids {
10086:     my %clicker_ids;
10087:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
10088:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
10089:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
10090:     foreach my $element (sort(keys(%coursepersonnel))) {
10091:         foreach my $person (split(/\,/,$coursepersonnel{$element})) {
10092:             my ($puname,$pudom)=split(/\:/,$person);
10093:             my $clickers =
10094: 		(&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
10095:             foreach my $id (split(/\,/,$clickers)) {
10096: 		$id=~s/^[\#0]+//;
10097:                 $id=~s/[\-\:]//g;
10098: 		if (exists($clicker_ids{$id})) {
10099: 		    $clicker_ids{$id}.=','.$puname.':'.$pudom;
10100: 		} else {
10101: 		    $clicker_ids{$id}=$puname.':'.$pudom;
10102: 		}
10103:             }
10104:         }
10105:     }
10106:     return %clicker_ids;
10107: }
10108: 
10109: sub clicker_grading_parameters {
10110:     return ('gradingmechanism' => 'scalar',
10111:             'upfiletype' => 'scalar',
10112:             'specificid' => 'scalar',
10113:             'pcorrect' => 'scalar',
10114:             'pincorrect' => 'scalar');
10115: }
10116: 
10117: sub process_clicker {
10118:     my ($r,$symb)=@_;
10119:     if (!$symb) {return '';}
10120:     my $result=&checkforfile_js();
10121:     $result.=&Apache::loncommon::start_data_table().
10122:              &Apache::loncommon::start_data_table_header_row().
10123:              '<th>'.&mt('Specify a file containing clicker information and set grading options.').'</th>'.
10124:              &Apache::loncommon::end_data_table_header_row().
10125:              &Apache::loncommon::start_data_table_row()."<td>\n";
10126: # Attempt to restore parameters from last session, set defaults if not present
10127:     my %Saveable_Parameters=&clicker_grading_parameters();
10128:     &Apache::loncommon::restore_course_settings('grades_clicker',
10129:                                                  \%Saveable_Parameters);
10130:     if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
10131:     if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
10132:     if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
10133:     if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
10134: 
10135:     my %checked;
10136:     foreach my $gradingmechanism ('attendance','personnel','specific','given') {
10137:        if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
10138:           $checked{$gradingmechanism}=' checked="checked"';
10139:        }
10140:     }
10141: 
10142:     my $upload=&mt("Evaluate File");
10143:     my $type=&mt("Type");
10144:     my $attendance=&mt("Award points just for participation");
10145:     my $personnel=&mt("Correctness determined from response by course personnel");
10146:     my $specific=&mt("Correctness determined from response with clicker ID(s)"); 
10147:     my $given=&mt("Correctness determined from given list of answers").' '.
10148:               '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
10149:     my $pcorrect=&mt("Percentage points for correct solution");
10150:     my $pincorrect=&mt("Percentage points for incorrect solution");
10151:     my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
10152: 						   {'iclicker' => 'i>clicker',
10153:                                                     'interwrite' => 'interwrite PRS',
10154:                                                     'turning' => 'Turning Technologies'});
10155:     $symb = &Apache::lonenc::check_encrypt($symb);
10156:     $result.= &Apache::lonhtmlcommon::scripttag(<<ENDUPFORM);
10157: function sanitycheck() {
10158: // Accept only integer percentages
10159:    document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
10160:    document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
10161: // Find out grading choice
10162:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
10163:       if (document.forms.gradesupload.gradingmechanism[i].checked) {
10164:          gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
10165:       }
10166:    }
10167: // By default, new choice equals user selection
10168:    newgradingchoice=gradingchoice;
10169: // Not good to give more points for false answers than correct ones
10170:    if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
10171:       document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
10172:    }
10173: // If new choice is attendance only, and old choice was correctness-based, restore defaults
10174:    if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
10175:       document.forms.gradesupload.pcorrect.value=100;
10176:       document.forms.gradesupload.pincorrect.value=100;
10177:    }
10178: // If the values are different, cannot be attendance only
10179:    if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
10180:        (gradingchoice=='attendance')) {
10181:        newgradingchoice='personnel';
10182:    }
10183: // Change grading choice to new one
10184:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
10185:       if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
10186:          document.forms.gradesupload.gradingmechanism[i].checked=true;
10187:       } else {
10188:          document.forms.gradesupload.gradingmechanism[i].checked=false;
10189:       }
10190:    }
10191: // Remember the old state
10192:    document.forms.gradesupload.waschecked.value=newgradingchoice;
10193: }
10194: ENDUPFORM
10195:     $result.= <<ENDUPFORM;
10196: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
10197: <input type="hidden" name="symb" value="$symb" />
10198: <input type="hidden" name="command" value="processclickerfile" />
10199: <input type="file" name="upfile" size="50" />
10200: <br /><label>$type: $selectform</label>
10201: ENDUPFORM
10202:     $result.='</td>'.&Apache::loncommon::end_data_table_row().
10203:                      &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDGRADINGFORM);
10204:       <label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
10205: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
10206: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
10207: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
10208: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
10209: <br />&nbsp;&nbsp;&nbsp;
10210: <input type="text" name="givenanswer" size="50" />
10211: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
10212: ENDGRADINGFORM
10213:          $result.='</td>'.&Apache::loncommon::end_data_table_row().
10214:                      &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDPERCFORM);
10215:       <label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
10216: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
10217: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
10218: </form>'
10219: ENDPERCFORM
10220:     $result.='</td>'.
10221:              &Apache::loncommon::end_data_table_row().
10222:              &Apache::loncommon::end_data_table();
10223:     return $result;
10224: }
10225: 
10226: sub process_clicker_file {
10227:     my ($r,$symb)=@_;
10228:     if (!$symb) {return '';}
10229: 
10230:     my %Saveable_Parameters=&clicker_grading_parameters();
10231:     &Apache::loncommon::store_course_settings('grades_clicker',
10232:                                               \%Saveable_Parameters);
10233:     my $result='';
10234:     if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
10235: 	$result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
10236: 	return $result;
10237:     }
10238:     if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
10239:         $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
10240:         return $result;
10241:     }
10242:     my $foundgiven=0;
10243:     if ($env{'form.gradingmechanism'} eq 'given') {
10244:         $env{'form.givenanswer'}=~s/^\s*//gs;
10245:         $env{'form.givenanswer'}=~s/\s*$//gs;
10246:         $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
10247:         $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
10248:         my @answers=split(/\,/,$env{'form.givenanswer'});
10249:         $foundgiven=$#answers+1;
10250:     }
10251:     my %clicker_ids=&gather_clicker_ids();
10252:     my %correct_ids;
10253:     if ($env{'form.gradingmechanism'} eq 'personnel') {
10254: 	%correct_ids=&gather_adv_clicker_ids();
10255:     }
10256:     if ($env{'form.gradingmechanism'} eq 'specific') {
10257: 	foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
10258: 	   $correct_id=~tr/a-z/A-Z/;
10259: 	   $correct_id=~s/\s//gs;
10260: 	   $correct_id=~s/^[\#0]+//;
10261:            $correct_id=~s/[\-\:]//g;
10262:            if ($correct_id) {
10263: 	      $correct_ids{$correct_id}='specified';
10264:            }
10265:         }
10266:     }
10267:     if ($env{'form.gradingmechanism'} eq 'attendance') {
10268: 	$result.=&mt('Score based on attendance only');
10269:     } elsif ($env{'form.gradingmechanism'} eq 'given') {
10270:         $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
10271:     } else {
10272: 	my $number=0;
10273: 	$result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
10274: 	foreach my $id (sort(keys(%correct_ids))) {
10275: 	    $result.='<br /><tt>'.$id.'</tt> - ';
10276: 	    if ($correct_ids{$id} eq 'specified') {
10277: 		$result.=&mt('specified');
10278: 	    } else {
10279: 		my ($uname,$udom)=split(/\:/,$correct_ids{$id});
10280: 		$result.=&Apache::loncommon::plainname($uname,$udom);
10281: 	    }
10282: 	    $number++;
10283: 	}
10284:         $result.="</p>\n";
10285:         if ($number==0) {
10286:             $result .=
10287:                  &Apache::lonhtmlcommon::confirm_success(
10288:                      &mt('No IDs found to determine correct answer'),1);
10289:             return $result;
10290:         }
10291:     }
10292:     if (length($env{'form.upfile'}) < 2) {
10293:         $result .=
10294:             &Apache::lonhtmlcommon::confirm_success(
10295:                 &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
10296:                         '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1);
10297:         return $result;
10298:     }
10299: 
10300: # Were able to get all the info needed, now analyze the file
10301: 
10302:     $result.=&Apache::loncommon::studentbrowser_javascript();
10303:     $symb = &Apache::lonenc::check_encrypt($symb);
10304:     $result.=&Apache::loncommon::start_data_table().
10305:              &Apache::loncommon::start_data_table_header_row().
10306:              '<th>'.&mt('Evaluate clicker file').'</th>'.
10307:              &Apache::loncommon::end_data_table_header_row().
10308:              &Apache::loncommon::start_data_table_row().(<<ENDHEADER);
10309: <td>
10310: <form method="post" action="/adm/grades" name="clickeranalysis">
10311: <input type="hidden" name="symb" value="$symb" />
10312: <input type="hidden" name="command" value="assignclickergrades" />
10313: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
10314: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
10315: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
10316: ENDHEADER
10317:     if ($env{'form.gradingmechanism'} eq 'given') {
10318:        $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
10319:     } 
10320:     my %responses;
10321:     my @questiontitles;
10322:     my $errormsg='';
10323:     my $number=0;
10324:     if ($env{'form.upfiletype'} eq 'iclicker') {
10325: 	($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
10326:     }
10327:     if ($env{'form.upfiletype'} eq 'interwrite') {
10328:         ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
10329:     }
10330:     if ($env{'form.upfiletype'} eq 'turning') {
10331:         ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
10332:     }
10333:     $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
10334:              '<input type="hidden" name="number" value="'.$number.'" />'.
10335:              &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
10336:                  $env{'form.pcorrect'},$env{'form.pincorrect'}).
10337:              '<br />';
10338:     if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
10339:        $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
10340:        return $result;
10341:     } 
10342: # Remember Question Titles
10343: # FIXME: Possibly need delimiter other than ":"
10344:     for (my $i=0;$i<$number;$i++) {
10345:         $result.='<input type="hidden" name="question:'.$i.'" value="'.
10346:                  &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
10347:     }
10348:     my $correct_count=0;
10349:     my $student_count=0;
10350:     my $unknown_count=0;
10351: # Match answers with usernames
10352: # FIXME: Possibly need delimiter other than ":"
10353:     foreach my $id (keys(%responses)) {
10354:        if ($correct_ids{$id}) {
10355:           $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
10356:           $correct_count++;
10357:        } elsif ($clicker_ids{$id}) {
10358:           if ($clicker_ids{$id}=~/\,/) {
10359: # More than one user with the same clicker!
10360:              $result.="</td>".&Apache::loncommon::end_data_table_row().
10361:                            &Apache::loncommon::start_data_table_row()."<td>".
10362:                        &mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
10363:              $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10364:                            "<select name='multi".$id."'>";
10365:              foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
10366:                  $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
10367:              }
10368:              $result.='</select>';
10369:              $unknown_count++;
10370:           } else {
10371: # Good: found one and only one user with the right clicker
10372:              $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
10373:              $student_count++;
10374:           }
10375:        } else {
10376:           $result.="</td>".&Apache::loncommon::end_data_table_row().
10377:                            &Apache::loncommon::start_data_table_row()."<td>".
10378:                     &mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
10379:           $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10380:                    "\n".&mt("Username").": <input type='text' name='uname".$id."' />&nbsp;".
10381:                    "\n".&mt("Domain").": ".
10382:                    &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).'&nbsp;'.
10383:                    &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
10384:           $unknown_count++;
10385:        }
10386:     }
10387:     $result.='<hr />'.
10388:              &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
10389:     if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
10390:        if ($correct_count==0) {
10391:           $errormsg.="Found no correct answers for grading!";
10392:        } elsif ($correct_count>1) {
10393:           $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
10394:        }
10395:     }
10396:     if ($number<1) {
10397:        $errormsg.="Found no questions.";
10398:     }
10399:     if ($errormsg) {
10400:        $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
10401:     } else {
10402:        $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
10403:     }
10404:     $result.='</form></td>'.
10405:              &Apache::loncommon::end_data_table_row().
10406:              &Apache::loncommon::end_data_table();
10407:     return $result;
10408: }
10409: 
10410: sub iclicker_eval {
10411:     my ($questiontitles,$responses)=@_;
10412:     my $number=0;
10413:     my $errormsg='';
10414:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10415:         my %components=&Apache::loncommon::record_sep($line);
10416:         my @entries=map {$components{$_}} (sort(keys(%components)));
10417: 	if ($entries[0] eq 'Question') {
10418: 	    for (my $i=3;$i<$#entries;$i+=6) {
10419: 		$$questiontitles[$number]=$entries[$i];
10420: 		$number++;
10421: 	    }
10422: 	}
10423: 	if ($entries[0]=~/^\#/) {
10424: 	    my $id=$entries[0];
10425: 	    my @idresponses;
10426: 	    $id=~s/^[\#0]+//;
10427: 	    for (my $i=0;$i<$number;$i++) {
10428: 		my $idx=3+$i*6;
10429:                 $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
10430: 		push(@idresponses,$entries[$idx]);
10431: 	    }
10432: 	    $$responses{$id}=join(',',@idresponses);
10433: 	}
10434:     }
10435:     return ($errormsg,$number);
10436: }
10437: 
10438: sub interwrite_eval {
10439:     my ($questiontitles,$responses)=@_;
10440:     my $number=0;
10441:     my $errormsg='';
10442:     my $skipline=1;
10443:     my $questionnumber=0;
10444:     my %idresponses=();
10445:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10446:         my %components=&Apache::loncommon::record_sep($line);
10447:         my @entries=map {$components{$_}} (sort(keys(%components)));
10448:         if ($entries[1] eq 'Time') { $skipline=0; next; }
10449:         if ($entries[1] eq 'Response') { $skipline=1; }
10450:         next if $skipline;
10451:         if ($entries[0]!=$questionnumber) {
10452:            $questionnumber=$entries[0];
10453:            $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
10454:            $number++;
10455:         }
10456:         my $id=$entries[4];
10457:         $id=~s/^[\#0]+//;
10458:         $id=~s/^v\d*\://i;
10459:         $id=~s/[\-\:]//g;
10460:         $idresponses{$id}[$number]=$entries[6];
10461:     }
10462:     foreach my $id (keys(%idresponses)) {
10463:        $$responses{$id}=join(',',@{$idresponses{$id}});
10464:        $$responses{$id}=~s/^\s*\,//;
10465:     }
10466:     return ($errormsg,$number);
10467: }
10468: 
10469: sub turning_eval {
10470:     my ($questiontitles,$responses)=@_;
10471:     my $number=0;
10472:     my $errormsg='';
10473:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10474:         my %components=&Apache::loncommon::record_sep($line);
10475:         my @entries=map {$components{$_}} (sort(keys(%components)));
10476:         if ($#entries>$number) { $number=$#entries; }
10477:         my $id=$entries[0];
10478:         my @idresponses;
10479:         $id=~s/^[\#0]+//;
10480:         unless ($id) { next; }
10481:         for (my $idx=1;$idx<=$#entries;$idx++) {
10482:             $entries[$idx]=~s/\,/\;/g;
10483:             $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
10484:             push(@idresponses,$entries[$idx]);
10485:         }
10486:         $$responses{$id}=join(',',@idresponses);
10487:     }
10488:     for (my $i=1; $i<=$number; $i++) {
10489:         $$questiontitles[$i]=&mt('Question [_1]',$i);
10490:     }
10491:     return ($errormsg,$number);
10492: }
10493: 
10494: 
10495: sub assign_clicker_grades {
10496:     my ($r,$symb)=@_;
10497:     if (!$symb) {return '';}
10498: # See which part we are saving to
10499:     my $res_error;
10500:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
10501:     if ($res_error) {
10502:         return &navmap_errormsg();
10503:     }
10504: # FIXME: This should probably look for the first handgradeable part
10505:     my $part=$$partlist[0];
10506: # Start screen output
10507:     my $result=&Apache::loncommon::start_data_table().
10508:              &Apache::loncommon::start_data_table_header_row().
10509:              '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
10510:              &Apache::loncommon::end_data_table_header_row().
10511:              &Apache::loncommon::start_data_table_row().'<td>';
10512: # Get correct result
10513: # FIXME: Possibly need delimiter other than ":"
10514:     my @correct=();
10515:     my $gradingmechanism=$env{'form.gradingmechanism'};
10516:     my $number=$env{'form.number'};
10517:     if ($gradingmechanism ne 'attendance') {
10518:        foreach my $key (keys(%env)) {
10519:           if ($key=~/^form\.correct\:/) {
10520:              my @input=split(/\,/,$env{$key});
10521:              for (my $i=0;$i<=$#input;$i++) {
10522:                  if (($correct[$i]) && ($input[$i]) &&
10523:                      ($correct[$i] ne $input[$i])) {
10524:                     $result.='<br /><span class="LC_warning">'.
10525:                              &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
10526:                                  $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
10527:                  } elsif (($input[$i]) || ($input[$i] eq '0')) {
10528:                     $correct[$i]=$input[$i];
10529:                  }
10530:              }
10531:           }
10532:        }
10533:        for (my $i=0;$i<$number;$i++) {
10534:           if ((!$correct[$i]) && ($correct[$i] ne '0')) {
10535:              $result.='<br /><span class="LC_error">'.
10536:                       &mt('No correct result given for question "[_1]"!',
10537:                           $env{'form.question:'.$i}).'</span>';
10538:           }
10539:        }
10540:        $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
10541:     }
10542: # Start grading
10543:     my $pcorrect=$env{'form.pcorrect'};
10544:     my $pincorrect=$env{'form.pincorrect'};
10545:     my $storecount=0;
10546:     my %users=();
10547:     foreach my $key (keys(%env)) {
10548:        my $user='';
10549:        if ($key=~/^form\.student\:(.*)$/) {
10550:           $user=$1;
10551:        }
10552:        if ($key=~/^form\.unknown\:(.*)$/) {
10553:           my $id=$1;
10554:           if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
10555:              $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
10556:           } elsif ($env{'form.multi'.$id}) {
10557:              $user=$env{'form.multi'.$id};
10558:           }
10559:        }
10560:        if ($user) {
10561:           if ($users{$user}) {
10562:              $result.='<br /><span class="LC_warning">'.
10563:                       &mt('More than one entry found for [_1]!','<tt>'.$user.'</tt>').
10564:                       '</span><br />';
10565:           }
10566:           $users{$user}=1; 
10567:           my @answer=split(/\,/,$env{$key});
10568:           my $sum=0;
10569:           my $realnumber=$number;
10570:           for (my $i=0;$i<$number;$i++) {
10571:              if  ($correct[$i] eq '-') {
10572:                 $realnumber--;
10573:              } elsif (($answer[$i]) || ($answer[$i]=~/^[0\.]+$/))  {
10574:                 if ($gradingmechanism eq 'attendance') {
10575:                    $sum+=$pcorrect;
10576:                 } elsif ($correct[$i] eq '*') {
10577:                    $sum+=$pcorrect;
10578:                 } else {
10579: # We actually grade if correct or not
10580:                    my $increment=$pincorrect;
10581: # Special case: numerical answer "0"
10582:                    if ($correct[$i] eq '0') {
10583:                       if ($answer[$i]=~/^[0\.]+$/) {
10584:                          $increment=$pcorrect;
10585:                       }
10586: # General numerical answer, both evaluate to something non-zero
10587:                    } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
10588:                       if (1.0*$correct[$i]==1.0*$answer[$i]) {
10589:                          $increment=$pcorrect;
10590:                       }
10591: # Must be just alphanumeric
10592:                    } elsif ($answer[$i] eq $correct[$i]) {
10593:                       $increment=$pcorrect;
10594:                    }
10595:                    $sum+=$increment;
10596:                 }
10597:              }
10598:           }
10599:           my $ave=$sum/(100*$realnumber);
10600: # Store
10601:           my ($username,$domain)=split(/\:/,$user);
10602:           my %grades=();
10603:           $grades{"resource.$part.solved"}='correct_by_override';
10604:           $grades{"resource.$part.awarded"}=$ave;
10605:           $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
10606:           my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
10607:                                                  $env{'request.course.id'},
10608:                                                  $domain,$username);
10609:           if ($returncode ne 'ok') {
10610:              $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
10611:           } else {
10612:              $storecount++;
10613:           }
10614:        }
10615:     }
10616: # We are done
10617:     $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
10618:              '</td>'.
10619:              &Apache::loncommon::end_data_table_row().
10620:              &Apache::loncommon::end_data_table();
10621:     return $result;
10622: }
10623: 
10624: sub navmap_errormsg {
10625:     return '<div class="LC_error">'.
10626:            &mt('An error occurred retrieving information about resources in the course.').'<br />'.
10627:            &mt('It is recommended that you [_1]re-initialize the course[_2] and then return to this grading page.','<a href="/adm/roles?selectrole=1&newrole='.$env{'request.role'}.'">','</a>').
10628:            '</div>';
10629: }
10630: 
10631: sub startpage {
10632:     my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js,$onload) = @_;
10633:     my %args;
10634:     if ($onload) {
10635:          my %loaditems = (
10636:                         'onload' => $onload,
10637:                       );
10638:          $args{'add_entries'} = \%loaditems;
10639:     }
10640:     if ($nomenu) {
10641:         $args{'only_body'} = 1; 
10642:         $r->print(&Apache::loncommon::start_page("Student's Version",$js,\%args);
10643:     } else {
10644:         unshift(@$crumbs,{href=>&href_symb_cmd($symb,'gradingmenu'),text=>"Grading"});
10645:         $args{'bread_crumbs'} = $crumbs;
10646:         $r->print(&Apache::loncommon::start_page('Grading',$js,\%args));
10647:         &Apache::lonquickgrades::startGradeScreen($r,($env{'form.symb'}?'probgrading':'grading'));
10648:     }
10649:     unless ($nodisplayflag) {
10650:        $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
10651:     }
10652: }
10653: 
10654: sub select_problem {
10655:     my ($r)=@_;
10656:     $r->print('<h3>'.&mt('Select the problem or one of the problems you want to grade').'</h3><form action="/adm/grades">');
10657:     $r->print(&Apache::lonstathelpers::problem_selector('.',undef,1,undef,undef,undef,undef,1));
10658:     $r->print('<input type="hidden" name="command" value="gradingmenu" />');
10659:     $r->print('<input type="submit" value="'.&mt('Next').' &rarr;" /></form>');
10660: }
10661: 
10662: sub handler {
10663:     my $request=$_[0];
10664:     &reset_caches();
10665:     if ($request->header_only) {
10666:         &Apache::loncommon::content_type($request,'text/html');
10667:         $request->send_http_header;
10668:         return OK;
10669:     }
10670:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
10671: 
10672: # see what command we need to execute
10673: 
10674:     my @commands=&Apache::loncommon::get_env_multiple('form.command');
10675:     my $command=$commands[0];
10676: 
10677:     &init_perm();
10678:     if (!$env{'request.course.id'}) {
10679:         unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
10680:                 ($command =~ /^scantronupload/)) {
10681:             # Not in a course.
10682:             $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
10683:             return HTTP_NOT_ACCEPTABLE;
10684:         }
10685:     } elsif (!%perm) {
10686:         $request->internal_redirect('/adm/quickgrades');
10687:         return OK;
10688:     }
10689:     &Apache::loncommon::content_type($request,'text/html');
10690:     $request->send_http_header;
10691: 
10692:     if ($#commands > 0) {
10693: 	&Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
10694:     }
10695: 
10696: # see what the symb is
10697: 
10698:     my $symb=$env{'form.symb'};
10699:     unless ($symb) {
10700:        (my $url=$env{'form.url'}) =~ s-^https*://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
10701:        $symb=&Apache::lonnet::symbread($url);
10702:     }
10703:     &Apache::lonenc::check_decrypt(\$symb);
10704: 
10705:     $ssi_error = 0;
10706:     if (($symb eq '' || $command eq '') && ($env{'request.course.id'})) {
10707: #
10708: # Not called from a resource, but inside a course
10709: #    
10710:         &startpage($request,undef,[],1,1);
10711:         &select_problem($request);
10712:     } else {
10713: 	if ($command eq 'submission' && $perm{'vgr'}) {
10714:             my ($stuvcurrent,$stuvdisp,$versionform,$js);
10715:             if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
10716:                 ($stuvcurrent,$stuvdisp,$versionform,$js) =
10717:                     &choose_task_version_form($symb,$env{'form.student'},
10718:                                               $env{'form.userdom'});
10719:             }
10720:             &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
10721:             if ($versionform) {
10722:                 $request->print($versionform);
10723:             }
10724:             $request->print('<br clear="all" />');
10725: 	    ($env{'form.student'} eq '' ? &listStudents($request,$symb) : &submission($request,0,0,$symb));
10726:         } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
10727:             my ($stuvcurrent,$stuvdisp,$versionform,$js) =
10728:                 &choose_task_version_form($symb,$env{'form.student'},
10729:                                           $env{'form.userdom'},
10730:                                           $env{'form.inhibitmenu'});
10731:             &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
10732:             if ($versionform) {
10733:                 $request->print($versionform);
10734:             }
10735:             $request->print('<br clear="all" />');
10736:             $request->print(&show_previous_task_version($request,$symb));
10737: 	} elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
10738:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10739:                                        {href=>'',text=>'Select student'}],1,1);
10740: 	    &pickStudentPage($request,$symb);
10741: 	} elsif ($command eq 'displayPage' && $perm{'vgr'}) {
10742:             &startpage($request,$symb,
10743:                                       [{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10744:                                        {href=>'',text=>'Select student'},
10745:                                        {href=>'',text=>'Grade student'}],1,1);
10746: 	    &displayPage($request,$symb);
10747: 	} elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
10748:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10749:                                        {href=>'',text=>'Select student'},
10750:                                        {href=>'',text=>'Grade student'},
10751:                                        {href=>'',text=>'Store grades'}],1,1);
10752: 	    &updateGradeByPage($request,$symb);
10753: 	} elsif ($command eq 'processGroup' && $perm{'vgr'}) {
10754:             &startpage($request,$symb,[{href=>'',text=>'...'},
10755:                                        {href=>'',text=>'Modify grades'}]);
10756: 	    &processGroup($request,$symb);
10757: 	} elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
10758:             &startpage($request,$symb);
10759: 	    $request->print(&grading_menu($request,$symb));
10760: 	} elsif ($command eq 'individual' && $perm{'vgr'}) {
10761:             &startpage($request,$symb,[{href=>'',text=>'Select individual students to grade'}]);
10762: 	    $request->print(&submit_options($request,$symb));
10763:         } elsif ($command eq 'ungraded' && $perm{'vgr'}) {
10764:             &startpage($request,$symb,[{href=>'',text=>'Grade ungraded submissions'}]);
10765:             $request->print(&listStudents($request,$symb,'graded'));
10766:         } elsif ($command eq 'table' && $perm{'vgr'}) {
10767:             &startpage($request,$symb,[{href=>"", text=>"Grading table"}]);
10768:             $request->print(&submit_options_table($request,$symb));
10769:         } elsif ($command eq 'all_for_one' && $perm{'vgr'}) {
10770:             &startpage($request,$symb,[{href=>'',text=>'Grade page/folder for one student'}],1,1);
10771:             $request->print(&submit_options_sequence($request,$symb));
10772: 	} elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
10773:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},{href=>'', text=>"Modify grades"}]);
10774: 	    $request->print(&viewgrades($request,$symb));
10775: 	} elsif ($command eq 'handgrade' && $perm{'mgr'}) {
10776:             &startpage($request,$symb,[{href=>'',text=>'...'},
10777:                                        {href=>'',text=>'Store grades'}]);
10778: 	    $request->print(&processHandGrade($request,$symb));
10779: 	} elsif ($command eq 'editgrades' && $perm{'mgr'}) {
10780:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},
10781:                                        {href=>&href_symb_cmd($symb,'viewgrades').'&group=all&section=all&Status=Active',
10782:                                                                              text=>"Modify grades"},
10783:                                        {href=>'', text=>"Store grades"}]);
10784: 	    $request->print(&editgrades($request,$symb));
10785:         } elsif ($command eq 'initialverifyreceipt' && $perm{'vgr'}) {
10786:             &startpage($request,$symb,[{href=>'',text=>'Verify Receipt Number'}]);
10787:             $request->print(&initialverifyreceipt($request,$symb));
10788: 	} elsif ($command eq 'verify' && $perm{'vgr'}) {
10789:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"initialverifyreceipt"),text=>'Verify Receipt Number'},
10790:                                        {href=>'',text=>'Verification Result'}]);
10791: 	    $request->print(&verifyreceipt($request,$symb));
10792:         } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
10793:             &startpage($request,$symb,[{href=>'', text=>'Process clicker'}]);
10794:             $request->print(&process_clicker($request,$symb));
10795:         } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
10796:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10797:                                        {href=>'', text=>'Process clicker file'}]);
10798:             $request->print(&process_clicker_file($request,$symb));
10799:         } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
10800:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10801:                                        {href=>'', text=>'Process clicker file'},
10802:                                        {href=>'', text=>'Store grades'}]);
10803:             $request->print(&assign_clicker_grades($request,$symb));
10804: 	} elsif ($command eq 'csvform' && $perm{'mgr'}) {
10805:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10806: 	    $request->print(&upcsvScores_form($request,$symb));
10807: 	} elsif ($command eq 'csvupload' && $perm{'mgr'}) {
10808:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10809: 	    $request->print(&csvupload($request,$symb));
10810: 	} elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
10811:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10812: 	    $request->print(&csvuploadmap($request,$symb));
10813: 	} elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
10814: 	    if ($env{'form.associate'} ne 'Reverse Association') {
10815:                 &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10816: 		$request->print(&csvuploadoptions($request,$symb));
10817: 	    } else {
10818: 		if ( $env{'form.upfile_associate'} ne 'reverse' ) {
10819: 		    $env{'form.upfile_associate'} = 'reverse';
10820: 		} else {
10821: 		    $env{'form.upfile_associate'} = 'forward';
10822: 		}
10823:                 &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10824: 		$request->print(&csvuploadmap($request,$symb));
10825: 	    }
10826: 	} elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
10827:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10828: 	    $request->print(&csvuploadassign($request,$symb));
10829: 	} elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
10830:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1,
10831:                        undef,undef,undef,undef,'toggleScantab(document.rules);');
10832: 	    $request->print(&scantron_selectphase($request,undef,$symb));
10833:  	} elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
10834:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10835:  	    $request->print(&scantron_do_warning($request,$symb));
10836: 	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
10837:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10838: 	    $request->print(&scantron_validate_file($request,$symb));
10839: 	} elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
10840:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10841: 	    $request->print(&scantron_process_students($request,$symb));
10842:  	} elsif ($command eq 'scantronupload' && 
10843:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10844: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
10845:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1,
10846:                        undef,undef,undef,undef,'toggleScantab(document.rules);');
10847:  	    $request->print(&scantron_upload_scantron_data($request,$symb)); 
10848:  	} elsif ($command eq 'scantronupload_save' &&
10849:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10850: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
10851:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10852:  	    $request->print(&scantron_upload_scantron_data_save($request,$symb));
10853:  	} elsif ($command eq 'scantron_download' &&
10854: 		 &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
10855:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10856:  	    $request->print(&scantron_download_scantron_data($request,$symb));
10857:         } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
10858:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10859:             $request->print(&checkscantron_results($request,$symb));
10860:         } elsif ($command eq 'downloadfilesselect' && $perm{'vgr'}) {
10861:             &startpage($request,$symb,[{href=>'', text=>'Select which submissions to download'}]);
10862:             $request->print(&submit_options_download($request,$symb));
10863:          } elsif ($command eq 'downloadfileslink' && $perm{'vgr'}) {
10864:             &startpage($request,$symb,
10865:    [{href=>&href_symb_cmd($symb,'downloadfilesselect'), text=>'Select which submissions to download'},
10866:     {href=>'', text=>'Download submitted files'}]);
10867:             &submit_download_link($request,$symb);
10868: 	} elsif ($command) {
10869:             &startpage($request,$symb,[{href=>'', text=>'Access denied'}]);
10870: 	    $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
10871: 	}
10872:     }
10873:     if ($ssi_error) {
10874: 	&ssi_print_error($request);
10875:     }
10876:     if ($env{'form.inhibitmenu'}) {
10877:         $request->print(&Apache::loncommon::end_page());
10878:     } else {
10879:         &Apache::lonquickgrades::endGradeScreen($request);
10880:     }
10881:     &reset_caches();
10882:     return OK;
10883: }
10884: 
10885: 1;
10886: 
10887: __END__;
10888: 
10889: 
10890: =head1 NAME
10891: 
10892: Apache::grades
10893: 
10894: =head1 SYNOPSIS
10895: 
10896: Handles the viewing of grades.
10897: 
10898: This is part of the LearningOnline Network with CAPA project
10899: described at http://www.lon-capa.org.
10900: 
10901: =head1 OVERVIEW
10902: 
10903: Do an ssi with retries:
10904: While I'd love to factor out this with the version in lonprintout,
10905: 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
10906: I'm not quite ready to invent (e.g. an ssi_with_retry object).
10907: 
10908: At least the logic that drives this has been pulled out into loncommon.
10909: 
10910: 
10911: 
10912: ssi_with_retries - Does the server side include of a resource.
10913:                      if the ssi call returns an error we'll retry it up to
10914:                      the number of times requested by the caller.
10915:                      If we still have a problem, no text is appended to the
10916:                      output and we set some global variables.
10917:                      to indicate to the caller an SSI error occurred.  
10918:                      All of this is supposed to deal with the issues described
10919:                      in LON-CAPA BZ 5631 see:
10920:                      http://bugs.lon-capa.org/show_bug.cgi?id=5631
10921:                      by informing the user that this happened.
10922: 
10923: Parameters:
10924:   resource   - The resource to include.  This is passed directly, without
10925:                interpretation to lonnet::ssi.
10926:   form       - The form hash parameters that guide the interpretation of the resource
10927:                
10928:   retries    - Number of retries allowed before giving up completely.
10929: Returns:
10930:   On success, returns the rendered resource identified by the resource parameter.
10931: Side Effects:
10932:   The following global variables can be set:
10933:    ssi_error                - If an unrecoverable error occurred this becomes true.
10934:                               It is up to the caller to initialize this to false
10935:                               if desired.
10936:    ssi_error_resource  - If an unrecoverable error occurred, this is the value
10937:                               of the resource that could not be rendered by the ssi
10938:                               call.
10939:    ssi_error_message   - The error string fetched from the ssi response
10940:                               in the event of an error.
10941: 
10942: 
10943: =head1 HANDLER SUBROUTINE
10944: 
10945: ssi_with_retries()
10946: 
10947: =head1 SUBROUTINES
10948: 
10949: =over
10950: 
10951: =head1 Routines to display previous version of a Task for a specific student
10952: 
10953: Tasks are graded pass/fail. Students who have yet to pass a particular Task
10954: can receive another opportunity. Access to tasks is slot-based. If a slot
10955: requires a proctor to check-in the student, a new version of the Task will
10956: be created when the student is checked in to the new opportunity.
10957: 
10958: If a particular student has tried two or more versions of a particular task,
10959: the submission screen provides a user with vgr privileges (e.g., a Course
10960: Coordinator) the ability to display a previous version worked on by the
10961: student.  By default, the current version is displayed. If a previous version
10962: has been selected for display, submission data are only shown that pertain
10963: to that particular version, and the interface to submit grades is not shown.
10964: 
10965: =over 4
10966: 
10967: =item show_previous_task_version()
10968: 
10969: Displays a specified version of a student's Task, as the student sees it.
10970: 
10971: Inputs: 2
10972:         request - request object
10973:         symb    - unique symb for current instance of resource
10974: 
10975: Output: None.
10976: 
10977: Side Effects: calls &show_problem() to print version of Task, with
10978:               version contained in form item: $env{'form.previousversion'}
10979: 
10980: =item choose_task_version_form()
10981: 
10982: Displays a web form used to select which version of a student's view of a
10983: Task should be displayed.  Either launches a pop-up window, or replaces
10984: content in existing pop-up, or replaces page in main window.
10985: 
10986: Inputs: 4
10987:         symb    - unique symb for current instance of resource
10988:         uname   - username of student
10989:         udom    - domain of student
10990:         nomenu  - 1 if display is in a pop-up window, and hence no menu
10991:                   breadcrumbs etc., are displayed
10992: 
10993: Output: 4
10994:         current   - student's current version
10995:         displayed - student's version being displayed
10996:         result    - scalar containing HTML for web form used to switch to
10997:                     a different version (or a link to close window, if pop-up).
10998:         js        - javascript for processing selection in versions web form
10999: 
11000: Side Effects: None.
11001: 
11002: =item previous_display_javascript()
11003: 
11004: Inputs: 2
11005:         nomenu  - 1 if display is in a pop-up window, and hence no menu
11006:                   breadcrumbs etc., are displayed.
11007:         current - student's current version number.
11008: 
11009: Output: 1
11010:         js      - javascript for processing selection in versions web form.
11011: 
11012: Side Effects: None.
11013: 
11014: =back
11015: 
11016: =head1 Routines to process bubblesheet data.
11017: 
11018: =over 4
11019: 
11020: =item scantron_get_correction() : 
11021: 
11022:    Builds the interface screen to interact with the operator to fix a
11023:    specific error condition in a specific scanline
11024: 
11025:  Arguments:
11026:     $r           - Apache request object
11027:     $i           - number of the current scanline
11028:     $scan_record - hash ref as returned from &scantron_parse_scanline()
11029:     $scan_config - hash ref as returned from &get_scantron_config()
11030:     $line        - full contents of the current scanline
11031:     $error       - error condition, valid values are
11032:                    'incorrectCODE', 'duplicateCODE',
11033:                    'doublebubble', 'missingbubble',
11034:                    'duplicateID', 'incorrectID'
11035:     $arg         - extra information needed
11036:        For errors:
11037:          - duplicateID   - paper number that this studentID was seen before on
11038:          - duplicateCODE - array ref of the paper numbers this CODE was
11039:                            seen on before
11040:          - incorrectCODE - current incorrect CODE 
11041:          - doublebubble  - array ref of the bubble lines that have double
11042:                            bubble errors
11043:          - missingbubble - array ref of the bubble lines that have missing
11044:                            bubble errors
11045: 
11046:    $randomorder - True if exam folder has randomorder set
11047:    $randompick  - True if exam folder has randompick set
11048:    $respnumlookup - Reference to HASH mapping question numbers in bubble lines
11049:                      for current line to question number used for same question
11050:                      in "Master Seqence" (as seen by Course Coordinator).
11051:    $startline   - Reference to hash where key is question number (0 is first)
11052:                   and value is number of first bubble line for current student
11053:                   or code-based randompick and/or randomorder.
11054: 
11055: 
11056: 
11057: =item  scantron_get_maxbubble() : 
11058: 
11059:    Arguments:
11060:        $nav_error  - Reference to scalar which is a flag to indicate a
11061:                       failure to retrieve a navmap object.
11062:        if $nav_error is set to 1 by scantron_get_maxbubble(), the 
11063:        calling routine should trap the error condition and display the warning
11064:        found in &navmap_errormsg().
11065: 
11066:        $scantron_config - Reference to bubblesheet format configuration hash.
11067: 
11068:    Returns the maximum number of bubble lines that are expected to
11069:    occur. Does this by walking the selected sequence rendering the
11070:    resource and then checking &Apache::lonxml::get_problem_counter()
11071:    for what the current value of the problem counter is.
11072: 
11073:    Caches the results to $env{'form.scantron_maxbubble'},
11074:    $env{'form.scantron.bubble_lines.n'}, 
11075:    $env{'form.scantron.first_bubble_line.n'} and
11076:    $env{"form.scantron.sub_bubblelines.n"}
11077:    which are the total number of bubble lines, the number of bubble
11078:    lines for response n and number of the first bubble line for response n,
11079:    and a comma separated list of numbers of bubble lines for sub-questions
11080:    (for optionresponse, matchresponse, and rankresponse items), for response n.  
11081: 
11082: 
11083: =item  scantron_validate_missingbubbles() : 
11084: 
11085:    Validates all scanlines in the selected file to not have any
11086:     answers that don't have bubbles that have not been verified
11087:     to be bubble free.
11088: 
11089: =item  scantron_process_students() : 
11090: 
11091:    Routine that does the actual grading of the bubblesheet information.
11092: 
11093:    The parsed scanline hash is added to %env 
11094: 
11095:    Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
11096:    foreach resource , with the form data of
11097: 
11098: 	'submitted'     =>'scantron' 
11099: 	'grade_target'  =>'grade',
11100: 	'grade_username'=> username of student
11101: 	'grade_domain'  => domain of student
11102: 	'grade_courseid'=> of course
11103: 	'grade_symb'    => symb of resource to grade
11104: 
11105:     This triggers a grading pass. The problem grading code takes care
11106:     of converting the bubbled letter information (now in %env) into a
11107:     valid submission.
11108: 
11109: =item  scantron_upload_scantron_data() :
11110: 
11111:     Creates the screen for adding a new bubblesheet data file to a course.
11112: 
11113: =item  scantron_upload_scantron_data_save() : 
11114: 
11115:    Adds a provided bubble information data file to the course if user
11116:    has the correct privileges to do so. 
11117: 
11118: =item  valid_file() :
11119: 
11120:    Validates that the requested bubble data file exists in the course.
11121: 
11122: =item  scantron_download_scantron_data() : 
11123: 
11124:    Shows a list of the three internal files (original, corrected,
11125:    skipped) for a specific bubblesheet data file that exists in the
11126:    course.
11127: 
11128: =item  scantron_validate_ID() : 
11129: 
11130:    Validates all scanlines in the selected file to not have any
11131:    invalid or underspecified student/employee IDs
11132: 
11133: =item navmap_errormsg() :
11134: 
11135:    Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
11136:    Should be called whenever the request to instantiate a navmap object fails.
11137: 
11138: =back
11139: 
11140: =back
11141: 
11142: =cut

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