File:  [LON-CAPA] / loncom / homework / grades.pm
Revision 1.753: download - view: text, annotated - select for diffs
Tue Nov 20 19:14:14 2018 UTC (5 years, 5 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- "Check For Plagiarism" now supported for submissions to Simple Problem
(Essay-open ended). Similarity checking only for submissions in same course

    1: # The LearningOnline Network with CAPA
    2: # The LON-CAPA Grading handler
    3: #
    4: # $Id: grades.pm,v 1.753 2018/11/20 19:14:14 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 = &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 get_scantronformat_file
 5823: 
 5824:   Returns an array containing lines from the scantron format file for
 5825:   the domain of the course.
 5826: 
 5827:   If a url for a custom.tab file is listed in domain's configuration.db, 
 5828:   lines are from this file.
 5829: 
 5830:   Otherwise, if a default.tab has been published in RES space by the 
 5831:   domainconfig user, lines are from this file.
 5832: 
 5833:   Otherwise, fall back to getting lines from the legacy file on the
 5834:   local server:  /home/httpd/lonTabs/default_scantronformat.tab    
 5835: 
 5836: =cut
 5837: 
 5838: sub get_scantronformat_file {
 5839:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
 5840:     my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
 5841:     my $gottab = 0;
 5842:     my @lines;
 5843:     if (ref($domconfig{'scantron'}) eq 'HASH') {
 5844:         if ($domconfig{'scantron'}{'scantronformat'} ne '') {
 5845:             my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
 5846:             if ($formatfile ne '-1') {
 5847:                 @lines = split("\n",$formatfile,-1);
 5848:                 $gottab = 1;
 5849:             }
 5850:         }
 5851:     }
 5852:     if (!$gottab) {
 5853:         my $confname = $cdom.'-domainconfig';
 5854:         my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
 5855:         my $formatfile =  &Apache::lonnet::getfile($default);
 5856:         if ($formatfile ne '-1') {
 5857:             @lines = split("\n",$formatfile,-1);
 5858:             $gottab = 1;
 5859:         }
 5860:     }
 5861:     if (!$gottab) {
 5862:         my @domains = &Apache::lonnet::current_machine_domains();
 5863:         if (grep(/^\Q$cdom\E$/,@domains)) {
 5864:             my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
 5865:             @lines = <$fh>;
 5866:             close($fh);
 5867:         } else {
 5868:             my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
 5869:             @lines = <$fh>;
 5870:             close($fh);
 5871:         }
 5872:     }
 5873:     return @lines;
 5874: }
 5875: 
 5876: =pod 
 5877: 
 5878: =item scantron_CODElist
 5879: 
 5880:   Returns html drop down of the saved CODE lists from current course,
 5881:   generated from earlier printings.
 5882: 
 5883: =cut
 5884: 
 5885: sub scantron_CODElist {
 5886:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 5887:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 5888:     my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
 5889:     my $namechoice='<option></option>';
 5890:     foreach my $name (sort {uc($a) cmp uc($b)} @names) {
 5891: 	if ($name =~ /^error: 2 /) { next; }
 5892: 	if ($name =~ /^type\0/) { next; }
 5893: 	$namechoice.='<option value="'.$name.'">'.$name.'</option>';
 5894:     }
 5895:     $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
 5896:     return $namechoice;
 5897: }
 5898: 
 5899: =pod 
 5900: 
 5901: =item scantron_CODEunique
 5902: 
 5903:   Returns the html for "Each CODE to be used once" radio.
 5904: 
 5905: =cut
 5906: 
 5907: sub scantron_CODEunique {
 5908:     my $result='<span class="LC_nobreak">
 5909:                  <label><input type="radio" name="scantron_CODEunique"
 5910:                         value="yes" checked="checked" />'.&mt('Yes').' </label>
 5911:                 </span>
 5912:                 <span class="LC_nobreak">
 5913:                  <label><input type="radio" name="scantron_CODEunique"
 5914:                         value="no" />'.&mt('No').' </label>
 5915:                 </span>';
 5916:     return $result;
 5917: }
 5918: 
 5919: =pod 
 5920: 
 5921: =item scantron_selectphase
 5922: 
 5923:   Generates the initial screen to start the bubblesheet process.
 5924:   Allows for - starting a grading run.
 5925:              - downloading existing scan data (original, corrected
 5926:                                                 or skipped info)
 5927: 
 5928:              - uploading new scan data
 5929: 
 5930:  Arguments:
 5931:   $r          - The Apache request object
 5932:   $file2grade - name of the file that contain the scanned data to score
 5933: 
 5934: =cut
 5935: 
 5936: sub scantron_selectphase {
 5937:     my ($r,$file2grade,$symb) = @_;
 5938:     if (!$symb) {return '';}
 5939:     my $map_error;
 5940:     my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
 5941:     if ($map_error) {
 5942:         $r->print('<br />'.&navmap_errormsg().'<br />');
 5943:         return;
 5944:     }
 5945:     my $default_form_data=&defaultFormData($symb);
 5946:     my $file_selector=&scantron_uploads($file2grade);
 5947:     my $format_selector=&scantron_scantab();
 5948:     my $CODE_selector=&scantron_CODElist();
 5949:     my $CODE_unique=&scantron_CODEunique();
 5950:     my $result;
 5951: 
 5952:     $ssi_error = 0;
 5953: 
 5954:     if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
 5955:         &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
 5956: 
 5957: 	# Chunk of form to prompt for a scantron file upload.
 5958: 
 5959:         $r->print('
 5960:     <br />
 5961:     '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 5962:        '.&Apache::loncommon::start_data_table_header_row().'
 5963:             <th>
 5964:               &nbsp;'.&mt('Specify a bubblesheet data file to upload.').'
 5965:             </th>
 5966:        '.&Apache::loncommon::end_data_table_header_row().'
 5967:        '.&Apache::loncommon::start_data_table_row().'
 5968:             <td>
 5969: ');
 5970:     my $default_form_data=&defaultFormData($symb);
 5971:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
 5972:     my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
 5973:     my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
 5974:     &js_escape(\$alertmsg);
 5975:     $r->print(&Apache::lonhtmlcommon::scripttag('
 5976:     function checkUpload(formname) {
 5977: 	if (formname.upfile.value == "") {
 5978: 	    alert("'.$alertmsg.'");
 5979: 	    return false;
 5980: 	}
 5981: 	formname.submit();
 5982:     }'));
 5983:     $r->print('
 5984:               <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
 5985:                 '.$default_form_data.'
 5986:                 <input name="courseid" type="hidden" value="'.$cnum.'" />
 5987:                 <input name="domainid" type="hidden" value="'.$cdom.'" />
 5988:                 <input name="command" value="scantronupload_save" type="hidden" />
 5989:                 '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
 5990:                 <br />
 5991:                 <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
 5992:               </form>
 5993: ');
 5994: 
 5995:         $r->print('
 5996:             </td>
 5997:        '.&Apache::loncommon::end_data_table_row().'
 5998:        '.&Apache::loncommon::end_data_table().'
 5999: ');
 6000:     }
 6001: 
 6002:     # Chunk of form to prompt for a file to grade and how:
 6003: 
 6004:     $result.= '
 6005:     <br />
 6006:     <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
 6007:     <input type="hidden" name="command" value="scantron_warning" />
 6008:     '.$default_form_data.'
 6009:     '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 6010:        '.&Apache::loncommon::start_data_table_header_row().'
 6011:             <th colspan="2">
 6012:               &nbsp;'.&mt('Specify file and which Folder/Sequence to grade').'
 6013:             </th>
 6014:        '.&Apache::loncommon::end_data_table_header_row().'
 6015:        '.&Apache::loncommon::start_data_table_row().'
 6016:             <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
 6017:        '.&Apache::loncommon::end_data_table_row().'
 6018:        '.&Apache::loncommon::start_data_table_row().'
 6019:             <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
 6020:        '.&Apache::loncommon::end_data_table_row().'
 6021:        '.&Apache::loncommon::start_data_table_row().'
 6022:             <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
 6023:        '.&Apache::loncommon::end_data_table_row().'
 6024:        '.&Apache::loncommon::start_data_table_row().'
 6025:             <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
 6026:        '.&Apache::loncommon::end_data_table_row().'
 6027:        '.&Apache::loncommon::start_data_table_row().'
 6028:             <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
 6029:        '.&Apache::loncommon::end_data_table_row().'
 6030:        '.&Apache::loncommon::start_data_table_row().'
 6031: 	    <td> '.&mt('Options:').' </td>
 6032:             <td>
 6033: 	       <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
 6034:                <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
 6035:                <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
 6036: 	    </td>
 6037:        '.&Apache::loncommon::end_data_table_row().'
 6038:        '.&Apache::loncommon::start_data_table_row().'
 6039:             <td colspan="2">
 6040:               <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
 6041:             </td>
 6042:        '.&Apache::loncommon::end_data_table_row().'
 6043:     '.&Apache::loncommon::end_data_table().'
 6044:     </form>
 6045: ';
 6046:    
 6047:     $r->print($result);
 6048: 
 6049: 
 6050: 
 6051:     # Chunk of the form that prompts to view a scoring office file,
 6052:     # corrected file, skipped records in a file.
 6053: 
 6054:     $r->print('
 6055:    <br />
 6056:    <form action="/adm/grades" name="scantron_download">
 6057:      '.$default_form_data.'
 6058:      <input type="hidden" name="command" value="scantron_download" />
 6059:      '.&Apache::loncommon::start_data_table('LC_scantron_action').'
 6060:        '.&Apache::loncommon::start_data_table_header_row().'
 6061:               <th>
 6062:                 &nbsp;'.&mt('Download a scoring office file').'
 6063:               </th>
 6064:        '.&Apache::loncommon::end_data_table_header_row().'
 6065:        '.&Apache::loncommon::start_data_table_row().'
 6066:               <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).' 
 6067:                 <br />
 6068:                 <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
 6069:        '.&Apache::loncommon::end_data_table_row().'
 6070:      '.&Apache::loncommon::end_data_table().'
 6071:    </form>
 6072:    <br />
 6073: ');
 6074: 
 6075:     &Apache::lonpickcode::code_list($r,2);
 6076: 
 6077:     $r->print('<br /><form method="post" name="checkscantron" action="">'.
 6078:              $default_form_data."\n".
 6079:              &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
 6080:              &Apache::loncommon::start_data_table_header_row()."\n".
 6081:              '<th colspan="2">
 6082:               &nbsp;'.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
 6083:              '</th>'."\n".
 6084:               &Apache::loncommon::end_data_table_header_row()."\n".
 6085:               &Apache::loncommon::start_data_table_row()."\n".
 6086:               '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
 6087:               '<td> '.$sequence_selector.' </td>'.
 6088:               &Apache::loncommon::end_data_table_row()."\n".
 6089:               &Apache::loncommon::start_data_table_row()."\n".
 6090:               '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
 6091:               '<td> '.$file_selector.' </td>'."\n".
 6092:               &Apache::loncommon::end_data_table_row()."\n".
 6093:               &Apache::loncommon::start_data_table_row()."\n".
 6094:               '<td> '.&mt('Format of data file:').' </td>'."\n".
 6095:               '<td> '.$format_selector.' </td>'."\n".
 6096:               &Apache::loncommon::end_data_table_row()."\n".
 6097:               &Apache::loncommon::start_data_table_row()."\n".
 6098:               '<td> '.&mt('Options').' </td>'."\n".
 6099:               '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
 6100:               &Apache::loncommon::end_data_table_row()."\n".
 6101:               &Apache::loncommon::start_data_table_row()."\n".
 6102:               '<td colspan="2">'."\n".
 6103:               '<input type="hidden" name="command" value="checksubmissions" />'."\n".
 6104:               '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
 6105:               '</td>'."\n".
 6106:               &Apache::loncommon::end_data_table_row()."\n".
 6107:               &Apache::loncommon::end_data_table()."\n".
 6108:               '</form><br />');
 6109:     return;
 6110: }
 6111: 
 6112: =pod
 6113: 
 6114: =item get_scantron_config
 6115: 
 6116:    Parse and return the bubblesheet configuration line selected as a
 6117:    hash of configuration file fields.
 6118: 
 6119:  Arguments:
 6120:     which - the name of the configuration to parse from the file.
 6121: 
 6122: 
 6123:  Returns:
 6124:             If the named configuration is not in the file, an empty
 6125:             hash is returned.
 6126:     a hash with the fields
 6127:       name         - internal name for the this configuration setup
 6128:       description  - text to display to operator that describes this config
 6129:       CODElocation - if 0 or the string 'none'
 6130:                           - no CODE exists for this config
 6131:                      if -1 || the string 'letter'
 6132:                           - a CODE exists for this config and is
 6133:                             a string of letters
 6134:                      Unsupported value (but planned for future support)
 6135:                           if a positive integer
 6136:                                - The CODE exists as the first n items from
 6137:                                  the question section of the form
 6138:                           if the string 'number'
 6139:                                - The CODE exists for this config and is
 6140:                                  a string of numbers
 6141:       CODEstart   - (only matter if a CODE exists) column in the line where
 6142:                      the CODE starts
 6143:       CODElength  - length of the CODE
 6144:       IDstart     - column where the student/employee ID starts
 6145:       IDlength    - length of the student/employee ID info
 6146:       Qstart      - column where the information from the bubbled
 6147:                     'questions' start
 6148:       Qlength     - number of columns comprising a single bubble line from
 6149:                     the sheet. (usually either 1 or 10)
 6150:       Qon         - either a single character representing the character used
 6151:                     to signal a bubble was chosen in the positional setup, or
 6152:                     the string 'letter' if the letter of the chosen bubble is
 6153:                     in the final, or 'number' if a number representing the
 6154:                     chosen bubble is in the file (1->A 0->J)
 6155:       Qoff        - the character used to represent that a bubble was
 6156:                     left blank
 6157:       PaperID     - if the scanning process generates a unique number for each
 6158:                     sheet scanned the column that this ID number starts in
 6159:       PaperIDlength - number of columns that comprise the unique ID number
 6160:                       for the sheet of paper
 6161:       FirstName   - column that the first name starts in
 6162:       FirstNameLength - number of columns that the first name spans
 6163:  
 6164:       LastName    - column that the last name starts in
 6165:       LastNameLength - number of columns that the last name spans
 6166:       BubblesPerRow - number of bubbles available in each row used to 
 6167:                       bubble an answer. (If not specified, 10 assumed).
 6168: 
 6169: =cut
 6170: 
 6171: sub get_scantron_config {
 6172:     my ($which) = @_;
 6173:     my @lines = &get_scantronformat_file();
 6174:     my %config;
 6175:     #FIXME probably should move to XML it has already gotten a bit much now
 6176:     foreach my $line (@lines) {
 6177: 	my ($name,$descrip)=split(/:/,$line);
 6178: 	if ($name ne $which ) { next; }
 6179: 	chomp($line);
 6180: 	my @config=split(/:/,$line);
 6181: 	$config{'name'}=$config[0];
 6182: 	$config{'description'}=$config[1];
 6183: 	$config{'CODElocation'}=$config[2];
 6184: 	$config{'CODEstart'}=$config[3];
 6185: 	$config{'CODElength'}=$config[4];
 6186: 	$config{'IDstart'}=$config[5];
 6187: 	$config{'IDlength'}=$config[6];
 6188: 	$config{'Qstart'}=$config[7];
 6189:  	$config{'Qlength'}=$config[8];
 6190: 	$config{'Qoff'}=$config[9];
 6191: 	$config{'Qon'}=$config[10];
 6192: 	$config{'PaperID'}=$config[11];
 6193: 	$config{'PaperIDlength'}=$config[12];
 6194: 	$config{'FirstName'}=$config[13];
 6195: 	$config{'FirstNamelength'}=$config[14];
 6196: 	$config{'LastName'}=$config[15];
 6197: 	$config{'LastNamelength'}=$config[16];
 6198:         $config{'BubblesPerRow'}=$config[17];
 6199: 	last;
 6200:     }
 6201:     return %config;
 6202: }
 6203: 
 6204: =pod 
 6205: 
 6206: =item username_to_idmap
 6207: 
 6208:     creates a hash keyed by student/employee ID with values of the corresponding
 6209:     student username:domain. If a single ID occurs for more than one student,
 6210:     the status of the student is checked, and if Active, the value in the hash
 6211:     will be set to the Active student.
 6212: 
 6213:   Arguments:
 6214: 
 6215:     $classlist - reference to the class list hash. This is a hash
 6216:                  keyed by student name:domain  whose elements are references
 6217:                  to arrays containing various chunks of information
 6218:                  about the student. (See loncoursedata for more info).
 6219: 
 6220:   Returns
 6221:     %idmap - the constructed hash
 6222: 
 6223: =cut
 6224: 
 6225: sub username_to_idmap {
 6226:     my ($classlist)= @_;
 6227:     my %idmap;
 6228:     foreach my $student (keys(%$classlist)) {
 6229:         my $id = $classlist->{$student}->[&Apache::loncoursedata::CL_ID];
 6230:         unless ($id eq '') {
 6231:             if (!exists($idmap{$id})) {
 6232:                 $idmap{$id} = $student;
 6233:             } else {
 6234:                 my $status = $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS];
 6235:                 if ($status eq 'Active') {
 6236:                     $idmap{$id} = $student;
 6237:                 }
 6238:             }
 6239:         }
 6240:     }
 6241:     return %idmap;
 6242: }
 6243: 
 6244: =pod
 6245: 
 6246: =item scantron_fixup_scanline
 6247: 
 6248:    Process a requested correction to a scanline.
 6249: 
 6250:   Arguments:
 6251:     $scantron_config   - hash from &get_scantron_config()
 6252:     $scan_data         - hash of correction information 
 6253:                           (see &scantron_getfile())
 6254:     $line              - existing scanline
 6255:     $whichline         - line number of the passed in scanline
 6256:     $field             - type of change to process 
 6257:                          (either 
 6258:                           'ID'     -> correct the student/employee ID
 6259:                           'CODE'   -> correct the CODE
 6260:                           'answer' -> fixup the submitted answers)
 6261:     
 6262:    $args               - hash of additional info,
 6263:                           - 'ID' 
 6264:                                'newid' -> studentID to use in replacement
 6265:                                           of existing one
 6266:                           - 'CODE' 
 6267:                                'CODE_ignore_dup' - set to true if duplicates
 6268:                                                    should be ignored.
 6269: 	                       'CODE' - is new code or 'use_unfound'
 6270:                                         if the existing unfound code should
 6271:                                         be used as is
 6272:                           - 'answer'
 6273:                                'response' - new answer or 'none' if blank
 6274:                                'question' - the bubble line to change
 6275:                                'questionnum' - the question identifier,
 6276:                                                may include subquestion. 
 6277: 
 6278:   Returns:
 6279:     $line - the modified scanline
 6280: 
 6281:   Side effects: 
 6282:     $scan_data - may be updated
 6283: 
 6284: =cut
 6285: 
 6286: 
 6287: sub scantron_fixup_scanline {
 6288:     my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
 6289:     if ($field eq 'ID') {
 6290: 	if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
 6291: 	    return ($line,1,'New value too large');
 6292: 	}
 6293: 	if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
 6294: 	    $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
 6295: 				     $args->{'newid'});
 6296: 	}
 6297: 	substr($line,$$scantron_config{'IDstart'}-1,
 6298: 	       $$scantron_config{'IDlength'})=$args->{'newid'};
 6299: 	if ($args->{'newid'}=~/^\s*$/) {
 6300: 	    &scan_data($scan_data,"$whichline.user",
 6301: 		       $args->{'username'}.':'.$args->{'domain'});
 6302: 	}
 6303:     } elsif ($field eq 'CODE') {
 6304: 	if ($args->{'CODE_ignore_dup'}) {
 6305: 	    &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
 6306: 	}
 6307: 	&scan_data($scan_data,"$whichline.useCODE",'1');
 6308: 	if ($args->{'CODE'} ne 'use_unfound') {
 6309: 	    if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
 6310: 		return ($line,1,'New CODE value too large');
 6311: 	    }
 6312: 	    if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
 6313: 		$args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
 6314: 	    }
 6315: 	    substr($line,$$scantron_config{'CODEstart'}-1,
 6316: 		   $$scantron_config{'CODElength'})=$args->{'CODE'};
 6317: 	}
 6318:     } elsif ($field eq 'answer') {
 6319: 	my $length=$scantron_config->{'Qlength'};
 6320: 	my $off=$scantron_config->{'Qoff'};
 6321: 	my $on=$scantron_config->{'Qon'};
 6322: 	my $answer=${off}x$length;
 6323: 	if ($args->{'response'} eq 'none') {
 6324: 	    &scan_data($scan_data,
 6325: 		       "$whichline.no_bubble.".$args->{'questionnum'},'1');
 6326: 	} else {
 6327: 	    if ($on eq 'letter') {
 6328: 		my @alphabet=('A'..'Z');
 6329: 		$answer=$alphabet[$args->{'response'}];
 6330: 	    } elsif ($on eq 'number') {
 6331: 		$answer=$args->{'response'}+1;
 6332: 		if ($answer == 10) { $answer = '0'; }
 6333: 	    } else {
 6334: 		substr($answer,$args->{'response'},1)=$on;
 6335: 	    }
 6336: 	    &scan_data($scan_data,
 6337: 		       "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
 6338: 	}
 6339: 	my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
 6340: 	substr($line,$where-1,$length)=$answer;
 6341:     }
 6342:     return $line;
 6343: }
 6344: 
 6345: =pod
 6346: 
 6347: =item scan_data
 6348: 
 6349:     Edit or look up  an item in the scan_data hash.
 6350: 
 6351:   Arguments:
 6352:     $scan_data  - The hash (see scantron_getfile)
 6353:     $key        - shorthand of the key to edit (actual key is
 6354:                   scantronfilename_key).
 6355:     $data        - New value of the hash entry.
 6356:     $delete      - If true, the entry is removed from the hash.
 6357: 
 6358:   Returns:
 6359:     The new value of the hash table field (undefined if deleted).
 6360: 
 6361: =cut
 6362: 
 6363: 
 6364: sub scan_data {
 6365:     my ($scan_data,$key,$value,$delete)=@_;
 6366:     my $filename=$env{'form.scantron_selectfile'};
 6367:     if (defined($value)) {
 6368: 	$scan_data->{$filename.'_'.$key} = $value;
 6369:     }
 6370:     if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
 6371:     return $scan_data->{$filename.'_'.$key};
 6372: }
 6373: 
 6374: # ----- These first few routines are general use routines.----
 6375: 
 6376: # Return the number of occurences of a pattern in a string.
 6377: 
 6378: sub occurence_count {
 6379:     my ($string, $pattern) = @_;
 6380: 
 6381:     my @matches = ($string =~ /$pattern/g);
 6382: 
 6383:     return scalar(@matches);
 6384: }
 6385: 
 6386: 
 6387: # Take a string known to have digits and convert all the
 6388: # digits into letters in the range J,A..I.
 6389: 
 6390: sub digits_to_letters {
 6391:     my ($input) = @_;
 6392: 
 6393:     my @alphabet = ('J', 'A'..'I');
 6394: 
 6395:     my @input    = split(//, $input);
 6396:     my $output ='';
 6397:     for (my $i = 0; $i < scalar(@input); $i++) {
 6398: 	if ($input[$i] =~ /\d/) {
 6399: 	    $output .= $alphabet[$input[$i]];
 6400: 	} else {
 6401: 	    $output .= $input[$i];
 6402: 	}
 6403:     }
 6404:     return $output;
 6405: }
 6406: 
 6407: =pod 
 6408: 
 6409: =item scantron_parse_scanline
 6410: 
 6411:   Decodes a scanline from the selected bubblesheet file
 6412: 
 6413:  Arguments:
 6414:     line             - The text of the bubblesheet file line to process
 6415:     whichline        - Line number
 6416:     scantron_config  - Hash describing the format of the bubblesheet lines.
 6417:     scan_data        - Hash of extra information about the scanline
 6418:                        (see scantron_getfile for more information)
 6419:     just_header      - True if should not process question answers but only
 6420:                        the stuff to the left of the answers.
 6421:     randomorder      - True if randomorder in use
 6422:     randompick       - True if randompick in use
 6423:     sequence         - Exam folder URL
 6424:     master_seq       - Ref to array containing symbs in exam folder
 6425:     symb_to_resource - Ref to hash of symbs for resources in exam folder
 6426:                        (corresponding values are resource objects)
 6427:     partids_by_symb  - Ref to hash of symb -> array ref of partIDs
 6428:     orderedforcode   - Ref to hash of arrays. keys are CODEs and values
 6429:                        are refs to an array of resource objects, ordered
 6430:                        according to order used for CODE, when randomorder
 6431:                        and or randompick are in use.
 6432:     respnumlookup    - Ref to hash mapping question numbers in bubble lines
 6433:                        for current line to question number used for same question
 6434:                         in "Master Sequence" (as seen by Course Coordinator).
 6435:     startline        - Ref to hash where key is question number (0 is first)
 6436:                        and value is number of first bubble line for current 
 6437:                        student or code-based randompick and/or randomorder.
 6438:     totalref         - Ref of scalar used to score total number of bubble
 6439:                        lines needed for responses in a scan line (used when
 6440:                        randompick in use. 
 6441:     
 6442:  Returns:
 6443:    Hash containing the result of parsing the scanline
 6444: 
 6445:    Keys are all proceeded by the string 'scantron.'
 6446: 
 6447:        CODE    - the CODE in use for this scanline
 6448:        useCODE - 1 if the CODE is invalid but it usage has been forced
 6449:                  by the operator
 6450:        CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
 6451:                             CODEs were selected, but the usage has been
 6452:                             forced by the operator
 6453:        ID  - student/employee ID
 6454:        PaperID - if used, the ID number printed on the sheet when the 
 6455:                  paper was scanned
 6456:        FirstName - first name from the sheet
 6457:        LastName  - last name from the sheet
 6458: 
 6459:      if just_header was not true these key may also exist
 6460: 
 6461:        missingerror - a list of bubble ranges that are considered to be answers
 6462:                       to a single question that don't have any bubbles filled in.
 6463:                       Of the form questionnumber:firstbubblenumber:count.
 6464:        doubleerror  - a list of bubble ranges that are considered to be answers
 6465:                       to a single question that have more than one bubble filled in.
 6466:                       Of the form questionnumber::firstbubblenumber:count
 6467:    
 6468:                 In the above, count is the number of bubble responses in the
 6469:                 input line needed to represent the possible answers to the question.
 6470:                 e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
 6471:                 per line would have count = 2.
 6472: 
 6473:        maxquest     - the number of the last bubble line that was parsed
 6474: 
 6475:        (<number> starts at 1)
 6476:        <number>.answer - zero or more letters representing the selected
 6477:                          letters from the scanline for the bubble line 
 6478:                          <number>.
 6479:                          if blank there was either no bubble or there where
 6480:                          multiple bubbles, (consult the keys missingerror and
 6481:                          doubleerror if this is an error condition)
 6482: 
 6483: =cut
 6484: 
 6485: sub scantron_parse_scanline {
 6486:     my ($line,$whichline,$scantron_config,$scan_data,$just_header,$idmap,
 6487:         $randomorder,$randompick,$sequence,$master_seq,$symb_to_resource,
 6488:         $partids_by_symb,$orderedforcode,$respnumlookup,$startline,$totalref)=@_;
 6489: 
 6490:     my %record;
 6491:     my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # stuff before answers
 6492:     if (!($$scantron_config{'CODElocation'} eq 0 ||
 6493: 	  $$scantron_config{'CODElocation'} eq 'none')) {
 6494: 	if ($$scantron_config{'CODElocation'} < 0 ||
 6495: 	    $$scantron_config{'CODElocation'} eq 'letter' ||
 6496: 	    $$scantron_config{'CODElocation'} eq 'number') {
 6497: 	    $record{'scantron.CODE'}=substr($data,
 6498: 					    $$scantron_config{'CODEstart'}-1,
 6499: 					    $$scantron_config{'CODElength'});
 6500: 	    if (&scan_data($scan_data,"$whichline.useCODE")) {
 6501: 		$record{'scantron.useCODE'}=1;
 6502: 	    }
 6503: 	    if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
 6504: 		$record{'scantron.CODE_ignore_dup'}=1;
 6505: 	    }
 6506: 	} else {
 6507: 	    #FIXME interpret first N questions
 6508: 	}
 6509:     }
 6510:     $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
 6511: 				  $$scantron_config{'IDlength'});
 6512:     $record{'scantron.PaperID'}=
 6513: 	substr($data,$$scantron_config{'PaperID'}-1,
 6514: 	       $$scantron_config{'PaperIDlength'});
 6515:     $record{'scantron.FirstName'}=
 6516: 	substr($data,$$scantron_config{'FirstName'}-1,
 6517: 	       $$scantron_config{'FirstNamelength'});
 6518:     $record{'scantron.LastName'}=
 6519: 	substr($data,$$scantron_config{'LastName'}-1,
 6520: 	       $$scantron_config{'LastNamelength'});
 6521:     if ($just_header) { return \%record; }
 6522: 
 6523:     my @alphabet=('A'..'Z');
 6524:     my $questnum=0;
 6525:     my $ansnum  =1;		# Multiple 'answer lines'/question.
 6526: 
 6527:     my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
 6528:     if ($randompick || $randomorder) {
 6529:         my $total = &get_respnum_lookups($sequence,$scan_data,$idmap,$line,\%record,
 6530:                                          $master_seq,$symb_to_resource,
 6531:                                          $partids_by_symb,$orderedforcode,
 6532:                                          $respnumlookup,$startline);
 6533:         if ($total) {
 6534:             $lastpos = $total*$$scantron_config{'Qlength'}; 
 6535:         }
 6536:         if (ref($totalref)) {
 6537:             $$totalref = $total;
 6538:         }
 6539:     }
 6540:     my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos);  # Answers
 6541:     chomp($questions);		# Get rid of any trailing \n.
 6542:     $questions =~ s/\r$//;      # Get rid of trailing \r too (MAC or Win uploads).
 6543:     while (length($questions)) {
 6544:         my $answers_needed;
 6545:         if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6546:             $answers_needed = $bubble_lines_per_response{$respnumlookup->{$questnum}};
 6547:         } else {
 6548: 	    $answers_needed = $bubble_lines_per_response{$questnum};
 6549:         }
 6550:         my $answer_length  = ($$scantron_config{'Qlength'} * $answers_needed)
 6551:                              || 1;
 6552:         $questnum++;
 6553:         my $quest_id = $questnum;
 6554:         my $currentquest = substr($questions,0,$answer_length);
 6555:         $questions       = substr($questions,$answer_length);
 6556:         if (length($currentquest) < $answer_length) { next; }
 6557: 
 6558:         my $subdivided;
 6559:         if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6560:             $subdivided = $subdivided_bubble_lines{$respnumlookup->{$questnum-1}};
 6561:         } else {
 6562:             $subdivided = $subdivided_bubble_lines{$questnum-1};
 6563:         }
 6564:         if ($subdivided =~ /,/) {
 6565:             my $subquestnum = 1;
 6566:             my $subquestions = $currentquest;
 6567:             my @subanswers_needed = split(/,/,$subdivided);
 6568:             foreach my $subans (@subanswers_needed) {
 6569:                 my $subans_length =
 6570:                     ($$scantron_config{'Qlength'} * $subans)  || 1;
 6571:                 my $currsubquest = substr($subquestions,0,$subans_length);
 6572:                 $subquestions   = substr($subquestions,$subans_length);
 6573:                 $quest_id = "$questnum.$subquestnum";
 6574:                 if (($$scantron_config{'Qon'} eq 'letter') ||
 6575:                     ($$scantron_config{'Qon'} eq 'number')) {
 6576:                     $ansnum = &scantron_validator_lettnum($ansnum, 
 6577:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,
 6578:                         \@alphabet,\%record,$scantron_config,$scan_data,
 6579:                         $randomorder,$randompick,$respnumlookup);
 6580:                 } else {
 6581:                     $ansnum = &scantron_validator_positional($ansnum,
 6582:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,
 6583:                         \@alphabet,\%record,$scantron_config,$scan_data,
 6584:                         $randomorder,$randompick,$respnumlookup);
 6585:                 }
 6586:                 $subquestnum ++;
 6587:             }
 6588:         } else {
 6589:             if (($$scantron_config{'Qon'} eq 'letter') ||
 6590:                 ($$scantron_config{'Qon'} eq 'number')) {
 6591:                 $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
 6592:                     $quest_id,$answers_needed,$currentquest,$whichline,
 6593:                     \@alphabet,\%record,$scantron_config,$scan_data,
 6594:                     $randomorder,$randompick,$respnumlookup);
 6595:             } else {
 6596:                 $ansnum = &scantron_validator_positional($ansnum,$questnum,
 6597:                     $quest_id,$answers_needed,$currentquest,$whichline,
 6598:                     \@alphabet,\%record,$scantron_config,$scan_data,
 6599:                     $randomorder,$randompick,$respnumlookup);
 6600:             }
 6601:         }
 6602:     }
 6603:     $record{'scantron.maxquest'}=$questnum;
 6604:     return \%record;
 6605: }
 6606: 
 6607: sub get_master_seq {
 6608:     my ($resources,$master_seq,$symb_to_resource) = @_;
 6609:     return unless ((ref($resources) eq 'ARRAY') && (ref($master_seq) eq 'ARRAY') && 
 6610:                    (ref($symb_to_resource) eq 'HASH'));
 6611:     my $resource_error;
 6612:     foreach my $resource (@{$resources}) {
 6613:         my $ressymb;
 6614:         if (ref($resource)) {
 6615:             $ressymb = $resource->symb();
 6616:             push(@{$master_seq},$ressymb);
 6617:             $symb_to_resource->{$ressymb} = $resource;
 6618:         } else {
 6619:             $resource_error = 1;
 6620:             last;
 6621:         }
 6622:     }
 6623:     return $resource_error;
 6624: }
 6625: 
 6626: sub get_respnum_lookups {
 6627:     my ($sequence,$scan_data,$idmap,$line,$record,$master_seq,$symb_to_resource,
 6628:         $partids_by_symb,$orderedforcode,$respnumlookup,$startline) = @_;
 6629:     return unless ((ref($record) eq 'HASH') && (ref($master_seq) eq 'ARRAY') &&
 6630:                    (ref($symb_to_resource) eq 'HASH') && (ref($partids_by_symb) eq 'HASH') &&
 6631:                    (ref($orderedforcode) eq 'HASH') && (ref($respnumlookup) eq 'HASH') &&
 6632:                    (ref($startline) eq 'HASH'));
 6633:     my ($user,$scancode);
 6634:     if ((exists($record->{'scantron.CODE'})) &&
 6635:         (&Apache::lonnet::validCODE($record->{'scantron.CODE'}))) {
 6636:         $scancode = $record->{'scantron.CODE'};
 6637:     } else {
 6638:         $user = &scantron_find_student($record,$scan_data,$idmap,$line);
 6639:     }
 6640:     my @mapresources =
 6641:         &users_order($user,$scancode,$sequence,$master_seq,$symb_to_resource,
 6642:                      $orderedforcode);
 6643:     my $total = 0;
 6644:     my $count = 0;
 6645:     foreach my $resource (@mapresources) {
 6646:         my $id = $resource->id();
 6647:         my $symb = $resource->symb();
 6648:         if (ref($partids_by_symb->{$symb}) eq 'ARRAY') {
 6649:             foreach my $partid (@{$partids_by_symb->{$symb}}) {
 6650:                 my $respnum = $masterseq_id_responsenum{$id.'_'.$partid};
 6651:                 if ($respnum ne '') {
 6652:                     $respnumlookup->{$count} = $respnum;
 6653:                     $startline->{$count} = $total;
 6654:                     $total += $bubble_lines_per_response{$respnum};
 6655:                     $count ++;
 6656:                 }
 6657:             }
 6658:         }
 6659:     }
 6660:     return $total;
 6661: }
 6662: 
 6663: sub scantron_validator_lettnum {
 6664:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
 6665:         $alphabet,$record,$scantron_config,$scan_data,$randomorder,
 6666:         $randompick,$respnumlookup) = @_;
 6667: 
 6668:     # Qon 'letter' implies for each slot in currquest we have:
 6669:     #    ? or * for doubles, a letter in A-Z for a bubble, and
 6670:     #    about anything else (esp. a value of Qoff) for missing
 6671:     #    bubbles.
 6672:     #
 6673:     # Qon 'number' implies each slot gives a digit that indexes the
 6674:     #    bubbles filled, or Qoff, or a non-number for unbubbled lines,
 6675:     #    and * or ? for double bubbles on a single line.
 6676:     #
 6677: 
 6678:     my $matchon;
 6679:     if ($$scantron_config{'Qon'} eq 'letter') {
 6680:         $matchon = '[A-Z]';
 6681:     } elsif ($$scantron_config{'Qon'} eq 'number') {
 6682:         $matchon = '\d';
 6683:     }
 6684:     my $occurrences = 0;
 6685:     my $responsenum = $questnum-1;
 6686:     if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6687:        $responsenum = $respnumlookup->{$questnum-1} 
 6688:     }
 6689:     if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
 6690:         ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
 6691:         ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
 6692:         ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
 6693:         ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
 6694:         ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
 6695:         my @singlelines = split('',$currquest);
 6696:         foreach my $entry (@singlelines) {
 6697:             $occurrences = &occurence_count($entry,$matchon);
 6698:             if ($occurrences > 1) {
 6699:                 last;
 6700:             }
 6701:         }
 6702:     } else {
 6703:         $occurrences = &occurence_count($currquest,$matchon); 
 6704:     }
 6705:     if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
 6706:         push(@{$record->{'scantron.doubleerror'}},$quest_id);
 6707:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6708:             my $bubble = substr($currquest,$ans,1);
 6709:             if ($bubble =~ /$matchon/ ) {
 6710:                 if ($$scantron_config{'Qon'} eq 'number') {
 6711:                     if ($bubble == 0) {
 6712:                         $bubble = 10; 
 6713:                     }
 6714:                     $record->{"scantron.$ansnum.answer"} = 
 6715:                         $alphabet->[$bubble-1];
 6716:                 } else {
 6717:                     $record->{"scantron.$ansnum.answer"} = $bubble;
 6718:                 }
 6719:             } else {
 6720:                 $record->{"scantron.$ansnum.answer"}='';
 6721:             }
 6722:             $ansnum++;
 6723:         }
 6724:     } elsif (!defined($currquest)
 6725:             || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
 6726:             || (&occurence_count($currquest,$matchon) == 0)) {
 6727:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
 6728:             $record->{"scantron.$ansnum.answer"}='';
 6729:             $ansnum++;
 6730:         }
 6731:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
 6732:             push(@{$record->{'scantron.missingerror'}},$quest_id);
 6733:         }
 6734:     } else {
 6735:         if ($$scantron_config{'Qon'} eq 'number') {
 6736:             $currquest = &digits_to_letters($currquest);            
 6737:         }
 6738:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6739:             my $bubble = substr($currquest,$ans,1);
 6740:             $record->{"scantron.$ansnum.answer"} = $bubble;
 6741:             $ansnum++;
 6742:         }
 6743:     }
 6744:     return $ansnum;
 6745: }
 6746: 
 6747: sub scantron_validator_positional {
 6748:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
 6749:         $whichline,$alphabet,$record,$scantron_config,$scan_data,
 6750:         $randomorder,$randompick,$respnumlookup) = @_;
 6751: 
 6752:     # Otherwise there's a positional notation;
 6753:     # each bubble line requires Qlength items, and there are filled in
 6754:     # bubbles for each case where there 'Qon' characters.
 6755:     #
 6756: 
 6757:     my @array=split($$scantron_config{'Qon'},$currquest,-1);
 6758: 
 6759:     # If the split only gives us one element.. the full length of the
 6760:     # answer string, no bubbles are filled in:
 6761: 
 6762:     if ($answers_needed eq '') {
 6763:         return;
 6764:     }
 6765: 
 6766:     if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
 6767:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
 6768:             $record->{"scantron.$ansnum.answer"}='';
 6769:             $ansnum++;
 6770:         }
 6771:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
 6772:             push(@{$record->{"scantron.missingerror"}},$quest_id);
 6773:         }
 6774:     } elsif (scalar(@array) == 2) {
 6775:         my $location = length($array[0]);
 6776:         my $line_num = int($location / $$scantron_config{'Qlength'});
 6777:         my $bubble   = $alphabet->[$location % $$scantron_config{'Qlength'}];
 6778:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6779:             if ($ans eq $line_num) {
 6780:                 $record->{"scantron.$ansnum.answer"} = $bubble;
 6781:             } else {
 6782:                 $record->{"scantron.$ansnum.answer"} = ' ';
 6783:             }
 6784:             $ansnum++;
 6785:          }
 6786:     } else {
 6787:         #  If there's more than one instance of a bubble character
 6788:         #  That's a double bubble; with positional notation we can
 6789:         #  record all the bubbles filled in as well as the
 6790:         #  fact this response consists of multiple bubbles.
 6791:         #
 6792:         my $responsenum = $questnum-1;
 6793:         if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
 6794:             $responsenum = $respnumlookup->{$questnum-1}
 6795:         }
 6796:         if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
 6797:             ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
 6798:             ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
 6799:             ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
 6800:             ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
 6801:             ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
 6802:             my $doubleerror = 0;
 6803:             while (($currquest >= $$scantron_config{'Qlength'}) && 
 6804:                    (!$doubleerror)) {
 6805:                my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
 6806:                $currquest = substr($currquest,$$scantron_config{'Qlength'});
 6807:                my @currarray = split($$scantron_config{'Qon'},$currline,-1);
 6808:                if (length(@currarray) > 2) {
 6809:                    $doubleerror = 1;
 6810:                } 
 6811:             }
 6812:             if ($doubleerror) {
 6813:                 push(@{$record->{'scantron.doubleerror'}},$quest_id);
 6814:             }
 6815:         } else {
 6816:             push(@{$record->{'scantron.doubleerror'}},$quest_id);
 6817:         }
 6818:         my $item = $ansnum;
 6819:         for (my $ans=0; $ans<$answers_needed; $ans++) {
 6820:             $record->{"scantron.$item.answer"} = '';
 6821:             $item ++;
 6822:         }
 6823: 
 6824:         my @ans=@array;
 6825:         my $i=0;
 6826:         my $increment = 0;
 6827:         while ($#ans) {
 6828:             $i+=length($ans[0]) + $increment;
 6829:             my $line   = int($i/$$scantron_config{'Qlength'} + $ansnum);
 6830:             my $bubble = $i%$$scantron_config{'Qlength'};
 6831:             $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
 6832:             shift(@ans);
 6833:             $increment = 1;
 6834:         }
 6835:         $ansnum += $answers_needed;
 6836:     }
 6837:     return $ansnum;
 6838: }
 6839: 
 6840: =pod
 6841: 
 6842: =item scantron_add_delay
 6843: 
 6844:    Adds an error message that occurred during the grading phase to a
 6845:    queue of messages to be shown after grading pass is complete
 6846: 
 6847:  Arguments:
 6848:    $delayqueue  - arrary ref of hash ref of error messages
 6849:    $scanline    - the scanline that caused the error
 6850:    $errormesage - the error message
 6851:    $errorcode   - a numeric code for the error
 6852: 
 6853:  Side Effects:
 6854:    updates the $delayqueue to have a new hash ref of the error
 6855: 
 6856: =cut
 6857: 
 6858: sub scantron_add_delay {
 6859:     my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
 6860:     push(@$delayqueue,
 6861: 	 {'line' => $scanline, 'emsg' => $errormessage,
 6862: 	  'ecode' => $errorcode }
 6863: 	 );
 6864: }
 6865: 
 6866: =pod
 6867: 
 6868: =item scantron_find_student
 6869: 
 6870:    Finds the username for the current scanline
 6871: 
 6872:   Arguments:
 6873:    $scantron_record - hash result from scantron_parse_scanline
 6874:    $scan_data       - hash of correction information 
 6875:                       (see &scantron_getfile() form more information)
 6876:    $idmap           - hash from &username_to_idmap()
 6877:    $line            - number of current scanline
 6878:  
 6879:   Returns:
 6880:    Either 'username:domain' or undef if unknown
 6881: 
 6882: =cut
 6883: 
 6884: sub scantron_find_student {
 6885:     my ($scantron_record,$scan_data,$idmap,$line)=@_;
 6886:     my $scanID=$$scantron_record{'scantron.ID'};
 6887:     if ($scanID =~ /^\s*$/) {
 6888:  	return &scan_data($scan_data,"$line.user");
 6889:     }
 6890:     foreach my $id (keys(%$idmap)) {
 6891:  	if (lc($id) eq lc($scanID)) {
 6892:  	    return $$idmap{$id};
 6893:  	}
 6894:     }
 6895:     return undef;
 6896: }
 6897: 
 6898: =pod
 6899: 
 6900: =item scantron_filter
 6901: 
 6902:    Filter sub for lonnavmaps, filters out hidden resources if ignore
 6903:    hidden resources was selected
 6904: 
 6905: =cut
 6906: 
 6907: sub scantron_filter {
 6908:     my ($curres)=@_;
 6909: 
 6910:     if (ref($curres) && $curres->is_problem()) {
 6911: 	# if the user has asked to not have either hidden
 6912: 	# or 'randomout' controlled resources to be graded
 6913: 	# don't include them
 6914: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
 6915: 	    && $curres->randomout) {
 6916: 	    return 0;
 6917: 	}
 6918: 	return 1;
 6919:     }
 6920:     return 0;
 6921: }
 6922: 
 6923: =pod
 6924: 
 6925: =item scantron_process_corrections
 6926: 
 6927:    Gets correction information out of submitted form data and corrects
 6928:    the scanline
 6929: 
 6930: =cut
 6931: 
 6932: sub scantron_process_corrections {
 6933:     my ($r) = @_;
 6934:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 6935:     my ($scanlines,$scan_data)=&scantron_getfile();
 6936:     my $classlist=&Apache::loncoursedata::get_classlist();
 6937:     my $which=$env{'form.scantron_line'};
 6938:     my $line=&scantron_get_line($scanlines,$scan_data,$which);
 6939:     my ($skip,$err,$errmsg);
 6940:     if ($env{'form.scantron_skip_record'}) {
 6941: 	$skip=1;
 6942:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
 6943: 	my $newstudent=$env{'form.scantron_username'}.':'.
 6944: 	    $env{'form.scantron_domain'};
 6945: 	my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
 6946: 	($line,$err,$errmsg)=
 6947: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
 6948: 				     'ID',{'newid'=>$newid,
 6949: 				    'username'=>$env{'form.scantron_username'},
 6950: 				    'domain'=>$env{'form.scantron_domain'}});
 6951:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
 6952: 	my $resolution=$env{'form.scantron_CODE_resolution'};
 6953: 	my $newCODE;
 6954: 	my %args;
 6955: 	if      ($resolution eq 'use_unfound') {
 6956: 	    $newCODE='use_unfound';
 6957: 	} elsif ($resolution eq 'use_found') {
 6958: 	    $newCODE=$env{'form.scantron_CODE_selectedvalue'};
 6959: 	} elsif ($resolution eq 'use_typed') {
 6960: 	    $newCODE=$env{'form.scantron_CODE_newvalue'};
 6961: 	} elsif ($resolution =~ /^use_closest_(\d+)/) {
 6962: 	    $newCODE=$env{"form.scantron_CODE_closest_$1"};
 6963: 	}
 6964: 	if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
 6965: 	    $args{'CODE_ignore_dup'}=1;
 6966: 	}
 6967: 	$args{'CODE'}=$newCODE;
 6968: 	($line,$err,$errmsg)=
 6969: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
 6970: 				     'CODE',\%args);
 6971:     } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
 6972: 	foreach my $question (split(',',$env{'form.scantron_questions'})) {
 6973: 	    ($line,$err,$errmsg)=
 6974: 		&scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
 6975: 					 $which,'answer',
 6976: 					 { 'question'=>$question,
 6977: 		      		   'response'=>$env{"form.scantron_correct_Q_$question"},
 6978:                                    'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
 6979: 	    if ($err) { last; }
 6980: 	}
 6981:     }
 6982:     if ($err) {
 6983:         $r->print(
 6984:             '<p class="LC_error">'
 6985:            .&mt('Unable to accept last correction, an error occurred: [_1]',
 6986:                 $errmsg)
 6987:            .'</p>');
 6988:     } else {
 6989: 	&scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
 6990: 	&scantron_putfile($scanlines,$scan_data);
 6991:     }
 6992: }
 6993: 
 6994: =pod
 6995: 
 6996: =item reset_skipping_status
 6997: 
 6998:    Forgets the current set of remember skipped scanlines (and thus
 6999:    reverts back to considering all lines in the
 7000:    scantron_skipped_<filename> file)
 7001: 
 7002: =cut
 7003: 
 7004: sub reset_skipping_status {
 7005:     my ($scanlines,$scan_data)=&scantron_getfile();
 7006:     &scan_data($scan_data,'remember_skipping',undef,1);
 7007:     &scantron_putfile(undef,$scan_data);
 7008: }
 7009: 
 7010: =pod
 7011: 
 7012: =item start_skipping
 7013: 
 7014:    Marks a scanline to be skipped. 
 7015: 
 7016: =cut
 7017: 
 7018: sub start_skipping {
 7019:     my ($scan_data,$i)=@_;
 7020:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
 7021:     if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
 7022: 	$remembered{$i}=2;
 7023:     } else {
 7024: 	$remembered{$i}=1;
 7025:     }
 7026:     &scan_data($scan_data,'remember_skipping',join(':',%remembered));
 7027: }
 7028: 
 7029: =pod
 7030: 
 7031: =item should_be_skipped
 7032: 
 7033:    Checks whether a scanline should be skipped.
 7034: 
 7035: =cut
 7036: 
 7037: sub should_be_skipped {
 7038:     my ($scanlines,$scan_data,$i)=@_;
 7039:     if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
 7040: 	# not redoing old skips
 7041: 	if ($scanlines->{'skipped'}[$i]) { return 1; }
 7042: 	return 0;
 7043:     }
 7044:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
 7045: 
 7046:     if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
 7047: 	return 0;
 7048:     }
 7049:     return 1;
 7050: }
 7051: 
 7052: =pod
 7053: 
 7054: =item remember_current_skipped
 7055: 
 7056:    Discovers what scanlines are in the scantron_skipped_<filename>
 7057:    file and remembers them into scan_data for later use.
 7058: 
 7059: =cut
 7060: 
 7061: sub remember_current_skipped {
 7062:     my ($scanlines,$scan_data)=&scantron_getfile();
 7063:     my %to_remember;
 7064:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7065: 	if ($scanlines->{'skipped'}[$i]) {
 7066: 	    $to_remember{$i}=1;
 7067: 	}
 7068:     }
 7069: 
 7070:     &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
 7071:     &scantron_putfile(undef,$scan_data);
 7072: }
 7073: 
 7074: =pod
 7075: 
 7076: =item check_for_error
 7077: 
 7078:     Checks if there was an error when attempting to remove a specific
 7079:     scantron_.. bubblesheet data file. Prints out an error if
 7080:     something went wrong.
 7081: 
 7082: =cut
 7083: 
 7084: sub check_for_error {
 7085:     my ($r,$result)=@_;
 7086:     if ($result ne 'ok' && $result ne 'not_found' ) {
 7087: 	$r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
 7088:     }
 7089: }
 7090: 
 7091: =pod
 7092: 
 7093: =item scantron_warning_screen
 7094: 
 7095:    Interstitial screen to make sure the operator has selected the
 7096:    correct options before we start the validation phase.
 7097: 
 7098: =cut
 7099: 
 7100: sub scantron_warning_screen {
 7101:     my ($button_text,$symb)=@_;
 7102:     my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
 7103:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 7104:     my $CODElist;
 7105:     if ($scantron_config{'CODElocation'} &&
 7106: 	$scantron_config{'CODEstart'} &&
 7107: 	$scantron_config{'CODElength'}) {
 7108: 	$CODElist=$env{'form.scantron_CODElist'};
 7109: 	if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">'.&mt('None').'</span>'; }
 7110: 	$CODElist=
 7111: 	    '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
 7112: 	    $env{'form.scantron_CODElist'}.'</tt></td></tr>';
 7113:     }
 7114:     my $lastbubblepoints;
 7115:     if ($env{'form.scantron_lastbubblepoints'} ne '') {
 7116:         $lastbubblepoints =
 7117:             '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
 7118:             $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
 7119:     }
 7120:     return ('
 7121: <p>
 7122: <span class="LC_warning">
 7123: '.&mt("Please double check the information below before clicking on '[_1]'",&mt($button_text)).'</span>
 7124: </p>
 7125: <table>
 7126: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
 7127: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
 7128: '.$CODElist.$lastbubblepoints.'
 7129: </table>
 7130: <p> '.&mt("If this information is correct, please click on '[_1]'.",&mt($button_text)).'<br />
 7131: '.&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>
 7132: 
 7133: <br />
 7134: ');
 7135: }
 7136: 
 7137: =pod
 7138: 
 7139: =item scantron_do_warning
 7140: 
 7141:    Check if the operator has picked something for all required
 7142:    fields. Error out if something is missing.
 7143: 
 7144: =cut
 7145: 
 7146: sub scantron_do_warning {
 7147:     my ($r,$symb)=@_;
 7148:     if (!$symb) {return '';}
 7149:     my $default_form_data=&defaultFormData($symb);
 7150:     $r->print(&scantron_form_start().$default_form_data);
 7151:     if ( $env{'form.selectpage'} eq '' ||
 7152: 	 $env{'form.scantron_selectfile'} eq '' ||
 7153: 	 $env{'form.scantron_format'} eq '' ) {
 7154: 	$r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
 7155: 	if ( $env{'form.selectpage'} eq '') {
 7156: 	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
 7157: 	} 
 7158: 	if ( $env{'form.scantron_selectfile'} eq '') {
 7159: 	    $r->print('<p><span class="LC_error">'.&mt("You have not selected a file that contains the student's response data.").'</span></p>');
 7160: 	} 
 7161: 	if ( $env{'form.scantron_format'} eq '') {
 7162: 	    $r->print('<p><span class="LC_error">'.&mt("You have not selected the format of the student's response data.").'</span></p>');
 7163: 	} 
 7164:     } else {
 7165: 	my $warning=&scantron_warning_screen('Grading: Validate Records',$symb);
 7166:         my $bubbledbyhand=&hand_bubble_option();
 7167: 	$r->print('
 7168: '.$warning.$bubbledbyhand.'
 7169: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
 7170: <input type="hidden" name="command" value="scantron_validate" />
 7171: ');
 7172:     }
 7173:     $r->print("</form><br />");
 7174:     return '';
 7175: }
 7176: 
 7177: =pod
 7178: 
 7179: =item scantron_form_start
 7180: 
 7181:     html hidden input for remembering all selected grading options
 7182: 
 7183: =cut
 7184: 
 7185: sub scantron_form_start {
 7186:     my ($max_bubble)=@_;
 7187:     my $result= <<SCANTRONFORM;
 7188: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
 7189:   <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
 7190:   <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
 7191:   <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
 7192:   <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
 7193:   <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
 7194:   <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
 7195:   <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
 7196:   <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
 7197:   <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
 7198: SCANTRONFORM
 7199: 
 7200:   my $line = 0;
 7201:     while (defined($env{"form.scantron.bubblelines.$line"})) {
 7202:        my $chunk =
 7203: 	   '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
 7204:        $chunk .=
 7205: 	   '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
 7206:        $chunk .= 
 7207:            '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
 7208:        $chunk .=
 7209:            '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
 7210:        $chunk .=
 7211:            '<input type="hidden" name="scantron.residpart.'.$line.'" value="'.$env{"form.scantron.residpart.$line"}.'" />'."\n";
 7212:        $result .= $chunk;
 7213:        $line++;
 7214:     }
 7215:     return $result;
 7216: }
 7217: 
 7218: =pod
 7219: 
 7220: =item scantron_validate_file
 7221: 
 7222:     Dispatch routine for doing validation of a bubblesheet data file.
 7223: 
 7224:     Also processes any necessary information resets that need to
 7225:     occur before validation begins (ignore previous corrections,
 7226:     restarting the skipped records processing)
 7227: 
 7228: =cut
 7229: 
 7230: sub scantron_validate_file {
 7231:     my ($r,$symb) = @_;
 7232:     if (!$symb) {return '';}
 7233:     my $default_form_data=&defaultFormData($symb);
 7234:     
 7235:     # do the detection of only doing skipped records first before we delete
 7236:     # them when doing the corrections reset
 7237:     if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
 7238: 	&reset_skipping_status();
 7239:     }
 7240:     if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
 7241: 	&remember_current_skipped();
 7242: 	$env{'form.scantron_options_redo'}='redo_skipped_ready';
 7243:     }
 7244: 
 7245:     if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
 7246: 	&check_for_error($r,&scantron_remove_file('corrected'));
 7247: 	&check_for_error($r,&scantron_remove_file('skipped'));
 7248: 	&check_for_error($r,&scantron_remove_scan_data());
 7249: 	$env{'form.scantron_options_ignore'}='done';
 7250:     }
 7251: 
 7252:     if ($env{'form.scantron_corrections'}) {
 7253: 	&scantron_process_corrections($r);
 7254:     }
 7255:     $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
 7256:     #get the student pick code ready
 7257:     $r->print(&Apache::loncommon::studentbrowser_javascript());
 7258:     my $nav_error;
 7259:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 7260:     my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
 7261:     if ($nav_error) {
 7262:         $r->print(&navmap_errormsg());
 7263:         return '';
 7264:     }
 7265:     my $result=&scantron_form_start($max_bubble).$default_form_data;
 7266:     if ($env{'form.scantron_lastbubblepoints'} ne '') {
 7267:         $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
 7268:     }
 7269:     $r->print($result);
 7270:     
 7271:     my @validate_phases=( 'sequence',
 7272: 			  'ID',
 7273: 			  'CODE',
 7274: 			  'doublebubble',
 7275: 			  'missingbubbles');
 7276:     if (!$env{'form.validatepass'}) {
 7277: 	$env{'form.validatepass'} = 0;
 7278:     }
 7279:     my $currentphase=$env{'form.validatepass'};
 7280: 
 7281: 
 7282:     my $stop=0;
 7283:     while (!$stop && $currentphase < scalar(@validate_phases)) {
 7284: 	$r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
 7285: 	$r->rflush();
 7286:      
 7287: 	my $which="scantron_validate_".$validate_phases[$currentphase];
 7288: 	{
 7289: 	    no strict 'refs';
 7290: 	    ($stop,$currentphase)=&$which($r,$currentphase);
 7291: 	}
 7292:     }
 7293:     if (!$stop) {
 7294: 	my $warning=&scantron_warning_screen('Start Grading',$symb);
 7295: 	$r->print(&mt('Validation process complete.').'<br />'.
 7296:                   $warning.
 7297:                   &mt('Perform verification for each student after storage of submissions?').
 7298:                   '&nbsp;<span class="LC_nobreak"><label>'.
 7299:                   '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
 7300:                   ('&nbsp;'x3).'<label>'.
 7301:                   '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
 7302:                   '</label></span><br />'.
 7303:                   &mt('Grading will take longer if you use verification.').'<br />'.
 7304:                   &mt('Otherwise, Grade/Manage/Review Bubblesheets [_1] Review bubblesheet data can be used once grading is complete.','&raquo;').'<br /><br />'.
 7305:                   '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
 7306:                   '<input type="hidden" name="command" value="scantron_process" />'."\n");
 7307:     } else {
 7308: 	$r->print('<input type="hidden" name="command" value="scantron_validate" />');
 7309: 	$r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
 7310:     }
 7311:     if ($stop) {
 7312: 	if ($validate_phases[$currentphase] eq 'sequence') {
 7313: 	    $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' &rarr; " />');
 7314: 	    $r->print(' '.&mt('this error').' <br />');
 7315: 
 7316: 	    $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>');
 7317: 	} else {
 7318:             if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
 7319: 	        $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' &rarr;" onclick="javascript:verify_bubble_radio(this.form)" />');
 7320:             } else {
 7321:                 $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' &rarr;" />');
 7322:             }
 7323: 	    $r->print(' '.&mt('using corrected info').' <br />');
 7324: 	    $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
 7325: 	    $r->print(" ".&mt("this scanline saving it for later."));
 7326: 	}
 7327:     }
 7328:     $r->print(" </form><br />");
 7329:     return '';
 7330: }
 7331: 
 7332: 
 7333: =pod
 7334: 
 7335: =item scantron_remove_file
 7336: 
 7337:    Removes the requested bubblesheet data file, makes sure that
 7338:    scantron_original_<filename> is never removed
 7339: 
 7340: 
 7341: =cut
 7342: 
 7343: sub scantron_remove_file {
 7344:     my ($which)=@_;
 7345:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7346:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7347:     my $file='scantron_';
 7348:     if ($which eq 'corrected' || $which eq 'skipped') {
 7349: 	$file.=$which.'_';
 7350:     } else {
 7351: 	return 'refused';
 7352:     }
 7353:     $file.=$env{'form.scantron_selectfile'};
 7354:     return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
 7355: }
 7356: 
 7357: 
 7358: =pod
 7359: 
 7360: =item scantron_remove_scan_data
 7361: 
 7362:    Removes all scan_data correction for the requested bubblesheet
 7363:    data file.  (In the case that both the are doing skipped records we need
 7364:    to remember the old skipped lines for the time being so that element
 7365:    persists for a while.)
 7366: 
 7367: =cut
 7368: 
 7369: sub scantron_remove_scan_data {
 7370:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7371:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7372:     my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
 7373:     my @todelete;
 7374:     my $filename=$env{'form.scantron_selectfile'};
 7375:     foreach my $key (@keys) {
 7376: 	if ($key=~/^\Q$filename\E_/) {
 7377: 	    if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
 7378: 		$key=~/remember_skipping/) {
 7379: 		next;
 7380: 	    }
 7381: 	    push(@todelete,$key);
 7382: 	}
 7383:     }
 7384:     my $result;
 7385:     if (@todelete) {
 7386: 	$result = &Apache::lonnet::del('nohist_scantrondata',
 7387: 				       \@todelete,$cdom,$cname);
 7388:     } else {
 7389: 	$result = 'ok';
 7390:     }
 7391:     return $result;
 7392: }
 7393: 
 7394: 
 7395: =pod
 7396: 
 7397: =item scantron_getfile
 7398: 
 7399:     Fetches the requested bubblesheet data file (all 3 versions), and
 7400:     the scan_data hash
 7401:   
 7402:   Arguments:
 7403:     None
 7404: 
 7405:   Returns:
 7406:     2 hash references
 7407: 
 7408:      - first one has 
 7409:          orig      -
 7410:          corrected -
 7411:          skipped   -  each of which points to an array ref of the specified
 7412:                       file broken up into individual lines
 7413:          count     - number of scanlines
 7414:  
 7415:      - second is the scan_data hash possible keys are
 7416:        ($number refers to scanline numbered $number and thus the key affects
 7417:         only that scanline
 7418:         $bubline refers to the specific bubble line element and the aspects
 7419:         refers to that specific bubble line element)
 7420: 
 7421:        $number.user - username:domain to use
 7422:        $number.CODE_ignore_dup 
 7423:                     - ignore the duplicate CODE error 
 7424:        $number.useCODE
 7425:                     - use the CODE in the scanline as is
 7426:        $number.no_bubble.$bubline
 7427:                     - it is valid that there is no bubbled in bubble
 7428:                       at $number $bubline
 7429:        remember_skipping
 7430:                     - a frozen hash containing keys of $number and values
 7431:                       of either 
 7432:                         1 - we are on a 'do skipped records pass' and plan
 7433:                             on processing this line
 7434:                         2 - we are on a 'do skipped records pass' and this
 7435:                             scanline has been marked to skip yet again
 7436: 
 7437: =cut
 7438: 
 7439: sub scantron_getfile {
 7440:     #FIXME really would prefer a scantron directory
 7441:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7442:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7443:     my $lines;
 7444:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 7445: 		       'scantron_orig_'.$env{'form.scantron_selectfile'});
 7446:     my %scanlines;
 7447:     $scanlines{'orig'}=[(split("\n",$lines,-1))];
 7448:     my $temp=$scanlines{'orig'};
 7449:     $scanlines{'count'}=$#$temp;
 7450: 
 7451:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 7452: 		       'scantron_corrected_'.$env{'form.scantron_selectfile'});
 7453:     if ($lines eq '-1') {
 7454: 	$scanlines{'corrected'}=[];
 7455:     } else {
 7456: 	$scanlines{'corrected'}=[(split("\n",$lines,-1))];
 7457:     }
 7458:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
 7459: 		       'scantron_skipped_'.$env{'form.scantron_selectfile'});
 7460:     if ($lines eq '-1') {
 7461: 	$scanlines{'skipped'}=[];
 7462:     } else {
 7463: 	$scanlines{'skipped'}=[(split("\n",$lines,-1))];
 7464:     }
 7465:     my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
 7466:     if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
 7467:     my %scan_data = @tmp;
 7468:     return (\%scanlines,\%scan_data);
 7469: }
 7470: 
 7471: =pod
 7472: 
 7473: =item lonnet_putfile
 7474: 
 7475:    Wrapper routine to call &Apache::lonnet::finishuserfileupload
 7476: 
 7477:  Arguments:
 7478:    $contents - data to store
 7479:    $filename - filename to store $contents into
 7480: 
 7481:  Returns:
 7482:    result value from &Apache::lonnet::finishuserfileupload
 7483: 
 7484: =cut
 7485: 
 7486: sub lonnet_putfile {
 7487:     my ($contents,$filename)=@_;
 7488:     my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7489:     my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7490:     $env{'form.sillywaytopassafilearound'}=$contents;
 7491:     &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
 7492: 
 7493: }
 7494: 
 7495: =pod
 7496: 
 7497: =item scantron_putfile
 7498: 
 7499:     Stores the current version of the bubblesheet data files, and the
 7500:     scan_data hash. (Does not modify the original version only the
 7501:     corrected and skipped versions.
 7502: 
 7503:  Arguments:
 7504:     $scanlines - hash ref that looks like the first return value from
 7505:                  &scantron_getfile()
 7506:     $scan_data - hash ref that looks like the second return value from
 7507:                  &scantron_getfile()
 7508: 
 7509: =cut
 7510: 
 7511: sub scantron_putfile {
 7512:     my ($scanlines,$scan_data) = @_;
 7513:     #FIXME really would prefer a scantron directory
 7514:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 7515:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 7516:     if ($scanlines) {
 7517: 	my $prefix='scantron_';
 7518: # no need to update orig, shouldn't change
 7519: #   &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
 7520: #		    $env{'form.scantron_selectfile'});
 7521: 	&lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
 7522: 			$prefix.'corrected_'.
 7523: 			$env{'form.scantron_selectfile'});
 7524: 	&lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
 7525: 			$prefix.'skipped_'.
 7526: 			$env{'form.scantron_selectfile'});
 7527:     }
 7528:     &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
 7529: }
 7530: 
 7531: =pod
 7532: 
 7533: =item scantron_get_line
 7534: 
 7535:    Returns the correct version of the scanline
 7536: 
 7537:  Arguments:
 7538:     $scanlines - hash ref that looks like the first return value from
 7539:                  &scantron_getfile()
 7540:     $scan_data - hash ref that looks like the second return value from
 7541:                  &scantron_getfile()
 7542:     $i         - number of the requested line (starts at 0)
 7543: 
 7544:  Returns:
 7545:    A scanline, (either the original or the corrected one if it
 7546:    exists), or undef if the requested scanline should be
 7547:    skipped. (Either because it's an skipped scanline, or it's an
 7548:    unskipped scanline and we are not doing a 'do skipped scanlines'
 7549:    pass.
 7550: 
 7551: =cut
 7552: 
 7553: sub scantron_get_line {
 7554:     my ($scanlines,$scan_data,$i)=@_;
 7555:     if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
 7556:     #if ($scanlines->{'skipped'}[$i]) { return undef; }
 7557:     if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
 7558:     return $scanlines->{'orig'}[$i]; 
 7559: }
 7560: 
 7561: =pod
 7562: 
 7563: =item scantron_todo_count
 7564: 
 7565:     Counts the number of scanlines that need processing.
 7566: 
 7567:  Arguments:
 7568:     $scanlines - hash ref that looks like the first return value from
 7569:                  &scantron_getfile()
 7570:     $scan_data - hash ref that looks like the second return value from
 7571:                  &scantron_getfile()
 7572: 
 7573:  Returns:
 7574:     $count - number of scanlines to process
 7575: 
 7576: =cut
 7577: 
 7578: sub get_todo_count {
 7579:     my ($scanlines,$scan_data)=@_;
 7580:     my $count=0;
 7581:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7582: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7583: 	if ($line=~/^[\s\cz]*$/) { next; }
 7584: 	$count++;
 7585:     }
 7586:     return $count;
 7587: }
 7588: 
 7589: =pod
 7590: 
 7591: =item scantron_put_line
 7592: 
 7593:     Updates the 'corrected' or 'skipped' versions of the bubblesheet
 7594:     data file.
 7595: 
 7596:  Arguments:
 7597:     $scanlines - hash ref that looks like the first return value from
 7598:                  &scantron_getfile()
 7599:     $scan_data - hash ref that looks like the second return value from
 7600:                  &scantron_getfile()
 7601:     $i         - line number to update
 7602:     $newline   - contents of the updated scanline
 7603:     $skip      - if true make the line for skipping and update the
 7604:                  'skipped' file
 7605: 
 7606: =cut
 7607: 
 7608: sub scantron_put_line {
 7609:     my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
 7610:     if ($skip) {
 7611: 	$scanlines->{'skipped'}[$i]=$newline;
 7612: 	&start_skipping($scan_data,$i);
 7613: 	return;
 7614:     }
 7615:     $scanlines->{'corrected'}[$i]=$newline;
 7616: }
 7617: 
 7618: =pod
 7619: 
 7620: =item scantron_clear_skip
 7621: 
 7622:    Remove a line from the 'skipped' file
 7623: 
 7624:  Arguments:
 7625:     $scanlines - hash ref that looks like the first return value from
 7626:                  &scantron_getfile()
 7627:     $scan_data - hash ref that looks like the second return value from
 7628:                  &scantron_getfile()
 7629:     $i         - line number to update
 7630: 
 7631: =cut
 7632: 
 7633: sub scantron_clear_skip {
 7634:     my ($scanlines,$scan_data,$i)=@_;
 7635:     if (exists($scanlines->{'skipped'}[$i])) {
 7636: 	undef($scanlines->{'skipped'}[$i]);
 7637: 	return 1;
 7638:     }
 7639:     return 0;
 7640: }
 7641: 
 7642: =pod
 7643: 
 7644: =item scantron_filter_not_exam
 7645: 
 7646:    Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
 7647:    filter out resources that are not marked as 'exam' mode
 7648: 
 7649: =cut
 7650: 
 7651: sub scantron_filter_not_exam {
 7652:     my ($curres)=@_;
 7653:     
 7654:     if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
 7655: 	# if the user has asked to not have either hidden
 7656: 	# or 'randomout' controlled resources to be graded
 7657: 	# don't include them
 7658: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
 7659: 	    && $curres->randomout) {
 7660: 	    return 0;
 7661: 	}
 7662: 	return 1;
 7663:     }
 7664:     return 0;
 7665: }
 7666: 
 7667: =pod
 7668: 
 7669: =item scantron_validate_sequence
 7670: 
 7671:     Validates the selected sequence, checking for resource that are
 7672:     not set to exam mode.
 7673: 
 7674: =cut
 7675: 
 7676: sub scantron_validate_sequence {
 7677:     my ($r,$currentphase) = @_;
 7678: 
 7679:     my $navmap=Apache::lonnavmaps::navmap->new();
 7680:     unless (ref($navmap)) {
 7681:         $r->print(&navmap_errormsg());
 7682:         return (1,$currentphase);
 7683:     }
 7684:     my (undef,undef,$sequence)=
 7685: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
 7686: 
 7687:     my $map=$navmap->getResourceByUrl($sequence);
 7688: 
 7689:     $r->print('<input type="hidden" name="validate_sequence_exam"
 7690:                                     value="ignore" />');
 7691:     if ($env{'form.validate_sequence_exam'} ne 'ignore') {
 7692: 	my @resources=
 7693: 	    $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
 7694: 	if (@resources) {
 7695: 	    $r->print(
 7696:                 '<p class="LC_warning">'
 7697:                .&mt('Some resources in the sequence currently are not set to'
 7698:                    .' bubblesheet exam mode. Grading these resources currently may not'
 7699:                    .' work correctly.')
 7700:                .'</p>'
 7701:             );
 7702: 	    return (1,$currentphase);
 7703: 	}
 7704:     }
 7705: 
 7706:     return (0,$currentphase+1);
 7707: }
 7708: 
 7709: 
 7710: 
 7711: sub scantron_validate_ID {
 7712:     my ($r,$currentphase) = @_;
 7713:     
 7714:     #get student info
 7715:     my $classlist=&Apache::loncoursedata::get_classlist();
 7716:     my %idmap=&username_to_idmap($classlist);
 7717: 
 7718:     #get scantron line setup
 7719:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 7720:     my ($scanlines,$scan_data)=&scantron_getfile();
 7721: 
 7722:     my $nav_error;
 7723:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
 7724:     if ($nav_error) {
 7725:         $r->print(&navmap_errormsg());
 7726:         return(1,$currentphase);
 7727:     }
 7728: 
 7729:     my %found=('ids'=>{},'usernames'=>{});
 7730:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 7731: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 7732: 	if ($line=~/^[\s\cz]*$/) { next; }
 7733: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 7734: 						 $scan_data);
 7735: 	my $id=$$scan_record{'scantron.ID'};
 7736: 	my $found;
 7737: 	foreach my $checkid (keys(%idmap)) {
 7738: 	    if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
 7739: 	}
 7740: 	if ($found) {
 7741: 	    my $username=$idmap{$found};
 7742: 	    if ($found{'ids'}{$found}) {
 7743: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 7744: 					 $line,'duplicateID',$found);
 7745: 		return(1,$currentphase);
 7746: 	    } elsif ($found{'usernames'}{$username}) {
 7747: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 7748: 					 $line,'duplicateID',$username);
 7749: 		return(1,$currentphase);
 7750: 	    }
 7751: 	    #FIXME store away line we previously saw the ID on to use above
 7752: 	    $found{'ids'}{$found}++;
 7753: 	    $found{'usernames'}{$username}++;
 7754: 	} else {
 7755: 	    if ($id =~ /^\s*$/) {
 7756: 		my $username=&scan_data($scan_data,"$i.user");
 7757: 		if (defined($username) && $found{'usernames'}{$username}) {
 7758: 		    &scantron_get_correction($r,$i,$scan_record,
 7759: 					     \%scantron_config,
 7760: 					     $line,'duplicateID',$username);
 7761: 		    return(1,$currentphase);
 7762: 		} elsif (!defined($username)) {
 7763: 		    &scantron_get_correction($r,$i,$scan_record,
 7764: 					     \%scantron_config,
 7765: 					     $line,'incorrectID');
 7766: 		    return(1,$currentphase);
 7767: 		}
 7768: 		$found{'usernames'}{$username}++;
 7769: 	    } else {
 7770: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 7771: 					 $line,'incorrectID');
 7772: 		return(1,$currentphase);
 7773: 	    }
 7774: 	}
 7775:     }
 7776: 
 7777:     return (0,$currentphase+1);
 7778: }
 7779: 
 7780: 
 7781: sub scantron_get_correction {
 7782:     my ($r,$i,$scan_record,$scan_config,$line,$error,$arg,
 7783:         $randomorder,$randompick,$respnumlookup,$startline)=@_;
 7784: #FIXME in the case of a duplicated ID the previous line, probably need
 7785: #to show both the current line and the previous one and allow skipping
 7786: #the previous one or the current one
 7787: 
 7788:     if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
 7789:         $r->print(
 7790:             '<p class="LC_warning">'
 7791:            .&mt('An error was detected ([_1]) for PaperID [_2]',
 7792:                 "<b>$error</b>",
 7793:                 '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
 7794:            ."</p> \n");
 7795:     } else {
 7796:         $r->print(
 7797:             '<p class="LC_warning">'
 7798:            .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
 7799:                 "<b>$error</b>", $i, "<pre>$line</pre>")
 7800:            ."</p> \n");
 7801:     }
 7802:     my $message =
 7803:         '<p>'
 7804:        .&mt('The ID on the form is [_1]',
 7805:             "<tt>$$scan_record{'scantron.ID'}</tt>")
 7806:        .'<br />'
 7807:        .&mt('The name on the paper is [_1], [_2]',
 7808:             $$scan_record{'scantron.LastName'},
 7809:             $$scan_record{'scantron.FirstName'})
 7810:        .'</p>';
 7811: 
 7812:     $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
 7813:     $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
 7814:                            # Array populated for doublebubble or
 7815:     my @lines_to_correct;  # missingbubble errors to build javascript
 7816:                            # to validate radio button checking   
 7817: 
 7818:     if ($error =~ /ID$/) {
 7819: 	if ($error eq 'incorrectID') {
 7820:             $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
 7821: 		      "</p>\n");
 7822: 	} elsif ($error eq 'duplicateID') {
 7823:             $r->print('<p class="LC_warning">'.&mt("The encoded ID has also been used by a previous paper [_1]",$arg)."</p>\n");
 7824: 	}
 7825: 	$r->print($message);
 7826: 	$r->print("<p>".&mt("How should I handle this?")." <br /> \n");
 7827: 	$r->print("\n<ul><li> ");
 7828: 	#FIXME it would be nice if this sent back the user ID and
 7829: 	#could do partial userID matches
 7830: 	$r->print(&Apache::loncommon::selectstudent_link('scantronupload',
 7831: 				       'scantron_username','scantron_domain'));
 7832: 	$r->print(": <input type='text' name='scantron_username' value='' />");
 7833: 	$r->print("\n:\n".
 7834: 		 &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
 7835: 
 7836: 	$r->print('</li>');
 7837:     } elsif ($error =~ /CODE$/) {
 7838: 	if ($error eq 'incorrectCODE') {
 7839: 	    $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
 7840: 	} elsif ($error eq 'duplicateCODE') {
 7841: 	    $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");
 7842: 	}
 7843: 	$r->print("<p>".&mt('The CODE on the form is [_1]',
 7844: 			    "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
 7845:                  ."</p>\n");
 7846: 	$r->print($message);
 7847: 	$r->print("<p>".&mt("How should I handle this?")."</p>\n");
 7848: 	$r->print("\n<br /> ");
 7849: 	my $i=0;
 7850: 	if ($error eq 'incorrectCODE' 
 7851: 	    && $$scan_record{'scantron.CODE'}=~/\S/ ) {
 7852: 	    my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
 7853: 	    if ($closest > 0) {
 7854: 		foreach my $testcode (@{$closest}) {
 7855: 		    my $checked='';
 7856: 		    if (!$i) { $checked=' checked="checked"'; }
 7857: 		    $r->print("
 7858:    <label>
 7859:        <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
 7860:        ".&mt("Use the similar CODE [_1] instead.",
 7861: 	    "<b><tt>".$testcode."</tt></b>")."
 7862:     </label>
 7863:     <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
 7864: 		    $r->print("\n<br />");
 7865: 		    $i++;
 7866: 		}
 7867: 	    }
 7868: 	}
 7869: 	if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
 7870: 	    my $checked; if (!$i) { $checked=' checked="checked"'; }
 7871: 	    $r->print("
 7872:     <label>
 7873:         <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
 7874:        ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
 7875: 	     "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
 7876:     </label>");
 7877: 	    $r->print("\n<br />");
 7878: 	}
 7879: 
 7880: 	$r->print(&Apache::lonhtmlcommon::scripttag(<<ENDSCRIPT));
 7881: function change_radio(field) {
 7882:     var slct=document.scantronupload.scantron_CODE_resolution;
 7883:     var i;
 7884:     for (i=0;i<slct.length;i++) {
 7885:         if (slct[i].value==field) { slct[i].checked=true; }
 7886:     }
 7887: }
 7888: ENDSCRIPT
 7889: 	my $href="/adm/pickcode?".
 7890: 	   "form=".&escape("scantronupload").
 7891: 	   "&scantron_format=".&escape($env{'form.scantron_format'}).
 7892: 	   "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
 7893: 	   "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
 7894: 	   "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
 7895: 	if ($env{'form.scantron_CODElist'} =~ /\S/) { 
 7896: 	    $r->print("
 7897:     <label>
 7898:        <input type='radio' name='scantron_CODE_resolution' value='use_found' />
 7899:        ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
 7900: 	     "<a target='_blank' href='$href'>","</a>")."
 7901:     </label> 
 7902:     ".&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\')" />'));
 7903: 	    $r->print("\n<br />");
 7904: 	}
 7905: 	$r->print("
 7906:     <label>
 7907:        <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
 7908:        ".&mt("Use [_1] as the CODE.",
 7909: 	     "</label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" />"));
 7910: 	$r->print("\n<br /><br />");
 7911:     } elsif ($error eq 'doublebubble') {
 7912: 	$r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
 7913: 
 7914: 	# The form field scantron_questions is acutally a list of line numbers.
 7915: 	# represented by this form so:
 7916: 
 7917: 	my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
 7918:                                                 $respnumlookup,$startline);
 7919: 
 7920: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
 7921: 		  $line_list.'" />');
 7922: 	$r->print($message);
 7923: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
 7924: 	foreach my $question (@{$arg}) {
 7925: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
 7926:                                                    $scan_record, $error,
 7927:                                                    $randomorder,$randompick,
 7928:                                                    $respnumlookup,$startline);
 7929:             push(@lines_to_correct,@linenums);
 7930: 	}
 7931:         $r->print(&verify_bubbles_checked(@lines_to_correct));
 7932:     } elsif ($error eq 'missingbubble') {
 7933: 	$r->print('<p class="LC_warning">'.&mt("There have been [_1]no[_2] bubbles scanned for some question(s)",'<b>','</b>')."</p>\n");
 7934: 	$r->print($message);
 7935: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
 7936: 	$r->print(&mt("Some questions have no scanned bubbles.")."\n");
 7937: 
 7938: 	# The form field scantron_questions is actually a list of line numbers not
 7939: 	# a list of question numbers. Therefore:
 7940: 	#
 7941: 
 7942: 	my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
 7943:                                                 $respnumlookup,$startline);
 7944: 
 7945: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
 7946: 		  $line_list.'" />');
 7947: 	foreach my $question (@{$arg}) {
 7948: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
 7949:                                                    $scan_record, $error,
 7950:                                                    $randomorder,$randompick,
 7951:                                                    $respnumlookup,$startline);
 7952:             push(@lines_to_correct,@linenums);
 7953: 	}
 7954:         $r->print(&verify_bubbles_checked(@lines_to_correct));
 7955:     } else {
 7956: 	$r->print("\n<ul>");
 7957:     }
 7958:     $r->print("\n</li></ul>");
 7959: }
 7960: 
 7961: sub verify_bubbles_checked {
 7962:     my (@ansnums) = @_;
 7963:     my $ansnumstr = join('","',@ansnums);
 7964:     my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
 7965:     &js_escape(\$warning);
 7966:     my $output = &Apache::lonhtmlcommon::scripttag((<<ENDSCRIPT));
 7967: function verify_bubble_radio(form) {
 7968:     var ansnumArray = new Array ("$ansnumstr");
 7969:     var need_bubble_count = 0;
 7970:     for (var i=0; i<ansnumArray.length; i++) {
 7971:         if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
 7972:             var bubble_picked = 0; 
 7973:             for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
 7974:                 if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
 7975:                     bubble_picked = 1;
 7976:                 }
 7977:             }
 7978:             if (bubble_picked == 0) {
 7979:                 need_bubble_count ++;
 7980:             }
 7981:         }
 7982:     }
 7983:     if (need_bubble_count) {
 7984:         alert("$warning");
 7985:         return;
 7986:     }
 7987:     form.submit(); 
 7988: }
 7989: ENDSCRIPT
 7990:     return $output;
 7991: }
 7992: 
 7993: =pod
 7994: 
 7995: =item  questions_to_line_list
 7996: 
 7997: Converts a list of questions into a string of comma separated
 7998: line numbers in the answer sheet used by the questions.  This is
 7999: used to fill in the scantron_questions form field.
 8000: 
 8001:   Arguments:
 8002:      questions    - Reference to an array of questions.
 8003:      randomorder  - True if randomorder in use.
 8004:      randompick   - True if randompick in use.
 8005:      respnumlookup - Reference to HASH mapping question numbers in bubble lines
 8006:                      for current line to question number used for same question
 8007:                      in "Master Seqence" (as seen by Course Coordinator).
 8008:      startline    - Reference to hash where key is question number (0 is first)
 8009:                     and key is number of first bubble line for current student
 8010:                     or code-based randompick and/or randomorder.
 8011: 
 8012: =cut
 8013: 
 8014: 
 8015: sub questions_to_line_list {
 8016:     my ($questions,$randomorder,$randompick,$respnumlookup,$startline) = @_;
 8017:     my @lines;
 8018: 
 8019:     foreach my $item (@{$questions}) {
 8020:         my $question = $item;
 8021:         my ($first,$count,$last);
 8022:         if ($item =~ /^(\d+)\.(\d+)$/) {
 8023:             $question = $1;
 8024:             my $subquestion = $2;
 8025:             my $responsenum = $question-1;
 8026:             if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 8027:                 $responsenum = $respnumlookup->{$question-1};
 8028:                 if (ref($startline) eq 'HASH') {
 8029:                     $first = $startline->{$question-1} + 1;
 8030:                 }
 8031:             } else {
 8032:                 $first = $first_bubble_line{$responsenum} + 1;
 8033:             }
 8034:             my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
 8035:             my $subcount = 1;
 8036:             while ($subcount<$subquestion) {
 8037:                 $first += $subans[$subcount-1];
 8038:                 $subcount ++;
 8039:             }
 8040:             $count = $subans[$subquestion-1];
 8041:         } else {
 8042:             my $responsenum = $question-1;
 8043:             if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 8044:                 $responsenum = $respnumlookup->{$question-1};
 8045:                 if (ref($startline) eq 'HASH') {
 8046:                     $first = $startline->{$question-1} + 1;
 8047:                 }
 8048:             } else {
 8049:                 $first = $first_bubble_line{$responsenum} + 1;
 8050:             }
 8051: 	    $count   = $bubble_lines_per_response{$responsenum};
 8052:         }
 8053:         $last = $first+$count-1;
 8054:         push(@lines, ($first..$last));
 8055:     }
 8056:     return join(',', @lines);
 8057: }
 8058: 
 8059: =pod 
 8060: 
 8061: =item prompt_for_corrections
 8062: 
 8063: Prompts for a potentially multiline correction to the
 8064: user's bubbling (factors out common code from scantron_get_correction
 8065: for multi and missing bubble cases).
 8066: 
 8067:  Arguments:
 8068:    $r           - Apache request object.
 8069:    $question    - The question number to prompt for.
 8070:    $scan_config - The scantron file configuration hash.
 8071:    $scan_record - Reference to the hash that has the the parsed scanlines.
 8072:    $error       - Type of error
 8073:    $randomorder - True if randomorder in use.
 8074:    $randompick  - True if randompick in use.
 8075:    $respnumlookup - Reference to HASH mapping question numbers in bubble lines
 8076:                     for current line to question number used for same question
 8077:                     in "Master Seqence" (as seen by Course Coordinator).
 8078:    $startline   - Reference to hash where key is question number (0 is first)
 8079:                   and value is number of first bubble line for current student
 8080:                   or code-based randompick and/or randomorder.
 8081: 
 8082: 
 8083:  Implicit inputs:
 8084:    %bubble_lines_per_response   - Starting line numbers for each question.
 8085:                                   Numbered from 0 (but question numbers are from
 8086:                                   1.
 8087:    %first_bubble_line           - Starting bubble line for each question.
 8088:    %subdivided_bubble_lines     - optionresponse, matchresponse and rankresponse 
 8089:                                   type problems render as separate sub-questions, 
 8090:                                   in exam mode. This hash contains a 
 8091:                                   comma-separated list of the lines per 
 8092:                                   sub-question.
 8093:    %responsetype_per_response   - essayresponse, formularesponse,
 8094:                                   stringresponse, imageresponse, reactionresponse,
 8095:                                   and organicresponse type problem parts can have
 8096:                                   multiple lines per response if the weight
 8097:                                   assigned exceeds 10.  In this case, only
 8098:                                   one bubble per line is permitted, but more 
 8099:                                   than one line might contain bubbles, e.g.
 8100:                                   bubbling of: line 1 - J, line 2 - J, 
 8101:                                   line 3 - B would assign 22 points.  
 8102: 
 8103: =cut
 8104: 
 8105: sub prompt_for_corrections {
 8106:     my ($r, $question, $scan_config, $scan_record, $error, $randomorder,
 8107:         $randompick, $respnumlookup, $startline) = @_;
 8108:     my ($current_line,$lines);
 8109:     my @linenums;
 8110:     my $questionnum = $question;
 8111:     my ($first,$responsenum);
 8112:     if ($question =~ /^(\d+)\.(\d+)$/) {
 8113:         $question = $1;
 8114:         my $subquestion = $2;
 8115:         if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 8116:             $responsenum = $respnumlookup->{$question-1};
 8117:             if (ref($startline) eq 'HASH') {
 8118:                 $first = $startline->{$question-1};
 8119:             }
 8120:         } else {
 8121:             $responsenum = $question-1;
 8122:             $first = $first_bubble_line{$responsenum};
 8123:         }
 8124:         $current_line = $first + 1 ;
 8125:         my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
 8126:         my $subcount = 1;
 8127:         while ($subcount<$subquestion) {
 8128:             $current_line += $subans[$subcount-1];
 8129:             $subcount ++;
 8130:         }
 8131:         $lines = $subans[$subquestion-1];
 8132:     } else {
 8133:         if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
 8134:             $responsenum = $respnumlookup->{$question-1};
 8135:             if (ref($startline) eq 'HASH') { 
 8136:                 $first = $startline->{$question-1};
 8137:             }
 8138:         } else {
 8139:             $responsenum = $question-1;
 8140:             $first = $first_bubble_line{$responsenum};
 8141:         }
 8142:         $current_line = $first + 1;
 8143:         $lines        = $bubble_lines_per_response{$responsenum};
 8144:     }
 8145:     if ($lines > 1) {
 8146:         $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
 8147:         if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
 8148:             ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
 8149:             ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
 8150:             ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
 8151:             ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
 8152:             ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
 8153:             $r->print(
 8154:                 &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)
 8155:                .'<br /><br />'
 8156:                .&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.')
 8157:                .'<br />'
 8158:                .&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.')
 8159:                .'<br />'
 8160:                .&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.")
 8161:                .'<br /><br />'
 8162:             );
 8163:         } else {
 8164:             $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
 8165:         }
 8166:     }
 8167:     for (my $i =0; $i < $lines; $i++) {
 8168:         my $selected = $$scan_record{"scantron.$current_line.answer"};
 8169: 	&scantron_bubble_selector($r,$scan_config,$current_line,
 8170: 	        		  $questionnum,$error,split('', $selected));
 8171:         push(@linenums,$current_line);
 8172: 	$current_line++;
 8173:     }
 8174:     if ($lines > 1) {
 8175: 	$r->print("<hr /><br />");
 8176:     }
 8177:     return @linenums;
 8178: }
 8179: 
 8180: =pod
 8181: 
 8182: =item scantron_bubble_selector
 8183:   
 8184:    Generates the html radiobuttons to correct a single bubble line
 8185:    possibly showing the existing the selected bubbles if known
 8186: 
 8187:  Arguments:
 8188:     $r           - Apache request object
 8189:     $scan_config - hash from &get_scantron_config()
 8190:     $line        - Number of the line being displayed.
 8191:     $questionnum - Question number (may include subquestion)
 8192:     $error       - Type of error.
 8193:     @selected    - Array of bubbles picked on this line.
 8194: 
 8195: =cut
 8196: 
 8197: sub scantron_bubble_selector {
 8198:     my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
 8199:     my $max=$$scan_config{'Qlength'};
 8200: 
 8201:     my $scmode=$$scan_config{'Qon'};
 8202:     if ($scmode eq 'number' || $scmode eq 'letter') { 
 8203:         if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
 8204:             ($$scan_config{'BubblesPerRow'} > 0)) {
 8205:             $max=$$scan_config{'BubblesPerRow'};
 8206:             if (($scmode eq 'number') && ($max > 10)) {
 8207:                 $max = 10;
 8208:             } elsif (($scmode eq 'letter') && $max > 26) {
 8209:                 $max = 26;
 8210:             }
 8211:         } else {
 8212:             $max = 10;
 8213:         }
 8214:     }
 8215: 
 8216:     my @alphabet=('A'..'Z');
 8217:     $r->print(&Apache::loncommon::start_data_table().
 8218:               &Apache::loncommon::start_data_table_row());
 8219:     $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
 8220:     for (my $i=0;$i<$max+1;$i++) {
 8221: 	$r->print("\n".'<td align="center">');
 8222: 	if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
 8223: 	else { $r->print('&nbsp;'); }
 8224: 	$r->print('</td>');
 8225:     }
 8226:     $r->print(&Apache::loncommon::end_data_table_row().
 8227:               &Apache::loncommon::start_data_table_row());
 8228:     for (my $i=0;$i<$max;$i++) {
 8229: 	$r->print("\n".
 8230: 		  '<td><label><input type="radio" name="scantron_correct_Q_'.
 8231: 		  $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
 8232:     }
 8233:     my $nobub_checked = ' ';
 8234:     if ($error eq 'missingbubble') {
 8235:         $nobub_checked = ' checked = "checked" ';
 8236:     }
 8237:     $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
 8238: 	      $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
 8239:               '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
 8240:               $line.'" value="'.$questionnum.'" /></td>');
 8241:     $r->print(&Apache::loncommon::end_data_table_row().
 8242:               &Apache::loncommon::end_data_table());
 8243: }
 8244: 
 8245: =pod
 8246: 
 8247: =item num_matches
 8248: 
 8249:    Counts the number of characters that are the same between the two arguments.
 8250: 
 8251:  Arguments:
 8252:    $orig - CODE from the scanline
 8253:    $code - CODE to match against
 8254: 
 8255:  Returns:
 8256:    $count - integer count of the number of same characters between the
 8257:             two arguments
 8258: 
 8259: =cut
 8260: 
 8261: sub num_matches {
 8262:     my ($orig,$code) = @_;
 8263:     my @code=split(//,$code);
 8264:     my @orig=split(//,$orig);
 8265:     my $same=0;
 8266:     for (my $i=0;$i<scalar(@code);$i++) {
 8267: 	if ($code[$i] eq $orig[$i]) { $same++; }
 8268:     }
 8269:     return $same;
 8270: }
 8271: 
 8272: =pod
 8273: 
 8274: =item scantron_get_closely_matching_CODEs
 8275: 
 8276:    Cycles through all CODEs and finds the set that has the greatest
 8277:    number of same characters as the provided CODE
 8278: 
 8279:  Arguments:
 8280:    $allcodes - hash ref returned by &get_codes()
 8281:    $CODE     - CODE from the current scanline
 8282: 
 8283:  Returns:
 8284:    2 element list
 8285:     - first elements is number of how closely matching the best fit is 
 8286:       (5 means best set has 5 matching characters)
 8287:     - second element is an arrary ref containing the set of valid CODEs
 8288:       that best fit the passed in CODE
 8289: 
 8290: =cut
 8291: 
 8292: sub scantron_get_closely_matching_CODEs {
 8293:     my ($allcodes,$CODE)=@_;
 8294:     my @CODEs;
 8295:     foreach my $testcode (sort(keys(%{$allcodes}))) {
 8296: 	push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
 8297:     }
 8298: 
 8299:     return ($#CODEs,$CODEs[-1]);
 8300: }
 8301: 
 8302: =pod
 8303: 
 8304: =item get_codes
 8305: 
 8306:    Builds a hash which has keys of all of the valid CODEs from the selected
 8307:    set of remembered CODEs.
 8308: 
 8309:  Arguments:
 8310:   $old_name - name of the set of remembered CODEs
 8311:   $cdom     - domain of the course
 8312:   $cnum     - internal course name
 8313: 
 8314:  Returns:
 8315:   %allcodes - keys are the valid CODEs, values are all 1
 8316: 
 8317: =cut
 8318: 
 8319: sub get_codes {
 8320:     my ($old_name, $cdom, $cnum) = @_;
 8321:     if (!$old_name) {
 8322: 	$old_name=$env{'form.scantron_CODElist'};
 8323:     }
 8324:     if (!$cdom) {
 8325: 	$cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
 8326:     }
 8327:     if (!$cnum) {
 8328: 	$cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
 8329:     }
 8330:     my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
 8331: 				    $cdom,$cnum);
 8332:     my %allcodes;
 8333:     if ($result{"type\0$old_name"} eq 'number') {
 8334: 	%allcodes=map {($_,1)} split(',',$result{$old_name});
 8335:     } else {
 8336: 	%allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
 8337:     }
 8338:     return %allcodes;
 8339: }
 8340: 
 8341: =pod
 8342: 
 8343: =item scantron_validate_CODE
 8344: 
 8345:    Validates all scanlines in the selected file to not have any
 8346:    invalid or underspecified CODEs and that none of the codes are
 8347:    duplicated if this was requested.
 8348: 
 8349: =cut
 8350: 
 8351: sub scantron_validate_CODE {
 8352:     my ($r,$currentphase) = @_;
 8353:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 8354:     if ($scantron_config{'CODElocation'} &&
 8355: 	$scantron_config{'CODEstart'} &&
 8356: 	$scantron_config{'CODElength'}) {
 8357: 	if (!defined($env{'form.scantron_CODElist'})) {
 8358: 	    &FIXME_blow_up()
 8359: 	}
 8360:     } else {
 8361: 	return (0,$currentphase+1);
 8362:     }
 8363:     
 8364:     my %usedCODEs;
 8365: 
 8366:     my %allcodes=&get_codes();
 8367: 
 8368:     my $nav_error;
 8369:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
 8370:     if ($nav_error) {
 8371:         $r->print(&navmap_errormsg());
 8372:         return(1,$currentphase);
 8373:     }
 8374: 
 8375:     my ($scanlines,$scan_data)=&scantron_getfile();
 8376:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 8377: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8378: 	if ($line=~/^[\s\cz]*$/) { next; }
 8379: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 8380: 						 $scan_data);
 8381: 	my $CODE=$$scan_record{'scantron.CODE'};
 8382: 	my $error=0;
 8383: 	if (!&Apache::lonnet::validCODE($CODE)) {
 8384: 	    &scantron_get_correction($r,$i,$scan_record,
 8385: 				     \%scantron_config,
 8386: 				     $line,'incorrectCODE',\%allcodes);
 8387: 	    return(1,$currentphase);
 8388: 	}
 8389: 	if (%allcodes && !exists($allcodes{$CODE}) 
 8390: 	    && !$$scan_record{'scantron.useCODE'}) {
 8391: 	    &scantron_get_correction($r,$i,$scan_record,
 8392: 				     \%scantron_config,
 8393: 				     $line,'incorrectCODE',\%allcodes);
 8394: 	    return(1,$currentphase);
 8395: 	}
 8396: 	if (exists($usedCODEs{$CODE}) 
 8397: 	    && $env{'form.scantron_CODEunique'} eq 'yes'
 8398: 	    && !$$scan_record{'scantron.CODE_ignore_dup'}) {
 8399: 	    &scantron_get_correction($r,$i,$scan_record,
 8400: 				     \%scantron_config,
 8401: 				     $line,'duplicateCODE',$usedCODEs{$CODE});
 8402: 	    return(1,$currentphase);
 8403: 	}
 8404: 	push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
 8405:     }
 8406:     return (0,$currentphase+1);
 8407: }
 8408: 
 8409: =pod
 8410: 
 8411: =item scantron_validate_doublebubble
 8412: 
 8413:    Validates all scanlines in the selected file to not have any
 8414:    bubble lines with multiple bubbles marked.
 8415: 
 8416: =cut
 8417: 
 8418: sub scantron_validate_doublebubble {
 8419:     my ($r,$currentphase) = @_;
 8420:     #get student info
 8421:     my $classlist=&Apache::loncoursedata::get_classlist();
 8422:     my %idmap=&username_to_idmap($classlist);
 8423:     my (undef,undef,$sequence)=
 8424:         &Apache::lonnet::decode_symb($env{'form.selectpage'});
 8425: 
 8426:     #get scantron line setup
 8427:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 8428:     my ($scanlines,$scan_data)=&scantron_getfile();
 8429: 
 8430:     my $navmap = Apache::lonnavmaps::navmap->new();
 8431:     unless (ref($navmap)) {
 8432:         $r->print(&navmap_errormsg());
 8433:         return(1,$currentphase);
 8434:     }
 8435:     my $map=$navmap->getResourceByUrl($sequence);
 8436:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8437:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 8438:         %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
 8439:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 8440: 
 8441:     my $nav_error;
 8442:     if (ref($map)) {
 8443:         $randomorder = $map->randomorder();
 8444:         $randompick = $map->randompick();
 8445:         if ($randomorder || $randompick) {
 8446:             $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 8447:             if ($nav_error) {
 8448:                 $r->print(&navmap_errormsg());
 8449:                 return(1,$currentphase);
 8450:             }
 8451:             &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 8452:                                     \%grader_randomlists_by_symb,$bubbles_per_row);
 8453:         }
 8454:     } else {
 8455:         $r->print(&navmap_errormsg());
 8456:         return(1,$currentphase);
 8457:     }
 8458: 
 8459:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
 8460:     if ($nav_error) {
 8461:         $r->print(&navmap_errormsg());
 8462:         return(1,$currentphase);
 8463:     }
 8464: 
 8465:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 8466: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8467: 	if ($line=~/^[\s\cz]*$/) { next; }
 8468: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 8469: 						 $scan_data,undef,\%idmap,$randomorder,
 8470:                                                  $randompick,$sequence,\@master_seq,
 8471:                                                  \%symb_to_resource,\%grader_partids_by_symb,
 8472:                                                  \%orderedforcode,\%respnumlookup,\%startline);
 8473: 	if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
 8474: 	&scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
 8475: 				 'doublebubble',
 8476: 				 $$scan_record{'scantron.doubleerror'},
 8477:                                  $randomorder,$randompick,\%respnumlookup,\%startline);
 8478:     	return (1,$currentphase);
 8479:     }
 8480:     return (0,$currentphase+1);
 8481: }
 8482: 
 8483: 
 8484: sub scantron_get_maxbubble {
 8485:     my ($nav_error,$scantron_config) = @_;
 8486:     if (defined($env{'form.scantron_maxbubble'}) &&
 8487: 	$env{'form.scantron_maxbubble'}) {
 8488: 	&restore_bubble_lines();
 8489: 	return $env{'form.scantron_maxbubble'};
 8490:     }
 8491: 
 8492:     my (undef, undef, $sequence) =
 8493: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
 8494: 
 8495:     my $navmap=Apache::lonnavmaps::navmap->new();
 8496:     unless (ref($navmap)) {
 8497:         if (ref($nav_error)) {
 8498:             $$nav_error = 1;
 8499:         }
 8500:         return;
 8501:     }
 8502:     my $map=$navmap->getResourceByUrl($sequence);
 8503:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8504:     my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
 8505: 
 8506:     &Apache::lonxml::clear_problem_counter();
 8507: 
 8508:     my $uname       = $env{'user.name'};
 8509:     my $udom        = $env{'user.domain'};
 8510:     my $cid         = $env{'request.course.id'};
 8511:     my $total_lines = 0;
 8512:     %bubble_lines_per_response = ();
 8513:     %first_bubble_line         = ();
 8514:     %subdivided_bubble_lines   = ();
 8515:     %responsetype_per_response = ();
 8516:     %masterseq_id_responsenum  = ();
 8517: 
 8518:     my $response_number = 0;
 8519:     my $bubble_line     = 0;
 8520:     foreach my $resource (@resources) {
 8521:         my $resid = $resource->id(); 
 8522:         my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
 8523:                                                           $udom,undef,$bubbles_per_row);
 8524:         if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
 8525: 	    foreach my $part_id (@{$parts}) {
 8526:                 my $lines;
 8527: 
 8528: 	        # TODO - make this a persistent hash not an array.
 8529: 
 8530:                 # optionresponse, matchresponse and rankresponse type items 
 8531:                 # render as separate sub-questions in exam mode.
 8532:                 if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
 8533:                     ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
 8534:                     ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
 8535:                     my ($numbub,$numshown);
 8536:                     if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
 8537:                         if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
 8538:                             $numbub = scalar(@{$analysis->{$part_id.'.options'}});
 8539:                         }
 8540:                     } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
 8541:                         if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
 8542:                             $numbub = scalar(@{$analysis->{$part_id.'.items'}});
 8543:                         }
 8544:                     } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
 8545:                         if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
 8546:                             $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
 8547:                         }
 8548:                     }
 8549:                     if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
 8550:                         $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
 8551:                     }
 8552:                     my $bubbles_per_row =
 8553:                         &bubblesheet_bubbles_per_row($scantron_config);
 8554:                     my $inner_bubble_lines = int($numbub/$bubbles_per_row);
 8555:                     if (($numbub % $bubbles_per_row) != 0) {
 8556:                         $inner_bubble_lines++;
 8557:                     }
 8558:                     for (my $i=0; $i<$numshown; $i++) {
 8559:                         $subdivided_bubble_lines{$response_number} .= 
 8560:                             $inner_bubble_lines.',';
 8561:                     }
 8562:                     $subdivided_bubble_lines{$response_number} =~ s/,$//;
 8563:                     $lines = $numshown * $inner_bubble_lines;
 8564:                 } else {
 8565:                     $lines = $analysis->{"$part_id.bubble_lines"};
 8566:                 }
 8567: 
 8568:                 $first_bubble_line{$response_number} = $bubble_line;
 8569: 	        $bubble_lines_per_response{$response_number} = $lines;
 8570:                 $responsetype_per_response{$response_number} = 
 8571:                     $analysis->{$part_id.'.type'};
 8572:                 $masterseq_id_responsenum{$resid.'_'.$part_id} = $response_number;  
 8573: 	        $response_number++;
 8574: 
 8575: 	        $bubble_line +=  $lines;
 8576: 	        $total_lines +=  $lines;
 8577: 	    }
 8578:         }
 8579:     }
 8580:     &Apache::lonnet::delenv('scantron.');
 8581: 
 8582:     &save_bubble_lines();
 8583:     $env{'form.scantron_maxbubble'} =
 8584: 	$total_lines;
 8585:     return $env{'form.scantron_maxbubble'};
 8586: }
 8587: 
 8588: sub bubblesheet_bubbles_per_row {
 8589:     my ($scantron_config) = @_;
 8590:     my $bubbles_per_row;
 8591:     if (ref($scantron_config) eq 'HASH') {
 8592:         $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
 8593:     }
 8594:     if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
 8595:         $bubbles_per_row = 10;
 8596:     }
 8597:     return $bubbles_per_row;
 8598: }
 8599: 
 8600: sub scantron_validate_missingbubbles {
 8601:     my ($r,$currentphase) = @_;
 8602:     #get student info
 8603:     my $classlist=&Apache::loncoursedata::get_classlist();
 8604:     my %idmap=&username_to_idmap($classlist);
 8605:     my (undef,undef,$sequence)=
 8606:         &Apache::lonnet::decode_symb($env{'form.selectpage'});
 8607: 
 8608:     #get scantron line setup
 8609:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 8610:     my ($scanlines,$scan_data)=&scantron_getfile();
 8611: 
 8612:     my $navmap = Apache::lonnavmaps::navmap->new();
 8613:     unless (ref($navmap)) {
 8614:         $r->print(&navmap_errormsg());
 8615:         return(1,$currentphase);
 8616:     }
 8617: 
 8618:     my $map=$navmap->getResourceByUrl($sequence);
 8619:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8620:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 8621:         %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
 8622:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 8623: 
 8624:     my $nav_error;
 8625:     if (ref($map)) {
 8626:         $randomorder = $map->randomorder();
 8627:         $randompick = $map->randompick();
 8628:         if ($randomorder || $randompick) {
 8629:             $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 8630:             if ($nav_error) {
 8631:                 $r->print(&navmap_errormsg());
 8632:                 return(1,$currentphase);
 8633:             }
 8634:             &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 8635:                                     \%grader_randomlists_by_symb,$bubbles_per_row);
 8636:         }
 8637:     } else {
 8638:         $r->print(&navmap_errormsg());
 8639:         return(1,$currentphase);
 8640:     }
 8641: 
 8642: 
 8643:     my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
 8644:     if ($nav_error) {
 8645:         $r->print(&navmap_errormsg());
 8646:         return(1,$currentphase);
 8647:     }
 8648: 
 8649:     if (!$max_bubble) { $max_bubble=2**31; }
 8650:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
 8651: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8652: 	if ($line=~/^[\s\cz]*$/) { next; }
 8653: 	my $scan_record =
 8654:             &scantron_parse_scanline($line,$i,\%scantron_config,$scan_data,undef,\%idmap,
 8655: 				     $randomorder,$randompick,$sequence,\@master_seq,
 8656:                                      \%symb_to_resource,\%grader_partids_by_symb,
 8657:                                      \%orderedforcode,\%respnumlookup,\%startline);
 8658: 	if (!defined($$scan_record{'scantron.missingerror'})) { next; }
 8659: 	my @to_correct;
 8660: 	
 8661: 	# Probably here's where the error is...
 8662: 
 8663: 	foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
 8664:             my $lastbubble;
 8665:             if ($missing =~ /^(\d+)\.(\d+)$/) {
 8666:                my $question = $1;
 8667:                my $subquestion = $2;
 8668:                my ($first,$responsenum);
 8669:                if ($randomorder || $randompick) {
 8670:                    $responsenum = $respnumlookup{$question-1};
 8671:                    $first = $startline{$question-1};
 8672:                } else {
 8673:                    $responsenum = $question-1; 
 8674:                    $first = $first_bubble_line{$responsenum};
 8675:                }
 8676:                if (!defined($first)) { next; }
 8677:                my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
 8678:                my $subcount = 1;
 8679:                while ($subcount<$subquestion) {
 8680:                    $first += $subans[$subcount-1];
 8681:                    $subcount ++;
 8682:                }
 8683:                my $count = $subans[$subquestion-1];
 8684:                $lastbubble = $first + $count;
 8685:             } else {
 8686:                my ($first,$responsenum);
 8687:                if ($randomorder || $randompick) {
 8688:                    $responsenum = $respnumlookup{$missing-1};
 8689:                    $first = $startline{$missing-1};
 8690:                } else {
 8691:                    $responsenum = $missing-1;
 8692:                    $first = $first_bubble_line{$responsenum};
 8693:                }
 8694:                if (!defined($first)) { next; }
 8695:                $lastbubble = $first + $bubble_lines_per_response{$responsenum};
 8696:             }
 8697:             if ($lastbubble > $max_bubble) { next; }
 8698: 	    push(@to_correct,$missing);
 8699: 	}
 8700: 	if (@to_correct) {
 8701: 	    &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
 8702: 				     $line,'missingbubble',\@to_correct,
 8703:                                      $randomorder,$randompick,\%respnumlookup,
 8704:                                      \%startline);
 8705: 	    return (1,$currentphase);
 8706: 	}
 8707: 
 8708:     }
 8709:     return (0,$currentphase+1);
 8710: }
 8711: 
 8712: sub hand_bubble_option {
 8713:     my (undef, undef, $sequence) =
 8714:         &Apache::lonnet::decode_symb($env{'form.selectpage'});
 8715:     return if ($sequence eq '');
 8716:     my $navmap = Apache::lonnavmaps::navmap->new();
 8717:     unless (ref($navmap)) {
 8718:         return;
 8719:     }
 8720:     my $needs_hand_bubbles;
 8721:     my $map=$navmap->getResourceByUrl($sequence);
 8722:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8723:     foreach my $res (@resources) {
 8724:         if (ref($res)) {
 8725:             if ($res->is_problem()) {
 8726:                 my $partlist = $res->parts();
 8727:                 foreach my $part (@{ $partlist }) {
 8728:                     my @types = $res->responseType($part);
 8729:                     if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
 8730:                         $needs_hand_bubbles = 1;
 8731:                         last;
 8732:                     }
 8733:                 }
 8734:             }
 8735:         }
 8736:     }
 8737:     if ($needs_hand_bubbles) {
 8738:         my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 8739:         my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 8740:         return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
 8741:                &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 />').
 8742:                '<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;'.
 8743:                '<label><input type="radio" name="scantron_lastbubblepoints" value="0" />'.&mt('0 points').'</label></p>';
 8744:     }
 8745:     return;
 8746: }
 8747: 
 8748: sub scantron_process_students {
 8749:     my ($r,$symb) = @_;
 8750: 
 8751:     my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
 8752:     if (!$symb) {
 8753: 	return '';
 8754:     }
 8755:     my $default_form_data=&defaultFormData($symb);
 8756: 
 8757:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
 8758:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config); 
 8759:     my ($scanlines,$scan_data)=&scantron_getfile();
 8760:     my $classlist=&Apache::loncoursedata::get_classlist();
 8761:     my %idmap=&username_to_idmap($classlist);
 8762:     my $navmap=Apache::lonnavmaps::navmap->new();
 8763:     unless (ref($navmap)) {
 8764:         $r->print(&navmap_errormsg());
 8765:         return '';
 8766:     }
 8767:     my $map=$navmap->getResourceByUrl($sequence);
 8768:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 8769:         %grader_randomlists_by_symb);
 8770:     if (ref($map)) {
 8771:         $randomorder = $map->randomorder();
 8772:         $randompick = $map->randompick();
 8773:     } else {
 8774:         $r->print(&navmap_errormsg());
 8775:         return '';
 8776:     }
 8777:     my $nav_error;
 8778:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 8779:     if ($randomorder || $randompick) {
 8780:         $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 8781:         if ($nav_error) {
 8782:             $r->print(&navmap_errormsg());
 8783:             return '';
 8784:         }
 8785:     }
 8786:     &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 8787:                             \%grader_randomlists_by_symb,$bubbles_per_row);
 8788: 
 8789:     my ($uname,$udom);
 8790:     my $result= <<SCANTRONFORM;
 8791: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
 8792:   <input type="hidden" name="command" value="scantron_configphase" />
 8793:   $default_form_data
 8794: SCANTRONFORM
 8795:     $r->print($result);
 8796: 
 8797:     my @delayqueue;
 8798:     my (%completedstudents,%scandata);
 8799:     
 8800:     my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
 8801:     my $count=&get_todo_count($scanlines,$scan_data);
 8802:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
 8803:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
 8804:     $r->print('<br />');
 8805:     my $start=&Time::HiRes::time();
 8806:     my $i=-1;
 8807:     my $started;
 8808: 
 8809:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
 8810:     if ($nav_error) {
 8811:         $r->print(&navmap_errormsg());
 8812:         return '';
 8813:     }
 8814: 
 8815:     # If an ssi failed in scantron_get_maxbubble, put an error message out to
 8816:     # the user and return.
 8817: 
 8818:     if ($ssi_error) {
 8819: 	$r->print("</form>");
 8820: 	&ssi_print_error($r);
 8821:         &Apache::lonnet::remove_lock($lock);
 8822: 	return '';		# Dunno why the other returns return '' rather than just returning.
 8823:     }
 8824: 
 8825:     my %lettdig = &letter_to_digits();
 8826:     my $numletts = scalar(keys(%lettdig));
 8827:     my %orderedforcode;
 8828: 
 8829:     while ($i<$scanlines->{'count'}) {
 8830:  	($uname,$udom)=('','');
 8831:  	$i++;
 8832:  	my $line=&scantron_get_line($scanlines,$scan_data,$i);
 8833:  	if ($line=~/^[\s\cz]*$/) { next; }
 8834: 	if ($started) {
 8835: 	    &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
 8836: 	}
 8837: 	$started=1;
 8838:         my %respnumlookup = ();
 8839:         my %startline = ();
 8840:         my $total;
 8841:  	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
 8842:                                                  $scan_data,undef,\%idmap,$randomorder,
 8843:                                                  $randompick,$sequence,\@master_seq,
 8844:                                                  \%symb_to_resource,\%grader_partids_by_symb,
 8845:                                                  \%orderedforcode,\%respnumlookup,\%startline,
 8846:                                                  \$total);
 8847:  	unless ($uname=&scantron_find_student($scan_record,$scan_data,
 8848:  					      \%idmap,$i)) {
 8849:   	    &scantron_add_delay(\@delayqueue,$line,
 8850:  				'Unable to find a student that matches',1);
 8851:  	    next;
 8852:   	}
 8853:  	if (exists $completedstudents{$uname}) {
 8854:  	    &scantron_add_delay(\@delayqueue,$line,
 8855:  				'Student '.$uname.' has multiple sheets',2);
 8856:  	    next;
 8857:  	}
 8858:         my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
 8859:         my $user = $uname.':'.$usec;
 8860:   	($uname,$udom)=split(/:/,$uname);
 8861: 
 8862:         my $scancode;
 8863:         if ((exists($scan_record->{'scantron.CODE'})) &&
 8864:             (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
 8865:             $scancode = $scan_record->{'scantron.CODE'};
 8866:         } else {
 8867:             $scancode = '';
 8868:         }
 8869: 
 8870:         my @mapresources = @resources;
 8871:         if ($randomorder || $randompick) {
 8872:             @mapresources = 
 8873:                 &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
 8874:                              \%orderedforcode);
 8875:         }
 8876:         my (%partids_by_symb,$res_error);
 8877:         foreach my $resource (@mapresources) {
 8878:             my $ressymb;
 8879:             if (ref($resource)) {
 8880:                 $ressymb = $resource->symb();
 8881:             } else {
 8882:                 $res_error = 1;
 8883:                 last;
 8884:             }
 8885:             if ((exists($grader_randomlists_by_symb{$ressymb})) ||
 8886:                 (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
 8887:                 my $currcode;
 8888:                 if (exists($grader_randomlists_by_symb{$ressymb})) {
 8889:                     $currcode = $scancode;
 8890:                 }
 8891:                 my ($analysis,$parts) =
 8892:                     &scantron_partids_tograde($resource,$env{'request.course.id'},
 8893:                                               $uname,$udom,undef,$bubbles_per_row,
 8894:                                               $currcode);
 8895:                 $partids_by_symb{$ressymb} = $parts;
 8896:             } else {
 8897:                 $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
 8898:             }
 8899:         }
 8900: 
 8901:         if ($res_error) {
 8902:             &scantron_add_delay(\@delayqueue,$line,
 8903:                                 'An error occurred while grading student '.$uname,2);
 8904:             next;
 8905:         }
 8906: 
 8907: 	&Apache::lonxml::clear_problem_counter();
 8908:   	&Apache::lonnet::appenv($scan_record);
 8909: 
 8910: 	if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
 8911: 	    &scantron_putfile($scanlines,$scan_data);
 8912: 	}
 8913: 	
 8914:         if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
 8915:                                    \@mapresources,\%partids_by_symb,
 8916:                                    $bubbles_per_row,$randomorder,$randompick,
 8917:                                    \%respnumlookup,\%startline) 
 8918:             eq 'ssi_error') {
 8919:             $ssi_error = 0; # So end of handler error message does not trigger.
 8920:             $r->print("</form>");
 8921:             &ssi_print_error($r);
 8922:             &Apache::lonnet::remove_lock($lock);
 8923:             return '';      # Why return ''?  Beats me.
 8924:         }
 8925: 
 8926:         if (($scancode) && ($randomorder || $randompick)) {
 8927:             my $parmresult =
 8928:                 &Apache::lonparmset::storeparm_by_symb($symb,
 8929:                                                        '0_examcode',2,$scancode,
 8930:                                                        'string_examcode',$uname,
 8931:                                                        $udom);
 8932:         }
 8933: 	$completedstudents{$uname}={'line'=>$line};
 8934:         if ($env{'form.verifyrecord'}) {
 8935:             my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
 8936:             if ($randompick) {
 8937:                 if ($total) {
 8938:                     $lastpos = $total*$scantron_config{'Qlength'};
 8939:                 }
 8940:             }
 8941: 
 8942:             my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
 8943:             chomp($studentdata);
 8944:             $studentdata =~ s/\r$//;
 8945:             my $studentrecord = '';
 8946:             my $counter = -1;
 8947:             foreach my $resource (@mapresources) {
 8948:                 my $ressymb = $resource->symb();
 8949:                 ($counter,my $recording) =
 8950:                     &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
 8951:                                              $counter,$studentdata,$partids_by_symb{$ressymb},
 8952:                                              \%scantron_config,\%lettdig,$numletts,$randomorder,
 8953:                                              $randompick,\%respnumlookup,\%startline);
 8954:                 $studentrecord .= $recording;
 8955:             }
 8956:             if ($studentrecord ne $studentdata) {
 8957:                 &Apache::lonxml::clear_problem_counter();
 8958:                 if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
 8959:                                            \@mapresources,\%partids_by_symb,
 8960:                                            $bubbles_per_row,$randomorder,$randompick,
 8961:                                            \%respnumlookup,\%startline) 
 8962:                     eq 'ssi_error') {
 8963:                     $ssi_error = 0; # So end of handler error message does not trigger.
 8964:                     $r->print("</form>");
 8965:                     &ssi_print_error($r);
 8966:                     &Apache::lonnet::remove_lock($lock);
 8967:                     delete($completedstudents{$uname});
 8968:                     return '';
 8969:                 }
 8970:                 $counter = -1;
 8971:                 $studentrecord = '';
 8972:                 foreach my $resource (@mapresources) {
 8973:                     my $ressymb = $resource->symb();
 8974:                     ($counter,my $recording) =
 8975:                         &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
 8976:                                                  $counter,$studentdata,$partids_by_symb{$ressymb},
 8977:                                                  \%scantron_config,\%lettdig,$numletts,
 8978:                                                  $randomorder,$randompick,\%respnumlookup,
 8979:                                                  \%startline);
 8980:                     $studentrecord .= $recording;
 8981:                 }
 8982:                 if ($studentrecord ne $studentdata) {
 8983:                     $r->print('<p><span class="LC_warning">');
 8984:                     if ($scancode eq '') {
 8985:                         $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
 8986:                                   $uname.':'.$udom,$scan_record->{'scantron.ID'}));
 8987:                     } else {
 8988:                         $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
 8989:                                   $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
 8990:                     }
 8991:                     $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
 8992:                               &Apache::loncommon::start_data_table_header_row()."\n".
 8993:                               '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
 8994:                               &Apache::loncommon::end_data_table_header_row()."\n".
 8995:                               &Apache::loncommon::start_data_table_row().
 8996:                               '<td>'.&mt('Bubblesheet').'</td>'.
 8997:                               '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentdata.'</tt></span></td>'.
 8998:                               &Apache::loncommon::end_data_table_row().
 8999:                               &Apache::loncommon::start_data_table_row().
 9000:                               '<td>'.&mt('Stored submissions').'</td>'.
 9001:                               '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentrecord.'</tt></span></td>'."\n".
 9002:                               &Apache::loncommon::end_data_table_row().
 9003:                               &Apache::loncommon::end_data_table().'</p>');
 9004:                 } else {
 9005:                     $r->print('<br /><span class="LC_warning">'.
 9006:                              &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 />'.
 9007:                              &mt("As a consequence, this user's submission history records two tries.").
 9008:                                  '</span><br />');
 9009:                 }
 9010:             }
 9011:         }
 9012:         if (&Apache::loncommon::connection_aborted($r)) { last; }
 9013:     } continue {
 9014: 	&Apache::lonxml::clear_problem_counter();
 9015: 	&Apache::lonnet::delenv('scantron.');
 9016:     }
 9017:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 9018:     &Apache::lonnet::remove_lock($lock);
 9019: #    my $lasttime = &Time::HiRes::time()-$start;
 9020: #    $r->print("<p>took $lasttime</p>");
 9021: 
 9022:     $r->print("</form>");
 9023:     return '';
 9024: }
 9025: 
 9026: sub graders_resources_pass {
 9027:     my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
 9028:         $bubbles_per_row) = @_;
 9029:     if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) && 
 9030:         (ref($grader_randomlists_by_symb) eq 'HASH')) {
 9031:         foreach my $resource (@{$resources}) {
 9032:             my $ressymb = $resource->symb();
 9033:             my ($analysis,$parts) =
 9034:                 &scantron_partids_tograde($resource,$env{'request.course.id'},
 9035:                                           $env{'user.name'},$env{'user.domain'},
 9036:                                           1,$bubbles_per_row);
 9037:             $grader_partids_by_symb->{$ressymb} = $parts;
 9038:             if (ref($analysis) eq 'HASH') {
 9039:                 if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
 9040:                     $grader_randomlists_by_symb->{$ressymb} =
 9041:                         $analysis->{'parts_withrandomlist'};
 9042:                 }
 9043:             }
 9044:         }
 9045:     }
 9046:     return;
 9047: }
 9048: 
 9049: =pod
 9050: 
 9051: =item users_order
 9052: 
 9053:   Returns array of resources in current map, ordered based on either CODE,
 9054:   if this is a CODEd exam, or based on student's identity if this is a 
 9055:   "NAMEd" exam.
 9056: 
 9057:   Should be used when randomorder and/or randompick applied when the 
 9058:   corresponding exam was printed, prior to students completing bubblesheets 
 9059:   for the version of the exam the student received.
 9060: 
 9061: =cut
 9062: 
 9063: sub users_order  {
 9064:     my ($user,$scancode,$mapurl,$master_seq,$symb_to_resource,$orderedforcode) = @_;
 9065:     my @mapresources;
 9066:     unless ((ref($master_seq) eq 'ARRAY') && (ref($symb_to_resource) eq 'HASH')) {
 9067:         return @mapresources;
 9068:     }
 9069:     if ($scancode) {
 9070:         if ((ref($orderedforcode) eq 'HASH') && (ref($orderedforcode->{$scancode}) eq 'ARRAY')) {
 9071:             @mapresources = @{$orderedforcode->{$scancode}};
 9072:         } else {
 9073:             $env{'form.CODE'} = $scancode;
 9074:             my $actual_seq =
 9075:                 &Apache::lonprintout::master_seq_to_person_seq($mapurl,
 9076:                                                                $master_seq,
 9077:                                                                $user,$scancode,1);
 9078:             if (ref($actual_seq) eq 'ARRAY') {
 9079:                 @mapresources = map { $symb_to_resource->{$_}; } @{$actual_seq};
 9080:                 if (ref($orderedforcode) eq 'HASH') {
 9081:                     if (@mapresources > 0) { 
 9082:                         $orderedforcode->{$scancode} = \@mapresources;
 9083:                     }
 9084:                 }
 9085:             }
 9086:             delete($env{'form.CODE'});
 9087:         }
 9088:     } else {
 9089:         my $actual_seq =
 9090:             &Apache::lonprintout::master_seq_to_person_seq($mapurl,
 9091:                                                            $master_seq,
 9092:                                                            $user,undef,1);
 9093:         if (ref($actual_seq) eq 'ARRAY') {
 9094:             @mapresources = 
 9095:                 map { $symb_to_resource->{$_}; } @{$actual_seq};
 9096:         }
 9097:     }
 9098:     return @mapresources;
 9099: }
 9100: 
 9101: sub grade_student_bubbles {
 9102:     my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row,
 9103:         $randomorder,$randompick,$respnumlookup,$startline) = @_;
 9104:     my $uselookup = 0;
 9105:     if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH') &&
 9106:         (ref($startline) eq 'HASH')) {
 9107:         $uselookup = 1;
 9108:     }
 9109: 
 9110:     if (ref($resources) eq 'ARRAY') {
 9111:         my $count = 0;
 9112:         foreach my $resource (@{$resources}) {
 9113:             my $ressymb = $resource->symb();
 9114:             my %form = ('submitted'      => 'scantron',
 9115:                         'grade_target'   => 'grade',
 9116:                         'grade_username' => $uname,
 9117:                         'grade_domain'   => $udom,
 9118:                         'grade_courseid' => $env{'request.course.id'},
 9119:                         'grade_symb'     => $ressymb,
 9120:                         'CODE'           => $scancode
 9121:                        );
 9122:             if ($bubbles_per_row ne '') {
 9123:                 $form{'bubbles_per_row'} = $bubbles_per_row;
 9124:             }
 9125:             if ($env{'form.scantron_lastbubblepoints'} ne '') {
 9126:                 $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
 9127:             }
 9128:             if (ref($parts) eq 'HASH') {
 9129:                 if (ref($parts->{$ressymb}) eq 'ARRAY') {
 9130:                     foreach my $part (@{$parts->{$ressymb}}) {
 9131:                         if ($uselookup) {
 9132:                             $form{'scantron_questnum_start.'.$part} = $startline->{$count} + 1;
 9133:                         } else {
 9134:                             $form{'scantron_questnum_start.'.$part} =
 9135:                                 1+$env{'form.scantron.first_bubble_line.'.$count};
 9136:                         }
 9137:                         $count++;
 9138:                     }
 9139:                 }
 9140:             }
 9141:             my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
 9142:             return 'ssi_error' if ($ssi_error);
 9143:             last if (&Apache::loncommon::connection_aborted($r));
 9144:         }
 9145:     }
 9146:     return;
 9147: }
 9148: 
 9149: sub scantron_upload_scantron_data {
 9150:     my ($r,$symb)=@_;
 9151:     my $dom = $env{'request.role.domain'};
 9152:     my $domdesc = &Apache::lonnet::domain($dom,'description');
 9153:     $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
 9154:     my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
 9155: 							  'domainid',
 9156: 							  'coursename',$dom);
 9157:     my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
 9158:                        ('&nbsp'x2).&mt('(shows course personnel)'); 
 9159:     my $default_form_data=&defaultFormData($symb);
 9160:     my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
 9161:     &js_escape(\$nofile_alert);
 9162:     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.");
 9163:     &js_escape(\$nocourseid_alert);
 9164:     $r->print(&Apache::lonhtmlcommon::scripttag('
 9165:     function checkUpload(formname) {
 9166: 	if (formname.upfile.value == "") {
 9167: 	    alert("'.$nofile_alert.'");
 9168: 	    return false;
 9169: 	}
 9170:         if (formname.courseid.value == "") {
 9171:             alert("'.$nocourseid_alert.'");
 9172:             return false;
 9173:         }
 9174: 	formname.submit();
 9175:     }
 9176: 
 9177:     function ToSyllabus() {
 9178:         var cdom = '."'$dom'".';
 9179:         var cnum = document.rules.courseid.value;
 9180:         if (cdom == "" || cdom == null) {
 9181:             return;
 9182:         }
 9183:         if (cnum == "" || cnum == null) {
 9184:            return;
 9185:         }
 9186:         syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
 9187:                             "height=350,width=350,scrollbars=yes,menubar=no");
 9188:         return;
 9189:     }
 9190: 
 9191: '));
 9192:     $r->print('
 9193: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
 9194: 
 9195: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
 9196: '.$default_form_data.
 9197:   &Apache::lonhtmlcommon::start_pick_box().
 9198:   &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
 9199:   '<input name="courseid" type="text" size="30" />'.$select_link.
 9200:   &Apache::lonhtmlcommon::row_closure().
 9201:   &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
 9202:   '<input name="coursename" type="text" size="30" />'.$syllabuslink.
 9203:   &Apache::lonhtmlcommon::row_closure().
 9204:   &Apache::lonhtmlcommon::row_title(&mt('Domain')).
 9205:   '<input name="domainid" type="hidden" />'.$domdesc.
 9206:   &Apache::lonhtmlcommon::row_closure().
 9207:   &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
 9208:   '<input type="file" name="upfile" size="50" />'.
 9209:   &Apache::lonhtmlcommon::row_closure(1).
 9210:   &Apache::lonhtmlcommon::end_pick_box().'<br />
 9211: 
 9212: <input name="command" value="scantronupload_save" type="hidden" />
 9213: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
 9214: </form>
 9215: ');
 9216:     return '';
 9217: }
 9218: 
 9219: 
 9220: sub scantron_upload_scantron_data_save {
 9221:     my($r,$symb)=@_;
 9222:     my $doanotherupload=
 9223: 	'<br /><form action="/adm/grades" method="post">'."\n".
 9224: 	'<input type="hidden" name="command" value="scantronupload" />'."\n".
 9225: 	'<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
 9226: 	'</form>'."\n";
 9227:     if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
 9228: 	!&Apache::lonnet::allowed('usc',
 9229: 			    $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
 9230: 	$r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
 9231: 	unless ($symb) {
 9232: 	    $r->print($doanotherupload);
 9233: 	}
 9234: 	return '';
 9235:     }
 9236:     my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
 9237:     my $uploadedfile;
 9238:     $r->print('<p>'.&mt('Uploading file to [_1]','"'.$coursedata{'description'}.'"').'</p>');
 9239:     if (length($env{'form.upfile'}) < 2) {
 9240:         $r->print(
 9241:             &Apache::lonhtmlcommon::confirm_success(
 9242:                 &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
 9243:                         '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1));
 9244:     } else {
 9245:         my $result = 
 9246:             &Apache::lonnet::userfileupload('upfile','','scantron','','','',
 9247:                                             $env{'form.courseid'},$env{'form.domainid'});
 9248:         if ($result =~ m{^/uploaded/}) {
 9249:             $r->print(
 9250:                 &Apache::lonhtmlcommon::confirm_success(&mt('Upload successful')).'<br />'.
 9251:                 &mt('Uploaded [_1] bytes of data into location: [_2]',
 9252:                         (length($env{'form.upfile'})-1),
 9253:                         '<span class="LC_filename">'.$result.'</span>'));
 9254:             ($uploadedfile) = ($result =~ m{/([^/]+)$});
 9255:             $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
 9256:                                                        $env{'form.courseid'},$uploadedfile));
 9257:         } else {
 9258:             $r->print(
 9259:                 &Apache::lonhtmlcommon::confirm_success(&mt('Upload failed'),1).'<br />'.
 9260:                     &mt('An error ([_1]) occurred when attempting to upload the file: [_2]',
 9261:                           $result,
 9262: 			  '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
 9263: 	}
 9264:     }
 9265:     if ($symb) {
 9266: 	$r->print(&scantron_selectphase($r,$uploadedfile,$symb));
 9267:     } else {
 9268: 	$r->print($doanotherupload);
 9269:     }
 9270:     return '';
 9271: }
 9272: 
 9273: sub validate_uploaded_scantron_file {
 9274:     my ($cdom,$cname,$fname) = @_;
 9275:     my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
 9276:     my @lines;
 9277:     if ($scanlines ne '-1') {
 9278:         @lines=split("\n",$scanlines,-1);
 9279:     }
 9280:     my $output;
 9281:     if (@lines) {
 9282:         my (%counts,$max_match_format);
 9283:         my ($found_match_count,$max_match_count,$max_match_pct) = (0,0,0);
 9284:         my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
 9285:         my %idmap = &username_to_idmap($classlist);
 9286:         foreach my $key (keys(%idmap)) {
 9287:             my $lckey = lc($key);
 9288:             $idmap{$lckey} = $idmap{$key};
 9289:         }
 9290:         my %unique_formats;
 9291:         my @formatlines = &get_scantronformat_file();
 9292:         foreach my $line (@formatlines) {
 9293:             chomp($line);
 9294:             my @config = split(/:/,$line);
 9295:             my $idstart = $config[5];
 9296:             my $idlength = $config[6];
 9297:             if (($idstart ne '') && ($idlength > 0)) {
 9298:                 if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
 9299:                     push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]); 
 9300:                 } else {
 9301:                     $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
 9302:                 }
 9303:             }
 9304:         }
 9305:         foreach my $key (keys(%unique_formats)) {
 9306:             my ($idstart,$idlength) = split(':',$key);
 9307:             %{$counts{$key}} = (
 9308:                                'found'   => 0,
 9309:                                'total'   => 0,
 9310:                               );
 9311:             foreach my $line (@lines) {
 9312:                 next if ($line =~ /^#/);
 9313:                 next if ($line =~ /^[\s\cz]*$/);
 9314:                 my $id = substr($line,$idstart-1,$idlength);
 9315:                 $id = lc($id);
 9316:                 if (exists($idmap{$id})) {
 9317:                     $counts{$key}{'found'} ++;
 9318:                 }
 9319:                 $counts{$key}{'total'} ++;
 9320:             }
 9321:             if ($counts{$key}{'total'}) {
 9322:                 my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
 9323:                 if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
 9324:                     $max_match_pct = $percent_match;
 9325:                     $max_match_format = $key;
 9326:                     $found_match_count = $counts{$key}{'found'};
 9327:                     $max_match_count = $counts{$key}{'total'};
 9328:                 }
 9329:             }
 9330:         }
 9331:         if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
 9332:             my $format_descs;
 9333:             my $numwithformat = @{$unique_formats{$max_match_format}};
 9334:             for (my $i=0; $i<$numwithformat; $i++) {
 9335:                 my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
 9336:                 if ($i<$numwithformat-2) {
 9337:                     $format_descs .= '"<i>'.$desc.'</i>", ';
 9338:                 } elsif ($i==$numwithformat-2) {
 9339:                     $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
 9340:                 } elsif ($i==$numwithformat-1) {
 9341:                     $format_descs .= '"<i>'.$desc.'</i>"';
 9342:                 }
 9343:             }
 9344:             my $showpct = sprintf("%.0f",$max_match_pct).'%';
 9345:             $output .= '<br />';
 9346:             if ($found_match_count == $max_match_count) {
 9347:                 # 100% matching entries
 9348:                 $output .= &Apache::lonhtmlcommon::confirm_success(
 9349:                      &mt('Comparison of student IDs: [_1] matching ([quant,_2,entry,entries])',
 9350:                             '<b>'.$showpct.'</b>',$found_match_count)).'<br />'.
 9351:                 &mt('Comparison of student IDs in the uploaded file with'.
 9352:                     ' the course roster found matches for [_1] of the [_2] entries'.
 9353:                     ' in the file (for the format defined for [_3]).',
 9354:                         '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs);
 9355:             } else {
 9356:                 # Not all entries matching? -> Show warning and additional info
 9357:                 $output .=
 9358:                     &Apache::lonhtmlcommon::confirm_success(
 9359:                         &mt('Comparison of student IDs: [_1] matching ([_2]/[quant,_3,entry,entries])',
 9360:                                 '<b>'.$showpct.'</b>',$found_match_count,$max_match_count).'<br />'.
 9361:                         &mt('Not all entries could be matched!'),1).'<br />'.
 9362:                     &mt('Comparison of student IDs in the uploaded file with'.
 9363:                         ' the course roster found matches for [_1] of the [_2] entries'.
 9364:                         ' in the file (for the format defined for [_3]).',
 9365:                             '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs).
 9366:                     '<p class="LC_info">'.
 9367:                     &mt('A low percentage of matches results from one of the following:').
 9368:                     '</p><ul>'.
 9369:                     '<li>'.&mt('The file was uploaded to the wrong course.').'</li>'.
 9370:                     '<li>'.&mt('The data is not in the format expected for the domain: [_1]',
 9371:                                '<i>'.$cdom.'</i>').'</li>'.
 9372:                     '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
 9373:                     '<li>'.&mt('The course roster is not up to date.').'</li>'.
 9374:                     '</ul>';
 9375:             }
 9376:         }
 9377:     } else {
 9378:         $output = '<p class="LC_warning">'.&mt('Uploaded file contained no data').'</p>';
 9379:     }
 9380:     return $output;
 9381: }
 9382: 
 9383: sub valid_file {
 9384:     my ($requested_file)=@_;
 9385:     foreach my $filename (sort(&scantron_filenames())) {
 9386: 	if ($requested_file eq $filename) { return 1; }
 9387:     }
 9388:     return 0;
 9389: }
 9390: 
 9391: sub scantron_download_scantron_data {
 9392:     my ($r,$symb)=@_;
 9393:     my $default_form_data=&defaultFormData($symb);
 9394:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 9395:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 9396:     my $file=$env{'form.scantron_selectfile'};
 9397:     if (! &valid_file($file)) {
 9398: 	$r->print('
 9399: 	<p>
 9400: 	    '.&mt('The requested filename was invalid.').'
 9401:         </p>
 9402: ');
 9403: 	return;
 9404:     }
 9405:     my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
 9406:     my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
 9407:     my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
 9408:     &Apache::lonnet::allowuploaded('/adm/grades',$orig);
 9409:     &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
 9410:     &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
 9411:     $r->print('
 9412:     <p>
 9413: 	'.&mt('[_1]Original[_2] file as uploaded by the bubblesheet scanning office.',
 9414: 	      '<a href="'.$orig.'">','</a>').'
 9415:     </p>
 9416:     <p>
 9417: 	'.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
 9418: 	      '<a href="'.$corrected.'">','</a>').'
 9419:     </p>
 9420:     <p>
 9421: 	'.&mt('[_1]Skipped[_2], a file of records that were skipped.',
 9422: 	      '<a href="'.$skipped.'">','</a>').'
 9423:     </p>
 9424: ');
 9425:     return '';
 9426: }
 9427: 
 9428: sub checkscantron_results {
 9429:     my ($r,$symb) = @_;
 9430:     if (!$symb) {return '';}
 9431:     my $cid = $env{'request.course.id'};
 9432:     my %lettdig = &letter_to_digits();
 9433:     my $numletts = scalar(keys(%lettdig));
 9434:     my $cnum = $env{'course.'.$cid.'.num'};
 9435:     my $cdom = $env{'course.'.$cid.'.domain'};
 9436:     my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
 9437:     my %record;
 9438:     my %scantron_config =
 9439:         &Apache::grades::get_scantron_config($env{'form.scantron_format'});
 9440:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
 9441:     my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
 9442:     my $classlist=&Apache::loncoursedata::get_classlist();
 9443:     my %idmap=&Apache::grades::username_to_idmap($classlist);
 9444:     my $navmap=Apache::lonnavmaps::navmap->new();
 9445:     unless (ref($navmap)) {
 9446:         $r->print(&navmap_errormsg());
 9447:         return '';
 9448:     }
 9449:     my $map=$navmap->getResourceByUrl($sequence);
 9450:     my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
 9451:         %grader_randomlists_by_symb,%orderedforcode);
 9452:     if (ref($map)) { 
 9453:         $randomorder=$map->randomorder();
 9454:         $randompick=$map->randompick();
 9455:     }
 9456:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
 9457:     my $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
 9458:     if ($nav_error) {
 9459:         $r->print(&navmap_errormsg());
 9460:         return '';
 9461:     }
 9462:     &graders_resources_pass(\@resources,\%grader_partids_by_symb,
 9463:                             \%grader_randomlists_by_symb,$bubbles_per_row);
 9464:     my ($uname,$udom);
 9465:     my (%scandata,%lastname,%bylast);
 9466:     $r->print('
 9467: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
 9468: 
 9469:     my @delayqueue;
 9470:     my %completedstudents;
 9471: 
 9472:     my $count=&get_todo_count($scanlines,$scan_data);
 9473:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
 9474:     my ($username,$domain,$started);
 9475:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
 9476:     if ($nav_error) {
 9477:         $r->print(&navmap_errormsg());
 9478:         return '';
 9479:     }
 9480: 
 9481:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
 9482:     my $start=&Time::HiRes::time();
 9483:     my $i=-1;
 9484: 
 9485:     while ($i<$scanlines->{'count'}) {
 9486:         ($username,$domain,$uname)=('','','');
 9487:         $i++;
 9488:         my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
 9489:         if ($line=~/^[\s\cz]*$/) { next; }
 9490:         if ($started) {
 9491:             &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
 9492:         }
 9493:         $started=1;
 9494:         my $scan_record=
 9495:             &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
 9496:                                                      $scan_data);
 9497:         unless ($uname=&scantron_find_student($scan_record,$scan_data,
 9498:                                               \%idmap,$i)) {
 9499:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
 9500:                                 'Unable to find a student that matches',1);
 9501:             next;
 9502:         }
 9503:         if (exists $completedstudents{$uname}) {
 9504:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
 9505:                                 'Student '.$uname.' has multiple sheets',2);
 9506:             next;
 9507:         }
 9508:         my $pid = $scan_record->{'scantron.ID'};
 9509:         $lastname{$pid} = $scan_record->{'scantron.LastName'};
 9510:         push(@{$bylast{$lastname{$pid}}},$pid);
 9511:         my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
 9512:         my $user = $uname.':'.$usec;
 9513:         ($username,$domain)=split(/:/,$uname);
 9514: 
 9515:         my $scancode;
 9516:         if ((exists($scan_record->{'scantron.CODE'})) &&
 9517:             (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
 9518:             $scancode = $scan_record->{'scantron.CODE'};
 9519:         } else {
 9520:             $scancode = '';
 9521:         }
 9522: 
 9523:         my @mapresources = @resources;
 9524:         my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
 9525:         my %respnumlookup=();
 9526:         my %startline=();
 9527:         if ($randomorder || $randompick) {
 9528:             @mapresources =
 9529:                 &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
 9530:                              \%orderedforcode);
 9531:             my $total = &get_respnum_lookups($sequence,$scan_data,\%idmap,$line,
 9532:                                              $scan_record,\@master_seq,\%symb_to_resource,
 9533:                                              \%grader_partids_by_symb,\%orderedforcode,
 9534:                                              \%respnumlookup,\%startline);
 9535:             if ($randompick && $total) {
 9536:                 $lastpos = $total*$scantron_config{'Qlength'};
 9537:             }
 9538:         }
 9539:         $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
 9540:         chomp($scandata{$pid});
 9541:         $scandata{$pid} =~ s/\r$//;
 9542: 
 9543:         my $counter = -1;
 9544:         foreach my $resource (@mapresources) {
 9545:             my $parts;
 9546:             my $ressymb = $resource->symb();
 9547:             if ((exists($grader_randomlists_by_symb{$ressymb})) ||
 9548:                 (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
 9549:                 my $currcode;
 9550:                 if (exists($grader_randomlists_by_symb{$ressymb})) {
 9551:                     $currcode = $scancode;
 9552:                 }
 9553:                 (my $analysis,$parts) =
 9554:                     &scantron_partids_tograde($resource,$env{'request.course.id'},
 9555:                                               $username,$domain,undef,
 9556:                                               $bubbles_per_row,$currcode);
 9557:             } else {
 9558:                 $parts = $grader_partids_by_symb{$ressymb};
 9559:             }
 9560:             ($counter,my $recording) =
 9561:                 &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
 9562:                                          $scandata{$pid},$parts,
 9563:                                          \%scantron_config,\%lettdig,$numletts,
 9564:                                          $randomorder,$randompick,
 9565:                                          \%respnumlookup,\%startline);
 9566:             $record{$pid} .= $recording;
 9567:         }
 9568:     }
 9569:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
 9570:     $r->print('<br />');
 9571:     my ($okstudents,$badstudents,$numstudents,$passed,$failed);
 9572:     $passed = 0;
 9573:     $failed = 0;
 9574:     $numstudents = 0;
 9575:     foreach my $last (sort(keys(%bylast))) {
 9576:         if (ref($bylast{$last}) eq 'ARRAY') {
 9577:             foreach my $pid (sort(@{$bylast{$last}})) {
 9578:                 my $showscandata = $scandata{$pid};
 9579:                 my $showrecord = $record{$pid};
 9580:                 $showscandata =~ s/\s/&nbsp;/g;
 9581:                 $showrecord =~ s/\s/&nbsp;/g;
 9582:                 if ($scandata{$pid} eq $record{$pid}) {
 9583:                     my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
 9584:                     $okstudents .= '<tr class="'.$css_class.'">'.
 9585: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
 9586: '</tr>'."\n".
 9587: '<tr class="'.$css_class.'">'."\n".
 9588: '<td>'.&mt('Submissions').'</td><td>'.$showrecord.'</td></tr>'."\n";
 9589:                     $passed ++;
 9590:                 } else {
 9591:                     my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
 9592:                     $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".
 9593: '</tr>'."\n".
 9594: '<tr class="'.$css_class.'">'."\n".
 9595: '<td>'.&mt('Submissions').'</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
 9596: '</tr>'."\n";
 9597:                     $failed ++;
 9598:                 }
 9599:                 $numstudents ++;
 9600:             }
 9601:         }
 9602:     }
 9603:     $r->print(
 9604:         '<p>'
 9605:        .&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).',
 9606:             '<b>',
 9607:             $numstudents,
 9608:             '</b>',
 9609:             $env{'form.scantron_maxbubble'})
 9610:        .'</p>'
 9611:     );
 9612:     $r->print('<p>'
 9613:              .&mt('Exact matches for [_1][quant,_2,student][_3].','<b>',$passed,'</b>')
 9614:              .'<br />'
 9615:              .&mt('Discrepancies detected for [_1][quant,_2,student][_3].','<b>',$failed,'</b>')
 9616:              .'</p>'
 9617:     );
 9618:     if ($passed) {
 9619:         $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
 9620:         $r->print(&Apache::loncommon::start_data_table()."\n".
 9621:                  &Apache::loncommon::start_data_table_header_row()."\n".
 9622:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
 9623:                  &Apache::loncommon::end_data_table_header_row()."\n".
 9624:                  $okstudents."\n".
 9625:                  &Apache::loncommon::end_data_table().'<br />');
 9626:     }
 9627:     if ($failed) {
 9628:         $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
 9629:         $r->print(&Apache::loncommon::start_data_table()."\n".
 9630:                  &Apache::loncommon::start_data_table_header_row()."\n".
 9631:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
 9632:                  &Apache::loncommon::end_data_table_header_row()."\n".
 9633:                  $badstudents."\n".
 9634:                  &Apache::loncommon::end_data_table()).'<br />'.
 9635:                  &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.');  
 9636:     }
 9637:     $r->print('</form><br />');
 9638:     return;
 9639: }
 9640: 
 9641: sub verify_scantron_grading {
 9642:     my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
 9643:         $scantron_config,$lettdig,$numletts,$randomorder,$randompick,
 9644:         $respnumlookup,$startline) = @_;
 9645:     my ($record,%expected,%startpos);
 9646:     return ($counter,$record) if (!ref($resource));
 9647:     return ($counter,$record) if (!$resource->is_problem());
 9648:     my $symb = $resource->symb();
 9649:     return ($counter,$record) if (ref($partids) ne 'ARRAY');
 9650:     foreach my $part_id (@{$partids}) {
 9651:         $counter ++;
 9652:         $expected{$part_id} = 0;
 9653:         my $respnum = $counter;
 9654:         if ($randomorder || $randompick) {
 9655:             $respnum = $respnumlookup->{$counter};
 9656:             $startpos{$part_id} = $startline->{$counter} + 1;
 9657:         } else {
 9658:             $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
 9659:         }
 9660:         if ($env{"form.scantron.sub_bubblelines.$respnum"}) {
 9661:             my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$respnum"});
 9662:             foreach my $item (@sub_lines) {
 9663:                 $expected{$part_id} += $item;
 9664:             }
 9665:         } else {
 9666:             $expected{$part_id} = $env{"form.scantron.bubblelines.$respnum"};
 9667:         }
 9668:     }
 9669:     if ($symb) {
 9670:         my %recorded;
 9671:         my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
 9672:         if ($returnhash{'version'}) {
 9673:             my %lasthash=();
 9674:             my $version;
 9675:             for ($version=1;$version<=$returnhash{'version'};$version++) {
 9676:                 foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
 9677:                     $lasthash{$key}=$returnhash{$version.':'.$key};
 9678:                 }
 9679:             }
 9680:             foreach my $key (keys(%lasthash)) {
 9681:                 if ($key =~ /\.scantron$/) {
 9682:                     my $value = &unescape($lasthash{$key});
 9683:                     my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
 9684:                     if ($value eq '') {
 9685:                         for (my $i=0; $i<$expected{$part_id}; $i++) {
 9686:                             for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
 9687:                                 $recorded{$part_id} .= $scantron_config->{'Qoff'};
 9688:                             }
 9689:                         }
 9690:                     } else {
 9691:                         my @tocheck;
 9692:                         my @items = split(//,$value);
 9693:                         if (($scantron_config->{'Qon'} eq 'letter') ||
 9694:                             ($scantron_config->{'Qon'} eq 'number')) {
 9695:                             if (@items < $expected{$part_id}) {
 9696:                                 my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
 9697:                                 my @singles = split(//,$fragment);
 9698:                                 foreach my $pos (@singles) {
 9699:                                     if ($pos eq ' ') {
 9700:                                         push(@tocheck,$pos);
 9701:                                     } else {
 9702:                                         my $next = shift(@items);
 9703:                                         push(@tocheck,$next);
 9704:                                     }
 9705:                                 }
 9706:                             } else {
 9707:                                 @tocheck = @items;
 9708:                             }
 9709:                             foreach my $letter (@tocheck) {
 9710:                                 if ($scantron_config->{'Qon'} eq 'letter') {
 9711:                                     if ($letter !~ /^[A-J]$/) {
 9712:                                         $letter = $scantron_config->{'Qoff'};
 9713:                                     }
 9714:                                     $recorded{$part_id} .= $letter;
 9715:                                 } elsif ($scantron_config->{'Qon'} eq 'number') {
 9716:                                     my $digit;
 9717:                                     if ($letter !~ /^[A-J]$/) {
 9718:                                         $digit = $scantron_config->{'Qoff'};
 9719:                                     } else {
 9720:                                         $digit = $lettdig->{$letter};
 9721:                                     }
 9722:                                     $recorded{$part_id} .= $digit;
 9723:                                 }
 9724:                             }
 9725:                         } else {
 9726:                             @tocheck = @items;
 9727:                             for (my $i=0; $i<$expected{$part_id}; $i++) {
 9728:                                 my $curr_sub = shift(@tocheck);
 9729:                                 my $digit;
 9730:                                 if ($curr_sub =~ /^[A-J]$/) {
 9731:                                     $digit = $lettdig->{$curr_sub}-1;
 9732:                                 }
 9733:                                 if ($curr_sub eq 'J') {
 9734:                                     $digit += scalar($numletts);
 9735:                                 }
 9736:                                 for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
 9737:                                     if ($j == $digit) {
 9738:                                         $recorded{$part_id} .= $scantron_config->{'Qon'};
 9739:                                     } else {
 9740:                                         $recorded{$part_id} .= $scantron_config->{'Qoff'};
 9741:                                     }
 9742:                                 }
 9743:                             }
 9744:                         }
 9745:                     }
 9746:                 }
 9747:             }
 9748:         }
 9749:         foreach my $part_id (@{$partids}) {
 9750:             if ($recorded{$part_id} eq '') {
 9751:                 for (my $i=0; $i<$expected{$part_id}; $i++) {
 9752:                     for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
 9753:                         $recorded{$part_id} .= $scantron_config->{'Qoff'};
 9754:                     }
 9755:                 }
 9756:             }
 9757:             $record .= $recorded{$part_id};
 9758:         }
 9759:     }
 9760:     return ($counter,$record);
 9761: }
 9762: 
 9763: sub letter_to_digits {
 9764:     my %lettdig = (
 9765:                     A => 1,
 9766:                     B => 2,
 9767:                     C => 3,
 9768:                     D => 4,
 9769:                     E => 5,
 9770:                     F => 6,
 9771:                     G => 7,
 9772:                     H => 8,
 9773:                     I => 9,
 9774:                     J => 0,
 9775:                   );
 9776:     return %lettdig;
 9777: }
 9778: 
 9779: 
 9780: #-------- end of section for handling grading scantron forms -------
 9781: #
 9782: #-------------------------------------------------------------------
 9783: 
 9784: #-------------------------- Menu interface -------------------------
 9785: #
 9786: #--- Href with symb and command ---
 9787: 
 9788: sub href_symb_cmd {
 9789:     my ($symb,$cmd)=@_;
 9790:     return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&amp;command='.$cmd;
 9791: }
 9792: 
 9793: sub grading_menu {
 9794:     my ($request,$symb) = @_;
 9795:     if (!$symb) {return '';}
 9796: 
 9797:     my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
 9798:                   'command'=>'individual');
 9799:     
 9800:     my $url1a = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9801: 
 9802:     $fields{'command'}='ungraded';
 9803:     my $url1b=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9804: 
 9805:     $fields{'command'}='table';
 9806:     my $url1c=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9807: 
 9808:     $fields{'command'}='all_for_one';
 9809:     my $url1d=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9810: 
 9811:     $fields{'command'}='downloadfilesselect';
 9812:     my $url1e=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9813: 
 9814:     $fields{'command'} = 'csvform';
 9815:     my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9816:     
 9817:     $fields{'command'} = 'processclicker';
 9818:     my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9819:     
 9820:     $fields{'command'} = 'scantron_selectphase';
 9821:     my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9822: 
 9823:     $fields{'command'} = 'initialverifyreceipt';
 9824:     my $url5 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
 9825:     
 9826:     my @menu = ({	categorytitle=>'Hand Grading',
 9827:             items =>[
 9828:                         {	linktext => 'Select individual students to grade',
 9829:                     		url => $url1a,
 9830:                     		permission => 'F',
 9831:                     		icon => 'grade_students.png',
 9832:                     		linktitle => 'Grade current resource for a selection of students.'
 9833:                         }, 
 9834:                         {       linktext => 'Grade ungraded submissions.',
 9835:                                 url => $url1b,
 9836:                                 permission => 'F',
 9837:                                 icon => 'ungrade_sub.png',
 9838:                                 linktitle => 'Grade all submissions that have not been graded yet.'
 9839:                         },
 9840: 
 9841:                         {       linktext => 'Grading table',
 9842:                                 url => $url1c,
 9843:                                 permission => 'F',
 9844:                                 icon => 'grading_table.png',
 9845:                                 linktitle => 'Grade current resource for all students.'
 9846:                         },
 9847:                         {       linktext => 'Grade page/folder for one student',
 9848:                                 url => $url1d,
 9849:                                 permission => 'F',
 9850:                                 icon => 'grade_PageFolder.png',
 9851:                                 linktitle => 'Grade all resources in current page/sequence/folder for one student.'
 9852:                         },
 9853:                         {       linktext => 'Download submissions',
 9854:                                 url => $url1e,
 9855:                                 permission => 'F',
 9856:                                 icon => 'download_sub.png',
 9857:                                 linktitle => 'Download all students submissions.'
 9858:                         }]},
 9859:                          { categorytitle=>'Automated Grading',
 9860:                items =>[
 9861: 
 9862:                 	    {	linktext => 'Upload Scores',
 9863:                     		url => $url2,
 9864:                     		permission => 'F',
 9865:                     		icon => 'uploadscores.png',
 9866:                     		linktitle => 'Specify a file containing the class scores for current resource.'
 9867:                 	    },
 9868:                 	    {	linktext => 'Process Clicker',
 9869:                     		url => $url3,
 9870:                     		permission => 'F',
 9871:                     		icon => 'addClickerInfoFile.png',
 9872:                     		linktitle => 'Specify a file containing the clicker information for this resource.'
 9873:                 	    },
 9874:                 	    {	linktext => 'Grade/Manage/Review Bubblesheets',
 9875:                     		url => $url4,
 9876:                     		permission => 'F',
 9877:                     		icon => 'bubblesheet.png',
 9878:                     		linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
 9879:                 	    },
 9880:                             {   linktext => 'Verify Receipt Number',
 9881:                                 url => $url5,
 9882:                                 permission => 'F',
 9883:                                 icon => 'receipt_number.png',
 9884:                                 linktitle => 'Verify a system-generated receipt number for correct problem solution.'
 9885:                             }
 9886: 
 9887:                     ]
 9888:             });
 9889: 
 9890:     # Create the menu
 9891:     my $Str;
 9892:     $Str .= '<form method="post" action="" name="gradingMenu">';
 9893:     $Str .= '<input type="hidden" name="command" value="" />'.
 9894:     	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9895: 
 9896:     $Str .= &Apache::lonhtmlcommon::generate_menu(@menu);
 9897:     return $Str;    
 9898: }
 9899: 
 9900: 
 9901: sub ungraded {
 9902:     my ($request)=@_;
 9903:     &submit_options($request);
 9904: }
 9905: 
 9906: sub submit_options_sequence {
 9907:     my ($request,$symb) = @_;
 9908:     if (!$symb) {return '';}
 9909:     &commonJSfunctions($request);
 9910:     my $result;
 9911: 
 9912:     $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.=&selectfield(0).
 9915:             '<input type="hidden" name="command" value="pickStudentPage" />
 9916:             <div>
 9917:               <input type="submit" value="'.&mt('Next').' &rarr;" />
 9918:             </div>
 9919:         </div>
 9920:   </form>';
 9921:     return $result;
 9922: }
 9923: 
 9924: sub submit_options_table {
 9925:     my ($request,$symb) = @_;
 9926:     if (!$symb) {return '';}
 9927:     &commonJSfunctions($request);
 9928:     my $is_tool = ($symb =~ /ext\.tool$/);
 9929:     my $result;
 9930: 
 9931:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 9932:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9933: 
 9934:     $result.=&selectfield(1,$is_tool).
 9935:             '<input type="hidden" name="command" value="viewgrades" />
 9936:             <div>
 9937:               <input type="submit" value="'.&mt('Next').' &rarr;" />
 9938:             </div>
 9939:         </div>
 9940:   </form>';
 9941:     return $result;
 9942: }
 9943: 
 9944: sub submit_options_download {
 9945:     my ($request,$symb) = @_;
 9946:     if (!$symb) {return '';}
 9947: 
 9948:     my $is_tool = ($symb =~ /ext\.tool$/);
 9949:     &commonJSfunctions($request);
 9950: 
 9951:     my $result='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 9952:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9953:     $result.='
 9954: <h2>
 9955:   '.&mt('Select Students for whom to Download Submissions').'
 9956: </h2>'.&selectfield(1,$is_tool).'
 9957:                 <input type="hidden" name="command" value="downloadfileslink" /> 
 9958:               <input type="submit" value="'.&mt('Next').' &rarr;" />
 9959:             </div>
 9960:           </div>
 9961: 
 9962: 
 9963:   </form>';
 9964:     return $result;
 9965: }
 9966: 
 9967: #--- Displays the submissions first page -------
 9968: sub submit_options {
 9969:     my ($request,$symb) = @_;
 9970:     if (!$symb) {return '';}
 9971: 
 9972:     my $is_tool = ($symb =~ /ext\.tool$/);
 9973:     &commonJSfunctions($request);
 9974:     my $result;
 9975: 
 9976:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
 9977: 	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
 9978:     $result.=&selectfield(1,$is_tool).'
 9979:                 <input type="hidden" name="command" value="submission" /> 
 9980: 	      <input type="submit" value="'.&mt('Next').' &rarr;" />
 9981:             </div>
 9982:           </div>
 9983: 
 9984: 
 9985:   </form>';
 9986:     return $result;
 9987: }
 9988: 
 9989: sub selectfield {
 9990:    my ($full,$is_tool)=@_;
 9991:    my %options;
 9992:    if ($is_tool) {
 9993:        %options =
 9994:            (&transtatus_options,
 9995:             'select_form_order' => ['yes','incorrect','all']);
 9996:    } else {
 9997:        %options = 
 9998:            (&substatus_options,
 9999:             'select_form_order' => ['yes','queued','graded','incorrect','all']);
10000:    }
10001:    my $result='<div class="LC_columnSection">
10002:   
10003:     <fieldset>
10004:       <legend>
10005:        '.&mt('Sections').'
10006:       </legend>
10007:       '.&Apache::lonstatistics::SectionSelect('section','multiple',5).'
10008:     </fieldset>
10009:   
10010:     <fieldset>
10011:       <legend>
10012:         '.&mt('Groups').'
10013:       </legend>
10014:       '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
10015:     </fieldset>
10016:   
10017:     <fieldset>
10018:       <legend>
10019:         '.&mt('Access Status').'
10020:       </legend>
10021:       '.&Apache::lonhtmlcommon::StatusOptions(undef,undef,5,undef,'mult').'
10022:     </fieldset>';
10023:     if ($full) {
10024:         my $heading = &mt('Submission Status');
10025:         if ($is_tool) {
10026:             $heading = &mt('Transaction Status');
10027:         }
10028:         $result.='
10029:     <fieldset>
10030:       <legend>
10031:         '.$heading.'
10032:       </legend>'.
10033:        &Apache::loncommon::select_form('all','submitonly',\%options).
10034:    '</fieldset>';
10035:     }
10036:     $result.='</div><br />';
10037:     return $result;
10038: }
10039: 
10040: sub substatus_options {
10041:     return &Apache::lonlocal::texthash(
10042:                                       'yes'       => 'with submissions',
10043:                                       'queued'    => 'in grading queue',
10044:                                       'graded'    => 'with ungraded submissions',
10045:                                       'incorrect' => 'with incorrect submissions',
10046:                                       'all'       => 'with any status',
10047:                                       );
10048: }
10049: 
10050: sub transtatus_options {
10051:     return &Apache::lonlocal::texthash(
10052:                                        'yes'       => 'with score transactions',
10053:                                        'incorrect' => 'with less than full credit',
10054:                                        'all'       => 'with any status',
10055:                                       );
10056: }
10057: 
10058: sub reset_perm {
10059:     undef(%perm);
10060: }
10061: 
10062: sub init_perm {
10063:     &reset_perm();
10064:     foreach my $test_perm ('vgr','mgr','opa') {
10065: 
10066: 	my $scope = $env{'request.course.id'};
10067: 	if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
10068: 
10069: 	    $scope .= '/'.$env{'request.course.sec'};
10070: 	    if ( $perm{$test_perm}=
10071: 		 &Apache::lonnet::allowed($test_perm,$scope)) {
10072: 		$perm{$test_perm.'_section'}=$env{'request.course.sec'};
10073: 	    } else {
10074: 		delete($perm{$test_perm});
10075: 	    }
10076: 	}
10077:     }
10078: }
10079: 
10080: sub init_old_essays {
10081:     my ($symb,$apath,$adom,$aname) = @_;
10082:     if ($symb ne '') {
10083:         my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
10084:         if (keys(%essays) > 0) {
10085:             $old_essays{$symb} = \%essays;
10086:         }
10087:     }
10088:     return;
10089: }
10090: 
10091: sub reset_old_essays {
10092:     undef(%old_essays);
10093: }
10094: 
10095: sub gather_clicker_ids {
10096:     my %clicker_ids;
10097: 
10098:     my $classlist = &Apache::loncoursedata::get_classlist();
10099: 
10100:     # Set up a couple variables.
10101:     my $username_idx = &Apache::loncoursedata::CL_SNAME();
10102:     my $domain_idx   = &Apache::loncoursedata::CL_SDOM();
10103:     my $status_idx   = &Apache::loncoursedata::CL_STATUS();
10104: 
10105:     foreach my $student (keys(%$classlist)) {
10106:         if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
10107:         my $username = $classlist->{$student}->[$username_idx];
10108:         my $domain   = $classlist->{$student}->[$domain_idx];
10109:         my $clickers =
10110: 	    (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
10111:         foreach my $id (split(/\,/,$clickers)) {
10112:             $id=~s/^[\#0]+//;
10113:             $id=~s/[\-\:]//g;
10114:             if (exists($clicker_ids{$id})) {
10115: 		$clicker_ids{$id}.=','.$username.':'.$domain;
10116:             } else {
10117: 		$clicker_ids{$id}=$username.':'.$domain;
10118:             }
10119:         }
10120:     }
10121:     return %clicker_ids;
10122: }
10123: 
10124: sub gather_adv_clicker_ids {
10125:     my %clicker_ids;
10126:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
10127:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
10128:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
10129:     foreach my $element (sort(keys(%coursepersonnel))) {
10130:         foreach my $person (split(/\,/,$coursepersonnel{$element})) {
10131:             my ($puname,$pudom)=split(/\:/,$person);
10132:             my $clickers =
10133: 		(&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
10134:             foreach my $id (split(/\,/,$clickers)) {
10135: 		$id=~s/^[\#0]+//;
10136:                 $id=~s/[\-\:]//g;
10137: 		if (exists($clicker_ids{$id})) {
10138: 		    $clicker_ids{$id}.=','.$puname.':'.$pudom;
10139: 		} else {
10140: 		    $clicker_ids{$id}=$puname.':'.$pudom;
10141: 		}
10142:             }
10143:         }
10144:     }
10145:     return %clicker_ids;
10146: }
10147: 
10148: sub clicker_grading_parameters {
10149:     return ('gradingmechanism' => 'scalar',
10150:             'upfiletype' => 'scalar',
10151:             'specificid' => 'scalar',
10152:             'pcorrect' => 'scalar',
10153:             'pincorrect' => 'scalar');
10154: }
10155: 
10156: sub process_clicker {
10157:     my ($r,$symb)=@_;
10158:     if (!$symb) {return '';}
10159:     my $result=&checkforfile_js();
10160:     $result.=&Apache::loncommon::start_data_table().
10161:              &Apache::loncommon::start_data_table_header_row().
10162:              '<th>'.&mt('Specify a file containing clicker information and set grading options.').'</th>'.
10163:              &Apache::loncommon::end_data_table_header_row().
10164:              &Apache::loncommon::start_data_table_row()."<td>\n";
10165: # Attempt to restore parameters from last session, set defaults if not present
10166:     my %Saveable_Parameters=&clicker_grading_parameters();
10167:     &Apache::loncommon::restore_course_settings('grades_clicker',
10168:                                                  \%Saveable_Parameters);
10169:     if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
10170:     if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
10171:     if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
10172:     if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
10173: 
10174:     my %checked;
10175:     foreach my $gradingmechanism ('attendance','personnel','specific','given') {
10176:        if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
10177:           $checked{$gradingmechanism}=' checked="checked"';
10178:        }
10179:     }
10180: 
10181:     my $upload=&mt("Evaluate File");
10182:     my $type=&mt("Type");
10183:     my $attendance=&mt("Award points just for participation");
10184:     my $personnel=&mt("Correctness determined from response by course personnel");
10185:     my $specific=&mt("Correctness determined from response with clicker ID(s)"); 
10186:     my $given=&mt("Correctness determined from given list of answers").' '.
10187:               '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
10188:     my $pcorrect=&mt("Percentage points for correct solution");
10189:     my $pincorrect=&mt("Percentage points for incorrect solution");
10190:     my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
10191: 						   {'iclicker' => 'i>clicker',
10192:                                                     'interwrite' => 'interwrite PRS',
10193:                                                     'turning' => 'Turning Technologies'});
10194:     $symb = &Apache::lonenc::check_encrypt($symb);
10195:     $result.= &Apache::lonhtmlcommon::scripttag(<<ENDUPFORM);
10196: function sanitycheck() {
10197: // Accept only integer percentages
10198:    document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
10199:    document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
10200: // Find out grading choice
10201:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
10202:       if (document.forms.gradesupload.gradingmechanism[i].checked) {
10203:          gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
10204:       }
10205:    }
10206: // By default, new choice equals user selection
10207:    newgradingchoice=gradingchoice;
10208: // Not good to give more points for false answers than correct ones
10209:    if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
10210:       document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
10211:    }
10212: // If new choice is attendance only, and old choice was correctness-based, restore defaults
10213:    if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
10214:       document.forms.gradesupload.pcorrect.value=100;
10215:       document.forms.gradesupload.pincorrect.value=100;
10216:    }
10217: // If the values are different, cannot be attendance only
10218:    if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
10219:        (gradingchoice=='attendance')) {
10220:        newgradingchoice='personnel';
10221:    }
10222: // Change grading choice to new one
10223:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
10224:       if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
10225:          document.forms.gradesupload.gradingmechanism[i].checked=true;
10226:       } else {
10227:          document.forms.gradesupload.gradingmechanism[i].checked=false;
10228:       }
10229:    }
10230: // Remember the old state
10231:    document.forms.gradesupload.waschecked.value=newgradingchoice;
10232: }
10233: ENDUPFORM
10234:     $result.= <<ENDUPFORM;
10235: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
10236: <input type="hidden" name="symb" value="$symb" />
10237: <input type="hidden" name="command" value="processclickerfile" />
10238: <input type="file" name="upfile" size="50" />
10239: <br /><label>$type: $selectform</label>
10240: ENDUPFORM
10241:     $result.='</td>'.&Apache::loncommon::end_data_table_row().
10242:                      &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDGRADINGFORM);
10243:       <label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
10244: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
10245: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
10246: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
10247: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
10248: <br />&nbsp;&nbsp;&nbsp;
10249: <input type="text" name="givenanswer" size="50" />
10250: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
10251: ENDGRADINGFORM
10252:          $result.='</td>'.&Apache::loncommon::end_data_table_row().
10253:                      &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDPERCFORM);
10254:       <label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
10255: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
10256: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
10257: </form>'
10258: ENDPERCFORM
10259:     $result.='</td>'.
10260:              &Apache::loncommon::end_data_table_row().
10261:              &Apache::loncommon::end_data_table();
10262:     return $result;
10263: }
10264: 
10265: sub process_clicker_file {
10266:     my ($r,$symb)=@_;
10267:     if (!$symb) {return '';}
10268: 
10269:     my %Saveable_Parameters=&clicker_grading_parameters();
10270:     &Apache::loncommon::store_course_settings('grades_clicker',
10271:                                               \%Saveable_Parameters);
10272:     my $result='';
10273:     if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
10274: 	$result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
10275: 	return $result;
10276:     }
10277:     if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
10278:         $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
10279:         return $result;
10280:     }
10281:     my $foundgiven=0;
10282:     if ($env{'form.gradingmechanism'} eq 'given') {
10283:         $env{'form.givenanswer'}=~s/^\s*//gs;
10284:         $env{'form.givenanswer'}=~s/\s*$//gs;
10285:         $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
10286:         $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
10287:         my @answers=split(/\,/,$env{'form.givenanswer'});
10288:         $foundgiven=$#answers+1;
10289:     }
10290:     my %clicker_ids=&gather_clicker_ids();
10291:     my %correct_ids;
10292:     if ($env{'form.gradingmechanism'} eq 'personnel') {
10293: 	%correct_ids=&gather_adv_clicker_ids();
10294:     }
10295:     if ($env{'form.gradingmechanism'} eq 'specific') {
10296: 	foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
10297: 	   $correct_id=~tr/a-z/A-Z/;
10298: 	   $correct_id=~s/\s//gs;
10299: 	   $correct_id=~s/^[\#0]+//;
10300:            $correct_id=~s/[\-\:]//g;
10301:            if ($correct_id) {
10302: 	      $correct_ids{$correct_id}='specified';
10303:            }
10304:         }
10305:     }
10306:     if ($env{'form.gradingmechanism'} eq 'attendance') {
10307: 	$result.=&mt('Score based on attendance only');
10308:     } elsif ($env{'form.gradingmechanism'} eq 'given') {
10309:         $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
10310:     } else {
10311: 	my $number=0;
10312: 	$result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
10313: 	foreach my $id (sort(keys(%correct_ids))) {
10314: 	    $result.='<br /><tt>'.$id.'</tt> - ';
10315: 	    if ($correct_ids{$id} eq 'specified') {
10316: 		$result.=&mt('specified');
10317: 	    } else {
10318: 		my ($uname,$udom)=split(/\:/,$correct_ids{$id});
10319: 		$result.=&Apache::loncommon::plainname($uname,$udom);
10320: 	    }
10321: 	    $number++;
10322: 	}
10323:         $result.="</p>\n";
10324:         if ($number==0) {
10325:             $result .=
10326:                  &Apache::lonhtmlcommon::confirm_success(
10327:                      &mt('No IDs found to determine correct answer'),1);
10328:             return $result;
10329:         }
10330:     }
10331:     if (length($env{'form.upfile'}) < 2) {
10332:         $result .=
10333:             &Apache::lonhtmlcommon::confirm_success(
10334:                 &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
10335:                         '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1);
10336:         return $result;
10337:     }
10338: 
10339: # Were able to get all the info needed, now analyze the file
10340: 
10341:     $result.=&Apache::loncommon::studentbrowser_javascript();
10342:     $symb = &Apache::lonenc::check_encrypt($symb);
10343:     $result.=&Apache::loncommon::start_data_table().
10344:              &Apache::loncommon::start_data_table_header_row().
10345:              '<th>'.&mt('Evaluate clicker file').'</th>'.
10346:              &Apache::loncommon::end_data_table_header_row().
10347:              &Apache::loncommon::start_data_table_row().(<<ENDHEADER);
10348: <td>
10349: <form method="post" action="/adm/grades" name="clickeranalysis">
10350: <input type="hidden" name="symb" value="$symb" />
10351: <input type="hidden" name="command" value="assignclickergrades" />
10352: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
10353: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
10354: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
10355: ENDHEADER
10356:     if ($env{'form.gradingmechanism'} eq 'given') {
10357:        $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
10358:     } 
10359:     my %responses;
10360:     my @questiontitles;
10361:     my $errormsg='';
10362:     my $number=0;
10363:     if ($env{'form.upfiletype'} eq 'iclicker') {
10364: 	($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
10365:     }
10366:     if ($env{'form.upfiletype'} eq 'interwrite') {
10367:         ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
10368:     }
10369:     if ($env{'form.upfiletype'} eq 'turning') {
10370:         ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
10371:     }
10372:     $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
10373:              '<input type="hidden" name="number" value="'.$number.'" />'.
10374:              &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
10375:                  $env{'form.pcorrect'},$env{'form.pincorrect'}).
10376:              '<br />';
10377:     if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
10378:        $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
10379:        return $result;
10380:     } 
10381: # Remember Question Titles
10382: # FIXME: Possibly need delimiter other than ":"
10383:     for (my $i=0;$i<$number;$i++) {
10384:         $result.='<input type="hidden" name="question:'.$i.'" value="'.
10385:                  &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
10386:     }
10387:     my $correct_count=0;
10388:     my $student_count=0;
10389:     my $unknown_count=0;
10390: # Match answers with usernames
10391: # FIXME: Possibly need delimiter other than ":"
10392:     foreach my $id (keys(%responses)) {
10393:        if ($correct_ids{$id}) {
10394:           $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
10395:           $correct_count++;
10396:        } elsif ($clicker_ids{$id}) {
10397:           if ($clicker_ids{$id}=~/\,/) {
10398: # More than one user with the same clicker!
10399:              $result.="</td>".&Apache::loncommon::end_data_table_row().
10400:                            &Apache::loncommon::start_data_table_row()."<td>".
10401:                        &mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
10402:              $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10403:                            "<select name='multi".$id."'>";
10404:              foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
10405:                  $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
10406:              }
10407:              $result.='</select>';
10408:              $unknown_count++;
10409:           } else {
10410: # Good: found one and only one user with the right clicker
10411:              $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
10412:              $student_count++;
10413:           }
10414:        } else {
10415:           $result.="</td>".&Apache::loncommon::end_data_table_row().
10416:                            &Apache::loncommon::start_data_table_row()."<td>".
10417:                     &mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
10418:           $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10419:                    "\n".&mt("Username").": <input type='text' name='uname".$id."' />&nbsp;".
10420:                    "\n".&mt("Domain").": ".
10421:                    &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).'&nbsp;'.
10422:                    &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
10423:           $unknown_count++;
10424:        }
10425:     }
10426:     $result.='<hr />'.
10427:              &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
10428:     if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
10429:        if ($correct_count==0) {
10430:           $errormsg.="Found no correct answers for grading!";
10431:        } elsif ($correct_count>1) {
10432:           $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
10433:        }
10434:     }
10435:     if ($number<1) {
10436:        $errormsg.="Found no questions.";
10437:     }
10438:     if ($errormsg) {
10439:        $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
10440:     } else {
10441:        $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
10442:     }
10443:     $result.='</form></td>'.
10444:              &Apache::loncommon::end_data_table_row().
10445:              &Apache::loncommon::end_data_table();
10446:     return $result;
10447: }
10448: 
10449: sub iclicker_eval {
10450:     my ($questiontitles,$responses)=@_;
10451:     my $number=0;
10452:     my $errormsg='';
10453:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10454:         my %components=&Apache::loncommon::record_sep($line);
10455:         my @entries=map {$components{$_}} (sort(keys(%components)));
10456: 	if ($entries[0] eq 'Question') {
10457: 	    for (my $i=3;$i<$#entries;$i+=6) {
10458: 		$$questiontitles[$number]=$entries[$i];
10459: 		$number++;
10460: 	    }
10461: 	}
10462: 	if ($entries[0]=~/^\#/) {
10463: 	    my $id=$entries[0];
10464: 	    my @idresponses;
10465: 	    $id=~s/^[\#0]+//;
10466: 	    for (my $i=0;$i<$number;$i++) {
10467: 		my $idx=3+$i*6;
10468:                 $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
10469: 		push(@idresponses,$entries[$idx]);
10470: 	    }
10471: 	    $$responses{$id}=join(',',@idresponses);
10472: 	}
10473:     }
10474:     return ($errormsg,$number);
10475: }
10476: 
10477: sub interwrite_eval {
10478:     my ($questiontitles,$responses)=@_;
10479:     my $number=0;
10480:     my $errormsg='';
10481:     my $skipline=1;
10482:     my $questionnumber=0;
10483:     my %idresponses=();
10484:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10485:         my %components=&Apache::loncommon::record_sep($line);
10486:         my @entries=map {$components{$_}} (sort(keys(%components)));
10487:         if ($entries[1] eq 'Time') { $skipline=0; next; }
10488:         if ($entries[1] eq 'Response') { $skipline=1; }
10489:         next if $skipline;
10490:         if ($entries[0]!=$questionnumber) {
10491:            $questionnumber=$entries[0];
10492:            $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
10493:            $number++;
10494:         }
10495:         my $id=$entries[4];
10496:         $id=~s/^[\#0]+//;
10497:         $id=~s/^v\d*\://i;
10498:         $id=~s/[\-\:]//g;
10499:         $idresponses{$id}[$number]=$entries[6];
10500:     }
10501:     foreach my $id (keys(%idresponses)) {
10502:        $$responses{$id}=join(',',@{$idresponses{$id}});
10503:        $$responses{$id}=~s/^\s*\,//;
10504:     }
10505:     return ($errormsg,$number);
10506: }
10507: 
10508: sub turning_eval {
10509:     my ($questiontitles,$responses)=@_;
10510:     my $number=0;
10511:     my $errormsg='';
10512:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10513:         my %components=&Apache::loncommon::record_sep($line);
10514:         my @entries=map {$components{$_}} (sort(keys(%components)));
10515:         if ($#entries>$number) { $number=$#entries; }
10516:         my $id=$entries[0];
10517:         my @idresponses;
10518:         $id=~s/^[\#0]+//;
10519:         unless ($id) { next; }
10520:         for (my $idx=1;$idx<=$#entries;$idx++) {
10521:             $entries[$idx]=~s/\,/\;/g;
10522:             $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
10523:             push(@idresponses,$entries[$idx]);
10524:         }
10525:         $$responses{$id}=join(',',@idresponses);
10526:     }
10527:     for (my $i=1; $i<=$number; $i++) {
10528:         $$questiontitles[$i]=&mt('Question [_1]',$i);
10529:     }
10530:     return ($errormsg,$number);
10531: }
10532: 
10533: 
10534: sub assign_clicker_grades {
10535:     my ($r,$symb)=@_;
10536:     if (!$symb) {return '';}
10537: # See which part we are saving to
10538:     my $res_error;
10539:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
10540:     if ($res_error) {
10541:         return &navmap_errormsg();
10542:     }
10543: # FIXME: This should probably look for the first handgradeable part
10544:     my $part=$$partlist[0];
10545: # Start screen output
10546:     my $result=&Apache::loncommon::start_data_table().
10547:              &Apache::loncommon::start_data_table_header_row().
10548:              '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
10549:              &Apache::loncommon::end_data_table_header_row().
10550:              &Apache::loncommon::start_data_table_row().'<td>';
10551: # Get correct result
10552: # FIXME: Possibly need delimiter other than ":"
10553:     my @correct=();
10554:     my $gradingmechanism=$env{'form.gradingmechanism'};
10555:     my $number=$env{'form.number'};
10556:     if ($gradingmechanism ne 'attendance') {
10557:        foreach my $key (keys(%env)) {
10558:           if ($key=~/^form\.correct\:/) {
10559:              my @input=split(/\,/,$env{$key});
10560:              for (my $i=0;$i<=$#input;$i++) {
10561:                  if (($correct[$i]) && ($input[$i]) &&
10562:                      ($correct[$i] ne $input[$i])) {
10563:                     $result.='<br /><span class="LC_warning">'.
10564:                              &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
10565:                                  $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
10566:                  } elsif (($input[$i]) || ($input[$i] eq '0')) {
10567:                     $correct[$i]=$input[$i];
10568:                  }
10569:              }
10570:           }
10571:        }
10572:        for (my $i=0;$i<$number;$i++) {
10573:           if ((!$correct[$i]) && ($correct[$i] ne '0')) {
10574:              $result.='<br /><span class="LC_error">'.
10575:                       &mt('No correct result given for question "[_1]"!',
10576:                           $env{'form.question:'.$i}).'</span>';
10577:           }
10578:        }
10579:        $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
10580:     }
10581: # Start grading
10582:     my $pcorrect=$env{'form.pcorrect'};
10583:     my $pincorrect=$env{'form.pincorrect'};
10584:     my $storecount=0;
10585:     my %users=();
10586:     foreach my $key (keys(%env)) {
10587:        my $user='';
10588:        if ($key=~/^form\.student\:(.*)$/) {
10589:           $user=$1;
10590:        }
10591:        if ($key=~/^form\.unknown\:(.*)$/) {
10592:           my $id=$1;
10593:           if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
10594:              $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
10595:           } elsif ($env{'form.multi'.$id}) {
10596:              $user=$env{'form.multi'.$id};
10597:           }
10598:        }
10599:        if ($user) {
10600:           if ($users{$user}) {
10601:              $result.='<br /><span class="LC_warning">'.
10602:                       &mt('More than one entry found for [_1]!','<tt>'.$user.'</tt>').
10603:                       '</span><br />';
10604:           }
10605:           $users{$user}=1; 
10606:           my @answer=split(/\,/,$env{$key});
10607:           my $sum=0;
10608:           my $realnumber=$number;
10609:           for (my $i=0;$i<$number;$i++) {
10610:              if  ($correct[$i] eq '-') {
10611:                 $realnumber--;
10612:              } elsif (($answer[$i]) || ($answer[$i]=~/^[0\.]+$/))  {
10613:                 if ($gradingmechanism eq 'attendance') {
10614:                    $sum+=$pcorrect;
10615:                 } elsif ($correct[$i] eq '*') {
10616:                    $sum+=$pcorrect;
10617:                 } else {
10618: # We actually grade if correct or not
10619:                    my $increment=$pincorrect;
10620: # Special case: numerical answer "0"
10621:                    if ($correct[$i] eq '0') {
10622:                       if ($answer[$i]=~/^[0\.]+$/) {
10623:                          $increment=$pcorrect;
10624:                       }
10625: # General numerical answer, both evaluate to something non-zero
10626:                    } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
10627:                       if (1.0*$correct[$i]==1.0*$answer[$i]) {
10628:                          $increment=$pcorrect;
10629:                       }
10630: # Must be just alphanumeric
10631:                    } elsif ($answer[$i] eq $correct[$i]) {
10632:                       $increment=$pcorrect;
10633:                    }
10634:                    $sum+=$increment;
10635:                 }
10636:              }
10637:           }
10638:           my $ave=$sum/(100*$realnumber);
10639: # Store
10640:           my ($username,$domain)=split(/\:/,$user);
10641:           my %grades=();
10642:           $grades{"resource.$part.solved"}='correct_by_override';
10643:           $grades{"resource.$part.awarded"}=$ave;
10644:           $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
10645:           my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
10646:                                                  $env{'request.course.id'},
10647:                                                  $domain,$username);
10648:           if ($returncode ne 'ok') {
10649:              $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
10650:           } else {
10651:              $storecount++;
10652:           }
10653:        }
10654:     }
10655: # We are done
10656:     $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
10657:              '</td>'.
10658:              &Apache::loncommon::end_data_table_row().
10659:              &Apache::loncommon::end_data_table();
10660:     return $result;
10661: }
10662: 
10663: sub navmap_errormsg {
10664:     return '<div class="LC_error">'.
10665:            &mt('An error occurred retrieving information about resources in the course.').'<br />'.
10666:            &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>').
10667:            '</div>';
10668: }
10669: 
10670: sub startpage {
10671:     my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
10672:     if ($nomenu) {
10673:         $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
10674:     } else {
10675:         unshift(@$crumbs,{href=>&href_symb_cmd($symb,'gradingmenu'),text=>"Grading"});
10676:         $r->print(&Apache::loncommon::start_page('Grading',$js,
10677:                                                  {'bread_crumbs' => $crumbs}));
10678:         &Apache::lonquickgrades::startGradeScreen($r,($env{'form.symb'}?'probgrading':'grading'));
10679:     }
10680:     unless ($nodisplayflag) {
10681:        $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
10682:     }
10683: }
10684: 
10685: sub select_problem {
10686:     my ($r)=@_;
10687:     $r->print('<h3>'.&mt('Select the problem or one of the problems you want to grade').'</h3><form action="/adm/grades">');
10688:     $r->print(&Apache::lonstathelpers::problem_selector('.',undef,1,undef,undef,undef,undef,1));
10689:     $r->print('<input type="hidden" name="command" value="gradingmenu" />');
10690:     $r->print('<input type="submit" value="'.&mt('Next').' &rarr;" /></form>');
10691: }
10692: 
10693: sub handler {
10694:     my $request=$_[0];
10695:     &reset_caches();
10696:     if ($request->header_only) {
10697:         &Apache::loncommon::content_type($request,'text/html');
10698:         $request->send_http_header;
10699:         return OK;
10700:     }
10701:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
10702: 
10703: # see what command we need to execute
10704: 
10705:     my @commands=&Apache::loncommon::get_env_multiple('form.command');
10706:     my $command=$commands[0];
10707: 
10708:     &init_perm();
10709:     if (!$env{'request.course.id'}) {
10710:         unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
10711:                 ($command =~ /^scantronupload/)) {
10712:             # Not in a course.
10713:             $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
10714:             return HTTP_NOT_ACCEPTABLE;
10715:         }
10716:     } elsif (!%perm) {
10717:         $request->internal_redirect('/adm/quickgrades');
10718:         return OK;
10719:     }
10720:     &Apache::loncommon::content_type($request,'text/html');
10721:     $request->send_http_header;
10722: 
10723:     if ($#commands > 0) {
10724: 	&Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
10725:     }
10726: 
10727: # see what the symb is
10728: 
10729:     my $symb=$env{'form.symb'};
10730:     unless ($symb) {
10731:        (my $url=$env{'form.url'}) =~ s-^https*://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
10732:        $symb=&Apache::lonnet::symbread($url);
10733:     }
10734:     &Apache::lonenc::check_decrypt(\$symb);
10735: 
10736:     $ssi_error = 0;
10737:     if (($symb eq '' || $command eq '') && ($env{'request.course.id'})) {
10738: #
10739: # Not called from a resource, but inside a course
10740: #    
10741:         &startpage($request,undef,[],1,1);
10742:         &select_problem($request);
10743:     } else {
10744: 	if ($command eq 'submission' && $perm{'vgr'}) {
10745:             my ($stuvcurrent,$stuvdisp,$versionform,$js);
10746:             if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
10747:                 ($stuvcurrent,$stuvdisp,$versionform,$js) =
10748:                     &choose_task_version_form($symb,$env{'form.student'},
10749:                                               $env{'form.userdom'});
10750:             }
10751:             &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
10752:             if ($versionform) {
10753:                 $request->print($versionform);
10754:             }
10755:             $request->print('<br clear="all" />');
10756: 	    ($env{'form.student'} eq '' ? &listStudents($request,$symb) : &submission($request,0,0,$symb));
10757:         } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
10758:             my ($stuvcurrent,$stuvdisp,$versionform,$js) =
10759:                 &choose_task_version_form($symb,$env{'form.student'},
10760:                                           $env{'form.userdom'},
10761:                                           $env{'form.inhibitmenu'});
10762:             &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
10763:             if ($versionform) {
10764:                 $request->print($versionform);
10765:             }
10766:             $request->print('<br clear="all" />');
10767:             $request->print(&show_previous_task_version($request,$symb));
10768: 	} elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
10769:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10770:                                        {href=>'',text=>'Select student'}],1,1);
10771: 	    &pickStudentPage($request,$symb);
10772: 	} elsif ($command eq 'displayPage' && $perm{'vgr'}) {
10773:             &startpage($request,$symb,
10774:                                       [{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10775:                                        {href=>'',text=>'Select student'},
10776:                                        {href=>'',text=>'Grade student'}],1,1);
10777: 	    &displayPage($request,$symb);
10778: 	} elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
10779:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10780:                                        {href=>'',text=>'Select student'},
10781:                                        {href=>'',text=>'Grade student'},
10782:                                        {href=>'',text=>'Store grades'}],1,1);
10783: 	    &updateGradeByPage($request,$symb);
10784: 	} elsif ($command eq 'processGroup' && $perm{'vgr'}) {
10785:             &startpage($request,$symb,[{href=>'',text=>'...'},
10786:                                        {href=>'',text=>'Modify grades'}]);
10787: 	    &processGroup($request,$symb);
10788: 	} elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
10789:             &startpage($request,$symb);
10790: 	    $request->print(&grading_menu($request,$symb));
10791: 	} elsif ($command eq 'individual' && $perm{'vgr'}) {
10792:             &startpage($request,$symb,[{href=>'',text=>'Select individual students to grade'}]);
10793: 	    $request->print(&submit_options($request,$symb));
10794:         } elsif ($command eq 'ungraded' && $perm{'vgr'}) {
10795:             &startpage($request,$symb,[{href=>'',text=>'Grade ungraded submissions'}]);
10796:             $request->print(&listStudents($request,$symb,'graded'));
10797:         } elsif ($command eq 'table' && $perm{'vgr'}) {
10798:             &startpage($request,$symb,[{href=>"", text=>"Grading table"}]);
10799:             $request->print(&submit_options_table($request,$symb));
10800:         } elsif ($command eq 'all_for_one' && $perm{'vgr'}) {
10801:             &startpage($request,$symb,[{href=>'',text=>'Grade page/folder for one student'}],1,1);
10802:             $request->print(&submit_options_sequence($request,$symb));
10803: 	} elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
10804:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},{href=>'', text=>"Modify grades"}]);
10805: 	    $request->print(&viewgrades($request,$symb));
10806: 	} elsif ($command eq 'handgrade' && $perm{'mgr'}) {
10807:             &startpage($request,$symb,[{href=>'',text=>'...'},
10808:                                        {href=>'',text=>'Store grades'}]);
10809: 	    $request->print(&processHandGrade($request,$symb));
10810: 	} elsif ($command eq 'editgrades' && $perm{'mgr'}) {
10811:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},
10812:                                        {href=>&href_symb_cmd($symb,'viewgrades').'&group=all&section=all&Status=Active',
10813:                                                                              text=>"Modify grades"},
10814:                                        {href=>'', text=>"Store grades"}]);
10815: 	    $request->print(&editgrades($request,$symb));
10816:         } elsif ($command eq 'initialverifyreceipt' && $perm{'vgr'}) {
10817:             &startpage($request,$symb,[{href=>'',text=>'Verify Receipt Number'}]);
10818:             $request->print(&initialverifyreceipt($request,$symb));
10819: 	} elsif ($command eq 'verify' && $perm{'vgr'}) {
10820:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"initialverifyreceipt"),text=>'Verify Receipt Number'},
10821:                                        {href=>'',text=>'Verification Result'}]);
10822: 	    $request->print(&verifyreceipt($request,$symb));
10823:         } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
10824:             &startpage($request,$symb,[{href=>'', text=>'Process clicker'}]);
10825:             $request->print(&process_clicker($request,$symb));
10826:         } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
10827:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10828:                                        {href=>'', text=>'Process clicker file'}]);
10829:             $request->print(&process_clicker_file($request,$symb));
10830:         } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
10831:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10832:                                        {href=>'', text=>'Process clicker file'},
10833:                                        {href=>'', text=>'Store grades'}]);
10834:             $request->print(&assign_clicker_grades($request,$symb));
10835: 	} elsif ($command eq 'csvform' && $perm{'mgr'}) {
10836:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10837: 	    $request->print(&upcsvScores_form($request,$symb));
10838: 	} elsif ($command eq 'csvupload' && $perm{'mgr'}) {
10839:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10840: 	    $request->print(&csvupload($request,$symb));
10841: 	} elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
10842:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10843: 	    $request->print(&csvuploadmap($request,$symb));
10844: 	} elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
10845: 	    if ($env{'form.associate'} ne 'Reverse Association') {
10846:                 &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10847: 		$request->print(&csvuploadoptions($request,$symb));
10848: 	    } else {
10849: 		if ( $env{'form.upfile_associate'} ne 'reverse' ) {
10850: 		    $env{'form.upfile_associate'} = 'reverse';
10851: 		} else {
10852: 		    $env{'form.upfile_associate'} = 'forward';
10853: 		}
10854:                 &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10855: 		$request->print(&csvuploadmap($request,$symb));
10856: 	    }
10857: 	} elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
10858:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
10859: 	    $request->print(&csvuploadassign($request,$symb));
10860: 	} elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
10861:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10862: 	    $request->print(&scantron_selectphase($request,undef,$symb));
10863:  	} elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
10864:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10865:  	    $request->print(&scantron_do_warning($request,$symb));
10866: 	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
10867:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10868: 	    $request->print(&scantron_validate_file($request,$symb));
10869: 	} elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
10870:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10871: 	    $request->print(&scantron_process_students($request,$symb));
10872:  	} elsif ($command eq 'scantronupload' && 
10873:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10874: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
10875:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10876:  	    $request->print(&scantron_upload_scantron_data($request,$symb)); 
10877:  	} elsif ($command eq 'scantronupload_save' &&
10878:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10879: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
10880:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10881:  	    $request->print(&scantron_upload_scantron_data_save($request,$symb));
10882:  	} elsif ($command eq 'scantron_download' &&
10883: 		 &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
10884:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10885:  	    $request->print(&scantron_download_scantron_data($request,$symb));
10886:         } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
10887:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
10888:             $request->print(&checkscantron_results($request,$symb));
10889:         } elsif ($command eq 'downloadfilesselect' && $perm{'vgr'}) {
10890:             &startpage($request,$symb,[{href=>'', text=>'Select which submissions to download'}]);
10891:             $request->print(&submit_options_download($request,$symb));
10892:          } elsif ($command eq 'downloadfileslink' && $perm{'vgr'}) {
10893:             &startpage($request,$symb,
10894:    [{href=>&href_symb_cmd($symb,'downloadfilesselect'), text=>'Select which submissions to download'},
10895:     {href=>'', text=>'Download submitted files'}]);
10896:             &submit_download_link($request,$symb);
10897: 	} elsif ($command) {
10898:             &startpage($request,$symb,[{href=>'', text=>'Access denied'}]);
10899: 	    $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
10900: 	}
10901:     }
10902:     if ($ssi_error) {
10903: 	&ssi_print_error($request);
10904:     }
10905:     if ($env{'form.inhibitmenu'}) {
10906:         $request->print(&Apache::loncommon::end_page());
10907:     } else {
10908:         &Apache::lonquickgrades::endGradeScreen($request);
10909:     }
10910:     &reset_caches();
10911:     return OK;
10912: }
10913: 
10914: 1;
10915: 
10916: __END__;
10917: 
10918: 
10919: =head1 NAME
10920: 
10921: Apache::grades
10922: 
10923: =head1 SYNOPSIS
10924: 
10925: Handles the viewing of grades.
10926: 
10927: This is part of the LearningOnline Network with CAPA project
10928: described at http://www.lon-capa.org.
10929: 
10930: =head1 OVERVIEW
10931: 
10932: Do an ssi with retries:
10933: While I'd love to factor out this with the version in lonprintout,
10934: 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
10935: I'm not quite ready to invent (e.g. an ssi_with_retry object).
10936: 
10937: At least the logic that drives this has been pulled out into loncommon.
10938: 
10939: 
10940: 
10941: ssi_with_retries - Does the server side include of a resource.
10942:                      if the ssi call returns an error we'll retry it up to
10943:                      the number of times requested by the caller.
10944:                      If we still have a problem, no text is appended to the
10945:                      output and we set some global variables.
10946:                      to indicate to the caller an SSI error occurred.  
10947:                      All of this is supposed to deal with the issues described
10948:                      in LON-CAPA BZ 5631 see:
10949:                      http://bugs.lon-capa.org/show_bug.cgi?id=5631
10950:                      by informing the user that this happened.
10951: 
10952: Parameters:
10953:   resource   - The resource to include.  This is passed directly, without
10954:                interpretation to lonnet::ssi.
10955:   form       - The form hash parameters that guide the interpretation of the resource
10956:                
10957:   retries    - Number of retries allowed before giving up completely.
10958: Returns:
10959:   On success, returns the rendered resource identified by the resource parameter.
10960: Side Effects:
10961:   The following global variables can be set:
10962:    ssi_error                - If an unrecoverable error occurred this becomes true.
10963:                               It is up to the caller to initialize this to false
10964:                               if desired.
10965:    ssi_error_resource  - If an unrecoverable error occurred, this is the value
10966:                               of the resource that could not be rendered by the ssi
10967:                               call.
10968:    ssi_error_message   - The error string fetched from the ssi response
10969:                               in the event of an error.
10970: 
10971: 
10972: =head1 HANDLER SUBROUTINE
10973: 
10974: ssi_with_retries()
10975: 
10976: =head1 SUBROUTINES
10977: 
10978: =over
10979: 
10980: =head1 Routines to display previous version of a Task for a specific student
10981: 
10982: Tasks are graded pass/fail. Students who have yet to pass a particular Task
10983: can receive another opportunity. Access to tasks is slot-based. If a slot
10984: requires a proctor to check-in the student, a new version of the Task will
10985: be created when the student is checked in to the new opportunity.
10986: 
10987: If a particular student has tried two or more versions of a particular task,
10988: the submission screen provides a user with vgr privileges (e.g., a Course
10989: Coordinator) the ability to display a previous version worked on by the
10990: student.  By default, the current version is displayed. If a previous version
10991: has been selected for display, submission data are only shown that pertain
10992: to that particular version, and the interface to submit grades is not shown.
10993: 
10994: =over 4
10995: 
10996: =item show_previous_task_version()
10997: 
10998: Displays a specified version of a student's Task, as the student sees it.
10999: 
11000: Inputs: 2
11001:         request - request object
11002:         symb    - unique symb for current instance of resource
11003: 
11004: Output: None.
11005: 
11006: Side Effects: calls &show_problem() to print version of Task, with
11007:               version contained in form item: $env{'form.previousversion'}
11008: 
11009: =item choose_task_version_form()
11010: 
11011: Displays a web form used to select which version of a student's view of a
11012: Task should be displayed.  Either launches a pop-up window, or replaces
11013: content in existing pop-up, or replaces page in main window.
11014: 
11015: Inputs: 4
11016:         symb    - unique symb for current instance of resource
11017:         uname   - username of student
11018:         udom    - domain of student
11019:         nomenu  - 1 if display is in a pop-up window, and hence no menu
11020:                   breadcrumbs etc., are displayed
11021: 
11022: Output: 4
11023:         current   - student's current version
11024:         displayed - student's version being displayed
11025:         result    - scalar containing HTML for web form used to switch to
11026:                     a different version (or a link to close window, if pop-up).
11027:         js        - javascript for processing selection in versions web form
11028: 
11029: Side Effects: None.
11030: 
11031: =item previous_display_javascript()
11032: 
11033: Inputs: 2
11034:         nomenu  - 1 if display is in a pop-up window, and hence no menu
11035:                   breadcrumbs etc., are displayed.
11036:         current - student's current version number.
11037: 
11038: Output: 1
11039:         js      - javascript for processing selection in versions web form.
11040: 
11041: Side Effects: None.
11042: 
11043: =back
11044: 
11045: =head1 Routines to process bubblesheet data.
11046: 
11047: =over 4
11048: 
11049: =item scantron_get_correction() : 
11050: 
11051:    Builds the interface screen to interact with the operator to fix a
11052:    specific error condition in a specific scanline
11053: 
11054:  Arguments:
11055:     $r           - Apache request object
11056:     $i           - number of the current scanline
11057:     $scan_record - hash ref as returned from &scantron_parse_scanline()
11058:     $scan_config - hash ref as returned from &get_scantron_config()
11059:     $line        - full contents of the current scanline
11060:     $error       - error condition, valid values are
11061:                    'incorrectCODE', 'duplicateCODE',
11062:                    'doublebubble', 'missingbubble',
11063:                    'duplicateID', 'incorrectID'
11064:     $arg         - extra information needed
11065:        For errors:
11066:          - duplicateID   - paper number that this studentID was seen before on
11067:          - duplicateCODE - array ref of the paper numbers this CODE was
11068:                            seen on before
11069:          - incorrectCODE - current incorrect CODE 
11070:          - doublebubble  - array ref of the bubble lines that have double
11071:                            bubble errors
11072:          - missingbubble - array ref of the bubble lines that have missing
11073:                            bubble errors
11074: 
11075:    $randomorder - True if exam folder has randomorder set
11076:    $randompick  - True if exam folder has randompick set
11077:    $respnumlookup - Reference to HASH mapping question numbers in bubble lines
11078:                      for current line to question number used for same question
11079:                      in "Master Seqence" (as seen by Course Coordinator).
11080:    $startline   - Reference to hash where key is question number (0 is first)
11081:                   and value is number of first bubble line for current student
11082:                   or code-based randompick and/or randomorder.
11083: 
11084: 
11085: 
11086: =item  scantron_get_maxbubble() : 
11087: 
11088:    Arguments:
11089:        $nav_error  - Reference to scalar which is a flag to indicate a
11090:                       failure to retrieve a navmap object.
11091:        if $nav_error is set to 1 by scantron_get_maxbubble(), the 
11092:        calling routine should trap the error condition and display the warning
11093:        found in &navmap_errormsg().
11094: 
11095:        $scantron_config - Reference to bubblesheet format configuration hash.
11096: 
11097:    Returns the maximum number of bubble lines that are expected to
11098:    occur. Does this by walking the selected sequence rendering the
11099:    resource and then checking &Apache::lonxml::get_problem_counter()
11100:    for what the current value of the problem counter is.
11101: 
11102:    Caches the results to $env{'form.scantron_maxbubble'},
11103:    $env{'form.scantron.bubble_lines.n'}, 
11104:    $env{'form.scantron.first_bubble_line.n'} and
11105:    $env{"form.scantron.sub_bubblelines.n"}
11106:    which are the total number of bubble lines, the number of bubble
11107:    lines for response n and number of the first bubble line for response n,
11108:    and a comma separated list of numbers of bubble lines for sub-questions
11109:    (for optionresponse, matchresponse, and rankresponse items), for response n.  
11110: 
11111: 
11112: =item  scantron_validate_missingbubbles() : 
11113: 
11114:    Validates all scanlines in the selected file to not have any
11115:     answers that don't have bubbles that have not been verified
11116:     to be bubble free.
11117: 
11118: =item  scantron_process_students() : 
11119: 
11120:    Routine that does the actual grading of the bubblesheet information.
11121: 
11122:    The parsed scanline hash is added to %env 
11123: 
11124:    Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
11125:    foreach resource , with the form data of
11126: 
11127: 	'submitted'     =>'scantron' 
11128: 	'grade_target'  =>'grade',
11129: 	'grade_username'=> username of student
11130: 	'grade_domain'  => domain of student
11131: 	'grade_courseid'=> of course
11132: 	'grade_symb'    => symb of resource to grade
11133: 
11134:     This triggers a grading pass. The problem grading code takes care
11135:     of converting the bubbled letter information (now in %env) into a
11136:     valid submission.
11137: 
11138: =item  scantron_upload_scantron_data() :
11139: 
11140:     Creates the screen for adding a new bubblesheet data file to a course.
11141: 
11142: =item  scantron_upload_scantron_data_save() : 
11143: 
11144:    Adds a provided bubble information data file to the course if user
11145:    has the correct privileges to do so. 
11146: 
11147: =item  valid_file() :
11148: 
11149:    Validates that the requested bubble data file exists in the course.
11150: 
11151: =item  scantron_download_scantron_data() : 
11152: 
11153:    Shows a list of the three internal files (original, corrected,
11154:    skipped) for a specific bubblesheet data file that exists in the
11155:    course.
11156: 
11157: =item  scantron_validate_ID() : 
11158: 
11159:    Validates all scanlines in the selected file to not have any
11160:    invalid or underspecified student/employee IDs
11161: 
11162: =item navmap_errormsg() :
11163: 
11164:    Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
11165:    Should be called whenever the request to instantiate a navmap object fails.
11166: 
11167: =back
11168: 
11169: =back
11170: 
11171: =cut

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