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

1.17      albertel    1: # The LearningOnline Network with CAPA
1.13      albertel    2: # The LON-CAPA Grading handler
1.17      albertel    3: #
1.686   ! bisitz      4: # $Id: grades.pm,v 1.685 2013/04/11 14:08:02 bisitz Exp $
1.17      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.1       albertel   28: 
1.529     jms        29: 
                     30: 
1.1       albertel   31: package Apache::grades;
                     32: use strict;
                     33: use Apache::style;
                     34: use Apache::lonxml;
                     35: use Apache::lonnet;
1.3       albertel   36: use Apache::loncommon;
1.112     ng         37: use Apache::lonhtmlcommon;
1.68      ng         38: use Apache::lonnavmaps;
1.1       albertel   39: use Apache::lonhomework;
1.456     banghart   40: use Apache::lonpickcode;
1.55      matthew    41: use Apache::loncoursedata;
1.362     albertel   42: use Apache::lonmsg();
1.646     raeburn    43: use Apache::Constants qw(:common :http);
1.167     sakharuk   44: use Apache::lonlocal;
1.386     raeburn    45: use Apache::lonenc;
1.622     www        46: use Apache::lonstathelpers;
1.639     www        47: use Apache::lonquickgrades;
1.657     raeburn    48: use Apache::bridgetask();
1.170     albertel   49: use String::Similarity;
1.359     www        50: use LONCAPA;
                     51: 
1.315     bowersj2   52: use POSIX qw(floor);
1.87      www        53: 
1.435     foxr       54: 
1.513     foxr       55: 
1.435     foxr       56: my %perm=();
1.674     raeburn    57: my %old_essays=();
1.447     foxr       58: 
1.513     foxr       59: #  These variables are used to recover from ssi errors
                     60: 
                     61: my $ssi_retries = 5;
                     62: my $ssi_error;
                     63: my $ssi_error_resource;
                     64: my $ssi_error_message;
                     65: 
                     66: 
                     67: sub ssi_with_retries {
                     68:     my ($resource, $retries, %form) = @_;
                     69:     my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
                     70:     if ($response->is_error) {
                     71: 	$ssi_error          = 1;
                     72: 	$ssi_error_resource = $resource;
                     73: 	$ssi_error_message  = $response->code . " " . $response->message;
                     74:     }
                     75: 
                     76:     return $content;
                     77: 
                     78: }
                     79: #
                     80: #  Prodcuces an ssi retry failure error message to the user:
                     81: #
                     82: 
                     83: sub ssi_print_error {
                     84:     my ($r) = @_;
1.516     raeburn    85:     my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
                     86:     $r->print('
                     87: <br />
                     88: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
                     89: <p>
                     90: '.&mt('Unable to retrieve a resource from a server:').'<br />
                     91: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
                     92: '.&mt('Error:').' '.$ssi_error_message.'
                     93: </p>
                     94: <p>'.
                     95: &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 />'.
                     96: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
                     97: '</p>');
                     98:     return;
1.513     foxr       99: }
                    100: 
1.44      ng        101: #
1.146     albertel  102: # --- Retrieve the parts from the metadata file.---
1.598     www       103: # Returns an array of everything that the resources stores away
                    104: #
                    105: 
1.44      ng        106: sub getpartlist {
1.582     raeburn   107:     my ($symb,$errorref) = @_;
1.439     albertel  108: 
                    109:     my $navmap   = Apache::lonnavmaps::navmap->new();
1.582     raeburn   110:     unless (ref($navmap)) {
                    111:         if (ref($errorref)) { 
                    112:             $$errorref = 'navmap';
                    113:             return;
                    114:         }
                    115:     }
1.439     albertel  116:     my $res      = $navmap->getBySymb($symb);
                    117:     my $partlist = $res->parts();
                    118:     my $url      = $res->src();
                    119:     my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
                    120: 
1.146     albertel  121:     my @stores;
1.439     albertel  122:     foreach my $part (@{ $partlist }) {
1.146     albertel  123: 	foreach my $key (@metakeys) {
                    124: 	    if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
                    125: 	}
                    126:     }
                    127:     return @stores;
1.2       albertel  128: }
                    129: 
1.129     ng        130: #--- Format fullname, username:domain if different for display
                    131: #--- Use anywhere where the student names are listed
                    132: sub nameUserString {
                    133:     my ($type,$fullname,$uname,$udom) = @_;
                    134:     if ($type eq 'header') {
1.485     albertel  135: 	return '<b>&nbsp;'.&mt('Fullname').'&nbsp;</b><span class="LC_internal_info">('.&mt('Username').')</span>';
1.129     ng        136:     } else {
1.398     albertel  137: 	return '&nbsp;'.$fullname.'<span class="LC_internal_info">&nbsp;('.$uname.
                    138: 	    ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129     ng        139:     }
                    140: }
                    141: 
1.44      ng        142: #--- Get the partlist and the response type for a given problem. ---
                    143: #--- Indicate if a response type is coded handgraded or not. ---
1.623     www       144: #--- Sets response_error pointer to "1" if navmaps object broken ---
1.39      ng        145: sub response_type {
1.582     raeburn   146:     my ($symb,$response_error) = @_;
1.377     albertel  147: 
                    148:     my $navmap = Apache::lonnavmaps::navmap->new();
1.582     raeburn   149:     unless (ref($navmap)) {
                    150:         if (ref($response_error)) {
                    151:             $$response_error = 1;
                    152:         }
                    153:         return;
                    154:     }
1.377     albertel  155:     my $res = $navmap->getBySymb($symb);
1.593     raeburn   156:     unless (ref($res)) {
                    157:         $$response_error = 1;
                    158:         return;
                    159:     }
1.377     albertel  160:     my $partlist = $res->parts();
1.392     albertel  161:     my %vPart = 
                    162: 	map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377     albertel  163:     my (%response_types,%handgrade);
                    164:     foreach my $part (@{ $partlist }) {
1.392     albertel  165: 	next if (%vPart && !exists($vPart{$part}));
                    166: 
1.377     albertel  167: 	my @types = $res->responseType($part);
                    168: 	my @ids = $res->responseIds($part);
                    169: 	for (my $i=0; $i < scalar(@ids); $i++) {
                    170: 	    $response_types{$part}{$ids[$i]} = $types[$i];
                    171: 	    $handgrade{$part.'_'.$ids[$i]} = 
                    172: 		&Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
                    173: 				     '.handgrade',$symb);
1.41      ng        174: 	}
                    175:     }
1.377     albertel  176:     return ($partlist,\%handgrade,\%response_types);
1.39      ng        177: }
                    178: 
1.375     albertel  179: sub flatten_responseType {
                    180:     my ($responseType) = @_;
                    181:     my @part_response_id =
                    182: 	map { 
                    183: 	    my $part = $_;
                    184: 	    map {
                    185: 		[$part,$_]
                    186: 		} sort(keys(%{ $responseType->{$part} }));
                    187: 	} sort(keys(%$responseType));
                    188:     return @part_response_id;
                    189: }
                    190: 
1.207     albertel  191: sub get_display_part {
1.324     albertel  192:     my ($partID,$symb)=@_;
1.207     albertel  193:     my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
                    194:     if (defined($display) and $display ne '') {
1.577     bisitz    195:         $display.= ' (<span class="LC_internal_info">'
                    196:                   .&mt('Part ID: [_1]',$partID).'</span>)';
1.207     albertel  197:     } else {
                    198: 	$display=$partID;
                    199:     }
                    200:     return $display;
                    201: }
1.269     raeburn   202: 
1.434     albertel  203: sub reset_caches {
                    204:     &reset_analyze_cache();
                    205:     &reset_perm();
1.674     raeburn   206:     &reset_old_essays();
1.434     albertel  207: }
                    208: 
                    209: {
                    210:     my %analyze_cache;
1.557     raeburn   211:     my %analyze_cache_formkeys;
1.148     albertel  212: 
1.434     albertel  213:     sub reset_analyze_cache {
                    214: 	undef(%analyze_cache);
1.557     raeburn   215:         undef(%analyze_cache_formkeys);
1.434     albertel  216:     }
                    217: 
                    218:     sub get_analyze {
1.649     raeburn   219: 	my ($symb,$uname,$udom,$no_increment,$add_to_hash,$type,$trial,$rndseed,$bubbles_per_row)=@_;
1.434     albertel  220: 	my $key = "$symb\0$uname\0$udom";
1.640     raeburn   221:         if ($type eq 'randomizetry') {
                    222:             if ($trial ne '') {
                    223:                 $key .= "\0".$trial;
                    224:             }
                    225:         }
1.557     raeburn   226: 	if (exists($analyze_cache{$key})) {
                    227:             my $getupdate = 0;
                    228:             if (ref($add_to_hash) eq 'HASH') {
                    229:                 foreach my $item (keys(%{$add_to_hash})) {
                    230:                     if (ref($analyze_cache_formkeys{$key}) eq 'HASH') {
                    231:                         if (!exists($analyze_cache_formkeys{$key}{$item})) {
                    232:                             $getupdate = 1;
                    233:                             last;
                    234:                         }
                    235:                     } else {
                    236:                         $getupdate = 1;
                    237:                     }
                    238:                 }
                    239:             }
                    240:             if (!$getupdate) {
                    241:                 return $analyze_cache{$key};
                    242:             }
                    243:         }
1.434     albertel  244: 
                    245: 	my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
                    246: 	$url=&Apache::lonnet::clutter($url);
1.557     raeburn   247:         my %form = ('grade_target'      => 'analyze',
                    248:                     'grade_domain'      => $udom,
                    249:                     'grade_symb'        => $symb,
                    250:                     'grade_courseid'    =>  $env{'request.course.id'},
                    251:                     'grade_username'    => $uname,
                    252:                     'grade_noincrement' => $no_increment);
1.649     raeburn   253:         if ($bubbles_per_row ne '') {
                    254:             $form{'bubbles_per_row'} = $bubbles_per_row;
                    255:         }
1.640     raeburn   256:         if ($type eq 'randomizetry') {
                    257:             $form{'grade_questiontype'} = $type;
                    258:             if ($rndseed ne '') {
                    259:                 $form{'grade_rndseed'} = $rndseed;
                    260:             }
                    261:         }
1.557     raeburn   262:         if (ref($add_to_hash)) {
                    263:             %form = (%form,%{$add_to_hash});
1.640     raeburn   264:         }
1.557     raeburn   265: 	my $subresult=&ssi_with_retries($url, $ssi_retries,%form);
1.434     albertel  266: 	(undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
                    267: 	my %analyze=&Apache::lonnet::str2hash($subresult);
1.557     raeburn   268:         if (ref($add_to_hash) eq 'HASH') {
                    269:             $analyze_cache_formkeys{$key} = $add_to_hash;
                    270:         } else {
                    271:             $analyze_cache_formkeys{$key} = {};
                    272:         }
1.434     albertel  273: 	return $analyze_cache{$key} = \%analyze;
                    274:     }
                    275: 
                    276:     sub get_order {
1.640     raeburn   277: 	my ($partid,$respid,$symb,$uname,$udom,$no_increment,$type,$trial,$rndseed)=@_;
                    278: 	my $analyze = &get_analyze($symb,$uname,$udom,$no_increment,undef,$type,$trial,$rndseed);
1.434     albertel  279: 	return $analyze->{"$partid.$respid.shown"};
                    280:     }
                    281: 
                    282:     sub get_radiobutton_correct_foil {
1.640     raeburn   283: 	my ($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed)=@_;
                    284: 	my $analyze = &get_analyze($symb,$uname,$udom,undef,undef,$type,$trial,$rndseed);
                    285:         my $foils = &get_order($partid,$respid,$symb,$uname,$udom,undef,$type,$trial,$rndseed);
1.555     raeburn   286:         if (ref($foils) eq 'ARRAY') {
                    287: 	    foreach my $foil (@{$foils}) {
                    288: 	        if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
                    289: 		    return $foil;
                    290: 	        }
1.434     albertel  291: 	    }
                    292: 	}
                    293:     }
1.554     raeburn   294: 
                    295:     sub scantron_partids_tograde {
1.649     raeburn   296:         my ($resource,$cid,$uname,$udom,$check_for_randomlist,$bubbles_per_row) = @_;
1.554     raeburn   297:         my (%analysis,@parts);
                    298:         if (ref($resource)) {
                    299:             my $symb = $resource->symb();
1.557     raeburn   300:             my $add_to_form;
                    301:             if ($check_for_randomlist) {
                    302:                 $add_to_form = { 'check_parts_withrandomlist' => 1,};
                    303:             }
1.649     raeburn   304:             my $analyze = 
                    305:                 &get_analyze($symb,$uname,$udom,undef,$add_to_form,
                    306:                              undef,undef,undef,$bubbles_per_row);
1.554     raeburn   307:             if (ref($analyze) eq 'HASH') {
                    308:                 %analysis = %{$analyze};
                    309:             }
                    310:             if (ref($analysis{'parts'}) eq 'ARRAY') {
                    311:                 foreach my $part (@{$analysis{'parts'}}) {
                    312:                     my ($id,$respid) = split(/\./,$part);
                    313:                     if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
                    314:                         push(@parts,$part);
                    315:                     }
                    316:                 }
                    317:             }
                    318:         }
                    319:         return (\%analysis,\@parts);
                    320:     }
                    321: 
1.148     albertel  322: }
1.434     albertel  323: 
1.118     ng        324: #--- Clean response type for display
1.335     albertel  325: #--- Currently filters option/rank/radiobutton/match/essay/Task
                    326: #        response types only.
1.118     ng        327: sub cleanRecord {
1.336     albertel  328:     my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
1.640     raeburn   329: 	$uname,$udom,$type,$trial,$rndseed) = @_;
1.398     albertel  330:     my $grayFont = '<span class="LC_internal_info">';
1.148     albertel  331:     if ($response =~ /^(option|rank)$/) {
                    332: 	my %answer=&Apache::lonnet::str2hash($answer);
                    333: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    334: 	my ($toprow,$bottomrow);
                    335: 	foreach my $foil (@$order) {
                    336: 	    if ($grading{$foil} == 1) {
                    337: 		$toprow.='<td><b>'.$answer{$foil}.'&nbsp;</b></td>';
                    338: 	    } else {
                    339: 		$toprow.='<td><i>'.$answer{$foil}.'&nbsp;</i></td>';
                    340: 	    }
1.398     albertel  341: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
1.148     albertel  342: 	}
                    343: 	return '<blockquote><table border="1">'.
1.466     albertel  344: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
                    345: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660     raeburn   346: 	    $bottomrow.'</tr></table></blockquote>';
1.148     albertel  347:     } elsif ($response eq 'match') {
                    348: 	my %answer=&Apache::lonnet::str2hash($answer);
                    349: 	my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
                    350: 	my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
                    351: 	my ($toprow,$middlerow,$bottomrow);
                    352: 	foreach my $foil (@$order) {
                    353: 	    my $item=shift(@items);
                    354: 	    if ($grading{$foil} == 1) {
                    355: 		$toprow.='<td><b>'.$item.'&nbsp;</b></td>';
1.398     albertel  356: 		$middlerow.='<td><b>'.$grayFont.$answer{$foil}.'&nbsp;</span></b></td>';
1.148     albertel  357: 	    } else {
                    358: 		$toprow.='<td><i>'.$item.'&nbsp;</i></td>';
1.398     albertel  359: 		$middlerow.='<td><i>'.$grayFont.$answer{$foil}.'&nbsp;</span></i></td>';
1.148     albertel  360: 	    }
1.398     albertel  361: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
1.118     ng        362: 	}
1.126     ng        363: 	return '<blockquote><table border="1">'.
1.466     albertel  364: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
                    365: 	    '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148     albertel  366: 	    $middlerow.'</tr>'.
1.466     albertel  367: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660     raeburn   368: 	    $bottomrow.'</tr></table></blockquote>';
1.148     albertel  369:     } elsif ($response eq 'radiobutton') {
                    370: 	my %answer=&Apache::lonnet::str2hash($answer);
                    371: 	my ($toprow,$bottomrow);
1.434     albertel  372: 	my $correct = 
1.640     raeburn   373: 	    &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed);
1.434     albertel  374: 	foreach my $foil (@$order) {
1.148     albertel  375: 	    if (exists($answer{$foil})) {
1.434     albertel  376: 		if ($foil eq $correct) {
1.466     albertel  377: 		    $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148     albertel  378: 		} else {
1.466     albertel  379: 		    $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148     albertel  380: 		}
                    381: 	    } else {
1.466     albertel  382: 		$toprow.='<td>'.&mt('false').'</td>';
1.148     albertel  383: 	    }
1.398     albertel  384: 	    $bottomrow.='<td>'.$grayFont.$foil.'</span>&nbsp;</td>';
1.148     albertel  385: 	}
                    386: 	return '<blockquote><table border="1">'.
1.466     albertel  387: 	    '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
                    388: 	    '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660     raeburn   389: 	    $bottomrow.'</tr></table></blockquote>';
1.148     albertel  390:     } elsif ($response eq 'essay') {
1.257     albertel  391: 	if (! exists ($env{'form.'.$symb})) {
1.122     ng        392: 	    my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257     albertel  393: 						  $env{'course.'.$env{'request.course.id'}.'.domain'},
                    394: 						  $env{'course.'.$env{'request.course.id'}.'.num'});
1.122     ng        395: 
1.257     albertel  396: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
                    397: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                    398: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                    399: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                    400: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                    401: 	    $env{'form.'.$symb} = 1; # so that we don't have to read it from disk for multiple sub of the same prob.
1.122     ng        402: 	}
1.166     albertel  403: 	$answer =~ s-\n-<br />-g;
                    404: 	return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268     albertel  405:     } elsif ( $response eq 'organic') {
                    406: 	my $result='Smile representation: "<tt>'.$answer.'</tt>"';
                    407: 	my $jme=$record->{$version."resource.$partid.$respid.molecule"};
                    408: 	$result.=&Apache::chemresponse::jme_img($jme,$answer,400);
                    409: 	return $result;
1.335     albertel  410:     } elsif ( $response eq 'Task') {
                    411: 	if ( $answer eq 'SUBMITTED') {
                    412: 	    my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336     albertel  413: 	    my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335     albertel  414: 	    return $result;
                    415: 	} elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
                    416: 	    my @matches = grep(/^\Q$version\E.*?\.instance$/,
                    417: 			       keys(%{$record}));
                    418: 	    return join('<br />',($version,@matches));
                    419: 			       
                    420: 			       
                    421: 	} else {
                    422: 	    my $result =
                    423: 		'<p>'
                    424: 		.&mt('Overall result: [_1]',
                    425: 		     $record->{$version."resource.$respid.$partid.status"})
                    426: 		.'</p>';
                    427: 	    
                    428: 	    $result .= '<ul>';
                    429: 	    my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
                    430: 			     keys(%{$record}));
                    431: 	    foreach my $grade (sort(@grade)) {
                    432: 		my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
                    433: 		$result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
                    434: 				     $dim, $record->{$grade}).
                    435: 			  '</li>';
                    436: 	    }
                    437: 	    $result.='</ul>';
                    438: 	    return $result;
                    439: 	}
1.440     albertel  440:     } elsif ( $response =~ m/(?:numerical|formula)/) {
                    441: 	$answer = 
                    442: 	    &Apache::loncommon::format_previous_attempt_value('submission',
                    443: 							      $answer);
1.122     ng        444:     }
1.118     ng        445:     return $answer;
                    446: }
                    447: 
                    448: #-- A couple of common js functions
                    449: sub commonJSfunctions {
                    450:     my $request = shift;
1.597     wenzelju  451:     $request->print(&Apache::lonhtmlcommon::scripttag(<<COMMONJSFUNCTIONS));
1.118     ng        452:     function radioSelection(radioButton) {
                    453: 	var selection=null;
                    454: 	if (radioButton.length > 1) {
                    455: 	    for (var i=0; i<radioButton.length; i++) {
                    456: 		if (radioButton[i].checked) {
                    457: 		    return radioButton[i].value;
                    458: 		}
                    459: 	    }
                    460: 	} else {
                    461: 	    if (radioButton.checked) return radioButton.value;
                    462: 	}
                    463: 	return selection;
                    464:     }
                    465: 
                    466:     function pullDownSelection(selectOne) {
                    467: 	var selection="";
                    468: 	if (selectOne.length > 1) {
                    469: 	    for (var i=0; i<selectOne.length; i++) {
                    470: 		if (selectOne[i].selected) {
                    471: 		    return selectOne[i].value;
                    472: 		}
                    473: 	    }
                    474: 	} else {
1.138     albertel  475:             // only one value it must be the selected one
                    476: 	    return selectOne.value;
1.118     ng        477: 	}
                    478:     }
                    479: COMMONJSFUNCTIONS
                    480: }
                    481: 
1.44      ng        482: #--- Dumps the class list with usernames,list of sections,
                    483: #--- section, ids and fullnames for each user.
                    484: sub getclasslist {
1.449     banghart  485:     my ($getsec,$filterlist,$getgroup) = @_;
1.291     albertel  486:     my @getsec;
1.450     banghart  487:     my @getgroup;
1.442     banghart  488:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291     albertel  489:     if (!ref($getsec)) {
                    490: 	if ($getsec ne '' && $getsec ne 'all') {
                    491: 	    @getsec=($getsec);
                    492: 	}
                    493:     } else {
                    494: 	@getsec=@{$getsec};
                    495:     }
                    496:     if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450     banghart  497:     if (!ref($getgroup)) {
                    498: 	if ($getgroup ne '' && $getgroup ne 'all') {
                    499: 	    @getgroup=($getgroup);
                    500: 	}
                    501:     } else {
                    502: 	@getgroup=@{$getgroup};
                    503:     }
                    504:     if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291     albertel  505: 
1.449     banghart  506:     my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49      albertel  507:     # Bail out if we were unable to get the classlist
1.56      matthew   508:     return if (! defined($classlist));
1.449     banghart  509:     &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56      matthew   510:     #
                    511:     my %sections;
                    512:     my %fullnames;
1.205     matthew   513:     foreach my $student (keys(%$classlist)) {
                    514:         my $end      = 
                    515:             $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
                    516:         my $start    = 
                    517:             $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
                    518:         my $id       = 
                    519:             $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
                    520:         my $section  = 
                    521:             $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
                    522:         my $fullname = 
                    523:             $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
                    524:         my $status   = 
                    525:             $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449     banghart  526:         my $group   = 
                    527:             $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76      ng        528: 	# filter students according to status selected
1.442     banghart  529: 	if ($filterlist && (!($stu_status =~ /Any/))) {
                    530: 	    if (!($stu_status =~ $status)) {
1.450     banghart  531: 		delete($classlist->{$student});
1.76      ng        532: 		next;
                    533: 	    }
                    534: 	}
1.450     banghart  535: 	# filter students according to groups selected
1.453     banghart  536: 	my @stu_groups = split(/,/,$group);
1.450     banghart  537: 	if (@getgroup) {
                    538: 	    my $exclude = 1;
1.454     banghart  539: 	    foreach my $grp (@getgroup) {
                    540: 	        foreach my $stu_group (@stu_groups) {
1.453     banghart  541: 	            if ($stu_group eq $grp) {
                    542: 	                $exclude = 0;
                    543:     	            } 
1.450     banghart  544: 	        }
1.453     banghart  545:     	        if (($grp eq 'none') && !$group) {
                    546:         	        $exclude = 0;
                    547:         	}
1.450     banghart  548: 	    }
                    549: 	    if ($exclude) {
                    550: 	        delete($classlist->{$student});
                    551: 	    }
                    552: 	}
1.205     matthew   553: 	$section = ($section ne '' ? $section : 'none');
1.106     albertel  554: 	if (&canview($section)) {
1.291     albertel  555: 	    if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103     albertel  556: 		$sections{$section}++;
1.450     banghart  557: 		if ($classlist->{$student}) {
                    558: 		    $fullnames{$student}=$fullname;
                    559: 		}
1.103     albertel  560: 	    } else {
1.205     matthew   561: 		delete($classlist->{$student});
1.103     albertel  562: 	    }
                    563: 	} else {
1.205     matthew   564: 	    delete($classlist->{$student});
1.103     albertel  565: 	}
1.44      ng        566:     }
                    567:     my %seen = ();
1.56      matthew   568:     my @sections = sort(keys(%sections));
                    569:     return ($classlist,\@sections,\%fullnames);
1.44      ng        570: }
                    571: 
1.103     albertel  572: sub canmodify {
                    573:     my ($sec)=@_;
                    574:     if ($perm{'mgr'}) {
                    575: 	if (!defined($perm{'mgr_section'})) {
                    576: 	    # can modify whole class
                    577: 	    return 1;
                    578: 	} else {
                    579: 	    if ($sec eq $perm{'mgr_section'}) {
                    580: 		#can modify the requested section
                    581: 		return 1;
                    582: 	    } else {
                    583: 		# can't modify the request section
                    584: 		return 0;
                    585: 	    }
                    586: 	}
                    587:     }
                    588:     #can't modify
                    589:     return 0;
                    590: }
                    591: 
                    592: sub canview {
                    593:     my ($sec)=@_;
                    594:     if ($perm{'vgr'}) {
                    595: 	if (!defined($perm{'vgr_section'})) {
                    596: 	    # can modify whole class
                    597: 	    return 1;
                    598: 	} else {
                    599: 	    if ($sec eq $perm{'vgr_section'}) {
                    600: 		#can modify the requested section
                    601: 		return 1;
                    602: 	    } else {
                    603: 		# can't modify the request section
                    604: 		return 0;
                    605: 	    }
                    606: 	}
                    607:     }
                    608:     #can't modify
                    609:     return 0;
                    610: }
                    611: 
1.44      ng        612: #--- Retrieve the grade status of a student for all the parts
                    613: sub student_gradeStatus {
1.324     albertel  614:     my ($symb,$udom,$uname,$partlist) = @_;
1.257     albertel  615:     my %record     = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44      ng        616:     my %partstatus = ();
                    617:     foreach (@$partlist) {
1.128     ng        618: 	my ($status,undef)   = split(/_/,$record{"resource.$_.solved"},2);
1.44      ng        619: 	$status              = 'nothing' if ($status eq '');
                    620: 	$partstatus{$_}      = $status;
                    621: 	my $subkey           = "resource.$_.submitted_by";
                    622: 	$partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
                    623:     }
                    624:     return %partstatus;
                    625: }
                    626: 
1.45      ng        627: # hidden form and javascript that calls the form
                    628: # Use by verifyscript and viewgrades
                    629: # Shows a student's view of problem and submission
                    630: sub jscriptNform {
1.324     albertel  631:     my ($symb) = @_;
1.442     banghart  632:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.597     wenzelju  633:     my $jscript= &Apache::lonhtmlcommon::scripttag(
1.45      ng        634: 	'    function viewOneStudent(user,domain) {'."\n".
                    635: 	'	document.onestudent.student.value = user;'."\n".
                    636: 	'	document.onestudent.userdom.value = domain;'."\n".
                    637: 	'	document.onestudent.submit();'."\n".
                    638: 	'    }'."\n".
1.597     wenzelju  639: 	"\n");
1.45      ng        640:     $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418     albertel  641: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.442     banghart  642: 	'<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
1.45      ng        643: 	'<input type="hidden" name="command" value="submission" />'."\n".
                    644: 	'<input type="hidden" name="student" value="" />'."\n".
                    645: 	'<input type="hidden" name="userdom" value="" />'."\n".
                    646: 	'</form>'."\n";
                    647:     return $jscript;
                    648: }
1.39      ng        649: 
1.447     foxr      650: 
                    651: 
1.315     bowersj2  652: # Given the score (as a number [0-1] and the weight) what is the final
                    653: # point value? This function will round to the nearest tenth, third,
                    654: # or quarter if one of those is within the tolerance of .00001.
1.316     albertel  655: sub compute_points {
1.315     bowersj2  656:     my ($score, $weight) = @_;
                    657:     
                    658:     my $tolerance = .00001;
                    659:     my $points = $score * $weight;
                    660: 
                    661:     # Check for nearness to 1/x.
                    662:     my $check_for_nearness = sub {
                    663:         my ($factor) = @_;
                    664:         my $num = ($points * $factor) + $tolerance;
                    665:         my $floored_num = floor($num);
1.316     albertel  666:         if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315     bowersj2  667:             return $floored_num / $factor;
                    668:         }
                    669:         return $points;
                    670:     };
                    671: 
                    672:     $points = $check_for_nearness->(10);
                    673:     $points = $check_for_nearness->(3);
                    674:     $points = $check_for_nearness->(4);
                    675:     
                    676:     return $points;
                    677: }
                    678: 
1.44      ng        679: #------------------ End of general use routines --------------------
1.87      www       680: 
                    681: #
                    682: # Find most similar essay
                    683: #
                    684: 
                    685: sub most_similar {
1.674     raeburn   686:     my ($uname,$udom,$symb,$uessay)=@_;
                    687: 
                    688:     unless ($symb) { return ''; }
                    689: 
                    690:     unless (ref($old_essays{$symb}) eq 'HASH') { return ''; }
1.87      www       691: 
                    692: # ignore spaces and punctuation
                    693: 
                    694:     $uessay=~s/\W+/ /gs;
                    695: 
1.282     www       696: # ignore empty submissions (occuring when only files are sent)
                    697: 
1.598     www       698:     unless ($uessay=~/\w+/s) { return ''; }
1.282     www       699: 
1.87      www       700: # these will be returned. Do not care if not at least 50 percent similar
1.88      www       701:     my $limit=0.6;
1.87      www       702:     my $sname='';
                    703:     my $sdom='';
                    704:     my $scrsid='';
                    705:     my $sessay='';
                    706: # go through all essays ...
1.674     raeburn   707:     foreach my $tkey (keys(%{$old_essays{$symb}})) {
1.426     albertel  708: 	my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87      www       709: # ... except the same student
1.426     albertel  710:         next if (($tname eq $uname) && ($tdom eq $udom));
1.674     raeburn   711: 	my $tessay=$old_essays{$symb}{$tkey};
1.426     albertel  712: 	$tessay=~s/\W+/ /gs;
1.87      www       713: # String similarity gives up if not even limit
1.426     albertel  714: 	my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87      www       715: # Found one
1.426     albertel  716: 	if ($tsimilar>$limit) {
                    717: 	    $limit=$tsimilar;
                    718: 	    $sname=$tname;
                    719: 	    $sdom=$tdom;
                    720: 	    $scrsid=$tcrsid;
1.674     raeburn   721: 	    $sessay=$old_essays{$symb}{$tkey};
1.426     albertel  722: 	}
1.87      www       723:     }
1.88      www       724:     if ($limit>0.6) {
1.87      www       725:        return ($sname,$sdom,$scrsid,$sessay,$limit);
                    726:     } else {
                    727:        return ('','','','',0);
                    728:     }
                    729: }
                    730: 
1.44      ng        731: #-------------------------------------------------------------------
                    732: 
                    733: #------------------------------------ Receipt Verification Routines
1.45      ng        734: #
1.602     www       735: 
                    736: sub initialverifyreceipt {
1.608     www       737:    my ($request,$symb) = @_;
1.602     www       738:    &commonJSfunctions($request);
1.605     www       739:    return '<form name="gradingMenu"><input type="submit" value="'.&mt('Verify Receipt Number.').'" />'.
1.602     www       740:         &Apache::lonnet::recprefix($env{'request.course.id'}).
                    741:         '-<input type="text" name="receipt" size="4" />'.
1.603     www       742:         '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
                    743:         '<input type="hidden" name="command" value="verify" />'.
                    744:         "</form>\n";
1.602     www       745: }
                    746: 
1.44      ng        747: #--- Check whether a receipt number is valid.---
                    748: sub verifyreceipt {
1.608     www       749:     my ($request,$symb)  = @_;
1.44      ng        750: 
1.257     albertel  751:     my $courseid = $env{'request.course.id'};
1.184     www       752:     my $receipt  = &Apache::lonnet::recprefix($courseid).'-'.
1.257     albertel  753: 	$env{'form.receipt'};
1.44      ng        754:     $receipt     =~ s/[^\-\d]//g;
                    755: 
1.487     albertel  756:     my $title.=
                    757: 	'<h3><span class="LC_info">'.
1.605     www       758: 	&mt('Verifying Receipt Number [_1]',$receipt).
                    759: 	'</span></h3>'."\n";
1.44      ng        760: 
                    761:     my ($string,$contents,$matches) = ('','',0);
1.56      matthew   762:     my (undef,undef,$fullname) = &getclasslist('all','0');
1.177     albertel  763:     
                    764:     my $receiptparts=0;
1.390     albertel  765:     if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
                    766: 	$env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177     albertel  767:     my $parts=['0'];
1.582     raeburn   768:     if ($receiptparts) {
                    769:         my $res_error; 
                    770:         ($parts)=&response_type($symb,\$res_error);
                    771:         if ($res_error) {
                    772:             return &navmap_errormsg();
                    773:         } 
                    774:     }
1.486     albertel  775:     
                    776:     my $header = 
                    777: 	&Apache::loncommon::start_data_table().
                    778: 	&Apache::loncommon::start_data_table_header_row().
1.487     albertel  779: 	'<th>&nbsp;'.&mt('Fullname').'&nbsp;</th>'."\n".
                    780: 	'<th>&nbsp;'.&mt('Username').'&nbsp;</th>'."\n".
                    781: 	'<th>&nbsp;'.&mt('Domain').'&nbsp;</th>';
1.486     albertel  782:     if ($receiptparts) {
1.487     albertel  783: 	$header.='<th>&nbsp;'.&mt('Problem Part').'&nbsp;</th>';
1.486     albertel  784:     }
                    785:     $header.=
                    786: 	&Apache::loncommon::end_data_table_header_row();
                    787: 
1.294     albertel  788:     foreach (sort 
                    789: 	     {
                    790: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                    791: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                    792: 		 }
                    793: 		 return $a cmp $b;
                    794: 	     } (keys(%$fullname))) {
1.44      ng        795: 	my ($uname,$udom)=split(/\:/);
1.177     albertel  796: 	foreach my $part (@$parts) {
                    797: 	    if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
1.486     albertel  798: 		$contents.=
                    799: 		    &Apache::loncommon::start_data_table_row().
                    800: 		    '<td>&nbsp;'."\n".
1.177     albertel  801: 		    '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417     albertel  802: 		    '\');" target="_self">'.$$fullname{$_}.'</a>&nbsp;</td>'."\n".
1.177     albertel  803: 		    '<td>&nbsp;'.$uname.'&nbsp;</td>'.
                    804: 		    '<td>&nbsp;'.$udom.'&nbsp;</td>';
                    805: 		if ($receiptparts) {
                    806: 		    $contents.='<td>&nbsp;'.$part.'&nbsp;</td>';
                    807: 		}
1.486     albertel  808: 		$contents.= 
                    809: 		    &Apache::loncommon::end_data_table_row()."\n";
1.177     albertel  810: 		
                    811: 		$matches++;
                    812: 	    }
1.44      ng        813: 	}
                    814:     }
                    815:     if ($matches == 0) {
1.584     bisitz    816:         $string = $title
                    817:                  .'<p class="LC_warning">'
                    818:                  .&mt('No match found for the above receipt number.')
                    819:                  .'</p>';
1.44      ng        820:     } else {
1.324     albertel  821: 	$string = &jscriptNform($symb).$title.
1.487     albertel  822: 	    '<p>'.
1.584     bisitz    823: 	    &mt('The above receipt number matches the following [quant,_1,student].',$matches).
1.487     albertel  824: 	    '</p>'.
1.486     albertel  825: 	    $header.
                    826: 	    $contents.
                    827: 	    &Apache::loncommon::end_data_table()."\n";
1.44      ng        828:     }
1.614     www       829:     return $string;
1.44      ng        830: }
                    831: 
                    832: #--- This is called by a number of programs.
                    833: #--- Called from the Grading Menu - View/Grade an individual student
                    834: #--- Also called directly when one clicks on the subm button 
                    835: #    on the problem page.
1.30      ng        836: sub listStudents {
1.617     www       837:     my ($request,$symb,$submitonly) = @_;
1.49      albertel  838: 
1.257     albertel  839:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                    840:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                    841:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449     banghart  842:     my $getgroup  = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.617     www       843:     unless ($submitonly) {
                    844:        $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
                    845:     }
1.49      albertel  846: 
1.632     www       847:     my $result='';
1.623     www       848:     my $res_error;
                    849:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
1.49      albertel  850: 
1.559     raeburn   851:     my %lt = &Apache::lonlocal::texthash (
                    852: 		'multiple' => 'Please select a student or group of students before clicking on the Next button.',
                    853: 		'single'   => 'Please select the student before clicking on the Next button.',
                    854: 	     );
1.597     wenzelju  855:     $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
1.110     ng        856:     function checkSelect(checkBox) {
                    857: 	var ctr=0;
                    858: 	var sense="";
                    859: 	if (checkBox.length > 1) {
                    860: 	    for (var i=0; i<checkBox.length; i++) {
                    861: 		if (checkBox[i].checked) {
                    862: 		    ctr++;
                    863: 		}
                    864: 	    }
1.485     albertel  865: 	    sense = '$lt{'multiple'}';
1.110     ng        866: 	} else {
                    867: 	    if (checkBox.checked) {
                    868: 		ctr = 1;
                    869: 	    }
1.485     albertel  870: 	    sense = '$lt{'single'}';
1.110     ng        871: 	}
                    872: 	if (ctr == 0) {
1.485     albertel  873: 	    alert(sense);
1.110     ng        874: 	    return false;
                    875: 	}
                    876: 	document.gradesub.submit();
                    877:     }
                    878: 
                    879:     function reLoadList(formname) {
1.112     ng        880: 	if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110     ng        881: 	formname.command.value = 'submission';
                    882: 	formname.submit();
                    883:     }
1.45      ng        884: LISTJAVASCRIPT
                    885: 
1.118     ng        886:     &commonJSfunctions($request);
1.41      ng        887:     $request->print($result);
1.39      ng        888: 
1.154     albertel  889:     my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
1.598     www       890: 	"\n";
1.485     albertel  891: 	
1.561     bisitz    892:     $gradeTable .= &Apache::lonhtmlcommon::start_pick_box();
                    893:     $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
                    894:                   .'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n"
                    895:                   .'<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n"
                    896:                   .'<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label><br />'."\n"
                    897:                   .&Apache::lonhtmlcommon::row_closure();
                    898:     $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Answer'))
                    899:                   .'<label><input type="radio" name="vAns" value="no"  /> '.&mt('no').' </label>'."\n"
                    900:                   .'<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n"
                    901:                   .'<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label><br />'."\n"
                    902:                   .&Apache::lonhtmlcommon::row_closure();
1.485     albertel  903: 
                    904:     my $submission_options;
1.442     banghart  905:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
                    906:     my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257     albertel  907:     $env{'form.Status'} = $saveStatus;
1.485     albertel  908:     $submission_options.=
1.592     bisitz    909:         '<span class="LC_nobreak">'.
1.624     www       910:         '<label><input type="radio" name="lastSub" value="lastonly" /> '.
1.592     bisitz    911:         &mt('last submission only').' </label></span>'."\n".
                    912:         '<span class="LC_nobreak">'.
                    913:         '<label><input type="radio" name="lastSub" value="last" /> '.
                    914:         &mt('last submission &amp; parts info').' </label></span>'."\n".
                    915:         '<span class="LC_nobreak">'.
1.628     www       916:         '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.
1.592     bisitz    917:         &mt('by dates and submissions').'</label></span>'."\n".
                    918:         '<span class="LC_nobreak">'.
                    919:         '<label><input type="radio" name="lastSub" value="all" /> '.
                    920:         &mt('all details').'</label></span>';
1.561     bisitz    921:     $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Submissions'))
                    922:                   .$submission_options
                    923:                   .&Apache::lonhtmlcommon::row_closure();
                    924: 
                    925:     $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Grading Increments'))
                    926:                   .'<select name="increment">'
                    927:                   .'<option value="1">'.&mt('Whole Points').'</option>'
                    928:                   .'<option value=".5">'.&mt('Half Points').'</option>'
                    929:                   .'<option value=".25">'.&mt('Quarter Points').'</option>'
                    930:                   .'<option value=".1">'.&mt('Tenths of a Point').'</option>'
                    931:                   .'</select>'
                    932:                   .&Apache::lonhtmlcommon::row_closure();
1.485     albertel  933: 
                    934:     $gradeTable .= 
1.432     banghart  935:         &build_section_inputs().
1.45      ng        936: 	'<input type="hidden" name="submitonly"  value="'.$submitonly.'" />'."\n".
1.418     albertel  937: 	'<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110     ng        938: 	'<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
                    939: 
1.618     www       940:     if (exists($env{'form.Status'})) {
1.561     bisitz    941: 	$gradeTable .= '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
1.124     ng        942:     } else {
1.561     bisitz    943:         $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Student Status'))
                    944:                       .&Apache::lonhtmlcommon::StatusOptions(
                    945:                            $saveStatus,undef,1,'javascript:reLoadList(this.form);')
                    946:                       .&Apache::lonhtmlcommon::row_closure();
1.124     ng        947:     }
1.112     ng        948: 
1.561     bisitz    949:     $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Check For Plagiarism'))
                    950:                   .'<input type="checkbox" name="checkPlag" checked="checked" />'
                    951:                   .&Apache::lonhtmlcommon::row_closure(1)
                    952:                   .&Apache::lonhtmlcommon::end_pick_box();
                    953: 
                    954:     $gradeTable .= '<p>'
1.618     www       955:                   .&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.")."\n"
1.561     bisitz    956:                   .'<input type="hidden" name="command" value="processGroup" />'
                    957:                   .'</p>';
1.249     albertel  958: 
                    959: # checkall buttons
                    960:     $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110     ng        961:     $gradeTable.='<input type="button" '."\n".
1.589     bisitz    962:         'onclick="javascript:checkSelect(this.form.stuinfo);" '."\n".
                    963:         'value="'.&mt('Next').' &rarr;" /> <br />'."\n";
1.249     albertel  964:     $gradeTable.=&check_buttons();
1.450     banghart  965:     my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.474     albertel  966:     $gradeTable.= &Apache::loncommon::start_data_table().
                    967: 	&Apache::loncommon::start_data_table_header_row();
1.110     ng        968:     my $loop = 0;
                    969:     while ($loop < 2) {
1.485     albertel  970: 	$gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
                    971: 	    '<th>'.&nameUserString('header').'&nbsp;'.&mt('Section/Group').'</th>';
1.618     www       972: 	if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.485     albertel  973: 	    foreach my $part (sort(@$partlist)) {
                    974: 		my $display_part=
                    975: 		    &get_display_part((split(/_/,$part))[0],$symb);
                    976: 		$gradeTable.=
                    977: 		    '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
1.110     ng        978: 	    }
1.301     albertel  979: 	} elsif ($submitonly eq 'queued') {
1.474     albertel  980: 	    $gradeTable.='<th>'.&mt('Queue Status').'&nbsp;</th>';
1.110     ng        981: 	}
                    982: 	$loop++;
1.126     ng        983: #	$gradeTable.='<td></td>' if ($loop%2 ==1);
1.41      ng        984:     }
1.474     albertel  985:     $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
1.41      ng        986: 
1.45      ng        987:     my $ctr = 0;
1.294     albertel  988:     foreach my $student (sort 
                    989: 			 {
                    990: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                    991: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                    992: 			     }
                    993: 			     return $a cmp $b;
                    994: 			 }
                    995: 			 (keys(%$fullname))) {
1.41      ng        996: 	my ($uname,$udom) = split(/:/,$student);
1.301     albertel  997: 
1.110     ng        998: 	my %status = ();
1.301     albertel  999: 
                   1000: 	if ($submitonly eq 'queued') {
                   1001: 	    my %queue_status = 
                   1002: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
                   1003: 							$udom,$uname);
                   1004: 	    next if (!defined($queue_status{'gradingqueue'}));
                   1005: 	    $status{'gradingqueue'} = $queue_status{'gradingqueue'};
                   1006: 	}
                   1007: 
1.618     www      1008: 	if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.324     albertel 1009: 	    (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145     albertel 1010: 	    my $submitted = 0;
1.164     albertel 1011: 	    my $graded = 0;
1.248     albertel 1012: 	    my $incorrect = 0;
1.110     ng       1013: 	    foreach (keys(%status)) {
1.145     albertel 1014: 		$submitted = 1 if ($status{$_} ne 'nothing');
1.248     albertel 1015: 		$graded = 1 if ($status{$_} =~ /^ungraded/);
                   1016: 		$incorrect = 1 if ($status{$_} =~ /^incorrect/);
                   1017: 		
1.110     ng       1018: 		my ($foo,$partid,$foo1) = split(/\./,$_);
                   1019: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145     albertel 1020: 		    $submitted = 0;
1.150     albertel 1021: 		    my ($part)=split(/\./,$partid);
1.110     ng       1022: 		    $gradeTable.='<input type="hidden" name="'.
1.150     albertel 1023: 			$student.':'.$part.':submitted_by" value="'.
1.110     ng       1024: 			$status{'resource.'.$partid.'.submitted_by'}.'" />';
                   1025: 		}
1.41      ng       1026: 	    }
1.248     albertel 1027: 	    
1.156     albertel 1028: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                   1029: 				     $submitonly eq 'incorrect' ||
                   1030: 				     $submitonly eq 'graded'));
1.248     albertel 1031: 	    next if (!$graded && ($submitonly eq 'graded'));
                   1032: 	    next if (!$incorrect && $submitonly eq 'incorrect');
1.41      ng       1033: 	}
1.34      ng       1034: 
1.45      ng       1035: 	$ctr++;
1.249     albertel 1036: 	my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452     banghart 1037:         my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104     albertel 1038: 	if ( $perm{'vgr'} eq 'F' ) {
1.474     albertel 1039: 	    if ($ctr%2 ==1) {
                   1040: 		$gradeTable.= &Apache::loncommon::start_data_table_row();
                   1041: 	    }
1.126     ng       1042: 	    $gradeTable.='<td align="right">'.$ctr.'&nbsp;</td>'.
1.563     bisitz   1043:                '<td align="center"><label><input type="checkbox" name="stuinfo" value="'.
1.249     albertel 1044:                $student.':'.$$fullname{$student}.':::SECTION'.$section.
                   1045: 	       ')&nbsp;" />&nbsp;&nbsp;</label></td>'."\n".'<td>'.
                   1046: 	       &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474     albertel 1047: 	       '&nbsp;'.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110     ng       1048: 
1.618     www      1049: 	    if ($submitonly ne 'all') {
1.524     raeburn  1050: 		foreach (sort(keys(%status))) {
1.485     albertel 1051: 		    next if ($_ =~ /^resource.*?submitted_by$/);
                   1052: 		    $gradeTable.='<td align="center">&nbsp;'.&mt($status{$_}).'&nbsp;</td>'."\n";
1.110     ng       1053: 		}
1.41      ng       1054: 	    }
1.126     ng       1055: #	    $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474     albertel 1056: 	    if ($ctr%2 ==0) {
                   1057: 		$gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
                   1058: 	    }
1.41      ng       1059: 	}
                   1060:     }
1.110     ng       1061:     if ($ctr%2 ==1) {
1.126     ng       1062: 	$gradeTable.='<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>';
1.618     www      1063: 	    if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.110     ng       1064: 		foreach (@$partlist) {
                   1065: 		    $gradeTable.='<td>&nbsp;</td>';
                   1066: 		}
1.301     albertel 1067: 	    } elsif ($submitonly eq 'queued') {
                   1068: 		$gradeTable.='<td>&nbsp;</td>';
1.110     ng       1069: 	    }
1.474     albertel 1070: 	$gradeTable.=&Apache::loncommon::end_data_table_row();
1.110     ng       1071:     }
                   1072: 
1.474     albertel 1073:     $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.589     bisitz   1074:         '<input type="button" '.
                   1075:         'onclick="javascript:checkSelect(this.form.stuinfo);" '.
                   1076:         'value="'.&mt('Next').' &rarr;" /></form>'."\n";
1.45      ng       1077:     if ($ctr == 0) {
1.96      albertel 1078: 	my $num_students=(scalar(keys(%$fullname)));
                   1079: 	if ($num_students eq 0) {
1.485     albertel 1080: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
1.96      albertel 1081: 	} else {
1.171     albertel 1082: 	    my $submissions='submissions';
                   1083: 	    if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
                   1084: 	    if ($submitonly eq 'graded'   ) { $submissions = 'ungraded submissions'; }
1.301     albertel 1085: 	    if ($submitonly eq 'queued'   ) { $submissions = 'queued submissions'; }
1.398     albertel 1086: 	    $gradeTable='<br />&nbsp;<span class="LC_warning">'.
1.485     albertel 1087: 		&mt('No '.$submissions.' found for this resource for any students. ([_1] students checked for '.$submissions.')',
                   1088: 		    $num_students).
                   1089: 		'</span><br />';
1.96      albertel 1090: 	}
1.46      ng       1091:     } elsif ($ctr == 1) {
1.474     albertel 1092: 	$gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45      ng       1093:     }
                   1094:     $request->print($gradeTable);
1.44      ng       1095:     return '';
1.10      ng       1096: }
                   1097: 
1.44      ng       1098: #---- Called from the listStudents routine
1.249     albertel 1099: 
                   1100: sub check_script {
                   1101:     my ($form, $type)=@_;
1.597     wenzelju 1102:     my $chkallscript= &Apache::lonhtmlcommon::scripttag('
1.249     albertel 1103:     function checkall() {
                   1104:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                   1105:             ele = document.forms.'.$form.'.elements[i];
                   1106:             if (ele.name == "'.$type.'") {
                   1107:             document.forms.'.$form.'.elements[i].checked=true;
                   1108:                                        }
                   1109:         }
                   1110:     }
                   1111: 
                   1112:     function checksec() {
                   1113:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                   1114:             ele = document.forms.'.$form.'.elements[i];
                   1115:            string = document.forms.'.$form.'.chksec.value;
                   1116:            if
                   1117:           (ele.value.indexOf(":::SECTION"+string)>0) {
                   1118:               document.forms.'.$form.'.elements[i].checked=true;
                   1119:             }
                   1120:         }
                   1121:     }
                   1122: 
                   1123: 
                   1124:     function uncheckall() {
                   1125:         for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
                   1126:             ele = document.forms.'.$form.'.elements[i];
                   1127:             if (ele.name == "'.$type.'") {
                   1128:             document.forms.'.$form.'.elements[i].checked=false;
                   1129:                                        }
                   1130:         }
                   1131:     }
                   1132: 
1.597     wenzelju 1133: '."\n");
1.249     albertel 1134:     return $chkallscript;
                   1135: }
                   1136: 
                   1137: sub check_buttons {
1.485     albertel 1138:     my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
                   1139:     $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" />&nbsp;';
                   1140:     $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
1.249     albertel 1141:     $buttons.='<input type="text" size="5" name="chksec" />&nbsp;';
                   1142:     return $buttons;
                   1143: }
                   1144: 
1.44      ng       1145: #     Displays the submissions for one student or a group of students
1.34      ng       1146: sub processGroup {
1.619     www      1147:     my ($request,$symb)  = @_;
1.41      ng       1148:     my $ctr        = 0;
1.155     albertel 1149:     my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41      ng       1150:     my $total      = scalar(@stuchecked)-1;
1.45      ng       1151: 
1.396     banghart 1152:     foreach my $student (@stuchecked) {
                   1153: 	my ($uname,$udom,$fullname) = split(/:/,$student);
1.257     albertel 1154: 	$env{'form.student'}        = $uname;
                   1155: 	$env{'form.userdom'}        = $udom;
                   1156: 	$env{'form.fullname'}       = $fullname;
1.619     www      1157: 	&submission($request,$ctr,$total,$symb);
1.41      ng       1158: 	$ctr++;
                   1159:     }
                   1160:     return '';
1.35      ng       1161: }
1.34      ng       1162: 
1.44      ng       1163: #------------------------------------------------------------------------------------
                   1164: #
                   1165: #-------------------------- Next few routines handles grading by student, essentially
                   1166: #                           handles essay response type problem/part
                   1167: #
                   1168: #--- Javascript to handle the submission page functionality ---
                   1169: sub sub_page_js {
                   1170:     my $request = shift;
1.539     riegler  1171: 	    my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.597     wenzelju 1172:     $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
1.71      ng       1173:     function updateRadio(formname,id,weight) {
1.125     ng       1174: 	var gradeBox = formname["GD_BOX"+id];
                   1175: 	var radioButton = formname["RADVAL"+id];
                   1176: 	var oldpts = formname["oldpts"+id].value;
1.72      ng       1177: 	var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71      ng       1178: 	gradeBox.value = pts;
                   1179: 	var resetbox = false;
                   1180: 	if (isNaN(pts) || pts < 0) {
1.539     riegler  1181: 	    alert("$alertmsg"+pts);
1.71      ng       1182: 	    for (var i=0; i<radioButton.length; i++) {
                   1183: 		if (radioButton[i].checked) {
                   1184: 		    gradeBox.value = i;
                   1185: 		    resetbox = true;
                   1186: 		}
                   1187: 	    }
                   1188: 	    if (!resetbox) {
                   1189: 		formtextbox.value = "";
                   1190: 	    }
                   1191: 	    return;
1.44      ng       1192: 	}
1.71      ng       1193: 
                   1194: 	if (pts > weight) {
                   1195: 	    var resp = confirm("You entered a value ("+pts+
                   1196: 			       ") greater than the weight for the part. Accept?");
                   1197: 	    if (resp == false) {
1.125     ng       1198: 		gradeBox.value = oldpts;
1.71      ng       1199: 		return;
                   1200: 	    }
1.44      ng       1201: 	}
1.13      albertel 1202: 
1.71      ng       1203: 	for (var i=0; i<radioButton.length; i++) {
                   1204: 	    radioButton[i].checked=false;
                   1205: 	    if (pts == i && pts != "") {
                   1206: 		radioButton[i].checked=true;
                   1207: 	    }
                   1208: 	}
                   1209: 	updateSelect(formname,id);
1.125     ng       1210: 	formname["stores"+id].value = "0";
1.41      ng       1211:     }
1.5       albertel 1212: 
1.72      ng       1213:     function writeBox(formname,id,pts) {
1.125     ng       1214: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng       1215: 	if (checkSolved(formname,id) == 'update') {
                   1216: 	    gradeBox.value = pts;
                   1217: 	} else {
1.125     ng       1218: 	    var oldpts = formname["oldpts"+id].value;
1.72      ng       1219: 	    gradeBox.value = oldpts;
1.125     ng       1220: 	    var radioButton = formname["RADVAL"+id];
1.71      ng       1221: 	    for (var i=0; i<radioButton.length; i++) {
                   1222: 		radioButton[i].checked=false;
1.72      ng       1223: 		if (i == oldpts) {
1.71      ng       1224: 		    radioButton[i].checked=true;
                   1225: 		}
                   1226: 	    }
1.41      ng       1227: 	}
1.125     ng       1228: 	formname["stores"+id].value = "0";
1.71      ng       1229: 	updateSelect(formname,id);
                   1230: 	return;
1.41      ng       1231:     }
1.44      ng       1232: 
1.71      ng       1233:     function clearRadBox(formname,id) {
                   1234: 	if (checkSolved(formname,id) == 'noupdate') {
                   1235: 	    updateSelect(formname,id);
                   1236: 	    return;
                   1237: 	}
1.125     ng       1238: 	gradeSelect = formname["GD_SEL"+id];
1.71      ng       1239: 	for (var i=0; i<gradeSelect.length; i++) {
                   1240: 	    if (gradeSelect[i].selected) {
                   1241: 		var selectx=i;
                   1242: 	    }
                   1243: 	}
1.125     ng       1244: 	var stores = formname["stores"+id];
1.71      ng       1245: 	if (selectx == stores.value) { return };
1.125     ng       1246: 	var gradeBox = formname["GD_BOX"+id];
1.71      ng       1247: 	gradeBox.value = "";
1.125     ng       1248: 	var radioButton = formname["RADVAL"+id];
1.71      ng       1249: 	for (var i=0; i<radioButton.length; i++) {
                   1250: 	    radioButton[i].checked=false;
                   1251: 	}
                   1252: 	stores.value = selectx;
                   1253:     }
1.5       albertel 1254: 
1.71      ng       1255:     function checkSolved(formname,id) {
1.125     ng       1256: 	if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118     ng       1257: 	    var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
                   1258: 	    if (!reply) {return "noupdate";}
1.120     ng       1259: 	    formname.overRideScore.value = 'yes';
1.41      ng       1260: 	}
1.71      ng       1261: 	return "update";
1.13      albertel 1262:     }
1.71      ng       1263: 
                   1264:     function updateSelect(formname,id) {
1.125     ng       1265: 	formname["GD_SEL"+id][0].selected = true;
1.71      ng       1266: 	return;
1.41      ng       1267:     }
1.33      ng       1268: 
1.121     ng       1269: //=========== Check that a point is assigned for all the parts  ============
1.71      ng       1270:     function checksubmit(formname,val,total,parttot) {
1.121     ng       1271: 	formname.gradeOpt.value = val;
1.71      ng       1272: 	if (val == "Save & Next") {
                   1273: 	    for (i=0;i<=total;i++) {
                   1274: 		for (j=0;j<parttot;j++) {
1.125     ng       1275: 		    var partid = formname["partid"+i+"_"+j].value;
1.127     ng       1276: 		    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng       1277: 			var points = formname["GD_BOX"+i+"_"+partid].value;
1.71      ng       1278: 			if (points == "") {
1.125     ng       1279: 			    var name = formname["name"+i].value;
1.129     ng       1280: 			    var studentID = (name != '' ? name : formname["unamedom"+i].value);
                   1281: 			    var resp = confirm("You did not assign a score for "+studentID+
                   1282: 					       ", part "+partid+". Continue?");
1.71      ng       1283: 			    if (resp == false) {
1.125     ng       1284: 				formname["GD_BOX"+i+"_"+partid].focus();
1.71      ng       1285: 				return false;
                   1286: 			    }
                   1287: 			}
                   1288: 		    }
                   1289: 		    
                   1290: 		}
                   1291: 	    }
                   1292: 	    
                   1293: 	}
1.120     ng       1294: 	formname.submit();
                   1295:     }
                   1296: 
1.71      ng       1297: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
                   1298:     function checkSubmitPage(formname,total) {
                   1299: 	noscore = new Array(100);
                   1300: 	var ptr = 0;
                   1301: 	for (i=1;i<total;i++) {
1.125     ng       1302: 	    var partid = formname["q_"+i].value;
1.127     ng       1303: 	    if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125     ng       1304: 		var points = formname["GD_BOX"+i+"_"+partid].value;
                   1305: 		var status = formname["solved"+i+"_"+partid].value;
1.71      ng       1306: 		if (points == "" && status != "correct_by_student") {
                   1307: 		    noscore[ptr] = i;
                   1308: 		    ptr++;
                   1309: 		}
                   1310: 	    }
                   1311: 	}
                   1312: 	if (ptr != 0) {
                   1313: 	    var sense = ptr == 1 ? ": " : "s: ";
                   1314: 	    var prolist = "";
                   1315: 	    if (ptr == 1) {
                   1316: 		prolist = noscore[0];
                   1317: 	    } else {
                   1318: 		var i = 0;
                   1319: 		while (i < ptr-1) {
                   1320: 		    prolist += noscore[i]+", ";
                   1321: 		    i++;
                   1322: 		}
                   1323: 		prolist += "and "+noscore[i];
                   1324: 	    }
                   1325: 	    var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
                   1326: 	    if (resp == false) {
                   1327: 		return false;
                   1328: 	    }
                   1329: 	}
1.45      ng       1330: 
1.71      ng       1331: 	formname.submit();
                   1332:     }
                   1333: SUBJAVASCRIPT
                   1334: }
1.45      ng       1335: 
1.71      ng       1336: #--- javascript for essay type problem --
                   1337: sub sub_page_kw_js {
                   1338:     my $request = shift;
1.80      ng       1339:     my $iconpath = $request->dir_config('lonIconsURL');
1.118     ng       1340:     &commonJSfunctions($request);
1.350     albertel 1341: 
1.629     www      1342:     my $inner_js_msg_central= (<<INNERJS);
                   1343: <script type="text/javascript">
1.350     albertel 1344:     function checkInput() {
                   1345:       opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
                   1346:       var nmsg   = opener.document.SCORE.savemsgN.value;
                   1347:       var usrctr = document.msgcenter.usrctr.value;
                   1348:       var newval = opener.document.SCORE["newmsg"+usrctr];
                   1349:       newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
                   1350: 
                   1351:       var msgchk = "";
                   1352:       if (document.msgcenter.subchk.checked) {
                   1353:          msgchk = "msgsub,";
                   1354:       }
                   1355:       var includemsg = 0;
                   1356:       for (var i=1; i<=nmsg; i++) {
                   1357:           var opnmsg = opener.document.SCORE["savemsg"+i];
                   1358:           var frmmsg = document.msgcenter["msg"+i];
                   1359:           opnmsg.value = opener.checkEntities(frmmsg.value);
                   1360:           var showflg = opener.document.SCORE["shownOnce"+i];
                   1361:           showflg.value = "1";
                   1362:           var chkbox = document.msgcenter["msgn"+i];
                   1363:           if (chkbox.checked) {
                   1364:              msgchk += "savemsg"+i+",";
                   1365:              includemsg = 1;
                   1366:           }
                   1367:       }
                   1368:       if (document.msgcenter.newmsgchk.checked) {
                   1369:          msgchk += "newmsg"+usrctr;
                   1370:          includemsg = 1;
                   1371:       }
                   1372:       imgformname = opener.document.SCORE["mailicon"+usrctr];
                   1373:       imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
                   1374:       var includemsg = opener.document.SCORE["includemsg"+usrctr];
                   1375:       includemsg.value = msgchk;
                   1376: 
                   1377:       self.close()
                   1378: 
                   1379:     }
1.629     www      1380: </script>
1.350     albertel 1381: INNERJS
                   1382: 
1.629     www      1383:     my $inner_js_highlight_central= (<<INNERJS);
                   1384: <script type="text/javascript">
1.351     albertel 1385:     function updateChoice(flag) {
                   1386:       opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
                   1387:       opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
                   1388:       opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
                   1389:       opener.document.SCORE.refresh.value = "on";
                   1390:       if (opener.document.SCORE.keywords.value!=""){
                   1391:          opener.document.SCORE.submit();
                   1392:       }
                   1393:       self.close()
                   1394:     }
1.629     www      1395: </script>
1.351     albertel 1396: INNERJS
                   1397: 
                   1398:     my $start_page_msg_central = 
                   1399:         &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
                   1400: 				       {'js_ready'  => 1,
                   1401: 					'only_body' => 1,
                   1402: 					'bgcolor'   =>'#FFFFFF',});
                   1403:     my $end_page_msg_central = 
                   1404: 	&Apache::loncommon::end_page({'js_ready' => 1});
                   1405: 
                   1406: 
                   1407:     my $start_page_highlight_central = 
                   1408:         &Apache::loncommon::start_page('Highlight Central',
                   1409: 				       $inner_js_highlight_central,
1.350     albertel 1410: 				       {'js_ready'  => 1,
                   1411: 					'only_body' => 1,
                   1412: 					'bgcolor'   =>'#FFFFFF',});
1.351     albertel 1413:     my $end_page_highlight_central = 
1.350     albertel 1414: 	&Apache::loncommon::end_page({'js_ready' => 1});
                   1415: 
1.219     www      1416:     my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236     albertel 1417:     $docopen=~s/^document\.//;
1.652     raeburn  1418:     my %lt = &Apache::lonlocal::texthash(
                   1419:                 keyw => 'Keywords list, separated by a space. Add/delete to list if desired.',
                   1420:                 plse => 'Please select a word or group of words from document and then click this link.',
                   1421:                 adds => 'Add selection to keyword list? Edit if desired.',
                   1422:                 comp => 'Compose Message for: ',
                   1423:                 incl => 'Include',
1.656     raeburn  1424:                 type => 'Type',
1.652     raeburn  1425:                 subj => 'Subject',
                   1426:                 mesa => 'Message',
                   1427:                 new  => 'New',
                   1428:                 save => 'Save',
                   1429:                 canc => 'Cancel',
                   1430:                 kehi => 'Keyword Highlight Options',
                   1431:                 txtc => 'Text Color',
                   1432:                 font => 'Font Size',
1.656     raeburn  1433:                 fnst => 'Font Style',
1.652     raeburn  1434:              );
1.597     wenzelju 1435:     $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
1.45      ng       1436: 
1.44      ng       1437: //===================== Show list of keywords ====================
1.122     ng       1438:   function keywords(formname) {
1.652     raeburn  1439:     var nret = prompt("$lt{'keyw'}",formname.keywords.value);
1.44      ng       1440:     if (nret==null) return;
1.122     ng       1441:     formname.keywords.value = nret;
1.44      ng       1442: 
1.122     ng       1443:     if (formname.keywords.value != "") {
1.128     ng       1444: 	formname.refresh.value = "on";
1.122     ng       1445: 	formname.submit();
1.44      ng       1446:     }
                   1447:     return;
                   1448:   }
                   1449: 
                   1450: //===================== Script to view submitted by ==================
                   1451:   function viewSubmitter(submitter) {
                   1452:     document.SCORE.refresh.value = "on";
                   1453:     document.SCORE.NCT.value = "1";
                   1454:     document.SCORE.unamedom0.value = submitter;
                   1455:     document.SCORE.submit();
                   1456:     return;
                   1457:   }
                   1458: 
                   1459: //===================== Script to add keyword(s) ==================
                   1460:   function getSel() {
                   1461:     if (document.getSelection) txt = document.getSelection();
                   1462:     else if (document.selection) txt = document.selection.createRange().text;
                   1463:     else return;
                   1464:     var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
                   1465:     if (cleantxt=="") {
1.652     raeburn  1466: 	alert("$lt{'plse'}");
1.44      ng       1467: 	return;
                   1468:     }
1.652     raeburn  1469:     var nret = prompt("$lt{'adds'}",cleantxt);
1.44      ng       1470:     if (nret==null) return;
1.127     ng       1471:     document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44      ng       1472:     if (document.SCORE.keywords.value != "") {
1.127     ng       1473: 	document.SCORE.refresh.value = "on";
1.44      ng       1474: 	document.SCORE.submit();
                   1475:     }
                   1476:     return;
                   1477:   }
                   1478: 
                   1479: //====================== Script for composing message ==============
1.80      ng       1480:    // preload images
                   1481:    img1 = new Image();
                   1482:    img1.src = "$iconpath/mailbkgrd.gif";
                   1483:    img2 = new Image();
                   1484:    img2.src = "$iconpath/mailto.gif";
                   1485: 
1.44      ng       1486:   function msgCenter(msgform,usrctr,fullname) {
                   1487:     var Nmsg  = msgform.savemsgN.value;
                   1488:     savedMsgHeader(Nmsg,usrctr,fullname);
                   1489:     var subject = msgform.msgsub.value;
1.127     ng       1490:     var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44      ng       1491:     re = /msgsub/;
                   1492:     var shwsel = "";
                   1493:     if (re.test(msgchk)) { shwsel = "checked" }
1.123     ng       1494:     subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
                   1495:     displaySubject(checkEntities(subject),shwsel);
1.44      ng       1496:     for (var i=1; i<=Nmsg; i++) {
1.123     ng       1497: 	var testmsg = "savemsg"+i+",";
                   1498: 	re = new RegExp(testmsg,"g");
1.44      ng       1499: 	shwsel = "";
                   1500: 	if (re.test(msgchk)) { shwsel = "checked" }
1.125     ng       1501: 	var message = document.SCORE["savemsg"+i].value;
1.126     ng       1502: 	message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123     ng       1503: 	displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
                   1504: 	                                   //any &lt; is already converted to <, etc. However, only once!!
1.44      ng       1505:     }
1.125     ng       1506:     newmsg = document.SCORE["newmsg"+usrctr].value;
1.44      ng       1507:     shwsel = "";
                   1508:     re = /newmsg/;
                   1509:     if (re.test(msgchk)) { shwsel = "checked" }
                   1510:     newMsg(newmsg,shwsel);
                   1511:     msgTail(); 
                   1512:     return;
                   1513:   }
                   1514: 
1.123     ng       1515:   function checkEntities(strx) {
                   1516:     if (strx.length == 0) return strx;
                   1517:     var orgStr = ["&", "<", ">", '"']; 
                   1518:     var newStr = ["&amp;", "&lt;", "&gt;", "&quot;"];
                   1519:     var counter = 0;
                   1520:     while (counter < 4) {
                   1521: 	strx = strReplace(strx,orgStr[counter],newStr[counter]);
                   1522: 	counter++;
                   1523:     }
                   1524:     return strx;
                   1525:   }
                   1526: 
                   1527:   function strReplace(strx, orgStr, newStr) {
                   1528:     return strx.split(orgStr).join(newStr);
                   1529:   }
                   1530: 
1.44      ng       1531:   function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76      ng       1532:     var height = 70*Nmsg+250;
1.44      ng       1533:     if (height > 600) {
                   1534: 	height = 600;
                   1535:     }
1.118     ng       1536:     var xpos = (screen.width-600)/2;
                   1537:     xpos = (xpos < 0) ? '0' : xpos;
                   1538:     var ypos = (screen.height-height)/2-30;
                   1539:     ypos = (ypos < 0) ? '0' : ypos;
                   1540: 
1.668     www      1541:     pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars=yes,screenx='+xpos+',screeny='+ypos+',width=700,height='+height);
1.76      ng       1542:     pWin.focus();
                   1543:     pDoc = pWin.document;
1.219     www      1544:     pDoc.$docopen;
1.351     albertel 1545:     pDoc.write('$start_page_msg_central');
1.76      ng       1546: 
                   1547:     pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
                   1548:     pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.676     golterma 1549:     pDoc.write("<h1>&nbsp;$lt{'comp'}\"+fullname+\"<\\/h1>");
1.76      ng       1550: 
1.676     golterma 1551:     pDoc.write('<table style="border:1px solid black;"><tr>');
                   1552:     pDoc.write("<td><b>$lt{'incl'}<\\/b><\\/td><td><b>$lt{'type'}<\\/b><\\/td><td><b>$lt{'mesa'}<\\/td><\\/tr>");
1.44      ng       1553: }
                   1554:     function displaySubject(msg,shwsel) {
1.76      ng       1555:     pDoc = pWin.document;
1.676     golterma 1556:     pDoc.write("<tr>");
                   1557:     pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.652     raeburn  1558:     pDoc.write("<td>$lt{'subj'}<\\/td>");
1.676     golterma 1559:     pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"40\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44      ng       1560: }
                   1561: 
1.72      ng       1562:   function displaySavedMsg(ctr,msg,shwsel) {
1.76      ng       1563:     pDoc = pWin.document;
1.676     golterma 1564:     pDoc.write("<tr>");
                   1565:     pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.465     albertel 1566:     pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
                   1567:     pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44      ng       1568: }
                   1569: 
                   1570:   function newMsg(newmsg,shwsel) {
1.76      ng       1571:     pDoc = pWin.document;
1.676     golterma 1572:     pDoc.write("<tr>");
                   1573:     pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.652     raeburn  1574:     pDoc.write("<td align=\\"center\\">$lt{'new'}<\\/td>");
1.465     albertel 1575:     pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44      ng       1576: }
                   1577: 
                   1578:   function msgTail() {
1.76      ng       1579:     pDoc = pWin.document;
1.676     golterma 1580:     //pDoc.write("<\\/table>");
1.465     albertel 1581:     pDoc.write("<\\/td><\\/tr><\\/table>&nbsp;");
1.652     raeburn  1582:     pDoc.write("<input type=\\"button\\" value=\\"$lt{'save'}\\" onclick=\\"javascript:checkInput()\\">&nbsp;&nbsp;");
                   1583:     pDoc.write("<input type=\\"button\\" value=\\"$lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465     albertel 1584:     pDoc.write("<\\/form>");
1.351     albertel 1585:     pDoc.write('$end_page_msg_central');
1.128     ng       1586:     pDoc.close();
1.44      ng       1587: }
                   1588: 
                   1589: //====================== Script for keyword highlight options ==============
                   1590:   function kwhighlight() {
                   1591:     var kwclr    = document.SCORE.kwclr.value;
                   1592:     var kwsize   = document.SCORE.kwsize.value;
                   1593:     var kwstyle  = document.SCORE.kwstyle.value;
                   1594:     var redsel = "";
                   1595:     var grnsel = "";
                   1596:     var blusel = "";
                   1597:     if (kwclr=="red")   {var redsel="checked"};
                   1598:     if (kwclr=="green") {var grnsel="checked"};
                   1599:     if (kwclr=="blue")  {var blusel="checked"};
                   1600:     var sznsel = "";
                   1601:     var sz1sel = "";
                   1602:     var sz2sel = "";
                   1603:     if (kwsize=="0")  {var sznsel="checked"};
                   1604:     if (kwsize=="+1") {var sz1sel="checked"};
                   1605:     if (kwsize=="+2") {var sz2sel="checked"};
                   1606:     var synsel = "";
                   1607:     var syisel = "";
                   1608:     var sybsel = "";
                   1609:     if (kwstyle=="")    {var synsel="checked"};
                   1610:     if (kwstyle=="<i>") {var syisel="checked"};
                   1611:     if (kwstyle=="<b>") {var sybsel="checked"};
                   1612:     highlightCentral();
                   1613:     highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
                   1614:     highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
                   1615:     highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
                   1616:     highlightend();
                   1617:     return;
                   1618:   }
                   1619: 
                   1620:   function highlightCentral() {
1.76      ng       1621: //    if (window.hwdWin) window.hwdWin.close();
1.118     ng       1622:     var xpos = (screen.width-400)/2;
                   1623:     xpos = (xpos < 0) ? '0' : xpos;
                   1624:     var ypos = (screen.height-330)/2-30;
                   1625:     ypos = (ypos < 0) ? '0' : ypos;
                   1626: 
1.206     albertel 1627:     hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76      ng       1628:     hwdWin.focus();
                   1629:     var hDoc = hwdWin.document;
1.219     www      1630:     hDoc.$docopen;
1.351     albertel 1631:     hDoc.write('$start_page_highlight_central');
1.76      ng       1632:     hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.652     raeburn  1633:     hDoc.write("<h3><span class=\\"LC_info\\">&nbsp;$lt{'kehi'}<\\/span><\\/h3><br /><br />");
1.76      ng       1634: 
1.564     bisitz   1635:     hDoc.write('<table border="0" width="100%"><tr><td bgcolor="#777777">');
                   1636:     hDoc.write('<table border="0" width="100%"><tr bgcolor="#DDFFFF">');
1.656     raeburn  1637:     hDoc.write("<td><b>$lt{'txtc'}<\\/b><\\/td><td><b>$lt{'font'}<\\/b><\\/td><td><b>$lt{'fnst'}<\\/td><\\/tr>");
1.44      ng       1638:   }
                   1639: 
                   1640:   function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) { 
1.76      ng       1641:     var hDoc = hwdWin.document;
                   1642:     hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
                   1643:     hDoc.write("<td align=\\"left\\">");
1.465     albertel 1644:     hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+">&nbsp;"+clrtxt+"<\\/td>");
1.76      ng       1645:     hDoc.write("<td align=\\"left\\">");
1.465     albertel 1646:     hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+">&nbsp;"+sztxt+"<\\/td>");
1.76      ng       1647:     hDoc.write("<td align=\\"left\\">");
1.465     albertel 1648:     hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+">&nbsp;"+sytxt+"<\\/td>");
                   1649:     hDoc.write("<\\/tr>");
1.44      ng       1650:   }
                   1651: 
                   1652:   function highlightend() { 
1.76      ng       1653:     var hDoc = hwdWin.document;
1.465     albertel 1654:     hDoc.write("<\\/table>");
                   1655:     hDoc.write("<\\/td><\\/tr><\\/table>&nbsp;");
1.652     raeburn  1656:     hDoc.write("<input type=\\"button\\" value=\\"$lt{'save'}\\" onclick=\\"javascript:updateChoice(1)\\">&nbsp;&nbsp;");
                   1657:     hDoc.write("<input type=\\"button\\" value=\\"$lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465     albertel 1658:     hDoc.write("<\\/form>");
1.351     albertel 1659:     hDoc.write('$end_page_highlight_central');
1.128     ng       1660:     hDoc.close();
1.44      ng       1661:   }
                   1662: 
                   1663: SUBJAVASCRIPT
                   1664: }
                   1665: 
1.349     albertel 1666: sub get_increment {
1.348     bowersj2 1667:     my $increment = $env{'form.increment'};
                   1668:     if ($increment != 1 && $increment != .5 && $increment != .25 &&
                   1669:         $increment != .1) {
                   1670:         $increment = 1;
                   1671:     }
                   1672:     return $increment;
                   1673: }
                   1674: 
1.585     bisitz   1675: sub gradeBox_start {
                   1676:     return (
                   1677:         &Apache::loncommon::start_data_table()
                   1678:        .&Apache::loncommon::start_data_table_header_row()
                   1679:        .'<th>'.&mt('Part').'</th>'
                   1680:        .'<th>'.&mt('Points').'</th>'
                   1681:        .'<th>&nbsp;</th>'
                   1682:        .'<th>'.&mt('Assign Grade').'</th>'
                   1683:        .'<th>'.&mt('Weight').'</th>'
                   1684:        .'<th>'.&mt('Grade Status').'</th>'
                   1685:        .&Apache::loncommon::end_data_table_header_row()
                   1686:     );
                   1687: }
                   1688: 
                   1689: sub gradeBox_end {
                   1690:     return (
                   1691:         &Apache::loncommon::end_data_table()
                   1692:     );
                   1693: }
1.71      ng       1694: #--- displays the grading box, used in essay type problem and grading by page/sequence
                   1695: sub gradeBox {
1.322     albertel 1696:     my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381     albertel 1697:     my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485     albertel 1698: 	'" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71      ng       1699:     my $wgt    = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466     albertel 1700:     my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)') 
                   1701:                            : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71      ng       1702:     $wgt       = ($wgt > 0 ? $wgt : '1');
                   1703:     my $score  = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320     albertel 1704: 		  '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71      ng       1705:     my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466     albertel 1706:     my $display_part= &get_display_part($partid,$symb);
1.270     albertel 1707:     my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
                   1708: 				       [$partid]);
                   1709:     my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269     raeburn  1710:     if ($last_resets{$partid}) {
                   1711:         $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
                   1712:     }
1.585     bisitz   1713:     $result.=&Apache::loncommon::start_data_table_row();
1.71      ng       1714:     my $ctr = 0;
1.348     bowersj2 1715:     my $thisweight = 0;
1.349     albertel 1716:     my $increment = &get_increment();
1.485     albertel 1717: 
                   1718:     my $radio.='<table border="0"><tr>'."\n";  # display radio buttons in a nice table 10 across
1.348     bowersj2 1719:     while ($thisweight<=$wgt) {
1.532     bisitz   1720: 	$radio.= '<td><span class="LC_nobreak"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.589     bisitz   1721:         'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348     bowersj2 1722: 	    $thisweight.')" value="'.$thisweight.'" '.
1.401     albertel 1723: 	    ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.485     albertel 1724: 	$radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348     bowersj2 1725:         $thisweight += $increment;
1.71      ng       1726: 	$ctr++;
                   1727:     }
1.485     albertel 1728:     $radio.='</tr></table>';
                   1729: 
                   1730:     my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1.71      ng       1731: 	($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1.589     bisitz   1732: 	'onchange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1.71      ng       1733: 	$wgt.')" /></td>'."\n";
1.485     albertel 1734:     $line.='<td>/'.$wgt.' '.$wgtmsg.
1.71      ng       1735: 	($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? '&nbsp;'.$checkIcon : '').
1.585     bisitz   1736: 	' </td>'."\n";
                   1737:     $line.='<td><select name="GD_SEL'.$counter.'_'.$partid.'" '.
1.589     bisitz   1738: 	'onchange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1.71      ng       1739:     if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.485     albertel 1740: 	$line.='<option></option>'.
                   1741: 	    '<option value="excused" selected="selected">'.&mt('excused').'</option>';
1.71      ng       1742:     } else {
1.485     albertel 1743: 	$line.='<option selected="selected"></option>'.
                   1744: 	    '<option value="excused" >'.&mt('excused').'</option>';
1.71      ng       1745:     }
1.485     albertel 1746:     $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
                   1747: 
                   1748: 
                   1749:     $result .= 
1.585     bisitz   1750: 	    '<td>'.$display_part.'</td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>';
                   1751:     $result.=&Apache::loncommon::end_data_table_row();
1.71      ng       1752:     $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
                   1753: 	'<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
                   1754: 	'<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269     raeburn  1755: 	$$record{'resource.'.$partid.'.solved'}.'" />'."\n".
                   1756:         '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
                   1757:         $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
                   1758:         '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
                   1759:         $aggtries.'" />'."\n";
1.582     raeburn  1760:     my $res_error;
                   1761:     $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record,\$res_error);
                   1762:     if ($res_error) {
                   1763:         return &navmap_errormsg();
                   1764:     }
1.318     banghart 1765:     return $result;
                   1766: }
1.322     albertel 1767: 
                   1768: sub handback_box {
1.623     www      1769:     my ($symb,$uname,$udom,$counter,$partid,$record,$res_error_pointer) = @_;
                   1770:     my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error_pointer);
1.323     banghart 1771:     my (@respids);
1.652     raeburn  1772:     my @part_response_id = &flatten_responseType($responseType);
1.375     albertel 1773:     foreach my $part_response_id (@part_response_id) {
                   1774:     	my ($part,$resp) = @{ $part_response_id };
1.323     banghart 1775:         if ($part eq $partid) {
1.375     albertel 1776:             push(@respids,$resp);
1.323     banghart 1777:         }
                   1778:     }
1.318     banghart 1779:     my $result;
1.323     banghart 1780:     foreach my $respid (@respids) {
1.322     albertel 1781: 	my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
                   1782: 	my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
                   1783: 	next if (!@$files);
1.654     raeburn  1784: 	my $file_counter = 0;
1.313     banghart 1785: 	foreach my $file (@$files) {
1.368     banghart 1786: 	    if ($file =~ /\/portfolio\//) {
1.654     raeburn  1787:                 $file_counter++;
1.368     banghart 1788:     	        my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
                   1789:     	        my ($name,$version,$ext) = &file_name_version_ext($file_disp);
                   1790:     	        $file_disp = "$name.$ext";
                   1791:     	        $file = $file_path.$file_disp;
                   1792:     	        $result.=&mt('Return commented version of [_1] to student.',
                   1793:     			 '<span class="LC_filename">'.$file_disp.'</span>');
                   1794:     	        $result.='<input type="file"   name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1.654     raeburn  1795:     	        $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />'."\n";
1.368     banghart 1796: 	    }
1.322     albertel 1797: 	}
1.654     raeburn  1798:         if ($file_counter) {
                   1799:             $result .= '<input type="hidden" name="'.$prefix.'countreturndoc" value="'.$file_counter.'" />'."\n".
                   1800:                        '<span class="LC_info">'.
                   1801:                        '('.&mt('File(s) will be uploaded when you click on Save &amp; Next below.',$file_counter).')</span><br /><br />';
                   1802:         }
1.313     banghart 1803:     }
1.318     banghart 1804:     return $result;    
1.71      ng       1805: }
1.44      ng       1806: 
1.58      albertel 1807: sub show_problem {
1.382     albertel 1808:     my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144     albertel 1809:     my $rendered;
1.382     albertel 1810:     my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329     albertel 1811:     &Apache::lonxml::remember_problem_counter();
1.144     albertel 1812:     if ($mode eq 'both' or $mode eq 'text') {
                   1813: 	$rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382     albertel 1814: 						       $env{'request.course.id'},
                   1815: 						       undef,\%form);
1.144     albertel 1816:     }
1.58      albertel 1817:     if ($removeform) {
                   1818: 	$rendered=~s|<form(.*?)>||g;
                   1819: 	$rendered=~s|</form>||g;
1.374     albertel 1820: 	$rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58      albertel 1821:     }
1.144     albertel 1822:     my $companswer;
                   1823:     if ($mode eq 'both' or $mode eq 'answer') {
1.329     albertel 1824: 	&Apache::lonxml::restore_problem_counter();
1.382     albertel 1825: 	$companswer=
                   1826: 	    &Apache::loncommon::get_student_answers($symb,$uname,$udom,
                   1827: 						    $env{'request.course.id'},
                   1828: 						    %form);
1.144     albertel 1829:     }
1.58      albertel 1830:     if ($removeform) {
                   1831: 	$companswer=~s|<form(.*?)>||g;
                   1832: 	$companswer=~s|</form>||g;
1.144     albertel 1833: 	$companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58      albertel 1834:     }
1.671     raeburn  1835:     my $renderheading = &mt('View of the problem');
                   1836:     my $answerheading = &mt('Correct answer');
                   1837:     if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
                   1838:         my $stu_fullname = $env{'form.fullname'};
                   1839:         if ($stu_fullname eq '') {
                   1840:             $stu_fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
                   1841:         }
                   1842:         my $forwhom = &nameUserString(undef,$stu_fullname,$uname,$udom);
                   1843:         if ($forwhom ne '') {
                   1844:             $renderheading = &mt('View of the problem for[_1]',$forwhom);
                   1845:             $answerheading = &mt('Correct answer for[_1]',$forwhom);
                   1846:         }
                   1847:     }
1.468     albertel 1848:     $rendered=
1.588     bisitz   1849:         '<div class="LC_Box">'
1.671     raeburn  1850:        .'<h3 class="LC_hcell">'.$renderheading.'</h3>'
1.588     bisitz   1851:        .$rendered
                   1852:        .'</div>';
1.468     albertel 1853:     $companswer=
1.588     bisitz   1854:         '<div class="LC_Box">'
1.671     raeburn  1855:        .'<h3 class="LC_hcell">'.$answerheading.'</h3>'
1.588     bisitz   1856:        .$companswer
                   1857:        .'</div>';
1.468     albertel 1858:     my $result;
1.144     albertel 1859:     if ($mode eq 'both') {
1.588     bisitz   1860:         $result=$rendered.$companswer;
1.144     albertel 1861:     } elsif ($mode eq 'text') {
1.588     bisitz   1862:         $result=$rendered;
1.144     albertel 1863:     } elsif ($mode eq 'answer') {
1.588     bisitz   1864:         $result=$companswer;
1.144     albertel 1865:     }
1.71      ng       1866:     return $result;
1.58      albertel 1867: }
1.397     albertel 1868: 
1.396     banghart 1869: sub files_exist {
                   1870:     my ($r, $symb) = @_;
                   1871:     my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397     albertel 1872: 
1.396     banghart 1873:     foreach my $student (@students) {
                   1874:         my ($uname,$udom,$fullname) = split(/:/,$student);
1.397     albertel 1875:         my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
                   1876: 					      $udom,$uname);
1.396     banghart 1877:         my ($string,$timestamp)= &get_last_submission(\%record);
1.397     albertel 1878:         foreach my $submission (@$string) {
                   1879:             my ($partid,$respid) =
                   1880: 		($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
                   1881:             my $files=&get_submitted_files($udom,$uname,$partid,$respid,
                   1882: 					   \%record);
                   1883:             return 1 if (@$files);
1.396     banghart 1884:         }
                   1885:     }
1.397     albertel 1886:     return 0;
1.396     banghart 1887: }
1.397     albertel 1888: 
1.394     banghart 1889: sub download_all_link {
                   1890:     my ($r,$symb) = @_;
1.621     www      1891:     unless (&files_exist($r, $symb)) {
                   1892:        $r->print(&mt('There are currently no submitted documents.'));
                   1893:        return;
                   1894:     }
                   1895: 
1.395     albertel 1896:     my $all_students = 
                   1897: 	join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
                   1898: 
                   1899:     my $parts =
                   1900: 	join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
                   1901: 
1.394     banghart 1902:     my $identifier = &Apache::loncommon::get_cgi_id();
1.514     raeburn  1903:     &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
                   1904:                              'cgi.'.$identifier.'.symb' => $symb,
                   1905:                              'cgi.'.$identifier.'.parts' => $parts,});
1.395     albertel 1906:     $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
                   1907: 	      &mt('Download All Submitted Documents').'</a>');
1.621     www      1908:     return;
                   1909: }
                   1910: 
                   1911: sub submit_download_link {
                   1912:     my ($request,$symb) = @_;
                   1913:     if (!$symb) { return ''; }
                   1914: #FIXME: Figure out which type of problem this is and provide appropriate download
                   1915:     &download_all_link($request,$symb);
1.394     banghart 1916: }
1.395     albertel 1917: 
1.432     banghart 1918: sub build_section_inputs {
                   1919:     my $section_inputs;
                   1920:     if ($env{'form.section'} eq '') {
                   1921:         $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
                   1922:     } else {
                   1923:         my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434     albertel 1924:         foreach my $section (@sections) {
1.432     banghart 1925:             $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
                   1926:         }
                   1927:     }
                   1928:     return $section_inputs;
                   1929: }
                   1930: 
1.44      ng       1931: # --------------------------- show submissions of a student, option to grade 
                   1932: sub submission {
1.608     www      1933:     my ($request,$counter,$total,$symb) = @_;
1.257     albertel 1934:     my ($uname,$udom)     = ($env{'form.student'},$env{'form.userdom'});
                   1935:     $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
                   1936:     my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
                   1937:     $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.608     www      1938: 
1.605     www      1939:     my $probtitle=&Apache::lonnet::gettitle($symb); 
1.324     albertel 1940:     if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104     albertel 1941: 
                   1942:     if (!&canview($usec)) {
1.398     albertel 1943: 	$request->print('<span class="LC_warning">Unable to view requested student.('.
                   1944: 			$uname.':'.$udom.' in section '.$usec.' in course id '.
                   1945: 			$env{'request.course.id'}.')</span>');
1.104     albertel 1946: 	return;
                   1947:     }
                   1948: 
1.257     albertel 1949:     if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
                   1950:     if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
                   1951:     if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
                   1952:     my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381     albertel 1953:     my $checkIcon = '<img alt="'.&mt('Check Mark').
                   1954: 	'" src="'.$request->dir_config('lonIconsURL').
1.122     ng       1955: 	'/check.gif" height="16" border="0" />';
1.41      ng       1956: 
                   1957:     # header info
                   1958:     if ($counter == 0) {
                   1959: 	&sub_page_js($request);
1.621     www      1960: 	&sub_page_kw_js($request);
1.118     ng       1961: 
1.44      ng       1962: 	# option to display problem, only once else it cause problems 
                   1963:         # with the form later since the problem has a form.
1.257     albertel 1964: 	if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144     albertel 1965: 	    my $mode;
1.257     albertel 1966: 	    if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144     albertel 1967: 		$mode='both';
1.257     albertel 1968: 	    } elsif ($env{'form.vProb'} eq 'yes') {
1.144     albertel 1969: 		$mode='text';
1.257     albertel 1970: 	    } elsif ($env{'form.vAns'} eq 'yes') {
1.144     albertel 1971: 		$mode='answer';
                   1972: 	    }
1.329     albertel 1973: 	    &Apache::lonxml::clear_problem_counter();
1.144     albertel 1974: 	    $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41      ng       1975: 	}
1.441     www      1976: 
1.44      ng       1977: 	# kwclr is the only variable that is guaranteed to be non blank 
                   1978:         # if this subroutine has been called once.
1.41      ng       1979: 	my %keyhash = ();
1.624     www      1980: #	if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
                   1981:         if (1) {
1.41      ng       1982: 	    %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257     albertel 1983: 					     $env{'course.'.$env{'request.course.id'}.'.domain'},
                   1984: 					     $env{'course.'.$env{'request.course.id'}.'.num'});
1.41      ng       1985: 
1.257     albertel 1986: 	    my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
                   1987: 	    $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
                   1988: 	    $env{'form.kwclr'}    = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
                   1989: 	    $env{'form.kwsize'}   = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
                   1990: 	    $env{'form.kwstyle'}  = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
                   1991: 	    $env{'form.msgsub'}   = $keyhash{$symb.'_subject'} ne '' ? 
1.605     www      1992: 		$keyhash{$symb.'_subject'} : $probtitle;
1.257     albertel 1993: 	    $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41      ng       1994: 	}
1.257     albertel 1995: 	my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442     banghart 1996: 	my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303     banghart 1997: 	$request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41      ng       1998: 			'<input type="hidden" name="command"    value="handgrade" />'."\n".
1.442     banghart 1999: 			'<input type="hidden" name="Status"     value="'.$stu_status.'" />'."\n".
1.120     ng       2000: 			'<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.41      ng       2001: 			'<input type="hidden" name="refresh"    value="off" />'."\n".
1.120     ng       2002: 			'<input type="hidden" name="studentNo"  value="" />'."\n".
                   2003: 			'<input type="hidden" name="gradeOpt"   value="" />'."\n".
1.418     albertel 2004: 			'<input type="hidden" name="symb"       value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257     albertel 2005: 			'<input type="hidden" name="vProb"      value="'.$env{'form.vProb'}.'" />'."\n".
                   2006: 			'<input type="hidden" name="vAns"       value="'.$env{'form.vAns'}.'" />'."\n".
                   2007: 			'<input type="hidden" name="lastSub"    value="'.$env{'form.lastSub'}.'" />'."\n".
1.432     banghart 2008: 			&build_section_inputs().
1.326     albertel 2009: 			'<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
1.41      ng       2010: 			'<input type="hidden" name="NCT"'.
1.257     albertel 2011: 			' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
1.624     www      2012: #	if ($env{'form.handgrade'} eq 'yes') {
                   2013:         if (1) {
1.257     albertel 2014: 	    $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
                   2015: 			    '<input type="hidden" name="kwclr"    value="'.$env{'form.kwclr'}.'" />'."\n".
                   2016: 			    '<input type="hidden" name="kwsize"   value="'.$env{'form.kwsize'}.'" />'."\n".
                   2017: 			    '<input type="hidden" name="kwstyle"  value="'.$env{'form.kwstyle'}.'" />'."\n".
                   2018: 			    '<input type="hidden" name="msgsub"   value="'.$env{'form.msgsub'}.'" />'."\n".
1.123     ng       2019: 			    '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257     albertel 2020: 			    '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154     albertel 2021: 	    foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
                   2022: 		$request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
                   2023: 	    }
1.123     ng       2024: 	}
1.41      ng       2025: 	
                   2026: 	my ($cts,$prnmsg) = (1,'');
1.257     albertel 2027: 	while ($cts <= $env{'form.savemsgN'}) {
1.41      ng       2028: 	    $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123     ng       2029: 		(!exists($keyhash{$symb.'_savemsg'.$cts}) ? 
1.257     albertel 2030: 		 &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80      ng       2031: 		 &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123     ng       2032: 		'" />'."\n".
                   2033: 		'<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41      ng       2034: 	    $cts++;
                   2035: 	}
                   2036: 	$request->print($prnmsg);
1.32      ng       2037: 
1.624     www      2038: #	if ($env{'form.handgrade'} eq 'yes') {
                   2039:         if (1) {
1.652     raeburn  2040: 
                   2041:             my %lt = &Apache::lonlocal::texthash(
                   2042:                           keyw => 'Keyword Options',
1.655     raeburn  2043:                           list => 'List',
1.652     raeburn  2044:                           past => 'Paste Selection to List',
1.661     www      2045:                           high => 'Highlight Attribute',
1.652     raeburn  2046:                      );    
1.88      www      2047: #
                   2048: # Print out the keyword options line
                   2049: #
1.41      ng       2050: 	    $request->print(<<KEYWORDS);
1.652     raeburn  2051: <br /><b>$lt{'keyw'}:</b>&nbsp;
1.655     raeburn  2052: <a href="javascript:keywords(document.SCORE);" target="_self">$lt{'list'}</a>&nbsp; &nbsp;
1.589     bisitz   2053: <a href="#" onmousedown="javascript:getSel(); return false"
1.652     raeburn  2054:  CLASS="page">$lt{'past'}</a>&nbsp; &nbsp;
                   2055: <a href="javascript:kwhighlight();" target="_self">$lt{'high'}</a><br /><br />
1.38      ng       2056: KEYWORDS
1.88      www      2057: #
                   2058: # Load the other essays for similarity check
                   2059: #
1.324     albertel 2060:             my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384     albertel 2061: 	    my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359     www      2062: 	    $apath=&escape($apath);
1.88      www      2063: 	    $apath=~s/\W/\_/gs;
1.674     raeburn  2064:             &init_old_essays($symb,$apath,$adom,$aname);
1.41      ng       2065:         }
                   2066:     }
1.44      ng       2067: 
1.441     www      2068: # This is where output for one specific student would start
1.592     bisitz   2069:     my $add_class = ($counter%2) ? ' LC_grade_show_user_odd_row' : '';
                   2070:     $request->print(
                   2071:         "\n\n"
                   2072:        .'<div class="LC_grade_show_user'.$add_class.'">'
                   2073:        .'<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</h2>'
                   2074:        ."\n"
                   2075:     );
1.441     www      2076: 
1.592     bisitz   2077:     # Show additional functions if allowed
                   2078:     if ($perm{'vgr'}) {
                   2079:         $request->print(
                   2080:             &Apache::loncommon::track_student_link(
                   2081:                 &mt('View recent activity'),
                   2082:                 $uname,$udom,'check')
                   2083:            .' '
                   2084:         );
                   2085:     }
                   2086:     if ($perm{'opa'}) {
                   2087:         $request->print(
                   2088:             &Apache::loncommon::pprmlink(
                   2089:                 &mt('Set/Change parameters'),
                   2090:                 $uname,$udom,$symb,'check'));
                   2091:     }
                   2092: 
                   2093:     # Show Problem
1.257     albertel 2094:     if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144     albertel 2095: 	my $mode;
1.257     albertel 2096: 	if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144     albertel 2097: 	    $mode='both';
1.257     albertel 2098: 	} elsif ($env{'form.vProb'} eq 'all' ) {
1.144     albertel 2099: 	    $mode='text';
1.257     albertel 2100: 	} elsif ($env{'form.vAns'} eq 'all') {
1.144     albertel 2101: 	    $mode='answer';
                   2102: 	}
1.329     albertel 2103: 	&Apache::lonxml::clear_problem_counter();
1.475     albertel 2104: 	$request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58      albertel 2105:     }
1.144     albertel 2106: 
1.257     albertel 2107:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.582     raeburn  2108:     my $res_error;
                   2109:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
                   2110:     if ($res_error) {
                   2111:         $request->print(&navmap_errormsg());
                   2112:         return;
                   2113:     }
1.41      ng       2114: 
1.44      ng       2115:     # Display student info
1.41      ng       2116:     $request->print(($counter == 0 ? '' : '<br />'));
1.590     bisitz   2117: 
                   2118:     my $result='<div class="LC_Box">'
                   2119:               .'<h3 class="LC_hcell">'.&mt('Submissions').'</h3>';
1.45      ng       2120:     $result.='<input type="hidden" name="name'.$counter.
1.588     bisitz   2121:              '" value="'.$env{'form.fullname'}.'" />'."\n";
1.624     www      2122: #    if ($env{'form.handgrade'} eq 'no') {
                   2123:     if (1) {
1.588     bisitz   2124:         $result.='<p class="LC_info">'
                   2125:                 .&mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)
                   2126:                 ."</p>\n";
1.469     albertel 2127:     }
                   2128: 
1.118     ng       2129:     # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464     albertel 2130:     my $fullname;
                   2131:     my $col_fullnames = [];
1.624     www      2132: #    if ($env{'form.handgrade'} eq 'yes') {
                   2133:     if (1) {
1.464     albertel 2134: 	(my $sub_result,$fullname,$col_fullnames)=
                   2135: 	    &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
                   2136: 				 $counter);
                   2137: 	$result.=$sub_result;
1.41      ng       2138:     }
1.44      ng       2139:     $request->print($result."\n");
1.588     bisitz   2140: 
1.44      ng       2141:     # print student answer/submission
1.588     bisitz   2142:     # Options are (1) Handgraded submission only
1.44      ng       2143:     #             (2) Last submission, includes submission that is not handgraded 
                   2144:     #                  (for multi-response type part)
                   2145:     #             (3) Last submission plus the parts info
                   2146:     #             (4) The whole record for this student
1.257     albertel 2147:     if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151     albertel 2148: 	my ($string,$timestamp)= &get_last_submission(\%record);
1.468     albertel 2149: 	
                   2150: 	my $lastsubonly;
                   2151: 
1.588     bisitz   2152:         if ($$timestamp eq '') {
                   2153:             $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>'; 
                   2154:         } else {
1.592     bisitz   2155:             $lastsubonly =
                   2156:                 '<div class="LC_grade_submissions_body">'
                   2157:                .'<b>'.&mt('Date Submitted:').'</b> '.$$timestamp."\n";
1.468     albertel 2158: 
1.151     albertel 2159: 	    my %seenparts;
1.375     albertel 2160: 	    my @part_response_id = &flatten_responseType($responseType);
                   2161: 	    foreach my $part (@part_response_id) {
1.393     albertel 2162: 		next if ($env{'form.lastSub'} eq 'hdgrade' 
                   2163: 			 && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
                   2164: 
1.375     albertel 2165: 		my ($partid,$respid) = @{ $part };
1.324     albertel 2166: 		my $display_part=&get_display_part($partid,$symb);
1.257     albertel 2167: 		if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151     albertel 2168: 		    if (exists($seenparts{$partid})) { next; }
                   2169: 		    $seenparts{$partid}=1;
1.207     albertel 2170: 		    my $submitby='<b>Part:</b> '.$display_part.
                   2171: 			' <b>Collaborative submission by:</b> '.
1.151     albertel 2172: 			'<a href="javascript:viewSubmitter(\''.
1.257     albertel 2173: 			$env{"form.$uname:$udom:$partid:submitted_by"}.
1.417     albertel 2174: 			'\');" target="_self">'.
1.257     albertel 2175: 			$$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151     albertel 2176: 		    $request->print($submitby);
                   2177: 		    next;
                   2178: 		}
                   2179: 		my $responsetype = $responseType->{$partid}->{$respid};
                   2180: 		if (!exists($record{"resource.$partid.$respid.submission"})) {
1.577     bisitz   2181:                     $lastsubonly.="\n".'<div class="LC_grade_submission_part">'.
                   2182:                         '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
                   2183:                         ' <span class="LC_internal_info">'.
1.623     www      2184:                         '('.&mt('Response ID: [_1]',$respid).')'.
1.577     bisitz   2185:                         '</span>&nbsp; &nbsp;'.
1.539     riegler  2186: 			'<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br /><br /></div>';
1.151     albertel 2187: 		    next;
                   2188: 		}
1.468     albertel 2189: 		foreach my $submission (@$string) {
                   2190: 		    my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375     albertel 2191: 		    if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.596     raeburn  2192: 		    my ($ressub,$hide,$subval) = split(/:/,$submission,3);
1.151     albertel 2193: 		    # Similarity check
                   2194: 		    my $similar='';
1.640     raeburn  2195:                     my ($type,$trial,$rndseed);
                   2196:                     if ($hide eq 'rand') {
                   2197:                         $type = 'randomizetry';
                   2198:                         $trial = $record{"resource.$partid.tries"};
                   2199:                         $rndseed = $record{"resource.$partid.rndseed"};
                   2200:                     }
1.257     albertel 2201: 		    if($env{'form.checkPlag'}){
1.151     albertel 2202: 			my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.674     raeburn  2203: 			    &most_similar($uname,$udom,$symb,$subval);
1.151     albertel 2204: 			if ($osim) {
                   2205: 			    $osim=int($osim*100.0);
1.426     albertel 2206: 			    my %old_course_desc = 
                   2207: 				&Apache::lonnet::coursedescription($ocrsid,
                   2208: 								   {'one_time' => 1});
                   2209: 
1.640     raeburn  2210:                             if ($hide eq 'anon') {
1.596     raeburn  2211:                                 $similar='<hr /><span class="LC_warning">'.&mt("Essay was found to be similar to another essay submitted for this assignment.").'<br />'.
                   2212:                                          &mt('As the current submission is for an anonymous survey, no other details are available.').'</span><hr />';
                   2213:                             } else {
                   2214: 			        $similar="<hr /><h3><span class=\"LC_warning\">".
                   2215: 				    &mt('Essay is [_1]% similar to an essay by [_2] in course [_3] (course id [_4]:[_5])',
                   2216: 				        $osim,
                   2217: 				        &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')',
                   2218: 				        $old_course_desc{'description'},
                   2219: 				        $old_course_desc{'num'},
                   2220: 				        $old_course_desc{'domain'}).
                   2221: 				    '</span></h3><blockquote><i>'.
                   2222: 				    &keywords_highlight($oessay).
                   2223: 				    '</i></blockquote><hr />';
                   2224:                             }
1.151     albertel 2225: 			}
1.150     albertel 2226: 		    }
1.640     raeburn  2227: 		    my $order=&get_order($partid,$respid,$symb,$uname,$udom,
                   2228:                                          undef,$type,$trial,$rndseed);
1.257     albertel 2229: 		    if ($env{'form.lastSub'} eq 'lastonly' || 
                   2230: 			($env{'form.lastSub'} eq 'hdgrade' && 
1.377     albertel 2231: 			 $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324     albertel 2232: 			my $display_part=&get_display_part($partid,$symb);
1.577     bisitz   2233:                         $lastsubonly.='<div class="LC_grade_submission_part">'.
                   2234:                             '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
                   2235:                             ' <span class="LC_internal_info">'.
1.623     www      2236:                             '('.&mt('Response ID: [_1]',$respid).')'.
1.597     wenzelju 2237:                             '</span>&nbsp; &nbsp;';
1.313     banghart 2238: 			my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
                   2239: 			if (@$files) {
1.640     raeburn  2240:                             if ($hide eq 'anon') {
1.596     raeburn  2241:                                 $lastsubonly.='<br />'.&mt('[quant,_1,file] uploaded to this anonymous survey',scalar(@{$files}));
                   2242:                             } else {
                   2243:                                 $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain viruses').'</span><br />';
                   2244:                                 foreach my $file (@$files) {
                   2245:                                     &Apache::lonnet::allowuploaded('/adm/grades',$file);
                   2246:                                     $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border="0" /> '.$file.'</a>';
                   2247:                                 }
                   2248:                             }
1.236     albertel 2249: 			    $lastsubonly.='<br />';
1.41      ng       2250: 			}
1.640     raeburn  2251:                         if ($hide eq 'anon') {
1.596     raeburn  2252:                             $lastsubonly.='<b>'.&mt('Anonymous Survey').'</b>'; 
                   2253:                         } else {
                   2254: 			    $lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
                   2255: 			        &cleanRecord($subval,$responsetype,$symb,$partid,
1.640     raeburn  2256: 					     $respid,\%record,$order,undef,$uname,$udom,$type,$trial,$rndseed);
1.596     raeburn  2257:                         }
1.151     albertel 2258: 			if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468     albertel 2259: 			$lastsubonly.='</div>';
1.41      ng       2260: 		    }
                   2261: 		}
                   2262: 	    }
1.588     bisitz   2263: 	    $lastsubonly.='</div>'."\n"; # End: LC_grade_submissions_body
1.151     albertel 2264: 	}
                   2265: 	$request->print($lastsubonly);
1.468     albertel 2266:    } elsif ($env{'form.lastSub'} eq 'datesub') {
1.623     www      2267:         my ($parts,$handgrade,$responseType) = &response_type($symb,\$res_error);
1.148     albertel 2268: 	$request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257     albertel 2269:     } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41      ng       2270: 	$request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257     albertel 2271: 								 $env{'request.course.id'},
1.44      ng       2272: 								 $last,'.submission',
                   2273: 								 'Apache::grades::keywords_highlight'));
1.41      ng       2274:     }
1.121     ng       2275:     $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
                   2276: 	.$udom.'" />'."\n");
1.44      ng       2277:     # return if view submission with no grading option
1.618     www      2278:     if (!&canmodify($usec)) {
1.633     www      2279: 	$request->print('<p><span class="LC_warning">'.&mt('No grading privileges').'</span></p></div>');
1.41      ng       2280: 	return;
1.180     albertel 2281:     } else {
1.468     albertel 2282: 	$request->print('</div>'."\n");
1.41      ng       2283:     }
1.33      ng       2284: 
1.121     ng       2285:     # essay grading message center
1.624     www      2286: #    if ($env{'form.handgrade'} eq 'yes') {
                   2287:     if (1) {
1.468     albertel 2288: 	my $result='<div class="LC_grade_message_center">';
                   2289:     
                   2290: 	$result.='<div class="LC_grade_message_center_header">'.
                   2291: 	    &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257     albertel 2292: 	my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118     ng       2293: 	my $msgfor = $givenn.' '.$lastname;
1.464     albertel 2294: 	if (scalar(@$col_fullnames) > 0) {
                   2295: 	    my $lastone = pop(@$col_fullnames);
                   2296: 	    $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118     ng       2297: 	}
                   2298: 	$msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468     albertel 2299: 	$result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121     ng       2300: 	    '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
                   2301: 	$result.='&nbsp;<a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417     albertel 2302: 	    ',\''.$msgfor.'\');" target="_self">'.
1.464     albertel 2303: 	    &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
1.350     albertel 2304: 	    &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.118     ng       2305: 	    '<img src="'.$request->dir_config('lonIconsURL').
                   2306: 	    '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298     www      2307: 	    '<br />&nbsp;('.
1.468     albertel 2308: 	    &mt('Message will be sent when you click on Save &amp; Next below.').")\n";
                   2309: 	$result.='</div></div>';
1.121     ng       2310: 	$request->print($result);
1.118     ng       2311:     }
1.41      ng       2312: 
                   2313:     my %seen = ();
                   2314:     my @partlist;
1.129     ng       2315:     my @gradePartRespid;
1.375     albertel 2316:     my @part_response_id = &flatten_responseType($responseType);
1.585     bisitz   2317:     $request->print(
1.588     bisitz   2318:         '<div class="LC_Box">'
                   2319:        .'<h3 class="LC_hcell">'.&mt('Assign Grades').'</h3>'
1.585     bisitz   2320:     );
1.592     bisitz   2321:     $request->print(&gradeBox_start());
1.375     albertel 2322:     foreach my $part_response_id (@part_response_id) {
                   2323:     	my ($partid,$respid) = @{ $part_response_id };
                   2324: 	my $part_resp = join('_',@{ $part_response_id });
1.322     albertel 2325: 	next if ($seen{$partid} > 0);
1.41      ng       2326: 	$seen{$partid}++;
1.393     albertel 2327: 	next if ($$handgrade{$part_resp} ne 'yes' 
                   2328: 		 && $env{'form.lastSub'} eq 'hdgrade');
1.524     raeburn  2329: 	push(@partlist,$partid);
                   2330: 	push(@gradePartRespid,$partid.'.'.$respid);
1.322     albertel 2331: 	$request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41      ng       2332:     }
1.585     bisitz   2333:     $request->print(&gradeBox_end()); # </div>
                   2334:     $request->print('</div>');
1.468     albertel 2335: 
                   2336:     $request->print('<div class="LC_grade_info_links">');
                   2337:     $request->print('</div>');
                   2338: 
1.45      ng       2339:     $result='<input type="hidden" name="partlist'.$counter.
                   2340: 	'" value="'.(join ":",@partlist).'" />'."\n";
1.129     ng       2341:     $result.='<input type="hidden" name="gradePartRespid'.
                   2342: 	'" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45      ng       2343:     my $ctr = 0;
                   2344:     while ($ctr < scalar(@partlist)) {
                   2345: 	$result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
                   2346: 	    $partlist[$ctr].'" />'."\n";
                   2347: 	$ctr++;
                   2348:     }
1.468     albertel 2349:     $request->print($result.''."\n");
1.41      ng       2350: 
1.441     www      2351: # Done with printing info for one student
                   2352: 
1.468     albertel 2353:     $request->print('</div>');#LC_grade_show_user
1.441     www      2354: 
                   2355: 
1.41      ng       2356:     # print end of form
                   2357:     if ($counter == $total) {
1.592     bisitz   2358:         my $endform='<br /><hr /><table border="0"><tr><td>'."\n";
1.485     albertel 2359: 	$endform.='<input type="button" value="'.&mt('Save &amp; Next').'" '.
1.589     bisitz   2360: 	    'onclick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417     albertel 2361: 	    $total.','.scalar(@partlist).');" target="_self" /> &nbsp;'."\n";
1.119     ng       2362: 	my $ntstu ='<select name="NTSTU">'.
                   2363: 	    '<option>1</option><option>2</option>'.
                   2364: 	    '<option>3</option><option>5</option>'.
                   2365: 	    '<option>7</option><option>10</option></select>'."\n";
1.257     albertel 2366: 	my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401     albertel 2367: 	$ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.578     raeburn  2368:         $endform.=&mt('[_1]student(s)',$ntstu);
1.485     albertel 2369: 	$endform.='&nbsp;&nbsp;<input type="button" value="'.&mt('Previous').'" '.
1.589     bisitz   2370: 	    'onclick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> &nbsp;'."\n".
1.485     albertel 2371: 	    '<input type="button" value="'.&mt('Next').'" '.
1.589     bisitz   2372: 	    'onclick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> &nbsp;';
1.592     bisitz   2373:         $endform.='<span class="LC_warning">'.
                   2374:                   &mt('(Next and Previous (student) do not save the scores.)').
                   2375:                   '</span>'."\n" ;
1.349     albertel 2376:         $endform.="<input type='hidden' value='".&get_increment().
1.348     bowersj2 2377:             "' name='increment' />";
1.485     albertel 2378: 	$endform.='</td></tr></table></form>';
1.41      ng       2379: 	$request->print($endform);
                   2380:     }
                   2381:     return '';
1.38      ng       2382: }
                   2383: 
1.464     albertel 2384: sub check_collaborators {
                   2385:     my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
                   2386:     my ($result,@col_fullnames);
                   2387:     my ($classlist,undef,$fullname) = &getclasslist('all','0');
                   2388:     foreach my $part (keys(%$handgrade)) {
                   2389: 	my $ncol = &Apache::lonnet::EXT('resource.'.$part.
                   2390: 					'.maxcollaborators',
                   2391: 					$symb,$udom,$uname);
                   2392: 	next if ($ncol <= 0);
                   2393: 	$part =~ s/\_/\./g;
                   2394: 	next if ($record->{'resource.'.$part.'.collaborators'} eq '');
                   2395: 	my (@good_collaborators, @bad_collaborators);
                   2396: 	foreach my $possible_collaborator
1.630     www      2397: 	    (split(/[,;\s]+/,$record->{'resource.'.$part.'.collaborators'})) { 
1.464     albertel 2398: 	    $possible_collaborator =~ s/[\$\^\(\)]//g;
                   2399: 	    next if ($possible_collaborator eq '');
1.631     www      2400: 	    my ($co_name,$co_dom) = split(/:/,$possible_collaborator);
1.464     albertel 2401: 	    $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
                   2402: 	    next if ($co_name eq $uname && $co_dom eq $udom);
                   2403: 	    # Doing this grep allows 'fuzzy' specification
                   2404: 	    my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i, 
                   2405: 			       keys(%$classlist));
                   2406: 	    if (! scalar(@matches)) {
                   2407: 		push(@bad_collaborators, $possible_collaborator);
                   2408: 	    } else {
                   2409: 		push(@good_collaborators, @matches);
                   2410: 	    }
                   2411: 	}
                   2412: 	if (scalar(@good_collaborators) != 0) {
1.630     www      2413: 	    $result.='<br />'.&mt('Collaborators:').'<ol>';
1.464     albertel 2414: 	    foreach my $name (@good_collaborators) {
                   2415: 		my ($lastname,$givenn) = split(/,/,$$fullname{$name});
                   2416: 		push(@col_fullnames, $givenn.' '.$lastname);
1.630     www      2417: 		$result.='<li>'.$fullname->{$name}.'</li>';
1.464     albertel 2418: 	    }
1.630     www      2419: 	    $result.='</ol><br />'."\n";
1.466     albertel 2420: 	    my ($part)=split(/\./,$part);
1.464     albertel 2421: 	    $result.='<input type="hidden" name="collaborator'.$counter.
                   2422: 		'" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
                   2423: 		"\n";
                   2424: 	}
                   2425: 	if (scalar(@bad_collaborators) > 0) {
1.466     albertel 2426: 	    $result.='<div class="LC_warning">';
1.464     albertel 2427: 	    $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
                   2428: 	    $result .= '</div>';
                   2429: 	}         
                   2430: 	if (scalar(@bad_collaborators > $ncol)) {
1.466     albertel 2431: 	    $result .= '<div class="LC_warning">';
1.464     albertel 2432: 	    $result .= &mt('This student has submitted too many '.
                   2433: 		'collaborators.  Maximum is [_1].',$ncol);
                   2434: 	    $result .= '</div>';
                   2435: 	}
                   2436:     }
                   2437:     return ($result,$fullname,\@col_fullnames);
                   2438: }
                   2439: 
1.44      ng       2440: #--- Retrieve the last submission for all the parts
1.38      ng       2441: sub get_last_submission {
1.119     ng       2442:     my ($returnhash)=@_;
1.596     raeburn  2443:     my (@string,$timestamp,%lasthidden);
1.119     ng       2444:     if ($$returnhash{'version'}) {
1.46      ng       2445: 	my %lasthash=();
                   2446: 	my ($version);
1.119     ng       2447: 	for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397     albertel 2448: 	    foreach my $key (sort(split(/\:/,
                   2449: 					$$returnhash{$version.':keys'}))) {
                   2450: 		$lasthash{$key}=$$returnhash{$version.':'.$key};
                   2451: 		$timestamp = 
1.545     raeburn  2452: 		    &Apache::lonlocal::locallocaltime($$returnhash{$version.':timestamp'});
1.46      ng       2453: 	    }
                   2454: 	}
1.640     raeburn  2455:         my (%typeparts,%randombytry);
1.596     raeburn  2456:         my $showsurv = 
                   2457:             &Apache::lonnet::allowed('vas',$env{'request.course.id'});
                   2458:         foreach my $key (sort(keys(%lasthash))) {
                   2459:             if ($key =~ /\.type$/) {
                   2460:                 if (($lasthash{$key} eq 'anonsurvey') || 
1.640     raeburn  2461:                     ($lasthash{$key} eq 'anonsurveycred') ||
                   2462:                     ($lasthash{$key} eq 'randomizetry')) {
1.596     raeburn  2463:                     my ($ign,@parts) = split(/\./,$key);
                   2464:                     pop(@parts);
1.641     raeburn  2465:                     my $id = join('.',@parts);
1.640     raeburn  2466:                     if ($lasthash{$key} eq 'randomizetry') {
                   2467:                         $randombytry{$ign.'.'.$id} = $lasthash{$key};
                   2468:                     } else {
                   2469:                         unless ($showsurv) {
                   2470:                             $typeparts{$ign.'.'.$id} = $lasthash{$key};
                   2471:                         }
1.596     raeburn  2472:                     }
                   2473:                     delete($lasthash{$key});
                   2474:                 }
                   2475:             }
                   2476:         }
                   2477:         my @hidden = keys(%typeparts);
1.640     raeburn  2478:         my @randomize = keys(%randombytry);
1.397     albertel 2479: 	foreach my $key (keys(%lasthash)) {
                   2480: 	    next if ($key !~ /\.submission$/);
1.596     raeburn  2481:             my $hide;
                   2482:             if (@hidden) {
                   2483:                 foreach my $id (@hidden) {
                   2484:                     if ($key =~ /^\Q$id\E/) {
1.640     raeburn  2485:                         $hide = 'anon';
1.596     raeburn  2486:                         last;
                   2487:                     }
                   2488:                 }
                   2489:             }
1.640     raeburn  2490:             unless ($hide) {
                   2491:                 if (@randomize) {
                   2492:                     foreach my $id (@hidden) {
                   2493:                         if ($key =~ /^\Q$id\E/) {
                   2494:                             $hide = 'rand';
                   2495:                             last;
                   2496:                         }
                   2497:                     }
                   2498:                 }
                   2499:             }
1.397     albertel 2500: 	    my ($partid,$foo) = split(/submission$/,$key);
                   2501: 	    my $draft  = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
1.398     albertel 2502: 		'<span class="LC_warning">Draft Copy</span> ' : '';
1.596     raeburn  2503: 	    push(@string, join(':', $key, $hide, $draft.$lasthash{$key}));
1.41      ng       2504: 	}
                   2505:     }
1.397     albertel 2506:     if (!@string) {
                   2507: 	$string[0] =
1.539     riegler  2508: 	    '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span>';
1.397     albertel 2509:     }
                   2510:     return (\@string,\$timestamp);
1.38      ng       2511: }
1.35      ng       2512: 
1.44      ng       2513: #--- High light keywords, with style choosen by user.
1.38      ng       2514: sub keywords_highlight {
1.44      ng       2515:     my $string    = shift;
1.257     albertel 2516:     my $size      = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
                   2517:     my $styleon   = $env{'form.kwstyle'} eq ''  ? '' : $env{'form.kwstyle'};
1.41      ng       2518:     (my $styleoff = $styleon) =~ s/\</\<\//;
1.257     albertel 2519:     my @keylist   = split(/[,\s+]/,$env{'form.keywords'});
1.398     albertel 2520:     foreach my $keyword (@keylist) {
                   2521: 	$string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41      ng       2522:     }
                   2523:     return $string;
1.38      ng       2524: }
1.36      ng       2525: 
1.671     raeburn  2526: # For Tasks provide a mechanism to display previous version for one specific student
                   2527: 
                   2528: sub show_previous_task_version {
                   2529:     my ($request,$symb) = @_;
                   2530:     if ($symb eq '') {
                   2531:         $request->print("Unable to handle ambiguous references.");
                   2532: 
                   2533:         return '';
                   2534:     }
                   2535:     my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
                   2536:     my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
                   2537:     if (!&canview($usec)) {
                   2538:         $request->print('<span class="LC_warning">Unable to view previous version for requested student.('.
                   2539:                         $uname.':'.$udom.' in section '.$usec.' in course id '.
                   2540:                         $env{'request.course.id'}.')</span>');
                   2541:         return;
                   2542:     }
                   2543:     my $mode = 'both';
                   2544:     my $isTask = ($symb =~/\.task$/);
                   2545:     if ($isTask) {
                   2546:         if ($env{'form.previousversion'} =~ /^\d+$/) {
                   2547:             if ($env{'form.fullname'} eq '') {
                   2548:                 $env{'form.fullname'} =
                   2549:                     &Apache::loncommon::plainname($uname,$udom,'lastname');
                   2550:             }
                   2551:             my $probtitle=&Apache::lonnet::gettitle($symb);
                   2552:             $request->print("\n\n".
                   2553:                             '<div class="LC_grade_show_user">'.
                   2554:                             '<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
                   2555:                             '</h2>'."\n");
                   2556:             &Apache::lonxml::clear_problem_counter();
                   2557:             $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,
                   2558:                             {'previousversion' => $env{'form.previousversion'} }));
                   2559:             $request->print("\n</div>");
                   2560:         }
                   2561:     }
                   2562:     return;
                   2563: }
                   2564: 
                   2565: sub choose_task_version_form {
                   2566:     my ($symb,$uname,$udom,$nomenu) = @_;
                   2567:     my $isTask = ($symb =~/\.task$/);
                   2568:     my ($current,$version,$result,$js,$displayed,$rowtitle);
                   2569:     if ($isTask) {
                   2570:         my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
                   2571:                                               $udom,$uname);
                   2572:         if (($record{'resource.0.version'} eq '') ||
                   2573:             ($record{'resource.0.version'} < 2)) {
                   2574:             return ($record{'resource.0.version'},
                   2575:                     $record{'resource.0.version'},$result,$js);
                   2576:         } else {
                   2577:             $current = $record{'resource.0.version'};
                   2578:         }
                   2579:         if ($env{'form.previousversion'}) {
                   2580:             $displayed = $env{'form.previousversion'};
                   2581:             $rowtitle = &mt('Choose another version:')
                   2582:         } else {
                   2583:             $displayed = $current;
                   2584:             $rowtitle = &mt('Show earlier version:');
                   2585:         }
                   2586:         $result = '<div class="LC_left_float">';
                   2587:         my $list;
                   2588:         my $numversions = 0;
                   2589:         for (my $i=1; $i<=$record{'resource.0.version'}; $i++) {
                   2590:             if ($i == $current) {
                   2591:                 if (!$env{'form.previousversion'} || $nomenu) {
                   2592:                     next;
                   2593:                 } else {
                   2594:                     $list .= '<option value="'.$i.'">'.&mt('Current').'</option>'."\n";
                   2595:                     $numversions ++;
                   2596:                 }
                   2597:             } elsif (defined($record{'resource.'.$i.'.0.status'})) {
                   2598:                 unless ($i == $env{'form.previousversion'}) {
                   2599:                     $numversions ++;
                   2600:                 }
                   2601:                 $list .= '<option value="'.$i.'">'.$i.'</option>'."\n";
                   2602:             }
                   2603:         }
                   2604:         if ($numversions) {
                   2605:             $symb = &HTML::Entities::encode($symb,'<>"&');
                   2606:             $result .=
                   2607:                 '<form name="getprev" method="post" action=""'.
                   2608:                 ' onsubmit="return previousVersion('."'$uname','$udom','$symb','$displayed'".');">'.
                   2609:                 &Apache::loncommon::start_data_table().
                   2610:                 &Apache::loncommon::start_data_table_row().
                   2611:                 '<th align="left">'.$rowtitle.'</th>'.
                   2612:                 '<td><select name="version">'.
                   2613:                 '<option>'.&mt('Select').'</option>'.
                   2614:                 $list.
                   2615:                 '</select></td>'.
                   2616:                 &Apache::loncommon::end_data_table_row();
                   2617:             unless ($nomenu) {
                   2618:                 $result .= &Apache::loncommon::start_data_table_row().
                   2619:                 '<th align="left">'.&mt('Open in new window').'</th>'.
                   2620:                 '<td><span class="LC_nobreak">'.
                   2621:                 '<label><input type="radio" name="prevwin" value="1" />'.
                   2622:                 &mt('Yes').'</label>'.
                   2623:                 '<label><input type="radio" name="prevwin" value="0" checked="checked" />'.&mt('No').'</label>'.
                   2624:                 '</span></td>'.
                   2625:                 &Apache::loncommon::end_data_table_row();
                   2626:             }
                   2627:             $result .=
                   2628:                 &Apache::loncommon::start_data_table_row().
                   2629:                 '<th align="left">&nbsp;</th>'.
                   2630:                 '<td>'.
                   2631:                 '<input type="submit" name="prevsub" value="'.&mt('Display').'" />'.
                   2632:                 '</td>'.
                   2633:                 &Apache::loncommon::end_data_table_row().
                   2634:                 &Apache::loncommon::end_data_table().
                   2635:                 '</form>';
                   2636:             $js = &previous_display_javascript($nomenu,$current);
                   2637:         } elsif ($displayed && $nomenu) {
                   2638:             $result .= '<a href="javascript:window.close()">'.&mt('Close window').'</a>';
                   2639:         } else {
                   2640:             $result .= &mt('No previous versions to show for this student');
                   2641:         }
                   2642:         $result .= '</div>';
                   2643:     }
                   2644:     return ($current,$displayed,$result,$js);
                   2645: }
                   2646: 
                   2647: sub previous_display_javascript {
                   2648:     my ($nomenu,$current) = @_;
                   2649:     my $js = <<"JSONE";
                   2650: <script type="text/javascript">
                   2651: // <![CDATA[
                   2652: function previousVersion(uname,udom,symb) {
                   2653:     var current = '$current';
                   2654:     var version = document.getprev.version.options[document.getprev.version.selectedIndex].value;
                   2655:     var prevstr = new RegExp("^\\\\d+\$");
                   2656:     if (!prevstr.test(version)) {
                   2657:         return false;
                   2658:     }
                   2659:     var url = '';
                   2660:     if (version == current) {
                   2661:         url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=submission';
                   2662:     } else {
                   2663:         url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=versionsub&previousversion='+version;
                   2664:     }
                   2665: JSONE
                   2666:     if ($nomenu) {
                   2667:         $js .= <<"JSTWO";
                   2668:     document.location.href = url;
                   2669: JSTWO
                   2670:     } else {
                   2671:         $js .= <<"JSTHREE";
                   2672:     var newwin = 0;
                   2673:     for (var i=0; i<document.getprev.prevwin.length; i++) {
                   2674:         if (document.getprev.prevwin[i].checked == true) {
                   2675:             newwin = document.getprev.prevwin[i].value;
                   2676:         }
                   2677:     }
                   2678:     if (newwin == 1) {
                   2679:         var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
                   2680:         url = url+'&inhibitmenu=yes';
                   2681:         if (typeof(previousWin) == 'undefined' || previousWin.closed) {
                   2682:             previousWin = window.open(url,'',options,1);
                   2683:         } else {
                   2684:             previousWin.location.href = url;
                   2685:         }
                   2686:         previousWin.focus();
                   2687:         return false;
                   2688:     } else {
                   2689:         document.location.href = url;
                   2690:         return false;
                   2691:     }
                   2692: JSTHREE
                   2693:     }
                   2694:     $js .= <<"ENDJS";
                   2695:     return false;
                   2696: }
                   2697: // ]]>
                   2698: </script>
                   2699: ENDJS
                   2700: 
                   2701: }
                   2702: 
1.44      ng       2703: #--- Called from submission routine
1.38      ng       2704: sub processHandGrade {
1.608     www      2705:     my ($request,$symb) = @_;
1.324     albertel 2706:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257     albertel 2707:     my $button = $env{'form.gradeOpt'};
                   2708:     my $ngrade = $env{'form.NCT'};
                   2709:     my $ntstu  = $env{'form.NTSTU'};
1.301     albertel 2710:     my $cdom   = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   2711:     my $cnum   = $env{'course.'.$env{'request.course.id'}.'.num'};
                   2712: 
1.44      ng       2713:     if ($button eq 'Save & Next') {
                   2714: 	my $ctr = 0;
                   2715: 	while ($ctr < $ngrade) {
1.257     albertel 2716: 	    my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324     albertel 2717: 	    my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71      ng       2718: 	    if ($errorflag eq 'no_score') {
                   2719: 		$ctr++;
                   2720: 		next;
                   2721: 	    }
1.104     albertel 2722: 	    if ($errorflag eq 'not_allowed') {
1.398     albertel 2723: 		$request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
1.104     albertel 2724: 		$ctr++;
                   2725: 		next;
                   2726: 	    }
1.257     albertel 2727: 	    my $includemsg = $env{'form.includemsg'.$ctr};
1.44      ng       2728: 	    my ($subject,$message,$msgstatus) = ('','','');
1.418     albertel 2729: 	    my $restitle = &Apache::lonnet::gettitle($symb);
                   2730:             my ($feedurl,$showsymb) =
                   2731: 		&get_feedurl_and_symb($symb,$uname,$udom);
                   2732: 	    my $messagetail;
1.62      albertel 2733: 	    if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298     www      2734: 		$subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295     www      2735: 		unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386     raeburn  2736: 		$subject.=' ['.$restitle.']';
1.44      ng       2737: 		my (@msgnum) = split(/,/,$includemsg);
                   2738: 		foreach (@msgnum) {
1.257     albertel 2739: 		    $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44      ng       2740: 		}
1.80      ng       2741: 		$message =&Apache::lonfeedback::clear_out_html($message);
1.298     www      2742: 		if ($env{'form.withgrades'.$ctr}) {
                   2743: 		    $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386     raeburn  2744: 		    $messagetail = " for <a href=\"".
1.605     www      2745: 		                   $feedurl."?symb=$showsymb\">$restitle</a>";
1.386     raeburn  2746: 		}
                   2747: 		$msgstatus = 
                   2748:                     &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
                   2749: 						     $message.$messagetail,
1.418     albertel 2750:                                                      undef,$feedurl,undef,
1.386     raeburn  2751:                                                      undef,undef,$showsymb,
                   2752:                                                      $restitle);
1.574     bisitz   2753: 		$request->print('<br />'.&mt('Sending message to [_1]',$uname.':'.$udom).': '.
1.652     raeburn  2754: 				$msgstatus.'<br />');
1.44      ng       2755: 	    }
1.257     albertel 2756: 	    if ($env{'form.collaborator'.$ctr}) {
1.155     albertel 2757: 		my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150     albertel 2758: 		foreach my $collabstr (@collabstrs) {
                   2759: 		    my ($part,@collaborators) = split(/:/,$collabstr);
1.310     banghart 2760: 		    foreach my $collaborator (@collaborators) {
1.150     albertel 2761: 			my ($errorflag,$pts,$wgt) = 
1.324     albertel 2762: 			    &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257     albertel 2763: 					   $env{'form.unamedom'.$ctr},$part);
1.150     albertel 2764: 			if ($errorflag eq 'not_allowed') {
1.362     albertel 2765: 			    $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150     albertel 2766: 			    next;
1.418     albertel 2767: 			} elsif ($message ne '') {
                   2768: 			    my ($baseurl,$showsymb) = 
                   2769: 				&get_feedurl_and_symb($symb,$collaborator,
                   2770: 						      $udom);
                   2771: 			    if ($env{'form.withgrades'.$ctr}) {
                   2772: 				$messagetail = " for <a href=\"".
1.605     www      2773:                                     $baseurl."?symb=$showsymb\">$restitle</a>";
1.150     albertel 2774: 			    }
1.418     albertel 2775: 			    $msgstatus = 
                   2776: 				&Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104     albertel 2777: 			}
1.44      ng       2778: 		    }
                   2779: 		}
                   2780: 	    }
                   2781: 	    $ctr++;
                   2782: 	}
                   2783:     }
                   2784: 
1.624     www      2785: #    if ($env{'form.handgrade'} eq 'yes') {
                   2786:     if (1) {
1.119     ng       2787: 	# Keywords sorted in alphabatical order
1.257     albertel 2788: 	my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119     ng       2789: 	my %keyhash = ();
1.257     albertel 2790: 	$env{'form.keywords'}           =~ s/,\s{0,}|\s+/ /g;
                   2791: 	$env{'form.keywords'}           =~ s/^\s+|\s+$//;
                   2792: 	my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
                   2793: 	$env{'form.keywords'} = join(' ',@keywords);
                   2794: 	$keyhash{$symb.'_keywords'}     = $env{'form.keywords'};
                   2795: 	$keyhash{$symb.'_subject'}      = $env{'form.msgsub'};
                   2796: 	$keyhash{$loginuser.'_kwclr'}   = $env{'form.kwclr'};
                   2797: 	$keyhash{$loginuser.'_kwsize'}  = $env{'form.kwsize'};
                   2798: 	$keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119     ng       2799: 
                   2800: 	# message center - Order of message gets changed. Blank line is eliminated.
1.257     albertel 2801: 	# New messages are saved in env for the next student.
1.119     ng       2802: 	# All messages are saved in nohist_handgrade.db
                   2803: 	my ($ctr,$idx) = (1,1);
1.257     albertel 2804: 	while ($ctr <= $env{'form.savemsgN'}) {
                   2805: 	    if ($env{'form.savemsg'.$ctr} ne '') {
                   2806: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119     ng       2807: 		$idx++;
                   2808: 	    }
                   2809: 	    $ctr++;
1.41      ng       2810: 	}
1.119     ng       2811: 	$ctr = 0;
                   2812: 	while ($ctr < $ngrade) {
1.257     albertel 2813: 	    if ($env{'form.newmsg'.$ctr} ne '') {
                   2814: 		$keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
                   2815: 		$env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119     ng       2816: 		$idx++;
                   2817: 	    }
                   2818: 	    $ctr++;
1.41      ng       2819: 	}
1.257     albertel 2820: 	$env{'form.savemsgN'} = --$idx;
                   2821: 	$keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119     ng       2822: 	my $putresult = &Apache::lonnet::put
1.301     albertel 2823: 	    ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41      ng       2824:     }
1.44      ng       2825:     # Called by Save & Refresh from Highlight Attribute Window
1.257     albertel 2826:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
                   2827:     if ($env{'form.refresh'} eq 'on') {
1.86      ng       2828: 	my ($ctr,$total) = (0,0);
                   2829: 	while ($ctr < $ngrade) {
1.257     albertel 2830: 	    $total++ if  $env{'form.unamedom'.$ctr} ne '';
1.86      ng       2831: 	    $ctr++;
                   2832: 	}
1.257     albertel 2833: 	$env{'form.NTSTU'}=$ngrade;
1.86      ng       2834: 	$ctr = 0;
                   2835: 	while ($ctr < $total) {
1.257     albertel 2836: 	    my $processUser = $env{'form.unamedom'.$ctr};
                   2837: 	    ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
                   2838: 	    $env{'form.fullname'} = $$fullname{$processUser};
1.625     www      2839: 	    &submission($request,$ctr,$total-1,$symb);
1.41      ng       2840: 	    $ctr++;
                   2841: 	}
                   2842: 	return '';
                   2843:     }
1.36      ng       2844: 
1.44      ng       2845:     # Get the next/previous one or group of students
1.257     albertel 2846:     my $firststu = $env{'form.unamedom0'};
                   2847:     my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119     ng       2848:     my $ctr = 2;
1.41      ng       2849:     while ($laststu eq '') {
1.257     albertel 2850: 	$laststu  = $env{'form.unamedom'.($ngrade-$ctr)};
1.41      ng       2851: 	$ctr++;
                   2852: 	$laststu = $firststu if ($ctr > $ngrade);
                   2853:     }
1.44      ng       2854: 
1.41      ng       2855:     my (@parsedlist,@nextlist);
                   2856:     my ($nextflg) = 0;
1.524     raeburn  2857:     foreach my $item (sort 
1.294     albertel 2858: 	     {
                   2859: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   2860: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   2861: 		 }
                   2862: 		 return $a cmp $b;
                   2863: 	     } (keys(%$fullname))) {
1.605     www      2864: # FIXME: this is fishy, looks like the button label
1.41      ng       2865: 	if ($nextflg == 1 && $button =~ /Next$/) {
1.524     raeburn  2866: 	    push(@parsedlist,$item);
1.41      ng       2867: 	}
1.524     raeburn  2868: 	$nextflg = 1 if ($item eq $laststu);
1.41      ng       2869: 	if ($button eq 'Previous') {
1.524     raeburn  2870: 	    last if ($item eq $firststu);
                   2871: 	    push(@parsedlist,$item);
1.41      ng       2872: 	}
                   2873:     }
                   2874:     $ctr = 0;
1.605     www      2875: # FIXME: this is fishy, looks like the button label
1.41      ng       2876:     @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.582     raeburn  2877:     my $res_error;
                   2878:     my ($partlist) = &response_type($symb,\$res_error);
                   2879:     if ($res_error) {
                   2880:         $request->print(&navmap_errormsg());
                   2881:         return;
                   2882:     }
1.41      ng       2883:     foreach my $student (@parsedlist) {
1.257     albertel 2884: 	my $submitonly=$env{'form.submitonly'};
1.41      ng       2885: 	my ($uname,$udom) = split(/:/,$student);
1.301     albertel 2886: 	
                   2887: 	if ($submitonly eq 'queued') {
                   2888: 	    my %queue_status = 
                   2889: 		&Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
                   2890: 							$udom,$uname);
                   2891: 	    next if (!defined($queue_status{'gradingqueue'}));
                   2892: 	}
                   2893: 
1.156     albertel 2894: 	if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257     albertel 2895: #	    my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324     albertel 2896: 	    my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145     albertel 2897: 	    my $submitted = 0;
1.248     albertel 2898: 	    my $ungraded = 0;
                   2899: 	    my $incorrect = 0;
1.524     raeburn  2900: 	    foreach my $item (keys(%status)) {
                   2901: 		$submitted = 1 if ($status{$item} ne 'nothing');
                   2902: 		$ungraded = 1 if ($status{$item} =~ /^ungraded/);
                   2903: 		$incorrect = 1 if ($status{$item} =~ /^incorrect/);
                   2904: 		my ($foo,$partid,$foo1) = split(/\./,$item);
1.145     albertel 2905: 		if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
                   2906: 		    $submitted = 0;
                   2907: 		}
1.41      ng       2908: 	    }
1.156     albertel 2909: 	    next if (!$submitted && ($submitonly eq 'yes' ||
                   2910: 				     $submitonly eq 'incorrect' ||
                   2911: 				     $submitonly eq 'graded'));
1.248     albertel 2912: 	    next if (!$ungraded && ($submitonly eq 'graded'));
                   2913: 	    next if (!$incorrect && $submitonly eq 'incorrect');
1.41      ng       2914: 	}
1.524     raeburn  2915: 	push(@nextlist,$student) if ($ctr < $ntstu);
1.129     ng       2916: 	last if ($ctr == $ntstu);
1.41      ng       2917: 	$ctr++;
                   2918:     }
1.36      ng       2919: 
1.41      ng       2920:     $ctr = 0;
                   2921:     my $total = scalar(@nextlist)-1;
1.39      ng       2922: 
1.524     raeburn  2923:     foreach (sort(@nextlist)) {
1.41      ng       2924: 	my ($uname,$udom,$submitter) = split(/:/);
1.257     albertel 2925: 	$env{'form.student'}  = $uname;
                   2926: 	$env{'form.userdom'}  = $udom;
                   2927: 	$env{'form.fullname'} = $$fullname{$_};
1.625     www      2928: 	&submission($request,$ctr,$total,$symb);
1.41      ng       2929: 	$ctr++;
                   2930:     }
                   2931:     if ($total < 0) {
1.653     raeburn  2932: 	my $the_end.='<p>'.&mt('[_1]Message:[_2] No more students for this section or class.','<b>','</b>').'</p>'."\n";
1.41      ng       2933: 	$request->print($the_end);
                   2934:     }
                   2935:     return '';
1.38      ng       2936: }
1.36      ng       2937: 
1.44      ng       2938: #---- Save the score and award for each student, if changed
1.38      ng       2939: sub saveHandGrade {
1.324     albertel 2940:     my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342     banghart 2941:     my @version_parts;
1.104     albertel 2942:     my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257     albertel 2943: 					   $env{'request.course.id'});
1.104     albertel 2944:     if (!&canmodify($usec)) { return('not_allowed'); }
1.337     banghart 2945:     my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251     banghart 2946:     my @parts_graded;
1.77      ng       2947:     my %newrecord  = ();
                   2948:     my ($pts,$wgt) = ('','');
1.269     raeburn  2949:     my %aggregate = ();
                   2950:     my $aggregateflag = 0;
1.301     albertel 2951:     my @parts = split(/:/,$env{'form.partlist'.$newflg});
                   2952:     foreach my $new_part (@parts) {
1.337     banghart 2953: 	#collaborator ($submi may vary for different parts
1.259     banghart 2954: 	if ($submitter && $new_part ne $part) { next; }
                   2955: 	my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125     ng       2956: 	if ($dropMenu eq 'excused') {
1.259     banghart 2957: 	    if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
                   2958: 		$newrecord{'resource.'.$new_part.'.solved'} = 'excused';
                   2959: 		if (exists($record{'resource.'.$new_part.'.awarded'})) {
                   2960: 		    $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58      albertel 2961: 		}
1.364     banghart 2962: 	        $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58      albertel 2963: 	    }
1.125     ng       2964: 	} elsif ($dropMenu eq 'reset status'
1.259     banghart 2965: 		 && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.524     raeburn  2966: 	    foreach my $key (keys(%record)) {
1.259     banghart 2967: 		if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197     albertel 2968: 	    }
1.259     banghart 2969: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
1.257     albertel 2970: 		"$env{'user.name'}:$env{'user.domain'}";
1.270     albertel 2971:             my $totaltries = $record{'resource.'.$part.'.tries'};
                   2972: 
                   2973:             my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
                   2974: 					       [$new_part]);
                   2975:             my $aggtries =$totaltries;
1.269     raeburn  2976:             if ($last_resets{$new_part}) {
1.270     albertel 2977:                 $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
                   2978: 					   $new_part);
1.269     raeburn  2979:             }
1.270     albertel 2980: 
                   2981:             my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269     raeburn  2982:             if ($aggtries > 0) {
1.327     albertel 2983:                 &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269     raeburn  2984:                 $aggregateflag = 1;
                   2985:             }
1.125     ng       2986: 	} elsif ($dropMenu eq '') {
1.259     banghart 2987: 	    $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ? 
                   2988: 		    $env{'form.GD_BOX'.$newflg.'_'.$new_part} : 
                   2989: 		    $env{'form.RADVAL'.$newflg.'_'.$new_part});
                   2990: 	    if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153     albertel 2991: 		next;
                   2992: 	    }
1.259     banghart 2993: 	    $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 : 
                   2994: 		$env{'form.WGT'.$newflg.'_'.$new_part};
1.41      ng       2995: 	    my $partial= $pts/$wgt;
1.259     banghart 2996: 	    if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153     albertel 2997: 		#do not update score for part if not changed.
1.346     banghart 2998:                 &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153     albertel 2999: 		next;
1.251     banghart 3000: 	    } else {
1.524     raeburn  3001: 	        push(@parts_graded,$new_part);
1.153     albertel 3002: 	    }
1.259     banghart 3003: 	    if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
                   3004: 		$newrecord{'resource.'.$new_part.'.awarded'}  = $partial;
1.153     albertel 3005: 	    }
1.259     banghart 3006: 	    my $reckey = 'resource.'.$new_part.'.solved';
1.41      ng       3007: 	    if ($partial == 0) {
1.153     albertel 3008: 		if ($record{$reckey} ne 'incorrect_by_override') {
                   3009: 		    $newrecord{$reckey} = 'incorrect_by_override';
                   3010: 		}
1.41      ng       3011: 	    } else {
1.153     albertel 3012: 		if ($record{$reckey} ne 'correct_by_override') {
                   3013: 		    $newrecord{$reckey} = 'correct_by_override';
                   3014: 		}
                   3015: 	    }	    
                   3016: 	    if ($submitter && 
1.259     banghart 3017: 		($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
                   3018: 		$newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41      ng       3019: 	    }
1.259     banghart 3020: 	    $newrecord{'resource.'.$new_part.'.regrader'}=
1.257     albertel 3021: 		"$env{'user.name'}:$env{'user.domain'}";
1.41      ng       3022: 	}
1.259     banghart 3023: 	# unless problem has been graded, set flag to version the submitted files
1.305     banghart 3024: 	unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/  || 
                   3025: 	        $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
                   3026: 	        $dropMenu eq 'reset status')
                   3027: 	   {
1.524     raeburn  3028: 	    push(@version_parts,$new_part);
1.259     banghart 3029: 	}
1.41      ng       3030:     }
1.301     albertel 3031:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3032:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3033: 
1.344     albertel 3034:     if (%newrecord) {
                   3035:         if (@version_parts) {
1.364     banghart 3036:             my @changed_keys = &version_portfiles(\%record, \@parts_graded, 
                   3037:                                 $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344     albertel 3038: 	    @newrecord{@changed_keys} = @record{@changed_keys};
1.367     albertel 3039: 	    foreach my $new_part (@version_parts) {
                   3040: 		&handback_files($request,$symb,$stuname,$domain,$newflg,
                   3041: 				$new_part,\%newrecord);
                   3042: 	    }
1.259     banghart 3043:         }
1.44      ng       3044: 	&Apache::lonnet::cstore(\%newrecord,$symb,
1.257     albertel 3045: 				$env{'request.course.id'},$domain,$stuname);
1.380     albertel 3046: 	&check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
                   3047: 				     $cdom,$cnum,$domain,$stuname);
1.41      ng       3048:     }
1.269     raeburn  3049:     if ($aggregateflag) {
                   3050:         &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301     albertel 3051: 			      $cdom,$cnum);
1.269     raeburn  3052:     }
1.301     albertel 3053:     return ('',$pts,$wgt);
1.36      ng       3054: }
1.322     albertel 3055: 
1.380     albertel 3056: sub check_and_remove_from_queue {
                   3057:     my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
                   3058:     my @ungraded_parts;
                   3059:     foreach my $part (@{$parts}) {
                   3060: 	if (    $record->{   'resource.'.$part.'.awarded'} eq ''
                   3061: 	     && $record->{   'resource.'.$part.'.solved' } ne 'excused'
                   3062: 	     && $newrecord->{'resource.'.$part.'.awarded'} eq ''
                   3063: 	     && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
                   3064: 		) {
                   3065: 	    push(@ungraded_parts, $part);
                   3066: 	}
                   3067:     }
                   3068:     if ( !@ungraded_parts ) {
                   3069: 	&Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
                   3070: 					       $cnum,$domain,$stuname);
                   3071:     }
                   3072: }
                   3073: 
1.337     banghart 3074: sub handback_files {
                   3075:     my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.517     raeburn  3076:     my $portfolio_root = '/userfiles/portfolio';
1.582     raeburn  3077:     my $res_error;
                   3078:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
                   3079:     if ($res_error) {
                   3080:         $request->print('<br />'.&navmap_errormsg().'<br />');
                   3081:         return;
                   3082:     }
1.654     raeburn  3083:     my @handedback;
                   3084:     my $file_msg;
1.375     albertel 3085:     my @part_response_id = &flatten_responseType($responseType);
                   3086:     foreach my $part_response_id (@part_response_id) {
                   3087:     	my ($part_id,$resp_id) = @{ $part_response_id };
                   3088: 	my $part_resp = join('_',@{ $part_response_id });
1.654     raeburn  3089:         if (($env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'} =~ /^\d+$/) & ($new_part eq $part_id)) {
                   3090:             for (my $counter=1; $counter<=$env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'}; $counter++) {
                   3091:                 # if multiple files are uploaded names will be 'returndoc2','returndoc3' 
                   3092:                 if ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter}) {
                   3093:                     my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter.'.filename'};
1.338     banghart 3094:                     my ($directory,$answer_file) = 
1.654     raeburn  3095:                         ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter} =~ /^(.*?)([^\/]*)$/);
1.338     banghart 3096:                     my ($answer_name,$answer_ver,$answer_ext) =
                   3097: 		        &file_name_version_ext($answer_file);
1.355     banghart 3098: 		    my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.517     raeburn  3099:                     my $getpropath = 1;
1.662     raeburn  3100:                     my ($dir_list,$listerror) = 
                   3101:                         &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,
                   3102:                                                  $domain,$stuname,$getpropath);
                   3103: 		    my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.686   ! bisitz   3104:                     # fix filename
1.355     banghart 3105:                     my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
                   3106:                     my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
1.654     raeburn  3107:             	                                $newflg.'_'.$part_resp.'_returndoc'.$counter,
1.355     banghart 3108:             	                                $save_file_name);
1.337     banghart 3109:                     if ($result !~ m|^/uploaded/|) {
1.536     raeburn  3110:                         $request->print('<br /><span class="LC_error">'.
                   3111:                             &mt('An error occurred ([_1]) while trying to upload [_2].',
1.654     raeburn  3112:                                 $result,$newflg.'_'.$part_resp.'_returndoc'.$counter).
1.536     raeburn  3113:                                         '</span>');
1.356     banghart 3114:                     } else {
1.360     banghart 3115:                         # mark the file as read only
1.654     raeburn  3116:                         push(@handedback,$save_file_name);
1.367     albertel 3117: 			if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
                   3118: 			    $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
                   3119: 			}
                   3120:                         $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
1.654     raeburn  3121: 			$file_msg.= '<span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span> <br />";
1.337     banghart 3122:                     }
1.686   ! bisitz   3123:                     $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>'));
1.337     banghart 3124:                 }
                   3125:             }
                   3126:         }
1.654     raeburn  3127:     }
                   3128:     if (@handedback > 0) {
                   3129:         $request->print('<br />');
                   3130:         my @what = ($symb,$env{'request.course.id'},'handback');
                   3131:         &Apache::lonnet::mark_as_readonly($domain,$stuname,\@handedback,\@what);
                   3132:         my $user_lh = &Apache::loncommon::user_lang($stuname,$domain,$env{'request.course.id'});    
                   3133:         my ($subject,$message);
                   3134:         if (scalar(@handedback) == 1) {
                   3135:             $subject = &mt_user($user_lh,'File Handed Back by Instructor');
                   3136:             $message = &mt_user($user_lh,'A file has been returned that was originally submitted in response to: ');
                   3137:         } else {
                   3138:             $subject = &mt_user($user_lh,'Files Handed Back by Instructor');
                   3139:             $message = &mt_user($user_lh,'Files have been returned that were originally submitted in response to: ');
                   3140:         }
                   3141:         $message .= "<p><strong>".&Apache::lonnet::gettitle($symb)." </strong></p>";
                   3142:         $message .= &mt_user($user_lh,'The returned file(s) are named: [_1]',"<br />$file_msg <br />").
                   3143:                     &mt_user($user_lh,'The file(s) can be found in your [_1]portfolio[_2].','<a href="/adm/portfolio">','</a>');
                   3144:         my ($feedurl,$showsymb) =
                   3145:             &get_feedurl_and_symb($symb,$domain,$stuname);
                   3146:         my $restitle = &Apache::lonnet::gettitle($symb);
                   3147:         $subject .= ' '.&mt_user($user_lh,'(File Returned)').' ['.$restitle.']';
                   3148:         my $msgstatus =
                   3149:              &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject,
                   3150:                  $message,undef,$feedurl,undef,undef,undef,$showsymb,
                   3151:                  $restitle);
                   3152:         if ($msgstatus) {
                   3153:             $request->print(&mt('Notification message status: [_1]','<span class="LC_info">'.$msgstatus.'</span>').'<br />');
                   3154:         }
                   3155:     }
1.338     banghart 3156:     return;
1.337     banghart 3157: }
                   3158: 
1.418     albertel 3159: sub get_feedurl_and_symb {
                   3160:     my ($symb,$uname,$udom) = @_;
                   3161:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
                   3162:     $url = &Apache::lonnet::clutter($url);
                   3163:     my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
                   3164: 					$symb,$udom,$uname);
                   3165:     if ($encrypturl =~ /^yes$/i) {
                   3166: 	&Apache::lonenc::encrypted(\$url,1);
                   3167: 	&Apache::lonenc::encrypted(\$symb,1);
                   3168:     }
                   3169:     return ($url,$symb);
                   3170: }
                   3171: 
1.313     banghart 3172: sub get_submitted_files {
                   3173:     my ($udom,$uname,$partid,$respid,$record) = @_;
                   3174:     my @files;
                   3175:     if ($$record{"resource.$partid.$respid.portfiles"}) {
                   3176:         my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
                   3177:         foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
                   3178:     	    push(@files,$file_url.$file);
                   3179:         }
                   3180:     }
                   3181:     if ($$record{"resource.$partid.$respid.uploadedurl"}) {
                   3182:         push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
                   3183:     }
                   3184:     return (\@files);
                   3185: }
1.322     albertel 3186: 
1.269     raeburn  3187: # ----------- Provides number of tries since last reset.
                   3188: sub get_num_tries {
                   3189:     my ($record,$last_reset,$part) = @_;
                   3190:     my $timestamp = '';
                   3191:     my $num_tries = 0;
                   3192:     if ($$record{'version'}) {
                   3193:         for (my $version=$$record{'version'};$version>=1;$version--) {
                   3194:             if (exists($$record{$version.':resource.'.$part.'.solved'})) {
                   3195:                 $timestamp = $$record{$version.':timestamp'};
                   3196:                 if ($timestamp > $last_reset) {
                   3197:                     $num_tries ++;
                   3198:                 } else {
                   3199:                     last;
                   3200:                 }
                   3201:             }
                   3202:         }
                   3203:     }
                   3204:     return $num_tries;
                   3205: }
                   3206: 
                   3207: # ----------- Determine decrements required in aggregate totals 
                   3208: sub decrement_aggs {
                   3209:     my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
                   3210:     my %decrement = (
                   3211:                         attempts => 0,
                   3212:                         users => 0,
                   3213:                         correct => 0
                   3214:                     );
                   3215:     $decrement{'attempts'} = $aggtries;
                   3216:     if ($solvedstatus =~ /^correct/) {
                   3217:         $decrement{'correct'} = 1;
                   3218:     }
                   3219:     if ($aggtries == $totaltries) {
                   3220:         $decrement{'users'} = 1;
                   3221:     }
1.524     raeburn  3222:     foreach my $type (keys(%decrement)) {
1.269     raeburn  3223:         $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
                   3224:     }
                   3225:     return;
                   3226: }
                   3227: 
                   3228: # ----------- Determine timestamps for last reset of aggregate totals for parts  
                   3229: sub get_last_resets {
1.270     albertel 3230:     my ($symb,$courseid,$partids) =@_;
                   3231:     my %last_resets;
1.269     raeburn  3232:     my $cdom = $env{'course.'.$courseid.'.domain'};
                   3233:     my $cname = $env{'course.'.$courseid.'.num'};
1.271     albertel 3234:     my @keys;
                   3235:     foreach my $part (@{$partids}) {
                   3236: 	push(@keys,"$symb\0$part\0resettime");
                   3237:     }
                   3238:     my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
                   3239: 				     $cdom,$cname);
                   3240:     foreach my $part (@{$partids}) {
                   3241: 	$last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269     raeburn  3242:     }
1.270     albertel 3243:     return %last_resets;
1.269     raeburn  3244: }
                   3245: 
1.251     banghart 3246: # ----------- Handles creating versions for portfolio files as answers
                   3247: sub version_portfiles {
1.343     banghart 3248:     my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263     banghart 3249:     my $version_parts = join('|',@$v_flag);
1.343     banghart 3250:     my @returned_keys;
1.255     banghart 3251:     my $parts = join('|', @$parts_graded);
1.517     raeburn  3252:     my $portfolio_root = '/userfiles/portfolio';
1.277     albertel 3253:     foreach my $key (keys(%$record)) {
1.259     banghart 3254:         my $new_portfiles;
1.263     banghart 3255:         if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342     banghart 3256:             my @versioned_portfiles;
1.367     albertel 3257:             my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252     banghart 3258:             foreach my $file (@portfiles) {
1.306     banghart 3259:                 &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304     albertel 3260:                 my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
                   3261: 		my ($answer_name,$answer_ver,$answer_ext) =
                   3262: 		    &file_name_version_ext($answer_file);
1.517     raeburn  3263:                 my $getpropath = 1;    
1.662     raeburn  3264:                 my ($dir_list,$listerror) = 
                   3265:                     &Apache::lonnet::dirlist($portfolio_root.$directory,$domain,
                   3266:                                              $stu_name,$getpropath);
                   3267:                 my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.306     banghart 3268:                 my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
                   3269:                 if ($new_answer ne 'problem getting file') {
1.342     banghart 3270:                     push(@versioned_portfiles, $directory.$new_answer);
1.306     banghart 3271:                     &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367     albertel 3272:                         [$directory.$new_answer],
1.306     banghart 3273:                         [$symb,$env{'request.course.id'},'graded']);
1.259     banghart 3274:                 }
1.252     banghart 3275:             }
1.343     banghart 3276:             $$record{$key} = join(',',@versioned_portfiles);
                   3277:             push(@returned_keys,$key);
1.251     banghart 3278:         }
                   3279:     } 
1.343     banghart 3280:     return (@returned_keys);   
1.305     banghart 3281: }
                   3282: 
1.307     banghart 3283: sub get_next_version {
1.341     banghart 3284:     my ($answer_name, $answer_ext, $dir_list) = @_;
1.307     banghart 3285:     my $version;
1.662     raeburn  3286:     if (ref($dir_list) eq 'ARRAY') {
                   3287:         foreach my $row (@{$dir_list}) {
                   3288:             my ($file) = split(/\&/,$row,2);
                   3289:             my ($file_name,$file_version,$file_ext) =
                   3290: 	        &file_name_version_ext($file);
                   3291:             if (($file_name eq $answer_name) && 
                   3292: 	        ($file_ext eq $answer_ext)) {
                   3293:                      # gets here if filename and extension match, 
                   3294:                      # regardless of version
1.307     banghart 3295:                 if ($file_version ne '') {
1.662     raeburn  3296:                     # a versioned file is found  so save it for later
                   3297:                     if ($file_version > $version) {
                   3298: 		        $version = $file_version;
                   3299: 	            }
                   3300:                 }
1.307     banghart 3301:             }
                   3302:         }
1.662     raeburn  3303:     }
1.307     banghart 3304:     $version ++;
                   3305:     return($version);
                   3306: }
                   3307: 
1.305     banghart 3308: sub version_selected_portfile {
1.306     banghart 3309:     my ($domain,$stu_name,$directory,$file_name,$version) = @_;
                   3310:     my ($answer_name,$answer_ver,$answer_ext) =
                   3311:         &file_name_version_ext($file_name);
                   3312:     my $new_answer;
                   3313:     $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
                   3314:     if($env{'form.copy'} eq '-1') {
                   3315:         $new_answer = 'problem getting file';
                   3316:     } else {
                   3317:         $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
                   3318:         my $copy_result = &Apache::lonnet::finishuserfileupload(
                   3319:                             $stu_name,$domain,'copy',
                   3320: 		        '/portfolio'.$directory.$new_answer);
                   3321:     }    
                   3322:     return ($new_answer);
1.251     banghart 3323: }
                   3324: 
1.304     albertel 3325: sub file_name_version_ext {
                   3326:     my ($file)=@_;
                   3327:     my @file_parts = split(/\./, $file);
                   3328:     my ($name,$version,$ext);
                   3329:     if (@file_parts > 1) {
                   3330: 	$ext=pop(@file_parts);
                   3331: 	if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
                   3332: 	    $version=pop(@file_parts);
                   3333: 	}
                   3334: 	$name=join('.',@file_parts);
                   3335:     } else {
                   3336: 	$name=join('.',@file_parts);
                   3337:     }
                   3338:     return($name,$version,$ext);
                   3339: }
                   3340: 
1.44      ng       3341: #--------------------------------------------------------------------------------------
                   3342: #
                   3343: #-------------------------- Next few routines handles grading by section or whole class
                   3344: #
                   3345: #--- Javascript to handle grading by section or whole class
1.42      ng       3346: sub viewgrades_js {
                   3347:     my ($request) = shift;
                   3348: 
1.539     riegler  3349:     my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.597     wenzelju 3350:     $request->print(&Apache::lonhtmlcommon::scripttag(<<VIEWJAVASCRIPT));
1.45      ng       3351:    function writePoint(partid,weight,point) {
1.125     ng       3352: 	var radioButton = document.classgrade["RADVAL_"+partid];
                   3353: 	var textbox = document.classgrade["TEXTVAL_"+partid];
1.42      ng       3354: 	if (point == "textval") {
1.125     ng       3355: 	    point = document.classgrade["TEXTVAL_"+partid].value;
1.109     matthew  3356: 	    if (isNaN(point) || parseFloat(point) < 0) {
1.539     riegler  3357: 		alert("$alertmsg"+parseFloat(point));
1.42      ng       3358: 		var resetbox = false;
                   3359: 		for (var i=0; i<radioButton.length; i++) {
                   3360: 		    if (radioButton[i].checked) {
                   3361: 			textbox.value = i;
                   3362: 			resetbox = true;
                   3363: 		    }
                   3364: 		}
                   3365: 		if (!resetbox) {
                   3366: 		    textbox.value = "";
                   3367: 		}
                   3368: 		return;
                   3369: 	    }
1.109     matthew  3370: 	    if (parseFloat(point) > parseFloat(weight)) {
                   3371: 		var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       3372: 				   ") greater than the weight for the part. Accept?");
                   3373: 		if (resp == false) {
                   3374: 		    textbox.value = "";
                   3375: 		    return;
                   3376: 		}
                   3377: 	    }
1.42      ng       3378: 	    for (var i=0; i<radioButton.length; i++) {
                   3379: 		radioButton[i].checked=false;
1.109     matthew  3380: 		if (parseFloat(point) == i) {
1.42      ng       3381: 		    radioButton[i].checked=true;
                   3382: 		}
                   3383: 	    }
1.41      ng       3384: 
1.42      ng       3385: 	} else {
1.125     ng       3386: 	    textbox.value = parseFloat(point);
1.42      ng       3387: 	}
1.41      ng       3388: 	for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3389: 	    var user = document.classgrade["ctr"+i].value;
1.289     albertel 3390: 	    user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3391: 	    var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3392: 	    var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3393: 	    var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       3394: 	    if (saveval != "correct") {
                   3395: 		scorename.value = point;
1.43      ng       3396: 		if (selname[0].selected != true) {
                   3397: 		    selname[0].selected = true;
                   3398: 		}
1.42      ng       3399: 	    }
                   3400: 	}
1.125     ng       3401: 	document.classgrade["SELVAL_"+partid][0].selected = true;
1.42      ng       3402:     }
                   3403: 
                   3404:     function writeRadText(partid,weight) {
1.125     ng       3405: 	var selval   = document.classgrade["SELVAL_"+partid];
                   3406: 	var radioButton = document.classgrade["RADVAL_"+partid];
1.265     www      3407:         var override = document.classgrade["FORCE_"+partid].checked;
1.125     ng       3408: 	var textbox = document.classgrade["TEXTVAL_"+partid];
                   3409: 	if (selval[1].selected || selval[2].selected) {
1.42      ng       3410: 	    for (var i=0; i<radioButton.length; i++) {
                   3411: 		radioButton[i].checked=false;
                   3412: 
                   3413: 	    }
                   3414: 	    textbox.value = "";
                   3415: 
                   3416: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3417: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 3418: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3419: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3420: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3421: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265     www      3422: 		if ((saveval != "correct") || override) {
1.42      ng       3423: 		    scorename.value = "";
1.125     ng       3424: 		    if (selval[1].selected) {
                   3425: 			selname[1].selected = true;
                   3426: 		    } else {
                   3427: 			selname[2].selected = true;
                   3428: 			if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value)) 
                   3429: 			{document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
                   3430: 		    }
1.42      ng       3431: 		}
                   3432: 	    }
1.43      ng       3433: 	} else {
                   3434: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3435: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 3436: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3437: 		var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3438: 		var saveval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3439: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265     www      3440: 		if ((saveval != "correct") || override) {
1.125     ng       3441: 		    scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43      ng       3442: 		    selname[0].selected = true;
                   3443: 		}
                   3444: 	    }
                   3445: 	}	    
1.42      ng       3446:     }
                   3447: 
                   3448:     function changeSelect(partid,user) {
1.125     ng       3449: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   3450: 	var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44      ng       3451: 	var point  = textbox.value;
1.125     ng       3452: 	var weight = document.classgrade["weight_"+partid].value;
1.44      ng       3453: 
1.109     matthew  3454: 	if (isNaN(point) || parseFloat(point) < 0) {
1.539     riegler  3455: 	    alert("$alertmsg"+parseFloat(point));
1.44      ng       3456: 	    textbox.value = "";
                   3457: 	    return;
                   3458: 	}
1.109     matthew  3459: 	if (parseFloat(point) > parseFloat(weight)) {
                   3460: 	    var resp = confirm("You entered a value ("+parseFloat(point)+
1.44      ng       3461: 			       ") greater than the weight of the part. Accept?");
                   3462: 	    if (resp == false) {
                   3463: 		textbox.value = "";
                   3464: 		return;
                   3465: 	    }
                   3466: 	}
1.42      ng       3467: 	selval[0].selected = true;
                   3468:     }
                   3469: 
                   3470:     function changeOneScore(partid,user) {
1.125     ng       3471: 	var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
                   3472: 	if (selval[1].selected || selval[2].selected) {
                   3473: 	    document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
                   3474: 	    if (selval[2].selected) {
                   3475: 		document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
                   3476: 	    }
1.269     raeburn  3477:         }
1.42      ng       3478:     }
                   3479: 
                   3480:     function resetEntry(numpart) {
                   3481: 	for (ctpart=0;ctpart<numpart;ctpart++) {
1.125     ng       3482: 	    var partid = document.classgrade["partid_"+ctpart].value;
                   3483: 	    var radioButton = document.classgrade["RADVAL_"+partid];
                   3484: 	    var textbox = document.classgrade["TEXTVAL_"+partid];
                   3485: 	    var selval  = document.classgrade["SELVAL_"+partid];
1.42      ng       3486: 	    for (var i=0; i<radioButton.length; i++) {
                   3487: 		radioButton[i].checked=false;
                   3488: 
                   3489: 	    }
                   3490: 	    textbox.value = "";
                   3491: 	    selval[0].selected = true;
                   3492: 
                   3493: 	    for (i=0;i<document.classgrade.total.value;i++) {
1.125     ng       3494: 		var user = document.classgrade["ctr"+i].value;
1.289     albertel 3495: 		user = user.replace(new RegExp(':', 'g'),"_");
1.125     ng       3496: 		var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
                   3497: 		resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
                   3498: 		var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
                   3499: 		resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
                   3500: 		var saveselval   = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
                   3501: 		var selname   = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42      ng       3502: 		if (saveselval == "excused") {
1.43      ng       3503: 		    if (selname[1].selected == false) { selname[1].selected = true;}
1.42      ng       3504: 		} else {
1.43      ng       3505: 		    if (selname[0].selected == false) {selname[0].selected = true};
1.42      ng       3506: 		}
                   3507: 	    }
1.41      ng       3508: 	}
1.42      ng       3509:     }
                   3510: 
1.41      ng       3511: VIEWJAVASCRIPT
1.42      ng       3512: }
                   3513: 
1.44      ng       3514: #--- show scores for a section or whole class w/ option to change/update a score
1.42      ng       3515: sub viewgrades {
1.608     www      3516:     my ($request,$symb) = @_;
1.42      ng       3517:     &viewgrades_js($request);
1.41      ng       3518: 
1.168     albertel 3519:     #need to make sure we have the correct data for later EXT calls, 
                   3520:     #thus invalidate the cache
                   3521:     &Apache::lonnet::devalidatecourseresdata(
1.257     albertel 3522:                  $env{'course.'.$env{'request.course.id'}.'.num'},
                   3523:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168     albertel 3524:     &Apache::lonnet::clear_EXT_cache_status();
                   3525: 
1.398     albertel 3526:     my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
1.41      ng       3527: 
                   3528:     #view individual student submission form - called using Javascript viewOneStudent
1.324     albertel 3529:     $result.=&jscriptNform($symb);
1.41      ng       3530: 
1.44      ng       3531:     #beginning of class grading form
1.442     banghart 3532:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41      ng       3533:     $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418     albertel 3534: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38      ng       3535: 	'<input type="hidden" name="command" value="editgrades" />'."\n".
1.432     banghart 3536: 	&build_section_inputs().
1.442     banghart 3537: 	'<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.72      ng       3538: 
1.560     raeburn  3539:     my ($common_header,$specific_header);
1.257     albertel 3540:     if ($env{'form.section'} eq 'all') {
1.560     raeburn  3541: 	$common_header = &mt('Assign Common Grade to Class');
                   3542:         $specific_header = &mt('Assign Grade to Specific Students in Class');
1.257     albertel 3543:     } elsif ($env{'form.section'} eq 'none') {
1.560     raeburn  3544:         $common_header = &mt('Assign Common Grade to Students in no Section');
                   3545: 	$specific_header = &mt('Assign Grade to Specific Students in no Section');
1.52      albertel 3546:     } else {
1.560     raeburn  3547:         my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
                   3548:         $common_header = &mt('Assign Common Grade to Students in Section(s) [_1]',$section_display);
                   3549: 	$specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1]',$section_display);
1.52      albertel 3550:     }
1.560     raeburn  3551:     $result.= '<h3>'.$common_header.'</h3>'.&Apache::loncommon::start_data_table();
1.44      ng       3552:     #radio buttons/text box for assigning points for a section or class.
                   3553:     #handles different parts of a problem
1.582     raeburn  3554:     my $res_error;
                   3555:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
                   3556:     if ($res_error) {
                   3557:         return &navmap_errormsg();
                   3558:     }
1.42      ng       3559:     my %weight = ();
                   3560:     my $ctsparts = 0;
1.45      ng       3561:     my %seen = ();
1.375     albertel 3562:     my @part_response_id = &flatten_responseType($responseType);
                   3563:     foreach my $part_response_id (@part_response_id) {
                   3564:     	my ($partid,$respid) = @{ $part_response_id };
                   3565: 	my $part_resp = join('_',@{ $part_response_id });
1.45      ng       3566: 	next if $seen{$partid};
                   3567: 	$seen{$partid}++;
1.375     albertel 3568: 	my $handgrade=$$handgrade{$part_resp};
1.42      ng       3569: 	my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
                   3570: 	$weight{$partid} = $wgt eq '' ? '1' : $wgt;
                   3571: 
1.324     albertel 3572: 	my $display_part=&get_display_part($partid,$symb);
1.485     albertel 3573: 	my $radio.='<table border="0"><tr>';  
1.41      ng       3574: 	my $ctr = 0;
1.42      ng       3575: 	while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.485     albertel 3576: 	    $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54      albertel 3577: 		'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288     albertel 3578: 		','.$ctr.')" />'.$ctr."</label></td>\n";
1.41      ng       3579: 	    $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
                   3580: 	    $ctr++;
                   3581: 	}
1.485     albertel 3582: 	$radio.='</tr></table>';
                   3583: 	my $line = '<input type="text" name="TEXTVAL_'.
1.589     bisitz   3584: 	    $partid.'" size="4" '.'onchange="javascript:writePoint(\''.
1.54      albertel 3585: 		$partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.539     riegler  3586: 	    $weight{$partid}.' '.&mt('(problem weight)').'</td>'."\n";
                   3587: 	$line.= '<td><b>'.&mt('Grade Status').':</b><select name="SELVAL_'.$partid.'"'.
1.589     bisitz   3588: 	    'onchange="javascript:writeRadText(\''.$partid.'\','.
1.59      albertel 3589: 		$weight{$partid}.')"> '.
1.401     albertel 3590: 	    '<option selected="selected"> </option>'.
1.485     albertel 3591: 	    '<option value="excused">'.&mt('excused').'</option>'.
                   3592: 	    '<option value="reset status">'.&mt('reset status').'</option>'.
                   3593: 	    '</select></td>'.
                   3594:             '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
                   3595: 	$line.='<input type="hidden" name="partid_'.
                   3596: 	    $ctsparts.'" value="'.$partid.'" />'."\n";
                   3597: 	$line.='<input type="hidden" name="weight_'.
                   3598: 	    $partid.'" value="'.$weight{$partid}.'" />'."\n";
                   3599: 
                   3600: 	$result.=
                   3601: 	    &Apache::loncommon::start_data_table_row()."\n".
1.577     bisitz   3602: 	    '<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>'.
1.485     albertel 3603: 	    &Apache::loncommon::end_data_table_row()."\n";
1.42      ng       3604: 	$ctsparts++;
1.41      ng       3605:     }
1.474     albertel 3606:     $result.=&Apache::loncommon::end_data_table()."\n".
1.52      albertel 3607: 	'<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.485     albertel 3608:     $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
1.589     bisitz   3609: 	'onclick="javascript:resetEntry('.$ctsparts.');" />';
1.41      ng       3610: 
1.44      ng       3611:     #table listing all the students in a section/class
                   3612:     #header of table
1.560     raeburn  3613:     $result.= '<h3>'.$specific_header.'</h3>'.
                   3614:               &Apache::loncommon::start_data_table().
                   3615: 	      &Apache::loncommon::start_data_table_header_row().
                   3616: 	      '<th>'.&mt('No.').'</th>'.
                   3617: 	      '<th>'.&nameUserString('header')."</th>\n";
1.582     raeburn  3618:     my $partserror;
                   3619:     my (@parts) = sort(&getpartlist($symb,\$partserror));
                   3620:     if ($partserror) {
                   3621:         return &navmap_errormsg();
                   3622:     }
1.324     albertel 3623:     my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269     raeburn  3624:     my @partids = ();
1.41      ng       3625:     foreach my $part (@parts) {
                   3626: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.539     riegler  3627:         my $narrowtext = &mt('Tries');
                   3628: 	$display =~ s|^Number of Attempts|$narrowtext <br />|; # makes the column narrower
1.41      ng       3629: 	if  (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207     albertel 3630: 	my ($partid) = &split_part_type($part);
1.524     raeburn  3631:         push(@partids,$partid);
1.628     www      3632: #
                   3633: # FIXME: Looks like $display looks at English text
                   3634: #
1.324     albertel 3635: 	my $display_part=&get_display_part($partid,$symb);
1.41      ng       3636: 	if ($display =~ /^Partial Credit Factor/) {
1.485     albertel 3637: 	    $result.='<th>'.
                   3638: 		&mt('Score Part: [_1]<br /> (weight = [_2])',
                   3639: 		    $display_part,$weight{$partid}).'</th>'."\n";
1.41      ng       3640: 	    next;
1.485     albertel 3641: 	    
1.207     albertel 3642: 	} else {
1.485     albertel 3643: 	    if ($display =~ /Problem Status/) {
                   3644: 		my $grade_status_mt = &mt('Grade Status');
                   3645: 		$display =~ s{Problem Status}{$grade_status_mt<br />};
                   3646: 	    }
                   3647: 	    my $part_mt = &mt('Part:');
                   3648: 	    $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
1.41      ng       3649: 	}
1.485     albertel 3650: 
1.474     albertel 3651: 	$result.='<th>'.$display.'</th>'."\n";
1.41      ng       3652:     }
1.474     albertel 3653:     $result.=&Apache::loncommon::end_data_table_header_row();
1.44      ng       3654: 
1.270     albertel 3655:     my %last_resets = 
                   3656: 	&get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269     raeburn  3657: 
1.41      ng       3658:     #get info for each student
1.44      ng       3659:     #list all the students - with points and grade status
1.257     albertel 3660:     my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41      ng       3661:     my $ctr = 0;
1.294     albertel 3662:     foreach (sort 
                   3663: 	     {
                   3664: 		 if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   3665: 		     return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   3666: 		 }
                   3667: 		 return $a cmp $b;
                   3668: 	     } (keys(%$fullname))) {
1.126     ng       3669: 	$ctr++;
1.324     albertel 3670: 	$result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269     raeburn  3671: 				   $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41      ng       3672:     }
1.474     albertel 3673:     $result.=&Apache::loncommon::end_data_table();
1.41      ng       3674:     $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.485     albertel 3675:     $result.='<input type="button" value="'.&mt('Save').'" '.
1.589     bisitz   3676: 	'onclick="javascript:submit();" target="_self" /></form>'."\n";
1.96      albertel 3677:     if (scalar(%$fullname) eq 0) {
                   3678: 	my $colspan=3+scalar(@parts);
1.433     banghart 3679: 	my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442     banghart 3680:         my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433     banghart 3681: 	$result='<span class="LC_warning">'.
1.485     albertel 3682: 	    &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
1.442     banghart 3683: 	        $section_display, $stu_status).
1.433     banghart 3684: 	    '</span>';
1.96      albertel 3685:     }
1.41      ng       3686:     return $result;
                   3687: }
                   3688: 
1.44      ng       3689: #--- call by previous routine to display each student
1.41      ng       3690: sub viewstudentgrade {
1.324     albertel 3691:     my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44      ng       3692:     my ($uname,$udom) = split(/:/,$student);
                   3693:     my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269     raeburn  3694:     my %aggregates = (); 
1.474     albertel 3695:     my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.233     albertel 3696: 	'<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
                   3697: 	"\n".$ctr.'&nbsp;</td><td>&nbsp;'.
1.44      ng       3698: 	'<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417     albertel 3699: 	'\');" target="_self">'.$fullname.'</a> '.
1.398     albertel 3700: 	'<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281     albertel 3701:     $student=~s/:/_/; # colon doen't work in javascript for names
1.63      albertel 3702:     foreach my $apart (@$parts) {
                   3703: 	my ($part,$type) = &split_part_type($apart);
1.41      ng       3704: 	my $score=$record{"resource.$part.$type"};
1.276     albertel 3705:         $result.='<td align="center">';
1.269     raeburn  3706:         my ($aggtries,$totaltries);
                   3707:         unless (exists($aggregates{$part})) {
1.270     albertel 3708: 	    $totaltries = $record{'resource.'.$part.'.tries'};
                   3709: 
                   3710: 	    $aggtries = $totaltries;
1.269     raeburn  3711:             if ($$last_resets{$part}) {  
1.270     albertel 3712:                 $aggtries = &get_num_tries(\%record,$$last_resets{$part},
                   3713: 					   $part);
                   3714:             }
1.269     raeburn  3715:             $result.='<input type="hidden" name="'.
                   3716:                 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
                   3717:             $result.='<input type="hidden" name="'.
                   3718:                 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
                   3719:             $aggregates{$part} = 1;
                   3720:         }
1.41      ng       3721: 	if ($type eq 'awarded') {
1.320     albertel 3722: 	    my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42      ng       3723: 	    $result.='<input type="hidden" name="'.
1.89      albertel 3724: 		'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233     albertel 3725: 	    $result.='<input type="text" name="'.
1.89      albertel 3726: 		'GD_'.$student.'_'.$part.'_awarded" '.
1.589     bisitz   3727:                 'onchange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44      ng       3728: 		'\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41      ng       3729: 	} elsif ($type eq 'solved') {
                   3730: 	    my ($status,$foo)=split(/_/,$score,2);
                   3731: 	    $status = 'nothing' if ($status eq '');
1.89      albertel 3732: 	    $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54      albertel 3733: 		$part.'_solved_s" value="'.$status.'" />'."\n";
1.233     albertel 3734: 	    $result.='&nbsp;<select name="'.
1.89      albertel 3735: 		'GD_'.$student.'_'.$part.'_solved" '.
1.589     bisitz   3736:                 'onchange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.485     albertel 3737: 	    $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>' 
                   3738: 		: '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
                   3739: 	    $result.='<option value="reset status">'.&mt('reset status').'</option>';
1.126     ng       3740: 	    $result.="</select>&nbsp;</td>\n";
1.122     ng       3741: 	} else {
                   3742: 	    $result.='<input type="hidden" name="'.
                   3743: 		'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
                   3744: 		    "\n";
1.233     albertel 3745: 	    $result.='<input type="text" name="'.
1.122     ng       3746: 		'GD_'.$student.'_'.$part.'_'.$type.'" '.
                   3747: 		'value="'.$score.'" size="4" /></td>'."\n";
1.41      ng       3748: 	}
                   3749:     }
1.474     albertel 3750:     $result.=&Apache::loncommon::end_data_table_row();
1.41      ng       3751:     return $result;
1.38      ng       3752: }
                   3753: 
1.44      ng       3754: #--- change scores for all the students in a section/class
                   3755: #    record does not get update if unchanged
1.38      ng       3756: sub editgrades {
1.608     www      3757:     my ($request,$symb) = @_;
1.41      ng       3758: 
1.433     banghart 3759:     my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477     albertel 3760:     my $title='<h2>'.&mt('Current Grade Status').'</h2>';
1.433     banghart 3761:     $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126     ng       3762: 
1.477     albertel 3763:     my $result= &Apache::loncommon::start_data_table().
                   3764: 	&Apache::loncommon::start_data_table_header_row().
                   3765: 	'<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
                   3766: 	'<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43      ng       3767:     my %scoreptr = (
                   3768: 		    'correct'  =>'correct_by_override',
                   3769: 		    'incorrect'=>'incorrect_by_override',
                   3770: 		    'excused'  =>'excused',
                   3771: 		    'ungraded' =>'ungraded_attempted',
1.596     raeburn  3772:                     'credited' =>'credit_attempted',
1.43      ng       3773: 		    'nothing'  => '',
                   3774: 		    );
1.257     albertel 3775:     my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34      ng       3776: 
1.44      ng       3777:     my (@partid);
                   3778:     my %weight = ();
1.54      albertel 3779:     my %columns = ();
1.44      ng       3780:     my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54      albertel 3781: 
1.582     raeburn  3782:     my $partserror;
                   3783:     my (@parts) = sort(&getpartlist($symb,\$partserror));
                   3784:     if ($partserror) {
                   3785:         return &navmap_errormsg();
                   3786:     }
1.54      albertel 3787:     my $header;
1.257     albertel 3788:     while ($ctr < $env{'form.totalparts'}) {
                   3789: 	my $partid = $env{'form.partid_'.$ctr};
1.524     raeburn  3790: 	push(@partid,$partid);
1.257     albertel 3791: 	$weight{$partid} = $env{'form.weight_'.$partid};
1.44      ng       3792: 	$ctr++;
1.54      albertel 3793:     }
1.324     albertel 3794:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54      albertel 3795:     foreach my $partid (@partid) {
1.478     albertel 3796: 	$header .= '<th align="center">'.&mt('Old Score').'</th>'.
                   3797: 	    '<th align="center">'.&mt('New Score').'</th>';
1.54      albertel 3798: 	$columns{$partid}=2;
                   3799: 	foreach my $stores (@parts) {
                   3800: 	    my ($part,$type) = &split_part_type($stores);
                   3801: 	    if ($part !~ m/^\Q$partid\E/) { next;}
                   3802: 	    if ($type eq 'awarded' || $type eq 'solved') { next; }
                   3803: 	    my $display=&Apache::lonnet::metadata($url,$stores.'.display');
1.551     raeburn  3804: 	    $display =~ s/\[Part: \Q$part\E\]//;
1.539     riegler  3805:             my $narrowtext = &mt('Tries');
                   3806: 	    $display =~ s/Number of Attempts/$narrowtext/;
                   3807: 	    $header .= '<th align="center">'.&mt('Old').' '.$display.'</th>'.
                   3808: 		'<th align="center">'.&mt('New').' '.$display.'</th>';
1.54      albertel 3809: 	    $columns{$partid}+=2;
                   3810: 	}
                   3811:     }
                   3812:     foreach my $partid (@partid) {
1.324     albertel 3813: 	my $display_part=&get_display_part($partid,$symb);
1.478     albertel 3814: 	$result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
                   3815: 	    &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
                   3816: 	    '</th>';
1.54      albertel 3817: 
1.44      ng       3818:     }
1.477     albertel 3819:     $result .= &Apache::loncommon::end_data_table_header_row().
                   3820: 	&Apache::loncommon::start_data_table_header_row().
                   3821: 	$header.
                   3822: 	&Apache::loncommon::end_data_table_header_row();
                   3823:     my @noupdate;
1.126     ng       3824:     my ($updateCtr,$noupdateCtr) = (1,1);
1.257     albertel 3825:     for ($i=0; $i<$env{'form.total'}; $i++) {
1.93      albertel 3826: 	my $line;
1.257     albertel 3827: 	my $user = $env{'form.ctr'.$i};
1.281     albertel 3828: 	my ($uname,$udom)=split(/:/,$user);
1.44      ng       3829: 	my %newrecord;
                   3830: 	my $updateflag = 0;
1.281     albertel 3831: 	$line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108     albertel 3832: 	my $usec=$classlist->{"$uname:$udom"}[5];
1.105     albertel 3833: 	if (!&canmodify($usec)) {
1.126     ng       3834: 	    my $numcols=scalar(@partid)*4+2;
1.477     albertel 3835: 	    push(@noupdate,
1.478     albertel 3836: 		 $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
                   3837: 		 &mt('Not allowed to modify student')."</span></td></tr>");
1.105     albertel 3838: 	    next;
                   3839: 	}
1.269     raeburn  3840:         my %aggregate = ();
                   3841:         my $aggregateflag = 0;
1.281     albertel 3842: 	$user=~s/:/_/; # colon doen't work in javascript for names
1.44      ng       3843: 	foreach (@partid) {
1.257     albertel 3844: 	    my $old_aw    = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54      albertel 3845: 	    my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
                   3846: 	    my $old_part  = $old_aw eq '' ? '' : $old_part_pcr;
1.257     albertel 3847: 	    my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
                   3848: 	    my $awarded   = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54      albertel 3849: 	    my $pcr       = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
                   3850: 	    my $partial   = $awarded eq '' ? '' : $pcr;
1.44      ng       3851: 	    my $score;
                   3852: 	    if ($partial eq '') {
1.257     albertel 3853: 		$score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44      ng       3854: 	    } elsif ($partial > 0) {
                   3855: 		$score = 'correct_by_override';
                   3856: 	    } elsif ($partial == 0) {
                   3857: 		$score = 'incorrect_by_override';
                   3858: 	    }
1.257     albertel 3859: 	    my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125     ng       3860: 	    $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
                   3861: 
1.292     albertel 3862: 	    $newrecord{'resource.'.$_.'.regrader'}=
                   3863: 		"$env{'user.name'}:$env{'user.domain'}";
1.125     ng       3864: 	    if ($dropMenu eq 'reset status' &&
                   3865: 		$old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299     albertel 3866: 		$newrecord{'resource.'.$_.'.tries'} = '';
1.125     ng       3867: 		$newrecord{'resource.'.$_.'.solved'} = '';
                   3868: 		$newrecord{'resource.'.$_.'.award'} = '';
1.299     albertel 3869: 		$newrecord{'resource.'.$_.'.awarded'} = '';
1.125     ng       3870: 		$updateflag = 1;
1.269     raeburn  3871:                 if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
                   3872:                     my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
                   3873:                     my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
                   3874:                     my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
                   3875:                     &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
                   3876:                     $aggregateflag = 1;
                   3877:                 }
1.139     albertel 3878: 	    } elsif (!($old_part eq $partial && $old_score eq $score)) {
                   3879: 		$updateflag = 1;
                   3880: 		$newrecord{'resource.'.$_.'.awarded'}  = $partial if $partial ne '';
                   3881: 		$newrecord{'resource.'.$_.'.solved'}   = $score;
                   3882: 		$rec_update++;
1.125     ng       3883: 	    }
                   3884: 
1.93      albertel 3885: 	    $line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.44      ng       3886: 		'<td align="center">'.$awarded.
                   3887: 		($score eq 'excused' ? $score : '').'&nbsp;</td>';
1.5       albertel 3888: 
1.54      albertel 3889: 
                   3890: 	    my $partid=$_;
                   3891: 	    foreach my $stores (@parts) {
                   3892: 		my ($part,$type) = &split_part_type($stores);
                   3893: 		if ($part !~ m/^\Q$partid\E/) { next;}
                   3894: 		if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257     albertel 3895: 		my $old_aw    = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
                   3896: 		my $awarded   = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54      albertel 3897: 		if ($awarded ne '' && $awarded ne $old_aw) {
                   3898: 		    $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257     albertel 3899: 		    $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54      albertel 3900: 		    $updateflag=1;
                   3901: 		}
1.93      albertel 3902: 		$line .= '<td align="center">'.$old_aw.'&nbsp;</td>'.
1.54      albertel 3903: 		    '<td align="center">'.$awarded.'&nbsp;</td>';
                   3904: 	    }
1.44      ng       3905: 	}
1.477     albertel 3906: 	$line.="\n";
1.301     albertel 3907: 
                   3908: 	my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3909: 	my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3910: 
1.44      ng       3911: 	if ($updateflag) {
                   3912: 	    $count++;
1.257     albertel 3913: 	    &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89      albertel 3914: 				    $udom,$uname);
1.301     albertel 3915: 
                   3916: 	    if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
                   3917: 					      $cnum,$udom,$uname)) {
                   3918: 		# need to figure out if should be in queue.
                   3919: 		my %record =  
                   3920: 		    &Apache::lonnet::restore($symb,$env{'request.course.id'},
                   3921: 					     $udom,$uname);
                   3922: 		my $all_graded = 1;
                   3923: 		my $none_graded = 1;
                   3924: 		foreach my $part (@parts) {
                   3925: 		    if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
                   3926: 			$all_graded = 0;
                   3927: 		    } else {
                   3928: 			$none_graded = 0;
                   3929: 		    }
                   3930: 		}
                   3931: 
                   3932: 		if ($all_graded || $none_graded) {
                   3933: 		    &Apache::bridgetask::remove_from_queue('gradingqueue',
                   3934: 							   $symb,$cdom,$cnum,
                   3935: 							   $udom,$uname);
                   3936: 		}
                   3937: 	    }
                   3938: 
1.477     albertel 3939: 	    $result.=&Apache::loncommon::start_data_table_row().
                   3940: 		'<td align="right">&nbsp;'.$updateCtr.'&nbsp;</td>'.$line.
                   3941: 		&Apache::loncommon::end_data_table_row();
1.126     ng       3942: 	    $updateCtr++;
1.93      albertel 3943: 	} else {
1.477     albertel 3944: 	    push(@noupdate,
                   3945: 		 '<td align="right">&nbsp;'.$noupdateCtr.'&nbsp;</td>'.$line);
1.126     ng       3946: 	    $noupdateCtr++;
1.44      ng       3947: 	}
1.269     raeburn  3948:         if ($aggregateflag) {
                   3949:             &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301     albertel 3950: 				  $cdom,$cnum);
1.269     raeburn  3951:         }
1.93      albertel 3952:     }
1.477     albertel 3953:     if (@noupdate) {
1.126     ng       3954: #	my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
                   3955: 	my $numcols=scalar(@partid)*4+2;
1.477     albertel 3956: 	$result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478     albertel 3957: 	    '<td align="center" colspan="'.$numcols.'">'.
                   3958: 	    &mt('No Changes Occurred For the Students Below').
                   3959: 	    '</td>'.
1.477     albertel 3960: 	    &Apache::loncommon::end_data_table_row();
                   3961: 	foreach my $line (@noupdate) {
                   3962: 	    $result.=
                   3963: 		&Apache::loncommon::start_data_table_row().
                   3964: 		$line.
                   3965: 		&Apache::loncommon::end_data_table_row();
                   3966: 	}
1.44      ng       3967:     }
1.614     www      3968:     $result .= &Apache::loncommon::end_data_table();
1.478     albertel 3969:     my $msg = '<p><b>'.
                   3970: 	&mt('Number of records updated = [_1] for [quant,_2,student].',
                   3971: 	    $rec_update,$count).'</b><br />'.
                   3972: 	'<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
                   3973: 	'</b></p>';
1.44      ng       3974:     return $title.$msg.$result;
1.5       albertel 3975: }
1.54      albertel 3976: 
                   3977: sub split_part_type {
                   3978:     my ($partstr) = @_;
                   3979:     my ($temp,@allparts)=split(/_/,$partstr);
                   3980:     my $type=pop(@allparts);
1.439     albertel 3981:     my $part=join('_',@allparts);
1.54      albertel 3982:     return ($part,$type);
                   3983: }
                   3984: 
1.44      ng       3985: #------------- end of section for handling grading by section/class ---------
                   3986: #
                   3987: #----------------------------------------------------------------------------
                   3988: 
1.5       albertel 3989: 
1.44      ng       3990: #----------------------------------------------------------------------------
                   3991: #
                   3992: #-------------------------- Next few routines handles grading by csv upload
                   3993: #
                   3994: #--- Javascript to handle csv upload
1.27      albertel 3995: sub csvupload_javascript_reverse_associate {
1.573     bisitz   3996:     my $error1=&mt('You need to specify the username or the student/employee ID');
1.246     albertel 3997:     my $error2=&mt('You need to specify at least one grading field');
1.27      albertel 3998:   return(<<ENDPICK);
                   3999:   function verify(vf) {
                   4000:     var foundsomething=0;
                   4001:     var founduname=0;
1.243     albertel 4002:     var foundID=0;
1.27      albertel 4003:     for (i=0;i<=vf.nfields.value;i++) {
                   4004:       tw=eval('vf.f'+i+'.selectedIndex');
1.243     albertel 4005:       if (i==0 && tw!=0) { foundID=1; }
                   4006:       if (i==1 && tw!=0) { founduname=1; }
                   4007:       if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27      albertel 4008:     }
1.246     albertel 4009:     if (founduname==0 && foundID==0) {
                   4010: 	alert('$error1');
                   4011: 	return;
1.27      albertel 4012:     }
                   4013:     if (foundsomething==0) {
1.246     albertel 4014: 	alert('$error2');
                   4015: 	return;
1.27      albertel 4016:     }
                   4017:     vf.submit();
                   4018:   }
                   4019:   function flip(vf,tf) {
                   4020:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   4021:     var i;
                   4022:     for (i=0;i<=vf.nfields.value;i++) {
                   4023:       //can not pick the same destination field for both name and domain
                   4024:       if (((i ==0)||(i ==1)) && 
                   4025:           ((tf==0)||(tf==1)) && 
                   4026:           (i!=tf) &&
                   4027:           (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   4028:         eval('vf.f'+i+'.selectedIndex=0;')
                   4029:       }
                   4030:     }
                   4031:   }
                   4032: ENDPICK
                   4033: }
                   4034: 
                   4035: sub csvupload_javascript_forward_associate {
1.573     bisitz   4036:     my $error1=&mt('You need to specify the username or the student/employee ID');
1.246     albertel 4037:     my $error2=&mt('You need to specify at least one grading field');
1.27      albertel 4038:   return(<<ENDPICK);
                   4039:   function verify(vf) {
                   4040:     var foundsomething=0;
                   4041:     var founduname=0;
1.243     albertel 4042:     var foundID=0;
1.27      albertel 4043:     for (i=0;i<=vf.nfields.value;i++) {
                   4044:       tw=eval('vf.f'+i+'.selectedIndex');
1.243     albertel 4045:       if (tw==1) { foundID=1; }
                   4046:       if (tw==2) { founduname=1; }
                   4047:       if (tw>3) { foundsomething=1; }
1.27      albertel 4048:     }
1.246     albertel 4049:     if (founduname==0 && foundID==0) {
                   4050: 	alert('$error1');
                   4051: 	return;
1.27      albertel 4052:     }
                   4053:     if (foundsomething==0) {
1.246     albertel 4054: 	alert('$error2');
                   4055: 	return;
1.27      albertel 4056:     }
                   4057:     vf.submit();
                   4058:   }
                   4059:   function flip(vf,tf) {
                   4060:     var nw=eval('vf.f'+tf+'.selectedIndex');
                   4061:     var i;
                   4062:     //can not pick the same destination field twice
                   4063:     for (i=0;i<=vf.nfields.value;i++) {
                   4064:       if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
                   4065:         eval('vf.f'+i+'.selectedIndex=0;')
                   4066:       }
                   4067:     }
                   4068:   }
                   4069: ENDPICK
                   4070: }
                   4071: 
1.26      albertel 4072: sub csvuploadmap_header {
1.324     albertel 4073:     my ($request,$symb,$datatoken,$distotal)= @_;
1.41      ng       4074:     my $javascript;
1.257     albertel 4075:     if ($env{'form.upfile_associate'} eq 'reverse') {
1.41      ng       4076: 	$javascript=&csvupload_javascript_reverse_associate();
                   4077:     } else {
                   4078: 	$javascript=&csvupload_javascript_forward_associate();
                   4079:     }
1.45      ng       4080: 
1.418     albertel 4081:     $symb = &Apache::lonenc::check_encrypt($symb);
1.632     www      4082:     $request->print('<form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">'.
                   4083:                     &mt('Total number of records found in file: [_1]',$distotal).'<hr />'.
                   4084:                     &mt('Associate entries from the uploaded file with as many fields as you can.'));
                   4085:     my $reverse=&mt("Reverse Association");
1.41      ng       4086:     $request->print(<<ENDPICK);
1.632     www      4087: <br />
                   4088: <input type="button" value="$reverse" onclick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.26      albertel 4089: <input type="hidden" name="associate"  value="" />
                   4090: <input type="hidden" name="phase"      value="three" />
                   4091: <input type="hidden" name="datatoken"  value="$datatoken" />
1.257     albertel 4092: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
                   4093: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26      albertel 4094: <input type="hidden" name="upfile_associate" 
1.257     albertel 4095:                                        value="$env{'form.upfile_associate'}" />
1.26      albertel 4096: <input type="hidden" name="symb"       value="$symb" />
1.246     albertel 4097: <input type="hidden" name="command"    value="csvuploadoptions" />
1.26      albertel 4098: <hr />
                   4099: ENDPICK
1.597     wenzelju 4100:     $request->print(&Apache::lonhtmlcommon::scripttag($javascript));
1.118     ng       4101:     return '';
1.26      albertel 4102: 
                   4103: }
                   4104: 
                   4105: sub csvupload_fields {
1.582     raeburn  4106:     my ($symb,$errorref) = @_;
                   4107:     my (@parts) = &getpartlist($symb,$errorref);
                   4108:     if (ref($errorref)) {
                   4109:         if ($$errorref) {
                   4110:             return;
                   4111:         }
                   4112:     }
                   4113: 
1.556     weissno  4114:     my @fields=(['ID','Student/Employee ID'],
1.243     albertel 4115: 		['username','Student Username'],
                   4116: 		['domain','Student Domain']);
1.324     albertel 4117:     my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41      ng       4118:     foreach my $part (sort(@parts)) {
                   4119: 	my @datum;
                   4120: 	my $display=&Apache::lonnet::metadata($url,$part.'.display');
                   4121: 	my $name=$part;
                   4122: 	if  (!$display) { $display = $name; }
                   4123: 	@datum=($name,$display);
1.244     albertel 4124: 	if ($name=~/^stores_(.*)_awarded/) {
                   4125: 	    push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
                   4126: 	}
1.41      ng       4127: 	push(@fields,\@datum);
                   4128:     }
                   4129:     return (@fields);
1.26      albertel 4130: }
                   4131: 
                   4132: sub csvuploadmap_footer {
1.41      ng       4133:     my ($request,$i,$keyfields) =@_;
                   4134:     $request->print(<<ENDPICK);
1.26      albertel 4135: </table>
                   4136: <input type="hidden" name="nfields" value="$i" />
                   4137: <input type="hidden" name="keyfields" value="$keyfields" />
1.589     bisitz   4138: <input type="button" onclick="javascript:verify(this.form)" value="Assign Grades" /><br />
1.26      albertel 4139: </form>
                   4140: ENDPICK
                   4141: }
                   4142: 
1.283     albertel 4143: sub checkforfile_js {
1.638     www      4144:     my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
1.597     wenzelju 4145:     my $result = &Apache::lonhtmlcommon::scripttag(<<CSVFORMJS);
1.86      ng       4146:     function checkUpload(formname) {
                   4147: 	if (formname.upfile.value == "") {
1.539     riegler  4148: 	    alert("$alertmsg");
1.86      ng       4149: 	    return false;
                   4150: 	}
                   4151: 	formname.submit();
                   4152:     }
                   4153: CSVFORMJS
1.283     albertel 4154:     return $result;
                   4155: }
                   4156: 
                   4157: sub upcsvScores_form {
1.608     www      4158:     my ($request,$symb) = @_;
1.283     albertel 4159:     if (!$symb) {return '';}
                   4160:     my $result=&checkforfile_js();
1.632     www      4161:     $result.=&Apache::loncommon::start_data_table().
                   4162:              &Apache::loncommon::start_data_table_header_row().
                   4163:              '<th>'.&mt('Specify a file containing the class scores for current resource.').'</th>'.
                   4164:              &Apache::loncommon::end_data_table_header_row().
                   4165:              &Apache::loncommon::start_data_table_row().'<td>';
1.370     www      4166:     my $upload=&mt("Upload Scores");
1.86      ng       4167:     my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245     albertel 4168:     my $ignore=&mt('Ignore First Line');
1.418     albertel 4169:     $symb = &Apache::lonenc::check_encrypt($symb);
1.86      ng       4170:     $result.=<<ENDUPFORM;
1.106     albertel 4171: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86      ng       4172: <input type="hidden" name="symb" value="$symb" />
                   4173: <input type="hidden" name="command" value="csvuploadmap" />
                   4174: $upfile_select
1.589     bisitz   4175: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.86      ng       4176: </form>
                   4177: ENDUPFORM
1.370     www      4178:     $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
1.632     www      4179:                            &mt("How do I create a CSV file from a spreadsheet")).
                   4180:              '</td>'.
                   4181:             &Apache::loncommon::end_data_table_row().
                   4182:             &Apache::loncommon::end_data_table();
1.86      ng       4183:     return $result;
                   4184: }
                   4185: 
                   4186: 
1.26      albertel 4187: sub csvuploadmap {
1.608     www      4188:     my ($request,$symb)= @_;
1.41      ng       4189:     if (!$symb) {return '';}
1.72      ng       4190: 
1.41      ng       4191:     my $datatoken;
1.257     albertel 4192:     if (!$env{'form.datatoken'}) {
1.41      ng       4193: 	$datatoken=&Apache::loncommon::upfile_store($request);
1.26      albertel 4194:     } else {
1.257     albertel 4195: 	$datatoken=$env{'form.datatoken'};
1.41      ng       4196: 	&Apache::loncommon::load_tmp_file($request);
1.26      albertel 4197:     }
1.41      ng       4198:     my @records=&Apache::loncommon::upfile_record_sep();
1.324     albertel 4199:     &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41      ng       4200:     my ($i,$keyfields);
                   4201:     if (@records) {
1.582     raeburn  4202:         my $fieldserror;
                   4203: 	my @fields=&csvupload_fields($symb,\$fieldserror);
                   4204:         if ($fieldserror) {
                   4205:             $request->print(&navmap_errormsg());
                   4206:             return;
                   4207:         }
1.257     albertel 4208: 	if ($env{'form.upfile_associate'} eq 'reverse') {	
1.41      ng       4209: 	    &Apache::loncommon::csv_print_samples($request,\@records);
                   4210: 	    $i=&Apache::loncommon::csv_print_select_table($request,\@records,
                   4211: 							  \@fields);
                   4212: 	    foreach (@fields) { $keyfields.=$_->[0].','; }
                   4213: 	    chop($keyfields);
                   4214: 	} else {
                   4215: 	    unshift(@fields,['none','']);
                   4216: 	    $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
                   4217: 							    \@fields);
1.311     banghart 4218:             foreach my $rec (@records) {
                   4219:                 my %temp = &Apache::loncommon::record_sep($rec);
                   4220:                 if (%temp) {
                   4221:                     $keyfields=join(',',sort(keys(%temp)));
                   4222:                     last;
                   4223:                 }
                   4224:             }
1.41      ng       4225: 	}
                   4226:     }
                   4227:     &csvuploadmap_footer($request,$i,$keyfields);
1.72      ng       4228: 
1.41      ng       4229:     return '';
1.27      albertel 4230: }
                   4231: 
1.246     albertel 4232: sub csvuploadoptions {
1.608     www      4233:     my ($request,$symb)= @_;
1.632     www      4234:     my $overwrite=&mt('Overwrite any existing score');
1.246     albertel 4235:     $request->print(<<ENDPICK);
                   4236: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
                   4237: <input type="hidden" name="command"    value="csvuploadassign" />
                   4238: <p>
                   4239: <label>
                   4240:    <input type="checkbox" name="overwite_scores" checked="checked" />
1.632     www      4241:    $overwrite
1.246     albertel 4242: </label>
                   4243: </p>
                   4244: ENDPICK
                   4245:     my %fields=&get_fields();
                   4246:     if (!defined($fields{'domain'})) {
1.257     albertel 4247: 	my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.632     www      4248: 	$request->print("\n<p>".&mt('Users are in domain: [_1]',$domform)."</p>\n");
1.246     albertel 4249:     }
1.257     albertel 4250:     foreach my $key (sort(keys(%env))) {
1.246     albertel 4251: 	if ($key !~ /^form\.(.*)$/) { next; }
                   4252: 	my $cleankey=$1;
                   4253: 	if ($cleankey eq 'command') { next; }
                   4254: 	$request->print('<input type="hidden" name="'.$cleankey.
1.257     albertel 4255: 			'"  value="'.$env{$key}.'" />'."\n");
1.246     albertel 4256:     }
                   4257:     # FIXME do a check for any duplicated user ids...
                   4258:     # FIXME do a check for any invalid user ids?...
1.290     albertel 4259:     $request->print('<input type="submit" value="Assign Grades" /><br />
                   4260: <hr /></form>'."\n");
1.246     albertel 4261:     return '';
                   4262: }
                   4263: 
                   4264: sub get_fields {
                   4265:     my %fields;
1.257     albertel 4266:     my @keyfields = split(/\,/,$env{'form.keyfields'});
                   4267:     for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
                   4268: 	if ($env{'form.upfile_associate'} eq 'reverse') {
                   4269: 	    if ($env{'form.f'.$i} ne 'none') {
                   4270: 		$fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41      ng       4271: 	    }
                   4272: 	} else {
1.257     albertel 4273: 	    if ($env{'form.f'.$i} ne 'none') {
                   4274: 		$fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41      ng       4275: 	    }
                   4276: 	}
1.27      albertel 4277:     }
1.246     albertel 4278:     return %fields;
                   4279: }
                   4280: 
                   4281: sub csvuploadassign {
1.608     www      4282:     my ($request,$symb)= @_;
1.246     albertel 4283:     if (!$symb) {return '';}
1.345     bowersj2 4284:     my $error_msg = '';
1.246     albertel 4285:     &Apache::loncommon::load_tmp_file($request);
                   4286:     my @gradedata = &Apache::loncommon::upfile_record_sep();
                   4287:     my %fields=&get_fields();
1.257     albertel 4288:     my $courseid=$env{'request.course.id'};
1.97      albertel 4289:     my ($classlist) = &getclasslist('all',0);
1.106     albertel 4290:     my @notallowed;
1.41      ng       4291:     my @skipped;
1.657     raeburn  4292:     my @warnings;
1.41      ng       4293:     my $countdone=0;
                   4294:     foreach my $grade (@gradedata) {
                   4295: 	my %entries=&Apache::loncommon::record_sep($grade);
1.246     albertel 4296: 	my $domain;
                   4297: 	if ($entries{$fields{'domain'}}) {
                   4298: 	    $domain=$entries{$fields{'domain'}};
                   4299: 	} else {
1.257     albertel 4300: 	    $domain=$env{'form.default_domain'};
1.246     albertel 4301: 	}
1.243     albertel 4302: 	$domain=~s/\s//g;
1.41      ng       4303: 	my $username=$entries{$fields{'username'}};
1.160     albertel 4304: 	$username=~s/\s//g;
1.243     albertel 4305: 	if (!$username) {
                   4306: 	    my $id=$entries{$fields{'ID'}};
1.247     albertel 4307: 	    $id=~s/\s//g;
1.243     albertel 4308: 	    my %ids=&Apache::lonnet::idget($domain,$id);
                   4309: 	    $username=$ids{$id};
                   4310: 	}
1.41      ng       4311: 	if (!exists($$classlist{"$username:$domain"})) {
1.247     albertel 4312: 	    my $id=$entries{$fields{'ID'}};
                   4313: 	    $id=~s/\s//g;
                   4314: 	    if ($id) {
                   4315: 		push(@skipped,"$id:$domain");
                   4316: 	    } else {
                   4317: 		push(@skipped,"$username:$domain");
                   4318: 	    }
1.41      ng       4319: 	    next;
                   4320: 	}
1.108     albertel 4321: 	my $usec=$classlist->{"$username:$domain"}[5];
1.106     albertel 4322: 	if (!&canmodify($usec)) {
                   4323: 	    push(@notallowed,"$username:$domain");
                   4324: 	    next;
                   4325: 	}
1.244     albertel 4326: 	my %points;
1.41      ng       4327: 	my %grades;
                   4328: 	foreach my $dest (keys(%fields)) {
1.244     albertel 4329: 	    if ($dest eq 'ID' || $dest eq 'username' ||
                   4330: 		$dest eq 'domain') { next; }
                   4331: 	    if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
                   4332: 	    if ($dest=~/stores_(.*)_points/) {
                   4333: 		my $part=$1;
                   4334: 		my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
                   4335: 					      $symb,$domain,$username);
1.345     bowersj2 4336:                 if ($wgt) {
                   4337:                     $entries{$fields{$dest}}=~s/\s//g;
                   4338:                     my $pcr=$entries{$fields{$dest}} / $wgt;
1.463     albertel 4339:                     my $award=($pcr == 0) ? 'incorrect_by_override'
                   4340:                                           : 'correct_by_override';
1.638     www      4341:                     if ($pcr>1) {
1.657     raeburn  4342:                        push(@warnings,&mt("[_1]: point value larger than weight","$username:$domain"));
1.638     www      4343:                     }
1.345     bowersj2 4344:                     $grades{"resource.$part.awarded"}=$pcr;
                   4345:                     $grades{"resource.$part.solved"}=$award;
                   4346:                     $points{$part}=1;
                   4347:                 } else {
                   4348:                     $error_msg = "<br />" .
                   4349:                         &mt("Some point values were assigned"
                   4350:                             ." for problems with a weight "
                   4351:                             ."of zero. These values were "
                   4352:                             ."ignored.");
                   4353:                 }
1.244     albertel 4354: 	    } else {
                   4355: 		if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
                   4356: 		if ($dest=~/stores_(.*)_solved/)  { if ($points{$1}) {next;} }
                   4357: 		my $store_key=$dest;
                   4358: 		$store_key=~s/^stores/resource/;
                   4359: 		$store_key=~s/_/\./g;
                   4360: 		$grades{$store_key}=$entries{$fields{$dest}};
                   4361: 	    }
1.41      ng       4362: 	}
1.508     www      4363: 	if (! %grades) { 
                   4364:            push(@skipped,&mt("[_1]: no data to save","$username:$domain")); 
                   4365:         } else {
                   4366: 	   $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
                   4367: 	   my $result=&Apache::lonnet::cstore(\%grades,$symb,
1.302     albertel 4368: 					   $env{'request.course.id'},
                   4369: 					   $domain,$username);
1.508     www      4370: 	   if ($result eq 'ok') {
1.627     www      4371: # Successfully stored
1.508     www      4372: 	      $request->print('.');
1.627     www      4373: # Remove from grading queue
                   4374:               &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,
                   4375:                                              $env{'course.'.$env{'request.course.id'}.'.domain'},
                   4376:                                              $env{'course.'.$env{'request.course.id'}.'.num'},
                   4377:                                              $domain,$username);
                   4378:               $countdone++;
                   4379:            } else {
1.508     www      4380: 	      $request->print("<p><span class=\"LC_error\">".
                   4381:                               &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
                   4382:                                   "$username:$domain",$result)."</span></p>");
                   4383: 	   }
                   4384: 	   $request->rflush();
                   4385:         }
1.41      ng       4386:     }
1.570     www      4387:     $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt("Saved scores for [quant,_1,student]",$countdone),$countdone==0));
1.657     raeburn  4388:     if (@warnings) {
                   4389:         $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Warnings generated for the following saved scores:'),1).'<br />');
                   4390:         $request->print(join(', ',@warnings));
                   4391:     }
1.41      ng       4392:     if (@skipped) {
1.571     www      4393: 	$request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('No scores stored for the following username(s):'),1).'<br />');
                   4394:         $request->print(join(', ',@skipped));
1.106     albertel 4395:     }
                   4396:     if (@notallowed) {
1.571     www      4397: 	$request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Modification of scores not allowed for the following username(s):'),1).'<br />');
                   4398: 	$request->print(join(', ',@notallowed));
1.41      ng       4399:     }
1.106     albertel 4400:     $request->print("<br />\n");
1.345     bowersj2 4401:     return $error_msg;
1.26      albertel 4402: }
1.44      ng       4403: #------------- end of section for handling csv file upload ---------
                   4404: #
                   4405: #-------------------------------------------------------------------
                   4406: #
1.122     ng       4407: #-------------- Next few routines handle grading by page/sequence
1.72      ng       4408: #
                   4409: #--- Select a page/sequence and a student to grade
1.68      ng       4410: sub pickStudentPage {
1.608     www      4411:     my ($request,$symb) = @_;
1.68      ng       4412: 
1.539     riegler  4413:     my $alertmsg = &mt('Please select the student you wish to grade.');
1.597     wenzelju 4414:     $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
1.68      ng       4415: 
                   4416: function checkPickOne(formname) {
1.76      ng       4417:     if (radioSelection(formname.student) == null) {
1.539     riegler  4418: 	alert("$alertmsg");
1.68      ng       4419: 	return;
                   4420:     }
1.125     ng       4421:     ptr = pullDownSelection(formname.selectpage);
                   4422:     formname.page.value = formname["page"+ptr].value;
                   4423:     formname.title.value = formname["title"+ptr].value;
1.68      ng       4424:     formname.submit();
                   4425: }
                   4426: 
                   4427: LISTJAVASCRIPT
1.118     ng       4428:     &commonJSfunctions($request);
1.608     www      4429: 
1.257     albertel 4430:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   4431:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   4432:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68      ng       4433: 
1.398     albertel 4434:     my $result='<h3><span class="LC_info">&nbsp;'.
1.485     albertel 4435: 	&mt('Manual Grading by Page or Sequence').'</span></h3>';
1.68      ng       4436: 
1.80      ng       4437:     $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.582     raeburn  4438:     my $map_error;
                   4439:     my ($titles,$symbx) = &getSymbMap($map_error);
                   4440:     if ($map_error) {
                   4441:         $request->print(&navmap_errormsg());
                   4442:         return; 
                   4443:     }
1.137     albertel 4444:     my ($curpage) =&Apache::lonnet::decode_symb($symb); 
                   4445: #    my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb); 
                   4446: #    my $type=($curpage =~ /\.(page|sequence)/);
1.485     albertel 4447:     my $select = '<select name="selectpage">'."\n";
1.70      ng       4448:     my $ctr=0;
1.68      ng       4449:     foreach (@$titles) {
                   4450: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.485     albertel 4451: 	$select.='<option value="'.$ctr.'" '.
1.401     albertel 4452: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71      ng       4453: 	    '>'.$showtitle.'</option>'."\n";
1.70      ng       4454: 	$ctr++;
1.68      ng       4455:     }
1.485     albertel 4456:     $select.= '</select>';
1.539     riegler  4457:     $result.='&nbsp;<b>'.&mt('Problems from').':</b> '.$select."<br />\n";
1.485     albertel 4458: 
1.70      ng       4459:     $ctr=0;
                   4460:     foreach (@$titles) {
                   4461: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   4462: 	$result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
                   4463: 	$result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
                   4464: 	$ctr++;
                   4465:     }
1.72      ng       4466:     $result.='<input type="hidden" name="page" />'."\n".
                   4467: 	'<input type="hidden" name="title" />'."\n";
1.68      ng       4468: 
1.485     albertel 4469:     my $options =
                   4470: 	'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
                   4471: 	'<label><input type="radio" name="vProb" value="yes" /> '.&mt('yes').' </label>'."<br />\n";
1.539     riegler  4472:     $result.='&nbsp;<b>'.&mt('View Problem Text').': </b>'.$options;
1.485     albertel 4473: 
                   4474:     $options =
                   4475: 	'<label><input type="radio" name="lastSub" value="none" /> '.&mt('none').' </label>'."\n".
                   4476: 	'<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.&mt('by dates and submissions').'</label>'."\n".
                   4477: 	'<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').' </label>'."\n";
1.539     riegler  4478:     $result.='&nbsp;<b>'.&mt('Submissions').': </b>'.$options;
1.432     banghart 4479:     
                   4480:     $result.=&build_section_inputs();
1.442     banghart 4481:     my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
                   4482:     $result.='<input type="hidden" name="Status"  value="'.$stu_status.'" />'."\n".
1.72      ng       4483: 	'<input type="hidden" name="command" value="displayPage" />'."\n".
1.613     www      4484: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."<br />\n";
1.72      ng       4485: 
1.539     riegler  4486:     $result.='&nbsp;<b>'.&mt('Use CODE').': </b> <input type="text" name="CODE" value="" /> <br />'."\n";
1.382     albertel 4487: 
1.80      ng       4488:     $result.='&nbsp;<input type="button" '.
1.589     bisitz   4489:              'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' &rarr;" /><br />'."\n";
1.72      ng       4490: 
1.68      ng       4491:     $request->print($result);
                   4492: 
1.485     albertel 4493:     my $studentTable.='&nbsp;<b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
1.484     albertel 4494: 	&Apache::loncommon::start_data_table().
                   4495: 	&Apache::loncommon::start_data_table_header_row().
1.485     albertel 4496: 	'<th align="right">&nbsp;'.&mt('No.').'</th>'.
1.484     albertel 4497: 	'<th>'.&nameUserString('header').'</th>'.
1.485     albertel 4498: 	'<th align="right">&nbsp;'.&mt('No.').'</th>'.
1.484     albertel 4499: 	'<th>'.&nameUserString('header').'</th>'.
                   4500: 	&Apache::loncommon::end_data_table_header_row();
1.68      ng       4501:  
1.76      ng       4502:     my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68      ng       4503:     my $ptr = 1;
1.294     albertel 4504:     foreach my $student (sort 
                   4505: 			 {
                   4506: 			     if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
                   4507: 				 return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
                   4508: 			     }
                   4509: 			     return $a cmp $b;
                   4510: 			 } (keys(%$fullname))) {
1.68      ng       4511: 	my ($uname,$udom) = split(/:/,$student);
1.484     albertel 4512: 	$studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
                   4513:                                   : '</td>');
1.126     ng       4514: 	$studentTable.='<td align="right">'.$ptr.'&nbsp;</td>';
1.288     albertel 4515: 	$studentTable.='<td>&nbsp;<label><input type="radio" name="student" value="'.$student.'" /> '
                   4516: 	    .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.484     albertel 4517: 	$studentTable.=
                   4518: 	    ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row() 
                   4519:                          : '');
1.68      ng       4520: 	$ptr++;
                   4521:     }
1.484     albertel 4522:     if ($ptr%2 == 0) {
                   4523: 	$studentTable.='</td><td>&nbsp;</td><td>&nbsp;</td>'.
                   4524: 	    &Apache::loncommon::end_data_table_row();
                   4525:     }
                   4526:     $studentTable.=&Apache::loncommon::end_data_table()."\n";
1.126     ng       4527:     $studentTable.='<input type="button" '.
1.589     bisitz   4528:                    'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' &rarr;" /></form>'."\n";
1.68      ng       4529: 
                   4530:     $request->print($studentTable);
                   4531: 
                   4532:     return '';
                   4533: }
                   4534: 
                   4535: sub getSymbMap {
1.582     raeburn  4536:     my ($map_error) = @_;
1.132     bowersj2 4537:     my $navmap = Apache::lonnavmaps::navmap->new();
1.582     raeburn  4538:     unless (ref($navmap)) {
                   4539:         if (ref($map_error)) {
                   4540:             $$map_error = 'navmap';
                   4541:         }
                   4542:         return;
                   4543:     }
1.68      ng       4544:     my %symbx = ();
                   4545:     my @titles = ();
1.117     bowersj2 4546:     my $minder = 0;
                   4547: 
                   4548:     # Gather every sequence that has problems.
1.240     albertel 4549:     my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
                   4550: 					       1,0,1);
1.117     bowersj2 4551:     for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241     albertel 4552: 	if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381     albertel 4553: 	    my $title = $minder.'.'.
                   4554: 		&HTML::Entities::encode($sequence->compTitle(),'"\'&');
                   4555: 	    push(@titles, $title); # minder in case two titles are identical
                   4556: 	    $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117     bowersj2 4557: 	    $minder++;
1.241     albertel 4558: 	}
1.68      ng       4559:     }
                   4560:     return \@titles,\%symbx;
                   4561: }
                   4562: 
1.72      ng       4563: #
                   4564: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68      ng       4565: sub displayPage {
1.608     www      4566:     my ($request,$symb) = @_;
1.257     albertel 4567:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   4568:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   4569:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
                   4570:     my $pageTitle = $env{'form.page'};
1.103     albertel 4571:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257     albertel 4572:     my ($uname,$udom) = split(/:/,$env{'form.student'});
                   4573:     my $usec=$classlist->{$env{'form.student'}}[5];
1.168     albertel 4574: 
                   4575:     #need to make sure we have the correct data for later EXT calls, 
                   4576:     #thus invalidate the cache
                   4577:     &Apache::lonnet::devalidatecourseresdata(
1.257     albertel 4578:                  $env{'course.'.$env{'request.course.id'}.'.num'},
                   4579:                  $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168     albertel 4580:     &Apache::lonnet::clear_EXT_cache_status();
                   4581: 
1.103     albertel 4582:     if (!&canview($usec)) {
1.485     albertel 4583: 	$request->print('<span class="LC_warning">'.&mt('Unable to view requested student. ([_1])',$env{'form.student'}).'</span>');
1.103     albertel 4584: 	return;
                   4585:     }
1.398     albertel 4586:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
1.485     albertel 4587:     $result.='<h3>&nbsp;'.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
1.129     ng       4588: 	'</h3>'."\n";
1.500     albertel 4589:     $env{'form.CODE'} = uc($env{'form.CODE'});
1.501     foxr     4590:     if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
1.485     albertel 4591: 	$result.='<h3>&nbsp;'.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
1.382     albertel 4592:     } else {
                   4593: 	delete($env{'form.CODE'});
                   4594:     }
1.71      ng       4595:     &sub_page_js($request);
                   4596:     $request->print($result);
                   4597: 
1.132     bowersj2 4598:     my $navmap = Apache::lonnavmaps::navmap->new();
1.582     raeburn  4599:     unless (ref($navmap)) {
                   4600:         $request->print(&navmap_errormsg());
                   4601:         return;
                   4602:     }
1.257     albertel 4603:     my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68      ng       4604:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288     albertel 4605:     if (!$map) {
1.485     albertel 4606: 	$request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
1.288     albertel 4607: 	return; 
                   4608:     }
1.68      ng       4609:     my $iterator = $navmap->getIterator($map->map_start(),
                   4610: 					$map->map_finish());
                   4611: 
1.71      ng       4612:     my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72      ng       4613: 	'<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257     albertel 4614: 	'<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
                   4615: 	'<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72      ng       4616: 	'<input type="hidden" name="page"    value="'.$pageTitle.'" />'."\n".
1.257     albertel 4617: 	'<input type="hidden" name="title"   value="'.$env{'form.title'}.'" />'."\n".
1.418     albertel 4618: 	'<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.613     www      4619: 	'<input type="hidden" name="overRideScore" value="no" />'."\n";
1.71      ng       4620: 
1.382     albertel 4621:     if (defined($env{'form.CODE'})) {
                   4622: 	$studentTable.=
                   4623: 	    '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
                   4624:     }
1.381     albertel 4625:     my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485     albertel 4626: 	'" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71      ng       4627: 
1.594     bisitz   4628:     $studentTable.='&nbsp;<span class="LC_info">'.
                   4629:         &mt('Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon).
                   4630:         '</span>'."\n".
1.484     albertel 4631: 	&Apache::loncommon::start_data_table().
                   4632: 	&Apache::loncommon::start_data_table_header_row().
                   4633: 	'<th align="center">&nbsp;Prob.&nbsp;</th>'.
1.485     albertel 4634: 	'<th>&nbsp;'.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
1.484     albertel 4635: 	&Apache::loncommon::end_data_table_header_row();
1.71      ng       4636: 
1.329     albertel 4637:     &Apache::lonxml::clear_problem_counter();
1.196     albertel 4638:     my ($depth,$question,$prob) = (1,1,1);
1.68      ng       4639:     $iterator->next(); # skip the first BEGIN_MAP
                   4640:     my $curRes = $iterator->next(); # for "current resource"
1.101     albertel 4641:     while ($depth > 0) {
1.68      ng       4642:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 4643:         if($curRes == $iterator->END_MAP) { $depth--; }
1.68      ng       4644: 
1.385     albertel 4645:         if (ref($curRes) && $curRes->is_problem()) {
1.91      albertel 4646: 	    my $parts = $curRes->parts();
1.68      ng       4647:             my $title = $curRes->compTitle();
1.71      ng       4648: 	    my $symbx = $curRes->symb();
1.484     albertel 4649: 	    $studentTable.=
                   4650: 		&Apache::loncommon::start_data_table_row().
                   4651: 		'<td align="center" valign="top" >'.$prob.
1.485     albertel 4652: 		(scalar(@{$parts}) == 1 ? '' 
1.681     raeburn  4653: 		                        : '<br />('.&mt('[_1]parts',
                   4654: 							scalar(@{$parts}).'&nbsp;').')'
1.485     albertel 4655: 		 ).
                   4656: 		 '</td>';
1.71      ng       4657: 	    $studentTable.='<td valign="top">';
1.382     albertel 4658: 	    my %form = ('CODE' => $env{'form.CODE'},);
1.257     albertel 4659: 	    if ($env{'form.vProb'} eq 'yes' ) {
1.144     albertel 4660: 		$studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383     albertel 4661: 					     undef,'both',\%form);
1.71      ng       4662: 	    } else {
1.382     albertel 4663: 		my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80      ng       4664: 		$companswer =~ s|<form(.*?)>||g;
                   4665: 		$companswer =~ s|</form>||g;
1.71      ng       4666: #		while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116     ng       4667: #		    $companswer =~ s/$1/ /ms;
1.326     albertel 4668: #		    $request->print('match='.$1."<br />\n");
1.71      ng       4669: #		}
1.116     ng       4670: #		$companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.539     riegler  4671: 		$studentTable.='&nbsp;<b>'.$title.'</b>&nbsp;<br />&nbsp;<b>'.&mt('Correct answer').':</b><br />'.$companswer;
1.71      ng       4672: 	    }
                   4673: 
1.257     albertel 4674: 	    my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125     ng       4675: 
1.257     albertel 4676: 	    if ($env{'form.lastSub'} eq 'datesub') {
1.71      ng       4677: 		if ($record{'version'} eq '') {
1.485     albertel 4678: 		    $studentTable.='<br />&nbsp;<span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
1.71      ng       4679: 		} else {
1.116     ng       4680: 		    my %responseType = ();
                   4681: 		    foreach my $partid (@{$parts}) {
1.147     albertel 4682: 			my @responseIds =$curRes->responseIds($partid);
                   4683: 			my @responseType =$curRes->responseType($partid);
                   4684: 			my %responseIds;
                   4685: 			for (my $i=0;$i<=$#responseIds;$i++) {
                   4686: 			    $responseIds{$responseIds[$i]}=$responseType[$i];
                   4687: 			}
                   4688: 			$responseType{$partid} = \%responseIds;
1.116     ng       4689: 		    }
1.148     albertel 4690: 		    $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147     albertel 4691: 
1.71      ng       4692: 		}
1.257     albertel 4693: 	    } elsif ($env{'form.lastSub'} eq 'all') {
                   4694: 		my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71      ng       4695: 		$studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257     albertel 4696: 									$env{'request.course.id'},
1.71      ng       4697: 									'','.submission');
                   4698:  
                   4699: 	    }
1.103     albertel 4700: 	    if (&canmodify($usec)) {
1.585     bisitz   4701:             $studentTable.=&gradeBox_start();
1.103     albertel 4702: 		foreach my $partid (@{$parts}) {
                   4703: 		    $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
                   4704: 		    $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
                   4705: 		    $question++;
                   4706: 		}
1.585     bisitz   4707:             $studentTable.=&gradeBox_end();
1.196     albertel 4708: 		$prob++;
1.71      ng       4709: 	    }
                   4710: 	    $studentTable.='</td></tr>';
1.68      ng       4711: 
1.103     albertel 4712: 	}
1.68      ng       4713:         $curRes = $iterator->next();
                   4714:     }
                   4715: 
1.589     bisitz   4716:     $studentTable.=
                   4717:         '</table>'."\n".
                   4718:         '<input type="button" value="'.&mt('Save').'" '.
                   4719:         'onclick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
                   4720:         '</form>'."\n";
1.71      ng       4721:     $request->print($studentTable);
                   4722: 
                   4723:     return '';
1.119     ng       4724: }
                   4725: 
                   4726: sub displaySubByDates {
1.148     albertel 4727:     my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224     albertel 4728:     my $isCODE=0;
1.335     albertel 4729:     my $isTask = ($symb =~/\.task$/);
1.224     albertel 4730:     if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467     albertel 4731:     my $studentTable=&Apache::loncommon::start_data_table().
                   4732: 	&Apache::loncommon::start_data_table_header_row().
                   4733: 	'<th>'.&mt('Date/Time').'</th>'.
                   4734: 	($isCODE?'<th>'.&mt('CODE').'</th>':'').
1.671     raeburn  4735:         ($isTask?'<th>'.&mt('Version').'</th>':'').
1.467     albertel 4736: 	'<th>'.&mt('Submission').'</th>'.
                   4737: 	'<th>'.&mt('Status').'</th>'.
                   4738: 	&Apache::loncommon::end_data_table_header_row();
1.119     ng       4739:     my ($version);
                   4740:     my %mark;
1.148     albertel 4741:     my %orders;
1.119     ng       4742:     $mark{'correct_by_student'} = $checkIcon;
1.147     albertel 4743:     if (!exists($$record{'1:timestamp'})) {
1.539     riegler  4744: 	return '<br />&nbsp;<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br />';
1.147     albertel 4745:     }
1.335     albertel 4746: 
                   4747:     my $interaction;
1.525     raeburn  4748:     my $no_increment = 1;
1.640     raeburn  4749:     my %lastrndseed;
1.119     ng       4750:     for ($version=1;$version<=$$record{'version'};$version++) {
1.467     albertel 4751: 	my $timestamp = 
                   4752: 	    &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335     albertel 4753: 	if (exists($$record{$version.':resource.0.version'})) {
                   4754: 	    $interaction = $$record{$version.':resource.0.version'};
                   4755: 	}
1.671     raeburn  4756:         if ($isTask && $env{'form.previousversion'}) {
                   4757:             next unless ($interaction == $env{'form.previousversion'});
                   4758:         }
1.335     albertel 4759: 	my $where = ($isTask ? "$version:resource.$interaction"
                   4760: 		             : "$version:resource");
1.467     albertel 4761: 	$studentTable.=&Apache::loncommon::start_data_table_row().
                   4762: 	    '<td>'.$timestamp.'</td>';
1.224     albertel 4763: 	if ($isCODE) {
                   4764: 	    $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
                   4765: 	}
1.671     raeburn  4766:         if ($isTask) {
                   4767:             $studentTable.='<td>'.$interaction.'</td>';
                   4768:         }
1.119     ng       4769: 	my @versionKeys = split(/\:/,$$record{$version.':keys'});
                   4770: 	my @displaySub = ();
                   4771: 	foreach my $partid (@{$parts}) {
1.640     raeburn  4772:             my ($hidden,$type);
                   4773:             $type = $$record{$version.':resource.'.$partid.'.type'};
                   4774:             if (($type eq 'anonsurvey') || ($type eq 'anonsurveycred')) {
1.596     raeburn  4775:                 $hidden = 1;
                   4776:             }
1.335     albertel 4777: 	    my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
                   4778: 			            : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
                   4779: 	    
1.122     ng       4780: #	    next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324     albertel 4781: 	    my $display_part=&get_display_part($partid,$symb);
1.147     albertel 4782: 	    foreach my $matchKey (@matchKey) {
1.198     albertel 4783: 		if (exists($$record{$version.':'.$matchKey}) &&
                   4784: 		    $$record{$version.':'.$matchKey} ne '') {
1.596     raeburn  4785:                     
1.335     albertel 4786: 		    my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
                   4787: 				               : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.670     raeburn  4788:                     $displaySub[0].='<span class="LC_nobreak">';
1.577     bisitz   4789:                     $displaySub[0].='<b>'.&mt('Part: [_1]',$display_part).'</b>'
                   4790:                                    .' <span class="LC_internal_info">'
1.625     www      4791:                                    .'('.&mt('Response ID: [_1]',$responseId).')'
1.577     bisitz   4792:                                    .'</span>'
                   4793:                                    .' <b>';
1.596     raeburn  4794:                     if ($hidden) {
                   4795:                         $displaySub[0].= &mt('Anonymous Survey').'</b>';
                   4796:                     } else {
1.640     raeburn  4797:                         my ($trial,$rndseed,$newvariation);
                   4798:                         if ($type eq 'randomizetry') {
                   4799:                             $trial = $$record{"$where.$partid.tries"};
                   4800:                             $rndseed = $$record{"$where.$partid.rndseed"};
                   4801:                         }
1.596     raeburn  4802: 		        if ($$record{"$where.$partid.tries"} eq '') {
                   4803: 			    $displaySub[0].=&mt('Trial not counted');
                   4804: 		        } else {
                   4805: 			    $displaySub[0].=&mt('Trial: [_1]',
1.467     albertel 4806: 					    $$record{"$where.$partid.tries"});
1.640     raeburn  4807:                             if ($rndseed || $lastrndseed{$partid}) {
                   4808:                                 if ($rndseed ne $lastrndseed{$partid}) {
                   4809:                                     $newvariation = '&nbsp;('.&mt('New variation this try').')';
                   4810:                                 }
                   4811:                             }
                   4812:                             $lastrndseed{$partid} = $rndseed;
1.596     raeburn  4813: 		        }
                   4814: 		        my $responseType=($isTask ? 'Task'
1.335     albertel 4815:                                               : $responseType->{$partid}->{$responseId});
1.596     raeburn  4816: 		        if (!exists($orders{$partid})) { $orders{$partid}={}; }
1.640     raeburn  4817: 		        if ((!exists($orders{$partid}->{$responseId})) || ($trial)) {
1.596     raeburn  4818: 			    $orders{$partid}->{$responseId}=
                   4819: 			        &get_order($partid,$responseId,$symb,$uname,$udom,
1.640     raeburn  4820:                                            $no_increment,$type,$trial,$rndseed);
1.596     raeburn  4821: 		        }
1.640     raeburn  4822: 		        $displaySub[0].='</b>'.$newvariation.'</span>'; # /nobreak
1.596     raeburn  4823: 		        $displaySub[0].='&nbsp; '.
1.640     raeburn  4824: 			    &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom,$type,$trial,$rndseed).'<br />';
1.596     raeburn  4825:                     }
1.147     albertel 4826: 		}
                   4827: 	    }
1.335     albertel 4828: 	    if (exists($$record{"$where.$partid.checkedin"})) {
1.485     albertel 4829: 		$displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
                   4830: 				    $$record{"$where.$partid.checkedin"},
                   4831: 				    $$record{"$where.$partid.checkedin.slot"}).
                   4832: 					'<br />';
1.335     albertel 4833: 	    }
                   4834: 	    if (exists $$record{"$where.$partid.award"}) {
1.485     albertel 4835: 		$displaySub[1].='<b>'.&mt('Part:').'</b>&nbsp;'.$display_part.' &nbsp;'.
1.335     albertel 4836: 		    lc($$record{"$where.$partid.award"}).' '.
                   4837: 		    $mark{$$record{"$where.$partid.solved"}}.
1.147     albertel 4838: 		    '<br />';
                   4839: 	    }
1.335     albertel 4840: 	    if (exists $$record{"$where.$partid.regrader"}) {
                   4841: 		$displaySub[2].=$$record{"$where.$partid.regrader"}.
                   4842: 		    ' (<b>'.&mt('Part').':</b> '.$display_part.')';
                   4843: 	    } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
                   4844: 		$displaySub[2].=
                   4845: 		    $$record{"$version:resource.$partid.regrader"}.
1.207     albertel 4846: 		    ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147     albertel 4847: 	    }
                   4848: 	}
                   4849: 	# needed because old essay regrader has not parts info
                   4850: 	if (exists $$record{"$version:resource.regrader"}) {
                   4851: 	    $displaySub[2].=$$record{"$version:resource.regrader"};
                   4852: 	}
                   4853: 	$studentTable.='<td>'.$displaySub[0].'&nbsp;</td><td>'.$displaySub[1];
                   4854: 	if ($displaySub[2]) {
1.467     albertel 4855: 	    $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147     albertel 4856: 	}
1.467     albertel 4857: 	$studentTable.='&nbsp;</td>'.
                   4858: 	    &Apache::loncommon::end_data_table_row();
1.119     ng       4859:     }
1.467     albertel 4860:     $studentTable.=&Apache::loncommon::end_data_table();
1.119     ng       4861:     return $studentTable;
1.71      ng       4862: }
                   4863: 
                   4864: sub updateGradeByPage {
1.608     www      4865:     my ($request,$symb) = @_;
1.71      ng       4866: 
1.257     albertel 4867:     my $cdom      = $env{"course.$env{'request.course.id'}.domain"};
                   4868:     my $cnum      = $env{"course.$env{'request.course.id'}.num"};
                   4869:     my $getsec    = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
                   4870:     my $pageTitle = $env{'form.page'};
1.103     albertel 4871:     my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257     albertel 4872:     my ($uname,$udom) = split(/:/,$env{'form.student'});
                   4873:     my $usec=$classlist->{$env{'form.student'}}[5];
1.103     albertel 4874:     if (!&canmodify($usec)) {
1.526     raeburn  4875: 	$request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
1.103     albertel 4876: 	return;
                   4877:     }
1.398     albertel 4878:     my $result='<h3><span class="LC_info">&nbsp;'.$env{'form.title'}.'</span></h3>';
1.526     raeburn  4879:     $result.='<h3>&nbsp;'.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129     ng       4880: 	'</h3>'."\n";
1.70      ng       4881: 
1.68      ng       4882:     $request->print($result);
                   4883: 
1.582     raeburn  4884: 
1.132     bowersj2 4885:     my $navmap = Apache::lonnavmaps::navmap->new();
1.582     raeburn  4886:     unless (ref($navmap)) {
                   4887:         $request->print(&navmap_errormsg());
                   4888:         return;
                   4889:     }
1.257     albertel 4890:     my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71      ng       4891:     my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288     albertel 4892:     if (!$map) {
1.527     raeburn  4893: 	$request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
1.288     albertel 4894: 	return; 
                   4895:     }
1.71      ng       4896:     my $iterator = $navmap->getIterator($map->map_start(),
                   4897: 					$map->map_finish());
1.70      ng       4898: 
1.484     albertel 4899:     my $studentTable=
                   4900: 	&Apache::loncommon::start_data_table().
                   4901: 	&Apache::loncommon::start_data_table_header_row().
1.485     albertel 4902: 	'<th align="center">&nbsp;'.&mt('Prob.').'&nbsp;</th>'.
                   4903: 	'<th>&nbsp;'.&mt('Title').'&nbsp;</th>'.
                   4904: 	'<th>&nbsp;'.&mt('Previous Score').'&nbsp;</th>'.
                   4905: 	'<th>&nbsp;'.&mt('New Score').'&nbsp;</th>'.
1.484     albertel 4906: 	&Apache::loncommon::end_data_table_header_row();
1.71      ng       4907: 
                   4908:     $iterator->next(); # skip the first BEGIN_MAP
                   4909:     my $curRes = $iterator->next(); # for "current resource"
1.196     albertel 4910:     my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101     albertel 4911:     while ($depth > 0) {
1.71      ng       4912:         if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100     bowersj2 4913:         if($curRes == $iterator->END_MAP) { $depth--; }
1.71      ng       4914: 
1.385     albertel 4915:         if (ref($curRes) && $curRes->is_problem()) {
1.91      albertel 4916: 	    my $parts = $curRes->parts();
1.71      ng       4917:             my $title = $curRes->compTitle();
                   4918: 	    my $symbx = $curRes->symb();
1.484     albertel 4919: 	    $studentTable.=
                   4920: 		&Apache::loncommon::start_data_table_row().
                   4921: 		'<td align="center" valign="top" >'.$prob.
1.485     albertel 4922: 		(scalar(@{$parts}) == 1 ? '' 
1.640     raeburn  4923:                                         : '<br />('.&mt('[quant,_1,part]',scalar(@{$parts}))
1.526     raeburn  4924: 		.')').'</td>';
1.71      ng       4925: 	    $studentTable.='<td valign="top">&nbsp;<b>'.$title.'</b>&nbsp;</td>';
                   4926: 
                   4927: 	    my %newrecord=();
                   4928: 	    my @displayPts=();
1.269     raeburn  4929:             my %aggregate = ();
                   4930:             my $aggregateflag = 0;
1.71      ng       4931: 	    foreach my $partid (@{$parts}) {
1.257     albertel 4932: 		my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
                   4933: 		my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71      ng       4934: 
1.257     albertel 4935: 		my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ? 
                   4936: 		    $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71      ng       4937: 		my $partial = $newpts/$wgt;
                   4938: 		my $score;
                   4939: 		if ($partial > 0) {
                   4940: 		    $score = 'correct_by_override';
1.125     ng       4941: 		} elsif ($newpts ne '') { #empty is taken as 0
1.71      ng       4942: 		    $score = 'incorrect_by_override';
                   4943: 		}
1.257     albertel 4944: 		my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125     ng       4945: 		if ($dropMenu eq 'excused') {
1.71      ng       4946: 		    $partial = '';
                   4947: 		    $score = 'excused';
1.125     ng       4948: 		} elsif ($dropMenu eq 'reset status'
1.257     albertel 4949: 			 && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125     ng       4950: 		    $newrecord{'resource.'.$partid.'.tries'} = 0;
                   4951: 		    $newrecord{'resource.'.$partid.'.solved'} = '';
                   4952: 		    $newrecord{'resource.'.$partid.'.award'} = '';
                   4953: 		    $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257     albertel 4954: 		    $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125     ng       4955: 		    $changeflag++;
                   4956: 		    $newpts = '';
1.269     raeburn  4957:                     
                   4958:                     my $aggtries =  $env{'form.aggtries'.$question.'_'.$partid};
                   4959:                     my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
                   4960:                     my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
                   4961:                     if ($aggtries > 0) {
                   4962:                         &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
                   4963:                         $aggregateflag = 1;
                   4964:                     }
1.71      ng       4965: 		}
1.324     albertel 4966: 		my $display_part=&get_display_part($partid,$curRes->symb());
1.257     albertel 4967: 		my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.526     raeburn  4968: 		$displayPts[0].='&nbsp;<b>'.&mt('Part').':</b> '.$display_part.' = '.
1.71      ng       4969: 		    (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326     albertel 4970: 		    '&nbsp;<br />';
1.526     raeburn  4971: 		$displayPts[1].='&nbsp;<b>'.&mt('Part').':</b> '.$display_part.' = '.
1.125     ng       4972: 		     (($score eq 'excused') ? 'excused' : $newpts).
1.326     albertel 4973: 		    '&nbsp;<br />';
1.71      ng       4974: 		$question++;
1.380     albertel 4975: 		next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125     ng       4976: 
1.71      ng       4977: 		$newrecord{'resource.'.$partid.'.awarded'}  = $partial if $partial ne '';
1.125     ng       4978: 		$newrecord{'resource.'.$partid.'.solved'}   = $score if $score ne '';
1.257     albertel 4979: 		$newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125     ng       4980: 		    if (scalar(keys(%newrecord)) > 0);
1.71      ng       4981: 
                   4982: 		$changeflag++;
                   4983: 	    }
                   4984: 	    if (scalar(keys(%newrecord)) > 0) {
1.382     albertel 4985: 		my %record = 
                   4986: 		    &Apache::lonnet::restore($symbx,$env{'request.course.id'},
                   4987: 					     $udom,$uname);
                   4988: 
                   4989: 		if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
                   4990: 		    $newrecord{'resource.CODE'} = $env{'form.CODE'};
                   4991: 		} elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
                   4992: 		    $newrecord{'resource.CODE'} = '';
                   4993: 		}
1.257     albertel 4994: 		&Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71      ng       4995: 					$udom,$uname);
1.382     albertel 4996: 		%record = &Apache::lonnet::restore($symbx,
                   4997: 						   $env{'request.course.id'},
                   4998: 						   $udom,$uname);
1.380     albertel 4999: 		&check_and_remove_from_queue($parts,\%record,undef,$symbx,
                   5000: 					     $cdom,$cnum,$udom,$uname);
1.71      ng       5001: 	    }
1.380     albertel 5002: 	    
1.269     raeburn  5003:             if ($aggregateflag) {
                   5004:                 &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
                   5005:                       $env{'course.'.$env{'request.course.id'}.'.domain'},
                   5006:                       $env{'course.'.$env{'request.course.id'}.'.num'});
                   5007:             }
1.125     ng       5008: 
1.71      ng       5009: 	    $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
                   5010: 		'<td valign="top">'.$displayPts[1].'</td>'.
1.484     albertel 5011: 		&Apache::loncommon::end_data_table_row();
1.68      ng       5012: 
1.196     albertel 5013: 	    $prob++;
1.68      ng       5014: 	}
1.71      ng       5015:         $curRes = $iterator->next();
1.68      ng       5016:     }
1.98      albertel 5017: 
1.484     albertel 5018:     $studentTable.=&Apache::loncommon::end_data_table();
1.526     raeburn  5019:     my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
                   5020: 		  &mt('The scores were changed for [quant,_1,problem].',
                   5021: 		  $changeflag));
1.76      ng       5022:     $request->print($grademsg.$studentTable);
1.68      ng       5023: 
1.70      ng       5024:     return '';
                   5025: }
                   5026: 
1.72      ng       5027: #-------- end of section for handling grading by page/sequence ---------
                   5028: #
                   5029: #-------------------------------------------------------------------
                   5030: 
1.581     www      5031: #-------------------- Bubblesheet (Scantron) Grading -------------------
1.75      albertel 5032: #
                   5033: #------ start of section for handling grading by page/sequence ---------
                   5034: 
1.423     albertel 5035: =pod
                   5036: 
                   5037: =head1 Bubble sheet grading routines
                   5038: 
1.424     albertel 5039:   For this documentation:
                   5040: 
                   5041:    'scanline' refers to the full line of characters
                   5042:    from the file that we are parsing that represents one entire sheet
                   5043: 
                   5044:    'bubble line' refers to the data
1.659     raeburn  5045:    representing the line of bubbles that are on the physical bubblesheet
1.424     albertel 5046: 
                   5047: 
1.659     raeburn  5048: The overall process is that a scanned in bubblesheet data is uploaded
1.424     albertel 5049: into a course. When a user wants to grade, they select a
1.659     raeburn  5050: sequence/folder of resources, a file of bubblesheet info, and pick
1.424     albertel 5051: one of the predefined configurations for what each scanline looks
                   5052: like.
                   5053: 
                   5054: Next each scanline is checked for any errors of either 'missing
1.435     foxr     5055: bubbles' (it's an error because it may have been mis-scanned
1.424     albertel 5056: because too light bubbling), 'double bubble' (each bubble line should
                   5057: have no more that one letter picked), invalid or duplicated CODE,
1.556     weissno  5058: invalid student/employee ID
1.424     albertel 5059: 
                   5060: If the CODE option is used that determines the randomization of the
1.556     weissno  5061: homework problems, either way the student/employee ID is looked up into a
1.424     albertel 5062: username:domain.
                   5063: 
                   5064: During the validation phase the instructor can choose to skip scanlines. 
                   5065: 
1.659     raeburn  5066: After the validation phase, there are now 3 bubblesheet files
1.424     albertel 5067: 
                   5068:   scantron_original_filename (unmodified original file)
                   5069:   scantron_corrected_filename (file where the corrected information has replaced the original information)
                   5070:   scantron_skipped_filename (contains the exact text of scanlines that where skipped)
                   5071: 
                   5072: Also there is a separate hash nohist_scantrondata that contains extra
1.659     raeburn  5073: correction information that isn't representable in the bubblesheet
1.424     albertel 5074: file (see &scantron_getfile() for more information)
                   5075: 
                   5076: After all scanlines are either valid, marked as valid or skipped, then
                   5077: foreach line foreach problem in the picked sequence, an ssi request is
                   5078: made that simulates a user submitting their selected letter(s) against
                   5079: the homework problem.
1.423     albertel 5080: 
                   5081: =over 4
                   5082: 
                   5083: 
                   5084: 
                   5085: =item defaultFormData
                   5086: 
                   5087:   Returns html hidden inputs used to hold context/default values.
                   5088: 
                   5089:  Arguments:
                   5090:   $symb - $symb of the current resource 
                   5091: 
                   5092: =cut
1.422     foxr     5093: 
1.81      albertel 5094: sub defaultFormData {
1.324     albertel 5095:     my ($symb)=@_;
1.613     www      5096:     return '<input type="hidden" name="symb"    value="'.&Apache::lonenc::check_encrypt($symb).'" />';
1.81      albertel 5097: }
                   5098: 
1.447     foxr     5099: 
1.423     albertel 5100: =pod 
                   5101: 
                   5102: =item getSequenceDropDown
                   5103: 
                   5104:    Return html dropdown of possible sequences to grade
                   5105:  
                   5106:  Arguments:
1.582     raeburn  5107:    $symb - $symb of the current resource
                   5108:    $map_error - ref to scalar which will container error if
                   5109:                 $navmap object is unavailable in &getSymbMap().
1.423     albertel 5110: 
                   5111: =cut
1.422     foxr     5112: 
1.75      albertel 5113: sub getSequenceDropDown {
1.582     raeburn  5114:     my ($symb,$map_error)=@_;
1.75      albertel 5115:     my $result='<select name="selectpage">'."\n";
1.582     raeburn  5116:     my ($titles,$symbx) = &getSymbMap($map_error);
                   5117:     if (ref($map_error)) {
                   5118:         return if ($$map_error);
                   5119:     }
1.137     albertel 5120:     my ($curpage)=&Apache::lonnet::decode_symb($symb); 
1.75      albertel 5121:     my $ctr=0;
                   5122:     foreach (@$titles) {
                   5123: 	my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
                   5124: 	$result.='<option value="'.$$symbx{$_}.'" '.
1.401     albertel 5125: 	    ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75      albertel 5126: 	    '>'.$showtitle.'</option>'."\n";
                   5127: 	$ctr++;
                   5128:     }
                   5129:     $result.= '</select>';
                   5130:     return $result;
                   5131: }
                   5132: 
1.495     albertel 5133: my %bubble_lines_per_response;     # no. bubble lines for each response.
1.554     raeburn  5134:                                    # key is zero-based index - 0, 1, 2 ...
1.495     albertel 5135: 
                   5136: my %first_bubble_line;             # First bubble line no. for each bubble.
                   5137: 
1.509     raeburn  5138: my %subdivided_bubble_lines;       # no. bubble lines for optionresponse, 
                   5139:                                    # matchresponse or rankresponse, where 
                   5140:                                    # an individual response can have multiple 
                   5141:                                    # lines
1.503     raeburn  5142: 
                   5143: my %responsetype_per_response;     # responsetype for each response
                   5144: 
1.495     albertel 5145: # Save and restore the bubble lines array to the form env.
                   5146: 
                   5147: 
                   5148: sub save_bubble_lines {
                   5149:     foreach my $line (keys(%bubble_lines_per_response)) {
                   5150: 	$env{"form.scantron.bubblelines.$line"}  = $bubble_lines_per_response{$line};
                   5151: 	$env{"form.scantron.first_bubble_line.$line"} =
                   5152: 	    $first_bubble_line{$line};
1.503     raeburn  5153:         $env{"form.scantron.sub_bubblelines.$line"} = 
                   5154:             $subdivided_bubble_lines{$line};
                   5155:         $env{"form.scantron.responsetype.$line"} =
                   5156:             $responsetype_per_response{$line};
1.495     albertel 5157:     }
                   5158: }
                   5159: 
                   5160: 
                   5161: sub restore_bubble_lines {
                   5162:     my $line = 0;
                   5163:     %bubble_lines_per_response = ();
                   5164:     while ($env{"form.scantron.bubblelines.$line"}) {
                   5165: 	my $value = $env{"form.scantron.bubblelines.$line"};
                   5166: 	$bubble_lines_per_response{$line} = $value;
                   5167: 	$first_bubble_line{$line}  =
                   5168: 	    $env{"form.scantron.first_bubble_line.$line"};
1.503     raeburn  5169:         $subdivided_bubble_lines{$line} =
                   5170:             $env{"form.scantron.sub_bubblelines.$line"};
                   5171:         $responsetype_per_response{$line} =
                   5172:             $env{"form.scantron.responsetype.$line"};
1.495     albertel 5173: 	$line++;
                   5174:     }
                   5175: }
                   5176: 
                   5177: #  Given the parsed scanline, get the response for 
                   5178: #  'answer' number n:
                   5179: 
                   5180: sub get_response_bubbles {
                   5181:     my ($parsed_line, $response)  = @_;
                   5182: 
                   5183:     my $bubble_line = $first_bubble_line{$response-1} +1;
                   5184:     my $bubble_lines= $bubble_lines_per_response{$response-1};
                   5185:     
                   5186:     my $selected = "";
                   5187: 
                   5188:     for (my $bline = 0; $bline < $bubble_lines; $bline++) {
                   5189: 	$selected .= $$parsed_line{"scantron.$bubble_line.answer"}.":";
                   5190: 	$bubble_line++;
                   5191:     }
                   5192:     return $selected;
                   5193: }
1.423     albertel 5194: 
                   5195: =pod 
                   5196: 
                   5197: =item scantron_filenames
                   5198: 
                   5199:    Returns a list of the scantron files in the current course 
                   5200: 
                   5201: =cut
1.422     foxr     5202: 
1.202     albertel 5203: sub scantron_filenames {
1.257     albertel 5204:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   5205:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517     raeburn  5206:     my $getpropath = 1;
1.662     raeburn  5207:     my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
                   5208:                                                         $cname,$getpropath);
1.202     albertel 5209:     my @possiblenames;
1.662     raeburn  5210:     if (ref($dirlist) eq 'ARRAY') {
                   5211:         foreach my $filename (sort(@{$dirlist})) {
                   5212: 	    ($filename)=split(/&/,$filename);
                   5213: 	    if ($filename!~/^scantron_orig_/) { next ; }
                   5214: 	    $filename=~s/^scantron_orig_//;
                   5215: 	    push(@possiblenames,$filename);
                   5216:         }
1.202     albertel 5217:     }
                   5218:     return @possiblenames;
                   5219: }
                   5220: 
1.423     albertel 5221: =pod 
                   5222: 
                   5223: =item scantron_uploads
                   5224: 
                   5225:    Returns  html drop-down list of scantron files in current course.
                   5226: 
                   5227:  Arguments:
                   5228:    $file2grade - filename to set as selected in the dropdown
                   5229: 
                   5230: =cut
1.422     foxr     5231: 
1.202     albertel 5232: sub scantron_uploads {
1.209     ng       5233:     my ($file2grade) = @_;
1.202     albertel 5234:     my $result=	'<select name="scantron_selectfile">';
                   5235:     $result.="<option></option>";
                   5236:     foreach my $filename (sort(&scantron_filenames())) {
1.401     albertel 5237: 	$result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81      albertel 5238:     }
                   5239:     $result.="</select>";
                   5240:     return $result;
                   5241: }
                   5242: 
1.423     albertel 5243: =pod 
                   5244: 
                   5245: =item scantron_scantab
                   5246: 
                   5247:   Returns html drop down of the scantron formats in the scantronformat.tab
                   5248:   file.
                   5249: 
                   5250: =cut
1.422     foxr     5251: 
1.82      albertel 5252: sub scantron_scantab {
                   5253:     my $result='<select name="scantron_format">'."\n";
1.191     albertel 5254:     $result.='<option></option>'."\n";
1.518     raeburn  5255:     my @lines = &get_scantronformat_file();
                   5256:     if (@lines > 0) {
                   5257:         foreach my $line (@lines) {
                   5258:             next if (($line =~ /^\#/) || ($line eq ''));
                   5259: 	    my ($name,$descrip)=split(/:/,$line);
                   5260: 	    $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
                   5261:         }
1.82      albertel 5262:     }
                   5263:     $result.='</select>'."\n";
1.518     raeburn  5264:     return $result;
                   5265: }
                   5266: 
                   5267: =pod
                   5268: 
                   5269: =item get_scantronformat_file
                   5270: 
                   5271:   Returns an array containing lines from the scantron format file for
                   5272:   the domain of the course.
                   5273: 
                   5274:   If a url for a custom.tab file is listed in domain's configuration.db, 
                   5275:   lines are from this file.
                   5276: 
                   5277:   Otherwise, if a default.tab has been published in RES space by the 
                   5278:   domainconfig user, lines are from this file.
                   5279: 
                   5280:   Otherwise, fall back to getting lines from the legacy file on the
1.519     raeburn  5281:   local server:  /home/httpd/lonTabs/default_scantronformat.tab    
1.82      albertel 5282: 
1.518     raeburn  5283: =cut
                   5284: 
                   5285: sub get_scantronformat_file {
                   5286:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
                   5287:     my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
                   5288:     my $gottab = 0;
                   5289:     my @lines;
                   5290:     if (ref($domconfig{'scantron'}) eq 'HASH') {
                   5291:         if ($domconfig{'scantron'}{'scantronformat'} ne '') {
                   5292:             my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
                   5293:             if ($formatfile ne '-1') {
                   5294:                 @lines = split("\n",$formatfile,-1);
                   5295:                 $gottab = 1;
                   5296:             }
                   5297:         }
                   5298:     }
                   5299:     if (!$gottab) {
                   5300:         my $confname = $cdom.'-domainconfig';
                   5301:         my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
                   5302:         my $formatfile =  &Apache::lonnet::getfile($default);
                   5303:         if ($formatfile ne '-1') {
                   5304:             @lines = split("\n",$formatfile,-1);
                   5305:             $gottab = 1;
                   5306:         }
                   5307:     }
                   5308:     if (!$gottab) {
1.519     raeburn  5309:         my @domains = &Apache::lonnet::current_machine_domains();
                   5310:         if (grep(/^\Q$cdom\E$/,@domains)) {
                   5311:             my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
                   5312:             @lines = <$fh>;
                   5313:             close($fh);
                   5314:         } else {
                   5315:             my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
                   5316:             @lines = <$fh>;
                   5317:             close($fh);
                   5318:         }
1.518     raeburn  5319:     }
                   5320:     return @lines;
1.82      albertel 5321: }
                   5322: 
1.423     albertel 5323: =pod 
                   5324: 
                   5325: =item scantron_CODElist
                   5326: 
                   5327:   Returns html drop down of the saved CODE lists from current course,
                   5328:   generated from earlier printings.
                   5329: 
                   5330: =cut
1.422     foxr     5331: 
1.186     albertel 5332: sub scantron_CODElist {
1.257     albertel 5333:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   5334:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186     albertel 5335:     my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
                   5336:     my $namechoice='<option></option>';
1.225     albertel 5337:     foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191     albertel 5338: 	if ($name =~ /^error: 2 /) { next; }
1.278     albertel 5339: 	if ($name =~ /^type\0/) { next; }
1.186     albertel 5340: 	$namechoice.='<option value="'.$name.'">'.$name.'</option>';
                   5341:     }
                   5342:     $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
                   5343:     return $namechoice;
                   5344: }
                   5345: 
1.423     albertel 5346: =pod 
                   5347: 
                   5348: =item scantron_CODEunique
                   5349: 
                   5350:   Returns the html for "Each CODE to be used once" radio.
                   5351: 
                   5352: =cut
1.422     foxr     5353: 
1.186     albertel 5354: sub scantron_CODEunique {
1.532     bisitz   5355:     my $result='<span class="LC_nobreak">
1.272     albertel 5356:                  <label><input type="radio" name="scantron_CODEunique"
1.423     albertel 5357:                         value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381     albertel 5358:                 </span>
1.532     bisitz   5359:                 <span class="LC_nobreak">
1.272     albertel 5360:                  <label><input type="radio" name="scantron_CODEunique"
1.423     albertel 5361:                         value="no" />'.&mt('No').' </label>
1.381     albertel 5362:                 </span>';
1.186     albertel 5363:     return $result;
                   5364: }
1.423     albertel 5365: 
                   5366: =pod 
                   5367: 
                   5368: =item scantron_selectphase
                   5369: 
1.659     raeburn  5370:   Generates the initial screen to start the bubblesheet process.
1.423     albertel 5371:   Allows for - starting a grading run.
1.424     albertel 5372:              - downloading existing scan data (original, corrected
1.423     albertel 5373:                                                 or skipped info)
                   5374: 
                   5375:              - uploading new scan data
                   5376: 
                   5377:  Arguments:
                   5378:   $r          - The Apache request object
                   5379:   $file2grade - name of the file that contain the scanned data to score
                   5380: 
                   5381: =cut
1.186     albertel 5382: 
1.75      albertel 5383: sub scantron_selectphase {
1.608     www      5384:     my ($r,$file2grade,$symb) = @_;
1.75      albertel 5385:     if (!$symb) {return '';}
1.582     raeburn  5386:     my $map_error;
                   5387:     my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
                   5388:     if ($map_error) {
                   5389:         $r->print('<br />'.&navmap_errormsg().'<br />');
                   5390:         return;
                   5391:     }
1.324     albertel 5392:     my $default_form_data=&defaultFormData($symb);
1.209     ng       5393:     my $file_selector=&scantron_uploads($file2grade);
1.82      albertel 5394:     my $format_selector=&scantron_scantab();
1.186     albertel 5395:     my $CODE_selector=&scantron_CODElist();
                   5396:     my $CODE_unique=&scantron_CODEunique();
1.75      albertel 5397:     my $result;
1.422     foxr     5398: 
1.513     foxr     5399:     $ssi_error = 0;
                   5400: 
1.606     wenzelju 5401:     if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
                   5402:         &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
                   5403: 
                   5404: 	# Chunk of form to prompt for a scantron file upload.
                   5405: 
                   5406:         $r->print('
                   5407:     <br />
                   5408:     '.&Apache::loncommon::start_data_table('LC_scantron_action').'
                   5409:        '.&Apache::loncommon::start_data_table_header_row().'
                   5410:             <th>
                   5411:               &nbsp;'.&mt('Specify a bubblesheet data file to upload.').'
                   5412:             </th>
                   5413:        '.&Apache::loncommon::end_data_table_header_row().'
                   5414:        '.&Apache::loncommon::start_data_table_row().'
                   5415:             <td>
                   5416: ');
1.608     www      5417:     my $default_form_data=&defaultFormData($symb);
1.606     wenzelju 5418:     my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
                   5419:     my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
                   5420:     $r->print(&Apache::lonhtmlcommon::scripttag('
                   5421:     function checkUpload(formname) {
                   5422: 	if (formname.upfile.value == "") {
                   5423: 	    alert("'.&mt('Please use the browse button to select a file from your local directory.').'");
                   5424: 	    return false;
                   5425: 	}
                   5426: 	formname.submit();
                   5427:     }'));
                   5428:     $r->print('
                   5429:               <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
                   5430:                 '.$default_form_data.'
                   5431:                 <input name="courseid" type="hidden" value="'.$cnum.'" />
                   5432:                 <input name="domainid" type="hidden" value="'.$cdom.'" />
                   5433:                 <input name="command" value="scantronupload_save" type="hidden" />
                   5434:                 '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
                   5435:                 <br />
                   5436:                 <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
                   5437:               </form>
                   5438: ');
                   5439: 
                   5440:         $r->print('
                   5441:             </td>
                   5442:        '.&Apache::loncommon::end_data_table_row().'
                   5443:        '.&Apache::loncommon::end_data_table().'
                   5444: ');
                   5445:     }
                   5446: 
1.422     foxr     5447:     # Chunk of form to prompt for a file to grade and how:
                   5448: 
1.489     albertel 5449:     $result.= '
                   5450:     <br />
                   5451:     <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
                   5452:     <input type="hidden" name="command" value="scantron_warning" />
                   5453:     '.$default_form_data.'
                   5454:     '.&Apache::loncommon::start_data_table('LC_scantron_action').'
                   5455:        '.&Apache::loncommon::start_data_table_header_row().'
                   5456:             <th colspan="2">
1.492     albertel 5457:               &nbsp;'.&mt('Specify file and which Folder/Sequence to grade').'
1.489     albertel 5458:             </th>
                   5459:        '.&Apache::loncommon::end_data_table_header_row().'
                   5460:        '.&Apache::loncommon::start_data_table_row().'
1.492     albertel 5461:             <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489     albertel 5462:        '.&Apache::loncommon::end_data_table_row().'
                   5463:        '.&Apache::loncommon::start_data_table_row().'
1.572     www      5464:             <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
1.489     albertel 5465:        '.&Apache::loncommon::end_data_table_row().'
                   5466:        '.&Apache::loncommon::start_data_table_row().'
1.572     www      5467:             <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
1.489     albertel 5468:        '.&Apache::loncommon::end_data_table_row().'
                   5469:        '.&Apache::loncommon::start_data_table_row().'
1.492     albertel 5470:             <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489     albertel 5471:        '.&Apache::loncommon::end_data_table_row().'
                   5472:        '.&Apache::loncommon::start_data_table_row().'
1.492     albertel 5473:             <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489     albertel 5474:        '.&Apache::loncommon::end_data_table_row().'
                   5475:        '.&Apache::loncommon::start_data_table_row().'
1.492     albertel 5476: 	    <td> '.&mt('Options:').' </td>
1.187     albertel 5477:             <td>
1.492     albertel 5478: 	       <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
                   5479:                <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
                   5480:                <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187     albertel 5481: 	    </td>
1.489     albertel 5482:        '.&Apache::loncommon::end_data_table_row().'
                   5483:        '.&Apache::loncommon::start_data_table_row().'
1.174     albertel 5484:             <td colspan="2">
1.572     www      5485:               <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
1.162     albertel 5486:             </td>
1.489     albertel 5487:        '.&Apache::loncommon::end_data_table_row().'
                   5488:     '.&Apache::loncommon::end_data_table().'
                   5489:     </form>
                   5490: ';
1.162     albertel 5491:    
                   5492:     $r->print($result);
                   5493: 
1.422     foxr     5494: 
                   5495: 
                   5496:     # Chunk of the form that prompts to view a scoring office file,
                   5497:     # corrected file, skipped records in a file.
                   5498: 
1.489     albertel 5499:     $r->print('
                   5500:    <br />
                   5501:    <form action="/adm/grades" name="scantron_download">
                   5502:      '.$default_form_data.'
                   5503:      <input type="hidden" name="command" value="scantron_download" />
                   5504:      '.&Apache::loncommon::start_data_table('LC_scantron_action').'
                   5505:        '.&Apache::loncommon::start_data_table_header_row().'
                   5506:               <th>
1.492     albertel 5507:                 &nbsp;'.&mt('Download a scoring office file').'
1.489     albertel 5508:               </th>
                   5509:        '.&Apache::loncommon::end_data_table_header_row().'
                   5510:        '.&Apache::loncommon::start_data_table_row().'
1.492     albertel 5511:               <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).' 
1.489     albertel 5512:                 <br />
1.492     albertel 5513:                 <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489     albertel 5514:        '.&Apache::loncommon::end_data_table_row().'
                   5515:      '.&Apache::loncommon::end_data_table().'
                   5516:    </form>
                   5517:    <br />
                   5518: ');
1.162     albertel 5519: 
1.457     banghart 5520:     &Apache::lonpickcode::code_list($r,2);
1.523     raeburn  5521: 
1.528     raeburn  5522:     $r->print('<br /><form method="post" name="checkscantron">'.
1.523     raeburn  5523:              $default_form_data."\n".
                   5524:              &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
                   5525:              &Apache::loncommon::start_data_table_header_row()."\n".
                   5526:              '<th colspan="2">
1.572     www      5527:               &nbsp;'.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
1.523     raeburn  5528:              '</th>'."\n".
                   5529:               &Apache::loncommon::end_data_table_header_row()."\n".
                   5530:               &Apache::loncommon::start_data_table_row()."\n".
                   5531:               '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
                   5532:               '<td> '.$sequence_selector.' </td>'.
                   5533:               &Apache::loncommon::end_data_table_row()."\n".
                   5534:               &Apache::loncommon::start_data_table_row()."\n".
                   5535:               '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
                   5536:               '<td> '.$file_selector.' </td>'."\n".
                   5537:               &Apache::loncommon::end_data_table_row()."\n".
                   5538:               &Apache::loncommon::start_data_table_row()."\n".
                   5539:               '<td> '.&mt('Format of data file:').' </td>'."\n".
                   5540:               '<td> '.$format_selector.' </td>'."\n".
                   5541:               &Apache::loncommon::end_data_table_row()."\n".
                   5542:               &Apache::loncommon::start_data_table_row()."\n".
1.557     raeburn  5543:               '<td> '.&mt('Options').' </td>'."\n".
                   5544:               '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
                   5545:               &Apache::loncommon::end_data_table_row()."\n".
                   5546:               &Apache::loncommon::start_data_table_row()."\n".
1.523     raeburn  5547:               '<td colspan="2">'."\n".
                   5548:               '<input type="hidden" name="command" value="checksubmissions" />'."\n".
1.575     www      5549:               '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
1.523     raeburn  5550:               '</td>'."\n".
                   5551:               &Apache::loncommon::end_data_table_row()."\n".
                   5552:               &Apache::loncommon::end_data_table()."\n".
                   5553:               '</form><br />');
                   5554:     return;
1.75      albertel 5555: }
                   5556: 
1.423     albertel 5557: =pod
                   5558: 
                   5559: =item get_scantron_config
                   5560: 
                   5561:    Parse and return the scantron configuration line selected as a
                   5562:    hash of configuration file fields.
                   5563: 
                   5564:  Arguments:
                   5565:     which - the name of the configuration to parse from the file.
                   5566: 
                   5567: 
                   5568:  Returns:
                   5569:             If the named configuration is not in the file, an empty
                   5570:             hash is returned.
                   5571:     a hash with the fields
                   5572:       name         - internal name for the this configuration setup
                   5573:       description  - text to display to operator that describes this config
                   5574:       CODElocation - if 0 or the string 'none'
                   5575:                           - no CODE exists for this config
                   5576:                      if -1 || the string 'letter'
                   5577:                           - a CODE exists for this config and is
                   5578:                             a string of letters
                   5579:                      Unsupported value (but planned for future support)
                   5580:                           if a positive integer
                   5581:                                - The CODE exists as the first n items from
                   5582:                                  the question section of the form
                   5583:                           if the string 'number'
                   5584:                                - The CODE exists for this config and is
                   5585:                                  a string of numbers
                   5586:       CODEstart   - (only matter if a CODE exists) column in the line where
                   5587:                      the CODE starts
                   5588:       CODElength  - length of the CODE
1.573     bisitz   5589:       IDstart     - column where the student/employee ID starts
1.556     weissno  5590:       IDlength    - length of the student/employee ID info
1.423     albertel 5591:       Qstart      - column where the information from the bubbled
                   5592:                     'questions' start
                   5593:       Qlength     - number of columns comprising a single bubble line from
                   5594:                     the sheet. (usually either 1 or 10)
1.424     albertel 5595:       Qon         - either a single character representing the character used
1.423     albertel 5596:                     to signal a bubble was chosen in the positional setup, or
                   5597:                     the string 'letter' if the letter of the chosen bubble is
                   5598:                     in the final, or 'number' if a number representing the
                   5599:                     chosen bubble is in the file (1->A 0->J)
1.424     albertel 5600:       Qoff        - the character used to represent that a bubble was
                   5601:                     left blank
1.423     albertel 5602:       PaperID     - if the scanning process generates a unique number for each
                   5603:                     sheet scanned the column that this ID number starts in
                   5604:       PaperIDlength - number of columns that comprise the unique ID number
                   5605:                       for the sheet of paper
1.424     albertel 5606:       FirstName   - column that the first name starts in
1.423     albertel 5607:       FirstNameLength - number of columns that the first name spans
                   5608:  
                   5609:       LastName    - column that the last name starts in
                   5610:       LastNameLength - number of columns that the last name spans
1.649     raeburn  5611:       BubblesPerRow - number of bubbles available in each row used to 
                   5612:                       bubble an answer. (If not specified, 10 assumed).
1.671     raeburn  5613: 
1.423     albertel 5614: =cut
1.422     foxr     5615: 
1.82      albertel 5616: sub get_scantron_config {
                   5617:     my ($which) = @_;
1.518     raeburn  5618:     my @lines = &get_scantronformat_file();
1.82      albertel 5619:     my %config;
1.157     albertel 5620:     #FIXME probably should move to XML it has already gotten a bit much now
1.518     raeburn  5621:     foreach my $line (@lines) {
1.82      albertel 5622: 	my ($name,$descrip)=split(/:/,$line);
                   5623: 	if ($name ne $which ) { next; }
                   5624: 	chomp($line);
                   5625: 	my @config=split(/:/,$line);
                   5626: 	$config{'name'}=$config[0];
                   5627: 	$config{'description'}=$config[1];
                   5628: 	$config{'CODElocation'}=$config[2];
                   5629: 	$config{'CODEstart'}=$config[3];
                   5630: 	$config{'CODElength'}=$config[4];
                   5631: 	$config{'IDstart'}=$config[5];
                   5632: 	$config{'IDlength'}=$config[6];
                   5633: 	$config{'Qstart'}=$config[7];
1.497     foxr     5634:  	$config{'Qlength'}=$config[8];
1.82      albertel 5635: 	$config{'Qoff'}=$config[9];
                   5636: 	$config{'Qon'}=$config[10];
1.157     albertel 5637: 	$config{'PaperID'}=$config[11];
                   5638: 	$config{'PaperIDlength'}=$config[12];
                   5639: 	$config{'FirstName'}=$config[13];
                   5640: 	$config{'FirstNamelength'}=$config[14];
                   5641: 	$config{'LastName'}=$config[15];
                   5642: 	$config{'LastNamelength'}=$config[16];
1.649     raeburn  5643:         $config{'BubblesPerRow'}=$config[17];
1.82      albertel 5644: 	last;
                   5645:     }
                   5646:     return %config;
                   5647: }
                   5648: 
1.423     albertel 5649: =pod 
                   5650: 
                   5651: =item username_to_idmap
                   5652: 
1.556     weissno  5653:     creates a hash keyed by student/employee ID with values of the corresponding
1.423     albertel 5654:     student username:domain.
                   5655: 
                   5656:   Arguments:
                   5657: 
                   5658:     $classlist - reference to the class list hash. This is a hash
                   5659:                  keyed by student name:domain  whose elements are references
1.424     albertel 5660:                  to arrays containing various chunks of information
1.423     albertel 5661:                  about the student. (See loncoursedata for more info).
                   5662: 
                   5663:   Returns
                   5664:     %idmap - the constructed hash
                   5665: 
                   5666: =cut
                   5667: 
1.82      albertel 5668: sub username_to_idmap {
                   5669:     my ($classlist)= @_;
                   5670:     my %idmap;
                   5671:     foreach my $student (keys(%$classlist)) {
                   5672: 	$idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
                   5673: 	    $student;
                   5674:     }
                   5675:     return %idmap;
                   5676: }
1.423     albertel 5677: 
                   5678: =pod
                   5679: 
1.424     albertel 5680: =item scantron_fixup_scanline
1.423     albertel 5681: 
                   5682:    Process a requested correction to a scanline.
                   5683: 
                   5684:   Arguments:
                   5685:     $scantron_config   - hash from &get_scantron_config()
                   5686:     $scan_data         - hash of correction information 
                   5687:                           (see &scantron_getfile())
                   5688:     $line              - existing scanline
                   5689:     $whichline         - line number of the passed in scanline
                   5690:     $field             - type of change to process 
                   5691:                          (either 
1.573     bisitz   5692:                           'ID'     -> correct the student/employee ID
1.423     albertel 5693:                           'CODE'   -> correct the CODE
                   5694:                           'answer' -> fixup the submitted answers)
                   5695:     
                   5696:    $args               - hash of additional info,
                   5697:                           - 'ID' 
                   5698:                                'newid' -> studentID to use in replacement
1.424     albertel 5699:                                           of existing one
1.423     albertel 5700:                           - 'CODE' 
                   5701:                                'CODE_ignore_dup' - set to true if duplicates
                   5702:                                                    should be ignored.
                   5703: 	                       'CODE' - is new code or 'use_unfound'
1.424     albertel 5704:                                         if the existing unfound code should
1.423     albertel 5705:                                         be used as is
                   5706:                           - 'answer'
                   5707:                                'response' - new answer or 'none' if blank
                   5708:                                'question' - the bubble line to change
1.503     raeburn  5709:                                'questionnum' - the question identifier,
                   5710:                                                may include subquestion. 
1.423     albertel 5711: 
                   5712:   Returns:
                   5713:     $line - the modified scanline
                   5714: 
                   5715:   Side effects: 
                   5716:     $scan_data - may be updated
                   5717: 
                   5718: =cut
                   5719: 
1.82      albertel 5720: 
1.157     albertel 5721: sub scantron_fixup_scanline {
                   5722:     my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
                   5723:     if ($field eq 'ID') {
                   5724: 	if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186     albertel 5725: 	    return ($line,1,'New value too large');
1.157     albertel 5726: 	}
                   5727: 	if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
                   5728: 	    $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
                   5729: 				     $args->{'newid'});
                   5730: 	}
                   5731: 	substr($line,$$scantron_config{'IDstart'}-1,
                   5732: 	       $$scantron_config{'IDlength'})=$args->{'newid'};
                   5733: 	if ($args->{'newid'}=~/^\s*$/) {
                   5734: 	    &scan_data($scan_data,"$whichline.user",
                   5735: 		       $args->{'username'}.':'.$args->{'domain'});
                   5736: 	}
1.186     albertel 5737:     } elsif ($field eq 'CODE') {
1.192     albertel 5738: 	if ($args->{'CODE_ignore_dup'}) {
                   5739: 	    &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
                   5740: 	}
                   5741: 	&scan_data($scan_data,"$whichline.useCODE",'1');
                   5742: 	if ($args->{'CODE'} ne 'use_unfound') {
1.191     albertel 5743: 	    if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
                   5744: 		return ($line,1,'New CODE value too large');
                   5745: 	    }
                   5746: 	    if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
                   5747: 		$args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
                   5748: 	    }
                   5749: 	    substr($line,$$scantron_config{'CODEstart'}-1,
                   5750: 		   $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186     albertel 5751: 	}
1.157     albertel 5752:     } elsif ($field eq 'answer') {
1.497     foxr     5753: 	my $length=$scantron_config->{'Qlength'};
1.157     albertel 5754: 	my $off=$scantron_config->{'Qoff'};
                   5755: 	my $on=$scantron_config->{'Qon'};
1.497     foxr     5756: 	my $answer=${off}x$length;
                   5757: 	if ($args->{'response'} eq 'none') {
                   5758: 	    &scan_data($scan_data,
1.503     raeburn  5759: 		       "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497     foxr     5760: 	} else {
                   5761: 	    if ($on eq 'letter') {
                   5762: 		my @alphabet=('A'..'Z');
                   5763: 		$answer=$alphabet[$args->{'response'}];
                   5764: 	    } elsif ($on eq 'number') {
                   5765: 		$answer=$args->{'response'}+1;
                   5766: 		if ($answer == 10) { $answer = '0'; }
1.274     albertel 5767: 	    } else {
1.497     foxr     5768: 		substr($answer,$args->{'response'},1)=$on;
1.274     albertel 5769: 	    }
1.497     foxr     5770: 	    &scan_data($scan_data,
1.503     raeburn  5771: 		       "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157     albertel 5772: 	}
1.497     foxr     5773: 	my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
                   5774: 	substr($line,$where-1,$length)=$answer;
1.157     albertel 5775:     }
                   5776:     return $line;
                   5777: }
1.423     albertel 5778: 
                   5779: =pod
                   5780: 
                   5781: =item scan_data
                   5782: 
                   5783:     Edit or look up  an item in the scan_data hash.
                   5784: 
                   5785:   Arguments:
                   5786:     $scan_data  - The hash (see scantron_getfile)
                   5787:     $key        - shorthand of the key to edit (actual key is
1.424     albertel 5788:                   scantronfilename_key).
1.423     albertel 5789:     $data        - New value of the hash entry.
                   5790:     $delete      - If true, the entry is removed from the hash.
                   5791: 
                   5792:   Returns:
                   5793:     The new value of the hash table field (undefined if deleted).
                   5794: 
                   5795: =cut
                   5796: 
                   5797: 
1.157     albertel 5798: sub scan_data {
                   5799:     my ($scan_data,$key,$value,$delete)=@_;
1.257     albertel 5800:     my $filename=$env{'form.scantron_selectfile'};
1.157     albertel 5801:     if (defined($value)) {
                   5802: 	$scan_data->{$filename.'_'.$key} = $value;
                   5803:     }
                   5804:     if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
                   5805:     return $scan_data->{$filename.'_'.$key};
                   5806: }
1.423     albertel 5807: 
1.495     albertel 5808: # ----- These first few routines are general use routines.----
                   5809: 
                   5810: # Return the number of occurences of a pattern in a string.
                   5811: 
                   5812: sub occurence_count {
                   5813:     my ($string, $pattern) = @_;
                   5814: 
                   5815:     my @matches = ($string =~ /$pattern/g);
                   5816: 
                   5817:     return scalar(@matches);
                   5818: }
                   5819: 
                   5820: 
                   5821: # Take a string known to have digits and convert all the
                   5822: # digits into letters in the range J,A..I.
                   5823: 
                   5824: sub digits_to_letters {
                   5825:     my ($input) = @_;
                   5826: 
                   5827:     my @alphabet = ('J', 'A'..'I');
                   5828: 
                   5829:     my @input    = split(//, $input);
                   5830:     my $output ='';
                   5831:     for (my $i = 0; $i < scalar(@input); $i++) {
                   5832: 	if ($input[$i] =~ /\d/) {
                   5833: 	    $output .= $alphabet[$input[$i]];
                   5834: 	} else {
                   5835: 	    $output .= $input[$i];
                   5836: 	}
                   5837:     }
                   5838:     return $output;
                   5839: }
                   5840: 
1.423     albertel 5841: =pod 
                   5842: 
                   5843: =item scantron_parse_scanline
                   5844: 
                   5845:   Decodes a scanline from the selected scantron file
                   5846: 
                   5847:  Arguments:
                   5848:     line             - The text of the scantron file line to process
                   5849:     whichline        - Line number
                   5850:     scantron_config  - Hash describing the format of the scantron lines.
                   5851:     scan_data        - Hash of extra information about the scanline
                   5852:                        (see scantron_getfile for more information)
                   5853:     just_header      - True if should not process question answers but only
                   5854:                        the stuff to the left of the answers.
                   5855:  Returns:
                   5856:    Hash containing the result of parsing the scanline
                   5857: 
                   5858:    Keys are all proceeded by the string 'scantron.'
                   5859: 
                   5860:        CODE    - the CODE in use for this scanline
                   5861:        useCODE - 1 if the CODE is invalid but it usage has been forced
                   5862:                  by the operator
                   5863:        CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
                   5864:                             CODEs were selected, but the usage has been
                   5865:                             forced by the operator
1.556     weissno  5866:        ID  - student/employee ID
1.423     albertel 5867:        PaperID - if used, the ID number printed on the sheet when the 
                   5868:                  paper was scanned
                   5869:        FirstName - first name from the sheet
                   5870:        LastName  - last name from the sheet
                   5871: 
                   5872:      if just_header was not true these key may also exist
                   5873: 
1.447     foxr     5874:        missingerror - a list of bubble ranges that are considered to be answers
                   5875:                       to a single question that don't have any bubbles filled in.
                   5876:                       Of the form questionnumber:firstbubblenumber:count.
                   5877:        doubleerror  - a list of bubble ranges that are considered to be answers
                   5878:                       to a single question that have more than one bubble filled in.
                   5879:                       Of the form questionnumber::firstbubblenumber:count
                   5880:    
                   5881:                 In the above, count is the number of bubble responses in the
                   5882:                 input line needed to represent the possible answers to the question.
                   5883:                 e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
                   5884:                 per line would have count = 2.
                   5885: 
1.423     albertel 5886:        maxquest     - the number of the last bubble line that was parsed
                   5887: 
                   5888:        (<number> starts at 1)
                   5889:        <number>.answer - zero or more letters representing the selected
                   5890:                          letters from the scanline for the bubble line 
                   5891:                          <number>.
                   5892:                          if blank there was either no bubble or there where
                   5893:                          multiple bubbles, (consult the keys missingerror and
                   5894:                          doubleerror if this is an error condition)
                   5895: 
                   5896: =cut
                   5897: 
1.82      albertel 5898: sub scantron_parse_scanline {
1.423     albertel 5899:     my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470     foxr     5900: 
1.82      albertel 5901:     my %record;
1.550     raeburn  5902:     my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
                   5903:     my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos);  # Answers
1.422     foxr     5904:     my $data=substr($line,0,$$scantron_config{'Qstart'}-1);     # earlier stuff
1.278     albertel 5905:     if (!($$scantron_config{'CODElocation'} eq 0 ||
                   5906: 	  $$scantron_config{'CODElocation'} eq 'none')) {
                   5907: 	if ($$scantron_config{'CODElocation'} < 0 ||
                   5908: 	    $$scantron_config{'CODElocation'} eq 'letter' ||
                   5909: 	    $$scantron_config{'CODElocation'} eq 'number') {
1.191     albertel 5910: 	    $record{'scantron.CODE'}=substr($data,
                   5911: 					    $$scantron_config{'CODEstart'}-1,
1.83      albertel 5912: 					    $$scantron_config{'CODElength'});
1.191     albertel 5913: 	    if (&scan_data($scan_data,"$whichline.useCODE")) {
                   5914: 		$record{'scantron.useCODE'}=1;
                   5915: 	    }
1.192     albertel 5916: 	    if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
                   5917: 		$record{'scantron.CODE_ignore_dup'}=1;
                   5918: 	    }
1.82      albertel 5919: 	} else {
                   5920: 	    #FIXME interpret first N questions
                   5921: 	}
                   5922:     }
1.83      albertel 5923:     $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
                   5924: 				  $$scantron_config{'IDlength'});
1.157     albertel 5925:     $record{'scantron.PaperID'}=
                   5926: 	substr($data,$$scantron_config{'PaperID'}-1,
                   5927: 	       $$scantron_config{'PaperIDlength'});
                   5928:     $record{'scantron.FirstName'}=
                   5929: 	substr($data,$$scantron_config{'FirstName'}-1,
                   5930: 	       $$scantron_config{'FirstNamelength'});
                   5931:     $record{'scantron.LastName'}=
                   5932: 	substr($data,$$scantron_config{'LastName'}-1,
                   5933: 	       $$scantron_config{'LastNamelength'});
1.423     albertel 5934:     if ($just_header) { return \%record; }
1.194     albertel 5935: 
1.82      albertel 5936:     my @alphabet=('A'..'Z');
                   5937:     my $questnum=0;
1.447     foxr     5938:     my $ansnum  =1;		# Multiple 'answer lines'/question.
                   5939: 
1.470     foxr     5940:     chomp($questions);		# Get rid of any trailing \n.
                   5941:     $questions =~ s/\r$//;      # Get rid of trailing \r too (MAC or Win uploads).
                   5942:     while (length($questions)) {
1.447     foxr     5943: 	my $answers_needed = $bubble_lines_per_response{$questnum};
1.503     raeburn  5944:         my $answer_length  = ($$scantron_config{'Qlength'} * $answers_needed)
                   5945:                              || 1;
                   5946:         $questnum++;
                   5947:         my $quest_id = $questnum;
                   5948:         my $currentquest = substr($questions,0,$answer_length);
                   5949:         $questions       = substr($questions,$answer_length);
                   5950:         if (length($currentquest) < $answer_length) { next; }
                   5951: 
                   5952:         if ($subdivided_bubble_lines{$questnum-1} =~ /,/) {
                   5953:             my $subquestnum = 1;
                   5954:             my $subquestions = $currentquest;
                   5955:             my @subanswers_needed = 
                   5956:                 split(/,/,$subdivided_bubble_lines{$questnum-1});  
                   5957:             foreach my $subans (@subanswers_needed) {
                   5958:                 my $subans_length =
                   5959:                     ($$scantron_config{'Qlength'} * $subans)  || 1;
                   5960:                 my $currsubquest = substr($subquestions,0,$subans_length);
                   5961:                 $subquestions   = substr($subquestions,$subans_length);
                   5962:                 $quest_id = "$questnum.$subquestnum";
                   5963:                 if (($$scantron_config{'Qon'} eq 'letter') ||
                   5964:                     ($$scantron_config{'Qon'} eq 'number')) {
                   5965:                     $ansnum = &scantron_validator_lettnum($ansnum, 
                   5966:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,
                   5967:                         \@alphabet,\%record,$scantron_config,$scan_data);
                   5968:                 } else {
                   5969:                     $ansnum = &scantron_validator_positional($ansnum,
                   5970:                         $questnum,$quest_id,$subans,$currsubquest,$whichline,                        \@alphabet,\%record,$scantron_config,$scan_data);
                   5971:                 }
                   5972:                 $subquestnum ++;
                   5973:             }
                   5974:         } else {
                   5975:             if (($$scantron_config{'Qon'} eq 'letter') ||
                   5976:                 ($$scantron_config{'Qon'} eq 'number')) {
                   5977:                 $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
                   5978:                     $quest_id,$answers_needed,$currentquest,$whichline,
                   5979:                     \@alphabet,\%record,$scantron_config,$scan_data);
                   5980:             } else {
                   5981:                 $ansnum = &scantron_validator_positional($ansnum,$questnum,
                   5982:                     $quest_id,$answers_needed,$currentquest,$whichline,
                   5983:                     \@alphabet,\%record,$scantron_config,$scan_data);
                   5984:             }
                   5985:         }
                   5986:     }
                   5987:     $record{'scantron.maxquest'}=$questnum;
                   5988:     return \%record;
                   5989: }
1.447     foxr     5990: 
1.503     raeburn  5991: sub scantron_validator_lettnum {
                   5992:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
                   5993:         $alphabet,$record,$scantron_config,$scan_data) = @_;
                   5994: 
                   5995:     # Qon 'letter' implies for each slot in currquest we have:
                   5996:     #    ? or * for doubles, a letter in A-Z for a bubble, and
                   5997:     #    about anything else (esp. a value of Qoff) for missing
                   5998:     #    bubbles.
                   5999:     #
                   6000:     # Qon 'number' implies each slot gives a digit that indexes the
                   6001:     #    bubbles filled, or Qoff, or a non-number for unbubbled lines,
                   6002:     #    and * or ? for double bubbles on a single line.
                   6003:     #
1.447     foxr     6004: 
1.503     raeburn  6005:     my $matchon;
                   6006:     if ($$scantron_config{'Qon'} eq 'letter') {
                   6007:         $matchon = '[A-Z]';
                   6008:     } elsif ($$scantron_config{'Qon'} eq 'number') {
                   6009:         $matchon = '\d';
                   6010:     }
                   6011:     my $occurrences = 0;
                   6012:     if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
                   6013:         ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510     raeburn  6014:         ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
                   6015:         ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
                   6016:         ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
                   6017:         ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503     raeburn  6018:         my @singlelines = split('',$currquest);
                   6019:         foreach my $entry (@singlelines) {
                   6020:             $occurrences = &occurence_count($entry,$matchon);
                   6021:             if ($occurrences > 1) {
                   6022:                 last;
                   6023:             }
                   6024:         } 
                   6025:     } else {
                   6026:         $occurrences = &occurence_count($currquest,$matchon); 
                   6027:     }
                   6028:     if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
                   6029:         push(@{$record->{'scantron.doubleerror'}},$quest_id);
                   6030:         for (my $ans=0; $ans<$answers_needed; $ans++) {
                   6031:             my $bubble = substr($currquest,$ans,1);
                   6032:             if ($bubble =~ /$matchon/ ) {
                   6033:                 if ($$scantron_config{'Qon'} eq 'number') {
                   6034:                     if ($bubble == 0) {
                   6035:                         $bubble = 10; 
                   6036:                     }
                   6037:                     $record->{"scantron.$ansnum.answer"} = 
                   6038:                         $alphabet->[$bubble-1];
                   6039:                 } else {
                   6040:                     $record->{"scantron.$ansnum.answer"} = $bubble;
                   6041:                 }
                   6042:             } else {
                   6043:                 $record->{"scantron.$ansnum.answer"}='';
                   6044:             }
                   6045:             $ansnum++;
                   6046:         }
                   6047:     } elsif (!defined($currquest)
                   6048:             || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
                   6049:             || (&occurence_count($currquest,$matchon) == 0)) {
                   6050:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
                   6051:             $record->{"scantron.$ansnum.answer"}='';
                   6052:             $ansnum++;
                   6053:         }
                   6054:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
                   6055:             push(@{$record->{'scantron.missingerror'}},$quest_id);
                   6056:         }
                   6057:     } else {
                   6058:         if ($$scantron_config{'Qon'} eq 'number') {
                   6059:             $currquest = &digits_to_letters($currquest);            
                   6060:         }
                   6061:         for (my $ans=0; $ans<$answers_needed; $ans++) {
                   6062:             my $bubble = substr($currquest,$ans,1);
                   6063:             $record->{"scantron.$ansnum.answer"} = $bubble;
                   6064:             $ansnum++;
                   6065:         }
                   6066:     }
                   6067:     return $ansnum;
                   6068: }
1.447     foxr     6069: 
1.503     raeburn  6070: sub scantron_validator_positional {
                   6071:     my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
                   6072:         $whichline,$alphabet,$record,$scantron_config,$scan_data) = @_;
1.447     foxr     6073: 
1.503     raeburn  6074:     # Otherwise there's a positional notation;
                   6075:     # each bubble line requires Qlength items, and there are filled in
                   6076:     # bubbles for each case where there 'Qon' characters.
                   6077:     #
1.447     foxr     6078: 
1.503     raeburn  6079:     my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447     foxr     6080: 
1.503     raeburn  6081:     # If the split only gives us one element.. the full length of the
                   6082:     # answer string, no bubbles are filled in:
1.447     foxr     6083: 
1.507     raeburn  6084:     if ($answers_needed eq '') {
                   6085:         return;
                   6086:     }
                   6087: 
1.503     raeburn  6088:     if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
                   6089:         for (my $ans=0; $ans<$answers_needed; $ans++ ) {
                   6090:             $record->{"scantron.$ansnum.answer"}='';
                   6091:             $ansnum++;
                   6092:         }
                   6093:         if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
                   6094:             push(@{$record->{"scantron.missingerror"}},$quest_id);
                   6095:         }
                   6096:     } elsif (scalar(@array) == 2) {
                   6097:         my $location = length($array[0]);
                   6098:         my $line_num = int($location / $$scantron_config{'Qlength'});
                   6099:         my $bubble   = $alphabet->[$location % $$scantron_config{'Qlength'}];
                   6100:         for (my $ans=0; $ans<$answers_needed; $ans++) {
                   6101:             if ($ans eq $line_num) {
                   6102:                 $record->{"scantron.$ansnum.answer"} = $bubble;
                   6103:             } else {
                   6104:                 $record->{"scantron.$ansnum.answer"} = ' ';
                   6105:             }
                   6106:             $ansnum++;
                   6107:          }
                   6108:     } else {
                   6109:         #  If there's more than one instance of a bubble character
                   6110:         #  That's a double bubble; with positional notation we can
                   6111:         #  record all the bubbles filled in as well as the
                   6112:         #  fact this response consists of multiple bubbles.
                   6113:         #
                   6114:         if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
                   6115:             ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510     raeburn  6116:             ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
                   6117:             ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
                   6118:             ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
                   6119:             ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503     raeburn  6120:             my $doubleerror = 0;
                   6121:             while (($currquest >= $$scantron_config{'Qlength'}) && 
                   6122:                    (!$doubleerror)) {
                   6123:                my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
                   6124:                $currquest = substr($currquest,$$scantron_config{'Qlength'});
                   6125:                my @currarray = split($$scantron_config{'Qon'},$currline,-1);
                   6126:                if (length(@currarray) > 2) {
                   6127:                    $doubleerror = 1;
                   6128:                } 
                   6129:             }
                   6130:             if ($doubleerror) {
                   6131:                 push(@{$record->{'scantron.doubleerror'}},$quest_id);
                   6132:             }
                   6133:         } else {
                   6134:             push(@{$record->{'scantron.doubleerror'}},$quest_id);
                   6135:         }
                   6136:         my $item = $ansnum;
                   6137:         for (my $ans=0; $ans<$answers_needed; $ans++) {
                   6138:             $record->{"scantron.$item.answer"} = '';
                   6139:             $item ++;
                   6140:         }
1.447     foxr     6141: 
1.503     raeburn  6142:         my @ans=@array;
                   6143:         my $i=0;
                   6144:         my $increment = 0;
                   6145:         while ($#ans) {
                   6146:             $i+=length($ans[0]) + $increment;
                   6147:             my $line   = int($i/$$scantron_config{'Qlength'} + $ansnum);
                   6148:             my $bubble = $i%$$scantron_config{'Qlength'};
                   6149:             $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
                   6150:             shift(@ans);
                   6151:             $increment = 1;
                   6152:         }
                   6153:         $ansnum += $answers_needed;
1.82      albertel 6154:     }
1.503     raeburn  6155:     return $ansnum;
1.82      albertel 6156: }
                   6157: 
1.423     albertel 6158: =pod
                   6159: 
                   6160: =item scantron_add_delay
                   6161: 
                   6162:    Adds an error message that occurred during the grading phase to a
                   6163:    queue of messages to be shown after grading pass is complete
                   6164: 
                   6165:  Arguments:
1.424     albertel 6166:    $delayqueue  - arrary ref of hash ref of error messages
1.423     albertel 6167:    $scanline    - the scanline that caused the error
                   6168:    $errormesage - the error message
                   6169:    $errorcode   - a numeric code for the error
                   6170: 
                   6171:  Side Effects:
1.424     albertel 6172:    updates the $delayqueue to have a new hash ref of the error
1.423     albertel 6173: 
                   6174: =cut
                   6175: 
1.82      albertel 6176: sub scantron_add_delay {
1.140     albertel 6177:     my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
                   6178:     push(@$delayqueue,
                   6179: 	 {'line' => $scanline, 'emsg' => $errormessage,
                   6180: 	  'ecode' => $errorcode }
                   6181: 	 );
1.82      albertel 6182: }
                   6183: 
1.423     albertel 6184: =pod
                   6185: 
                   6186: =item scantron_find_student
                   6187: 
1.424     albertel 6188:    Finds the username for the current scanline
                   6189: 
                   6190:   Arguments:
                   6191:    $scantron_record - hash result from scantron_parse_scanline
                   6192:    $scan_data       - hash of correction information 
                   6193:                       (see &scantron_getfile() form more information)
                   6194:    $idmap           - hash from &username_to_idmap()
                   6195:    $line            - number of current scanline
                   6196:  
                   6197:   Returns:
                   6198:    Either 'username:domain' or undef if unknown
                   6199: 
1.423     albertel 6200: =cut
                   6201: 
1.82      albertel 6202: sub scantron_find_student {
1.157     albertel 6203:     my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83      albertel 6204:     my $scanID=$$scantron_record{'scantron.ID'};
1.157     albertel 6205:     if ($scanID =~ /^\s*$/) {
                   6206:  	return &scan_data($scan_data,"$line.user");
                   6207:     }
1.83      albertel 6208:     foreach my $id (keys(%$idmap)) {
1.157     albertel 6209:  	if (lc($id) eq lc($scanID)) {
                   6210:  	    return $$idmap{$id};
                   6211:  	}
1.83      albertel 6212:     }
                   6213:     return undef;
                   6214: }
                   6215: 
1.423     albertel 6216: =pod
                   6217: 
                   6218: =item scantron_filter
                   6219: 
1.424     albertel 6220:    Filter sub for lonnavmaps, filters out hidden resources if ignore
                   6221:    hidden resources was selected
                   6222: 
1.423     albertel 6223: =cut
                   6224: 
1.83      albertel 6225: sub scantron_filter {
                   6226:     my ($curres)=@_;
1.331     albertel 6227: 
                   6228:     if (ref($curres) && $curres->is_problem()) {
                   6229: 	# if the user has asked to not have either hidden
                   6230: 	# or 'randomout' controlled resources to be graded
                   6231: 	# don't include them
                   6232: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
                   6233: 	    && $curres->randomout) {
                   6234: 	    return 0;
                   6235: 	}
1.83      albertel 6236: 	return 1;
                   6237:     }
                   6238:     return 0;
1.82      albertel 6239: }
                   6240: 
1.423     albertel 6241: =pod
                   6242: 
                   6243: =item scantron_process_corrections
                   6244: 
1.424     albertel 6245:    Gets correction information out of submitted form data and corrects
                   6246:    the scanline
                   6247: 
1.423     albertel 6248: =cut
                   6249: 
1.157     albertel 6250: sub scantron_process_corrections {
                   6251:     my ($r) = @_;
1.257     albertel 6252:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 6253:     my ($scanlines,$scan_data)=&scantron_getfile();
                   6254:     my $classlist=&Apache::loncoursedata::get_classlist();
1.257     albertel 6255:     my $which=$env{'form.scantron_line'};
1.200     albertel 6256:     my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157     albertel 6257:     my ($skip,$err,$errmsg);
1.257     albertel 6258:     if ($env{'form.scantron_skip_record'}) {
1.157     albertel 6259: 	$skip=1;
1.257     albertel 6260:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
                   6261: 	my $newstudent=$env{'form.scantron_username'}.':'.
                   6262: 	    $env{'form.scantron_domain'};
1.157     albertel 6263: 	my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
                   6264: 	($line,$err,$errmsg)=
                   6265: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
                   6266: 				     'ID',{'newid'=>$newid,
1.257     albertel 6267: 				    'username'=>$env{'form.scantron_username'},
                   6268: 				    'domain'=>$env{'form.scantron_domain'}});
                   6269:     } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
                   6270: 	my $resolution=$env{'form.scantron_CODE_resolution'};
1.190     albertel 6271: 	my $newCODE;
1.192     albertel 6272: 	my %args;
1.190     albertel 6273: 	if      ($resolution eq 'use_unfound') {
1.191     albertel 6274: 	    $newCODE='use_unfound';
1.190     albertel 6275: 	} elsif ($resolution eq 'use_found') {
1.257     albertel 6276: 	    $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190     albertel 6277: 	} elsif ($resolution eq 'use_typed') {
1.257     albertel 6278: 	    $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194     albertel 6279: 	} elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257     albertel 6280: 	    $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190     albertel 6281: 	}
1.257     albertel 6282: 	if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192     albertel 6283: 	    $args{'CODE_ignore_dup'}=1;
                   6284: 	}
                   6285: 	$args{'CODE'}=$newCODE;
1.186     albertel 6286: 	($line,$err,$errmsg)=
                   6287: 	    &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192     albertel 6288: 				     'CODE',\%args);
1.257     albertel 6289:     } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
                   6290: 	foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157     albertel 6291: 	    ($line,$err,$errmsg)=
                   6292: 		&scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
                   6293: 					 $which,'answer',
                   6294: 					 { 'question'=>$question,
1.503     raeburn  6295: 		      		   'response'=>$env{"form.scantron_correct_Q_$question"},
                   6296:                                    'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157     albertel 6297: 	    if ($err) { last; }
                   6298: 	}
                   6299:     }
                   6300:     if ($err) {
1.398     albertel 6301: 	$r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157     albertel 6302:     } else {
1.200     albertel 6303: 	&scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157     albertel 6304: 	&scantron_putfile($scanlines,$scan_data);
                   6305:     }
                   6306: }
                   6307: 
1.423     albertel 6308: =pod
                   6309: 
                   6310: =item reset_skipping_status
                   6311: 
1.424     albertel 6312:    Forgets the current set of remember skipped scanlines (and thus
                   6313:    reverts back to considering all lines in the
                   6314:    scantron_skipped_<filename> file)
                   6315: 
1.423     albertel 6316: =cut
                   6317: 
1.200     albertel 6318: sub reset_skipping_status {
                   6319:     my ($scanlines,$scan_data)=&scantron_getfile();
                   6320:     &scan_data($scan_data,'remember_skipping',undef,1);
                   6321:     &scantron_putfile(undef,$scan_data);
                   6322: }
                   6323: 
1.423     albertel 6324: =pod
                   6325: 
                   6326: =item start_skipping
                   6327: 
1.424     albertel 6328:    Marks a scanline to be skipped. 
                   6329: 
1.423     albertel 6330: =cut
                   6331: 
1.376     albertel 6332: sub start_skipping {
1.200     albertel 6333:     my ($scan_data,$i)=@_;
                   6334:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376     albertel 6335:     if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
                   6336: 	$remembered{$i}=2;
                   6337:     } else {
                   6338: 	$remembered{$i}=1;
                   6339:     }
1.200     albertel 6340:     &scan_data($scan_data,'remember_skipping',join(':',%remembered));
                   6341: }
                   6342: 
1.423     albertel 6343: =pod
                   6344: 
                   6345: =item should_be_skipped
                   6346: 
1.424     albertel 6347:    Checks whether a scanline should be skipped.
                   6348: 
1.423     albertel 6349: =cut
                   6350: 
1.200     albertel 6351: sub should_be_skipped {
1.376     albertel 6352:     my ($scanlines,$scan_data,$i)=@_;
1.257     albertel 6353:     if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200     albertel 6354: 	# not redoing old skips
1.376     albertel 6355: 	if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200     albertel 6356: 	return 0;
                   6357:     }
                   6358:     my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376     albertel 6359: 
                   6360:     if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
                   6361: 	return 0;
                   6362:     }
1.200     albertel 6363:     return 1;
                   6364: }
                   6365: 
1.423     albertel 6366: =pod
                   6367: 
                   6368: =item remember_current_skipped
                   6369: 
1.424     albertel 6370:    Discovers what scanlines are in the scantron_skipped_<filename>
                   6371:    file and remembers them into scan_data for later use.
                   6372: 
1.423     albertel 6373: =cut
                   6374: 
1.200     albertel 6375: sub remember_current_skipped {
                   6376:     my ($scanlines,$scan_data)=&scantron_getfile();
                   6377:     my %to_remember;
                   6378:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   6379: 	if ($scanlines->{'skipped'}[$i]) {
                   6380: 	    $to_remember{$i}=1;
                   6381: 	}
                   6382:     }
1.376     albertel 6383: 
1.200     albertel 6384:     &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
                   6385:     &scantron_putfile(undef,$scan_data);
                   6386: }
                   6387: 
1.423     albertel 6388: =pod
                   6389: 
                   6390: =item check_for_error
                   6391: 
1.424     albertel 6392:     Checks if there was an error when attempting to remove a specific
1.659     raeburn  6393:     scantron_.. bubblesheet data file. Prints out an error if
1.424     albertel 6394:     something went wrong.
                   6395: 
1.423     albertel 6396: =cut
                   6397: 
1.200     albertel 6398: sub check_for_error {
                   6399:     my ($r,$result)=@_;
                   6400:     if ($result ne 'ok' && $result ne 'not_found' ) {
1.492     albertel 6401: 	$r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200     albertel 6402:     }
                   6403: }
1.157     albertel 6404: 
1.423     albertel 6405: =pod
                   6406: 
                   6407: =item scantron_warning_screen
                   6408: 
1.424     albertel 6409:    Interstitial screen to make sure the operator has selected the
                   6410:    correct options before we start the validation phase.
                   6411: 
1.423     albertel 6412: =cut
                   6413: 
1.203     albertel 6414: sub scantron_warning_screen {
1.650     raeburn  6415:     my ($button_text,$symb)=@_;
1.257     albertel 6416:     my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284     albertel 6417:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373     albertel 6418:     my $CODElist;
1.284     albertel 6419:     if ($scantron_config{'CODElocation'} &&
                   6420: 	$scantron_config{'CODEstart'} &&
                   6421: 	$scantron_config{'CODElength'}) {
                   6422: 	$CODElist=$env{'form.scantron_CODElist'};
1.398     albertel 6423: 	if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284     albertel 6424: 	$CODElist=
1.492     albertel 6425: 	    '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373     albertel 6426: 	    $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284     albertel 6427:     }
1.663     raeburn  6428:     my $lastbubblepoints;
                   6429:     if ($env{'form.scantron_lastbubblepoints'} ne '') {
                   6430:         $lastbubblepoints =
                   6431:             '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
                   6432:             $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
                   6433:     }
1.492     albertel 6434:     return ('
1.203     albertel 6435: <p>
1.492     albertel 6436: <span class="LC_warning">
                   6437: '.&mt('Please double check the information below before clicking on \'[_1]\'',&mt($button_text)).'</span>
1.203     albertel 6438: </p>
                   6439: <table>
1.492     albertel 6440: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
                   6441: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
1.663     raeburn  6442: '.$CODElist.$lastbubblepoints.'
1.203     albertel 6443: </table>
1.680     raeburn  6444: <p> '.&mt("If this information is correct, please click on '[_1]'.",&mt($button_text)).'<br />
1.650     raeburn  6445: '.&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>
1.203     albertel 6446: 
                   6447: <br />
1.492     albertel 6448: ');
1.203     albertel 6449: }
                   6450: 
1.423     albertel 6451: =pod
                   6452: 
                   6453: =item scantron_do_warning
                   6454: 
1.424     albertel 6455:    Check if the operator has picked something for all required
                   6456:    fields. Error out if something is missing.
                   6457: 
1.423     albertel 6458: =cut
                   6459: 
1.203     albertel 6460: sub scantron_do_warning {
1.608     www      6461:     my ($r,$symb)=@_;
1.203     albertel 6462:     if (!$symb) {return '';}
1.324     albertel 6463:     my $default_form_data=&defaultFormData($symb);
1.203     albertel 6464:     $r->print(&scantron_form_start().$default_form_data);
1.257     albertel 6465:     if ( $env{'form.selectpage'} eq '' ||
                   6466: 	 $env{'form.scantron_selectfile'} eq '' ||
                   6467: 	 $env{'form.scantron_format'} eq '' ) {
1.642     raeburn  6468: 	$r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
1.257     albertel 6469: 	if ( $env{'form.selectpage'} eq '') {
1.492     albertel 6470: 	    $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237     albertel 6471: 	} 
1.257     albertel 6472: 	if ( $env{'form.scantron_selectfile'} eq '') {
1.642     raeburn  6473: 	    $r->print('<p><span class="LC_error">'.&mt("You have not selected a file that contains the student's response data.").'</span></p>');
1.237     albertel 6474: 	} 
1.257     albertel 6475: 	if ( $env{'form.scantron_format'} eq '') {
1.642     raeburn  6476: 	    $r->print('<p><span class="LC_error">'.&mt("You have not selected the format of the student's response data.").'</span></p>');
1.237     albertel 6477: 	} 
                   6478:     } else {
1.650     raeburn  6479: 	my $warning=&scantron_warning_screen('Grading: Validate Records',$symb);
1.663     raeburn  6480:         my $bubbledbyhand=&hand_bubble_option();
1.492     albertel 6481: 	$r->print('
1.663     raeburn  6482: '.$warning.$bubbledbyhand.'
1.492     albertel 6483: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203     albertel 6484: <input type="hidden" name="command" value="scantron_validate" />
1.492     albertel 6485: ');
1.237     albertel 6486:     }
1.614     www      6487:     $r->print("</form><br />");
1.203     albertel 6488:     return '';
                   6489: }
                   6490: 
1.423     albertel 6491: =pod
                   6492: 
                   6493: =item scantron_form_start
                   6494: 
1.424     albertel 6495:     html hidden input for remembering all selected grading options
                   6496: 
1.423     albertel 6497: =cut
                   6498: 
1.203     albertel 6499: sub scantron_form_start {
                   6500:     my ($max_bubble)=@_;
                   6501:     my $result= <<SCANTRONFORM;
                   6502: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257     albertel 6503:   <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
                   6504:   <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
                   6505:   <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218     albertel 6506:   <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257     albertel 6507:   <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
                   6508:   <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
                   6509:   <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
                   6510:   <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331     albertel 6511:   <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203     albertel 6512: SCANTRONFORM
1.447     foxr     6513: 
                   6514:   my $line = 0;
                   6515:     while (defined($env{"form.scantron.bubblelines.$line"})) {
                   6516:        my $chunk =
                   6517: 	   '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448     foxr     6518:        $chunk .=
                   6519: 	   '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503     raeburn  6520:        $chunk .= 
                   6521:            '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504     raeburn  6522:        $chunk .=
                   6523:            '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.447     foxr     6524:        $result .= $chunk;
                   6525:        $line++;
                   6526:    }
1.203     albertel 6527:     return $result;
                   6528: }
                   6529: 
1.423     albertel 6530: =pod
                   6531: 
                   6532: =item scantron_validate_file
                   6533: 
1.659     raeburn  6534:     Dispatch routine for doing validation of a bubblesheet data file.
1.424     albertel 6535: 
                   6536:     Also processes any necessary information resets that need to
                   6537:     occur before validation begins (ignore previous corrections,
                   6538:     restarting the skipped records processing)
                   6539: 
1.423     albertel 6540: =cut
                   6541: 
1.157     albertel 6542: sub scantron_validate_file {
1.608     www      6543:     my ($r,$symb) = @_;
1.157     albertel 6544:     if (!$symb) {return '';}
1.324     albertel 6545:     my $default_form_data=&defaultFormData($symb);
1.200     albertel 6546:     
                   6547:     # do the detection of only doing skipped records first befroe we delete
1.424     albertel 6548:     # them when doing the corrections reset
1.257     albertel 6549:     if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200     albertel 6550: 	&reset_skipping_status();
                   6551:     }
1.257     albertel 6552:     if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200     albertel 6553: 	&remember_current_skipped();
1.257     albertel 6554: 	$env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200     albertel 6555:     }
                   6556: 
1.257     albertel 6557:     if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200     albertel 6558: 	&check_for_error($r,&scantron_remove_file('corrected'));
                   6559: 	&check_for_error($r,&scantron_remove_file('skipped'));
                   6560: 	&check_for_error($r,&scantron_remove_scan_data());
1.257     albertel 6561: 	$env{'form.scantron_options_ignore'}='done';
1.192     albertel 6562:     }
1.200     albertel 6563: 
1.257     albertel 6564:     if ($env{'form.scantron_corrections'}) {
1.157     albertel 6565: 	&scantron_process_corrections($r);
                   6566:     }
1.503     raeburn  6567:     $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157     albertel 6568:     #get the student pick code ready
                   6569:     $r->print(&Apache::loncommon::studentbrowser_javascript());
1.582     raeburn  6570:     my $nav_error;
1.649     raeburn  6571:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
                   6572:     my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582     raeburn  6573:     if ($nav_error) {
                   6574:         $r->print(&navmap_errormsg());
                   6575:         return '';
                   6576:     }
1.203     albertel 6577:     my $result=&scantron_form_start($max_bubble).$default_form_data;
1.663     raeburn  6578:     if ($env{'form.scantron_lastbubblepoints'} ne '') {
                   6579:         $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
                   6580:     }
1.157     albertel 6581:     $r->print($result);
                   6582:     
1.334     albertel 6583:     my @validate_phases=( 'sequence',
                   6584: 			  'ID',
1.157     albertel 6585: 			  'CODE',
                   6586: 			  'doublebubble',
                   6587: 			  'missingbubbles');
1.257     albertel 6588:     if (!$env{'form.validatepass'}) {
                   6589: 	$env{'form.validatepass'} = 0;
1.157     albertel 6590:     }
1.257     albertel 6591:     my $currentphase=$env{'form.validatepass'};
1.157     albertel 6592: 
1.448     foxr     6593: 
1.157     albertel 6594:     my $stop=0;
                   6595:     while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503     raeburn  6596: 	$r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157     albertel 6597: 	$r->rflush();
                   6598: 	my $which="scantron_validate_".$validate_phases[$currentphase];
                   6599: 	{
                   6600: 	    no strict 'refs';
                   6601: 	    ($stop,$currentphase)=&$which($r,$currentphase);
                   6602: 	}
                   6603:     }
                   6604:     if (!$stop) {
1.650     raeburn  6605: 	my $warning=&scantron_warning_screen('Start Grading',$symb);
1.542     raeburn  6606: 	$r->print(&mt('Validation process complete.').'<br />'.
                   6607:                   $warning.
                   6608:                   &mt('Perform verification for each student after storage of submissions?').
                   6609:                   '&nbsp;<span class="LC_nobreak"><label>'.
                   6610:                   '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
                   6611:                   ('&nbsp;'x3).'<label>'.
                   6612:                   '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
                   6613:                   '</label></span><br />'.
                   6614:                   &mt('Grading will take longer if you use verification.').'<br />'.
1.650     raeburn  6615:                   &mt('Otherwise, Grade/Manage/Review Bubblesheets [_1] Review bubblesheet data can be used once grading is complete.','&raquo;').'<br /><br />'.
1.542     raeburn  6616:                   '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
                   6617:                   '<input type="hidden" name="command" value="scantron_process" />'."\n");
1.157     albertel 6618:     } else {
                   6619: 	$r->print('<input type="hidden" name="command" value="scantron_validate" />');
                   6620: 	$r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
                   6621:     }
                   6622:     if ($stop) {
1.334     albertel 6623: 	if ($validate_phases[$currentphase] eq 'sequence') {
1.539     riegler  6624: 	    $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' &rarr; " />');
1.492     albertel 6625: 	    $r->print(' '.&mt('this error').' <br />');
1.334     albertel 6626: 
1.650     raeburn  6627: 	    $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>');
1.334     albertel 6628: 	} else {
1.503     raeburn  6629:             if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
1.539     riegler  6630: 	        $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' &rarr;" onclick="javascript:verify_bubble_radio(this.form)" />');
1.503     raeburn  6631:             } else {
1.539     riegler  6632:                 $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' &rarr;" />');
1.503     raeburn  6633:             }
1.492     albertel 6634: 	    $r->print(' '.&mt('using corrected info').' <br />');
                   6635: 	    $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
                   6636: 	    $r->print(" ".&mt("this scanline saving it for later."));
1.334     albertel 6637: 	}
1.157     albertel 6638:     }
1.614     www      6639:     $r->print(" </form><br />");
1.157     albertel 6640:     return '';
                   6641: }
                   6642: 
1.423     albertel 6643: 
                   6644: =pod
                   6645: 
                   6646: =item scantron_remove_file
                   6647: 
1.659     raeburn  6648:    Removes the requested bubblesheet data file, makes sure that
1.424     albertel 6649:    scantron_original_<filename> is never removed
                   6650: 
                   6651: 
1.423     albertel 6652: =cut
                   6653: 
1.200     albertel 6654: sub scantron_remove_file {
1.192     albertel 6655:     my ($which)=@_;
1.257     albertel 6656:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6657:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192     albertel 6658:     my $file='scantron_';
1.200     albertel 6659:     if ($which eq 'corrected' || $which eq 'skipped') {
                   6660: 	$file.=$which.'_';
1.192     albertel 6661:     } else {
                   6662: 	return 'refused';
                   6663:     }
1.257     albertel 6664:     $file.=$env{'form.scantron_selectfile'};
1.200     albertel 6665:     return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
                   6666: }
                   6667: 
1.423     albertel 6668: 
                   6669: =pod
                   6670: 
                   6671: =item scantron_remove_scan_data
                   6672: 
1.659     raeburn  6673:    Removes all scan_data correction for the requested bubblesheet
1.424     albertel 6674:    data file.  (In the case that both the are doing skipped records we need
                   6675:    to remember the old skipped lines for the time being so that element
                   6676:    persists for a while.)
                   6677: 
1.423     albertel 6678: =cut
                   6679: 
1.200     albertel 6680: sub scantron_remove_scan_data {
1.257     albertel 6681:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6682:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192     albertel 6683:     my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
                   6684:     my @todelete;
1.257     albertel 6685:     my $filename=$env{'form.scantron_selectfile'};
1.192     albertel 6686:     foreach my $key (@keys) {
                   6687: 	if ($key=~/^\Q$filename\E_/) {
1.257     albertel 6688: 	    if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200     albertel 6689: 		$key=~/remember_skipping/) {
                   6690: 		next;
                   6691: 	    }
1.192     albertel 6692: 	    push(@todelete,$key);
                   6693: 	}
                   6694:     }
1.200     albertel 6695:     my $result;
1.192     albertel 6696:     if (@todelete) {
1.491     albertel 6697: 	$result = &Apache::lonnet::del('nohist_scantrondata',
                   6698: 				       \@todelete,$cdom,$cname);
                   6699:     } else {
                   6700: 	$result = 'ok';
1.192     albertel 6701:     }
                   6702:     return $result;
                   6703: }
                   6704: 
1.423     albertel 6705: 
                   6706: =pod
                   6707: 
                   6708: =item scantron_getfile
                   6709: 
1.659     raeburn  6710:     Fetches the requested bubblesheet data file (all 3 versions), and
1.424     albertel 6711:     the scan_data hash
                   6712:   
                   6713:   Arguments:
                   6714:     None
                   6715: 
                   6716:   Returns:
                   6717:     2 hash references
                   6718: 
                   6719:      - first one has 
                   6720:          orig      -
                   6721:          corrected -
                   6722:          skipped   -  each of which points to an array ref of the specified
                   6723:                       file broken up into individual lines
                   6724:          count     - number of scanlines
                   6725:  
                   6726:      - second is the scan_data hash possible keys are
1.425     albertel 6727:        ($number refers to scanline numbered $number and thus the key affects
                   6728:         only that scanline
                   6729:         $bubline refers to the specific bubble line element and the aspects
                   6730:         refers to that specific bubble line element)
                   6731: 
                   6732:        $number.user - username:domain to use
                   6733:        $number.CODE_ignore_dup 
                   6734:                     - ignore the duplicate CODE error 
                   6735:        $number.useCODE
                   6736:                     - use the CODE in the scanline as is
                   6737:        $number.no_bubble.$bubline
                   6738:                     - it is valid that there is no bubbled in bubble
                   6739:                       at $number $bubline
                   6740:        remember_skipping
                   6741:                     - a frozen hash containing keys of $number and values
                   6742:                       of either 
                   6743:                         1 - we are on a 'do skipped records pass' and plan
                   6744:                             on processing this line
                   6745:                         2 - we are on a 'do skipped records pass' and this
                   6746:                             scanline has been marked to skip yet again
1.424     albertel 6747: 
1.423     albertel 6748: =cut
                   6749: 
1.157     albertel 6750: sub scantron_getfile {
1.200     albertel 6751:     #FIXME really would prefer a scantron directory
1.257     albertel 6752:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6753:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157     albertel 6754:     my $lines;
                   6755:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 6756: 		       'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157     albertel 6757:     my %scanlines;
                   6758:     $scanlines{'orig'}=[(split("\n",$lines,-1))];
                   6759:     my $temp=$scanlines{'orig'};
                   6760:     $scanlines{'count'}=$#$temp;
                   6761: 
                   6762:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 6763: 		       'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157     albertel 6764:     if ($lines eq '-1') {
                   6765: 	$scanlines{'corrected'}=[];
                   6766:     } else {
                   6767: 	$scanlines{'corrected'}=[(split("\n",$lines,-1))];
                   6768:     }
                   6769:     $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257     albertel 6770: 		       'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157     albertel 6771:     if ($lines eq '-1') {
                   6772: 	$scanlines{'skipped'}=[];
                   6773:     } else {
                   6774: 	$scanlines{'skipped'}=[(split("\n",$lines,-1))];
                   6775:     }
1.175     albertel 6776:     my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157     albertel 6777:     if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
                   6778:     my %scan_data = @tmp;
                   6779:     return (\%scanlines,\%scan_data);
                   6780: }
                   6781: 
1.423     albertel 6782: =pod
                   6783: 
                   6784: =item lonnet_putfile
                   6785: 
1.424     albertel 6786:    Wrapper routine to call &Apache::lonnet::finishuserfileupload
                   6787: 
                   6788:  Arguments:
                   6789:    $contents - data to store
                   6790:    $filename - filename to store $contents into
                   6791: 
                   6792:  Returns:
                   6793:    result value from &Apache::lonnet::finishuserfileupload
                   6794: 
1.423     albertel 6795: =cut
                   6796: 
1.157     albertel 6797: sub lonnet_putfile {
                   6798:     my ($contents,$filename)=@_;
1.257     albertel 6799:     my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6800:     my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   6801:     $env{'form.sillywaytopassafilearound'}=$contents;
1.275     albertel 6802:     &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157     albertel 6803: 
                   6804: }
                   6805: 
1.423     albertel 6806: =pod
                   6807: 
                   6808: =item scantron_putfile
                   6809: 
1.659     raeburn  6810:     Stores the current version of the bubblesheet data files, and the
1.424     albertel 6811:     scan_data hash. (Does not modify the original version only the
                   6812:     corrected and skipped versions.
                   6813: 
                   6814:  Arguments:
                   6815:     $scanlines - hash ref that looks like the first return value from
                   6816:                  &scantron_getfile()
                   6817:     $scan_data - hash ref that looks like the second return value from
                   6818:                  &scantron_getfile()
                   6819: 
1.423     albertel 6820: =cut
                   6821: 
1.157     albertel 6822: sub scantron_putfile {
                   6823:     my ($scanlines,$scan_data) = @_;
1.200     albertel 6824:     #FIXME really would prefer a scantron directory
1.257     albertel 6825:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   6826:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200     albertel 6827:     if ($scanlines) {
                   6828: 	my $prefix='scantron_';
1.157     albertel 6829: # no need to update orig, shouldn't change
                   6830: #   &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257     albertel 6831: #		    $env{'form.scantron_selectfile'});
1.200     albertel 6832: 	&lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
                   6833: 			$prefix.'corrected_'.
1.257     albertel 6834: 			$env{'form.scantron_selectfile'});
1.200     albertel 6835: 	&lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
                   6836: 			$prefix.'skipped_'.
1.257     albertel 6837: 			$env{'form.scantron_selectfile'});
1.200     albertel 6838:     }
1.175     albertel 6839:     &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157     albertel 6840: }
                   6841: 
1.423     albertel 6842: =pod
                   6843: 
                   6844: =item scantron_get_line
                   6845: 
1.424     albertel 6846:    Returns the correct version of the scanline
                   6847: 
                   6848:  Arguments:
                   6849:     $scanlines - hash ref that looks like the first return value from
                   6850:                  &scantron_getfile()
                   6851:     $scan_data - hash ref that looks like the second return value from
                   6852:                  &scantron_getfile()
                   6853:     $i         - number of the requested line (starts at 0)
                   6854: 
                   6855:  Returns:
                   6856:    A scanline, (either the original or the corrected one if it
                   6857:    exists), or undef if the requested scanline should be
                   6858:    skipped. (Either because it's an skipped scanline, or it's an
                   6859:    unskipped scanline and we are not doing a 'do skipped scanlines'
                   6860:    pass.
                   6861: 
1.423     albertel 6862: =cut
                   6863: 
1.157     albertel 6864: sub scantron_get_line {
1.200     albertel 6865:     my ($scanlines,$scan_data,$i)=@_;
1.376     albertel 6866:     if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
                   6867:     #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157     albertel 6868:     if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
                   6869:     return $scanlines->{'orig'}[$i]; 
                   6870: }
                   6871: 
1.423     albertel 6872: =pod
                   6873: 
                   6874: =item scantron_todo_count
                   6875: 
1.424     albertel 6876:     Counts the number of scanlines that need processing.
                   6877: 
                   6878:  Arguments:
                   6879:     $scanlines - hash ref that looks like the first return value from
                   6880:                  &scantron_getfile()
                   6881:     $scan_data - hash ref that looks like the second return value from
                   6882:                  &scantron_getfile()
                   6883: 
                   6884:  Returns:
                   6885:     $count - number of scanlines to process
                   6886: 
1.423     albertel 6887: =cut
                   6888: 
1.200     albertel 6889: sub get_todo_count {
                   6890:     my ($scanlines,$scan_data)=@_;
                   6891:     my $count=0;
                   6892:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
                   6893: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
                   6894: 	if ($line=~/^[\s\cz]*$/) { next; }
                   6895: 	$count++;
                   6896:     }
                   6897:     return $count;
                   6898: }
                   6899: 
1.423     albertel 6900: =pod
                   6901: 
                   6902: =item scantron_put_line
                   6903: 
1.659     raeburn  6904:     Updates the 'corrected' or 'skipped' versions of the bubblesheet
1.424     albertel 6905:     data file.
                   6906: 
                   6907:  Arguments:
                   6908:     $scanlines - hash ref that looks like the first return value from
                   6909:                  &scantron_getfile()
                   6910:     $scan_data - hash ref that looks like the second return value from
                   6911:                  &scantron_getfile()
                   6912:     $i         - line number to update
                   6913:     $newline   - contents of the updated scanline
                   6914:     $skip      - if true make the line for skipping and update the
                   6915:                  'skipped' file
                   6916: 
1.423     albertel 6917: =cut
                   6918: 
1.157     albertel 6919: sub scantron_put_line {
1.200     albertel 6920:     my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157     albertel 6921:     if ($skip) {
                   6922: 	$scanlines->{'skipped'}[$i]=$newline;
1.376     albertel 6923: 	&start_skipping($scan_data,$i);
1.157     albertel 6924: 	return;
                   6925:     }
                   6926:     $scanlines->{'corrected'}[$i]=$newline;
                   6927: }
                   6928: 
1.423     albertel 6929: =pod
                   6930: 
                   6931: =item scantron_clear_skip
                   6932: 
1.424     albertel 6933:    Remove a line from the 'skipped' file
                   6934: 
                   6935:  Arguments:
                   6936:     $scanlines - hash ref that looks like the first return value from
                   6937:                  &scantron_getfile()
                   6938:     $scan_data - hash ref that looks like the second return value from
                   6939:                  &scantron_getfile()
                   6940:     $i         - line number to update
                   6941: 
1.423     albertel 6942: =cut
                   6943: 
1.376     albertel 6944: sub scantron_clear_skip {
                   6945:     my ($scanlines,$scan_data,$i)=@_;
                   6946:     if (exists($scanlines->{'skipped'}[$i])) {
                   6947: 	undef($scanlines->{'skipped'}[$i]);
                   6948: 	return 1;
                   6949:     }
                   6950:     return 0;
                   6951: }
                   6952: 
1.423     albertel 6953: =pod
                   6954: 
                   6955: =item scantron_filter_not_exam
                   6956: 
1.424     albertel 6957:    Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
                   6958:    filter out resources that are not marked as 'exam' mode
                   6959: 
1.423     albertel 6960: =cut
                   6961: 
1.334     albertel 6962: sub scantron_filter_not_exam {
                   6963:     my ($curres)=@_;
                   6964:     
                   6965:     if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
                   6966: 	# if the user has asked to not have either hidden
                   6967: 	# or 'randomout' controlled resources to be graded
                   6968: 	# don't include them
                   6969: 	if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
                   6970: 	    && $curres->randomout) {
                   6971: 	    return 0;
                   6972: 	}
                   6973: 	return 1;
                   6974:     }
                   6975:     return 0;
                   6976: }
                   6977: 
1.423     albertel 6978: =pod
                   6979: 
                   6980: =item scantron_validate_sequence
                   6981: 
1.424     albertel 6982:     Validates the selected sequence, checking for resource that are
                   6983:     not set to exam mode.
                   6984: 
1.423     albertel 6985: =cut
                   6986: 
1.334     albertel 6987: sub scantron_validate_sequence {
                   6988:     my ($r,$currentphase) = @_;
                   6989: 
                   6990:     my $navmap=Apache::lonnavmaps::navmap->new();
1.582     raeburn  6991:     unless (ref($navmap)) {
                   6992:         $r->print(&navmap_errormsg());
                   6993:         return (1,$currentphase);
                   6994:     }
1.334     albertel 6995:     my (undef,undef,$sequence)=
                   6996: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
                   6997: 
                   6998:     my $map=$navmap->getResourceByUrl($sequence);
                   6999: 
                   7000:     $r->print('<input type="hidden" name="validate_sequence_exam"
                   7001:                                     value="ignore" />');
                   7002:     if ($env{'form.validate_sequence_exam'} ne 'ignore') {
                   7003: 	my @resources=
                   7004: 	    $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
                   7005: 	if (@resources) {
1.675     bisitz   7006: 	    $r->print(
                   7007:                 '<p class="LC_warning">'
                   7008:                .&mt('Some resources in the sequence currently are not set to'
1.684     bisitz   7009:                    .' bubblesheet exam mode. Grading these resources currently may not'
1.675     bisitz   7010:                    .' work correctly.')
                   7011:                .'</p>'
                   7012:             );
1.334     albertel 7013: 	    return (1,$currentphase);
                   7014: 	}
                   7015:     }
                   7016: 
                   7017:     return (0,$currentphase+1);
                   7018: }
                   7019: 
1.423     albertel 7020: 
                   7021: 
1.157     albertel 7022: sub scantron_validate_ID {
                   7023:     my ($r,$currentphase) = @_;
                   7024:     
                   7025:     #get student info
                   7026:     my $classlist=&Apache::loncoursedata::get_classlist();
                   7027:     my %idmap=&username_to_idmap($classlist);
                   7028: 
                   7029:     #get scantron line setup
1.257     albertel 7030:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 7031:     my ($scanlines,$scan_data)=&scantron_getfile();
1.582     raeburn  7032: 
                   7033:     my $nav_error;
1.649     raeburn  7034:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
1.582     raeburn  7035:     if ($nav_error) {
                   7036:         $r->print(&navmap_errormsg());
                   7037:         return(1,$currentphase);
                   7038:     }
1.157     albertel 7039: 
                   7040:     my %found=('ids'=>{},'usernames'=>{});
                   7041:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 7042: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 7043: 	if ($line=~/^[\s\cz]*$/) { next; }
                   7044: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   7045: 						 $scan_data);
                   7046: 	my $id=$$scan_record{'scantron.ID'};
                   7047: 	my $found;
                   7048: 	foreach my $checkid (keys(%idmap)) {
                   7049: 	    if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
                   7050: 	}
                   7051: 	if ($found) {
                   7052: 	    my $username=$idmap{$found};
                   7053: 	    if ($found{'ids'}{$found}) {
                   7054: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   7055: 					 $line,'duplicateID',$found);
1.194     albertel 7056: 		return(1,$currentphase);
1.157     albertel 7057: 	    } elsif ($found{'usernames'}{$username}) {
                   7058: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   7059: 					 $line,'duplicateID',$username);
1.194     albertel 7060: 		return(1,$currentphase);
1.157     albertel 7061: 	    }
1.186     albertel 7062: 	    #FIXME store away line we previously saw the ID on to use above
1.157     albertel 7063: 	    $found{'ids'}{$found}++;
                   7064: 	    $found{'usernames'}{$username}++;
                   7065: 	} else {
                   7066: 	    if ($id =~ /^\s*$/) {
1.158     albertel 7067: 		my $username=&scan_data($scan_data,"$i.user");
1.157     albertel 7068: 		if (defined($username) && $found{'usernames'}{$username}) {
                   7069: 		    &scantron_get_correction($r,$i,$scan_record,
                   7070: 					     \%scantron_config,
                   7071: 					     $line,'duplicateID',$username);
1.194     albertel 7072: 		    return(1,$currentphase);
1.157     albertel 7073: 		} elsif (!defined($username)) {
                   7074: 		    &scantron_get_correction($r,$i,$scan_record,
                   7075: 					     \%scantron_config,
                   7076: 					     $line,'incorrectID');
1.194     albertel 7077: 		    return(1,$currentphase);
1.157     albertel 7078: 		}
                   7079: 		$found{'usernames'}{$username}++;
                   7080: 	    } else {
                   7081: 		&scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   7082: 					 $line,'incorrectID');
1.194     albertel 7083: 		return(1,$currentphase);
1.157     albertel 7084: 	    }
                   7085: 	}
                   7086:     }
                   7087: 
                   7088:     return (0,$currentphase+1);
                   7089: }
                   7090: 
1.423     albertel 7091: 
1.157     albertel 7092: sub scantron_get_correction {
                   7093:     my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
1.454     banghart 7094: #FIXME in the case of a duplicated ID the previous line, probably need
1.157     albertel 7095: #to show both the current line and the previous one and allow skipping
                   7096: #the previous one or the current one
                   7097: 
1.333     albertel 7098:     if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.658     bisitz   7099:         $r->print(
                   7100:             '<p class="LC_warning">'
                   7101:            .&mt('An error was detected ([_1]) for PaperID [_2]',
                   7102:                 "<b>$error</b>",
                   7103:                 '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
                   7104:            ."</p> \n");
1.157     albertel 7105:     } else {
1.658     bisitz   7106:         $r->print(
                   7107:             '<p class="LC_warning">'
                   7108:            .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
                   7109:                 "<b>$error</b>", $i, "<pre>$line</pre>")
                   7110:            ."</p> \n");
                   7111:     }
                   7112:     my $message =
                   7113:         '<p>'
                   7114:        .&mt('The ID on the form is [_1]',
                   7115:             "<tt>$$scan_record{'scantron.ID'}</tt>")
                   7116:        .'<br />'
1.665     raeburn  7117:        .&mt('The name on the paper is [_1], [_2]',
1.658     bisitz   7118:             $$scan_record{'scantron.LastName'},
                   7119:             $$scan_record{'scantron.FirstName'})
                   7120:        .'</p>';
1.242     albertel 7121: 
1.157     albertel 7122:     $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
                   7123:     $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503     raeburn  7124:                            # Array populated for doublebubble or
                   7125:     my @lines_to_correct;  # missingbubble errors to build javascript
                   7126:                            # to validate radio button checking   
                   7127: 
1.157     albertel 7128:     if ($error =~ /ID$/) {
1.186     albertel 7129: 	if ($error eq 'incorrectID') {
1.658     bisitz   7130:             $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
1.492     albertel 7131: 		      "</p>\n");
1.157     albertel 7132: 	} elsif ($error eq 'duplicateID') {
1.658     bisitz   7133:             $r->print('<p class="LC_warning">'.&mt("The encoded ID has also been used by a previous paper [_1]",$arg)."</p>\n");
1.157     albertel 7134: 	}
1.242     albertel 7135: 	$r->print($message);
1.492     albertel 7136: 	$r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157     albertel 7137: 	$r->print("\n<ul><li> ");
                   7138: 	#FIXME it would be nice if this sent back the user ID and
                   7139: 	#could do partial userID matches
                   7140: 	$r->print(&Apache::loncommon::selectstudent_link('scantronupload',
                   7141: 				       'scantron_username','scantron_domain'));
                   7142: 	$r->print(": <input type='text' name='scantron_username' value='' />");
1.685     bisitz   7143: 	$r->print("\n:\n".
1.257     albertel 7144: 		 &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157     albertel 7145: 
                   7146: 	$r->print('</li>');
1.186     albertel 7147:     } elsif ($error =~ /CODE$/) {
                   7148: 	if ($error eq 'incorrectCODE') {
1.658     bisitz   7149: 	    $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186     albertel 7150: 	} elsif ($error eq 'duplicateCODE') {
1.658     bisitz   7151: 	    $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");
1.186     albertel 7152: 	}
1.658     bisitz   7153: 	$r->print("<p>".&mt('The CODE on the form is [_1]',
                   7154: 			    "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
                   7155:                  ."</p>\n");
1.242     albertel 7156: 	$r->print($message);
1.658     bisitz   7157: 	$r->print("<p>".&mt("How should I handle this?")."</p>\n");
1.187     albertel 7158: 	$r->print("\n<br /> ");
1.194     albertel 7159: 	my $i=0;
1.273     albertel 7160: 	if ($error eq 'incorrectCODE' 
                   7161: 	    && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194     albertel 7162: 	    my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278     albertel 7163: 	    if ($closest > 0) {
                   7164: 		foreach my $testcode (@{$closest}) {
                   7165: 		    my $checked='';
1.569     bisitz   7166: 		    if (!$i) { $checked=' checked="checked"'; }
1.492     albertel 7167: 		    $r->print("
                   7168:    <label>
1.569     bisitz   7169:        <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
1.492     albertel 7170:        ".&mt("Use the similar CODE [_1] instead.",
                   7171: 	    "<b><tt>".$testcode."</tt></b>")."
                   7172:     </label>
                   7173:     <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278     albertel 7174: 		    $r->print("\n<br />");
                   7175: 		    $i++;
                   7176: 		}
1.194     albertel 7177: 	    }
                   7178: 	}
1.273     albertel 7179: 	if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.569     bisitz   7180: 	    my $checked; if (!$i) { $checked=' checked="checked"'; }
1.492     albertel 7181: 	    $r->print("
                   7182:     <label>
1.569     bisitz   7183:         <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
1.659     raeburn  7184:        ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
1.492     albertel 7185: 	     "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
                   7186:     </label>");
1.273     albertel 7187: 	    $r->print("\n<br />");
                   7188: 	}
1.194     albertel 7189: 
1.597     wenzelju 7190: 	$r->print(&Apache::lonhtmlcommon::scripttag(<<ENDSCRIPT));
1.188     albertel 7191: function change_radio(field) {
1.190     albertel 7192:     var slct=document.scantronupload.scantron_CODE_resolution;
1.188     albertel 7193:     var i;
                   7194:     for (i=0;i<slct.length;i++) {
                   7195:         if (slct[i].value==field) { slct[i].checked=true; }
                   7196:     }
                   7197: }
                   7198: ENDSCRIPT
1.187     albertel 7199: 	my $href="/adm/pickcode?".
1.359     www      7200: 	   "form=".&escape("scantronupload").
                   7201: 	   "&scantron_format=".&escape($env{'form.scantron_format'}).
                   7202: 	   "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
                   7203: 	   "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
                   7204: 	   "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332     albertel 7205: 	if ($env{'form.scantron_CODElist'} =~ /\S/) { 
1.492     albertel 7206: 	    $r->print("
                   7207:     <label>
                   7208:        <input type='radio' name='scantron_CODE_resolution' value='use_found' />
                   7209:        ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
                   7210: 	     "<a target='_blank' href='$href'>","</a>")."
                   7211:     </label> 
1.558     bisitz   7212:     ".&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\')" />'));
1.332     albertel 7213: 	    $r->print("\n<br />");
                   7214: 	}
1.492     albertel 7215: 	$r->print("
                   7216:     <label>
                   7217:        <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
                   7218:        ".&mt("Use [_1] as the CODE.",
                   7219: 	     "</label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" />"));
1.187     albertel 7220: 	$r->print("\n<br /><br />");
1.157     albertel 7221:     } elsif ($error eq 'doublebubble') {
1.658     bisitz   7222: 	$r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497     foxr     7223: 
                   7224: 	# The form field scantron_questions is acutally a list of line numbers.
                   7225: 	# represented by this form so:
                   7226: 
                   7227: 	my $line_list = &questions_to_line_list($arg);
                   7228: 
1.157     albertel 7229: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
1.497     foxr     7230: 		  $line_list.'" />');
1.242     albertel 7231: 	$r->print($message);
1.492     albertel 7232: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157     albertel 7233: 	foreach my $question (@{$arg}) {
1.503     raeburn  7234: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
                   7235:                                                    $scan_record, $error);
1.524     raeburn  7236:             push(@lines_to_correct,@linenums);
1.157     albertel 7237: 	}
1.503     raeburn  7238:         $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157     albertel 7239:     } elsif ($error eq 'missingbubble') {
1.658     bisitz   7240: 	$r->print('<p class="LC_warning">'.&mt("There have been [_1]no[_2] bubbles scanned for some question(s)",'<b>','</b>')."</p>\n");
1.242     albertel 7241: 	$r->print($message);
1.492     albertel 7242: 	$r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503     raeburn  7243: 	$r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497     foxr     7244: 
1.503     raeburn  7245: 	# The form field scantron_questions is actually a list of line numbers not
1.497     foxr     7246: 	# a list of question numbers. Therefore:
                   7247: 	#
                   7248: 	
                   7249: 	my $line_list = &questions_to_line_list($arg);
                   7250: 
1.157     albertel 7251: 	$r->print('<input type="hidden" name="scantron_questions" value="'.
1.497     foxr     7252: 		  $line_list.'" />');
1.157     albertel 7253: 	foreach my $question (@{$arg}) {
1.503     raeburn  7254: 	    my @linenums = &prompt_for_corrections($r,$question,$scan_config,
                   7255:                                                    $scan_record, $error);
1.524     raeburn  7256:             push(@lines_to_correct,@linenums);
1.157     albertel 7257: 	}
1.503     raeburn  7258:         $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157     albertel 7259:     } else {
                   7260: 	$r->print("\n<ul>");
                   7261:     }
                   7262:     $r->print("\n</li></ul>");
1.497     foxr     7263: }
                   7264: 
1.503     raeburn  7265: sub verify_bubbles_checked {
                   7266:     my (@ansnums) = @_;
                   7267:     my $ansnumstr = join('","',@ansnums);
                   7268:     my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
1.597     wenzelju 7269:     my $output = &Apache::lonhtmlcommon::scripttag((<<ENDSCRIPT));
1.503     raeburn  7270: function verify_bubble_radio(form) {
                   7271:     var ansnumArray = new Array ("$ansnumstr");
                   7272:     var need_bubble_count = 0;
                   7273:     for (var i=0; i<ansnumArray.length; i++) {
                   7274:         if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
                   7275:             var bubble_picked = 0; 
                   7276:             for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
                   7277:                 if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
                   7278:                     bubble_picked = 1;
                   7279:                 }
                   7280:             }
                   7281:             if (bubble_picked == 0) {
                   7282:                 need_bubble_count ++;
                   7283:             }
                   7284:         }
                   7285:     }
                   7286:     if (need_bubble_count) {
                   7287:         alert("$warning");
                   7288:         return;
                   7289:     }
                   7290:     form.submit(); 
                   7291: }
                   7292: ENDSCRIPT
                   7293:     return $output;
                   7294: }
                   7295: 
1.497     foxr     7296: =pod
                   7297: 
                   7298: =item  questions_to_line_list
1.157     albertel 7299: 
1.497     foxr     7300: Converts a list of questions into a string of comma separated
                   7301: line numbers in the answer sheet used by the questions.  This is
                   7302: used to fill in the scantron_questions form field.
                   7303: 
                   7304:   Arguments:
                   7305:      questions    - Reference to an array of questions.
                   7306: 
                   7307: =cut
                   7308: 
                   7309: 
                   7310: sub questions_to_line_list {
                   7311:     my ($questions) = @_;
                   7312:     my @lines;
                   7313: 
1.503     raeburn  7314:     foreach my $item (@{$questions}) {
                   7315:         my $question = $item;
                   7316:         my ($first,$count,$last);
                   7317:         if ($item =~ /^(\d+)\.(\d+)$/) {
                   7318:             $question = $1;
                   7319:             my $subquestion = $2;
                   7320:             $first = $first_bubble_line{$question-1} + 1;
                   7321:             my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
                   7322:             my $subcount = 1;
                   7323:             while ($subcount<$subquestion) {
                   7324:                 $first += $subans[$subcount-1];
                   7325:                 $subcount ++;
                   7326:             }
                   7327:             $count = $subans[$subquestion-1];
                   7328:         } else {
                   7329: 	    $first   = $first_bubble_line{$question-1} + 1;
                   7330: 	    $count   = $bubble_lines_per_response{$question-1};
                   7331:         }
1.506     raeburn  7332:         $last = $first+$count-1;
1.503     raeburn  7333:         push(@lines, ($first..$last));
1.497     foxr     7334:     }
                   7335:     return join(',', @lines);
                   7336: }
                   7337: 
                   7338: =pod 
                   7339: 
                   7340: =item prompt_for_corrections
                   7341: 
                   7342: Prompts for a potentially multiline correction to the
                   7343: user's bubbling (factors out common code from scantron_get_correction
                   7344: for multi and missing bubble cases).
                   7345: 
                   7346:  Arguments:
                   7347:    $r           - Apache request object.
                   7348:    $question    - The question number to prompt for.
                   7349:    $scan_config - The scantron file configuration hash.
                   7350:    $scan_record - Reference to the hash that has the the parsed scanlines.
1.503     raeburn  7351:    $error       - Type of error
1.497     foxr     7352: 
                   7353:  Implicit inputs:
                   7354:    %bubble_lines_per_response   - Starting line numbers for each question.
                   7355:                                   Numbered from 0 (but question numbers are from
                   7356:                                   1.
                   7357:    %first_bubble_line           - Starting bubble line for each question.
1.509     raeburn  7358:    %subdivided_bubble_lines     - optionresponse, matchresponse and rankresponse 
                   7359:                                   type problems render as separate sub-questions, 
1.503     raeburn  7360:                                   in exam mode. This hash contains a 
                   7361:                                   comma-separated list of the lines per 
                   7362:                                   sub-question.
1.510     raeburn  7363:    %responsetype_per_response   - essayresponse, formularesponse,
                   7364:                                   stringresponse, imageresponse, reactionresponse,
                   7365:                                   and organicresponse type problem parts can have
1.503     raeburn  7366:                                   multiple lines per response if the weight
                   7367:                                   assigned exceeds 10.  In this case, only
                   7368:                                   one bubble per line is permitted, but more 
                   7369:                                   than one line might contain bubbles, e.g.
                   7370:                                   bubbling of: line 1 - J, line 2 - J, 
                   7371:                                   line 3 - B would assign 22 points.  
1.497     foxr     7372: 
                   7373: =cut
                   7374: 
                   7375: sub prompt_for_corrections {
1.503     raeburn  7376:     my ($r, $question, $scan_config, $scan_record, $error) = @_;
                   7377:     my ($current_line,$lines);
                   7378:     my @linenums;
                   7379:     my $questionnum = $question;
                   7380:     if ($question =~ /^(\d+)\.(\d+)$/) {
                   7381:         $question = $1;
                   7382:         $current_line = $first_bubble_line{$question-1} + 1 ;
                   7383:         my $subquestion = $2;
                   7384:         my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
                   7385:         my $subcount = 1;
                   7386:         while ($subcount<$subquestion) {
                   7387:             $current_line += $subans[$subcount-1];
                   7388:             $subcount ++;
                   7389:         }
                   7390:         $lines = $subans[$subquestion-1];
                   7391:     } else {
                   7392:         $current_line = $first_bubble_line{$question-1} + 1 ;
                   7393:         $lines        = $bubble_lines_per_response{$question-1};
                   7394:     }
1.497     foxr     7395:     if ($lines > 1) {
1.503     raeburn  7396:         $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
                   7397:         if (($responsetype_per_response{$question-1} eq 'essayresponse') ||
                   7398:             ($responsetype_per_response{$question-1} eq 'formularesponse') ||
1.510     raeburn  7399:             ($responsetype_per_response{$question-1} eq 'stringresponse') ||
                   7400:             ($responsetype_per_response{$question-1} eq 'imageresponse') ||
                   7401:             ($responsetype_per_response{$question-1} eq 'reactionresponse') ||
                   7402:             ($responsetype_per_response{$question-1} eq 'organicresponse')) {
1.684     bisitz   7403:             $r->print(
                   7404:                 &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)
                   7405:                .'<br /><br />'
                   7406:                .&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.')
                   7407:                .'<br />'
                   7408:                .&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.')
                   7409:                .'<br />'
                   7410:                .&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.")
                   7411:                .'<br /><br />'
                   7412:             );
1.503     raeburn  7413:         } else {
                   7414:             $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
                   7415:         }
1.497     foxr     7416:     }
                   7417:     for (my $i =0; $i < $lines; $i++) {
1.503     raeburn  7418:         my $selected = $$scan_record{"scantron.$current_line.answer"};
                   7419: 	&scantron_bubble_selector($r,$scan_config,$current_line, 
                   7420: 	        		  $questionnum,$error,split('', $selected));
1.524     raeburn  7421:         push(@linenums,$current_line);
1.497     foxr     7422: 	$current_line++;
                   7423:     }
                   7424:     if ($lines > 1) {
                   7425: 	$r->print("<hr /><br />");
                   7426:     }
1.503     raeburn  7427:     return @linenums;
1.157     albertel 7428: }
1.423     albertel 7429: 
                   7430: =pod
                   7431: 
                   7432: =item scantron_bubble_selector
                   7433:   
                   7434:    Generates the html radiobuttons to correct a single bubble line
1.424     albertel 7435:    possibly showing the existing the selected bubbles if known
1.423     albertel 7436: 
                   7437:  Arguments:
                   7438:     $r           - Apache request object
                   7439:     $scan_config - hash from &get_scantron_config()
1.497     foxr     7440:     $line        - Number of the line being displayed.
1.503     raeburn  7441:     $questionnum - Question number (may include subquestion)
                   7442:     $error       - Type of error.
1.497     foxr     7443:     @selected    - Array of bubbles picked on this line.
1.423     albertel 7444: 
                   7445: =cut
                   7446: 
1.157     albertel 7447: sub scantron_bubble_selector {
1.503     raeburn  7448:     my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157     albertel 7449:     my $max=$$scan_config{'Qlength'};
1.274     albertel 7450: 
                   7451:     my $scmode=$$scan_config{'Qon'};
1.649     raeburn  7452:     if ($scmode eq 'number' || $scmode eq 'letter') { 
                   7453:         if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
                   7454:             ($$scan_config{'BubblesPerRow'} > 0)) {
                   7455:             $max=$$scan_config{'BubblesPerRow'};
                   7456:             if (($scmode eq 'number') && ($max > 10)) {
                   7457:                 $max = 10;
                   7458:             } elsif (($scmode eq 'letter') && $max > 26) {
                   7459:                 $max = 26;
                   7460:             }
                   7461:         } else {
                   7462:             $max = 10;
                   7463:         }
                   7464:     }
1.274     albertel 7465: 
1.157     albertel 7466:     my @alphabet=('A'..'Z');
1.503     raeburn  7467:     $r->print(&Apache::loncommon::start_data_table().
                   7468:               &Apache::loncommon::start_data_table_row());
                   7469:     $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497     foxr     7470:     for (my $i=0;$i<$max+1;$i++) {
                   7471: 	$r->print("\n".'<td align="center">');
                   7472: 	if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
                   7473: 	else { $r->print('&nbsp;'); }
                   7474: 	$r->print('</td>');
                   7475:     }
1.503     raeburn  7476:     $r->print(&Apache::loncommon::end_data_table_row().
                   7477:               &Apache::loncommon::start_data_table_row());
1.497     foxr     7478:     for (my $i=0;$i<$max;$i++) {
                   7479: 	$r->print("\n".
                   7480: 		  '<td><label><input type="radio" name="scantron_correct_Q_'.
                   7481: 		  $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
                   7482:     }
1.503     raeburn  7483:     my $nobub_checked = ' ';
                   7484:     if ($error eq 'missingbubble') {
                   7485:         $nobub_checked = ' checked = "checked" ';
                   7486:     }
                   7487:     $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
                   7488: 	      $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
                   7489:               '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
                   7490:               $line.'" value="'.$questionnum.'" /></td>');
                   7491:     $r->print(&Apache::loncommon::end_data_table_row().
                   7492:               &Apache::loncommon::end_data_table());
1.157     albertel 7493: }
                   7494: 
1.423     albertel 7495: =pod
                   7496: 
                   7497: =item num_matches
                   7498: 
1.424     albertel 7499:    Counts the number of characters that are the same between the two arguments.
                   7500: 
                   7501:  Arguments:
                   7502:    $orig - CODE from the scanline
                   7503:    $code - CODE to match against
                   7504: 
                   7505:  Returns:
                   7506:    $count - integer count of the number of same characters between the
                   7507:             two arguments
                   7508: 
1.423     albertel 7509: =cut
                   7510: 
1.194     albertel 7511: sub num_matches {
                   7512:     my ($orig,$code) = @_;
                   7513:     my @code=split(//,$code);
                   7514:     my @orig=split(//,$orig);
                   7515:     my $same=0;
                   7516:     for (my $i=0;$i<scalar(@code);$i++) {
                   7517: 	if ($code[$i] eq $orig[$i]) { $same++; }
                   7518:     }
                   7519:     return $same;
                   7520: }
                   7521: 
1.423     albertel 7522: =pod
                   7523: 
                   7524: =item scantron_get_closely_matching_CODEs
                   7525: 
1.424     albertel 7526:    Cycles through all CODEs and finds the set that has the greatest
                   7527:    number of same characters as the provided CODE
                   7528: 
                   7529:  Arguments:
                   7530:    $allcodes - hash ref returned by &get_codes()
                   7531:    $CODE     - CODE from the current scanline
                   7532: 
                   7533:  Returns:
                   7534:    2 element list
                   7535:     - first elements is number of how closely matching the best fit is 
                   7536:       (5 means best set has 5 matching characters)
                   7537:     - second element is an arrary ref containing the set of valid CODEs
                   7538:       that best fit the passed in CODE
                   7539: 
1.423     albertel 7540: =cut
                   7541: 
1.194     albertel 7542: sub scantron_get_closely_matching_CODEs {
                   7543:     my ($allcodes,$CODE)=@_;
                   7544:     my @CODEs;
                   7545:     foreach my $testcode (sort(keys(%{$allcodes}))) {
                   7546: 	push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
                   7547:     }
                   7548: 
                   7549:     return ($#CODEs,$CODEs[-1]);
                   7550: }
                   7551: 
1.423     albertel 7552: =pod
                   7553: 
                   7554: =item get_codes
                   7555: 
1.424     albertel 7556:    Builds a hash which has keys of all of the valid CODEs from the selected
                   7557:    set of remembered CODEs.
                   7558: 
                   7559:  Arguments:
                   7560:   $old_name - name of the set of remembered CODEs
                   7561:   $cdom     - domain of the course
                   7562:   $cnum     - internal course name
                   7563: 
                   7564:  Returns:
                   7565:   %allcodes - keys are the valid CODEs, values are all 1
                   7566: 
1.423     albertel 7567: =cut
                   7568: 
1.194     albertel 7569: sub get_codes {
1.280     foxr     7570:     my ($old_name, $cdom, $cnum) = @_;
                   7571:     if (!$old_name) {
                   7572: 	$old_name=$env{'form.scantron_CODElist'};
                   7573:     }
                   7574:     if (!$cdom) {
                   7575: 	$cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
                   7576:     }
                   7577:     if (!$cnum) {
                   7578: 	$cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
                   7579:     }
1.278     albertel 7580:     my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
                   7581: 				    $cdom,$cnum);
                   7582:     my %allcodes;
                   7583:     if ($result{"type\0$old_name"} eq 'number') {
                   7584: 	%allcodes=map {($_,1)} split(',',$result{$old_name});
                   7585:     } else {
                   7586: 	%allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
                   7587:     }
1.194     albertel 7588:     return %allcodes;
                   7589: }
                   7590: 
1.423     albertel 7591: =pod
                   7592: 
                   7593: =item scantron_validate_CODE
                   7594: 
1.424     albertel 7595:    Validates all scanlines in the selected file to not have any
                   7596:    invalid or underspecified CODEs and that none of the codes are
                   7597:    duplicated if this was requested.
                   7598: 
1.423     albertel 7599: =cut
                   7600: 
1.157     albertel 7601: sub scantron_validate_CODE {
                   7602:     my ($r,$currentphase) = @_;
1.257     albertel 7603:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186     albertel 7604:     if ($scantron_config{'CODElocation'} &&
                   7605: 	$scantron_config{'CODEstart'} &&
                   7606: 	$scantron_config{'CODElength'}) {
1.257     albertel 7607: 	if (!defined($env{'form.scantron_CODElist'})) {
1.186     albertel 7608: 	    &FIXME_blow_up()
                   7609: 	}
                   7610:     } else {
                   7611: 	return (0,$currentphase+1);
                   7612:     }
                   7613:     
                   7614:     my %usedCODEs;
                   7615: 
1.194     albertel 7616:     my %allcodes=&get_codes();
1.186     albertel 7617: 
1.582     raeburn  7618:     my $nav_error;
1.649     raeburn  7619:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
1.582     raeburn  7620:     if ($nav_error) {
                   7621:         $r->print(&navmap_errormsg());
                   7622:         return(1,$currentphase);
                   7623:     }
1.447     foxr     7624: 
1.186     albertel 7625:     my ($scanlines,$scan_data)=&scantron_getfile();
                   7626:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 7627: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186     albertel 7628: 	if ($line=~/^[\s\cz]*$/) { next; }
                   7629: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   7630: 						 $scan_data);
                   7631: 	my $CODE=$$scan_record{'scantron.CODE'};
                   7632: 	my $error=0;
1.224     albertel 7633: 	if (!&Apache::lonnet::validCODE($CODE)) {
                   7634: 	    &scantron_get_correction($r,$i,$scan_record,
                   7635: 				     \%scantron_config,
                   7636: 				     $line,'incorrectCODE',\%allcodes);
                   7637: 	    return(1,$currentphase);
                   7638: 	}
1.221     albertel 7639: 	if (%allcodes && !exists($allcodes{$CODE}) 
                   7640: 	    && !$$scan_record{'scantron.useCODE'}) {
1.186     albertel 7641: 	    &scantron_get_correction($r,$i,$scan_record,
                   7642: 				     \%scantron_config,
1.194     albertel 7643: 				     $line,'incorrectCODE',\%allcodes);
                   7644: 	    return(1,$currentphase);
1.186     albertel 7645: 	}
1.214     albertel 7646: 	if (exists($usedCODEs{$CODE}) 
1.257     albertel 7647: 	    && $env{'form.scantron_CODEunique'} eq 'yes'
1.192     albertel 7648: 	    && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186     albertel 7649: 	    &scantron_get_correction($r,$i,$scan_record,
                   7650: 				     \%scantron_config,
1.194     albertel 7651: 				     $line,'duplicateCODE',$usedCODEs{$CODE});
                   7652: 	    return(1,$currentphase);
1.186     albertel 7653: 	}
1.524     raeburn  7654: 	push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186     albertel 7655:     }
1.157     albertel 7656:     return (0,$currentphase+1);
                   7657: }
                   7658: 
1.423     albertel 7659: =pod
                   7660: 
                   7661: =item scantron_validate_doublebubble
                   7662: 
1.424     albertel 7663:    Validates all scanlines in the selected file to not have any
                   7664:    bubble lines with multiple bubbles marked.
                   7665: 
1.423     albertel 7666: =cut
                   7667: 
1.157     albertel 7668: sub scantron_validate_doublebubble {
                   7669:     my ($r,$currentphase) = @_;
                   7670:     #get student info
                   7671:     my $classlist=&Apache::loncoursedata::get_classlist();
                   7672:     my %idmap=&username_to_idmap($classlist);
                   7673: 
                   7674:     #get scantron line setup
1.257     albertel 7675:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 7676:     my ($scanlines,$scan_data)=&scantron_getfile();
1.583     raeburn  7677:     my $nav_error;
1.649     raeburn  7678:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
1.583     raeburn  7679:     if ($nav_error) {
                   7680:         $r->print(&navmap_errormsg());
                   7681:         return(1,$currentphase);
                   7682:     }
1.447     foxr     7683: 
1.157     albertel 7684:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 7685: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 7686: 	if ($line=~/^[\s\cz]*$/) { next; }
                   7687: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   7688: 						 $scan_data);
                   7689: 	if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
                   7690: 	&scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
                   7691: 				 'doublebubble',
                   7692: 				 $$scan_record{'scantron.doubleerror'});
                   7693:     	return (1,$currentphase);
                   7694:     }
                   7695:     return (0,$currentphase+1);
                   7696: }
                   7697: 
1.423     albertel 7698: 
1.503     raeburn  7699: sub scantron_get_maxbubble {
1.649     raeburn  7700:     my ($nav_error,$scantron_config) = @_;
1.257     albertel 7701:     if (defined($env{'form.scantron_maxbubble'}) &&
                   7702: 	$env{'form.scantron_maxbubble'}) {
1.447     foxr     7703: 	&restore_bubble_lines();
1.257     albertel 7704: 	return $env{'form.scantron_maxbubble'};
1.191     albertel 7705:     }
1.330     albertel 7706: 
1.447     foxr     7707:     my (undef, undef, $sequence) =
1.257     albertel 7708: 	&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330     albertel 7709: 
1.447     foxr     7710:     my $navmap=Apache::lonnavmaps::navmap->new();
1.582     raeburn  7711:     unless (ref($navmap)) {
                   7712:         if (ref($nav_error)) {
                   7713:             $$nav_error = 1;
                   7714:         }
1.591     raeburn  7715:         return;
1.582     raeburn  7716:     }
1.191     albertel 7717:     my $map=$navmap->getResourceByUrl($sequence);
                   7718:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.649     raeburn  7719:     my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
1.330     albertel 7720: 
                   7721:     &Apache::lonxml::clear_problem_counter();
                   7722: 
1.557     raeburn  7723:     my $uname       = $env{'user.name'};
                   7724:     my $udom        = $env{'user.domain'};
1.435     foxr     7725:     my $cid         = $env{'request.course.id'};
                   7726:     my $total_lines = 0;
                   7727:     %bubble_lines_per_response = ();
1.447     foxr     7728:     %first_bubble_line         = ();
1.503     raeburn  7729:     %subdivided_bubble_lines   = ();
                   7730:     %responsetype_per_response = ();
1.554     raeburn  7731: 
1.447     foxr     7732:     my $response_number = 0;
                   7733:     my $bubble_line     = 0;
1.191     albertel 7734:     foreach my $resource (@resources) {
1.672     raeburn  7735:         my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
                   7736:                                                           $udom,undef,$bubbles_per_row);
1.542     raeburn  7737:         if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
                   7738: 	    foreach my $part_id (@{$parts}) {
                   7739:                 my $lines;
                   7740: 
                   7741: 	        # TODO - make this a persistent hash not an array.
                   7742: 
                   7743:                 # optionresponse, matchresponse and rankresponse type items 
                   7744:                 # render as separate sub-questions in exam mode.
                   7745:                 if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
                   7746:                     ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
                   7747:                     ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
                   7748:                     my ($numbub,$numshown);
                   7749:                     if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
                   7750:                         if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
                   7751:                             $numbub = scalar(@{$analysis->{$part_id.'.options'}});
                   7752:                         }
                   7753:                     } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
                   7754:                         if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
                   7755:                             $numbub = scalar(@{$analysis->{$part_id.'.items'}});
                   7756:                         }
                   7757:                     } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
                   7758:                         if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
                   7759:                             $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
                   7760:                         }
                   7761:                     }
                   7762:                     if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
                   7763:                         $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
                   7764:                     }
1.649     raeburn  7765:                     my $bubbles_per_row =
                   7766:                         &bubblesheet_bubbles_per_row($scantron_config);
                   7767:                     my $inner_bubble_lines = int($numbub/$bubbles_per_row);
                   7768:                     if (($numbub % $bubbles_per_row) != 0) {
1.542     raeburn  7769:                         $inner_bubble_lines++;
                   7770:                     }
                   7771:                     for (my $i=0; $i<$numshown; $i++) {
                   7772:                         $subdivided_bubble_lines{$response_number} .= 
                   7773:                             $inner_bubble_lines.',';
                   7774:                     }
                   7775:                     $subdivided_bubble_lines{$response_number} =~ s/,$//;
                   7776:                     $lines = $numshown * $inner_bubble_lines;
                   7777:                 } else {
                   7778:                     $lines = $analysis->{"$part_id.bubble_lines"};
1.649     raeburn  7779:                 }
1.542     raeburn  7780: 
                   7781:                 $first_bubble_line{$response_number} = $bubble_line;
                   7782: 	        $bubble_lines_per_response{$response_number} = $lines;
                   7783:                 $responsetype_per_response{$response_number} = 
                   7784:                     $analysis->{$part_id.'.type'};
                   7785: 	        $response_number++;
                   7786: 
                   7787: 	        $bubble_line +=  $lines;
                   7788: 	        $total_lines +=  $lines;
                   7789: 	    }
                   7790:         }
                   7791:     }
1.552     raeburn  7792:     &Apache::lonnet::delenv('scantron.');
1.542     raeburn  7793: 
                   7794:     &save_bubble_lines();
                   7795:     $env{'form.scantron_maxbubble'} =
                   7796: 	$total_lines;
                   7797:     return $env{'form.scantron_maxbubble'};
                   7798: }
1.523     raeburn  7799: 
1.649     raeburn  7800: sub bubblesheet_bubbles_per_row {
                   7801:     my ($scantron_config) = @_;
                   7802:     my $bubbles_per_row;
                   7803:     if (ref($scantron_config) eq 'HASH') {
                   7804:         $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
                   7805:     }
                   7806:     if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
                   7807:         $bubbles_per_row = 10;
                   7808:     }
                   7809:     return $bubbles_per_row;
                   7810: }
                   7811: 
1.157     albertel 7812: sub scantron_validate_missingbubbles {
                   7813:     my ($r,$currentphase) = @_;
                   7814:     #get student info
                   7815:     my $classlist=&Apache::loncoursedata::get_classlist();
                   7816:     my %idmap=&username_to_idmap($classlist);
                   7817: 
                   7818:     #get scantron line setup
1.257     albertel 7819:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157     albertel 7820:     my ($scanlines,$scan_data)=&scantron_getfile();
1.582     raeburn  7821:     my $nav_error;
1.649     raeburn  7822:     my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582     raeburn  7823:     if ($nav_error) {
                   7824:         return(1,$currentphase);
                   7825:     }
1.157     albertel 7826:     if (!$max_bubble) { $max_bubble=2**31; }
                   7827:     for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200     albertel 7828: 	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 7829: 	if ($line=~/^[\s\cz]*$/) { next; }
                   7830: 	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   7831: 						 $scan_data);
                   7832: 	if (!defined($$scan_record{'scantron.missingerror'})) { next; }
                   7833: 	my @to_correct;
1.470     foxr     7834: 	
                   7835: 	# Probably here's where the error is...
                   7836: 
1.157     albertel 7837: 	foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505     raeburn  7838:             my $lastbubble;
                   7839:             if ($missing =~ /^(\d+)\.(\d+)$/) {
                   7840:                my $question = $1;
                   7841:                my $subquestion = $2;
                   7842:                if (!defined($first_bubble_line{$question -1})) { next; }
                   7843:                my $first = $first_bubble_line{$question-1};
                   7844:                my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
                   7845:                my $subcount = 1;
                   7846:                while ($subcount<$subquestion) {
                   7847:                    $first += $subans[$subcount-1];
                   7848:                    $subcount ++;
                   7849:                }
                   7850:                my $count = $subans[$subquestion-1];
                   7851:                $lastbubble = $first + $count;
                   7852:             } else {
                   7853:                 if (!defined($first_bubble_line{$missing - 1})) { next; }
                   7854:                 $lastbubble = $first_bubble_line{$missing - 1} + $bubble_lines_per_response{$missing - 1};
                   7855:             }
                   7856:             if ($lastbubble > $max_bubble) { next; }
1.157     albertel 7857: 	    push(@to_correct,$missing);
                   7858: 	}
                   7859: 	if (@to_correct) {
                   7860: 	    &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
                   7861: 				     $line,'missingbubble',\@to_correct);
                   7862: 	    return (1,$currentphase);
                   7863: 	}
                   7864: 
                   7865:     }
                   7866:     return (0,$currentphase+1);
                   7867: }
                   7868: 
1.663     raeburn  7869: sub hand_bubble_option {
                   7870:     my (undef, undef, $sequence) =
                   7871:         &Apache::lonnet::decode_symb($env{'form.selectpage'});
                   7872:     return if ($sequence eq '');
                   7873:     my $navmap = Apache::lonnavmaps::navmap->new();
                   7874:     unless (ref($navmap)) {
                   7875:         return;
                   7876:     }
                   7877:     my $needs_hand_bubbles;
                   7878:     my $map=$navmap->getResourceByUrl($sequence);
                   7879:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
                   7880:     foreach my $res (@resources) {
                   7881:         if (ref($res)) {
                   7882:             if ($res->is_problem()) {
                   7883:                 my $partlist = $res->parts();
                   7884:                 foreach my $part (@{ $partlist }) {
                   7885:                     my @types = $res->responseType($part);
                   7886:                     if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
                   7887:                         $needs_hand_bubbles = 1;
                   7888:                         last;
                   7889:                     }
                   7890:                 }
                   7891:             }
                   7892:         }
                   7893:     }
                   7894:     if ($needs_hand_bubbles) {
                   7895:         my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
                   7896:         my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
                   7897:         return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
                   7898:                &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 />').
                   7899:                '<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;'.
                   7900:                '<label><input type="radio" name="scantron_lastbubblepoints" value="0"/>0 points</label></p>';
                   7901:     }
                   7902:     return;
                   7903: }
1.423     albertel 7904: 
1.82      albertel 7905: sub scantron_process_students {
1.608     www      7906:     my ($r,$symb) = @_;
1.513     foxr     7907: 
1.257     albertel 7908:     my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.513     foxr     7909:     if (!$symb) {
                   7910: 	return '';
                   7911:     }
1.324     albertel 7912:     my $default_form_data=&defaultFormData($symb);
1.82      albertel 7913: 
1.257     albertel 7914:     my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.649     raeburn  7915:     my $bubbles_per_row =
                   7916:         &bubblesheet_bubbles_per_row(\%scantron_config);
1.157     albertel 7917:     my ($scanlines,$scan_data)=&scantron_getfile();
1.82      albertel 7918:     my $classlist=&Apache::loncoursedata::get_classlist();
                   7919:     my %idmap=&username_to_idmap($classlist);
1.132     bowersj2 7920:     my $navmap=Apache::lonnavmaps::navmap->new();
1.582     raeburn  7921:     unless (ref($navmap)) {
                   7922:         $r->print(&navmap_errormsg());
                   7923:         return '';
                   7924:     }  
1.83      albertel 7925:     my $map=$navmap->getResourceByUrl($sequence);
1.677     raeburn  7926:     my $randomorder;
                   7927:     if (ref($map)) {
                   7928:         $randomorder = $map->randomorder();
                   7929:     }
1.83      albertel 7930:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.677     raeburn  7931:     my (%grader_partids_by_symb,%grader_randomlists_by_symb,%ordered);
1.557     raeburn  7932:     &graders_resources_pass(\@resources,\%grader_partids_by_symb,
1.649     raeburn  7933:                             \%grader_randomlists_by_symb,$bubbles_per_row);
1.677     raeburn  7934:     my ($resource_error,%symb_to_resource,@master_seq);
1.557     raeburn  7935:     foreach my $resource (@resources) {
1.586     raeburn  7936:         my $ressymb;
                   7937:         if (ref($resource)) {
                   7938:             $ressymb = $resource->symb();
1.677     raeburn  7939:             push(@master_seq,$ressymb);
                   7940:             $symb_to_resource{$ressymb} = $resource;
1.586     raeburn  7941:         } else {
                   7942:             $resource_error = 1;
                   7943:             last;
                   7944:         }
1.557     raeburn  7945:         my ($analysis,$parts) =
                   7946:             &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672     raeburn  7947:                                       $env{'user.name'},$env{'user.domain'},
                   7948:                                       1,$bubbles_per_row);
1.557     raeburn  7949:         $grader_partids_by_symb{$ressymb} = $parts;
                   7950:         if (ref($analysis) eq 'HASH') {
                   7951:             if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
                   7952:                 $grader_randomlists_by_symb{$ressymb} = 
                   7953:                     $analysis->{'parts_withrandomlist'};
                   7954:             }
                   7955:         }
                   7956:     }
1.586     raeburn  7957:     if ($resource_error) {
                   7958:         $r->print(&navmap_errormsg());
                   7959:         return '';
                   7960:     }
1.557     raeburn  7961: 
1.554     raeburn  7962:     my ($uname,$udom);
1.82      albertel 7963:     my $result= <<SCANTRONFORM;
1.81      albertel 7964: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
                   7965:   <input type="hidden" name="command" value="scantron_configphase" />
                   7966:   $default_form_data
                   7967: SCANTRONFORM
1.82      albertel 7968:     $r->print($result);
                   7969: 
                   7970:     my @delayqueue;
1.542     raeburn  7971:     my (%completedstudents,%scandata);
1.140     albertel 7972:     
1.520     www      7973:     my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
1.200     albertel 7974:     my $count=&get_todo_count($scanlines,$scan_data);
1.667     www      7975:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
                   7976:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.542     raeburn  7977:     $r->print('<br />');
1.140     albertel 7978:     my $start=&Time::HiRes::time();
1.158     albertel 7979:     my $i=-1;
1.542     raeburn  7980:     my $started;
1.447     foxr     7981: 
1.582     raeburn  7982:     my $nav_error;
1.649     raeburn  7983:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582     raeburn  7984:     if ($nav_error) {
                   7985:         $r->print(&navmap_errormsg());
                   7986:         return '';
                   7987:     }
                   7988: 
1.513     foxr     7989:     # If an ssi failed in scantron_get_maxbubble, put an error message out to
                   7990:     # the user and return.
                   7991: 
                   7992:     if ($ssi_error) {
                   7993: 	$r->print("</form>");
                   7994: 	&ssi_print_error($r);
1.520     www      7995:         &Apache::lonnet::remove_lock($lock);
1.513     foxr     7996: 	return '';		# Dunno why the other returns return '' rather than just returning.
                   7997:     }
1.447     foxr     7998: 
1.542     raeburn  7999:     my %lettdig = &letter_to_digits();
                   8000:     my $numletts = scalar(keys(%lettdig));
                   8001: 
1.157     albertel 8002:     while ($i<$scanlines->{'count'}) {
                   8003:  	($uname,$udom)=('','');
                   8004:  	$i++;
1.200     albertel 8005:  	my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157     albertel 8006:  	if ($line=~/^[\s\cz]*$/) { next; }
1.200     albertel 8007: 	if ($started) {
1.667     www      8008: 	    &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.200     albertel 8009: 	}
                   8010: 	$started=1;
1.157     albertel 8011:  	my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
                   8012:  						 $scan_data);
                   8013:  	unless ($uname=&scantron_find_student($scan_record,$scan_data,
                   8014:  					      \%idmap,$i)) {
                   8015:   	    &scantron_add_delay(\@delayqueue,$line,
                   8016:  				'Unable to find a student that matches',1);
                   8017:  	    next;
                   8018:   	}
                   8019:  	if (exists $completedstudents{$uname}) {
                   8020:  	    &scantron_add_delay(\@delayqueue,$line,
                   8021:  				'Student '.$uname.' has multiple sheets',2);
                   8022:  	    next;
                   8023:  	}
1.677     raeburn  8024:         my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
                   8025:         my $user = $uname.':'.$usec;
1.157     albertel 8026:   	($uname,$udom)=split(/:/,$uname);
1.330     albertel 8027: 
1.677     raeburn  8028:         my $scancode;
                   8029:         if ((exists($scan_record->{'scantron.CODE'})) &&
                   8030:             (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
                   8031:             $scancode = $scan_record->{'scantron.CODE'};
                   8032:         } else {
                   8033:             $scancode = '';
                   8034:         }
                   8035: 
                   8036:         my @mapresources = @resources;
1.678     raeburn  8037:         if ($randomorder) {
                   8038:             @mapresources = 
                   8039:                 &users_order($user,$scancode,$sequence,\@master_seq,\%ordered,
                   8040:                              \%symb_to_resource);
1.677     raeburn  8041:         }
1.586     raeburn  8042:         my (%partids_by_symb,$res_error);
1.677     raeburn  8043:         foreach my $resource (@mapresources) {
1.586     raeburn  8044:             my $ressymb;
                   8045:             if (ref($resource)) {
                   8046:                 $ressymb = $resource->symb();
                   8047:             } else {
                   8048:                 $res_error = 1;
                   8049:                 last;
                   8050:             }
1.557     raeburn  8051:             if ((exists($grader_randomlists_by_symb{$ressymb})) ||
                   8052:                 (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
                   8053:                 my ($analysis,$parts) =
1.672     raeburn  8054:                     &scantron_partids_tograde($resource,$env{'request.course.id'},
                   8055:                                               $uname,$udom,undef,$bubbles_per_row);
1.557     raeburn  8056:                 $partids_by_symb{$ressymb} = $parts;
                   8057:             } else {
                   8058:                 $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
                   8059:             }
1.554     raeburn  8060:         }
                   8061: 
1.586     raeburn  8062:         if ($res_error) {
                   8063:             &scantron_add_delay(\@delayqueue,$line,
                   8064:                                 'An error occurred while grading student '.$uname,2);
                   8065:             next;
                   8066:         }
                   8067: 
1.330     albertel 8068: 	&Apache::lonxml::clear_problem_counter();
1.514     raeburn  8069:   	&Apache::lonnet::appenv($scan_record);
1.376     albertel 8070: 
                   8071: 	if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
                   8072: 	    &scantron_putfile($scanlines,$scan_data);
                   8073: 	}
1.161     albertel 8074: 	
1.542     raeburn  8075:         if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677     raeburn  8076:                                    \@mapresources,\%partids_by_symb,
1.649     raeburn  8077:                                    $bubbles_per_row) eq 'ssi_error') {
1.542     raeburn  8078:             $ssi_error = 0; # So end of handler error message does not trigger.
                   8079:             $r->print("</form>");
                   8080:             &ssi_print_error($r);
                   8081:             &Apache::lonnet::remove_lock($lock);
                   8082:             return '';      # Why return ''?  Beats me.
                   8083:         }
1.513     foxr     8084: 
1.140     albertel 8085: 	$completedstudents{$uname}={'line'=>$line};
1.542     raeburn  8086:         if ($env{'form.verifyrecord'}) {
                   8087:             my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
                   8088:             my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
                   8089:             chomp($studentdata);
                   8090:             $studentdata =~ s/\r$//;
                   8091:             my $studentrecord = '';
                   8092:             my $counter = -1;
1.677     raeburn  8093:             foreach my $resource (@mapresources) {
1.554     raeburn  8094:                 my $ressymb = $resource->symb();
1.542     raeburn  8095:                 ($counter,my $recording) =
                   8096:                     &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554     raeburn  8097:                                              $counter,$studentdata,$partids_by_symb{$ressymb},
1.542     raeburn  8098:                                              \%scantron_config,\%lettdig,$numletts);
                   8099:                 $studentrecord .= $recording;
                   8100:             }
                   8101:             if ($studentrecord ne $studentdata) {
1.554     raeburn  8102:                 &Apache::lonxml::clear_problem_counter();
                   8103:                 if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677     raeburn  8104:                                            \@mapresources,\%partids_by_symb,
1.649     raeburn  8105:                                            $bubbles_per_row) eq 'ssi_error') {
1.554     raeburn  8106:                     $ssi_error = 0; # So end of handler error message does not trigger.
                   8107:                     $r->print("</form>");
                   8108:                     &ssi_print_error($r);
                   8109:                     &Apache::lonnet::remove_lock($lock);
                   8110:                     delete($completedstudents{$uname});
                   8111:                     return '';
                   8112:                 }
1.542     raeburn  8113:                 $counter = -1;
                   8114:                 $studentrecord = '';
1.677     raeburn  8115:                 foreach my $resource (@mapresources) {
1.554     raeburn  8116:                     my $ressymb = $resource->symb();
1.542     raeburn  8117:                     ($counter,my $recording) =
                   8118:                         &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554     raeburn  8119:                                                  $counter,$studentdata,$partids_by_symb{$ressymb},
1.542     raeburn  8120:                                                  \%scantron_config,\%lettdig,$numletts);
                   8121:                     $studentrecord .= $recording;
                   8122:                 }
                   8123:                 if ($studentrecord ne $studentdata) {
1.658     bisitz   8124:                     $r->print('<p><span class="LC_warning">');
1.542     raeburn  8125:                     if ($scancode eq '') {
1.658     bisitz   8126:                         $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
1.542     raeburn  8127:                                   $uname.':'.$udom,$scan_record->{'scantron.ID'}));
                   8128:                     } else {
1.658     bisitz   8129:                         $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
1.542     raeburn  8130:                                   $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
                   8131:                     }
                   8132:                     $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
                   8133:                               &Apache::loncommon::start_data_table_header_row()."\n".
                   8134:                               '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
                   8135:                               &Apache::loncommon::end_data_table_header_row()."\n".
                   8136:                               &Apache::loncommon::start_data_table_row().
1.658     bisitz   8137:                               '<td>'.&mt('Bubblesheet').'</td>'.
                   8138:                               '<td><span class="LC_nobreak"><tt>'.$studentdata.'</tt></span></td>'.
1.542     raeburn  8139:                               &Apache::loncommon::end_data_table_row().
                   8140:                               &Apache::loncommon::start_data_table_row().
1.658     bisitz   8141:                               '<td>'.&mt('Stored submissions').'</td>'.
                   8142:                               '<td><span class="LC_nobreak"><tt>'.$studentrecord.'</tt></span></td>'."\n".
1.542     raeburn  8143:                               &Apache::loncommon::end_data_table_row().
                   8144:                               &Apache::loncommon::end_data_table().'</p>');
                   8145:                 } else {
                   8146:                     $r->print('<br /><span class="LC_warning">'.
                   8147:                              &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 />'.
                   8148:                              &mt("As a consequence, this user's submission history records two tries.").
                   8149:                                  '</span><br />');
                   8150:                 }
                   8151:             }
                   8152:         }
1.543     raeburn  8153:         if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140     albertel 8154:     } continue {
1.330     albertel 8155: 	&Apache::lonxml::clear_problem_counter();
1.552     raeburn  8156: 	&Apache::lonnet::delenv('scantron.');
1.82      albertel 8157:     }
1.140     albertel 8158:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.520     www      8159:     &Apache::lonnet::remove_lock($lock);
1.172     albertel 8160: #    my $lasttime = &Time::HiRes::time()-$start;
                   8161: #    $r->print("<p>took $lasttime</p>");
1.140     albertel 8162: 
1.200     albertel 8163:     $r->print("</form>");
1.157     albertel 8164:     return '';
1.75      albertel 8165: }
1.157     albertel 8166: 
1.557     raeburn  8167: sub graders_resources_pass {
1.649     raeburn  8168:     my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
                   8169:         $bubbles_per_row) = @_;
1.557     raeburn  8170:     if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) && 
                   8171:         (ref($grader_randomlists_by_symb) eq 'HASH')) {
                   8172:         foreach my $resource (@{$resources}) {
                   8173:             my $ressymb = $resource->symb();
                   8174:             my ($analysis,$parts) =
                   8175:                 &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672     raeburn  8176:                                           $env{'user.name'},$env{'user.domain'},
                   8177:                                           1,$bubbles_per_row);
1.557     raeburn  8178:             $grader_partids_by_symb->{$ressymb} = $parts;
                   8179:             if (ref($analysis) eq 'HASH') {
                   8180:                 if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
                   8181:                     $grader_randomlists_by_symb->{$ressymb} =
                   8182:                         $analysis->{'parts_withrandomlist'};
                   8183:                 }
                   8184:             }
                   8185:         }
                   8186:     }
                   8187:     return;
                   8188: }
                   8189: 
1.678     raeburn  8190: =pod
                   8191: 
                   8192: =item users_order
                   8193: 
                   8194:   Returns array of resources in current map, ordered based on either CODE,
                   8195:   if this is a CODEd exam, or based on student's identity if this is a 
                   8196:   "NAMEd" exam.
                   8197: 
                   8198:   Should be used when randomorder applied when the corresponding exam was
                   8199:   printed, prior to students completing bubblesheets for the version of the
                   8200:   exam the student received. 
                   8201: 
                   8202: =cut
                   8203: 
                   8204: sub users_order  {
                   8205:     my ($user,$scancode,$mapurl,$master_seq,$ordered,$symb_to_resource) = @_;
                   8206:     my @mapresources;
                   8207:     unless ((ref($ordered) eq 'HASH') && (ref($symb_to_resource) eq 'HASH')) {
                   8208:         return @mapresources;
                   8209:     }  
                   8210:     if (($scancode) && (ref($ordered->{$scancode}) eq 'ARRAY')) {
                   8211:         @mapresources = @{$ordered->{$scancode}};
                   8212:     } elsif ($scancode) {
                   8213:         $env{'form.CODE'} = $scancode;
                   8214:         my $actual_seq =
                   8215:             &Apache::lonprintout::master_seq_to_person_seq($mapurl,
                   8216:                                                            $master_seq,
                   8217:                                                            $user,$scancode);
                   8218:         if (ref($actual_seq) eq 'ARRAY') {
                   8219:             @{$ordered->{$scancode}} =
                   8220:                 map { $symb_to_resource->{$_}; } @{$actual_seq};
                   8221:             @mapresources = @{$ordered->{$scancode}};
                   8222:         }
                   8223:         delete($env{'form.CODE'});
                   8224:     } else {
                   8225:         my $actual_seq =
                   8226:             &Apache::lonprintout::master_seq_to_person_seq($mapurl,
                   8227:                                                            $master_seq,
                   8228:                                                            $user);
                   8229:         if (ref($actual_seq) eq 'ARRAY') {
                   8230:             @mapresources = 
                   8231:                 map { $symb_to_resource->{$_}; } @{$actual_seq};
                   8232:         }
                   8233:      }
                   8234:      return @mapresources;
                   8235: }
                   8236: 
1.542     raeburn  8237: sub grade_student_bubbles {
1.677     raeburn  8238:     my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row) = @_; 
1.554     raeburn  8239:     if (ref($resources) eq 'ARRAY') {
                   8240:         my $count = 0;
                   8241:         foreach my $resource (@{$resources}) {
                   8242:             my $ressymb = $resource->symb();
                   8243:             my %form = ('submitted'      => 'scantron',
                   8244:                         'grade_target'   => 'grade',
                   8245:                         'grade_username' => $uname,
                   8246:                         'grade_domain'   => $udom,
                   8247:                         'grade_courseid' => $env{'request.course.id'},
                   8248:                         'grade_symb'     => $ressymb,
                   8249:                         'CODE'           => $scancode
                   8250:                        );
1.649     raeburn  8251:             if ($bubbles_per_row ne '') {
                   8252:                 $form{'bubbles_per_row'} = $bubbles_per_row;
                   8253:             }
1.663     raeburn  8254:             if ($env{'form.scantron_lastbubblepoints'} ne '') {
                   8255:                 $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
                   8256:             }
1.554     raeburn  8257:             if (ref($parts) eq 'HASH') {
                   8258:                 if (ref($parts->{$ressymb}) eq 'ARRAY') {
                   8259:                     foreach my $part (@{$parts->{$ressymb}}) {
                   8260:                         $form{'scantron_questnum_start.'.$part} =
                   8261:                             1+$env{'form.scantron.first_bubble_line.'.$count};
                   8262:                         $count++;
                   8263:                     }
                   8264:                 }
                   8265:             }
                   8266:             my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
                   8267:             return 'ssi_error' if ($ssi_error);
                   8268:             last if (&Apache::loncommon::connection_aborted($r));
                   8269:         }
1.542     raeburn  8270:     }
                   8271:     return;
                   8272: }
                   8273: 
1.157     albertel 8274: sub scantron_upload_scantron_data {
1.608     www      8275:     my ($r,$symb)=@_;
1.565     raeburn  8276:     my $dom = $env{'request.role.domain'};
                   8277:     my $domdesc = &Apache::lonnet::domain($dom,'description');
                   8278:     $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
1.157     albertel 8279:     my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181     albertel 8280: 							  'domainid',
1.565     raeburn  8281: 							  'coursename',$dom);
                   8282:     my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
                   8283:                        ('&nbsp'x2).&mt('(shows course personnel)'); 
1.608     www      8284:     my $default_form_data=&defaultFormData($symb);
1.579     raeburn  8285:     my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
                   8286:     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.");
1.597     wenzelju 8287:     $r->print(&Apache::lonhtmlcommon::scripttag('
1.157     albertel 8288:     function checkUpload(formname) {
                   8289: 	if (formname.upfile.value == "") {
1.579     raeburn  8290: 	    alert("'.$nofile_alert.'");
1.157     albertel 8291: 	    return false;
                   8292: 	}
1.565     raeburn  8293:         if (formname.courseid.value == "") {
1.579     raeburn  8294:             alert("'.$nocourseid_alert.'");
1.565     raeburn  8295:             return false;
                   8296:         }
1.157     albertel 8297: 	formname.submit();
                   8298:     }
1.565     raeburn  8299: 
                   8300:     function ToSyllabus() {
                   8301:         var cdom = '."'$dom'".';
                   8302:         var cnum = document.rules.courseid.value;
                   8303:         if (cdom == "" || cdom == null) {
                   8304:             return;
                   8305:         }
                   8306:         if (cnum == "" || cnum == null) {
                   8307:            return;
                   8308:         }
                   8309:         syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
                   8310:                             "height=350,width=350,scrollbars=yes,menubar=no");
                   8311:         return;
                   8312:     }
                   8313: 
1.597     wenzelju 8314: '));
                   8315:     $r->print('
1.648     bisitz   8316: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
1.566     raeburn  8317: 
1.492     albertel 8318: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
1.565     raeburn  8319: '.$default_form_data.
                   8320:   &Apache::lonhtmlcommon::start_pick_box().
                   8321:   &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
                   8322:   '<input name="courseid" type="text" size="30" />'.$select_link.
                   8323:   &Apache::lonhtmlcommon::row_closure().
                   8324:   &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
                   8325:   '<input name="coursename" type="text" size="30" />'.$syllabuslink.
                   8326:   &Apache::lonhtmlcommon::row_closure().
                   8327:   &Apache::lonhtmlcommon::row_title(&mt('Domain')).
                   8328:   '<input name="domainid" type="hidden" />'.$domdesc.
                   8329:   &Apache::lonhtmlcommon::row_closure().
                   8330:   &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
                   8331:   '<input type="file" name="upfile" size="50" />'.
                   8332:   &Apache::lonhtmlcommon::row_closure(1).
                   8333:   &Apache::lonhtmlcommon::end_pick_box().'<br />
                   8334: 
1.492     albertel 8335: <input name="command" value="scantronupload_save" type="hidden" />
1.589     bisitz   8336: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
1.157     albertel 8337: </form>
1.492     albertel 8338: ');
1.157     albertel 8339:     return '';
                   8340: }
                   8341: 
1.423     albertel 8342: 
1.157     albertel 8343: sub scantron_upload_scantron_data_save {
1.608     www      8344:     my($r,$symb)=@_;
1.182     albertel 8345:     my $doanotherupload=
                   8346: 	'<br /><form action="/adm/grades" method="post">'."\n".
                   8347: 	'<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492     albertel 8348: 	'<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182     albertel 8349: 	'</form>'."\n";
1.257     albertel 8350:     if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162     albertel 8351: 	!&Apache::lonnet::allowed('usc',
1.257     albertel 8352: 			    $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.575     www      8353: 	$r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
1.614     www      8354: 	unless ($symb) {
1.182     albertel 8355: 	    $r->print($doanotherupload);
                   8356: 	}
1.162     albertel 8357: 	return '';
                   8358:     }
1.257     albertel 8359:     my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.568     raeburn  8360:     my $uploadedfile;
1.567     raeburn  8361:     $r->print('<h3>'.&mt("Uploading file to [_1]",$coursedata{'description'}).'</h3>');
1.257     albertel 8362:     if (length($env{'form.upfile'}) < 2) {
1.568     raeburn  8363:         $r->print(&mt('[_1]Error:[_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.','<span class="LC_error">','</span>','<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183     albertel 8364:     } else {
1.568     raeburn  8365:         my $result = 
                   8366:             &Apache::lonnet::userfileupload('upfile','','scantron','','','',
                   8367:                                             $env{'form.courseid'},$env{'form.domainid'});
                   8368: 	if ($result =~ m{^/uploaded/}) {
1.567     raeburn  8369: 	    $r->print(&mt('[_1]Success:[_2] Successfully uploaded [_3] bytes of data into location: [_4]',
                   8370:                           '<span class="LC_success">','</span>',(length($env{'form.upfile'})-1),
                   8371: 			  '<span class="LC_filename">'.$result.'</span>'));
1.568     raeburn  8372:             ($uploadedfile) = ($result =~ m{/([^/]+)$});
1.567     raeburn  8373:             $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
1.568     raeburn  8374:                                                        $env{'form.courseid'},$uploadedfile));
1.210     albertel 8375: 	} else {
1.567     raeburn  8376: 	    $r->print(&mt('[_1]Error:[_2] An error ([_3]) occurred when attempting to upload the file, [_4]',
                   8377:                           '<span class="LC_error">','</span>',$result,
1.568     raeburn  8378: 			  '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183     albertel 8379: 	}
                   8380:     }
1.174     albertel 8381:     if ($symb) {
1.612     www      8382: 	$r->print(&scantron_selectphase($r,$uploadedfile,$symb));
1.174     albertel 8383:     } else {
1.182     albertel 8384: 	$r->print($doanotherupload);
1.174     albertel 8385:     }
1.157     albertel 8386:     return '';
                   8387: }
                   8388: 
1.567     raeburn  8389: sub validate_uploaded_scantron_file {
                   8390:     my ($cdom,$cname,$fname) = @_;
                   8391:     my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
                   8392:     my @lines;
                   8393:     if ($scanlines ne '-1') {
                   8394:         @lines=split("\n",$scanlines,-1);
                   8395:     }
                   8396:     my $output;
                   8397:     if (@lines) {
                   8398:         my (%counts,$max_match_format);
                   8399:         my ($max_match_count,$max_match_pct) = (0,0);
                   8400:         my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
                   8401:         my %idmap = &username_to_idmap($classlist);
                   8402:         foreach my $key (keys(%idmap)) {
                   8403:             my $lckey = lc($key);
                   8404:             $idmap{$lckey} = $idmap{$key};
                   8405:         }
                   8406:         my %unique_formats;
                   8407:         my @formatlines = &get_scantronformat_file();
                   8408:         foreach my $line (@formatlines) {
                   8409:             chomp($line);
                   8410:             my @config = split(/:/,$line);
                   8411:             my $idstart = $config[5];
                   8412:             my $idlength = $config[6];
                   8413:             if (($idstart ne '') && ($idlength > 0)) {
                   8414:                 if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
                   8415:                     push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]); 
                   8416:                 } else {
                   8417:                     $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
                   8418:                 }
                   8419:             }
                   8420:         }
                   8421:         foreach my $key (keys(%unique_formats)) {
                   8422:             my ($idstart,$idlength) = split(':',$key);
                   8423:             %{$counts{$key}} = (
                   8424:                                'found'   => 0,
                   8425:                                'total'   => 0,
                   8426:                               );
                   8427:             foreach my $line (@lines) {
                   8428:                 next if ($line =~ /^#/);
                   8429:                 next if ($line =~ /^[\s\cz]*$/);
                   8430:                 my $id = substr($line,$idstart-1,$idlength);
                   8431:                 $id = lc($id);
                   8432:                 if (exists($idmap{$id})) {
                   8433:                     $counts{$key}{'found'} ++;
                   8434:                 }
                   8435:                 $counts{$key}{'total'} ++;
                   8436:             }
                   8437:             if ($counts{$key}{'total'}) {
                   8438:                 my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
                   8439:                 if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
                   8440:                     $max_match_pct = $percent_match;
                   8441:                     $max_match_format = $key;
                   8442:                     $max_match_count = $counts{$key}{'total'};
                   8443:                 }
                   8444:             }
                   8445:         }
                   8446:         if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
                   8447:             my $format_descs;
                   8448:             my $numwithformat = @{$unique_formats{$max_match_format}};
                   8449:             for (my $i=0; $i<$numwithformat; $i++) {
                   8450:                 my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
                   8451:                 if ($i<$numwithformat-2) {
                   8452:                     $format_descs .= '"<i>'.$desc.'</i>", ';
                   8453:                 } elsif ($i==$numwithformat-2) {
                   8454:                     $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
                   8455:                 } elsif ($i==$numwithformat-1) {
                   8456:                     $format_descs .= '"<i>'.$desc.'</i>"';
                   8457:                 }
                   8458:             }
                   8459:             my $showpct = sprintf("%.0f",$max_match_pct).'%';
                   8460:             $output .= '<br />'.&mt('Comparison of student IDs in the uploaded file with the course roster found matches for [_1] of the [_2] entries in the file (for the format defined for [_3]).','<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs).
                   8461:                        '<br />'.&mt('A low percentage of matches results from one of the following:').'<ul>'.
                   8462:                        '<li>'.&mt('The file was uploaded to the wrong course').'</li>'.
                   8463:                        '<li>'.&mt('The data are not in the format expected for the domain: [_1]',
                   8464:                                   '<i>'.$cdom.'</i>').'</li>'.
                   8465:                        '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
                   8466:                        '<li>'.&mt('The course roster is not up to date').'</li>'.
                   8467:                        '</ul>';
                   8468:         }
                   8469:     } else {
                   8470:         $output = '<span class="LC_warning">'.&mt('Uploaded file contained no data').'</span>';
                   8471:     }
                   8472:     return $output;
                   8473: }
                   8474: 
1.202     albertel 8475: sub valid_file {
                   8476:     my ($requested_file)=@_;
                   8477:     foreach my $filename (sort(&scantron_filenames())) {
                   8478: 	if ($requested_file eq $filename) { return 1; }
                   8479:     }
                   8480:     return 0;
                   8481: }
                   8482: 
                   8483: sub scantron_download_scantron_data {
1.608     www      8484:     my ($r,$symb)=@_;
                   8485:     my $default_form_data=&defaultFormData($symb);
1.257     albertel 8486:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   8487:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   8488:     my $file=$env{'form.scantron_selectfile'};
1.202     albertel 8489:     if (! &valid_file($file)) {
1.492     albertel 8490: 	$r->print('
1.202     albertel 8491: 	<p>
1.686   ! bisitz   8492: 	    '.&mt('The requested filename was invalid.').'
1.202     albertel 8493:         </p>
1.492     albertel 8494: ');
1.202     albertel 8495: 	return;
                   8496:     }
                   8497:     my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
                   8498:     my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
                   8499:     my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
                   8500:     &Apache::lonnet::allowuploaded('/adm/grades',$orig);
                   8501:     &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
                   8502:     &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492     albertel 8503:     $r->print('
1.202     albertel 8504:     <p>
1.492     albertel 8505: 	'.&mt('[_1]Original[_2] file as uploaded by the scantron office.',
                   8506: 	      '<a href="'.$orig.'">','</a>').'
1.202     albertel 8507:     </p>
                   8508:     <p>
1.492     albertel 8509: 	'.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
                   8510: 	      '<a href="'.$corrected.'">','</a>').'
1.202     albertel 8511:     </p>
                   8512:     <p>
1.492     albertel 8513: 	'.&mt('[_1]Skipped[_2], a file of records that were skipped.',
                   8514: 	      '<a href="'.$skipped.'">','</a>').'
1.202     albertel 8515:     </p>
1.492     albertel 8516: ');
1.202     albertel 8517:     return '';
                   8518: }
1.157     albertel 8519: 
1.523     raeburn  8520: sub checkscantron_results {
1.608     www      8521:     my ($r,$symb) = @_;
1.523     raeburn  8522:     if (!$symb) {return '';}
                   8523:     my $cid = $env{'request.course.id'};
1.542     raeburn  8524:     my %lettdig = &letter_to_digits();
1.523     raeburn  8525:     my $numletts = scalar(keys(%lettdig));
                   8526:     my $cnum = $env{'course.'.$cid.'.num'};
                   8527:     my $cdom = $env{'course.'.$cid.'.domain'};
                   8528:     my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
                   8529:     my %record;
                   8530:     my %scantron_config =
                   8531:         &Apache::grades::get_scantron_config($env{'form.scantron_format'});
1.649     raeburn  8532:     my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.523     raeburn  8533:     my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
                   8534:     my $classlist=&Apache::loncoursedata::get_classlist();
                   8535:     my %idmap=&Apache::grades::username_to_idmap($classlist);
                   8536:     my $navmap=Apache::lonnavmaps::navmap->new();
1.582     raeburn  8537:     unless (ref($navmap)) {
                   8538:         $r->print(&navmap_errormsg());
                   8539:         return '';
                   8540:     }
1.523     raeburn  8541:     my $map=$navmap->getResourceByUrl($sequence);
1.678     raeburn  8542:     my ($randomorder,@master_seq,%symb_to_resource);
1.677     raeburn  8543:     if (ref($map)) { 
                   8544:         $randomorder=$map->randomorder();
                   8545:     }
1.557     raeburn  8546:     my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.678     raeburn  8547:     foreach my $resource (@resources) {
                   8548:         if (ref($resource)) {
                   8549:             my $ressymb = $resource->symb();
                   8550:             push(@master_seq,$ressymb);
                   8551:             $symb_to_resource{$ressymb} = $resource;
                   8552:         }
                   8553:     }
1.557     raeburn  8554:     my (%grader_partids_by_symb,%grader_randomlists_by_symb);
1.673     raeburn  8555:     &graders_resources_pass(\@resources,\%grader_partids_by_symb,
                   8556:                             \%grader_randomlists_by_symb,$bubbles_per_row);
1.554     raeburn  8557:     my ($uname,$udom);
1.523     raeburn  8558:     my (%scandata,%lastname,%bylast);
                   8559:     $r->print('
                   8560: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
                   8561: 
                   8562:     my @delayqueue;
                   8563:     my %completedstudents;
                   8564: 
                   8565:     my $count=&Apache::grades::get_todo_count($scanlines,$scan_data);
1.667     www      8566:     my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1.678     raeburn  8567:     my ($username,$domain,$started,%ordered);
1.582     raeburn  8568:     my $nav_error;
1.649     raeburn  8569:     &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582     raeburn  8570:     if ($nav_error) {
                   8571:         $r->print(&navmap_errormsg());
                   8572:         return '';
                   8573:     }
1.523     raeburn  8574: 
1.667     www      8575:     &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.523     raeburn  8576:     my $start=&Time::HiRes::time();
                   8577:     my $i=-1;
                   8578: 
                   8579:     while ($i<$scanlines->{'count'}) {
                   8580:         ($username,$domain,$uname)=('','','');
                   8581:         $i++;
                   8582:         my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
                   8583:         if ($line=~/^[\s\cz]*$/) { next; }
                   8584:         if ($started) {
1.667     www      8585:             &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.523     raeburn  8586:         }
                   8587:         $started=1;
                   8588:         my $scan_record=
                   8589:             &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
                   8590:                                                      $scan_data);
                   8591:         unless ($uname=&Apache::grades::scantron_find_student($scan_record,$scan_data,
                   8592:                                                               \%idmap,$i)) {
                   8593:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
                   8594:                                 'Unable to find a student that matches',1);
                   8595:             next;
                   8596:         }
                   8597:         if (exists $completedstudents{$uname}) {
                   8598:             &Apache::grades::scantron_add_delay(\@delayqueue,$line,
                   8599:                                 'Student '.$uname.' has multiple sheets',2);
                   8600:             next;
                   8601:         }
                   8602:         my $pid = $scan_record->{'scantron.ID'};
                   8603:         $lastname{$pid} = $scan_record->{'scantron.LastName'};
                   8604:         push(@{$bylast{$lastname{$pid}}},$pid);
                   8605:         my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
                   8606:         $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
                   8607:         chomp($scandata{$pid});
                   8608:         $scandata{$pid} =~ s/\r$//;
1.678     raeburn  8609:         my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
                   8610:         my $user = $uname.':'.$usec;
1.523     raeburn  8611:         ($username,$domain)=split(/:/,$uname);
1.677     raeburn  8612: 
1.678     raeburn  8613:         my $scancode;
1.677     raeburn  8614:         if ((exists($scan_record->{'scantron.CODE'})) &&
                   8615:             (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
                   8616:             $scancode = $scan_record->{'scantron.CODE'};
                   8617:         } else {
                   8618:             $scancode = '';
                   8619:         }
                   8620: 
                   8621:         my @mapresources = @resources;
1.678     raeburn  8622:         if ($randomorder) {
                   8623:             @mapresources =
                   8624:                 &users_order($user,$scancode,$sequence,\@master_seq,\%ordered,
                   8625:                              \%symb_to_resource);
1.677     raeburn  8626:         }
1.523     raeburn  8627:         my $counter = -1;
1.677     raeburn  8628:         foreach my $resource (@mapresources) {
1.557     raeburn  8629:             my $parts;
1.554     raeburn  8630:             my $ressymb = $resource->symb();
1.557     raeburn  8631:             if ((exists($grader_randomlists_by_symb{$ressymb})) ||
                   8632:                 (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
                   8633:                 (my $analysis,$parts) =
1.672     raeburn  8634:                     &scantron_partids_tograde($resource,$env{'request.course.id'},
                   8635:                                               $username,$domain,undef,
                   8636:                                               $bubbles_per_row);
1.557     raeburn  8637:             } else {
                   8638:                 $parts = $grader_partids_by_symb{$ressymb};
                   8639:             }
1.542     raeburn  8640:             ($counter,my $recording) =
                   8641:                 &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
1.554     raeburn  8642:                                          $scandata{$pid},$parts,
1.542     raeburn  8643:                                          \%scantron_config,\%lettdig,$numletts);
                   8644:             $record{$pid} .= $recording;
1.523     raeburn  8645:         }
                   8646:     }
                   8647:     &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
                   8648:     $r->print('<br />');
                   8649:     my ($okstudents,$badstudents,$numstudents,$passed,$failed);
                   8650:     $passed = 0;
                   8651:     $failed = 0;
                   8652:     $numstudents = 0;
                   8653:     foreach my $last (sort(keys(%bylast))) {
                   8654:         if (ref($bylast{$last}) eq 'ARRAY') {
                   8655:             foreach my $pid (sort(@{$bylast{$last}})) {
                   8656:                 my $showscandata = $scandata{$pid};
                   8657:                 my $showrecord = $record{$pid};
                   8658:                 $showscandata =~ s/\s/&nbsp;/g;
                   8659:                 $showrecord =~ s/\s/&nbsp;/g;
                   8660:                 if ($scandata{$pid} eq $record{$pid}) {
                   8661:                     my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
                   8662:                     $okstudents .= '<tr class="'.$css_class.'">'.
1.581     www      8663: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
1.523     raeburn  8664: '</tr>'."\n".
                   8665: '<tr class="'.$css_class.'">'."\n".
                   8666: '<td>Submissions</td><td>'.$showrecord.'</td></tr>'."\n";
                   8667:                     $passed ++;
                   8668:                 } else {
                   8669:                     my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
1.581     www      8670:                     $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".
1.523     raeburn  8671: '</tr>'."\n".
                   8672: '<tr class="'.$css_class.'">'."\n".
                   8673: '<td>Submissions</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
                   8674: '</tr>'."\n";
                   8675:                     $failed ++;
                   8676:                 }
                   8677:                 $numstudents ++;
                   8678:             }
                   8679:         }
                   8680:     }
1.648     bisitz   8681:     $r->print(
                   8682:         '<p>'
                   8683:        .&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).',
                   8684:             '<b>',
                   8685:             $numstudents,
                   8686:             '</b>',
                   8687:             $env{'form.scantron_maxbubble'})
                   8688:        .'</p>'
                   8689:     );
1.682     raeburn  8690:     $r->print('<p>'
1.683     raeburn  8691:              .&mt('Exact matches for [_1][quant,_2,student][_3].','<b>',$passed,'</b>')
1.682     raeburn  8692:              .'<br />'
                   8693:              .&mt('Discrepancies detected for [_1][quant,_2,student][_3].','<b>',$failed,'</b>')
                   8694:              .'</p>'
                   8695:     );
1.523     raeburn  8696:     if ($passed) {
1.572     www      8697:         $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523     raeburn  8698:         $r->print(&Apache::loncommon::start_data_table()."\n".
                   8699:                  &Apache::loncommon::start_data_table_header_row()."\n".
                   8700:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
                   8701:                  &Apache::loncommon::end_data_table_header_row()."\n".
                   8702:                  $okstudents."\n".
                   8703:                  &Apache::loncommon::end_data_table().'<br />');
                   8704:     }
                   8705:     if ($failed) {
1.572     www      8706:         $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523     raeburn  8707:         $r->print(&Apache::loncommon::start_data_table()."\n".
                   8708:                  &Apache::loncommon::start_data_table_header_row()."\n".
                   8709:                  '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
                   8710:                  &Apache::loncommon::end_data_table_header_row()."\n".
                   8711:                  $badstudents."\n".
                   8712:                  &Apache::loncommon::end_data_table()).'<br />'.
1.572     www      8713:                  &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.');  
1.523     raeburn  8714:     }
1.614     www      8715:     $r->print('</form><br />');
1.523     raeburn  8716:     return;
                   8717: }
                   8718: 
1.542     raeburn  8719: sub verify_scantron_grading {
1.554     raeburn  8720:     my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
1.542     raeburn  8721:         $scantron_config,$lettdig,$numletts) = @_;
                   8722:     my ($record,%expected,%startpos);
                   8723:     return ($counter,$record) if (!ref($resource));
                   8724:     return ($counter,$record) if (!$resource->is_problem());
                   8725:     my $symb = $resource->symb();
1.554     raeburn  8726:     return ($counter,$record) if (ref($partids) ne 'ARRAY');
                   8727:     foreach my $part_id (@{$partids}) {
1.542     raeburn  8728:         $counter ++;
                   8729:         $expected{$part_id} = 0;
                   8730:         if ($env{"form.scantron.sub_bubblelines.$counter"}) {
                   8731:             my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$counter"});
                   8732:             foreach my $item (@sub_lines) {
                   8733:                 $expected{$part_id} += $item;
                   8734:             }
                   8735:         } else {
                   8736:             $expected{$part_id} = $env{"form.scantron.bubblelines.$counter"};
                   8737:         }
                   8738:         $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
                   8739:     }
                   8740:     if ($symb) {
                   8741:         my %recorded;
                   8742:         my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
                   8743:         if ($returnhash{'version'}) {
                   8744:             my %lasthash=();
                   8745:             my $version;
                   8746:             for ($version=1;$version<=$returnhash{'version'};$version++) {
                   8747:                 foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
                   8748:                     $lasthash{$key}=$returnhash{$version.':'.$key};
                   8749:                 }
                   8750:             }
                   8751:             foreach my $key (keys(%lasthash)) {
                   8752:                 if ($key =~ /\.scantron$/) {
                   8753:                     my $value = &unescape($lasthash{$key});
                   8754:                     my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
                   8755:                     if ($value eq '') {
                   8756:                         for (my $i=0; $i<$expected{$part_id}; $i++) {
                   8757:                             for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
                   8758:                                 $recorded{$part_id} .= $scantron_config->{'Qoff'};
                   8759:                             }
                   8760:                         }
                   8761:                     } else {
                   8762:                         my @tocheck;
                   8763:                         my @items = split(//,$value);
                   8764:                         if (($scantron_config->{'Qon'} eq 'letter') ||
                   8765:                             ($scantron_config->{'Qon'} eq 'number')) {
                   8766:                             if (@items < $expected{$part_id}) {
                   8767:                                 my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
                   8768:                                 my @singles = split(//,$fragment);
                   8769:                                 foreach my $pos (@singles) {
                   8770:                                     if ($pos eq ' ') {
                   8771:                                         push(@tocheck,$pos);
                   8772:                                     } else {
                   8773:                                         my $next = shift(@items);
                   8774:                                         push(@tocheck,$next);
                   8775:                                     }
                   8776:                                 }
                   8777:                             } else {
                   8778:                                 @tocheck = @items;
                   8779:                             }
                   8780:                             foreach my $letter (@tocheck) {
                   8781:                                 if ($scantron_config->{'Qon'} eq 'letter') {
                   8782:                                     if ($letter !~ /^[A-J]$/) {
                   8783:                                         $letter = $scantron_config->{'Qoff'};
                   8784:                                     }
                   8785:                                     $recorded{$part_id} .= $letter;
                   8786:                                 } elsif ($scantron_config->{'Qon'} eq 'number') {
                   8787:                                     my $digit;
                   8788:                                     if ($letter !~ /^[A-J]$/) {
                   8789:                                         $digit = $scantron_config->{'Qoff'};
                   8790:                                     } else {
                   8791:                                         $digit = $lettdig->{$letter};
                   8792:                                     }
                   8793:                                     $recorded{$part_id} .= $digit;
                   8794:                                 }
                   8795:                             }
                   8796:                         } else {
                   8797:                             @tocheck = @items;
                   8798:                             for (my $i=0; $i<$expected{$part_id}; $i++) {
                   8799:                                 my $curr_sub = shift(@tocheck);
                   8800:                                 my $digit;
                   8801:                                 if ($curr_sub =~ /^[A-J]$/) {
                   8802:                                     $digit = $lettdig->{$curr_sub}-1;
                   8803:                                 }
                   8804:                                 if ($curr_sub eq 'J') {
                   8805:                                     $digit += scalar($numletts);
                   8806:                                 }
                   8807:                                 for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
                   8808:                                     if ($j == $digit) {
                   8809:                                         $recorded{$part_id} .= $scantron_config->{'Qon'};
                   8810:                                     } else {
                   8811:                                         $recorded{$part_id} .= $scantron_config->{'Qoff'};
                   8812:                                     }
                   8813:                                 }
                   8814:                             }
                   8815:                         }
                   8816:                     }
                   8817:                 }
                   8818:             }
                   8819:         }
1.554     raeburn  8820:         foreach my $part_id (@{$partids}) {
1.542     raeburn  8821:             if ($recorded{$part_id} eq '') {
                   8822:                 for (my $i=0; $i<$expected{$part_id}; $i++) {
                   8823:                     for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
                   8824:                         $recorded{$part_id} .= $scantron_config->{'Qoff'};
                   8825:                     }
                   8826:                 }
                   8827:             }
                   8828:             $record .= $recorded{$part_id};
                   8829:         }
                   8830:     }
                   8831:     return ($counter,$record);
                   8832: }
                   8833: 
                   8834: sub letter_to_digits { 
                   8835:     my %lettdig = (
                   8836:                     A => 1,
                   8837:                     B => 2,
                   8838:                     C => 3,
                   8839:                     D => 4,
                   8840:                     E => 5,
                   8841:                     F => 6,
                   8842:                     G => 7,
                   8843:                     H => 8,
                   8844:                     I => 9,
                   8845:                     J => 0,
                   8846:                   );
                   8847:     return %lettdig;
                   8848: }
                   8849: 
1.423     albertel 8850: 
1.75      albertel 8851: #-------- end of section for handling grading scantron forms -------
                   8852: #
                   8853: #-------------------------------------------------------------------
                   8854: 
1.72      ng       8855: #-------------------------- Menu interface -------------------------
                   8856: #
1.614     www      8857: #--- Href with symb and command ---
                   8858: 
                   8859: sub href_symb_cmd {
                   8860:     my ($symb,$cmd)=@_;
1.669     raeburn  8861:     return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&amp;command='.$cmd;
1.72      ng       8862: }
                   8863: 
1.443     banghart 8864: sub grading_menu {
1.608     www      8865:     my ($request,$symb) = @_;
1.443     banghart 8866:     if (!$symb) {return '';}
                   8867: 
                   8868:     my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
1.618     www      8869:                   'command'=>'individual');
1.538     schulted 8870:     
1.598     www      8871:     my $url1a = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   8872: 
                   8873:     $fields{'command'}='ungraded';
                   8874:     my $url1b=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   8875: 
                   8876:     $fields{'command'}='table';
                   8877:     my $url1c=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   8878: 
                   8879:     $fields{'command'}='all_for_one';
                   8880:     my $url1d=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   8881: 
1.621     www      8882:     $fields{'command'}='downloadfilesselect';
                   8883:     my $url1e=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   8884: 
1.443     banghart 8885:     $fields{'command'} = 'csvform';
1.538     schulted 8886:     my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   8887:     
1.443     banghart 8888:     $fields{'command'} = 'processclicker';
1.538     schulted 8889:     my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
                   8890:     
1.443     banghart 8891:     $fields{'command'} = 'scantron_selectphase';
1.538     schulted 8892:     my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.602     www      8893: 
                   8894:     $fields{'command'} = 'initialverifyreceipt';
                   8895:     my $url5 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.538     schulted 8896:     
1.598     www      8897:     my @menu = ({	categorytitle=>'Hand Grading',
1.538     schulted 8898:             items =>[
1.598     www      8899:                         {	linktext => 'Select individual students to grade',
                   8900:                     		url => $url1a,
1.538     schulted 8901:                     		permission => 'F',
1.636     wenzelju 8902:                     		icon => 'grade_students.png',
1.598     www      8903:                     		linktitle => 'Grade current resource for a selection of students.'
                   8904:                         }, 
                   8905:                         {       linktext => 'Grade ungraded submissions.',
                   8906:                                 url => $url1b,
                   8907:                                 permission => 'F',
1.636     wenzelju 8908:                                 icon => 'ungrade_sub.png',
1.598     www      8909:                                 linktitle => 'Grade all submissions that have not been graded yet.'
1.538     schulted 8910:                         },
1.598     www      8911: 
                   8912:                         {       linktext => 'Grading table',
                   8913:                                 url => $url1c,
                   8914:                                 permission => 'F',
1.636     wenzelju 8915:                                 icon => 'grading_table.png',
1.598     www      8916:                                 linktitle => 'Grade current resource for all students.'
                   8917:                         },
1.615     www      8918:                         {       linktext => 'Grade page/folder for one student',
1.598     www      8919:                                 url => $url1d,
                   8920:                                 permission => 'F',
1.636     wenzelju 8921:                                 icon => 'grade_PageFolder.png',
1.598     www      8922:                                 linktitle => 'Grade all resources in current page/sequence/folder for one student.'
1.621     www      8923:                         },
                   8924:                         {       linktext => 'Download submissions',
                   8925:                                 url => $url1e,
                   8926:                                 permission => 'F',
1.636     wenzelju 8927:                                 icon => 'download_sub.png',
1.621     www      8928:                                 linktitle => 'Download all students submissions.'
1.598     www      8929:                         }]},
                   8930:                          { categorytitle=>'Automated Grading',
                   8931:                items =>[
                   8932: 
1.538     schulted 8933:                 	    {	linktext => 'Upload Scores',
                   8934:                     		url => $url2,
                   8935:                     		permission => 'F',
                   8936:                     		icon => 'uploadscores.png',
                   8937:                     		linktitle => 'Specify a file containing the class scores for current resource.'
                   8938:                 	    },
                   8939:                 	    {	linktext => 'Process Clicker',
                   8940:                     		url => $url3,
                   8941:                     		permission => 'F',
                   8942:                     		icon => 'addClickerInfoFile.png',
                   8943:                     		linktitle => 'Specify a file containing the clicker information for this resource.'
                   8944:                 	    },
1.587     raeburn  8945:                 	    {	linktext => 'Grade/Manage/Review Bubblesheets',
1.538     schulted 8946:                     		url => $url4,
                   8947:                     		permission => 'F',
1.636     wenzelju 8948:                     		icon => 'bubblesheet.png',
1.648     bisitz   8949:                     		linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
1.602     www      8950:                 	    },
1.616     www      8951:                             {   linktext => 'Verify Receipt Number',
1.602     www      8952:                                 url => $url5,
                   8953:                                 permission => 'F',
1.636     wenzelju 8954:                                 icon => 'receipt_number.png',
1.602     www      8955:                                 linktitle => 'Verify a system-generated receipt number for correct problem solution.'
                   8956:                             }
                   8957: 
1.538     schulted 8958:                     ]
                   8959:             });
                   8960: 
1.443     banghart 8961:     # Create the menu
                   8962:     my $Str;
1.445     banghart 8963:     $Str .= '<form method="post" action="" name="gradingMenu">';
                   8964:     $Str .= '<input type="hidden" name="command" value="" />'.
1.618     www      8965:     	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.445     banghart 8966: 
1.602     www      8967:     $Str .= &Apache::lonhtmlcommon::generate_menu(@menu);
1.443     banghart 8968:     return $Str;    
                   8969: }
                   8970: 
1.598     www      8971: 
                   8972: sub ungraded {
                   8973:     my ($request)=@_;
                   8974:     &submit_options($request);
                   8975: }
                   8976: 
1.599     www      8977: sub submit_options_sequence {
1.608     www      8978:     my ($request,$symb) = @_;
1.599     www      8979:     if (!$symb) {return '';}
1.600     www      8980:     &commonJSfunctions($request);
                   8981:     my $result;
1.599     www      8982: 
1.600     www      8983:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618     www      8984:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632     www      8985:     $result.=&selectfield(0).
1.601     www      8986:             '<input type="hidden" name="command" value="pickStudentPage" />
1.600     www      8987:             <div>
                   8988:               <input type="submit" value="'.&mt('Next').' &rarr;" />
                   8989:             </div>
                   8990:         </div>
                   8991:   </form>';
                   8992:     return $result;
                   8993: }
                   8994: 
                   8995: sub submit_options_table {
1.608     www      8996:     my ($request,$symb) = @_;
1.600     www      8997:     if (!$symb) {return '';}
1.599     www      8998:     &commonJSfunctions($request);
                   8999:     my $result;
                   9000: 
                   9001:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618     www      9002:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.599     www      9003: 
1.632     www      9004:     $result.=&selectfield(0).
1.601     www      9005:             '<input type="hidden" name="command" value="viewgrades" />
1.599     www      9006:             <div>
                   9007:               <input type="submit" value="'.&mt('Next').' &rarr;" />
                   9008:             </div>
                   9009:         </div>
                   9010:   </form>';
                   9011:     return $result;
                   9012: }
1.443     banghart 9013: 
1.621     www      9014: sub submit_options_download {
                   9015:     my ($request,$symb) = @_;
                   9016:     if (!$symb) {return '';}
                   9017: 
                   9018:     &commonJSfunctions($request);
                   9019: 
                   9020:     my $result='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
                   9021:         '<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
                   9022:     $result.='
                   9023: <h2>
                   9024:   '.&mt('Select Students for Which to Download Submissions').'
                   9025: </h2>'.&selectfield(1).'
                   9026:                 <input type="hidden" name="command" value="downloadfileslink" /> 
                   9027:               <input type="submit" value="'.&mt('Next').' &rarr;" />
                   9028:             </div>
                   9029:           </div>
1.600     www      9030: 
                   9031: 
1.621     www      9032:   </form>';
                   9033:     return $result;
                   9034: }
                   9035: 
1.443     banghart 9036: #--- Displays the submissions first page -------
                   9037: sub submit_options {
1.608     www      9038:     my ($request,$symb) = @_;
1.72      ng       9039:     if (!$symb) {return '';}
                   9040: 
1.118     ng       9041:     &commonJSfunctions($request);
1.473     albertel 9042:     my $result;
1.533     bisitz   9043: 
1.72      ng       9044:     $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618     www      9045: 	'<input type="hidden" name="symb"        value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632     www      9046:     $result.=&selectfield(1).'
1.601     www      9047:                 <input type="hidden" name="command" value="submission" /> 
                   9048: 	      <input type="submit" value="'.&mt('Next').' &rarr;" />
                   9049:             </div>
                   9050:           </div>
                   9051: 
                   9052: 
                   9053:   </form>';
                   9054:     return $result;
                   9055: }
1.533     bisitz   9056: 
1.601     www      9057: sub selectfield {
                   9058:    my ($full)=@_;
1.635     raeburn  9059:    my %options = 
                   9060:           (&Apache::lonlocal::texthash(
                   9061:              'yes'       => 'with submissions',
                   9062:              'queued'    => 'in grading queue',
                   9063:              'graded'    => 'with ungraded submissions',
                   9064:              'incorrect' => 'with incorrect submissions',
                   9065:              'all'       => 'with any status'),
                   9066:              'select_form_order' => ['yes','queued','graded','incorrect','all']);
1.601     www      9067:    my $result='<div class="LC_columnSection">
1.537     harmsja  9068:   
1.533     bisitz   9069:     <fieldset>
                   9070:       <legend>
                   9071:        '.&mt('Sections').'
                   9072:       </legend>
1.601     www      9073:       '.&Apache::lonstatistics::SectionSelect('section','multiple',5).'
1.533     bisitz   9074:     </fieldset>
1.537     harmsja  9075:   
1.533     bisitz   9076:     <fieldset>
                   9077:       <legend>
                   9078:         '.&mt('Groups').'
                   9079:       </legend>
                   9080:       '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
                   9081:     </fieldset>
1.537     harmsja  9082:   
1.533     bisitz   9083:     <fieldset>
                   9084:       <legend>
                   9085:         '.&mt('Access Status').'
                   9086:       </legend>
1.601     www      9087:       '.&Apache::lonhtmlcommon::StatusOptions(undef,undef,5,undef,'mult').'
                   9088:     </fieldset>';
                   9089:     if ($full) {
                   9090:        $result.='
1.533     bisitz   9091:     <fieldset>
                   9092:       <legend>
                   9093:         '.&mt('Submission Status').'
1.601     www      9094:       </legend>'.
1.635     raeburn  9095:        &Apache::loncommon::select_form('all','submitonly',\%options).
1.601     www      9096:    '</fieldset>';
                   9097:     }
                   9098:     $result.='</div><br />';
1.44      ng       9099:     return $result;
1.2       albertel 9100: }
                   9101: 
1.285     albertel 9102: sub reset_perm {
                   9103:     undef(%perm);
                   9104: }
                   9105: 
                   9106: sub init_perm {
                   9107:     &reset_perm();
1.300     albertel 9108:     foreach my $test_perm ('vgr','mgr','opa') {
                   9109: 
                   9110: 	my $scope = $env{'request.course.id'};
                   9111: 	if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
                   9112: 
                   9113: 	    $scope .= '/'.$env{'request.course.sec'};
                   9114: 	    if ( $perm{$test_perm}=
                   9115: 		 &Apache::lonnet::allowed($test_perm,$scope)) {
                   9116: 		$perm{$test_perm.'_section'}=$env{'request.course.sec'};
                   9117: 	    } else {
                   9118: 		delete($perm{$test_perm});
                   9119: 	    }
1.285     albertel 9120: 	}
                   9121:     }
                   9122: }
                   9123: 
1.674     raeburn  9124: sub init_old_essays {
                   9125:     my ($symb,$apath,$adom,$aname) = @_;
                   9126:     if ($symb ne '') {
                   9127:         my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
                   9128:         if (keys(%essays) > 0) {
                   9129:             $old_essays{$symb} = \%essays;
                   9130:         }
                   9131:     }
                   9132:     return;
                   9133: }
                   9134: 
                   9135: sub reset_old_essays {
                   9136:     undef(%old_essays);
                   9137: }
                   9138: 
1.400     www      9139: sub gather_clicker_ids {
1.408     albertel 9140:     my %clicker_ids;
1.400     www      9141: 
                   9142:     my $classlist = &Apache::loncoursedata::get_classlist();
                   9143: 
                   9144:     # Set up a couple variables.
1.407     albertel 9145:     my $username_idx = &Apache::loncoursedata::CL_SNAME();
                   9146:     my $domain_idx   = &Apache::loncoursedata::CL_SDOM();
1.438     www      9147:     my $status_idx   = &Apache::loncoursedata::CL_STATUS();
1.400     www      9148: 
1.407     albertel 9149:     foreach my $student (keys(%$classlist)) {
1.438     www      9150:         if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407     albertel 9151:         my $username = $classlist->{$student}->[$username_idx];
                   9152:         my $domain   = $classlist->{$student}->[$domain_idx];
1.400     www      9153:         my $clickers =
1.408     albertel 9154: 	    (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400     www      9155:         foreach my $id (split(/\,/,$clickers)) {
1.414     www      9156:             $id=~s/^[\#0]+//;
1.421     www      9157:             $id=~s/[\-\:]//g;
1.407     albertel 9158:             if (exists($clicker_ids{$id})) {
1.408     albertel 9159: 		$clicker_ids{$id}.=','.$username.':'.$domain;
1.400     www      9160:             } else {
1.408     albertel 9161: 		$clicker_ids{$id}=$username.':'.$domain;
1.400     www      9162:             }
                   9163:         }
                   9164:     }
1.407     albertel 9165:     return %clicker_ids;
1.400     www      9166: }
                   9167: 
1.402     www      9168: sub gather_adv_clicker_ids {
1.408     albertel 9169:     my %clicker_ids;
1.402     www      9170:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
                   9171:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   9172:     my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409     albertel 9173:     foreach my $element (sort(keys(%coursepersonnel))) {
1.402     www      9174:         foreach my $person (split(/\,/,$coursepersonnel{$element})) {
                   9175:             my ($puname,$pudom)=split(/\:/,$person);
                   9176:             my $clickers =
1.408     albertel 9177: 		(&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405     www      9178:             foreach my $id (split(/\,/,$clickers)) {
1.414     www      9179: 		$id=~s/^[\#0]+//;
1.421     www      9180:                 $id=~s/[\-\:]//g;
1.408     albertel 9181: 		if (exists($clicker_ids{$id})) {
                   9182: 		    $clicker_ids{$id}.=','.$puname.':'.$pudom;
                   9183: 		} else {
                   9184: 		    $clicker_ids{$id}=$puname.':'.$pudom;
                   9185: 		}
1.405     www      9186:             }
1.402     www      9187:         }
                   9188:     }
1.407     albertel 9189:     return %clicker_ids;
1.402     www      9190: }
                   9191: 
1.413     www      9192: sub clicker_grading_parameters {
                   9193:     return ('gradingmechanism' => 'scalar',
                   9194:             'upfiletype' => 'scalar',
                   9195:             'specificid' => 'scalar',
                   9196:             'pcorrect' => 'scalar',
                   9197:             'pincorrect' => 'scalar');
                   9198: }
                   9199: 
1.400     www      9200: sub process_clicker {
1.608     www      9201:     my ($r,$symb)=@_;
1.400     www      9202:     if (!$symb) {return '';}
                   9203:     my $result=&checkforfile_js();
1.632     www      9204:     $result.=&Apache::loncommon::start_data_table().
                   9205:              &Apache::loncommon::start_data_table_header_row().
                   9206:              '<th>'.&mt('Specify a file containing clicker information and set grading options.').'</th>'.
                   9207:              &Apache::loncommon::end_data_table_header_row().
                   9208:              &Apache::loncommon::start_data_table_row()."<td>\n";
1.413     www      9209: # Attempt to restore parameters from last session, set defaults if not present
                   9210:     my %Saveable_Parameters=&clicker_grading_parameters();
                   9211:     &Apache::loncommon::restore_course_settings('grades_clicker',
                   9212:                                                  \%Saveable_Parameters);
                   9213:     if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
                   9214:     if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
                   9215:     if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
                   9216:     if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
                   9217: 
                   9218:     my %checked;
1.521     www      9219:     foreach my $gradingmechanism ('attendance','personnel','specific','given') {
1.413     www      9220:        if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
1.569     bisitz   9221:           $checked{$gradingmechanism}=' checked="checked"';
1.413     www      9222:        }
                   9223:     }
                   9224: 
1.632     www      9225:     my $upload=&mt("Evaluate File");
1.400     www      9226:     my $type=&mt("Type");
1.402     www      9227:     my $attendance=&mt("Award points just for participation");
                   9228:     my $personnel=&mt("Correctness determined from response by course personnel");
1.414     www      9229:     my $specific=&mt("Correctness determined from response with clicker ID(s)"); 
1.521     www      9230:     my $given=&mt("Correctness determined from given list of answers").' '.
                   9231:               '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
1.402     www      9232:     my $pcorrect=&mt("Percentage points for correct solution");
                   9233:     my $pincorrect=&mt("Percentage points for incorrect solution");
1.413     www      9234:     my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.635     raeburn  9235: 						   {'iclicker' => 'i>clicker',
1.666     www      9236:                                                     'interwrite' => 'interwrite PRS',
                   9237:                                                     'turning' => 'Turning Technologies'});
1.418     albertel 9238:     $symb = &Apache::lonenc::check_encrypt($symb);
1.597     wenzelju 9239:     $result.= &Apache::lonhtmlcommon::scripttag(<<ENDUPFORM);
1.402     www      9240: function sanitycheck() {
                   9241: // Accept only integer percentages
                   9242:    document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
                   9243:    document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
                   9244: // Find out grading choice
                   9245:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
                   9246:       if (document.forms.gradesupload.gradingmechanism[i].checked) {
                   9247:          gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
                   9248:       }
                   9249:    }
                   9250: // By default, new choice equals user selection
                   9251:    newgradingchoice=gradingchoice;
                   9252: // Not good to give more points for false answers than correct ones
                   9253:    if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
                   9254:       document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
                   9255:    }
                   9256: // If new choice is attendance only, and old choice was correctness-based, restore defaults
                   9257:    if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
                   9258:       document.forms.gradesupload.pcorrect.value=100;
                   9259:       document.forms.gradesupload.pincorrect.value=100;
                   9260:    }
                   9261: // If the values are different, cannot be attendance only
                   9262:    if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
                   9263:        (gradingchoice=='attendance')) {
                   9264:        newgradingchoice='personnel';
                   9265:    }
                   9266: // Change grading choice to new one
                   9267:    for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
                   9268:       if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
                   9269:          document.forms.gradesupload.gradingmechanism[i].checked=true;
                   9270:       } else {
                   9271:          document.forms.gradesupload.gradingmechanism[i].checked=false;
                   9272:       }
                   9273:    }
                   9274: // Remember the old state
                   9275:    document.forms.gradesupload.waschecked.value=newgradingchoice;
                   9276: }
1.597     wenzelju 9277: ENDUPFORM
                   9278:     $result.= <<ENDUPFORM;
1.400     www      9279: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
                   9280: <input type="hidden" name="symb" value="$symb" />
                   9281: <input type="hidden" name="command" value="processclickerfile" />
                   9282: <input type="file" name="upfile" size="50" />
                   9283: <br /><label>$type: $selectform</label>
1.632     www      9284: ENDUPFORM
                   9285:     $result.='</td>'.&Apache::loncommon::end_data_table_row().
                   9286:                      &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDGRADINGFORM);
                   9287:       <label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
1.589     bisitz   9288: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
                   9289: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
1.414     www      9290: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.589     bisitz   9291: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
1.521     www      9292: <br />&nbsp;&nbsp;&nbsp;
                   9293: <input type="text" name="givenanswer" size="50" />
1.413     www      9294: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
1.632     www      9295: ENDGRADINGFORM
                   9296:          $result.='</td>'.&Apache::loncommon::end_data_table_row().
                   9297:                      &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDPERCFORM);
                   9298:       <label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
1.589     bisitz   9299: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
                   9300: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.597     wenzelju 9301: </form>'
1.632     www      9302: ENDPERCFORM
                   9303:     $result.='</td>'.
                   9304:              &Apache::loncommon::end_data_table_row().
                   9305:              &Apache::loncommon::end_data_table();
1.400     www      9306:     return $result;
                   9307: }
                   9308: 
                   9309: sub process_clicker_file {
1.608     www      9310:     my ($r,$symb)=@_;
1.400     www      9311:     if (!$symb) {return '';}
1.413     www      9312: 
                   9313:     my %Saveable_Parameters=&clicker_grading_parameters();
                   9314:     &Apache::loncommon::store_course_settings('grades_clicker',
                   9315:                                               \%Saveable_Parameters);
1.598     www      9316:     my $result='';
1.404     www      9317:     if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408     albertel 9318: 	$result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
1.614     www      9319: 	return $result;
1.404     www      9320:     }
1.522     www      9321:     if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
1.521     www      9322:         $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
1.614     www      9323:         return $result;
1.521     www      9324:     }
1.522     www      9325:     my $foundgiven=0;
1.521     www      9326:     if ($env{'form.gradingmechanism'} eq 'given') {
                   9327:         $env{'form.givenanswer'}=~s/^\s*//gs;
                   9328:         $env{'form.givenanswer'}=~s/\s*$//gs;
1.644     www      9329:         $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
1.521     www      9330:         $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
1.522     www      9331:         my @answers=split(/\,/,$env{'form.givenanswer'});
                   9332:         $foundgiven=$#answers+1;
1.521     www      9333:     }
1.407     albertel 9334:     my %clicker_ids=&gather_clicker_ids();
1.408     albertel 9335:     my %correct_ids;
1.404     www      9336:     if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408     albertel 9337: 	%correct_ids=&gather_adv_clicker_ids();
1.404     www      9338:     }
                   9339:     if ($env{'form.gradingmechanism'} eq 'specific') {
1.414     www      9340: 	foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
                   9341: 	   $correct_id=~tr/a-z/A-Z/;
                   9342: 	   $correct_id=~s/\s//gs;
                   9343: 	   $correct_id=~s/^[\#0]+//;
1.421     www      9344:            $correct_id=~s/[\-\:]//g;
1.414     www      9345:            if ($correct_id) {
                   9346: 	      $correct_ids{$correct_id}='specified';
                   9347:            }
                   9348:         }
1.400     www      9349:     }
1.404     www      9350:     if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408     albertel 9351: 	$result.=&mt('Score based on attendance only');
1.521     www      9352:     } elsif ($env{'form.gradingmechanism'} eq 'given') {
1.522     www      9353:         $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
1.404     www      9354:     } else {
1.408     albertel 9355: 	my $number=0;
1.411     www      9356: 	$result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408     albertel 9357: 	foreach my $id (sort(keys(%correct_ids))) {
1.411     www      9358: 	    $result.='<br /><tt>'.$id.'</tt> - ';
1.408     albertel 9359: 	    if ($correct_ids{$id} eq 'specified') {
                   9360: 		$result.=&mt('specified');
                   9361: 	    } else {
                   9362: 		my ($uname,$udom)=split(/\:/,$correct_ids{$id});
                   9363: 		$result.=&Apache::loncommon::plainname($uname,$udom);
                   9364: 	    }
                   9365: 	    $number++;
                   9366: 	}
1.411     www      9367:         $result.="</p>\n";
1.408     albertel 9368: 	if ($number==0) {
                   9369: 	    $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
1.614     www      9370: 	    return $result;
1.408     albertel 9371: 	}
1.404     www      9372:     }
1.405     www      9373:     if (length($env{'form.upfile'}) < 2) {
1.407     albertel 9374:         $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
                   9375: 		     '<span class="LC_error">',
                   9376: 		     '</span>',
                   9377: 		     '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.614     www      9378:         return $result;
1.405     www      9379:     }
1.410     www      9380: 
                   9381: # Were able to get all the info needed, now analyze the file
                   9382: 
1.411     www      9383:     $result.=&Apache::loncommon::studentbrowser_javascript();
1.418     albertel 9384:     $symb = &Apache::lonenc::check_encrypt($symb);
1.632     www      9385:     $result.=&Apache::loncommon::start_data_table().
                   9386:              &Apache::loncommon::start_data_table_header_row().
                   9387:              '<th>'.&mt('Evaluate clicker file').'</th>'.
                   9388:              &Apache::loncommon::end_data_table_header_row().
                   9389:              &Apache::loncommon::start_data_table_row().(<<ENDHEADER);
                   9390: <td>
1.410     www      9391: <form method="post" action="/adm/grades" name="clickeranalysis">
                   9392: <input type="hidden" name="symb" value="$symb" />
                   9393: <input type="hidden" name="command" value="assignclickergrades" />
1.411     www      9394: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
                   9395: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
                   9396: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410     www      9397: ENDHEADER
1.522     www      9398:     if ($env{'form.gradingmechanism'} eq 'given') {
                   9399:        $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
                   9400:     } 
1.408     albertel 9401:     my %responses;
                   9402:     my @questiontitles;
1.405     www      9403:     my $errormsg='';
                   9404:     my $number=0;
                   9405:     if ($env{'form.upfiletype'} eq 'iclicker') {
1.408     albertel 9406: 	($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406     www      9407:     }
1.419     www      9408:     if ($env{'form.upfiletype'} eq 'interwrite') {
                   9409:         ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
                   9410:     }
1.666     www      9411:     if ($env{'form.upfiletype'} eq 'turning') {
                   9412:         ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
                   9413:     }
1.411     www      9414:     $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
                   9415:              '<input type="hidden" name="number" value="'.$number.'" />'.
                   9416:              &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
                   9417:                  $env{'form.pcorrect'},$env{'form.pincorrect'}).
                   9418:              '<br />';
1.522     www      9419:     if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
                   9420:        $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
1.614     www      9421:        return $result;
1.522     www      9422:     } 
1.414     www      9423: # Remember Question Titles
                   9424: # FIXME: Possibly need delimiter other than ":"
                   9425:     for (my $i=0;$i<$number;$i++) {
                   9426:         $result.='<input type="hidden" name="question:'.$i.'" value="'.
                   9427:                  &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
                   9428:     }
1.411     www      9429:     my $correct_count=0;
                   9430:     my $student_count=0;
                   9431:     my $unknown_count=0;
1.414     www      9432: # Match answers with usernames
                   9433: # FIXME: Possibly need delimiter other than ":"
1.409     albertel 9434:     foreach my $id (keys(%responses)) {
1.410     www      9435:        if ($correct_ids{$id}) {
1.414     www      9436:           $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411     www      9437:           $correct_count++;
1.410     www      9438:        } elsif ($clicker_ids{$id}) {
1.437     www      9439:           if ($clicker_ids{$id}=~/\,/) {
                   9440: # More than one user with the same clicker!
1.632     www      9441:              $result.="</td>".&Apache::loncommon::end_data_table_row().
                   9442:                            &Apache::loncommon::start_data_table_row()."<td>".
                   9443:                        &mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
1.437     www      9444:              $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
                   9445:                            "<select name='multi".$id."'>";
                   9446:              foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
                   9447:                  $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
                   9448:              }
                   9449:              $result.='</select>';
                   9450:              $unknown_count++;
                   9451:           } else {
                   9452: # Good: found one and only one user with the right clicker
                   9453:              $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
                   9454:              $student_count++;
                   9455:           }
1.410     www      9456:        } else {
1.632     www      9457:           $result.="</td>".&Apache::loncommon::end_data_table_row().
                   9458:                            &Apache::loncommon::start_data_table_row()."<td>".
                   9459:                     &mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
1.411     www      9460:           $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
                   9461:                    "\n".&mt("Username").": <input type='text' name='uname".$id."' />&nbsp;".
                   9462:                    "\n".&mt("Domain").": ".
                   9463:                    &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).'&nbsp;'.
1.643     www      9464:                    &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
1.411     www      9465:           $unknown_count++;
1.410     www      9466:        }
1.405     www      9467:     }
1.412     www      9468:     $result.='<hr />'.
                   9469:              &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
1.521     www      9470:     if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
1.412     www      9471:        if ($correct_count==0) {
                   9472:           $errormsg.="Found no correct answers answers for grading!";
                   9473:        } elsif ($correct_count>1) {
1.414     www      9474:           $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412     www      9475:        }
                   9476:     }
1.428     www      9477:     if ($number<1) {
                   9478:        $errormsg.="Found no questions.";
                   9479:     }
1.412     www      9480:     if ($errormsg) {
                   9481:        $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
                   9482:     } else {
                   9483:        $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
                   9484:     }
1.632     www      9485:     $result.='</form></td>'.
                   9486:              &Apache::loncommon::end_data_table_row().
                   9487:              &Apache::loncommon::end_data_table();
1.614     www      9488:     return $result;
1.400     www      9489: }
                   9490: 
1.405     www      9491: sub iclicker_eval {
1.406     www      9492:     my ($questiontitles,$responses)=@_;
1.405     www      9493:     my $number=0;
                   9494:     my $errormsg='';
                   9495:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410     www      9496:         my %components=&Apache::loncommon::record_sep($line);
                   9497:         my @entries=map {$components{$_}} (sort(keys(%components)));
1.408     albertel 9498: 	if ($entries[0] eq 'Question') {
                   9499: 	    for (my $i=3;$i<$#entries;$i+=6) {
                   9500: 		$$questiontitles[$number]=$entries[$i];
                   9501: 		$number++;
                   9502: 	    }
                   9503: 	}
                   9504: 	if ($entries[0]=~/^\#/) {
                   9505: 	    my $id=$entries[0];
                   9506: 	    my @idresponses;
                   9507: 	    $id=~s/^[\#0]+//;
                   9508: 	    for (my $i=0;$i<$number;$i++) {
                   9509: 		my $idx=3+$i*6;
1.644     www      9510:                 $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
1.408     albertel 9511: 		push(@idresponses,$entries[$idx]);
                   9512: 	    }
                   9513: 	    $$responses{$id}=join(',',@idresponses);
                   9514: 	}
1.405     www      9515:     }
                   9516:     return ($errormsg,$number);
                   9517: }
                   9518: 
1.419     www      9519: sub interwrite_eval {
                   9520:     my ($questiontitles,$responses)=@_;
                   9521:     my $number=0;
                   9522:     my $errormsg='';
1.420     www      9523:     my $skipline=1;
                   9524:     my $questionnumber=0;
                   9525:     my %idresponses=();
1.419     www      9526:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
                   9527:         my %components=&Apache::loncommon::record_sep($line);
                   9528:         my @entries=map {$components{$_}} (sort(keys(%components)));
1.420     www      9529:         if ($entries[1] eq 'Time') { $skipline=0; next; }
                   9530:         if ($entries[1] eq 'Response') { $skipline=1; }
                   9531:         next if $skipline;
                   9532:         if ($entries[0]!=$questionnumber) {
                   9533:            $questionnumber=$entries[0];
                   9534:            $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
                   9535:            $number++;
1.419     www      9536:         }
1.420     www      9537:         my $id=$entries[4];
                   9538:         $id=~s/^[\#0]+//;
1.421     www      9539:         $id=~s/^v\d*\://i;
                   9540:         $id=~s/[\-\:]//g;
1.420     www      9541:         $idresponses{$id}[$number]=$entries[6];
                   9542:     }
1.524     raeburn  9543:     foreach my $id (keys(%idresponses)) {
1.420     www      9544:        $$responses{$id}=join(',',@{$idresponses{$id}});
                   9545:        $$responses{$id}=~s/^\s*\,//;
1.419     www      9546:     }
                   9547:     return ($errormsg,$number);
                   9548: }
                   9549: 
1.666     www      9550: sub turning_eval {
                   9551:     my ($questiontitles,$responses)=@_;
                   9552:     my $number=0;
                   9553:     my $errormsg='';
                   9554:     foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
                   9555:         my %components=&Apache::loncommon::record_sep($line);
                   9556:         my @entries=map {$components{$_}} (sort(keys(%components)));
                   9557:         if ($#entries>$number) { $number=$#entries; }
                   9558:         my $id=$entries[0];
                   9559:         my @idresponses;
                   9560:         $id=~s/^[\#0]+//;
                   9561:         unless ($id) { next; }
                   9562:         for (my $idx=1;$idx<=$#entries;$idx++) {
                   9563:             $entries[$idx]=~s/\,/\;/g;
                   9564:             $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
                   9565:             push(@idresponses,$entries[$idx]);
                   9566:         }
                   9567:         $$responses{$id}=join(',',@idresponses);
                   9568:     }
                   9569:     for (my $i=1; $i<=$number; $i++) {
                   9570:         $$questiontitles[$i]=&mt('Question [_1]',$i);
                   9571:     }
                   9572:     return ($errormsg,$number);
                   9573: }
                   9574: 
                   9575: 
1.414     www      9576: sub assign_clicker_grades {
1.608     www      9577:     my ($r,$symb)=@_;
1.414     www      9578:     if (!$symb) {return '';}
1.416     www      9579: # See which part we are saving to
1.582     raeburn  9580:     my $res_error;
                   9581:     my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
                   9582:     if ($res_error) {
                   9583:         return &navmap_errormsg();
                   9584:     }
1.416     www      9585: # FIXME: This should probably look for the first handgradeable part
                   9586:     my $part=$$partlist[0];
                   9587: # Start screen output
1.632     www      9588:     my $result=&Apache::loncommon::start_data_table().
                   9589:              &Apache::loncommon::start_data_table_header_row().
                   9590:              '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
                   9591:              &Apache::loncommon::end_data_table_header_row().
                   9592:              &Apache::loncommon::start_data_table_row().'<td>';
1.414     www      9593: # Get correct result
                   9594: # FIXME: Possibly need delimiter other than ":"
                   9595:     my @correct=();
1.415     www      9596:     my $gradingmechanism=$env{'form.gradingmechanism'};
                   9597:     my $number=$env{'form.number'};
                   9598:     if ($gradingmechanism ne 'attendance') {
1.414     www      9599:        foreach my $key (keys(%env)) {
                   9600:           if ($key=~/^form\.correct\:/) {
                   9601:              my @input=split(/\,/,$env{$key});
                   9602:              for (my $i=0;$i<=$#input;$i++) {
                   9603:                  if (($correct[$i]) && ($input[$i]) &&
                   9604:                      ($correct[$i] ne $input[$i])) {
                   9605:                     $result.='<br /><span class="LC_warning">'.
                   9606:                              &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
                   9607:                                  $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
1.644     www      9608:                  } elsif (($input[$i]) || ($input[$i] eq '0')) {
1.414     www      9609:                     $correct[$i]=$input[$i];
                   9610:                  }
                   9611:              }
                   9612:           }
                   9613:        }
1.415     www      9614:        for (my $i=0;$i<$number;$i++) {
1.644     www      9615:           if ((!$correct[$i]) && ($correct[$i] ne '0')) {
1.414     www      9616:              $result.='<br /><span class="LC_error">'.
                   9617:                       &mt('No correct result given for question "[_1]"!',
                   9618:                           $env{'form.question:'.$i}).'</span>';
                   9619:           }
                   9620:        }
1.644     www      9621:        $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
1.414     www      9622:     }
                   9623: # Start grading
1.415     www      9624:     my $pcorrect=$env{'form.pcorrect'};
                   9625:     my $pincorrect=$env{'form.pincorrect'};
1.416     www      9626:     my $storecount=0;
1.632     www      9627:     my %users=();
1.415     www      9628:     foreach my $key (keys(%env)) {
1.420     www      9629:        my $user='';
1.415     www      9630:        if ($key=~/^form\.student\:(.*)$/) {
1.420     www      9631:           $user=$1;
                   9632:        }
                   9633:        if ($key=~/^form\.unknown\:(.*)$/) {
                   9634:           my $id=$1;
                   9635:           if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
                   9636:              $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437     www      9637:           } elsif ($env{'form.multi'.$id}) {
                   9638:              $user=$env{'form.multi'.$id};
1.420     www      9639:           }
                   9640:        }
1.632     www      9641:        if ($user) {
                   9642:           if ($users{$user}) {
                   9643:              $result.='<br /><span class="LC_warning">'.
                   9644:                       &mt("More than one entry found for <tt>[_1]</tt>!",$user).
                   9645:                       '</span><br />';
                   9646:           }
                   9647:           $users{$user}=1; 
1.415     www      9648:           my @answer=split(/\,/,$env{$key});
                   9649:           my $sum=0;
1.522     www      9650:           my $realnumber=$number;
1.415     www      9651:           for (my $i=0;$i<$number;$i++) {
1.576     www      9652:              if  ($correct[$i] eq '-') {
                   9653:                 $realnumber--;
1.644     www      9654:              } elsif (($answer[$i]) || ($answer[$i]=~/^[0\.]+$/))  {
1.415     www      9655:                 if ($gradingmechanism eq 'attendance') {
                   9656:                    $sum+=$pcorrect;
1.576     www      9657:                 } elsif ($correct[$i] eq '*') {
1.522     www      9658:                    $sum+=$pcorrect;
1.415     www      9659:                 } else {
1.644     www      9660: # We actually grade if correct or not
                   9661:                    my $increment=$pincorrect;
                   9662: # Special case: numerical answer "0"
                   9663:                    if ($correct[$i] eq '0') {
                   9664:                       if ($answer[$i]=~/^[0\.]+$/) {
                   9665:                          $increment=$pcorrect;
                   9666:                       }
                   9667: # General numerical answer, both evaluate to something non-zero
                   9668:                    } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
                   9669:                       if (1.0*$correct[$i]==1.0*$answer[$i]) {
                   9670:                          $increment=$pcorrect;
                   9671:                       }
                   9672: # Must be just alphanumeric
                   9673:                    } elsif ($answer[$i] eq $correct[$i]) {
                   9674:                       $increment=$pcorrect;
1.415     www      9675:                    }
1.644     www      9676:                    $sum+=$increment;
1.415     www      9677:                 }
                   9678:              }
                   9679:           }
1.522     www      9680:           my $ave=$sum/(100*$realnumber);
1.416     www      9681: # Store
                   9682:           my ($username,$domain)=split(/\:/,$user);
                   9683:           my %grades=();
                   9684:           $grades{"resource.$part.solved"}='correct_by_override';
                   9685:           $grades{"resource.$part.awarded"}=$ave;
                   9686:           $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
                   9687:           my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
                   9688:                                                  $env{'request.course.id'},
                   9689:                                                  $domain,$username);
                   9690:           if ($returncode ne 'ok') {
                   9691:              $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
                   9692:           } else {
                   9693:              $storecount++;
                   9694:           }
1.415     www      9695:        }
                   9696:     }
                   9697: # We are done
1.549     hauer    9698:     $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
1.632     www      9699:              '</td>'.
                   9700:              &Apache::loncommon::end_data_table_row().
                   9701:              &Apache::loncommon::end_data_table();
1.614     www      9702:     return $result;
1.414     www      9703: }
                   9704: 
1.582     raeburn  9705: sub navmap_errormsg {
                   9706:     return '<div class="LC_error">'.
                   9707:            &mt('An error occurred retrieving information about resources in the course.').'<br />'.
1.595     raeburn  9708:            &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>').
1.582     raeburn  9709:            '</div>';
                   9710: }
1.607     droeschl 9711: 
1.609     www      9712: sub startpage {
1.671     raeburn  9713:     my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
                   9714:     if ($nomenu) {
                   9715:         $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
                   9716:     } else {
                   9717:         unshift(@$crumbs,{href=>&href_symb_cmd($symb,'gradingmenu'),text=>"Grading"});
                   9718:         $r->print(&Apache::loncommon::start_page('Grading',$js,
                   9719:                                                  {'bread_crumbs' => $crumbs}));
                   9720:         &Apache::lonquickgrades::startGradeScreen($r,($env{'form.symb'}?'probgrading':'grading'));
                   9721:     }
1.613     www      9722:     unless ($nodisplayflag) {
1.671     raeburn  9723:        $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
1.613     www      9724:     }
1.607     droeschl 9725: }
1.582     raeburn  9726: 
1.622     www      9727: sub select_problem {
                   9728:     my ($r)=@_;
1.632     www      9729:     $r->print('<h3>'.&mt('Select the problem or one of the problems you want to grade').'</h3><form action="/adm/grades">');
1.622     www      9730:     $r->print(&Apache::lonstathelpers::problem_selector('.',undef,1));
                   9731:     $r->print('<input type="hidden" name="command" value="gradingmenu" />');
                   9732:     $r->print('<input type="submit" value="'.&mt('Next').' &rarr;" /></form>');
                   9733: }
                   9734: 
1.1       albertel 9735: sub handler {
1.41      ng       9736:     my $request=$_[0];
1.434     albertel 9737:     &reset_caches();
1.646     raeburn  9738:     if ($request->header_only) {
                   9739:         &Apache::loncommon::content_type($request,'text/html');
                   9740:         $request->send_http_header;
                   9741:         return OK;
                   9742:     }
                   9743:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
                   9744: 
1.664     raeburn  9745: # see what command we need to execute
                   9746: 
                   9747:     my @commands=&Apache::loncommon::get_env_multiple('form.command');
                   9748:     my $command=$commands[0];
                   9749: 
1.646     raeburn  9750:     &init_perm();
                   9751:     if (!$env{'request.course.id'}) {
1.664     raeburn  9752:         unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
                   9753:                 ($command =~ /^scantronupload/)) {
                   9754:             # Not in a course.
                   9755:             $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
                   9756:             return HTTP_NOT_ACCEPTABLE;
                   9757:         }
1.646     raeburn  9758:     } elsif (!%perm) {
                   9759:         $request->internal_redirect('/adm/quickgrades');
1.41      ng       9760:     }
1.646     raeburn  9761:     &Apache::loncommon::content_type($request,'text/html');
1.41      ng       9762:     $request->send_http_header;
1.646     raeburn  9763: 
1.160     albertel 9764:     if ($#commands > 0) {
                   9765: 	&Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
                   9766:     }
1.608     www      9767: 
                   9768: # see what the symb is
                   9769: 
                   9770:     my $symb=$env{'form.symb'};
                   9771:     unless ($symb) {
                   9772:        (my $url=$env{'form.url'}) =~ s-^https*://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
                   9773:        $symb=&Apache::lonnet::symbread($url);
                   9774:     }
1.646     raeburn  9775:     &Apache::lonenc::check_decrypt(\$symb);
1.608     www      9776: 
1.513     foxr     9777:     $ssi_error = 0;
1.637     www      9778:     if (($symb eq '' || $command eq '') && ($env{'request.course.id'})) {
1.601     www      9779: #
1.637     www      9780: # Not called from a resource, but inside a course
1.601     www      9781: #    
1.622     www      9782:         &startpage($request,undef,[],1,1);
                   9783:         &select_problem($request);
1.41      ng       9784:     } else {
1.104     albertel 9785: 	if ($command eq 'submission' && $perm{'vgr'}) {
1.671     raeburn  9786:             my ($stuvcurrent,$stuvdisp,$versionform,$js);
                   9787:             if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
                   9788:                 ($stuvcurrent,$stuvdisp,$versionform,$js) =
                   9789:                     &choose_task_version_form($symb,$env{'form.student'},
                   9790:                                               $env{'form.userdom'});
                   9791:             }
                   9792:             &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
                   9793:             if ($versionform) {
                   9794:                 $request->print($versionform);
                   9795:             }
                   9796:             $request->print('<br clear="all" />');
1.611     www      9797: 	    ($env{'form.student'} eq '' ? &listStudents($request,$symb) : &submission($request,0,0,$symb));
1.671     raeburn  9798:         } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
                   9799:             my ($stuvcurrent,$stuvdisp,$versionform,$js) =
                   9800:                 &choose_task_version_form($symb,$env{'form.student'},
                   9801:                                           $env{'form.userdom'},
                   9802:                                           $env{'form.inhibitmenu'});
                   9803:             &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
                   9804:             if ($versionform) {
                   9805:                 $request->print($versionform);
                   9806:             }
                   9807:             $request->print('<br clear="all" />');
                   9808:             $request->print(&show_previous_task_version($request,$symb));
1.103     albertel 9809: 	} elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.615     www      9810:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
                   9811:                                        {href=>'',text=>'Select student'}],1,1);
1.608     www      9812: 	    &pickStudentPage($request,$symb);
1.103     albertel 9813: 	} elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.615     www      9814:             &startpage($request,$symb,
                   9815:                                       [{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
                   9816:                                        {href=>'',text=>'Select student'},
                   9817:                                        {href=>'',text=>'Grade student'}],1,1);
1.608     www      9818: 	    &displayPage($request,$symb);
1.104     albertel 9819: 	} elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.616     www      9820:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
                   9821:                                        {href=>'',text=>'Select student'},
                   9822:                                        {href=>'',text=>'Grade student'},
                   9823:                                        {href=>'',text=>'Store grades'}],1,1);
1.608     www      9824: 	    &updateGradeByPage($request,$symb);
1.104     albertel 9825: 	} elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.619     www      9826:             &startpage($request,$symb,[{href=>'',text=>'...'},
                   9827:                                        {href=>'',text=>'Modify grades'}]);
1.608     www      9828: 	    &processGroup($request,$symb);
1.104     albertel 9829: 	} elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.608     www      9830:             &startpage($request,$symb);
                   9831: 	    $request->print(&grading_menu($request,$symb));
1.598     www      9832: 	} elsif ($command eq 'individual' && $perm{'vgr'}) {
1.617     www      9833:             &startpage($request,$symb,[{href=>'',text=>'Select individual students to grade'}]);
1.608     www      9834: 	    $request->print(&submit_options($request,$symb));
1.598     www      9835:         } elsif ($command eq 'ungraded' && $perm{'vgr'}) {
1.617     www      9836:             &startpage($request,$symb,[{href=>'',text=>'Grade ungraded submissions'}]);
                   9837:             $request->print(&listStudents($request,$symb,'graded'));
1.598     www      9838:         } elsif ($command eq 'table' && $perm{'vgr'}) {
1.614     www      9839:             &startpage($request,$symb,[{href=>"", text=>"Grading table"}]);
1.611     www      9840:             $request->print(&submit_options_table($request,$symb));
1.598     www      9841:         } elsif ($command eq 'all_for_one' && $perm{'vgr'}) {
1.615     www      9842:             &startpage($request,$symb,[{href=>'',text=>'Grade page/folder for one student'}],1,1);
1.608     www      9843:             $request->print(&submit_options_sequence($request,$symb));
1.104     albertel 9844: 	} elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.614     www      9845:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},{href=>'', text=>"Modify grades"}]);
1.608     www      9846: 	    $request->print(&viewgrades($request,$symb));
1.104     albertel 9847: 	} elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.620     www      9848:             &startpage($request,$symb,[{href=>'',text=>'...'},
                   9849:                                        {href=>'',text=>'Store grades'}]);
1.608     www      9850: 	    $request->print(&processHandGrade($request,$symb));
1.106     albertel 9851: 	} elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.614     www      9852:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},
                   9853:                                        {href=>&href_symb_cmd($symb,'viewgrades').'&group=all&section=all&Status=Active',
                   9854:                                                                              text=>"Modify grades"},
                   9855:                                        {href=>'', text=>"Store grades"}]);
1.608     www      9856: 	    $request->print(&editgrades($request,$symb));
1.602     www      9857:         } elsif ($command eq 'initialverifyreceipt' && $perm{'vgr'}) {
1.616     www      9858:             &startpage($request,$symb,[{href=>'',text=>'Verify Receipt Number'}]);
1.611     www      9859:             $request->print(&initialverifyreceipt($request,$symb));
1.106     albertel 9860: 	} elsif ($command eq 'verify' && $perm{'vgr'}) {
1.616     www      9861:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"initialverifyreceipt"),text=>'Verify Receipt Number'},
                   9862:                                        {href=>'',text=>'Verification Result'}]);
1.608     www      9863: 	    $request->print(&verifyreceipt($request,$symb));
1.400     www      9864:         } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
1.615     www      9865:             &startpage($request,$symb,[{href=>'', text=>'Process clicker'}]);
1.608     www      9866:             $request->print(&process_clicker($request,$symb));
1.400     www      9867:         } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
1.615     www      9868:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
                   9869:                                        {href=>'', text=>'Process clicker file'}]);
1.608     www      9870:             $request->print(&process_clicker_file($request,$symb));
1.414     www      9871:         } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
1.615     www      9872:             &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
                   9873:                                        {href=>'', text=>'Process clicker file'},
                   9874:                                        {href=>'', text=>'Store grades'}]);
1.608     www      9875:             $request->print(&assign_clicker_grades($request,$symb));
1.106     albertel 9876: 	} elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.627     www      9877:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608     www      9878: 	    $request->print(&upcsvScores_form($request,$symb));
1.106     albertel 9879: 	} elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.627     www      9880:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608     www      9881: 	    $request->print(&csvupload($request,$symb));
1.106     albertel 9882: 	} elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.627     www      9883:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608     www      9884: 	    $request->print(&csvuploadmap($request,$symb));
1.246     albertel 9885: 	} elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257     albertel 9886: 	    if ($env{'form.associate'} ne 'Reverse Association') {
1.627     www      9887:                 &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608     www      9888: 		$request->print(&csvuploadoptions($request,$symb));
1.41      ng       9889: 	    } else {
1.257     albertel 9890: 		if ( $env{'form.upfile_associate'} ne 'reverse' ) {
                   9891: 		    $env{'form.upfile_associate'} = 'reverse';
1.41      ng       9892: 		} else {
1.257     albertel 9893: 		    $env{'form.upfile_associate'} = 'forward';
1.41      ng       9894: 		}
1.627     www      9895:                 &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608     www      9896: 		$request->print(&csvuploadmap($request,$symb));
1.41      ng       9897: 	    }
1.246     albertel 9898: 	} elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
1.627     www      9899:             &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608     www      9900: 	    $request->print(&csvuploadassign($request,$symb));
1.106     albertel 9901: 	} elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.616     www      9902:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.612     www      9903: 	    $request->print(&scantron_selectphase($request,undef,$symb));
1.203     albertel 9904:  	} elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
1.616     www      9905:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608     www      9906:  	    $request->print(&scantron_do_warning($request,$symb));
1.142     albertel 9907: 	} elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
1.616     www      9908:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608     www      9909: 	    $request->print(&scantron_validate_file($request,$symb));
1.106     albertel 9910: 	} elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.616     www      9911:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608     www      9912: 	    $request->print(&scantron_process_students($request,$symb));
1.157     albertel 9913:  	} elsif ($command eq 'scantronupload' && 
1.257     albertel 9914:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
                   9915: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616     www      9916:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608     www      9917:  	    $request->print(&scantron_upload_scantron_data($request,$symb)); 
1.157     albertel 9918:  	} elsif ($command eq 'scantronupload_save' &&
1.257     albertel 9919:  		 (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
                   9920: 		  &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616     www      9921:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608     www      9922:  	    $request->print(&scantron_upload_scantron_data_save($request,$symb));
1.202     albertel 9923:  	} elsif ($command eq 'scantron_download' &&
1.257     albertel 9924: 		 &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.616     www      9925:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608     www      9926:  	    $request->print(&scantron_download_scantron_data($request,$symb));
1.523     raeburn  9927:         } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
1.616     www      9928:             &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.621     www      9929:             $request->print(&checkscantron_results($request,$symb));
                   9930:         } elsif ($command eq 'downloadfilesselect' && $perm{'vgr'}) {
                   9931:             &startpage($request,$symb,[{href=>'', text=>'Select which submissions to download'}]);
                   9932:             $request->print(&submit_options_download($request,$symb));
                   9933:          } elsif ($command eq 'downloadfileslink' && $perm{'vgr'}) {
                   9934:             &startpage($request,$symb,
                   9935:    [{href=>&href_symb_cmd($symb,'downloadfilesselect'), text=>'Select which submissions to download'},
                   9936:     {href=>'', text=>'Download submissions'}]);
                   9937:             &submit_download_link($request,$symb);
1.106     albertel 9938: 	} elsif ($command) {
1.620     www      9939:             &startpage($request,$symb,[{href=>'', text=>'Access denied'}]);
1.562     bisitz   9940: 	    $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
1.26      albertel 9941: 	}
1.2       albertel 9942:     }
1.513     foxr     9943:     if ($ssi_error) {
                   9944: 	&ssi_print_error($request);
                   9945:     }
1.671     raeburn  9946:     if ($env{'form.inhibitmenu'}) {
                   9947:         $request->print(&Apache::loncommon::end_page());
                   9948:     } else {
                   9949:         &Apache::lonquickgrades::endGradeScreen($request);
                   9950:     }
1.434     albertel 9951:     &reset_caches();
1.646     raeburn  9952:     return OK;
1.44      ng       9953: }
                   9954: 
1.1       albertel 9955: 1;
                   9956: 
1.13      albertel 9957: __END__;
1.531     jms      9958: 
                   9959: 
                   9960: =head1 NAME
                   9961: 
                   9962: Apache::grades
                   9963: 
                   9964: =head1 SYNOPSIS
                   9965: 
                   9966: Handles the viewing of grades.
                   9967: 
                   9968: This is part of the LearningOnline Network with CAPA project
                   9969: described at http://www.lon-capa.org.
                   9970: 
                   9971: =head1 OVERVIEW
                   9972: 
                   9973: Do an ssi with retries:
                   9974: While I'd love to factor out this with the vesrion in lonprintout,
                   9975: 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
                   9976: I'm not quite ready to invent (e.g. an ssi_with_retry object).
                   9977: 
                   9978: At least the logic that drives this has been pulled out into loncommon.
                   9979: 
                   9980: 
                   9981: 
                   9982: ssi_with_retries - Does the server side include of a resource.
                   9983:                      if the ssi call returns an error we'll retry it up to
                   9984:                      the number of times requested by the caller.
                   9985:                      If we still have a proble, no text is appended to the
                   9986:                      output and we set some global variables.
                   9987:                      to indicate to the caller an SSI error occurred.  
                   9988:                      All of this is supposed to deal with the issues described
                   9989:                      in LonCAPA BZ 5631 see:
                   9990:                      http://bugs.lon-capa.org/show_bug.cgi?id=5631
                   9991:                      by informing the user that this happened.
                   9992: 
                   9993: Parameters:
                   9994:   resource   - The resource to include.  This is passed directly, without
                   9995:                interpretation to lonnet::ssi.
                   9996:   form       - The form hash parameters that guide the interpretation of the resource
                   9997:                
                   9998:   retries    - Number of retries allowed before giving up completely.
                   9999: Returns:
                   10000:   On success, returns the rendered resource identified by the resource parameter.
                   10001: Side Effects:
                   10002:   The following global variables can be set:
                   10003:    ssi_error                - If an unrecoverable error occurred this becomes true.
                   10004:                               It is up to the caller to initialize this to false
                   10005:                               if desired.
                   10006:    ssi_error_resource  - If an unrecoverable error occurred, this is the value
                   10007:                               of the resource that could not be rendered by the ssi
                   10008:                               call.
                   10009:    ssi_error_message   - The error string fetched from the ssi response
                   10010:                               in the event of an error.
                   10011: 
                   10012: 
                   10013: =head1 HANDLER SUBROUTINE
                   10014: 
                   10015: ssi_with_retries()
                   10016: 
                   10017: =head1 SUBROUTINES
                   10018: 
                   10019: =over
                   10020: 
1.671     raeburn  10021: =head1 Routines to display previous version of a Task for a specific student
                   10022: 
                   10023: Tasks are graded pass/fail. Students who have yet to pass a particular Task
                   10024: can receive another opportunity. Access to tasks is slot-based. If a slot
                   10025: requires a proctor to check-in the student, a new version of the Task will
                   10026: be created when the student is checked in to the new opportunity.
                   10027: 
                   10028: If a particular student has tried two or more versions of a particular task,
                   10029: the submission screen provides a user with vgr privileges (e.g., a Course
                   10030: Coordinator) the ability to display a previous version worked on by the
                   10031: student.  By default, the current version is displayed. If a previous version
                   10032: has been selected for display, submission data are only shown that pertain
                   10033: to that particular version, and the interface to submit grades is not shown.
                   10034: 
                   10035: =over 4
                   10036: 
                   10037: =item show_previous_task_version()
                   10038: 
                   10039: Displays a specified version of a student's Task, as the student sees it.
                   10040: 
                   10041: Inputs: 2
                   10042:         request - request object
                   10043:         symb    - unique symb for current instance of resource
                   10044: 
                   10045: Output: None.
                   10046: 
                   10047: Side Effects: calls &show_problem() to print version of Task, with
                   10048:               version contained in form item: $env{'form.previousversion'}
                   10049: 
                   10050: =item choose_task_version_form()
                   10051: 
                   10052: Displays a web form used to select which version of a student's view of a
                   10053: Task should be displayed.  Either launches a pop-up window, or replaces
                   10054: content in existing pop-up, or replaces page in main window.
                   10055: 
                   10056: Inputs: 4
                   10057:         symb    - unique symb for current instance of resource
                   10058:         uname   - username of student
                   10059:         udom    - domain of student
                   10060:         nomenu  - 1 if display is in a pop-up window, and hence no menu
                   10061:                   breadcrumbs etc., are displayed
                   10062: 
                   10063: Output: 4
                   10064:         current   - student's current version
                   10065:         displayed - student's version being displayed
                   10066:         result    - scalar containing HTML for web form used to switch to
                   10067:                     a different version (or a link to close window, if pop-up).
                   10068:         js        - javascript for processing selection in versions web form
                   10069: 
                   10070: Side Effects: None.
                   10071: 
                   10072: =item previous_display_javascript()
                   10073: 
                   10074: Inputs: 2
                   10075:         nomenu  - 1 if display is in a pop-up window, and hence no menu
                   10076:                   breadcrumbs etc., are displayed.
                   10077:         current - student's current version number.
                   10078: 
                   10079: Output: 1
                   10080:         js      - javascript for processing selection in versions web form.
                   10081: 
                   10082: Side Effects: None.
                   10083: 
                   10084: =back
                   10085: 
                   10086: =head1 Routines to process bubblesheet data.
                   10087: 
                   10088: =over 4
                   10089: 
1.531     jms      10090: =item scantron_get_correction() : 
                   10091: 
                   10092:    Builds the interface screen to interact with the operator to fix a
                   10093:    specific error condition in a specific scanline
                   10094: 
                   10095:  Arguments:
                   10096:     $r           - Apache request object
                   10097:     $i           - number of the current scanline
                   10098:     $scan_record - hash ref as returned from &scantron_parse_scanline()
                   10099:     $scan_config - hash ref as returned from &get_scantron_config()
                   10100:     $line        - full contents of the current scanline
                   10101:     $error       - error condition, valid values are
                   10102:                    'incorrectCODE', 'duplicateCODE',
                   10103:                    'doublebubble', 'missingbubble',
                   10104:                    'duplicateID', 'incorrectID'
                   10105:     $arg         - extra information needed
                   10106:        For errors:
                   10107:          - duplicateID   - paper number that this studentID was seen before on
                   10108:          - duplicateCODE - array ref of the paper numbers this CODE was
                   10109:                            seen on before
                   10110:          - incorrectCODE - current incorrect CODE 
                   10111:          - doublebubble  - array ref of the bubble lines that have double
                   10112:                            bubble errors
                   10113:          - missingbubble - array ref of the bubble lines that have missing
                   10114:                            bubble errors
                   10115: 
                   10116: =item  scantron_get_maxbubble() : 
                   10117: 
1.582     raeburn  10118:    Arguments:
                   10119:        $nav_error  - Reference to scalar which is a flag to indicate a
                   10120:                       failure to retrieve a navmap object.
                   10121:        if $nav_error is set to 1 by scantron_get_maxbubble(), the 
                   10122:        calling routine should trap the error condition and display the warning
                   10123:        found in &navmap_errormsg().
                   10124: 
1.649     raeburn  10125:        $scantron_config - Reference to bubblesheet format configuration hash.
                   10126: 
1.531     jms      10127:    Returns the maximum number of bubble lines that are expected to
                   10128:    occur. Does this by walking the selected sequence rendering the
                   10129:    resource and then checking &Apache::lonxml::get_problem_counter()
                   10130:    for what the current value of the problem counter is.
                   10131: 
                   10132:    Caches the results to $env{'form.scantron_maxbubble'},
                   10133:    $env{'form.scantron.bubble_lines.n'}, 
                   10134:    $env{'form.scantron.first_bubble_line.n'} and
                   10135:    $env{"form.scantron.sub_bubblelines.n"}
                   10136:    which are the total number of bubble, lines, the number of bubble
                   10137:    lines for response n and number of the first bubble line for response n,
                   10138:    and a comma separated list of numbers of bubble lines for sub-questions
                   10139:    (for optionresponse, matchresponse, and rankresponse items), for response n.  
                   10140: 
                   10141: 
                   10142: =item  scantron_validate_missingbubbles() : 
                   10143: 
                   10144:    Validates all scanlines in the selected file to not have any
                   10145:     answers that don't have bubbles that have not been verified
                   10146:     to be bubble free.
                   10147: 
                   10148: =item  scantron_process_students() : 
                   10149: 
1.659     raeburn  10150:    Routine that does the actual grading of the bubblesheet information.
1.531     jms      10151: 
                   10152:    The parsed scanline hash is added to %env 
                   10153: 
                   10154:    Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
                   10155:    foreach resource , with the form data of
                   10156: 
                   10157: 	'submitted'     =>'scantron' 
                   10158: 	'grade_target'  =>'grade',
                   10159: 	'grade_username'=> username of student
                   10160: 	'grade_domain'  => domain of student
                   10161: 	'grade_courseid'=> of course
                   10162: 	'grade_symb'    => symb of resource to grade
                   10163: 
                   10164:     This triggers a grading pass. The problem grading code takes care
                   10165:     of converting the bubbled letter information (now in %env) into a
                   10166:     valid submission.
                   10167: 
                   10168: =item  scantron_upload_scantron_data() :
                   10169: 
1.659     raeburn  10170:     Creates the screen for adding a new bubblesheet data file to a course.
1.531     jms      10171: 
                   10172: =item  scantron_upload_scantron_data_save() : 
                   10173: 
                   10174:    Adds a provided bubble information data file to the course if user
                   10175:    has the correct privileges to do so. 
                   10176: 
                   10177: =item  valid_file() :
                   10178: 
                   10179:    Validates that the requested bubble data file exists in the course.
                   10180: 
                   10181: =item  scantron_download_scantron_data() : 
                   10182: 
                   10183:    Shows a list of the three internal files (original, corrected,
1.659     raeburn  10184:    skipped) for a specific bubblesheet data file that exists in the
1.531     jms      10185:    course.
                   10186: 
                   10187: =item  scantron_validate_ID() : 
                   10188: 
                   10189:    Validates all scanlines in the selected file to not have any
1.556     weissno  10190:    invalid or underspecified student/employee IDs
1.531     jms      10191: 
1.582     raeburn  10192: =item navmap_errormsg() :
                   10193: 
                   10194:    Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
1.671     raeburn  10195:    Should be called whenever the request to instantiate a navmap object fails.
                   10196: 
                   10197: =back
1.582     raeburn  10198: 
1.531     jms      10199: =back
                   10200: 
                   10201: =cut

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