Annotation of loncom/homework/grades.pm, revision 1.596.2.12.2.11
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.596.2.12.2. 1(raebur 4:2): # $Id: grades.pm,v 1.596.2.12.2.10 2012/12/10 13:28:54 raeburn 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.596.2.4 raeburn 43: use Apache::Constants qw(:common :http);
1.167 sakharuk 44: use Apache::lonlocal;
1.386 raeburn 45: use Apache::lonenc;
1.596.2.4 raeburn 46: use Apache::bridgetask();
1.170 albertel 47: use String::Similarity;
1.359 www 48: use LONCAPA;
49:
1.315 bowersj2 50: use POSIX qw(floor);
1.87 www 51:
1.435 foxr 52:
1.513 foxr 53:
1.435 foxr 54: my %perm=();
1.596.2.12.2. (raeburn 55:): my %old_essays=();
1.447 foxr 56:
1.513 foxr 57: # These variables are used to recover from ssi errors
58:
59: my $ssi_retries = 5;
60: my $ssi_error;
61: my $ssi_error_resource;
62: my $ssi_error_message;
63:
64:
65: sub ssi_with_retries {
66: my ($resource, $retries, %form) = @_;
67: my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
68: if ($response->is_error) {
69: $ssi_error = 1;
70: $ssi_error_resource = $resource;
71: $ssi_error_message = $response->code . " " . $response->message;
72: }
73:
74: return $content;
75:
76: }
77: #
78: # Prodcuces an ssi retry failure error message to the user:
79: #
80:
81: sub ssi_print_error {
82: my ($r) = @_;
1.516 raeburn 83: my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
84: $r->print('
85: <br />
86: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
87: <p>
88: '.&mt('Unable to retrieve a resource from a server:').'<br />
89: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
90: '.&mt('Error:').' '.$ssi_error_message.'
91: </p>
92: <p>'.
93: &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 />'.
94: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
95: '</p>');
96: return;
1.513 foxr 97: }
98:
1.44 ng 99: #
1.146 albertel 100: # --- Retrieve the parts from the metadata file.---
1.44 ng 101: sub getpartlist {
1.582 raeburn 102: my ($symb,$errorref) = @_;
1.439 albertel 103:
104: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 105: unless (ref($navmap)) {
106: if (ref($errorref)) {
107: $$errorref = 'navmap';
108: return;
109: }
110: }
1.439 albertel 111: my $res = $navmap->getBySymb($symb);
112: my $partlist = $res->parts();
113: my $url = $res->src();
114: my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
115:
1.146 albertel 116: my @stores;
1.439 albertel 117: foreach my $part (@{ $partlist }) {
1.146 albertel 118: foreach my $key (@metakeys) {
119: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
120: }
121: }
122: return @stores;
1.2 albertel 123: }
124:
1.44 ng 125: # --- Get the symbolic name of a problem and the url
1.324 albertel 126: sub get_symb {
1.173 albertel 127: my ($request,$silent) = @_;
1.596.2.12.2. (raeburn 128:): my $symb=$env{'form.symb'};
129:): unless ($symb) {
130:): (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
131:): $symb = &Apache::lonnet::symbread($url);
132:): if ($symb eq '') {
133:): if (!$silent) {
134:): $request->print(&mt("Unable to handle ambiguous references: [_1].",$url));
135:): return ();
136:): }
137:): }
1.173 albertel 138: }
1.418 albertel 139: &Apache::lonenc::check_decrypt(\$symb);
1.324 albertel 140: return ($symb);
1.32 ng 141: }
142:
1.129 ng 143: #--- Format fullname, username:domain if different for display
144: #--- Use anywhere where the student names are listed
145: sub nameUserString {
146: my ($type,$fullname,$uname,$udom) = @_;
147: if ($type eq 'header') {
1.485 albertel 148: return '<b> '.&mt('Fullname').' </b><span class="LC_internal_info">('.&mt('Username').')</span>';
1.129 ng 149: } else {
1.398 albertel 150: return ' '.$fullname.'<span class="LC_internal_info"> ('.$uname.
151: ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129 ng 152: }
153: }
154:
1.44 ng 155: #--- Get the partlist and the response type for a given problem. ---
156: #--- Indicate if a response type is coded handgraded or not. ---
1.39 ng 157: sub response_type {
1.582 raeburn 158: my ($symb,$response_error) = @_;
1.377 albertel 159:
160: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 161: unless (ref($navmap)) {
162: if (ref($response_error)) {
163: $$response_error = 1;
164: }
165: return;
166: }
1.377 albertel 167: my $res = $navmap->getBySymb($symb);
1.593 raeburn 168: unless (ref($res)) {
169: $$response_error = 1;
170: return;
171: }
1.377 albertel 172: my $partlist = $res->parts();
1.392 albertel 173: my %vPart =
174: map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377 albertel 175: my (%response_types,%handgrade);
176: foreach my $part (@{ $partlist }) {
1.392 albertel 177: next if (%vPart && !exists($vPart{$part}));
178:
1.377 albertel 179: my @types = $res->responseType($part);
180: my @ids = $res->responseIds($part);
181: for (my $i=0; $i < scalar(@ids); $i++) {
182: $response_types{$part}{$ids[$i]} = $types[$i];
183: $handgrade{$part.'_'.$ids[$i]} =
184: &Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
185: '.handgrade',$symb);
1.41 ng 186: }
187: }
1.377 albertel 188: return ($partlist,\%handgrade,\%response_types);
1.39 ng 189: }
190:
1.375 albertel 191: sub flatten_responseType {
192: my ($responseType) = @_;
193: my @part_response_id =
194: map {
195: my $part = $_;
196: map {
197: [$part,$_]
198: } sort(keys(%{ $responseType->{$part} }));
199: } sort(keys(%$responseType));
200: return @part_response_id;
201: }
202:
1.207 albertel 203: sub get_display_part {
1.324 albertel 204: my ($partID,$symb)=@_;
1.207 albertel 205: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
206: if (defined($display) and $display ne '') {
1.577 bisitz 207: $display.= ' (<span class="LC_internal_info">'
208: .&mt('Part ID: [_1]',$partID).'</span>)';
1.207 albertel 209: } else {
210: $display=$partID;
211: }
212: return $display;
213: }
1.269 raeburn 214:
1.118 ng 215: #--- Show resource title
216: #--- and parts and response type
217: sub showResourceInfo {
1.582 raeburn 218: my ($symb,$probTitle,$checkboxes,$res_error) = @_;
1.398 albertel 219: my $result = '<h3>'.&mt('Current Resource').': '.$probTitle.'</h3>'."\n";
1.582 raeburn 220: my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error);
221: if (ref($res_error)) {
222: if ($$res_error) {
223: return;
224: }
225: }
1.584 bisitz 226: $result.=&Apache::loncommon::start_data_table()
227: .&Apache::loncommon::start_data_table_header_row();
228: if ($checkboxes) {
229: $result.='<th> </th>';
230: }
231: $result.='<th>'.&mt('Problem Part').'</th>'
232: .'<th>'.&mt('Res. ID').'</th>'
233: .'<th>'.&mt('Type').'</th>'
234: .&Apache::loncommon::end_data_table_header_row();
1.126 ng 235: my %resptype = ();
1.122 ng 236: my $hdgrade='no';
1.154 albertel 237: my %partsseen;
1.524 raeburn 238: foreach my $partID (sort(keys(%$responseType))) {
1.584 bisitz 239: foreach my $resID (sort(keys(%{ $responseType->{$partID} }))) {
240: my $handgrade=$$handgrade{$partID.'_'.$resID};
241: my $responsetype = $responseType->{$partID}->{$resID};
242: $hdgrade = $handgrade if ($handgrade eq 'yes');
243: $result.=&Apache::loncommon::start_data_table_row();
244: if ($checkboxes) {
245: if (exists($partsseen{$partID})) {
246: $result.="<td> </td>";
247: } else {
248: $result.="<td><input type='checkbox' name='vPart' value='$partID' checked='checked' /></td>";
249: }
250: $partsseen{$partID}=1;
251: }
252: my $display_part=&get_display_part($partID,$symb);
253: $result.='<td>'.$display_part.'</td>'
254: .'<td>'.'<span class="LC_internal_info">'.$resID.'</span></td>'
255: .'<td>'.&mt($responsetype).'</td>'
256: # .'<td>'.&mt('<b>Handgrade: </b>[_1]',$handgrade).'</td>'
257: .&Apache::loncommon::end_data_table_row();
258: }
1.118 ng 259: }
1.584 bisitz 260: $result.=&Apache::loncommon::end_data_table();
1.147 albertel 261: return $result,$responseType,$hdgrade,$partlist,$handgrade;
1.118 ng 262: }
263:
1.434 albertel 264: sub reset_caches {
265: &reset_analyze_cache();
266: &reset_perm();
1.596.2.12.2. (raeburn 267:): &reset_old_essays();
1.434 albertel 268: }
269:
270: {
271: my %analyze_cache;
1.557 raeburn 272: my %analyze_cache_formkeys;
1.148 albertel 273:
1.434 albertel 274: sub reset_analyze_cache {
275: undef(%analyze_cache);
1.557 raeburn 276: undef(%analyze_cache_formkeys);
1.434 albertel 277: }
278:
279: sub get_analyze {
1.596.2.12.2. (raeburn 280:): my ($symb,$uname,$udom,$no_increment,$add_to_hash,$type,$trial,$rndseed,$bubbles_per_row)=@_;
1.434 albertel 281: my $key = "$symb\0$uname\0$udom";
1.596.2.2 raeburn 282: if ($type eq 'randomizetry') {
283: if ($trial ne '') {
284: $key .= "\0".$trial;
285: }
286: }
1.557 raeburn 287: if (exists($analyze_cache{$key})) {
288: my $getupdate = 0;
289: if (ref($add_to_hash) eq 'HASH') {
290: foreach my $item (keys(%{$add_to_hash})) {
291: if (ref($analyze_cache_formkeys{$key}) eq 'HASH') {
292: if (!exists($analyze_cache_formkeys{$key}{$item})) {
293: $getupdate = 1;
294: last;
295: }
296: } else {
297: $getupdate = 1;
298: }
299: }
300: }
301: if (!$getupdate) {
302: return $analyze_cache{$key};
303: }
304: }
1.434 albertel 305:
306: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
307: $url=&Apache::lonnet::clutter($url);
1.557 raeburn 308: my %form = ('grade_target' => 'analyze',
309: 'grade_domain' => $udom,
310: 'grade_symb' => $symb,
311: 'grade_courseid' => $env{'request.course.id'},
312: 'grade_username' => $uname,
313: 'grade_noincrement' => $no_increment);
1.596.2.12.2. (raeburn 314:): if ($bubbles_per_row ne '') {
315:): $form{'bubbles_per_row'} = $bubbles_per_row;
316:): }
1.596.2.2 raeburn 317: if ($type eq 'randomizetry') {
318: $form{'grade_questiontype'} = $type;
319: if ($rndseed ne '') {
320: $form{'grade_rndseed'} = $rndseed;
321: }
322: }
1.557 raeburn 323: if (ref($add_to_hash)) {
324: %form = (%form,%{$add_to_hash});
1.596.2.2 raeburn 325: }
1.557 raeburn 326: my $subresult=&ssi_with_retries($url, $ssi_retries,%form);
1.434 albertel 327: (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
328: my %analyze=&Apache::lonnet::str2hash($subresult);
1.557 raeburn 329: if (ref($add_to_hash) eq 'HASH') {
330: $analyze_cache_formkeys{$key} = $add_to_hash;
331: } else {
332: $analyze_cache_formkeys{$key} = {};
333: }
1.434 albertel 334: return $analyze_cache{$key} = \%analyze;
335: }
336:
337: sub get_order {
1.596.2.2 raeburn 338: my ($partid,$respid,$symb,$uname,$udom,$no_increment,$type,$trial,$rndseed)=@_;
339: my $analyze = &get_analyze($symb,$uname,$udom,$no_increment,undef,$type,$trial,$rndseed);
1.434 albertel 340: return $analyze->{"$partid.$respid.shown"};
341: }
342:
343: sub get_radiobutton_correct_foil {
1.596.2.2 raeburn 344: my ($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed)=@_;
345: my $analyze = &get_analyze($symb,$uname,$udom,undef,undef,$type,$trial,$rndseed);
346: my $foils = &get_order($partid,$respid,$symb,$uname,$udom,undef,$type,$trial,$rndseed);
1.555 raeburn 347: if (ref($foils) eq 'ARRAY') {
348: foreach my $foil (@{$foils}) {
349: if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
350: return $foil;
351: }
1.434 albertel 352: }
353: }
354: }
1.554 raeburn 355:
356: sub scantron_partids_tograde {
1.596.2.12.2. (raeburn 357:): my ($resource,$cid,$uname,$udom,$check_for_randomlist,$bubbles_per_row) = @_;
1.554 raeburn 358: my (%analysis,@parts);
359: if (ref($resource)) {
360: my $symb = $resource->symb();
1.557 raeburn 361: my $add_to_form;
362: if ($check_for_randomlist) {
363: $add_to_form = { 'check_parts_withrandomlist' => 1,};
364: }
1.596.2.12.2. (raeburn 365:): my $analyze =
366:): &get_analyze($symb,$uname,$udom,undef,$add_to_form,
367:): undef,undef,undef,$bubbles_per_row);
1.554 raeburn 368: if (ref($analyze) eq 'HASH') {
369: %analysis = %{$analyze};
370: }
371: if (ref($analysis{'parts'}) eq 'ARRAY') {
372: foreach my $part (@{$analysis{'parts'}}) {
373: my ($id,$respid) = split(/\./,$part);
374: if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
375: push(@parts,$part);
376: }
377: }
378: }
379: }
380: return (\%analysis,\@parts);
381: }
382:
1.148 albertel 383: }
1.434 albertel 384:
1.118 ng 385: #--- Clean response type for display
1.335 albertel 386: #--- Currently filters option/rank/radiobutton/match/essay/Task
387: # response types only.
1.118 ng 388: sub cleanRecord {
1.336 albertel 389: my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
1.596.2.2 raeburn 390: $uname,$udom,$type,$trial,$rndseed) = @_;
1.398 albertel 391: my $grayFont = '<span class="LC_internal_info">';
1.148 albertel 392: if ($response =~ /^(option|rank)$/) {
393: my %answer=&Apache::lonnet::str2hash($answer);
394: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
395: my ($toprow,$bottomrow);
396: foreach my $foil (@$order) {
397: if ($grading{$foil} == 1) {
398: $toprow.='<td><b>'.$answer{$foil}.' </b></td>';
399: } else {
400: $toprow.='<td><i>'.$answer{$foil}.' </i></td>';
401: }
1.398 albertel 402: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 403: }
404: return '<blockquote><table border="1">'.
1.466 albertel 405: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
406: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.596.2.1 raeburn 407: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 408: } elsif ($response eq 'match') {
409: my %answer=&Apache::lonnet::str2hash($answer);
410: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
411: my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
412: my ($toprow,$middlerow,$bottomrow);
413: foreach my $foil (@$order) {
414: my $item=shift(@items);
415: if ($grading{$foil} == 1) {
416: $toprow.='<td><b>'.$item.' </b></td>';
1.398 albertel 417: $middlerow.='<td><b>'.$grayFont.$answer{$foil}.' </span></b></td>';
1.148 albertel 418: } else {
419: $toprow.='<td><i>'.$item.' </i></td>';
1.398 albertel 420: $middlerow.='<td><i>'.$grayFont.$answer{$foil}.' </span></i></td>';
1.148 albertel 421: }
1.398 albertel 422: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.118 ng 423: }
1.126 ng 424: return '<blockquote><table border="1">'.
1.466 albertel 425: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
426: '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148 albertel 427: $middlerow.'</tr>'.
1.466 albertel 428: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.596.2.8 raeburn 429: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 430: } elsif ($response eq 'radiobutton') {
431: my %answer=&Apache::lonnet::str2hash($answer);
432: my ($toprow,$bottomrow);
1.434 albertel 433: my $correct =
1.596.2.2 raeburn 434: &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed);
1.434 albertel 435: foreach my $foil (@$order) {
1.148 albertel 436: if (exists($answer{$foil})) {
1.434 albertel 437: if ($foil eq $correct) {
1.466 albertel 438: $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148 albertel 439: } else {
1.466 albertel 440: $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148 albertel 441: }
442: } else {
1.466 albertel 443: $toprow.='<td>'.&mt('false').'</td>';
1.148 albertel 444: }
1.398 albertel 445: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 446: }
447: return '<blockquote><table border="1">'.
1.466 albertel 448: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
449: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.596.2.4 raeburn 450: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 451: } elsif ($response eq 'essay') {
1.257 albertel 452: if (! exists ($env{'form.'.$symb})) {
1.122 ng 453: my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 454: $env{'course.'.$env{'request.course.id'}.'.domain'},
455: $env{'course.'.$env{'request.course.id'}.'.num'});
1.122 ng 456:
1.257 albertel 457: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
458: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
459: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
460: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
461: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
462: $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 463: }
1.166 albertel 464: $answer =~ s-\n-<br />-g;
465: return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268 albertel 466: } elsif ( $response eq 'organic') {
467: my $result='Smile representation: "<tt>'.$answer.'</tt>"';
468: my $jme=$record->{$version."resource.$partid.$respid.molecule"};
469: $result.=&Apache::chemresponse::jme_img($jme,$answer,400);
470: return $result;
1.335 albertel 471: } elsif ( $response eq 'Task') {
472: if ( $answer eq 'SUBMITTED') {
473: my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336 albertel 474: my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335 albertel 475: return $result;
476: } elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
477: my @matches = grep(/^\Q$version\E.*?\.instance$/,
478: keys(%{$record}));
479: return join('<br />',($version,@matches));
480:
481:
482: } else {
483: my $result =
484: '<p>'
485: .&mt('Overall result: [_1]',
486: $record->{$version."resource.$respid.$partid.status"})
487: .'</p>';
488:
489: $result .= '<ul>';
490: my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
491: keys(%{$record}));
492: foreach my $grade (sort(@grade)) {
493: my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
494: $result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
495: $dim, $record->{$grade}).
496: '</li>';
497: }
498: $result.='</ul>';
499: return $result;
500: }
1.440 albertel 501: } elsif ( $response =~ m/(?:numerical|formula)/) {
502: $answer =
503: &Apache::loncommon::format_previous_attempt_value('submission',
504: $answer);
1.122 ng 505: }
1.118 ng 506: return $answer;
507: }
508:
509: #-- A couple of common js functions
510: sub commonJSfunctions {
511: my $request = shift;
512: $request->print(<<COMMONJSFUNCTIONS);
513: <script type="text/javascript" language="javascript">
514: function radioSelection(radioButton) {
515: var selection=null;
516: if (radioButton.length > 1) {
517: for (var i=0; i<radioButton.length; i++) {
518: if (radioButton[i].checked) {
519: return radioButton[i].value;
520: }
521: }
522: } else {
523: if (radioButton.checked) return radioButton.value;
524: }
525: return selection;
526: }
527:
528: function pullDownSelection(selectOne) {
529: var selection="";
530: if (selectOne.length > 1) {
531: for (var i=0; i<selectOne.length; i++) {
532: if (selectOne[i].selected) {
533: return selectOne[i].value;
534: }
535: }
536: } else {
1.138 albertel 537: // only one value it must be the selected one
538: return selectOne.value;
1.118 ng 539: }
540: }
541: </script>
542: COMMONJSFUNCTIONS
543: }
544:
1.44 ng 545: #--- Dumps the class list with usernames,list of sections,
546: #--- section, ids and fullnames for each user.
547: sub getclasslist {
1.449 banghart 548: my ($getsec,$filterlist,$getgroup) = @_;
1.291 albertel 549: my @getsec;
1.450 banghart 550: my @getgroup;
1.442 banghart 551: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291 albertel 552: if (!ref($getsec)) {
553: if ($getsec ne '' && $getsec ne 'all') {
554: @getsec=($getsec);
555: }
556: } else {
557: @getsec=@{$getsec};
558: }
559: if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450 banghart 560: if (!ref($getgroup)) {
561: if ($getgroup ne '' && $getgroup ne 'all') {
562: @getgroup=($getgroup);
563: }
564: } else {
565: @getgroup=@{$getgroup};
566: }
567: if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291 albertel 568:
1.449 banghart 569: my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49 albertel 570: # Bail out if we were unable to get the classlist
1.56 matthew 571: return if (! defined($classlist));
1.449 banghart 572: &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56 matthew 573: #
574: my %sections;
575: my %fullnames;
1.205 matthew 576: foreach my $student (keys(%$classlist)) {
577: my $end =
578: $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
579: my $start =
580: $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
581: my $id =
582: $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
583: my $section =
584: $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
585: my $fullname =
586: $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
587: my $status =
588: $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449 banghart 589: my $group =
590: $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76 ng 591: # filter students according to status selected
1.442 banghart 592: if ($filterlist && (!($stu_status =~ /Any/))) {
593: if (!($stu_status =~ $status)) {
1.450 banghart 594: delete($classlist->{$student});
1.76 ng 595: next;
596: }
597: }
1.450 banghart 598: # filter students according to groups selected
1.453 banghart 599: my @stu_groups = split(/,/,$group);
1.450 banghart 600: if (@getgroup) {
601: my $exclude = 1;
1.454 banghart 602: foreach my $grp (@getgroup) {
603: foreach my $stu_group (@stu_groups) {
1.453 banghart 604: if ($stu_group eq $grp) {
605: $exclude = 0;
606: }
1.450 banghart 607: }
1.453 banghart 608: if (($grp eq 'none') && !$group) {
609: $exclude = 0;
610: }
1.450 banghart 611: }
612: if ($exclude) {
613: delete($classlist->{$student});
614: }
615: }
1.205 matthew 616: $section = ($section ne '' ? $section : 'none');
1.106 albertel 617: if (&canview($section)) {
1.291 albertel 618: if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103 albertel 619: $sections{$section}++;
1.450 banghart 620: if ($classlist->{$student}) {
621: $fullnames{$student}=$fullname;
622: }
1.103 albertel 623: } else {
1.205 matthew 624: delete($classlist->{$student});
1.103 albertel 625: }
626: } else {
1.205 matthew 627: delete($classlist->{$student});
1.103 albertel 628: }
1.44 ng 629: }
630: my %seen = ();
1.56 matthew 631: my @sections = sort(keys(%sections));
632: return ($classlist,\@sections,\%fullnames);
1.44 ng 633: }
634:
1.103 albertel 635: sub canmodify {
636: my ($sec)=@_;
637: if ($perm{'mgr'}) {
638: if (!defined($perm{'mgr_section'})) {
639: # can modify whole class
640: return 1;
641: } else {
642: if ($sec eq $perm{'mgr_section'}) {
643: #can modify the requested section
644: return 1;
645: } else {
646: # can't modify the request section
647: return 0;
648: }
649: }
650: }
651: #can't modify
652: return 0;
653: }
654:
655: sub canview {
656: my ($sec)=@_;
657: if ($perm{'vgr'}) {
658: if (!defined($perm{'vgr_section'})) {
659: # can modify whole class
660: return 1;
661: } else {
662: if ($sec eq $perm{'vgr_section'}) {
663: #can modify the requested section
664: return 1;
665: } else {
666: # can't modify the request section
667: return 0;
668: }
669: }
670: }
671: #can't modify
672: return 0;
673: }
674:
1.44 ng 675: #--- Retrieve the grade status of a student for all the parts
676: sub student_gradeStatus {
1.324 albertel 677: my ($symb,$udom,$uname,$partlist) = @_;
1.257 albertel 678: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44 ng 679: my %partstatus = ();
680: foreach (@$partlist) {
1.128 ng 681: my ($status,undef) = split(/_/,$record{"resource.$_.solved"},2);
1.44 ng 682: $status = 'nothing' if ($status eq '');
683: $partstatus{$_} = $status;
684: my $subkey = "resource.$_.submitted_by";
685: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
686: }
687: return %partstatus;
688: }
689:
1.45 ng 690: # hidden form and javascript that calls the form
691: # Use by verifyscript and viewgrades
692: # Shows a student's view of problem and submission
693: sub jscriptNform {
1.324 albertel 694: my ($symb) = @_;
1.442 banghart 695: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.45 ng 696: my $jscript='<script type="text/javascript" language="javascript">'."\n".
697: ' function viewOneStudent(user,domain) {'."\n".
698: ' document.onestudent.student.value = user;'."\n".
699: ' document.onestudent.userdom.value = domain;'."\n".
700: ' document.onestudent.submit();'."\n".
701: ' }'."\n".
702: '</script>'."\n";
703: $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418 albertel 704: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 705: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
706: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.442 banghart 707: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.45 ng 708: '<input type="hidden" name="command" value="submission" />'."\n".
709: '<input type="hidden" name="student" value="" />'."\n".
710: '<input type="hidden" name="userdom" value="" />'."\n".
711: '</form>'."\n";
712: return $jscript;
713: }
1.39 ng 714:
1.447 foxr 715:
716:
1.315 bowersj2 717: # Given the score (as a number [0-1] and the weight) what is the final
718: # point value? This function will round to the nearest tenth, third,
719: # or quarter if one of those is within the tolerance of .00001.
1.316 albertel 720: sub compute_points {
1.315 bowersj2 721: my ($score, $weight) = @_;
722:
723: my $tolerance = .00001;
724: my $points = $score * $weight;
725:
726: # Check for nearness to 1/x.
727: my $check_for_nearness = sub {
728: my ($factor) = @_;
729: my $num = ($points * $factor) + $tolerance;
730: my $floored_num = floor($num);
1.316 albertel 731: if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315 bowersj2 732: return $floored_num / $factor;
733: }
734: return $points;
735: };
736:
737: $points = $check_for_nearness->(10);
738: $points = $check_for_nearness->(3);
739: $points = $check_for_nearness->(4);
740:
741: return $points;
742: }
743:
1.44 ng 744: #------------------ End of general use routines --------------------
1.87 www 745:
746: #
747: # Find most similar essay
748: #
749:
750: sub most_similar {
1.596.2.12.2. (raeburn 751:): my ($uname,$udom,$symb,$uessay)=@_;
752:):
753:): unless ($symb) { return ''; }
754:):
755:): unless (ref($old_essays{$symb}) eq 'HASH') { return ''; }
1.87 www 756:
757: # ignore spaces and punctuation
758:
759: $uessay=~s/\W+/ /gs;
760:
1.282 www 761: # ignore empty submissions (occuring when only files are sent)
762:
1.596.2.4 raeburn 763: unless ($uessay=~/\w+/s) { return ''; }
1.282 www 764:
1.87 www 765: # these will be returned. Do not care if not at least 50 percent similar
1.88 www 766: my $limit=0.6;
1.87 www 767: my $sname='';
768: my $sdom='';
769: my $scrsid='';
770: my $sessay='';
771: # go through all essays ...
1.596.2.12.2. (raeburn 772:): foreach my $tkey (keys(%{$old_essays{$symb}})) {
1.426 albertel 773: my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87 www 774: # ... except the same student
1.426 albertel 775: next if (($tname eq $uname) && ($tdom eq $udom));
1.596.2.12.2. (raeburn 776:): my $tessay=$old_essays{$symb}{$tkey};
1.426 albertel 777: $tessay=~s/\W+/ /gs;
1.87 www 778: # String similarity gives up if not even limit
1.426 albertel 779: my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87 www 780: # Found one
1.426 albertel 781: if ($tsimilar>$limit) {
782: $limit=$tsimilar;
783: $sname=$tname;
784: $sdom=$tdom;
785: $scrsid=$tcrsid;
1.596.2.12.2. (raeburn 786:): $sessay=$old_essays{$symb}{$tkey};
1.426 albertel 787: }
1.87 www 788: }
1.88 www 789: if ($limit>0.6) {
1.87 www 790: return ($sname,$sdom,$scrsid,$sessay,$limit);
791: } else {
792: return ('','','','',0);
793: }
794: }
795:
1.44 ng 796: #-------------------------------------------------------------------
797:
798: #------------------------------------ Receipt Verification Routines
1.45 ng 799: #
1.44 ng 800: #--- Check whether a receipt number is valid.---
801: sub verifyreceipt {
802: my $request = shift;
803:
1.257 albertel 804: my $courseid = $env{'request.course.id'};
1.184 www 805: my $receipt = &Apache::lonnet::recprefix($courseid).'-'.
1.257 albertel 806: $env{'form.receipt'};
1.44 ng 807: $receipt =~ s/[^\-\d]//g;
1.378 albertel 808: my ($symb) = &get_symb($request);
1.44 ng 809:
1.487 albertel 810: my $title.=
811: '<h3><span class="LC_info">'.
1.584 bisitz 812: &mt('Verifying Receipt No. [_1]',$receipt).
1.487 albertel 813: '</span></h3>'."\n".
814: '<h4>'.&mt('<b>Resource: </b>[_1]',$env{'form.probTitle'}).
815: '</h4>'."\n";
1.44 ng 816:
817: my ($string,$contents,$matches) = ('','',0);
1.56 matthew 818: my (undef,undef,$fullname) = &getclasslist('all','0');
1.177 albertel 819:
820: my $receiptparts=0;
1.390 albertel 821: if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
822: $env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177 albertel 823: my $parts=['0'];
1.582 raeburn 824: if ($receiptparts) {
825: my $res_error;
826: ($parts)=&response_type($symb,\$res_error);
827: if ($res_error) {
828: return &navmap_errormsg();
829: }
830: }
1.486 albertel 831:
832: my $header =
833: &Apache::loncommon::start_data_table().
834: &Apache::loncommon::start_data_table_header_row().
1.487 albertel 835: '<th> '.&mt('Fullname').' </th>'."\n".
836: '<th> '.&mt('Username').' </th>'."\n".
837: '<th> '.&mt('Domain').' </th>';
1.486 albertel 838: if ($receiptparts) {
1.487 albertel 839: $header.='<th> '.&mt('Problem Part').' </th>';
1.486 albertel 840: }
841: $header.=
842: &Apache::loncommon::end_data_table_header_row();
843:
1.294 albertel 844: foreach (sort
845: {
846: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
847: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
848: }
849: return $a cmp $b;
850: } (keys(%$fullname))) {
1.44 ng 851: my ($uname,$udom)=split(/\:/);
1.177 albertel 852: foreach my $part (@$parts) {
853: if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
1.486 albertel 854: $contents.=
855: &Apache::loncommon::start_data_table_row().
856: '<td> '."\n".
1.177 albertel 857: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 858: '\');" target="_self">'.$$fullname{$_}.'</a> </td>'."\n".
1.177 albertel 859: '<td> '.$uname.' </td>'.
860: '<td> '.$udom.' </td>';
861: if ($receiptparts) {
862: $contents.='<td> '.$part.' </td>';
863: }
1.486 albertel 864: $contents.=
865: &Apache::loncommon::end_data_table_row()."\n";
1.177 albertel 866:
867: $matches++;
868: }
1.44 ng 869: }
870: }
871: if ($matches == 0) {
1.584 bisitz 872: $string = $title
873: .'<p class="LC_warning">'
874: .&mt('No match found for the above receipt number.')
875: .'</p>';
1.44 ng 876: } else {
1.324 albertel 877: $string = &jscriptNform($symb).$title.
1.487 albertel 878: '<p>'.
1.584 bisitz 879: &mt('The above receipt number matches the following [quant,_1,student].',$matches).
1.487 albertel 880: '</p>'.
1.486 albertel 881: $header.
882: $contents.
883: &Apache::loncommon::end_data_table()."\n";
1.44 ng 884: }
1.324 albertel 885: return $string.&show_grading_menu_form($symb);
1.44 ng 886: }
887:
888: #--- This is called by a number of programs.
889: #--- Called from the Grading Menu - View/Grade an individual student
890: #--- Also called directly when one clicks on the subm button
891: # on the problem page.
1.30 ng 892: sub listStudents {
1.41 ng 893: my ($request) = shift;
1.49 albertel 894:
1.324 albertel 895: my ($symb) = &get_symb($request);
1.257 albertel 896: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
897: my $cnum = $env{"course.$env{'request.course.id'}.num"};
898: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449 banghart 899: my $getgroup = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.257 albertel 900: my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
1.548 bisitz 901: my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
1.257 albertel 902: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
903: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.49 albertel 904:
1.548 bisitz 905: my $result='<h3><span class="LC_info"> '
906: .&mt("$viewgrade Submissions for a Student or a Group of Students")
1.485 albertel 907: .'</span></h3>';
1.118 ng 908:
1.324 albertel 909: my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($symb,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
1.49 albertel 910:
1.559 raeburn 911: my %lt = &Apache::lonlocal::texthash (
912: 'multiple' => 'Please select a student or group of students before clicking on the Next button.',
913: 'single' => 'Please select the student before clicking on the Next button.',
914: );
1.45 ng 915: $request->print(<<LISTJAVASCRIPT);
916: <script type="text/javascript" language="javascript">
1.110 ng 917: function checkSelect(checkBox) {
918: var ctr=0;
919: var sense="";
920: if (checkBox.length > 1) {
921: for (var i=0; i<checkBox.length; i++) {
922: if (checkBox[i].checked) {
923: ctr++;
924: }
925: }
1.485 albertel 926: sense = '$lt{'multiple'}';
1.110 ng 927: } else {
928: if (checkBox.checked) {
929: ctr = 1;
930: }
1.485 albertel 931: sense = '$lt{'single'}';
1.110 ng 932: }
933: if (ctr == 0) {
1.485 albertel 934: alert(sense);
1.110 ng 935: return false;
936: }
937: document.gradesub.submit();
938: }
939:
940: function reLoadList(formname) {
1.112 ng 941: if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110 ng 942: formname.command.value = 'submission';
943: formname.submit();
944: }
1.45 ng 945: </script>
946: LISTJAVASCRIPT
947:
1.118 ng 948: &commonJSfunctions($request);
1.41 ng 949: $request->print($result);
1.39 ng 950:
1.401 albertel 951: my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked="checked"' : '';
952: my $checklastsub = $checkhdgrade eq '' ? 'checked="checked"' : '';
1.154 albertel 953: my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
1.485 albertel 954: "\n".$table;
955:
1.561 bisitz 956: $gradeTable .= &Apache::lonhtmlcommon::start_pick_box();
957: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
958: .'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n"
959: .'<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n"
960: .'<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label><br />'."\n"
961: .&Apache::lonhtmlcommon::row_closure();
962: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Answer'))
963: .'<label><input type="radio" name="vAns" value="no" /> '.&mt('no').' </label>'."\n"
964: .'<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n"
965: .'<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label><br />'."\n"
966: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 967:
968: my $submission_options;
1.257 albertel 969: if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
1.485 albertel 970: $submission_options.=
971: '<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> '.&mt('essay part only').' </label>'."\n";
1.49 albertel 972: }
1.442 banghart 973: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
974: my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257 albertel 975: $env{'form.Status'} = $saveStatus;
1.485 albertel 976: $submission_options.=
1.592 bisitz 977: '<span class="LC_nobreak">'.
978: '<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> '.
979: &mt('last submission only').' </label></span>'."\n".
980: '<span class="LC_nobreak">'.
981: '<label><input type="radio" name="lastSub" value="last" /> '.
982: &mt('last submission & parts info').' </label></span>'."\n".
983: '<span class="LC_nobreak">'.
984: '<label><input type="radio" name="lastSub" value="datesub" /> '.
985: &mt('by dates and submissions').'</label></span>'."\n".
986: '<span class="LC_nobreak">'.
987: '<label><input type="radio" name="lastSub" value="all" /> '.
988: &mt('all details').'</label></span>';
1.561 bisitz 989: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Submissions'))
990: .$submission_options
991: .&Apache::lonhtmlcommon::row_closure();
992:
993: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Grading Increments'))
994: .'<select name="increment">'
995: .'<option value="1">'.&mt('Whole Points').'</option>'
996: .'<option value=".5">'.&mt('Half Points').'</option>'
997: .'<option value=".25">'.&mt('Quarter Points').'</option>'
998: .'<option value=".1">'.&mt('Tenths of a Point').'</option>'
999: .'</select>'
1000: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 1001:
1002: $gradeTable .=
1.432 banghart 1003: &build_section_inputs().
1.45 ng 1004: '<input type="hidden" name="submitonly" value="'.$submitonly.'" />'."\n".
1.257 albertel 1005: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" /><br />'."\n".
1006: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
1007: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1008: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.418 albertel 1009: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110 ng 1010: '<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
1011:
1.257 albertel 1012: if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
1.561 bisitz 1013: $gradeTable .= '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
1.124 ng 1014: } else {
1.561 bisitz 1015: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Student Status'))
1016: .&Apache::lonhtmlcommon::StatusOptions(
1017: $saveStatus,undef,1,'javascript:reLoadList(this.form);')
1018: .&Apache::lonhtmlcommon::row_closure();
1.124 ng 1019: }
1.112 ng 1020:
1.561 bisitz 1021: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Check For Plagiarism'))
1022: .'<input type="checkbox" name="checkPlag" checked="checked" />'
1023: .&Apache::lonhtmlcommon::row_closure(1)
1024: .&Apache::lonhtmlcommon::end_pick_box();
1025:
1026: $gradeTable .= '<p>'
1027: .&mt('To '.lc($viewgrade)." 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"
1028: .'<input type="hidden" name="command" value="processGroup" />'
1029: .'</p>';
1.249 albertel 1030:
1031: # checkall buttons
1032: $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110 ng 1033: $gradeTable.='<input type="button" '."\n".
1.589 bisitz 1034: 'onclick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1035: 'value="'.&mt('Next').' →" /> <br />'."\n";
1.249 albertel 1036: $gradeTable.=&check_buttons();
1.450 banghart 1037: my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.474 albertel 1038: $gradeTable.= &Apache::loncommon::start_data_table().
1039: &Apache::loncommon::start_data_table_header_row();
1.110 ng 1040: my $loop = 0;
1041: while ($loop < 2) {
1.485 albertel 1042: $gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
1043: '<th>'.&nameUserString('header').' '.&mt('Section/Group').'</th>';
1.301 albertel 1044: if ($env{'form.showgrading'} eq 'yes'
1045: && $submitonly ne 'queued'
1046: && $submitonly ne 'all') {
1.485 albertel 1047: foreach my $part (sort(@$partlist)) {
1048: my $display_part=
1049: &get_display_part((split(/_/,$part))[0],$symb);
1050: $gradeTable.=
1051: '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
1.110 ng 1052: }
1.301 albertel 1053: } elsif ($submitonly eq 'queued') {
1.474 albertel 1054: $gradeTable.='<th>'.&mt('Queue Status').' </th>';
1.110 ng 1055: }
1056: $loop++;
1.126 ng 1057: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 1058: }
1.474 albertel 1059: $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
1.41 ng 1060:
1.45 ng 1061: my $ctr = 0;
1.294 albertel 1062: foreach my $student (sort
1063: {
1064: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
1065: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
1066: }
1067: return $a cmp $b;
1068: }
1069: (keys(%$fullname))) {
1.41 ng 1070: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 1071:
1.110 ng 1072: my %status = ();
1.301 albertel 1073:
1074: if ($submitonly eq 'queued') {
1075: my %queue_status =
1076: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
1077: $udom,$uname);
1078: next if (!defined($queue_status{'gradingqueue'}));
1079: $status{'gradingqueue'} = $queue_status{'gradingqueue'};
1080: }
1081:
1082: if ($env{'form.showgrading'} eq 'yes'
1083: && $submitonly ne 'queued'
1084: && $submitonly ne 'all') {
1.324 albertel 1085: (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 1086: my $submitted = 0;
1.164 albertel 1087: my $graded = 0;
1.248 albertel 1088: my $incorrect = 0;
1.110 ng 1089: foreach (keys(%status)) {
1.145 albertel 1090: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 1091: $graded = 1 if ($status{$_} =~ /^ungraded/);
1092: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1093:
1.110 ng 1094: my ($foo,$partid,$foo1) = split(/\./,$_);
1095: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145 albertel 1096: $submitted = 0;
1.150 albertel 1097: my ($part)=split(/\./,$partid);
1.110 ng 1098: $gradeTable.='<input type="hidden" name="'.
1.150 albertel 1099: $student.':'.$part.':submitted_by" value="'.
1.110 ng 1100: $status{'resource.'.$partid.'.submitted_by'}.'" />';
1101: }
1.41 ng 1102: }
1.248 albertel 1103:
1.156 albertel 1104: next if (!$submitted && ($submitonly eq 'yes' ||
1105: $submitonly eq 'incorrect' ||
1106: $submitonly eq 'graded'));
1.248 albertel 1107: next if (!$graded && ($submitonly eq 'graded'));
1108: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 1109: }
1.34 ng 1110:
1.45 ng 1111: $ctr++;
1.249 albertel 1112: my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452 banghart 1113: my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104 albertel 1114: if ( $perm{'vgr'} eq 'F' ) {
1.474 albertel 1115: if ($ctr%2 ==1) {
1116: $gradeTable.= &Apache::loncommon::start_data_table_row();
1117: }
1.126 ng 1118: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.563 bisitz 1119: '<td align="center"><label><input type="checkbox" name="stuinfo" value="'.
1.249 albertel 1120: $student.':'.$$fullname{$student}.':::SECTION'.$section.
1121: ') " /> </label></td>'."\n".'<td>'.
1122: &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474 albertel 1123: ' '.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110 ng 1124:
1.257 albertel 1125: if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.524 raeburn 1126: foreach (sort(keys(%status))) {
1.485 albertel 1127: next if ($_ =~ /^resource.*?submitted_by$/);
1128: $gradeTable.='<td align="center"> '.&mt($status{$_}).' </td>'."\n";
1.110 ng 1129: }
1.41 ng 1130: }
1.126 ng 1131: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474 albertel 1132: if ($ctr%2 ==0) {
1133: $gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
1134: }
1.41 ng 1135: }
1136: }
1.110 ng 1137: if ($ctr%2 ==1) {
1.126 ng 1138: $gradeTable.='<td> </td><td> </td><td> </td>';
1.301 albertel 1139: if ($env{'form.showgrading'} eq 'yes'
1140: && $submitonly ne 'queued'
1141: && $submitonly ne 'all') {
1.110 ng 1142: foreach (@$partlist) {
1143: $gradeTable.='<td> </td>';
1144: }
1.301 albertel 1145: } elsif ($submitonly eq 'queued') {
1146: $gradeTable.='<td> </td>';
1.110 ng 1147: }
1.474 albertel 1148: $gradeTable.=&Apache::loncommon::end_data_table_row();
1.110 ng 1149: }
1150:
1.474 albertel 1151: $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.589 bisitz 1152: '<input type="button" '.
1153: 'onclick="javascript:checkSelect(this.form.stuinfo);" '.
1154: 'value="'.&mt('Next').' →" /></form>'."\n";
1.45 ng 1155: if ($ctr == 0) {
1.96 albertel 1156: my $num_students=(scalar(keys(%$fullname)));
1157: if ($num_students eq 0) {
1.485 albertel 1158: $gradeTable='<br /> <span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
1.96 albertel 1159: } else {
1.171 albertel 1160: my $submissions='submissions';
1161: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
1162: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 1163: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.398 albertel 1164: $gradeTable='<br /> <span class="LC_warning">'.
1.485 albertel 1165: &mt('No '.$submissions.' found for this resource for any students. ([_1] students checked for '.$submissions.')',
1166: $num_students).
1167: '</span><br />';
1.96 albertel 1168: }
1.46 ng 1169: } elsif ($ctr == 1) {
1.474 albertel 1170: $gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45 ng 1171: }
1.324 albertel 1172: $gradeTable.=&show_grading_menu_form($symb);
1.45 ng 1173: $request->print($gradeTable);
1.44 ng 1174: return '';
1.10 ng 1175: }
1176:
1.44 ng 1177: #---- Called from the listStudents routine
1.249 albertel 1178:
1179: sub check_script {
1180: my ($form, $type)=@_;
1181: my $chkallscript='<script type="text/javascript">
1182: function checkall() {
1183: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1184: ele = document.forms.'.$form.'.elements[i];
1185: if (ele.name == "'.$type.'") {
1186: document.forms.'.$form.'.elements[i].checked=true;
1187: }
1188: }
1189: }
1190:
1191: function checksec() {
1192: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1193: ele = document.forms.'.$form.'.elements[i];
1194: string = document.forms.'.$form.'.chksec.value;
1195: if
1196: (ele.value.indexOf(":::SECTION"+string)>0) {
1197: document.forms.'.$form.'.elements[i].checked=true;
1198: }
1199: }
1200: }
1201:
1202:
1203: function uncheckall() {
1204: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1205: ele = document.forms.'.$form.'.elements[i];
1206: if (ele.name == "'.$type.'") {
1207: document.forms.'.$form.'.elements[i].checked=false;
1208: }
1209: }
1210: }
1211:
1212: </script>'."\n";
1213: return $chkallscript;
1214: }
1215:
1216: sub check_buttons {
1.485 albertel 1217: my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
1218: $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" /> ';
1219: $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
1.249 albertel 1220: $buttons.='<input type="text" size="5" name="chksec" /> ';
1221: return $buttons;
1222: }
1223:
1.44 ng 1224: # Displays the submissions for one student or a group of students
1.34 ng 1225: sub processGroup {
1.41 ng 1226: my ($request) = shift;
1227: my $ctr = 0;
1.155 albertel 1228: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 1229: my $total = scalar(@stuchecked)-1;
1.45 ng 1230:
1.396 banghart 1231: foreach my $student (@stuchecked) {
1232: my ($uname,$udom,$fullname) = split(/:/,$student);
1.257 albertel 1233: $env{'form.student'} = $uname;
1234: $env{'form.userdom'} = $udom;
1235: $env{'form.fullname'} = $fullname;
1.41 ng 1236: &submission($request,$ctr,$total);
1237: $ctr++;
1238: }
1239: return '';
1.35 ng 1240: }
1.34 ng 1241:
1.44 ng 1242: #------------------------------------------------------------------------------------
1243: #
1244: #-------------------------- Next few routines handles grading by student, essentially
1245: # handles essay response type problem/part
1246: #
1247: #--- Javascript to handle the submission page functionality ---
1248: sub sub_page_js {
1249: my $request = shift;
1.539 riegler 1250: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.44 ng 1251: $request->print(<<SUBJAVASCRIPT);
1252: <script type="text/javascript" language="javascript">
1.71 ng 1253: function updateRadio(formname,id,weight) {
1.125 ng 1254: var gradeBox = formname["GD_BOX"+id];
1255: var radioButton = formname["RADVAL"+id];
1256: var oldpts = formname["oldpts"+id].value;
1.72 ng 1257: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 1258: gradeBox.value = pts;
1259: var resetbox = false;
1260: if (isNaN(pts) || pts < 0) {
1.539 riegler 1261: alert("$alertmsg"+pts);
1.71 ng 1262: for (var i=0; i<radioButton.length; i++) {
1263: if (radioButton[i].checked) {
1264: gradeBox.value = i;
1265: resetbox = true;
1266: }
1267: }
1268: if (!resetbox) {
1269: formtextbox.value = "";
1270: }
1271: return;
1.44 ng 1272: }
1.71 ng 1273:
1274: if (pts > weight) {
1275: var resp = confirm("You entered a value ("+pts+
1276: ") greater than the weight for the part. Accept?");
1277: if (resp == false) {
1.125 ng 1278: gradeBox.value = oldpts;
1.71 ng 1279: return;
1280: }
1.44 ng 1281: }
1.13 albertel 1282:
1.71 ng 1283: for (var i=0; i<radioButton.length; i++) {
1284: radioButton[i].checked=false;
1285: if (pts == i && pts != "") {
1286: radioButton[i].checked=true;
1287: }
1288: }
1289: updateSelect(formname,id);
1.125 ng 1290: formname["stores"+id].value = "0";
1.41 ng 1291: }
1.5 albertel 1292:
1.72 ng 1293: function writeBox(formname,id,pts) {
1.125 ng 1294: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1295: if (checkSolved(formname,id) == 'update') {
1296: gradeBox.value = pts;
1297: } else {
1.125 ng 1298: var oldpts = formname["oldpts"+id].value;
1.72 ng 1299: gradeBox.value = oldpts;
1.125 ng 1300: var radioButton = formname["RADVAL"+id];
1.71 ng 1301: for (var i=0; i<radioButton.length; i++) {
1302: radioButton[i].checked=false;
1.72 ng 1303: if (i == oldpts) {
1.71 ng 1304: radioButton[i].checked=true;
1305: }
1306: }
1.41 ng 1307: }
1.125 ng 1308: formname["stores"+id].value = "0";
1.71 ng 1309: updateSelect(formname,id);
1310: return;
1.41 ng 1311: }
1.44 ng 1312:
1.71 ng 1313: function clearRadBox(formname,id) {
1314: if (checkSolved(formname,id) == 'noupdate') {
1315: updateSelect(formname,id);
1316: return;
1317: }
1.125 ng 1318: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1319: for (var i=0; i<gradeSelect.length; i++) {
1320: if (gradeSelect[i].selected) {
1321: var selectx=i;
1322: }
1323: }
1.125 ng 1324: var stores = formname["stores"+id];
1.71 ng 1325: if (selectx == stores.value) { return };
1.125 ng 1326: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1327: gradeBox.value = "";
1.125 ng 1328: var radioButton = formname["RADVAL"+id];
1.71 ng 1329: for (var i=0; i<radioButton.length; i++) {
1330: radioButton[i].checked=false;
1331: }
1332: stores.value = selectx;
1333: }
1.5 albertel 1334:
1.71 ng 1335: function checkSolved(formname,id) {
1.125 ng 1336: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1337: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1338: if (!reply) {return "noupdate";}
1.120 ng 1339: formname.overRideScore.value = 'yes';
1.41 ng 1340: }
1.71 ng 1341: return "update";
1.13 albertel 1342: }
1.71 ng 1343:
1344: function updateSelect(formname,id) {
1.125 ng 1345: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1346: return;
1.41 ng 1347: }
1.33 ng 1348:
1.121 ng 1349: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1350: function checksubmit(formname,val,total,parttot) {
1.121 ng 1351: formname.gradeOpt.value = val;
1.71 ng 1352: if (val == "Save & Next") {
1353: for (i=0;i<=total;i++) {
1354: for (j=0;j<parttot;j++) {
1.125 ng 1355: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1356: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1357: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1358: if (points == "") {
1.125 ng 1359: var name = formname["name"+i].value;
1.129 ng 1360: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1361: var resp = confirm("You did not assign a score for "+studentID+
1362: ", part "+partid+". Continue?");
1.71 ng 1363: if (resp == false) {
1.125 ng 1364: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1365: return false;
1366: }
1367: }
1368: }
1369:
1370: }
1371: }
1372:
1373: }
1.121 ng 1374: if (val == "Grade Student") {
1375: formname.showgrading.value = "yes";
1376: if (formname.Status.value == "") {
1377: formname.Status.value = "Active";
1378: }
1379: formname.studentNo.value = total;
1380: }
1.120 ng 1381: formname.submit();
1382: }
1383:
1.71 ng 1384: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1385: function checkSubmitPage(formname,total) {
1386: noscore = new Array(100);
1387: var ptr = 0;
1388: for (i=1;i<total;i++) {
1.125 ng 1389: var partid = formname["q_"+i].value;
1.127 ng 1390: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1391: var points = formname["GD_BOX"+i+"_"+partid].value;
1392: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1393: if (points == "" && status != "correct_by_student") {
1394: noscore[ptr] = i;
1395: ptr++;
1396: }
1397: }
1398: }
1399: if (ptr != 0) {
1400: var sense = ptr == 1 ? ": " : "s: ";
1401: var prolist = "";
1402: if (ptr == 1) {
1403: prolist = noscore[0];
1404: } else {
1405: var i = 0;
1406: while (i < ptr-1) {
1407: prolist += noscore[i]+", ";
1408: i++;
1409: }
1410: prolist += "and "+noscore[i];
1411: }
1412: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1413: if (resp == false) {
1414: return false;
1415: }
1416: }
1.45 ng 1417:
1.71 ng 1418: formname.submit();
1419: }
1420: </script>
1421: SUBJAVASCRIPT
1422: }
1.45 ng 1423:
1.71 ng 1424: #--- javascript for essay type problem --
1425: sub sub_page_kw_js {
1426: my $request = shift;
1.80 ng 1427: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1428: &commonJSfunctions($request);
1.350 albertel 1429:
1.351 albertel 1430: my $inner_js_msg_central=<<INNERJS;
1.350 albertel 1431: <script text="text/javascript">
1432: function checkInput() {
1433: opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
1434: var nmsg = opener.document.SCORE.savemsgN.value;
1435: var usrctr = document.msgcenter.usrctr.value;
1436: var newval = opener.document.SCORE["newmsg"+usrctr];
1437: newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
1438:
1439: var msgchk = "";
1440: if (document.msgcenter.subchk.checked) {
1441: msgchk = "msgsub,";
1442: }
1443: var includemsg = 0;
1444: for (var i=1; i<=nmsg; i++) {
1445: var opnmsg = opener.document.SCORE["savemsg"+i];
1446: var frmmsg = document.msgcenter["msg"+i];
1447: opnmsg.value = opener.checkEntities(frmmsg.value);
1448: var showflg = opener.document.SCORE["shownOnce"+i];
1449: showflg.value = "1";
1450: var chkbox = document.msgcenter["msgn"+i];
1451: if (chkbox.checked) {
1452: msgchk += "savemsg"+i+",";
1453: includemsg = 1;
1454: }
1455: }
1456: if (document.msgcenter.newmsgchk.checked) {
1457: msgchk += "newmsg"+usrctr;
1458: includemsg = 1;
1459: }
1460: imgformname = opener.document.SCORE["mailicon"+usrctr];
1461: imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
1462: var includemsg = opener.document.SCORE["includemsg"+usrctr];
1463: includemsg.value = msgchk;
1464:
1465: self.close()
1466:
1467: }
1468: </script>
1469: INNERJS
1470:
1.351 albertel 1471: my $inner_js_highlight_central=<<INNERJS;
1472: <script type="text/javascript">
1473: function updateChoice(flag) {
1474: opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
1475: opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
1476: opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
1477: opener.document.SCORE.refresh.value = "on";
1478: if (opener.document.SCORE.keywords.value!=""){
1479: opener.document.SCORE.submit();
1480: }
1481: self.close()
1482: }
1483: </script>
1484: INNERJS
1485:
1486: my $start_page_msg_central =
1487: &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
1488: {'js_ready' => 1,
1489: 'only_body' => 1,
1490: 'bgcolor' =>'#FFFFFF',});
1491: my $end_page_msg_central =
1492: &Apache::loncommon::end_page({'js_ready' => 1});
1493:
1494:
1495: my $start_page_highlight_central =
1496: &Apache::loncommon::start_page('Highlight Central',
1497: $inner_js_highlight_central,
1.350 albertel 1498: {'js_ready' => 1,
1499: 'only_body' => 1,
1500: 'bgcolor' =>'#FFFFFF',});
1.351 albertel 1501: my $end_page_highlight_central =
1.350 albertel 1502: &Apache::loncommon::end_page({'js_ready' => 1});
1503:
1.219 www 1504: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1505: $docopen=~s/^document\.//;
1.596.2.4 raeburn 1506: my %lt = &Apache::lonlocal::texthash(
1507: keyw => 'Keywords list, separated by a space. Add/delete to list if desired.',
1508: plse => 'Please select a word or group of words from document and then click this link.',
1509: adds => 'Add selection to keyword list? Edit if desired.',
1510: comp => 'Compose Message for: ',
1511: incl => 'Include',
1512: type => 'Type',
1513: subj => 'Subject',
1514: mesa => 'Message',
1515: new => 'New',
1516: save => 'Save',
1517: canc => 'Cancel',
1518: kehi => 'Keyword Highlight Options',
1519: txtc => 'Text Color',
1520: font => 'Font Size',
1521: fnst => 'Font Style',
1522: );
1.71 ng 1523: $request->print(<<SUBJAVASCRIPT);
1524: <script type="text/javascript" language="javascript">
1.45 ng 1525:
1.44 ng 1526: //===================== Show list of keywords ====================
1.122 ng 1527: function keywords(formname) {
1.596.2.4 raeburn 1528: var nret = prompt("$lt{'keyw'}",formname.keywords.value);
1.44 ng 1529: if (nret==null) return;
1.122 ng 1530: formname.keywords.value = nret;
1.44 ng 1531:
1.122 ng 1532: if (formname.keywords.value != "") {
1.128 ng 1533: formname.refresh.value = "on";
1.122 ng 1534: formname.submit();
1.44 ng 1535: }
1536: return;
1537: }
1538:
1539: //===================== Script to view submitted by ==================
1540: function viewSubmitter(submitter) {
1541: document.SCORE.refresh.value = "on";
1542: document.SCORE.NCT.value = "1";
1543: document.SCORE.unamedom0.value = submitter;
1544: document.SCORE.submit();
1545: return;
1546: }
1547:
1548: //===================== Script to add keyword(s) ==================
1549: function getSel() {
1550: if (document.getSelection) txt = document.getSelection();
1551: else if (document.selection) txt = document.selection.createRange().text;
1552: else return;
1553: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1554: if (cleantxt=="") {
1.596.2.4 raeburn 1555: alert("$lt{'plse'}");
1.44 ng 1556: return;
1557: }
1.596.2.4 raeburn 1558: var nret = prompt("$lt{'adds'}",cleantxt);
1.44 ng 1559: if (nret==null) return;
1.127 ng 1560: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1561: if (document.SCORE.keywords.value != "") {
1.127 ng 1562: document.SCORE.refresh.value = "on";
1.44 ng 1563: document.SCORE.submit();
1564: }
1565: return;
1566: }
1567:
1568: //====================== Script for composing message ==============
1.80 ng 1569: // preload images
1570: img1 = new Image();
1571: img1.src = "$iconpath/mailbkgrd.gif";
1572: img2 = new Image();
1573: img2.src = "$iconpath/mailto.gif";
1574:
1.44 ng 1575: function msgCenter(msgform,usrctr,fullname) {
1576: var Nmsg = msgform.savemsgN.value;
1577: savedMsgHeader(Nmsg,usrctr,fullname);
1578: var subject = msgform.msgsub.value;
1.127 ng 1579: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1580: re = /msgsub/;
1581: var shwsel = "";
1582: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1583: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1584: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1585: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1586: var testmsg = "savemsg"+i+",";
1587: re = new RegExp(testmsg,"g");
1.44 ng 1588: shwsel = "";
1589: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1590: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1591: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1592: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1593: //any < is already converted to <, etc. However, only once!!
1.44 ng 1594: }
1.125 ng 1595: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1596: shwsel = "";
1597: re = /newmsg/;
1598: if (re.test(msgchk)) { shwsel = "checked" }
1599: newMsg(newmsg,shwsel);
1600: msgTail();
1601: return;
1602: }
1603:
1.123 ng 1604: function checkEntities(strx) {
1605: if (strx.length == 0) return strx;
1606: var orgStr = ["&", "<", ">", '"'];
1607: var newStr = ["&", "<", ">", """];
1608: var counter = 0;
1609: while (counter < 4) {
1610: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1611: counter++;
1612: }
1613: return strx;
1614: }
1615:
1616: function strReplace(strx, orgStr, newStr) {
1617: return strx.split(orgStr).join(newStr);
1618: }
1619:
1.44 ng 1620: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1621: var height = 70*Nmsg+250;
1.44 ng 1622: if (height > 600) {
1623: height = 600;
1624: }
1.118 ng 1625: var xpos = (screen.width-600)/2;
1626: xpos = (xpos < 0) ? '0' : xpos;
1627: var ypos = (screen.height-height)/2-30;
1628: ypos = (ypos < 0) ? '0' : ypos;
1629:
1.596.2.12.2. (raeburn 1630:): pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars=yes,screenx='+xpos+',screeny='+ypos+',width=700,height='+height);
1.76 ng 1631: pWin.focus();
1632: pDoc = pWin.document;
1.219 www 1633: pDoc.$docopen;
1.351 albertel 1634: pDoc.write('$start_page_msg_central');
1.76 ng 1635:
1636: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1637: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.596.2.4 raeburn 1638: pDoc.write("<h3><span class=\\"LC_info\\"> $lt{'comp'}\"+fullname+\"<\\/span><\\/h3><br /><br />");
1.76 ng 1639:
1.564 bisitz 1640: pDoc.write('<table border="0" width="100%"><tr><td bgcolor="#777777">');
1641: pDoc.write('<table border="0" width="100%"><tr bgcolor="#DDFFFF">');
1.596.2.4 raeburn 1642: pDoc.write("<td><b>$lt{'type'}<\\/b><\\/td><td><b>$lt{'incl'}<\\/b><\\/td><td><b>$lt{'mesa'}<\\/td><\\/tr>");
1.44 ng 1643: }
1644: function displaySubject(msg,shwsel) {
1.76 ng 1645: pDoc = pWin.document;
1646: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.596.2.4 raeburn 1647: pDoc.write("<td>$lt{'subj'}<\\/td>");
1.465 albertel 1648: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1649: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44 ng 1650: }
1651:
1.72 ng 1652: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1653: pDoc = pWin.document;
1654: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1655: pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
1656: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1657: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1658: }
1659:
1660: function newMsg(newmsg,shwsel) {
1.76 ng 1661: pDoc = pWin.document;
1662: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.596.2.4 raeburn 1663: pDoc.write("<td align=\\"center\\">$lt{'new'}<\\/td>");
1.465 albertel 1664: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1665: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1666: }
1667:
1668: function msgTail() {
1.76 ng 1669: pDoc = pWin.document;
1.465 albertel 1670: pDoc.write("<\\/table>");
1671: pDoc.write("<\\/td><\\/tr><\\/table> ");
1.596.2.4 raeburn 1672: pDoc.write("<input type=\\"button\\" value=\\"$lt{'save'}\\" onclick=\\"javascript:checkInput()\\"> ");
1673: pDoc.write("<input type=\\"button\\" value=\\"$lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465 albertel 1674: pDoc.write("<\\/form>");
1.351 albertel 1675: pDoc.write('$end_page_msg_central');
1.128 ng 1676: pDoc.close();
1.44 ng 1677: }
1678:
1679: //====================== Script for keyword highlight options ==============
1680: function kwhighlight() {
1681: var kwclr = document.SCORE.kwclr.value;
1682: var kwsize = document.SCORE.kwsize.value;
1683: var kwstyle = document.SCORE.kwstyle.value;
1684: var redsel = "";
1685: var grnsel = "";
1686: var blusel = "";
1687: if (kwclr=="red") {var redsel="checked"};
1688: if (kwclr=="green") {var grnsel="checked"};
1689: if (kwclr=="blue") {var blusel="checked"};
1690: var sznsel = "";
1691: var sz1sel = "";
1692: var sz2sel = "";
1693: if (kwsize=="0") {var sznsel="checked"};
1694: if (kwsize=="+1") {var sz1sel="checked"};
1695: if (kwsize=="+2") {var sz2sel="checked"};
1696: var synsel = "";
1697: var syisel = "";
1698: var sybsel = "";
1699: if (kwstyle=="") {var synsel="checked"};
1700: if (kwstyle=="<i>") {var syisel="checked"};
1701: if (kwstyle=="<b>") {var sybsel="checked"};
1702: highlightCentral();
1703: highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
1704: highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
1705: highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
1706: highlightend();
1707: return;
1708: }
1709:
1710: function highlightCentral() {
1.76 ng 1711: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1712: var xpos = (screen.width-400)/2;
1713: xpos = (xpos < 0) ? '0' : xpos;
1714: var ypos = (screen.height-330)/2-30;
1715: ypos = (ypos < 0) ? '0' : ypos;
1716:
1.206 albertel 1717: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1718: hwdWin.focus();
1719: var hDoc = hwdWin.document;
1.219 www 1720: hDoc.$docopen;
1.351 albertel 1721: hDoc.write('$start_page_highlight_central');
1.76 ng 1722: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.596.2.4 raeburn 1723: hDoc.write("<h3><span class=\\"LC_info\\"> $lt{'kehi'}<\\/span><\\/h3><br /><br />");
1.76 ng 1724:
1.564 bisitz 1725: hDoc.write('<table border="0" width="100%"><tr><td bgcolor="#777777">');
1726: hDoc.write('<table border="0" width="100%"><tr bgcolor="#DDFFFF">');
1.596.2.4 raeburn 1727: hDoc.write("<td><b>$lt{'txtc'}<\\/b><\\/td><td><b>$lt{'font'}<\\/b><\\/td><td><b>$lt{'fnst'}<\\/td><\\/tr>");
1.44 ng 1728: }
1729:
1730: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1731: var hDoc = hwdWin.document;
1732: hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1733: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1734: hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+"> "+clrtxt+"<\\/td>");
1.76 ng 1735: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1736: hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+"> "+sztxt+"<\\/td>");
1.76 ng 1737: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1738: hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+"> "+sytxt+"<\\/td>");
1739: hDoc.write("<\\/tr>");
1.44 ng 1740: }
1741:
1742: function highlightend() {
1.76 ng 1743: var hDoc = hwdWin.document;
1.465 albertel 1744: hDoc.write("<\\/table>");
1745: hDoc.write("<\\/td><\\/tr><\\/table> ");
1.596.2.4 raeburn 1746: hDoc.write("<input type=\\"button\\" value=\\"$lt{'save'}\\" onclick=\\"javascript:updateChoice(1)\\"> ");
1747: hDoc.write("<input type=\\"button\\" value=\\"$lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465 albertel 1748: hDoc.write("<\\/form>");
1.351 albertel 1749: hDoc.write('$end_page_highlight_central');
1.128 ng 1750: hDoc.close();
1.44 ng 1751: }
1752:
1753: </script>
1754: SUBJAVASCRIPT
1755: }
1756:
1.349 albertel 1757: sub get_increment {
1.348 bowersj2 1758: my $increment = $env{'form.increment'};
1759: if ($increment != 1 && $increment != .5 && $increment != .25 &&
1760: $increment != .1) {
1761: $increment = 1;
1762: }
1763: return $increment;
1764: }
1765:
1.585 bisitz 1766: sub gradeBox_start {
1767: return (
1768: &Apache::loncommon::start_data_table()
1769: .&Apache::loncommon::start_data_table_header_row()
1770: .'<th>'.&mt('Part').'</th>'
1771: .'<th>'.&mt('Points').'</th>'
1772: .'<th> </th>'
1773: .'<th>'.&mt('Assign Grade').'</th>'
1774: .'<th>'.&mt('Weight').'</th>'
1775: .'<th>'.&mt('Grade Status').'</th>'
1776: .&Apache::loncommon::end_data_table_header_row()
1777: );
1778: }
1779:
1780: sub gradeBox_end {
1781: return (
1782: &Apache::loncommon::end_data_table()
1783: );
1784: }
1.71 ng 1785: #--- displays the grading box, used in essay type problem and grading by page/sequence
1786: sub gradeBox {
1.322 albertel 1787: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381 albertel 1788: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 1789: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 1790: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466 albertel 1791: my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)')
1792: : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71 ng 1793: $wgt = ($wgt > 0 ? $wgt : '1');
1794: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1795: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71 ng 1796: my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466 albertel 1797: my $display_part= &get_display_part($partid,$symb);
1.270 albertel 1798: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1799: [$partid]);
1800: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1801: if ($last_resets{$partid}) {
1802: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1803: }
1.585 bisitz 1804: $result.=&Apache::loncommon::start_data_table_row();
1.71 ng 1805: my $ctr = 0;
1.348 bowersj2 1806: my $thisweight = 0;
1.349 albertel 1807: my $increment = &get_increment();
1.485 albertel 1808:
1809: my $radio.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1.348 bowersj2 1810: while ($thisweight<=$wgt) {
1.532 bisitz 1811: $radio.= '<td><span class="LC_nobreak"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1812: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348 bowersj2 1813: $thisweight.')" value="'.$thisweight.'" '.
1.401 albertel 1814: ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.485 albertel 1815: $radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348 bowersj2 1816: $thisweight += $increment;
1.71 ng 1817: $ctr++;
1818: }
1.485 albertel 1819: $radio.='</tr></table>';
1820:
1821: my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1.71 ng 1822: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1.589 bisitz 1823: 'onchange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1.71 ng 1824: $wgt.')" /></td>'."\n";
1.485 albertel 1825: $line.='<td>/'.$wgt.' '.$wgtmsg.
1.71 ng 1826: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1.585 bisitz 1827: ' </td>'."\n";
1828: $line.='<td><select name="GD_SEL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1829: 'onchange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1.71 ng 1830: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.485 albertel 1831: $line.='<option></option>'.
1832: '<option value="excused" selected="selected">'.&mt('excused').'</option>';
1.71 ng 1833: } else {
1.485 albertel 1834: $line.='<option selected="selected"></option>'.
1835: '<option value="excused" >'.&mt('excused').'</option>';
1.71 ng 1836: }
1.485 albertel 1837: $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
1838:
1839:
1840: $result .=
1.585 bisitz 1841: '<td>'.$display_part.'</td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>';
1842: $result.=&Apache::loncommon::end_data_table_row();
1.71 ng 1843: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1844: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1845: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1846: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1847: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1848: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1849: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1850: $aggtries.'" />'."\n";
1.582 raeburn 1851: my $res_error;
1852: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record,\$res_error);
1853: if ($res_error) {
1854: return &navmap_errormsg();
1855: }
1.318 banghart 1856: return $result;
1857: }
1.322 albertel 1858:
1859: sub handback_box {
1.582 raeburn 1860: my ($symb,$uname,$udom,$counter,$partid,$record,$res_error) = @_;
1861: my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error);
1.323 banghart 1862: my (@respids);
1.596.2.4 raeburn 1863: my @part_response_id = &flatten_responseType($responseType);
1.375 albertel 1864: foreach my $part_response_id (@part_response_id) {
1865: my ($part,$resp) = @{ $part_response_id };
1.323 banghart 1866: if ($part eq $partid) {
1.375 albertel 1867: push(@respids,$resp);
1.323 banghart 1868: }
1869: }
1.318 banghart 1870: my $result;
1.323 banghart 1871: foreach my $respid (@respids) {
1.322 albertel 1872: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1873: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1874: next if (!@$files);
1.596.2.4 raeburn 1875: my $file_counter = 0;
1.313 banghart 1876: foreach my $file (@$files) {
1.368 banghart 1877: if ($file =~ /\/portfolio\//) {
1.596.2.4 raeburn 1878: $file_counter++;
1.368 banghart 1879: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
1880: my ($name,$version,$ext) = &file_name_version_ext($file_disp);
1881: $file_disp = "$name.$ext";
1882: $file = $file_path.$file_disp;
1883: $result.=&mt('Return commented version of [_1] to student.',
1884: '<span class="LC_filename">'.$file_disp.'</span>');
1885: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1.596.2.4 raeburn 1886: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />'."\n";
1.368 banghart 1887: }
1.322 albertel 1888: }
1.596.2.4 raeburn 1889: if ($file_counter) {
1890: $result .= '<input type="hidden" name="'.$prefix.'countreturndoc" value="'.$file_counter.'" />'."\n".
1891: '<span class="LC_info">'.
1892: '('.&mt('File(s) will be uploaded when you click on Save & Next below.',$file_counter).')</span><br /><br />';
1893: }
1.313 banghart 1894: }
1.318 banghart 1895: return $result;
1.71 ng 1896: }
1.44 ng 1897:
1.58 albertel 1898: sub show_problem {
1.382 albertel 1899: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144 albertel 1900: my $rendered;
1.382 albertel 1901: my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329 albertel 1902: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1903: if ($mode eq 'both' or $mode eq 'text') {
1904: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382 albertel 1905: $env{'request.course.id'},
1906: undef,\%form);
1.144 albertel 1907: }
1.58 albertel 1908: if ($removeform) {
1909: $rendered=~s|<form(.*?)>||g;
1910: $rendered=~s|</form>||g;
1.374 albertel 1911: $rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58 albertel 1912: }
1.144 albertel 1913: my $companswer;
1914: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1915: &Apache::lonxml::restore_problem_counter();
1.382 albertel 1916: $companswer=
1917: &Apache::loncommon::get_student_answers($symb,$uname,$udom,
1918: $env{'request.course.id'},
1919: %form);
1.144 albertel 1920: }
1.58 albertel 1921: if ($removeform) {
1922: $companswer=~s|<form(.*?)>||g;
1923: $companswer=~s|</form>||g;
1.144 albertel 1924: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1925: }
1.596.2.12.2. (raeburn 1926:): my $renderheading = &mt('View of the problem');
1927:): my $answerheading = &mt('Correct answer');
1928:): if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
1929:): my $stu_fullname = $env{'form.fullname'};
1930:): if ($stu_fullname eq '') {
1931:): $stu_fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
1932:): }
1933:): my $forwhom = &nameUserString(undef,$stu_fullname,$uname,$udom);
1934:): if ($forwhom ne '') {
1935:): $renderheading = &mt('View of the problem for[_1]',$forwhom);
1936:): $answerheading = &mt('Correct answer for[_1]',$forwhom);
1937:): }
1938:): }
1.468 albertel 1939: $rendered=
1.588 bisitz 1940: '<div class="LC_Box">'
1.596.2.12.2. (raeburn 1941:): .'<h3 class="LC_hcell">'.$renderheading.'</h3>'
1.588 bisitz 1942: .$rendered
1943: .'</div>';
1.468 albertel 1944: $companswer=
1.588 bisitz 1945: '<div class="LC_Box">'
1.596.2.12.2. (raeburn 1946:): .'<h3 class="LC_hcell">'.$answerheading.'</h3>'
1.588 bisitz 1947: .$companswer
1948: .'</div>';
1.468 albertel 1949: my $result;
1.144 albertel 1950: if ($mode eq 'both') {
1.588 bisitz 1951: $result=$rendered.$companswer;
1.144 albertel 1952: } elsif ($mode eq 'text') {
1.588 bisitz 1953: $result=$rendered;
1.144 albertel 1954: } elsif ($mode eq 'answer') {
1.588 bisitz 1955: $result=$companswer;
1.144 albertel 1956: }
1.71 ng 1957: return $result;
1.58 albertel 1958: }
1.397 albertel 1959:
1.396 banghart 1960: sub files_exist {
1961: my ($r, $symb) = @_;
1962: my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397 albertel 1963:
1.396 banghart 1964: foreach my $student (@students) {
1965: my ($uname,$udom,$fullname) = split(/:/,$student);
1.397 albertel 1966: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
1967: $udom,$uname);
1.396 banghart 1968: my ($string,$timestamp)= &get_last_submission(\%record);
1.397 albertel 1969: foreach my $submission (@$string) {
1970: my ($partid,$respid) =
1971: ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1972: my $files=&get_submitted_files($udom,$uname,$partid,$respid,
1973: \%record);
1974: return 1 if (@$files);
1.396 banghart 1975: }
1976: }
1.397 albertel 1977: return 0;
1.396 banghart 1978: }
1.397 albertel 1979:
1.394 banghart 1980: sub download_all_link {
1981: my ($r,$symb) = @_;
1.395 albertel 1982: my $all_students =
1983: join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
1984:
1985: my $parts =
1986: join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
1987:
1.394 banghart 1988: my $identifier = &Apache::loncommon::get_cgi_id();
1.514 raeburn 1989: &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
1990: 'cgi.'.$identifier.'.symb' => $symb,
1991: 'cgi.'.$identifier.'.parts' => $parts,});
1.395 albertel 1992: $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
1993: &mt('Download All Submitted Documents').'</a>');
1.394 banghart 1994: return
1995: }
1.395 albertel 1996:
1.432 banghart 1997: sub build_section_inputs {
1998: my $section_inputs;
1999: if ($env{'form.section'} eq '') {
2000: $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
2001: } else {
2002: my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434 albertel 2003: foreach my $section (@sections) {
1.432 banghart 2004: $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
2005: }
2006: }
2007: return $section_inputs;
2008: }
2009:
1.44 ng 2010: # --------------------------- show submissions of a student, option to grade
2011: sub submission {
2012: my ($request,$counter,$total) = @_;
1.257 albertel 2013: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
2014: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
2015: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
2016: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.596.2.12.2. (raeburn 2017:): my ($symb) = &get_symb($request);
1.324 albertel 2018: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104 albertel 2019:
2020: if (!&canview($usec)) {
1.398 albertel 2021: $request->print('<span class="LC_warning">Unable to view requested student.('.
2022: $uname.':'.$udom.' in section '.$usec.' in course id '.
2023: $env{'request.course.id'}.')</span>');
1.324 albertel 2024: $request->print(&show_grading_menu_form($symb));
1.104 albertel 2025: return;
2026: }
2027:
1.257 albertel 2028: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
2029: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
2030: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
2031: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381 albertel 2032: my $checkIcon = '<img alt="'.&mt('Check Mark').
2033: '" src="'.$request->dir_config('lonIconsURL').
1.122 ng 2034: '/check.gif" height="16" border="0" />';
1.41 ng 2035:
2036: # header info
2037: if ($counter == 0) {
2038: &sub_page_js($request);
1.257 albertel 2039: &sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
2040: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
2041: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.397 albertel 2042: if ($env{'form.handgrade'} eq 'yes' && &files_exist($request, $symb)) {
1.396 banghart 2043: &download_all_link($request, $symb);
2044: }
1.485 albertel 2045: $request->print('<h3> <span class="LC_info">'.&mt('Submission Record').'</span></h3>'."\n".
2046: '<h4> '.&mt('<b>Resource: </b> [_1]',$env{'form.probTitle'}).'</h4>'."\n");
1.118 ng 2047:
1.44 ng 2048: # option to display problem, only once else it cause problems
2049: # with the form later since the problem has a form.
1.257 albertel 2050: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 2051: my $mode;
1.257 albertel 2052: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 2053: $mode='both';
1.257 albertel 2054: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 2055: $mode='text';
1.257 albertel 2056: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 2057: $mode='answer';
2058: }
1.329 albertel 2059: &Apache::lonxml::clear_problem_counter();
1.144 albertel 2060: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 2061: }
1.441 www 2062:
1.44 ng 2063: # kwclr is the only variable that is guaranteed to be non blank
2064: # if this subroutine has been called once.
1.41 ng 2065: my %keyhash = ();
1.257 albertel 2066: if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41 ng 2067: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 2068: $env{'course.'.$env{'request.course.id'}.'.domain'},
2069: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 2070:
1.257 albertel 2071: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
2072: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
2073: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
2074: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
2075: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
2076: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
2077: $keyhash{$symb.'_subject'} : $env{'form.probTitle'};
2078: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 2079: }
1.257 albertel 2080: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442 banghart 2081: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303 banghart 2082: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 2083: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.257 albertel 2084: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 2085: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.120 ng 2086: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257 albertel 2087: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.41 ng 2088: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 2089: '<input type="hidden" name="studentNo" value="" />'."\n".
2090: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.418 albertel 2091: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 2092: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
2093: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
2094: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
2095: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.432 banghart 2096: &build_section_inputs().
1.326 albertel 2097: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
2098: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" />'."\n".
1.41 ng 2099: '<input type="hidden" name="NCT"'.
1.257 albertel 2100: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
2101: if ($env{'form.handgrade'} eq 'yes') {
2102: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
2103: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
2104: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
2105: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
2106: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 2107: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 2108: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 2109: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
2110: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
2111: }
1.123 ng 2112: }
1.41 ng 2113:
2114: my ($cts,$prnmsg) = (1,'');
1.257 albertel 2115: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 2116: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 2117: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 2118: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 2119: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 2120: '" />'."\n".
2121: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 2122: $cts++;
2123: }
2124: $request->print($prnmsg);
1.32 ng 2125:
1.257 albertel 2126: if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.596.2.4 raeburn 2127:
2128: my %lt = &Apache::lonlocal::texthash(
2129: keyw => 'Keyword Options',
2130: list => 'List',
2131: past => 'Paste Selection to List',
1.596.2.9 raeburn 2132: high => 'Highlight Attribute',
1.596.2.4 raeburn 2133: );
1.88 www 2134: #
2135: # Print out the keyword options line
2136: #
1.41 ng 2137: $request->print(<<KEYWORDS);
1.596.2.4 raeburn 2138: <b>$lt{'keyw'}:</b>
2139: <a href="javascript:keywords(document.SCORE);" target="_self">$lt{'list'}</a>
1.589 bisitz 2140: <a href="#" onmousedown="javascript:getSel(); return false"
1.596.2.4 raeburn 2141: CLASS="page">$lt{'past'}</a>
2142: <a href="javascript:kwhighlight();" target="_self">$lt{'high'}</a><br /><br />
1.38 ng 2143: KEYWORDS
1.88 www 2144: #
2145: # Load the other essays for similarity check
2146: #
1.324 albertel 2147: my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384 albertel 2148: my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359 www 2149: $apath=&escape($apath);
1.88 www 2150: $apath=~s/\W/\_/gs;
1.596.2.12.2. (raeburn 2151:): &init_old_essays($symb,$apath,$adom,$aname);
1.41 ng 2152: }
2153: }
1.44 ng 2154:
1.441 www 2155: # This is where output for one specific student would start
1.592 bisitz 2156: my $add_class = ($counter%2) ? ' LC_grade_show_user_odd_row' : '';
2157: $request->print(
2158: "\n\n"
2159: .'<div class="LC_grade_show_user'.$add_class.'">'
2160: .'<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</h2>'
2161: ."\n"
2162: );
1.441 www 2163:
1.592 bisitz 2164: # Show additional functions if allowed
2165: if ($perm{'vgr'}) {
2166: $request->print(
2167: &Apache::loncommon::track_student_link(
2168: &mt('View recent activity'),
2169: $uname,$udom,'check')
2170: .' '
2171: );
2172: }
2173: if ($perm{'opa'}) {
2174: $request->print(
2175: &Apache::loncommon::pprmlink(
2176: &mt('Set/Change parameters'),
2177: $uname,$udom,$symb,'check'));
2178: }
2179:
2180: # Show Problem
1.257 albertel 2181: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144 albertel 2182: my $mode;
1.257 albertel 2183: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 2184: $mode='both';
1.257 albertel 2185: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 2186: $mode='text';
1.257 albertel 2187: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 2188: $mode='answer';
2189: }
1.329 albertel 2190: &Apache::lonxml::clear_problem_counter();
1.475 albertel 2191: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58 albertel 2192: }
1.144 albertel 2193:
1.257 albertel 2194: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.582 raeburn 2195: my $res_error;
2196: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
2197: if ($res_error) {
2198: $request->print(&navmap_errormsg());
2199: return;
2200: }
1.41 ng 2201:
1.44 ng 2202: # Display student info
1.41 ng 2203: $request->print(($counter == 0 ? '' : '<br />'));
1.590 bisitz 2204:
2205: my $result='<div class="LC_Box">'
2206: .'<h3 class="LC_hcell">'.&mt('Submissions').'</h3>';
1.45 ng 2207: $result.='<input type="hidden" name="name'.$counter.
1.588 bisitz 2208: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.469 albertel 2209: if ($env{'form.handgrade'} eq 'no') {
1.588 bisitz 2210: $result.='<p class="LC_info">'
2211: .&mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)
2212: ."</p>\n";
1.469 albertel 2213: }
2214:
1.118 ng 2215: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464 albertel 2216: my $fullname;
2217: my $col_fullnames = [];
1.257 albertel 2218: if ($env{'form.handgrade'} eq 'yes') {
1.464 albertel 2219: (my $sub_result,$fullname,$col_fullnames)=
2220: &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
2221: $counter);
2222: $result.=$sub_result;
1.41 ng 2223: }
1.44 ng 2224: $request->print($result."\n");
1.588 bisitz 2225:
1.44 ng 2226: # print student answer/submission
1.588 bisitz 2227: # Options are (1) Handgraded submission only
1.44 ng 2228: # (2) Last submission, includes submission that is not handgraded
2229: # (for multi-response type part)
2230: # (3) Last submission plus the parts info
2231: # (4) The whole record for this student
1.257 albertel 2232: if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151 albertel 2233: my ($string,$timestamp)= &get_last_submission(\%record);
1.468 albertel 2234:
2235: my $lastsubonly;
2236:
1.588 bisitz 2237: if ($$timestamp eq '') {
2238: $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>';
2239: } else {
1.592 bisitz 2240: $lastsubonly =
2241: '<div class="LC_grade_submissions_body">'
2242: .'<b>'.&mt('Date Submitted:').'</b> '.$$timestamp."\n";
1.468 albertel 2243:
1.151 albertel 2244: my %seenparts;
1.375 albertel 2245: my @part_response_id = &flatten_responseType($responseType);
2246: foreach my $part (@part_response_id) {
1.393 albertel 2247: next if ($env{'form.lastSub'} eq 'hdgrade'
2248: && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
2249:
1.375 albertel 2250: my ($partid,$respid) = @{ $part };
1.324 albertel 2251: my $display_part=&get_display_part($partid,$symb);
1.257 albertel 2252: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151 albertel 2253: if (exists($seenparts{$partid})) { next; }
2254: $seenparts{$partid}=1;
1.207 albertel 2255: my $submitby='<b>Part:</b> '.$display_part.
2256: ' <b>Collaborative submission by:</b> '.
1.151 albertel 2257: '<a href="javascript:viewSubmitter(\''.
1.257 albertel 2258: $env{"form.$uname:$udom:$partid:submitted_by"}.
1.417 albertel 2259: '\');" target="_self">'.
1.257 albertel 2260: $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151 albertel 2261: $request->print($submitby);
2262: next;
2263: }
2264: my $responsetype = $responseType->{$partid}->{$respid};
2265: if (!exists($record{"resource.$partid.$respid.submission"})) {
1.577 bisitz 2266: $lastsubonly.="\n".'<div class="LC_grade_submission_part">'.
2267: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2268: ' <span class="LC_internal_info">'.
1.596.2.4 raeburn 2269: '('.&mt('Response ID: [_1]',$respid).')'.
1.577 bisitz 2270: '</span> '.
1.539 riegler 2271: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br /><br /></div>';
1.151 albertel 2272: next;
2273: }
1.468 albertel 2274: foreach my $submission (@$string) {
2275: my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375 albertel 2276: if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.596 raeburn 2277: my ($ressub,$hide,$subval) = split(/:/,$submission,3);
1.151 albertel 2278: # Similarity check
2279: my $similar='';
1.596.2.2 raeburn 2280: my ($type,$trial,$rndseed);
2281: if ($hide eq 'rand') {
2282: $type = 'randomizetry';
2283: $trial = $record{"resource.$partid.tries"};
2284: $rndseed = $record{"resource.$partid.rndseed"};
2285: }
1.257 albertel 2286: if($env{'form.checkPlag'}){
1.151 albertel 2287: my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.596.2.12.2. (raeburn 2288:): &most_similar($uname,$udom,$symb,$subval);
1.151 albertel 2289: if ($osim) {
2290: $osim=int($osim*100.0);
1.426 albertel 2291: my %old_course_desc =
2292: &Apache::lonnet::coursedescription($ocrsid,
2293: {'one_time' => 1});
2294:
1.596.2.2 raeburn 2295: if ($hide eq 'anon') {
1.596 raeburn 2296: $similar='<hr /><span class="LC_warning">'.&mt("Essay was found to be similar to another essay submitted for this assignment.").'<br />'.
2297: &mt('As the current submission is for an anonymous survey, no other details are available.').'</span><hr />';
2298: } else {
2299: $similar="<hr /><h3><span class=\"LC_warning\">".
2300: &mt('Essay is [_1]% similar to an essay by [_2] in course [_3] (course id [_4]:[_5])',
2301: $osim,
2302: &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')',
2303: $old_course_desc{'description'},
2304: $old_course_desc{'num'},
2305: $old_course_desc{'domain'}).
2306: '</span></h3><blockquote><i>'.
2307: &keywords_highlight($oessay).
2308: '</i></blockquote><hr />';
2309: }
1.151 albertel 2310: }
1.150 albertel 2311: }
1.596.2.2 raeburn 2312: my $order=&get_order($partid,$respid,$symb,$uname,$udom,
2313: undef,$type,$trial,$rndseed);
1.257 albertel 2314: if ($env{'form.lastSub'} eq 'lastonly' ||
2315: ($env{'form.lastSub'} eq 'hdgrade' &&
1.377 albertel 2316: $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324 albertel 2317: my $display_part=&get_display_part($partid,$symb);
1.577 bisitz 2318: $lastsubonly.='<div class="LC_grade_submission_part">'.
2319: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2320: ' <span class="LC_internal_info">'.
1.596.2.4 raeburn 2321: '('.&mt('Response ID: [_1]',$respid).')'.
2322: '</span> ';
1.313 banghart 2323: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
2324: if (@$files) {
1.596.2.2 raeburn 2325: if ($hide eq 'anon') {
1.596 raeburn 2326: $lastsubonly.='<br />'.&mt('[quant,_1,file] uploaded to this anonymous survey',scalar(@{$files}));
2327: } else {
2328: $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain viruses').'</span><br />';
2329: foreach my $file (@$files) {
2330: &Apache::lonnet::allowuploaded('/adm/grades',$file);
2331: $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border="0" /> '.$file.'</a>';
2332: }
2333: }
1.236 albertel 2334: $lastsubonly.='<br />';
1.41 ng 2335: }
1.596.2.2 raeburn 2336: if ($hide eq 'anon') {
1.596 raeburn 2337: $lastsubonly.='<b>'.&mt('Anonymous Survey').'</b>';
2338: } else {
2339: $lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
2340: &cleanRecord($subval,$responsetype,$symb,$partid,
1.596.2.2 raeburn 2341: $respid,\%record,$order,undef,$uname,$udom,$type,$trial,$rndseed);
1.596 raeburn 2342: }
1.151 albertel 2343: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468 albertel 2344: $lastsubonly.='</div>';
1.41 ng 2345: }
2346: }
2347: }
1.588 bisitz 2348: $lastsubonly.='</div>'."\n"; # End: LC_grade_submissions_body
1.151 albertel 2349: }
2350: $request->print($lastsubonly);
1.468 albertel 2351: } elsif ($env{'form.lastSub'} eq 'datesub') {
1.324 albertel 2352: my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
1.148 albertel 2353: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257 albertel 2354: } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41 ng 2355: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 2356: $env{'request.course.id'},
1.44 ng 2357: $last,'.submission',
2358: 'Apache::grades::keywords_highlight'));
1.41 ng 2359: }
1.120 ng 2360:
1.121 ng 2361: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
2362: .$udom.'" />'."\n");
1.44 ng 2363: # return if view submission with no grading option
1.257 albertel 2364: if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120 ng 2365: my $toGrade.='<input type="button" value="Grade Student" '.
1.589 bisitz 2366: 'onclick="javascript:checksubmit(this.form,\'Grade Student\',\''
1.417 albertel 2367: .$counter.'\');" target="_self" /> '."\n" if (&canmodify($usec));
1.468 albertel 2368: $toGrade.='</div>'."\n";
1.257 albertel 2369: if (($env{'form.command'} eq 'submission') ||
2370: ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.324 albertel 2371: $toGrade.='</form>'.&show_grading_menu_form($symb);
1.169 albertel 2372: }
1.180 albertel 2373: $request->print($toGrade);
1.41 ng 2374: return;
1.180 albertel 2375: } else {
1.468 albertel 2376: $request->print('</div>'."\n");
1.41 ng 2377: }
1.33 ng 2378:
1.121 ng 2379: # essay grading message center
1.257 albertel 2380: if ($env{'form.handgrade'} eq 'yes') {
1.468 albertel 2381: my $result='<div class="LC_grade_message_center">';
2382:
2383: $result.='<div class="LC_grade_message_center_header">'.
2384: &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257 albertel 2385: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 2386: my $msgfor = $givenn.' '.$lastname;
1.464 albertel 2387: if (scalar(@$col_fullnames) > 0) {
2388: my $lastone = pop(@$col_fullnames);
2389: $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118 ng 2390: }
2391: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468 albertel 2392: $result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121 ng 2393: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
2394: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417 albertel 2395: ',\''.$msgfor.'\');" target="_self">'.
1.464 albertel 2396: &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
1.350 albertel 2397: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.118 ng 2398: '<img src="'.$request->dir_config('lonIconsURL').
2399: '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298 www 2400: '<br /> ('.
1.468 albertel 2401: &mt('Message will be sent when you click on Save & Next below.').")\n";
2402: $result.='</div></div>';
1.121 ng 2403: $request->print($result);
1.118 ng 2404: }
1.41 ng 2405:
2406: my %seen = ();
2407: my @partlist;
1.129 ng 2408: my @gradePartRespid;
1.375 albertel 2409: my @part_response_id = &flatten_responseType($responseType);
1.585 bisitz 2410: $request->print(
1.588 bisitz 2411: '<div class="LC_Box">'
2412: .'<h3 class="LC_hcell">'.&mt('Assign Grades').'</h3>'
1.585 bisitz 2413: );
1.592 bisitz 2414: $request->print(&gradeBox_start());
1.375 albertel 2415: foreach my $part_response_id (@part_response_id) {
2416: my ($partid,$respid) = @{ $part_response_id };
2417: my $part_resp = join('_',@{ $part_response_id });
1.322 albertel 2418: next if ($seen{$partid} > 0);
1.41 ng 2419: $seen{$partid}++;
1.393 albertel 2420: next if ($$handgrade{$part_resp} ne 'yes'
2421: && $env{'form.lastSub'} eq 'hdgrade');
1.524 raeburn 2422: push(@partlist,$partid);
2423: push(@gradePartRespid,$partid.'.'.$respid);
1.322 albertel 2424: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 2425: }
1.585 bisitz 2426: $request->print(&gradeBox_end()); # </div>
2427: $request->print('</div>');
1.468 albertel 2428:
2429: $request->print('<div class="LC_grade_info_links">');
2430: $request->print('</div>');
2431:
1.45 ng 2432: $result='<input type="hidden" name="partlist'.$counter.
2433: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 2434: $result.='<input type="hidden" name="gradePartRespid'.
2435: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 2436: my $ctr = 0;
2437: while ($ctr < scalar(@partlist)) {
2438: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
2439: $partlist[$ctr].'" />'."\n";
2440: $ctr++;
2441: }
1.468 albertel 2442: $request->print($result.''."\n");
1.41 ng 2443:
1.441 www 2444: # Done with printing info for one student
2445:
1.468 albertel 2446: $request->print('</div>');#LC_grade_show_user
1.441 www 2447:
2448:
1.41 ng 2449: # print end of form
2450: if ($counter == $total) {
1.592 bisitz 2451: my $endform='<br /><hr /><table border="0"><tr><td>'."\n";
1.485 albertel 2452: $endform.='<input type="button" value="'.&mt('Save & Next').'" '.
1.589 bisitz 2453: 'onclick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417 albertel 2454: $total.','.scalar(@partlist).');" target="_self" /> '."\n";
1.119 ng 2455: my $ntstu ='<select name="NTSTU">'.
2456: '<option>1</option><option>2</option>'.
2457: '<option>3</option><option>5</option>'.
2458: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 2459: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401 albertel 2460: $ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.578 raeburn 2461: $endform.=&mt('[_1]student(s)',$ntstu);
1.485 albertel 2462: $endform.=' <input type="button" value="'.&mt('Previous').'" '.
1.589 bisitz 2463: 'onclick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> '."\n".
1.485 albertel 2464: '<input type="button" value="'.&mt('Next').'" '.
1.589 bisitz 2465: 'onclick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> ';
1.592 bisitz 2466: $endform.='<span class="LC_warning">'.
2467: &mt('(Next and Previous (student) do not save the scores.)').
2468: '</span>'."\n" ;
1.349 albertel 2469: $endform.="<input type='hidden' value='".&get_increment().
1.348 bowersj2 2470: "' name='increment' />";
1.485 albertel 2471: $endform.='</td></tr></table></form>';
1.324 albertel 2472: $endform.=&show_grading_menu_form($symb);
1.41 ng 2473: $request->print($endform);
2474: }
2475: return '';
1.38 ng 2476: }
2477:
1.464 albertel 2478: sub check_collaborators {
2479: my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
2480: my ($result,@col_fullnames);
2481: my ($classlist,undef,$fullname) = &getclasslist('all','0');
2482: foreach my $part (keys(%$handgrade)) {
2483: my $ncol = &Apache::lonnet::EXT('resource.'.$part.
2484: '.maxcollaborators',
2485: $symb,$udom,$uname);
2486: next if ($ncol <= 0);
2487: $part =~ s/\_/\./g;
2488: next if ($record->{'resource.'.$part.'.collaborators'} eq '');
2489: my (@good_collaborators, @bad_collaborators);
2490: foreach my $possible_collaborator
1.596.2.4 raeburn 2491: (split(/[,;\s]+/,$record->{'resource.'.$part.'.collaborators'})) {
1.464 albertel 2492: $possible_collaborator =~ s/[\$\^\(\)]//g;
2493: next if ($possible_collaborator eq '');
1.596.2.8 raeburn 2494: my ($co_name,$co_dom) = split(/:/,$possible_collaborator);
1.464 albertel 2495: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
2496: next if ($co_name eq $uname && $co_dom eq $udom);
2497: # Doing this grep allows 'fuzzy' specification
2498: my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i,
2499: keys(%$classlist));
2500: if (! scalar(@matches)) {
2501: push(@bad_collaborators, $possible_collaborator);
2502: } else {
2503: push(@good_collaborators, @matches);
2504: }
2505: }
2506: if (scalar(@good_collaborators) != 0) {
1.596.2.8 raeburn 2507: $result.='<br />'.&mt('Collaborators:').'<ol>';
1.464 albertel 2508: foreach my $name (@good_collaborators) {
2509: my ($lastname,$givenn) = split(/,/,$$fullname{$name});
2510: push(@col_fullnames, $givenn.' '.$lastname);
1.596.2.4 raeburn 2511: $result.='<li>'.$fullname->{$name}.'</li>';
1.464 albertel 2512: }
1.596.2.4 raeburn 2513: $result.='</ol><br />'."\n";
1.466 albertel 2514: my ($part)=split(/\./,$part);
1.464 albertel 2515: $result.='<input type="hidden" name="collaborator'.$counter.
2516: '" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
2517: "\n";
2518: }
2519: if (scalar(@bad_collaborators) > 0) {
1.466 albertel 2520: $result.='<div class="LC_warning">';
1.464 albertel 2521: $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
2522: $result .= '</div>';
2523: }
2524: if (scalar(@bad_collaborators > $ncol)) {
1.466 albertel 2525: $result .= '<div class="LC_warning">';
1.464 albertel 2526: $result .= &mt('This student has submitted too many '.
2527: 'collaborators. Maximum is [_1].',$ncol);
2528: $result .= '</div>';
2529: }
2530: }
2531: return ($result,$fullname,\@col_fullnames);
2532: }
2533:
1.44 ng 2534: #--- Retrieve the last submission for all the parts
1.38 ng 2535: sub get_last_submission {
1.119 ng 2536: my ($returnhash)=@_;
1.596 raeburn 2537: my (@string,$timestamp,%lasthidden);
1.119 ng 2538: if ($$returnhash{'version'}) {
1.46 ng 2539: my %lasthash=();
2540: my ($version);
1.119 ng 2541: for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397 albertel 2542: foreach my $key (sort(split(/\:/,
2543: $$returnhash{$version.':keys'}))) {
2544: $lasthash{$key}=$$returnhash{$version.':'.$key};
2545: $timestamp =
1.545 raeburn 2546: &Apache::lonlocal::locallocaltime($$returnhash{$version.':timestamp'});
1.46 ng 2547: }
2548: }
1.596.2.2 raeburn 2549: my (%typeparts,%randombytry);
1.596 raeburn 2550: my $showsurv =
2551: &Apache::lonnet::allowed('vas',$env{'request.course.id'});
2552: foreach my $key (sort(keys(%lasthash))) {
2553: if ($key =~ /\.type$/) {
2554: if (($lasthash{$key} eq 'anonsurvey') ||
1.596.2.2 raeburn 2555: ($lasthash{$key} eq 'anonsurveycred') ||
2556: ($lasthash{$key} eq 'randomizetry')) {
1.596 raeburn 2557: my ($ign,@parts) = split(/\./,$key);
2558: pop(@parts);
1.596.2.3 raeburn 2559: my $id = join('.',@parts);
1.596.2.2 raeburn 2560: if ($lasthash{$key} eq 'randomizetry') {
2561: $randombytry{$ign.'.'.$id} = $lasthash{$key};
2562: } else {
2563: unless ($showsurv) {
2564: $typeparts{$ign.'.'.$id} = $lasthash{$key};
2565: }
1.596 raeburn 2566: }
2567: delete($lasthash{$key});
2568: }
2569: }
2570: }
2571: my @hidden = keys(%typeparts);
1.596.2.2 raeburn 2572: my @randomize = keys(%randombytry);
1.397 albertel 2573: foreach my $key (keys(%lasthash)) {
2574: next if ($key !~ /\.submission$/);
1.596 raeburn 2575: my $hide;
2576: if (@hidden) {
2577: foreach my $id (@hidden) {
2578: if ($key =~ /^\Q$id\E/) {
1.596.2.2 raeburn 2579: $hide = 'anon';
1.596 raeburn 2580: last;
2581: }
2582: }
2583: }
1.596.2.2 raeburn 2584: unless ($hide) {
2585: if (@randomize) {
2586: foreach my $id (@hidden) {
2587: if ($key =~ /^\Q$id\E/) {
2588: $hide = 'rand';
2589: last;
2590: }
2591: }
2592: }
2593: }
1.397 albertel 2594: my ($partid,$foo) = split(/submission$/,$key);
2595: my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
1.398 albertel 2596: '<span class="LC_warning">Draft Copy</span> ' : '';
1.596 raeburn 2597: push(@string, join(':', $key, $hide, $draft.$lasthash{$key}));
1.41 ng 2598: }
2599: }
1.397 albertel 2600: if (!@string) {
2601: $string[0] =
1.539 riegler 2602: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span>';
1.397 albertel 2603: }
2604: return (\@string,\$timestamp);
1.38 ng 2605: }
1.35 ng 2606:
1.44 ng 2607: #--- High light keywords, with style choosen by user.
1.38 ng 2608: sub keywords_highlight {
1.44 ng 2609: my $string = shift;
1.257 albertel 2610: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2611: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2612: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2613: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.398 albertel 2614: foreach my $keyword (@keylist) {
2615: $string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41 ng 2616: }
2617: return $string;
1.38 ng 2618: }
1.36 ng 2619:
1.596.2.12.2. (raeburn 2620:): # For Tasks provide a mechanism to display previous version for one specific student
2621:):
2622:): sub show_previous_task_version {
2623:): my ($request,$symb) = @_;
2624:): if ($symb eq '') {
2625:): $request->print("Unable to handle ambiguous references.");
2626:):
2627:): return '';
2628:): }
2629:): my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
2630:): my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
2631:): if (!&canview($usec)) {
2632:): $request->print('<span class="LC_warning">Unable to view previous version for requested student.('.
2633:): $uname.':'.$udom.' in section '.$usec.' in course id '.
2634:): $env{'request.course.id'}.')</span>');
2635:): return;
2636:): }
2637:): my $mode = 'both';
2638:): my $isTask = ($symb =~/\.task$/);
2639:): if ($isTask) {
2640:): if ($env{'form.previousversion'} =~ /^\d+$/) {
2641:): if ($env{'form.fullname'} eq '') {
2642:): $env{'form.fullname'} =
2643:): &Apache::loncommon::plainname($uname,$udom,'lastname');
2644:): }
2645:): my $probtitle=&Apache::lonnet::gettitle($symb);
2646:): $request->print("\n\n".
2647:): '<div class="LC_grade_show_user">'.
2648:): '<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
2649:): '</h2>'."\n");
2650:): &Apache::lonxml::clear_problem_counter();
2651:): $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,
2652:): {'previousversion' => $env{'form.previousversion'} }));
2653:): $request->print("\n</div>");
2654:): }
2655:): }
2656:): return;
2657:): }
2658:):
2659:): sub choose_task_version_form {
2660:): my ($symb,$uname,$udom,$nomenu) = @_;
2661:): my $isTask = ($symb =~/\.task$/);
2662:): my ($current,$version,$result,$js,$displayed,$rowtitle);
2663:): if ($isTask) {
2664:): my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
2665:): $udom,$uname);
2666:): if (($record{'resource.0.version'} eq '') ||
2667:): ($record{'resource.0.version'} < 2)) {
2668:): return ($record{'resource.0.version'},
2669:): $record{'resource.0.version'},$result,$js);
2670:): } else {
2671:): $current = $record{'resource.0.version'};
2672:): }
2673:): if ($env{'form.previousversion'}) {
2674:): $displayed = $env{'form.previousversion'};
2675:): $rowtitle = &mt('Choose another version:')
2676:): } else {
2677:): $displayed = $current;
2678:): $rowtitle = &mt('Show earlier version:');
2679:): }
2680:): $result = '<div class="LC_left_float">';
2681:): my $list;
2682:): my $numversions = 0;
2683:): for (my $i=1; $i<=$record{'resource.0.version'}; $i++) {
2684:): if ($i == $current) {
2685:): if (!$env{'form.previousversion'} || $nomenu) {
2686:): next;
2687:): } else {
2688:): $list .= '<option value="'.$i.'">'.&mt('Current').'</option>'."\n";
2689:): $numversions ++;
2690:): }
2691:): } elsif (defined($record{'resource.'.$i.'.0.status'})) {
2692:): unless ($i == $env{'form.previousversion'}) {
2693:): $numversions ++;
2694:): }
2695:): $list .= '<option value="'.$i.'">'.$i.'</option>'."\n";
2696:): }
2697:): }
2698:): if ($numversions) {
2699:): $symb = &HTML::Entities::encode($symb,'<>"&');
2700:): $result .=
2701:): '<form name="getprev" method="post" action=""'.
2702:): ' onsubmit="return previousVersion('."'$uname','$udom','$symb','$displayed'".');">'.
2703:): &Apache::loncommon::start_data_table().
2704:): &Apache::loncommon::start_data_table_row().
2705:): '<th align="left">'.$rowtitle.'</th>'.
2706:): '<td><select name="version">'.
2707:): '<option>'.&mt('Select').'</option>'.
2708:): $list.
2709:): '</select></td>'.
2710:): &Apache::loncommon::end_data_table_row();
2711:): unless ($nomenu) {
2712:): $result .= &Apache::loncommon::start_data_table_row().
2713:): '<th align="left">'.&mt('Open in new window').'</th>'.
2714:): '<td><span class="LC_nobreak">'.
2715:): '<label><input type="radio" name="prevwin" value="1" />'.
2716:): &mt('Yes').'</label>'.
2717:): '<label><input type="radio" name="prevwin" value="0" checked="checked" />'.&mt('No').'</label>'.
2718:): '</span></td>'.
2719:): &Apache::loncommon::end_data_table_row();
2720:): }
2721:): $result .=
2722:): &Apache::loncommon::start_data_table_row().
2723:): '<th align="left"> </th>'.
2724:): '<td>'.
2725:): '<input type="submit" name="prevsub" value="'.&mt('Display').'" />'.
2726:): '</td>'.
2727:): &Apache::loncommon::end_data_table_row().
2728:): &Apache::loncommon::end_data_table().
2729:): '</form>';
2730:): $js = &previous_display_javascript($nomenu,$current);
2731:): } elsif ($displayed && $nomenu) {
2732:): $result .= '<a href="javascript:window.close()">'.&mt('Close window').'</a>';
2733:): } else {
2734:): $result .= &mt('No previous versions to show for this student');
2735:): }
2736:): $result .= '</div>';
2737:): }
2738:): return ($current,$displayed,$result,$js);
2739:): }
2740:):
2741:): sub previous_display_javascript {
2742:): my ($nomenu,$current) = @_;
2743:): my $js = <<"JSONE";
2744:): <script type="text/javascript">
2745:): // <![CDATA[
2746:): function previousVersion(uname,udom,symb) {
2747:): var current = '$current';
2748:): var version = document.getprev.version.options[document.getprev.version.selectedIndex].value;
2749:): var prevstr = new RegExp("^\\\\d+\$");
2750:): if (!prevstr.test(version)) {
2751:): return false;
2752:): }
2753:): var url = '';
2754:): if (version == current) {
2755:): url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=submission';
2756:): } else {
2757:): url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=versionsub&previousversion='+version;
2758:): }
2759:): JSONE
2760:): if ($nomenu) {
2761:): $js .= <<"JSTWO";
2762:): document.location.href = url;
2763:): JSTWO
2764:): } else {
2765:): $js .= <<"JSTHREE";
2766:): var newwin = 0;
2767:): for (var i=0; i<document.getprev.prevwin.length; i++) {
2768:): if (document.getprev.prevwin[i].checked == true) {
2769:): newwin = document.getprev.prevwin[i].value;
2770:): }
2771:): }
2772:): if (newwin == 1) {
2773:): var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
2774:): url = url+'&inhibitmenu=yes';
2775:): if (typeof(previousWin) == 'undefined' || previousWin.closed) {
2776:): previousWin = window.open(url,'',options,1);
2777:): } else {
2778:): previousWin.location.href = url;
2779:): }
2780:): previousWin.focus();
2781:): return false;
2782:): } else {
2783:): document.location.href = url;
2784:): return false;
2785:): }
2786:): JSTHREE
2787:): }
2788:): $js .= <<"ENDJS";
2789:): return false;
2790:): }
2791:): // ]]>
2792:): </script>
2793:): ENDJS
2794:):
2795:): }
2796:):
1.44 ng 2797: #--- Called from submission routine
1.38 ng 2798: sub processHandGrade {
1.41 ng 2799: my ($request) = shift;
1.596.2.12.2. (raeburn 2800:): my ($symb) = &get_symb($request);
1.324 albertel 2801: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2802: my $button = $env{'form.gradeOpt'};
2803: my $ngrade = $env{'form.NCT'};
2804: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2805: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2806: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2807:
1.44 ng 2808: if ($button eq 'Save & Next') {
2809: my $ctr = 0;
2810: while ($ctr < $ngrade) {
1.257 albertel 2811: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324 albertel 2812: my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2813: if ($errorflag eq 'no_score') {
2814: $ctr++;
2815: next;
2816: }
1.104 albertel 2817: if ($errorflag eq 'not_allowed') {
1.398 albertel 2818: $request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
1.104 albertel 2819: $ctr++;
2820: next;
2821: }
1.257 albertel 2822: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2823: my ($subject,$message,$msgstatus) = ('','','');
1.418 albertel 2824: my $restitle = &Apache::lonnet::gettitle($symb);
2825: my ($feedurl,$showsymb) =
2826: &get_feedurl_and_symb($symb,$uname,$udom);
2827: my $messagetail;
1.62 albertel 2828: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2829: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2830: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386 raeburn 2831: $subject.=' ['.$restitle.']';
1.44 ng 2832: my (@msgnum) = split(/,/,$includemsg);
2833: foreach (@msgnum) {
1.257 albertel 2834: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2835: }
1.80 ng 2836: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2837: if ($env{'form.withgrades'.$ctr}) {
2838: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386 raeburn 2839: $messagetail = " for <a href=\"".
1.418 albertel 2840: $feedurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.386 raeburn 2841: }
2842: $msgstatus =
2843: &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
2844: $message.$messagetail,
1.418 albertel 2845: undef,$feedurl,undef,
1.386 raeburn 2846: undef,undef,$showsymb,
2847: $restitle);
1.574 bisitz 2848: $request->print('<br />'.&mt('Sending message to [_1]',$uname.':'.$udom).': '.
1.596.2.4 raeburn 2849: $msgstatus.'<br />');
1.44 ng 2850: }
1.257 albertel 2851: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2852: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2853: foreach my $collabstr (@collabstrs) {
2854: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2855: foreach my $collaborator (@collaborators) {
1.150 albertel 2856: my ($errorflag,$pts,$wgt) =
1.324 albertel 2857: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2858: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2859: if ($errorflag eq 'not_allowed') {
1.362 albertel 2860: $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150 albertel 2861: next;
1.418 albertel 2862: } elsif ($message ne '') {
2863: my ($baseurl,$showsymb) =
2864: &get_feedurl_and_symb($symb,$collaborator,
2865: $udom);
2866: if ($env{'form.withgrades'.$ctr}) {
2867: $messagetail = " for <a href=\"".
1.386 raeburn 2868: $baseurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.150 albertel 2869: }
1.418 albertel 2870: $msgstatus =
2871: &Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104 albertel 2872: }
1.44 ng 2873: }
2874: }
2875: }
2876: $ctr++;
2877: }
2878: }
2879:
1.257 albertel 2880: if ($env{'form.handgrade'} eq 'yes') {
1.119 ng 2881: # Keywords sorted in alphabatical order
1.257 albertel 2882: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 2883: my %keyhash = ();
1.257 albertel 2884: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
2885: $env{'form.keywords'} =~ s/^\s+|\s+$//;
2886: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
2887: $env{'form.keywords'} = join(' ',@keywords);
2888: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
2889: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
2890: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
2891: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
2892: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 2893:
2894: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 2895: # New messages are saved in env for the next student.
1.119 ng 2896: # All messages are saved in nohist_handgrade.db
2897: my ($ctr,$idx) = (1,1);
1.257 albertel 2898: while ($ctr <= $env{'form.savemsgN'}) {
2899: if ($env{'form.savemsg'.$ctr} ne '') {
2900: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 2901: $idx++;
2902: }
2903: $ctr++;
1.41 ng 2904: }
1.119 ng 2905: $ctr = 0;
2906: while ($ctr < $ngrade) {
1.257 albertel 2907: if ($env{'form.newmsg'.$ctr} ne '') {
2908: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
2909: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 2910: $idx++;
2911: }
2912: $ctr++;
1.41 ng 2913: }
1.257 albertel 2914: $env{'form.savemsgN'} = --$idx;
2915: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 2916: my $putresult = &Apache::lonnet::put
1.301 albertel 2917: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 2918: }
1.44 ng 2919: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 2920: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
2921: if ($env{'form.refresh'} eq 'on') {
1.86 ng 2922: my ($ctr,$total) = (0,0);
2923: while ($ctr < $ngrade) {
1.257 albertel 2924: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 2925: $ctr++;
2926: }
1.257 albertel 2927: $env{'form.NTSTU'}=$ngrade;
1.86 ng 2928: $ctr = 0;
2929: while ($ctr < $total) {
1.257 albertel 2930: my $processUser = $env{'form.unamedom'.$ctr};
2931: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2932: $env{'form.fullname'} = $$fullname{$processUser};
1.86 ng 2933: &submission($request,$ctr,$total-1);
1.41 ng 2934: $ctr++;
2935: }
2936: return '';
2937: }
1.36 ng 2938:
1.121 ng 2939: # Go directly to grade student - from submission or link from chart page
1.120 ng 2940: if ($button eq 'Grade Student') {
1.324 albertel 2941: (undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
1.257 albertel 2942: my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
2943: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2944: $env{'form.fullname'} = $$fullname{$processUser};
1.120 ng 2945: &submission($request,0,0);
2946: return '';
2947: }
2948:
1.44 ng 2949: # Get the next/previous one or group of students
1.257 albertel 2950: my $firststu = $env{'form.unamedom0'};
2951: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 2952: my $ctr = 2;
1.41 ng 2953: while ($laststu eq '') {
1.257 albertel 2954: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 2955: $ctr++;
2956: $laststu = $firststu if ($ctr > $ngrade);
2957: }
1.44 ng 2958:
1.41 ng 2959: my (@parsedlist,@nextlist);
2960: my ($nextflg) = 0;
1.524 raeburn 2961: foreach my $item (sort
1.294 albertel 2962: {
2963: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2964: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2965: }
2966: return $a cmp $b;
2967: } (keys(%$fullname))) {
1.41 ng 2968: if ($nextflg == 1 && $button =~ /Next$/) {
1.524 raeburn 2969: push(@parsedlist,$item);
1.41 ng 2970: }
1.524 raeburn 2971: $nextflg = 1 if ($item eq $laststu);
1.41 ng 2972: if ($button eq 'Previous') {
1.524 raeburn 2973: last if ($item eq $firststu);
2974: push(@parsedlist,$item);
1.41 ng 2975: }
2976: }
2977: $ctr = 0;
2978: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.582 raeburn 2979: my $res_error;
2980: my ($partlist) = &response_type($symb,\$res_error);
2981: if ($res_error) {
2982: $request->print(&navmap_errormsg());
2983: return;
2984: }
1.41 ng 2985: foreach my $student (@parsedlist) {
1.257 albertel 2986: my $submitonly=$env{'form.submitonly'};
1.41 ng 2987: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 2988:
2989: if ($submitonly eq 'queued') {
2990: my %queue_status =
2991: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
2992: $udom,$uname);
2993: next if (!defined($queue_status{'gradingqueue'}));
2994: }
2995:
1.156 albertel 2996: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 2997: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2998: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 2999: my $submitted = 0;
1.248 albertel 3000: my $ungraded = 0;
3001: my $incorrect = 0;
1.524 raeburn 3002: foreach my $item (keys(%status)) {
3003: $submitted = 1 if ($status{$item} ne 'nothing');
3004: $ungraded = 1 if ($status{$item} =~ /^ungraded/);
3005: $incorrect = 1 if ($status{$item} =~ /^incorrect/);
3006: my ($foo,$partid,$foo1) = split(/\./,$item);
1.145 albertel 3007: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
3008: $submitted = 0;
3009: }
1.41 ng 3010: }
1.156 albertel 3011: next if (!$submitted && ($submitonly eq 'yes' ||
3012: $submitonly eq 'incorrect' ||
3013: $submitonly eq 'graded'));
1.248 albertel 3014: next if (!$ungraded && ($submitonly eq 'graded'));
3015: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 3016: }
1.524 raeburn 3017: push(@nextlist,$student) if ($ctr < $ntstu);
1.129 ng 3018: last if ($ctr == $ntstu);
1.41 ng 3019: $ctr++;
3020: }
1.36 ng 3021:
1.41 ng 3022: $ctr = 0;
3023: my $total = scalar(@nextlist)-1;
1.39 ng 3024:
1.524 raeburn 3025: foreach (sort(@nextlist)) {
1.41 ng 3026: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 3027: $env{'form.student'} = $uname;
3028: $env{'form.userdom'} = $udom;
3029: $env{'form.fullname'} = $$fullname{$_};
1.41 ng 3030: &submission($request,$ctr,$total);
3031: $ctr++;
3032: }
3033: if ($total < 0) {
1.485 albertel 3034: my $the_end = '<h3><span class="LC_info">'.&mt('LON-CAPA User Message').'</span></h3><br />'."\n";
1.596.2.4 raeburn 3035: $the_end.='<p>'.&mt('[_1]Message:[_2] No more students for this section or class.','<b>','</b>').'</p>'."\n";
1.485 albertel 3036: $the_end.=&mt('Click on the button below to return to the grading menu.').'<br /><br />'."\n";
1.324 albertel 3037: $the_end.=&show_grading_menu_form($symb);
1.41 ng 3038: $request->print($the_end);
3039: }
3040: return '';
1.38 ng 3041: }
1.36 ng 3042:
1.44 ng 3043: #---- Save the score and award for each student, if changed
1.38 ng 3044: sub saveHandGrade {
1.324 albertel 3045: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 3046: my @version_parts;
1.104 albertel 3047: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 3048: $env{'request.course.id'});
1.104 albertel 3049: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 3050: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 3051: my @parts_graded;
1.77 ng 3052: my %newrecord = ();
3053: my ($pts,$wgt) = ('','');
1.269 raeburn 3054: my %aggregate = ();
3055: my $aggregateflag = 0;
1.301 albertel 3056: my @parts = split(/:/,$env{'form.partlist'.$newflg});
3057: foreach my $new_part (@parts) {
1.337 banghart 3058: #collaborator ($submi may vary for different parts
1.259 banghart 3059: if ($submitter && $new_part ne $part) { next; }
3060: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 3061: if ($dropMenu eq 'excused') {
1.259 banghart 3062: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
3063: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
3064: if (exists($record{'resource.'.$new_part.'.awarded'})) {
3065: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 3066: }
1.364 banghart 3067: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 3068: }
1.125 ng 3069: } elsif ($dropMenu eq 'reset status'
1.259 banghart 3070: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.524 raeburn 3071: foreach my $key (keys(%record)) {
1.259 banghart 3072: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 3073: }
1.259 banghart 3074: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 3075: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 3076: my $totaltries = $record{'resource.'.$part.'.tries'};
3077:
3078: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
3079: [$new_part]);
3080: my $aggtries =$totaltries;
1.269 raeburn 3081: if ($last_resets{$new_part}) {
1.270 albertel 3082: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
3083: $new_part);
1.269 raeburn 3084: }
1.270 albertel 3085:
3086: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 3087: if ($aggtries > 0) {
1.327 albertel 3088: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 3089: $aggregateflag = 1;
3090: }
1.125 ng 3091: } elsif ($dropMenu eq '') {
1.259 banghart 3092: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
3093: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
3094: $env{'form.RADVAL'.$newflg.'_'.$new_part});
3095: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 3096: next;
3097: }
1.259 banghart 3098: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
3099: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 3100: my $partial= $pts/$wgt;
1.259 banghart 3101: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 3102: #do not update score for part if not changed.
1.346 banghart 3103: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 3104: next;
1.251 banghart 3105: } else {
1.524 raeburn 3106: push(@parts_graded,$new_part);
1.153 albertel 3107: }
1.259 banghart 3108: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
3109: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 3110: }
1.259 banghart 3111: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 3112: if ($partial == 0) {
1.153 albertel 3113: if ($record{$reckey} ne 'incorrect_by_override') {
3114: $newrecord{$reckey} = 'incorrect_by_override';
3115: }
1.41 ng 3116: } else {
1.153 albertel 3117: if ($record{$reckey} ne 'correct_by_override') {
3118: $newrecord{$reckey} = 'correct_by_override';
3119: }
3120: }
3121: if ($submitter &&
1.259 banghart 3122: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
3123: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 3124: }
1.259 banghart 3125: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 3126: "$env{'user.name'}:$env{'user.domain'}";
1.41 ng 3127: }
1.259 banghart 3128: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 3129: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
3130: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
3131: $dropMenu eq 'reset status')
3132: {
1.524 raeburn 3133: push(@version_parts,$new_part);
1.259 banghart 3134: }
1.41 ng 3135: }
1.301 albertel 3136: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3137: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3138:
1.344 albertel 3139: if (%newrecord) {
3140: if (@version_parts) {
1.364 banghart 3141: my @changed_keys = &version_portfiles(\%record, \@parts_graded,
3142: $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 3143: @newrecord{@changed_keys} = @record{@changed_keys};
1.367 albertel 3144: foreach my $new_part (@version_parts) {
3145: &handback_files($request,$symb,$stuname,$domain,$newflg,
3146: $new_part,\%newrecord);
3147: }
1.259 banghart 3148: }
1.44 ng 3149: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 3150: $env{'request.course.id'},$domain,$stuname);
1.380 albertel 3151: &check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
3152: $cdom,$cnum,$domain,$stuname);
1.41 ng 3153: }
1.269 raeburn 3154: if ($aggregateflag) {
3155: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3156: $cdom,$cnum);
1.269 raeburn 3157: }
1.301 albertel 3158: return ('',$pts,$wgt);
1.36 ng 3159: }
1.322 albertel 3160:
1.380 albertel 3161: sub check_and_remove_from_queue {
3162: my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
3163: my @ungraded_parts;
3164: foreach my $part (@{$parts}) {
3165: if ( $record->{ 'resource.'.$part.'.awarded'} eq ''
3166: && $record->{ 'resource.'.$part.'.solved' } ne 'excused'
3167: && $newrecord->{'resource.'.$part.'.awarded'} eq ''
3168: && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
3169: ) {
3170: push(@ungraded_parts, $part);
3171: }
3172: }
3173: if ( !@ungraded_parts ) {
3174: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
3175: $cnum,$domain,$stuname);
3176: }
3177: }
3178:
1.337 banghart 3179: sub handback_files {
3180: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.517 raeburn 3181: my $portfolio_root = '/userfiles/portfolio';
1.582 raeburn 3182: my $res_error;
3183: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3184: if ($res_error) {
3185: $request->print('<br />'.&navmap_errormsg().'<br />');
3186: return;
3187: }
1.596.2.4 raeburn 3188: my @handedback;
3189: my $file_msg;
1.375 albertel 3190: my @part_response_id = &flatten_responseType($responseType);
3191: foreach my $part_response_id (@part_response_id) {
3192: my ($part_id,$resp_id) = @{ $part_response_id };
3193: my $part_resp = join('_',@{ $part_response_id });
1.596.2.4 raeburn 3194: if (($env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'} =~ /^\d+$/) & ($new_part eq $part_id)) {
3195: for (my $counter=1; $counter<=$env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'}; $counter++) {
1.337 banghart 3196: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
1.596.2.4 raeburn 3197: if ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter}) {
3198: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter.'.filename'};
1.338 banghart 3199: my ($directory,$answer_file) =
1.596.2.4 raeburn 3200: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter} =~ /^(.*?)([^\/]*)$/);
1.338 banghart 3201: my ($answer_name,$answer_ver,$answer_ext) =
3202: &file_name_version_ext($answer_file);
1.355 banghart 3203: my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.517 raeburn 3204: my $getpropath = 1;
1.596.2.12.2. (raeburn 3205:): my ($dir_list,$listerror) =
3206:): &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,
3207:): $domain,$stuname,$getpropath);
3208:): my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.355 banghart 3209: # fix file name
3210: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
3211: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
1.596.2.4 raeburn 3212: $newflg.'_'.$part_resp.'_returndoc'.$counter,
1.355 banghart 3213: $save_file_name);
1.337 banghart 3214: if ($result !~ m|^/uploaded/|) {
1.536 raeburn 3215: $request->print('<br /><span class="LC_error">'.
3216: &mt('An error occurred ([_1]) while trying to upload [_2].',
1.596.2.4 raeburn 3217: $result,$newflg.'_'.$part_resp.'_returndoc'.$counter).
1.536 raeburn 3218: '</span>');
1.356 banghart 3219: } else {
1.360 banghart 3220: # mark the file as read only
1.596.2.4 raeburn 3221: push(@handedback,$save_file_name);
1.367 albertel 3222: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
3223: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
3224: }
3225: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
1.596.2.4 raeburn 3226: $file_msg.='<span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span> <br />";
1.367 albertel 3227:
1.337 banghart 3228: }
1.596.2.4 raeburn 3229: $request->print('<br />'.&mt('[_1] will be the uploaded file name [_2]','<span class="LC_info">'.$fname.'</span>','<span class="LC_filename">'.$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter}.'</span>'));
1.337 banghart 3230: }
3231: }
3232: }
1.596.2.4 raeburn 3233: }
3234: if (@handedback > 0) {
3235: $request->print('<br />');
3236: my @what = ($symb,$env{'request.course.id'},'handback');
3237: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@handedback,\@what);
3238: my $user_lh = &Apache::loncommon::user_lang($stuname,$domain,$env{'request.course.id'});
3239: my ($subject,$message);
3240: if (scalar(@handedback) == 1) {
3241: $subject = &mt_user($user_lh,'File Handed Back by Instructor');
3242: } else {
3243: $subject = &mt_user($user_lh,'Files Handed Back by Instructor');
3244: $message = &mt_user($user_lh,'Files have been returned that were originally submitted in response to: ');
3245: }
3246: $message .= "<p><strong>".&Apache::lonnet::gettitle($symb)." </strong></p>";
3247: $message .= &mt_user($user_lh,'The returned file(s) are named: [_1]',"<br />$file_msg <br />").
3248: &mt_user($user_lh,'The file(s) can be found in your [_1]portfolio[_2].','<a href="/adm/portfolio">','</a>');
3249: my ($feedurl,$showsymb) =
3250: &get_feedurl_and_symb($symb,$domain,$stuname);
3251: my $restitle = &Apache::lonnet::gettitle($symb);
3252: $subject .= ' '.&mt_user($user_lh,'(File Returned)').' ['.$restitle.']';
3253: my $msgstatus =
3254: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject,
3255: $message,undef,$feedurl,undef,undef,undef,$showsymb,
3256: $restitle);
3257: if ($msgstatus) {
3258: $request->print(&mt('Notification message status: [_1]','<span class="LC_info">'.$msgstatus.'</span>').'<br />');
3259: }
3260: }
1.338 banghart 3261: return;
1.337 banghart 3262: }
3263:
1.418 albertel 3264: sub get_feedurl_and_symb {
3265: my ($symb,$uname,$udom) = @_;
3266: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
3267: $url = &Apache::lonnet::clutter($url);
3268: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
3269: $symb,$udom,$uname);
3270: if ($encrypturl =~ /^yes$/i) {
3271: &Apache::lonenc::encrypted(\$url,1);
3272: &Apache::lonenc::encrypted(\$symb,1);
3273: }
3274: return ($url,$symb);
3275: }
3276:
1.313 banghart 3277: sub get_submitted_files {
3278: my ($udom,$uname,$partid,$respid,$record) = @_;
3279: my @files;
3280: if ($$record{"resource.$partid.$respid.portfiles"}) {
3281: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
3282: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
3283: push(@files,$file_url.$file);
3284: }
3285: }
3286: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
3287: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
3288: }
3289: return (\@files);
3290: }
1.322 albertel 3291:
1.269 raeburn 3292: # ----------- Provides number of tries since last reset.
3293: sub get_num_tries {
3294: my ($record,$last_reset,$part) = @_;
3295: my $timestamp = '';
3296: my $num_tries = 0;
3297: if ($$record{'version'}) {
3298: for (my $version=$$record{'version'};$version>=1;$version--) {
3299: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
3300: $timestamp = $$record{$version.':timestamp'};
3301: if ($timestamp > $last_reset) {
3302: $num_tries ++;
3303: } else {
3304: last;
3305: }
3306: }
3307: }
3308: }
3309: return $num_tries;
3310: }
3311:
3312: # ----------- Determine decrements required in aggregate totals
3313: sub decrement_aggs {
3314: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
3315: my %decrement = (
3316: attempts => 0,
3317: users => 0,
3318: correct => 0
3319: );
3320: $decrement{'attempts'} = $aggtries;
3321: if ($solvedstatus =~ /^correct/) {
3322: $decrement{'correct'} = 1;
3323: }
3324: if ($aggtries == $totaltries) {
3325: $decrement{'users'} = 1;
3326: }
1.524 raeburn 3327: foreach my $type (keys(%decrement)) {
1.269 raeburn 3328: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
3329: }
3330: return;
3331: }
3332:
3333: # ----------- Determine timestamps for last reset of aggregate totals for parts
3334: sub get_last_resets {
1.270 albertel 3335: my ($symb,$courseid,$partids) =@_;
3336: my %last_resets;
1.269 raeburn 3337: my $cdom = $env{'course.'.$courseid.'.domain'};
3338: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 3339: my @keys;
3340: foreach my $part (@{$partids}) {
3341: push(@keys,"$symb\0$part\0resettime");
3342: }
3343: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
3344: $cdom,$cname);
3345: foreach my $part (@{$partids}) {
3346: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 3347: }
1.270 albertel 3348: return %last_resets;
1.269 raeburn 3349: }
3350:
1.251 banghart 3351: # ----------- Handles creating versions for portfolio files as answers
3352: sub version_portfiles {
1.343 banghart 3353: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 3354: my $version_parts = join('|',@$v_flag);
1.343 banghart 3355: my @returned_keys;
1.255 banghart 3356: my $parts = join('|', @$parts_graded);
1.517 raeburn 3357: my $portfolio_root = '/userfiles/portfolio';
1.277 albertel 3358: foreach my $key (keys(%$record)) {
1.259 banghart 3359: my $new_portfiles;
1.263 banghart 3360: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 3361: my @versioned_portfiles;
1.367 albertel 3362: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252 banghart 3363: foreach my $file (@portfiles) {
1.306 banghart 3364: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 3365: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
3366: my ($answer_name,$answer_ver,$answer_ext) =
3367: &file_name_version_ext($answer_file);
1.596.2.12.2. (raeburn 3368:): my $getpropath = 1;
3369:): my ($dir_list,$listerror) =
3370:): &Apache::lonnet::dirlist($portfolio_root.$directory,$domain,
3371:): $stu_name,$getpropath);
3372:): my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.306 banghart 3373: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
3374: if ($new_answer ne 'problem getting file') {
1.342 banghart 3375: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 3376: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367 albertel 3377: [$directory.$new_answer],
1.306 banghart 3378: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 3379: }
1.252 banghart 3380: }
1.343 banghart 3381: $$record{$key} = join(',',@versioned_portfiles);
3382: push(@returned_keys,$key);
1.251 banghart 3383: }
3384: }
1.343 banghart 3385: return (@returned_keys);
1.305 banghart 3386: }
3387:
1.307 banghart 3388: sub get_next_version {
1.341 banghart 3389: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 3390: my $version;
1.596.2.12.2. (raeburn 3391:): if (ref($dir_list) eq 'ARRAY') {
3392:): foreach my $row (@{$dir_list}) {
3393:): my ($file) = split(/\&/,$row,2);
3394:): my ($file_name,$file_version,$file_ext) =
3395:): &file_name_version_ext($file);
3396:): if (($file_name eq $answer_name) &&
3397:): ($file_ext eq $answer_ext)) {
3398:): # gets here if filename and extension match,
3399:): # regardless of version
1.307 banghart 3400: if ($file_version ne '') {
1.596.2.12.2. (raeburn 3401:): # a versioned file is found so save it for later
3402:): if ($file_version > $version) {
3403:): $version = $file_version;
3404:): }
1.307 banghart 3405: }
3406: }
3407: }
1.596.2.12.2. (raeburn 3408:): }
1.307 banghart 3409: $version ++;
3410: return($version);
3411: }
3412:
1.305 banghart 3413: sub version_selected_portfile {
1.306 banghart 3414: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
3415: my ($answer_name,$answer_ver,$answer_ext) =
3416: &file_name_version_ext($file_name);
3417: my $new_answer;
3418: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
3419: if($env{'form.copy'} eq '-1') {
3420: $new_answer = 'problem getting file';
3421: } else {
3422: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
3423: my $copy_result = &Apache::lonnet::finishuserfileupload(
3424: $stu_name,$domain,'copy',
3425: '/portfolio'.$directory.$new_answer);
3426: }
3427: return ($new_answer);
1.251 banghart 3428: }
3429:
1.304 albertel 3430: sub file_name_version_ext {
3431: my ($file)=@_;
3432: my @file_parts = split(/\./, $file);
3433: my ($name,$version,$ext);
3434: if (@file_parts > 1) {
3435: $ext=pop(@file_parts);
3436: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
3437: $version=pop(@file_parts);
3438: }
3439: $name=join('.',@file_parts);
3440: } else {
3441: $name=join('.',@file_parts);
3442: }
3443: return($name,$version,$ext);
3444: }
3445:
1.44 ng 3446: #--------------------------------------------------------------------------------------
3447: #
3448: #-------------------------- Next few routines handles grading by section or whole class
3449: #
3450: #--- Javascript to handle grading by section or whole class
1.42 ng 3451: sub viewgrades_js {
3452: my ($request) = shift;
3453:
1.539 riegler 3454: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.41 ng 3455: $request->print(<<VIEWJAVASCRIPT);
3456: <script type="text/javascript" language="javascript">
1.45 ng 3457: function writePoint(partid,weight,point) {
1.125 ng 3458: var radioButton = document.classgrade["RADVAL_"+partid];
3459: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 3460: if (point == "textval") {
1.125 ng 3461: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 3462: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3463: alert("$alertmsg"+parseFloat(point));
1.42 ng 3464: var resetbox = false;
3465: for (var i=0; i<radioButton.length; i++) {
3466: if (radioButton[i].checked) {
3467: textbox.value = i;
3468: resetbox = true;
3469: }
3470: }
3471: if (!resetbox) {
3472: textbox.value = "";
3473: }
3474: return;
3475: }
1.109 matthew 3476: if (parseFloat(point) > parseFloat(weight)) {
3477: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3478: ") greater than the weight for the part. Accept?");
3479: if (resp == false) {
3480: textbox.value = "";
3481: return;
3482: }
3483: }
1.42 ng 3484: for (var i=0; i<radioButton.length; i++) {
3485: radioButton[i].checked=false;
1.109 matthew 3486: if (parseFloat(point) == i) {
1.42 ng 3487: radioButton[i].checked=true;
3488: }
3489: }
1.41 ng 3490:
1.42 ng 3491: } else {
1.125 ng 3492: textbox.value = parseFloat(point);
1.42 ng 3493: }
1.41 ng 3494: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3495: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3496: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3497: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3498: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3499: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3500: if (saveval != "correct") {
3501: scorename.value = point;
1.43 ng 3502: if (selname[0].selected != true) {
3503: selname[0].selected = true;
3504: }
1.42 ng 3505: }
3506: }
1.125 ng 3507: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3508: }
3509:
3510: function writeRadText(partid,weight) {
1.125 ng 3511: var selval = document.classgrade["SELVAL_"+partid];
3512: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3513: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3514: var textbox = document.classgrade["TEXTVAL_"+partid];
3515: if (selval[1].selected || selval[2].selected) {
1.42 ng 3516: for (var i=0; i<radioButton.length; i++) {
3517: radioButton[i].checked=false;
3518:
3519: }
3520: textbox.value = "";
3521:
3522: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3523: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3524: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3525: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3526: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3527: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3528: if ((saveval != "correct") || override) {
1.42 ng 3529: scorename.value = "";
1.125 ng 3530: if (selval[1].selected) {
3531: selname[1].selected = true;
3532: } else {
3533: selname[2].selected = true;
3534: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3535: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3536: }
1.42 ng 3537: }
3538: }
1.43 ng 3539: } else {
3540: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3541: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3542: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3543: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3544: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3545: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3546: if ((saveval != "correct") || override) {
1.125 ng 3547: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3548: selname[0].selected = true;
3549: }
3550: }
3551: }
1.42 ng 3552: }
3553:
3554: function changeSelect(partid,user) {
1.125 ng 3555: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3556: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3557: var point = textbox.value;
1.125 ng 3558: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3559:
1.109 matthew 3560: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3561: alert("$alertmsg"+parseFloat(point));
1.44 ng 3562: textbox.value = "";
3563: return;
3564: }
1.109 matthew 3565: if (parseFloat(point) > parseFloat(weight)) {
3566: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3567: ") greater than the weight of the part. Accept?");
3568: if (resp == false) {
3569: textbox.value = "";
3570: return;
3571: }
3572: }
1.42 ng 3573: selval[0].selected = true;
3574: }
3575:
3576: function changeOneScore(partid,user) {
1.125 ng 3577: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3578: if (selval[1].selected || selval[2].selected) {
3579: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3580: if (selval[2].selected) {
3581: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3582: }
1.269 raeburn 3583: }
1.42 ng 3584: }
3585:
3586: function resetEntry(numpart) {
3587: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3588: var partid = document.classgrade["partid_"+ctpart].value;
3589: var radioButton = document.classgrade["RADVAL_"+partid];
3590: var textbox = document.classgrade["TEXTVAL_"+partid];
3591: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3592: for (var i=0; i<radioButton.length; i++) {
3593: radioButton[i].checked=false;
3594:
3595: }
3596: textbox.value = "";
3597: selval[0].selected = true;
3598:
3599: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3600: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3601: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3602: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3603: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3604: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3605: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3606: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3607: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3608: if (saveselval == "excused") {
1.43 ng 3609: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3610: } else {
1.43 ng 3611: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3612: }
3613: }
1.41 ng 3614: }
1.42 ng 3615: }
3616:
1.41 ng 3617: </script>
3618: VIEWJAVASCRIPT
1.42 ng 3619: }
3620:
1.44 ng 3621: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3622: sub viewgrades {
3623: my ($request) = shift;
3624: &viewgrades_js($request);
1.41 ng 3625:
1.324 albertel 3626: my ($symb) = &get_symb($request);
1.168 albertel 3627: #need to make sure we have the correct data for later EXT calls,
3628: #thus invalidate the cache
3629: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3630: $env{'course.'.$env{'request.course.id'}.'.num'},
3631: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3632: &Apache::lonnet::clear_EXT_cache_status();
3633:
1.398 albertel 3634: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
1.485 albertel 3635: $result.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
1.41 ng 3636:
3637: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3638: $result.=&jscriptNform($symb);
1.41 ng 3639:
1.44 ng 3640: #beginning of class grading form
1.442 banghart 3641: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3642: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3643: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3644: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3645: &build_section_inputs().
1.257 albertel 3646: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 3647: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.257 albertel 3648: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72 ng 3649:
1.560 raeburn 3650: my ($common_header,$specific_header);
1.257 albertel 3651: if ($env{'form.section'} eq 'all') {
1.560 raeburn 3652: $common_header = &mt('Assign Common Grade to Class');
3653: $specific_header = &mt('Assign Grade to Specific Students in Class');
1.257 albertel 3654: } elsif ($env{'form.section'} eq 'none') {
1.560 raeburn 3655: $common_header = &mt('Assign Common Grade to Students in no Section');
3656: $specific_header = &mt('Assign Grade to Specific Students in no Section');
1.52 albertel 3657: } else {
1.560 raeburn 3658: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
3659: $common_header = &mt('Assign Common Grade to Students in Section(s) [_1]',$section_display);
3660: $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1]',$section_display);
1.52 albertel 3661: }
1.560 raeburn 3662: $result.= '<h3>'.$common_header.'</h3>'.&Apache::loncommon::start_data_table();
1.44 ng 3663: #radio buttons/text box for assigning points for a section or class.
3664: #handles different parts of a problem
1.582 raeburn 3665: my $res_error;
3666: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3667: if ($res_error) {
3668: return &navmap_errormsg();
3669: }
1.42 ng 3670: my %weight = ();
3671: my $ctsparts = 0;
1.45 ng 3672: my %seen = ();
1.375 albertel 3673: my @part_response_id = &flatten_responseType($responseType);
3674: foreach my $part_response_id (@part_response_id) {
3675: my ($partid,$respid) = @{ $part_response_id };
3676: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3677: next if $seen{$partid};
3678: $seen{$partid}++;
1.375 albertel 3679: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3680: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3681: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3682:
1.324 albertel 3683: my $display_part=&get_display_part($partid,$symb);
1.485 albertel 3684: my $radio.='<table border="0"><tr>';
1.41 ng 3685: my $ctr = 0;
1.42 ng 3686: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.485 albertel 3687: $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3688: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3689: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3690: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3691: $ctr++;
3692: }
1.485 albertel 3693: $radio.='</tr></table>';
3694: my $line = '<input type="text" name="TEXTVAL_'.
1.589 bisitz 3695: $partid.'" size="4" '.'onchange="javascript:writePoint(\''.
1.54 albertel 3696: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.539 riegler 3697: $weight{$partid}.' '.&mt('(problem weight)').'</td>'."\n";
3698: $line.= '<td><b>'.&mt('Grade Status').':</b><select name="SELVAL_'.$partid.'"'.
1.589 bisitz 3699: 'onchange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 3700: $weight{$partid}.')"> '.
1.401 albertel 3701: '<option selected="selected"> </option>'.
1.485 albertel 3702: '<option value="excused">'.&mt('excused').'</option>'.
3703: '<option value="reset status">'.&mt('reset status').'</option>'.
3704: '</select></td>'.
3705: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
3706: $line.='<input type="hidden" name="partid_'.
3707: $ctsparts.'" value="'.$partid.'" />'."\n";
3708: $line.='<input type="hidden" name="weight_'.
3709: $partid.'" value="'.$weight{$partid}.'" />'."\n";
3710:
3711: $result.=
3712: &Apache::loncommon::start_data_table_row()."\n".
1.577 bisitz 3713: '<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 3714: &Apache::loncommon::end_data_table_row()."\n";
1.42 ng 3715: $ctsparts++;
1.41 ng 3716: }
1.474 albertel 3717: $result.=&Apache::loncommon::end_data_table()."\n".
1.52 albertel 3718: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.485 albertel 3719: $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
1.589 bisitz 3720: 'onclick="javascript:resetEntry('.$ctsparts.');" />';
1.41 ng 3721:
1.44 ng 3722: #table listing all the students in a section/class
3723: #header of table
1.560 raeburn 3724: $result.= '<h3>'.$specific_header.'</h3>'.
3725: &Apache::loncommon::start_data_table().
3726: &Apache::loncommon::start_data_table_header_row().
3727: '<th>'.&mt('No.').'</th>'.
3728: '<th>'.&nameUserString('header')."</th>\n";
1.582 raeburn 3729: my $partserror;
3730: my (@parts) = sort(&getpartlist($symb,\$partserror));
3731: if ($partserror) {
3732: return &navmap_errormsg();
3733: }
1.324 albertel 3734: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3735: my @partids = ();
1.41 ng 3736: foreach my $part (@parts) {
3737: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.539 riegler 3738: my $narrowtext = &mt('Tries');
3739: $display =~ s|^Number of Attempts|$narrowtext <br />|; # makes the column narrower
1.41 ng 3740: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3741: my ($partid) = &split_part_type($part);
1.524 raeburn 3742: push(@partids,$partid);
1.324 albertel 3743: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3744: if ($display =~ /^Partial Credit Factor/) {
1.485 albertel 3745: $result.='<th>'.
3746: &mt('Score Part: [_1]<br /> (weight = [_2])',
3747: $display_part,$weight{$partid}).'</th>'."\n";
1.41 ng 3748: next;
1.485 albertel 3749:
1.207 albertel 3750: } else {
1.485 albertel 3751: if ($display =~ /Problem Status/) {
3752: my $grade_status_mt = &mt('Grade Status');
3753: $display =~ s{Problem Status}{$grade_status_mt<br />};
3754: }
3755: my $part_mt = &mt('Part:');
3756: $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
1.41 ng 3757: }
1.485 albertel 3758:
1.474 albertel 3759: $result.='<th>'.$display.'</th>'."\n";
1.41 ng 3760: }
1.474 albertel 3761: $result.=&Apache::loncommon::end_data_table_header_row();
1.44 ng 3762:
1.270 albertel 3763: my %last_resets =
3764: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3765:
1.41 ng 3766: #get info for each student
1.44 ng 3767: #list all the students - with points and grade status
1.257 albertel 3768: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41 ng 3769: my $ctr = 0;
1.294 albertel 3770: foreach (sort
3771: {
3772: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3773: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3774: }
3775: return $a cmp $b;
3776: } (keys(%$fullname))) {
1.126 ng 3777: $ctr++;
1.324 albertel 3778: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269 raeburn 3779: $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41 ng 3780: }
1.474 albertel 3781: $result.=&Apache::loncommon::end_data_table();
1.41 ng 3782: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.485 albertel 3783: $result.='<input type="button" value="'.&mt('Save').'" '.
1.589 bisitz 3784: 'onclick="javascript:submit();" target="_self" /></form>'."\n";
1.96 albertel 3785: if (scalar(%$fullname) eq 0) {
3786: my $colspan=3+scalar(@parts);
1.433 banghart 3787: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442 banghart 3788: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433 banghart 3789: $result='<span class="LC_warning">'.
1.485 albertel 3790: &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
1.442 banghart 3791: $section_display, $stu_status).
1.433 banghart 3792: '</span>';
1.96 albertel 3793: }
1.324 albertel 3794: $result.=&show_grading_menu_form($symb);
1.41 ng 3795: return $result;
3796: }
3797:
1.44 ng 3798: #--- call by previous routine to display each student
1.41 ng 3799: sub viewstudentgrade {
1.324 albertel 3800: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 3801: my ($uname,$udom) = split(/:/,$student);
3802: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269 raeburn 3803: my %aggregates = ();
1.474 albertel 3804: my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.233 albertel 3805: '<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
3806: "\n".$ctr.' </td><td> '.
1.44 ng 3807: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 3808: '\');" target="_self">'.$fullname.'</a> '.
1.398 albertel 3809: '<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281 albertel 3810: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 3811: foreach my $apart (@$parts) {
3812: my ($part,$type) = &split_part_type($apart);
1.41 ng 3813: my $score=$record{"resource.$part.$type"};
1.276 albertel 3814: $result.='<td align="center">';
1.269 raeburn 3815: my ($aggtries,$totaltries);
3816: unless (exists($aggregates{$part})) {
1.270 albertel 3817: $totaltries = $record{'resource.'.$part.'.tries'};
3818:
3819: $aggtries = $totaltries;
1.269 raeburn 3820: if ($$last_resets{$part}) {
1.270 albertel 3821: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
3822: $part);
3823: }
1.269 raeburn 3824: $result.='<input type="hidden" name="'.
3825: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
3826: $result.='<input type="hidden" name="'.
3827: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
3828: $aggregates{$part} = 1;
3829: }
1.41 ng 3830: if ($type eq 'awarded') {
1.320 albertel 3831: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 3832: $result.='<input type="hidden" name="'.
1.89 albertel 3833: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 3834: $result.='<input type="text" name="'.
1.89 albertel 3835: 'GD_'.$student.'_'.$part.'_awarded" '.
1.589 bisitz 3836: 'onchange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 3837: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 3838: } elsif ($type eq 'solved') {
3839: my ($status,$foo)=split(/_/,$score,2);
3840: $status = 'nothing' if ($status eq '');
1.89 albertel 3841: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 3842: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 3843: $result.=' <select name="'.
1.89 albertel 3844: 'GD_'.$student.'_'.$part.'_solved" '.
1.589 bisitz 3845: 'onchange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.485 albertel 3846: $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>'
3847: : '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
3848: $result.='<option value="reset status">'.&mt('reset status').'</option>';
1.126 ng 3849: $result.="</select> </td>\n";
1.122 ng 3850: } else {
3851: $result.='<input type="hidden" name="'.
3852: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
3853: "\n";
1.233 albertel 3854: $result.='<input type="text" name="'.
1.122 ng 3855: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
3856: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 3857: }
3858: }
1.474 albertel 3859: $result.=&Apache::loncommon::end_data_table_row();
1.41 ng 3860: return $result;
1.38 ng 3861: }
3862:
1.44 ng 3863: #--- change scores for all the students in a section/class
3864: # record does not get update if unchanged
1.38 ng 3865: sub editgrades {
1.41 ng 3866: my ($request) = @_;
3867:
1.596.2.12.2. (raeburn 3868:): my ($symb)=&get_symb($request);
1.433 banghart 3869: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477 albertel 3870: my $title='<h2>'.&mt('Current Grade Status').'</h2>';
3871: $title.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
1.433 banghart 3872: $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126 ng 3873:
1.477 albertel 3874: my $result= &Apache::loncommon::start_data_table().
3875: &Apache::loncommon::start_data_table_header_row().
3876: '<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
3877: '<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43 ng 3878: my %scoreptr = (
3879: 'correct' =>'correct_by_override',
3880: 'incorrect'=>'incorrect_by_override',
3881: 'excused' =>'excused',
3882: 'ungraded' =>'ungraded_attempted',
1.596 raeburn 3883: 'credited' =>'credit_attempted',
1.43 ng 3884: 'nothing' => '',
3885: );
1.257 albertel 3886: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 3887:
1.44 ng 3888: my (@partid);
3889: my %weight = ();
1.54 albertel 3890: my %columns = ();
1.44 ng 3891: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 3892:
1.582 raeburn 3893: my $partserror;
3894: my (@parts) = sort(&getpartlist($symb,\$partserror));
3895: if ($partserror) {
3896: return &navmap_errormsg();
3897: }
1.54 albertel 3898: my $header;
1.257 albertel 3899: while ($ctr < $env{'form.totalparts'}) {
3900: my $partid = $env{'form.partid_'.$ctr};
1.524 raeburn 3901: push(@partid,$partid);
1.257 albertel 3902: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 3903: $ctr++;
1.54 albertel 3904: }
1.324 albertel 3905: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54 albertel 3906: foreach my $partid (@partid) {
1.478 albertel 3907: $header .= '<th align="center">'.&mt('Old Score').'</th>'.
3908: '<th align="center">'.&mt('New Score').'</th>';
1.54 albertel 3909: $columns{$partid}=2;
3910: foreach my $stores (@parts) {
3911: my ($part,$type) = &split_part_type($stores);
3912: if ($part !~ m/^\Q$partid\E/) { next;}
3913: if ($type eq 'awarded' || $type eq 'solved') { next; }
3914: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
1.551 raeburn 3915: $display =~ s/\[Part: \Q$part\E\]//;
1.539 riegler 3916: my $narrowtext = &mt('Tries');
3917: $display =~ s/Number of Attempts/$narrowtext/;
3918: $header .= '<th align="center">'.&mt('Old').' '.$display.'</th>'.
3919: '<th align="center">'.&mt('New').' '.$display.'</th>';
1.54 albertel 3920: $columns{$partid}+=2;
3921: }
3922: }
3923: foreach my $partid (@partid) {
1.324 albertel 3924: my $display_part=&get_display_part($partid,$symb);
1.478 albertel 3925: $result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
3926: &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
3927: '</th>';
1.54 albertel 3928:
1.44 ng 3929: }
1.477 albertel 3930: $result .= &Apache::loncommon::end_data_table_header_row().
3931: &Apache::loncommon::start_data_table_header_row().
3932: $header.
3933: &Apache::loncommon::end_data_table_header_row();
3934: my @noupdate;
1.126 ng 3935: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 3936: for ($i=0; $i<$env{'form.total'}; $i++) {
1.93 albertel 3937: my $line;
1.257 albertel 3938: my $user = $env{'form.ctr'.$i};
1.281 albertel 3939: my ($uname,$udom)=split(/:/,$user);
1.44 ng 3940: my %newrecord;
3941: my $updateflag = 0;
1.281 albertel 3942: $line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108 albertel 3943: my $usec=$classlist->{"$uname:$udom"}[5];
1.105 albertel 3944: if (!&canmodify($usec)) {
1.126 ng 3945: my $numcols=scalar(@partid)*4+2;
1.477 albertel 3946: push(@noupdate,
1.478 albertel 3947: $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
3948: &mt('Not allowed to modify student')."</span></td></tr>");
1.105 albertel 3949: next;
3950: }
1.269 raeburn 3951: my %aggregate = ();
3952: my $aggregateflag = 0;
1.281 albertel 3953: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 3954: foreach (@partid) {
1.257 albertel 3955: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 3956: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
3957: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 3958: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
3959: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 3960: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
3961: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 3962: my $score;
3963: if ($partial eq '') {
1.257 albertel 3964: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 3965: } elsif ($partial > 0) {
3966: $score = 'correct_by_override';
3967: } elsif ($partial == 0) {
3968: $score = 'incorrect_by_override';
3969: }
1.257 albertel 3970: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 3971: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
3972:
1.292 albertel 3973: $newrecord{'resource.'.$_.'.regrader'}=
3974: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 3975: if ($dropMenu eq 'reset status' &&
3976: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 3977: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 3978: $newrecord{'resource.'.$_.'.solved'} = '';
3979: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 3980: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 3981: $updateflag = 1;
1.269 raeburn 3982: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
3983: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
3984: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
3985: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
3986: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
3987: $aggregateflag = 1;
3988: }
1.139 albertel 3989: } elsif (!($old_part eq $partial && $old_score eq $score)) {
3990: $updateflag = 1;
3991: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
3992: $newrecord{'resource.'.$_.'.solved'} = $score;
3993: $rec_update++;
1.125 ng 3994: }
3995:
1.93 albertel 3996: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 3997: '<td align="center">'.$awarded.
3998: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 3999:
1.54 albertel 4000:
4001: my $partid=$_;
4002: foreach my $stores (@parts) {
4003: my ($part,$type) = &split_part_type($stores);
4004: if ($part !~ m/^\Q$partid\E/) { next;}
4005: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 4006: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
4007: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 4008: if ($awarded ne '' && $awarded ne $old_aw) {
4009: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 4010: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 4011: $updateflag=1;
4012: }
1.93 albertel 4013: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 4014: '<td align="center">'.$awarded.' </td>';
4015: }
1.44 ng 4016: }
1.477 albertel 4017: $line.="\n";
1.301 albertel 4018:
4019: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
4020: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
4021:
1.44 ng 4022: if ($updateflag) {
4023: $count++;
1.257 albertel 4024: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 4025: $udom,$uname);
1.301 albertel 4026:
4027: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
4028: $cnum,$udom,$uname)) {
4029: # need to figure out if should be in queue.
4030: my %record =
4031: &Apache::lonnet::restore($symb,$env{'request.course.id'},
4032: $udom,$uname);
4033: my $all_graded = 1;
4034: my $none_graded = 1;
4035: foreach my $part (@parts) {
4036: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
4037: $all_graded = 0;
4038: } else {
4039: $none_graded = 0;
4040: }
4041: }
4042:
4043: if ($all_graded || $none_graded) {
4044: &Apache::bridgetask::remove_from_queue('gradingqueue',
4045: $symb,$cdom,$cnum,
4046: $udom,$uname);
4047: }
4048: }
4049:
1.477 albertel 4050: $result.=&Apache::loncommon::start_data_table_row().
4051: '<td align="right"> '.$updateCtr.' </td>'.$line.
4052: &Apache::loncommon::end_data_table_row();
1.126 ng 4053: $updateCtr++;
1.93 albertel 4054: } else {
1.477 albertel 4055: push(@noupdate,
4056: '<td align="right"> '.$noupdateCtr.' </td>'.$line);
1.126 ng 4057: $noupdateCtr++;
1.44 ng 4058: }
1.269 raeburn 4059: if ($aggregateflag) {
4060: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 4061: $cdom,$cnum);
1.269 raeburn 4062: }
1.93 albertel 4063: }
1.477 albertel 4064: if (@noupdate) {
1.126 ng 4065: # my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
4066: my $numcols=scalar(@partid)*4+2;
1.477 albertel 4067: $result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478 albertel 4068: '<td align="center" colspan="'.$numcols.'">'.
4069: &mt('No Changes Occurred For the Students Below').
4070: '</td>'.
1.477 albertel 4071: &Apache::loncommon::end_data_table_row();
4072: foreach my $line (@noupdate) {
4073: $result.=
4074: &Apache::loncommon::start_data_table_row().
4075: $line.
4076: &Apache::loncommon::end_data_table_row();
4077: }
1.44 ng 4078: }
1.477 albertel 4079: $result .= &Apache::loncommon::end_data_table().
4080: &show_grading_menu_form($symb);
1.478 albertel 4081: my $msg = '<p><b>'.
4082: &mt('Number of records updated = [_1] for [quant,_2,student].',
4083: $rec_update,$count).'</b><br />'.
4084: '<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
4085: '</b></p>';
1.44 ng 4086: return $title.$msg.$result;
1.5 albertel 4087: }
1.54 albertel 4088:
4089: sub split_part_type {
4090: my ($partstr) = @_;
4091: my ($temp,@allparts)=split(/_/,$partstr);
4092: my $type=pop(@allparts);
1.439 albertel 4093: my $part=join('_',@allparts);
1.54 albertel 4094: return ($part,$type);
4095: }
4096:
1.44 ng 4097: #------------- end of section for handling grading by section/class ---------
4098: #
4099: #----------------------------------------------------------------------------
4100:
1.5 albertel 4101:
1.44 ng 4102: #----------------------------------------------------------------------------
4103: #
4104: #-------------------------- Next few routines handles grading by csv upload
4105: #
4106: #--- Javascript to handle csv upload
1.27 albertel 4107: sub csvupload_javascript_reverse_associate {
1.573 bisitz 4108: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 4109: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 4110: return(<<ENDPICK);
4111: function verify(vf) {
4112: var foundsomething=0;
4113: var founduname=0;
1.243 albertel 4114: var foundID=0;
1.27 albertel 4115: for (i=0;i<=vf.nfields.value;i++) {
4116: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4117: if (i==0 && tw!=0) { foundID=1; }
4118: if (i==1 && tw!=0) { founduname=1; }
4119: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 4120: }
1.246 albertel 4121: if (founduname==0 && foundID==0) {
4122: alert('$error1');
4123: return;
1.27 albertel 4124: }
4125: if (foundsomething==0) {
1.246 albertel 4126: alert('$error2');
4127: return;
1.27 albertel 4128: }
4129: vf.submit();
4130: }
4131: function flip(vf,tf) {
4132: var nw=eval('vf.f'+tf+'.selectedIndex');
4133: var i;
4134: for (i=0;i<=vf.nfields.value;i++) {
4135: //can not pick the same destination field for both name and domain
4136: if (((i ==0)||(i ==1)) &&
4137: ((tf==0)||(tf==1)) &&
4138: (i!=tf) &&
4139: (eval('vf.f'+i+'.selectedIndex')==nw)) {
4140: eval('vf.f'+i+'.selectedIndex=0;')
4141: }
4142: }
4143: }
4144: ENDPICK
4145: }
4146:
4147: sub csvupload_javascript_forward_associate {
1.573 bisitz 4148: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 4149: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 4150: return(<<ENDPICK);
4151: function verify(vf) {
4152: var foundsomething=0;
4153: var founduname=0;
1.243 albertel 4154: var foundID=0;
1.27 albertel 4155: for (i=0;i<=vf.nfields.value;i++) {
4156: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4157: if (tw==1) { foundID=1; }
4158: if (tw==2) { founduname=1; }
4159: if (tw>3) { foundsomething=1; }
1.27 albertel 4160: }
1.246 albertel 4161: if (founduname==0 && foundID==0) {
4162: alert('$error1');
4163: return;
1.27 albertel 4164: }
4165: if (foundsomething==0) {
1.246 albertel 4166: alert('$error2');
4167: return;
1.27 albertel 4168: }
4169: vf.submit();
4170: }
4171: function flip(vf,tf) {
4172: var nw=eval('vf.f'+tf+'.selectedIndex');
4173: var i;
4174: //can not pick the same destination field twice
4175: for (i=0;i<=vf.nfields.value;i++) {
4176: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
4177: eval('vf.f'+i+'.selectedIndex=0;')
4178: }
4179: }
4180: }
4181: ENDPICK
4182: }
4183:
1.26 albertel 4184: sub csvuploadmap_header {
1.324 albertel 4185: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 4186: my $javascript;
1.257 albertel 4187: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4188: $javascript=&csvupload_javascript_reverse_associate();
4189: } else {
4190: $javascript=&csvupload_javascript_forward_associate();
4191: }
1.45 ng 4192:
1.324 albertel 4193: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.257 albertel 4194: my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245 albertel 4195: my $ignore=&mt('Ignore First Line');
1.418 albertel 4196: $symb = &Apache::lonenc::check_encrypt($symb);
1.41 ng 4197: $request->print(<<ENDPICK);
1.26 albertel 4198: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 4199: <h3><span class="LC_info">Uploading Class Grades</span></h3>
1.45 ng 4200: $result
1.326 albertel 4201: <hr />
1.26 albertel 4202: <h3>Identify fields</h3>
4203: Total number of records found in file: $distotal <hr />
4204: Enter as many fields as you can. The system will inform you and bring you back
4205: to this page if the data selected is insufficient to run your class.<hr />
1.589 bisitz 4206: <input type="button" value="Reverse Association" onclick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245 albertel 4207: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26 albertel 4208: <input type="hidden" name="associate" value="" />
4209: <input type="hidden" name="phase" value="three" />
4210: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 4211: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
4212: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 4213: <input type="hidden" name="upfile_associate"
1.257 albertel 4214: value="$env{'form.upfile_associate'}" />
1.26 albertel 4215: <input type="hidden" name="symb" value="$symb" />
1.257 albertel 4216: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
4217: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
1.246 albertel 4218: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 4219: <hr />
4220: <script type="text/javascript" language="Javascript">
4221: $javascript
4222: </script>
4223: ENDPICK
1.118 ng 4224: return '';
1.26 albertel 4225:
4226: }
4227:
4228: sub csvupload_fields {
1.582 raeburn 4229: my ($symb,$errorref) = @_;
4230: my (@parts) = &getpartlist($symb,$errorref);
4231: if (ref($errorref)) {
4232: if ($$errorref) {
4233: return;
4234: }
4235: }
4236:
1.556 weissno 4237: my @fields=(['ID','Student/Employee ID'],
1.243 albertel 4238: ['username','Student Username'],
4239: ['domain','Student Domain']);
1.324 albertel 4240: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 4241: foreach my $part (sort(@parts)) {
4242: my @datum;
4243: my $display=&Apache::lonnet::metadata($url,$part.'.display');
4244: my $name=$part;
4245: if (!$display) { $display = $name; }
4246: @datum=($name,$display);
1.244 albertel 4247: if ($name=~/^stores_(.*)_awarded/) {
4248: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
4249: }
1.41 ng 4250: push(@fields,\@datum);
4251: }
4252: return (@fields);
1.26 albertel 4253: }
4254:
4255: sub csvuploadmap_footer {
1.41 ng 4256: my ($request,$i,$keyfields) =@_;
4257: $request->print(<<ENDPICK);
1.26 albertel 4258: </table>
4259: <input type="hidden" name="nfields" value="$i" />
4260: <input type="hidden" name="keyfields" value="$keyfields" />
1.589 bisitz 4261: <input type="button" onclick="javascript:verify(this.form)" value="Assign Grades" /><br />
1.26 albertel 4262: </form>
4263: ENDPICK
4264: }
4265:
1.283 albertel 4266: sub checkforfile_js {
1.539 riegler 4267: my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
1.86 ng 4268: my $result =<<CSVFORMJS;
4269: <script type="text/javascript" language="javascript">
4270: function checkUpload(formname) {
4271: if (formname.upfile.value == "") {
1.539 riegler 4272: alert("$alertmsg");
1.86 ng 4273: return false;
4274: }
4275: formname.submit();
4276: }
4277: </script>
4278: CSVFORMJS
1.283 albertel 4279: return $result;
4280: }
4281:
4282: sub upcsvScores_form {
4283: my ($request) = shift;
1.324 albertel 4284: my ($symb)=&get_symb($request);
1.283 albertel 4285: if (!$symb) {return '';}
4286: my $result=&checkforfile_js();
1.257 albertel 4287: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.324 albertel 4288: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
1.118 ng 4289: $result.=$table;
1.326 albertel 4290: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
4291: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.538 schulted 4292: $result.=' <b>'.&mt('Specify a file containing the class scores for current resource.').
4293: '</b></td></tr>'."\n";
1.596.2.4 raeburn 4294: $result.='<tr bgcolor="#ffffe6"><td>'."\n";
1.370 www 4295: my $upload=&mt("Upload Scores");
1.86 ng 4296: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 4297: my $ignore=&mt('Ignore First Line');
1.418 albertel 4298: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 4299: $result.=<<ENDUPFORM;
1.106 albertel 4300: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 4301: <input type="hidden" name="symb" value="$symb" />
4302: <input type="hidden" name="command" value="csvuploadmap" />
1.257 albertel 4303: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
4304: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.86 ng 4305: $upfile_select
1.589 bisitz 4306: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.283 albertel 4307: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86 ng 4308: </form>
4309: ENDUPFORM
1.370 www 4310: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
4311: &mt("How do I create a CSV file from a spreadsheet"))
4312: .'</td></tr></table>'."\n";
1.86 ng 4313: $result.='</td></tr></table><br /><br />'."\n";
1.324 albertel 4314: $result.=&show_grading_menu_form($symb);
1.86 ng 4315: return $result;
4316: }
4317:
4318:
1.26 albertel 4319: sub csvuploadmap {
1.41 ng 4320: my ($request)= @_;
1.324 albertel 4321: my ($symb)=&get_symb($request);
1.41 ng 4322: if (!$symb) {return '';}
1.72 ng 4323:
1.41 ng 4324: my $datatoken;
1.257 albertel 4325: if (!$env{'form.datatoken'}) {
1.41 ng 4326: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 4327: } else {
1.257 albertel 4328: $datatoken=$env{'form.datatoken'};
1.41 ng 4329: &Apache::loncommon::load_tmp_file($request);
1.26 albertel 4330: }
1.41 ng 4331: my @records=&Apache::loncommon::upfile_record_sep();
1.257 albertel 4332: if ($env{'form.noFirstLine'}) { shift(@records); }
1.324 albertel 4333: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 4334: my ($i,$keyfields);
4335: if (@records) {
1.582 raeburn 4336: my $fieldserror;
4337: my @fields=&csvupload_fields($symb,\$fieldserror);
4338: if ($fieldserror) {
4339: $request->print(&navmap_errormsg());
4340: return;
4341: }
1.257 albertel 4342: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4343: &Apache::loncommon::csv_print_samples($request,\@records);
4344: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
4345: \@fields);
4346: foreach (@fields) { $keyfields.=$_->[0].','; }
4347: chop($keyfields);
4348: } else {
4349: unshift(@fields,['none','']);
4350: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
4351: \@fields);
1.311 banghart 4352: foreach my $rec (@records) {
4353: my %temp = &Apache::loncommon::record_sep($rec);
4354: if (%temp) {
4355: $keyfields=join(',',sort(keys(%temp)));
4356: last;
4357: }
4358: }
1.41 ng 4359: }
4360: }
4361: &csvuploadmap_footer($request,$i,$keyfields);
1.324 albertel 4362: $request->print(&show_grading_menu_form($symb));
1.72 ng 4363:
1.41 ng 4364: return '';
1.27 albertel 4365: }
4366:
1.246 albertel 4367: sub csvuploadoptions {
1.41 ng 4368: my ($request)= @_;
1.324 albertel 4369: my ($symb)=&get_symb($request);
1.257 albertel 4370: my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246 albertel 4371: my $ignore=&mt('Ignore First Line');
4372: $request->print(<<ENDPICK);
4373: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 4374: <h3><span class="LC_info">Uploading Class Grade Options</span></h3>
1.246 albertel 4375: <input type="hidden" name="command" value="csvuploadassign" />
1.302 albertel 4376: <!--
1.246 albertel 4377: <p>
4378: <label>
4379: <input type="checkbox" name="show_full_results" />
4380: Show a table of all changes
4381: </label>
4382: </p>
1.302 albertel 4383: -->
1.246 albertel 4384: <p>
4385: <label>
4386: <input type="checkbox" name="overwite_scores" checked="checked" />
4387: Overwrite any existing score
4388: </label>
4389: </p>
4390: ENDPICK
4391: my %fields=&get_fields();
4392: if (!defined($fields{'domain'})) {
1.257 albertel 4393: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246 albertel 4394: $request->print("\n<p> Users are in domain: ".$domform."</p>\n");
4395: }
1.257 albertel 4396: foreach my $key (sort(keys(%env))) {
1.246 albertel 4397: if ($key !~ /^form\.(.*)$/) { next; }
4398: my $cleankey=$1;
4399: if ($cleankey eq 'command') { next; }
4400: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 4401: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 4402: }
4403: # FIXME do a check for any duplicated user ids...
4404: # FIXME do a check for any invalid user ids?...
1.290 albertel 4405: $request->print('<input type="submit" value="Assign Grades" /><br />
4406: <hr /></form>'."\n");
1.324 albertel 4407: $request->print(&show_grading_menu_form($symb));
1.246 albertel 4408: return '';
4409: }
4410:
4411: sub get_fields {
4412: my %fields;
1.257 albertel 4413: my @keyfields = split(/\,/,$env{'form.keyfields'});
4414: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
4415: if ($env{'form.upfile_associate'} eq 'reverse') {
4416: if ($env{'form.f'.$i} ne 'none') {
4417: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 4418: }
4419: } else {
1.257 albertel 4420: if ($env{'form.f'.$i} ne 'none') {
4421: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 4422: }
4423: }
1.27 albertel 4424: }
1.246 albertel 4425: return %fields;
4426: }
4427:
4428: sub csvuploadassign {
4429: my ($request)= @_;
1.324 albertel 4430: my ($symb)=&get_symb($request);
1.246 albertel 4431: if (!$symb) {return '';}
1.345 bowersj2 4432: my $error_msg = '';
1.246 albertel 4433: &Apache::loncommon::load_tmp_file($request);
4434: my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257 albertel 4435: if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246 albertel 4436: my %fields=&get_fields();
1.41 ng 4437: $request->print('<h3>Assigning Grades</h3>');
1.257 albertel 4438: my $courseid=$env{'request.course.id'};
1.97 albertel 4439: my ($classlist) = &getclasslist('all',0);
1.106 albertel 4440: my @notallowed;
1.41 ng 4441: my @skipped;
1.596.2.4 raeburn 4442: my @warnings;
1.41 ng 4443: my $countdone=0;
4444: foreach my $grade (@gradedata) {
4445: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 4446: my $domain;
4447: if ($entries{$fields{'domain'}}) {
4448: $domain=$entries{$fields{'domain'}};
4449: } else {
1.257 albertel 4450: $domain=$env{'form.default_domain'};
1.246 albertel 4451: }
1.243 albertel 4452: $domain=~s/\s//g;
1.41 ng 4453: my $username=$entries{$fields{'username'}};
1.160 albertel 4454: $username=~s/\s//g;
1.243 albertel 4455: if (!$username) {
4456: my $id=$entries{$fields{'ID'}};
1.247 albertel 4457: $id=~s/\s//g;
1.243 albertel 4458: my %ids=&Apache::lonnet::idget($domain,$id);
4459: $username=$ids{$id};
4460: }
1.41 ng 4461: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 4462: my $id=$entries{$fields{'ID'}};
4463: $id=~s/\s//g;
4464: if ($id) {
4465: push(@skipped,"$id:$domain");
4466: } else {
4467: push(@skipped,"$username:$domain");
4468: }
1.41 ng 4469: next;
4470: }
1.108 albertel 4471: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 4472: if (!&canmodify($usec)) {
4473: push(@notallowed,"$username:$domain");
4474: next;
4475: }
1.244 albertel 4476: my %points;
1.41 ng 4477: my %grades;
4478: foreach my $dest (keys(%fields)) {
1.244 albertel 4479: if ($dest eq 'ID' || $dest eq 'username' ||
4480: $dest eq 'domain') { next; }
4481: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
4482: if ($dest=~/stores_(.*)_points/) {
4483: my $part=$1;
4484: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
4485: $symb,$domain,$username);
1.345 bowersj2 4486: if ($wgt) {
4487: $entries{$fields{$dest}}=~s/\s//g;
4488: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 4489: my $award=($pcr == 0) ? 'incorrect_by_override'
4490: : 'correct_by_override';
1.596.2.4 raeburn 4491: if ($pcr>1) {
4492: push(@warnings,&mt("[_1]: point value larger than weight","$username:$domain"));
4493: }
1.345 bowersj2 4494: $grades{"resource.$part.awarded"}=$pcr;
4495: $grades{"resource.$part.solved"}=$award;
4496: $points{$part}=1;
4497: } else {
4498: $error_msg = "<br />" .
4499: &mt("Some point values were assigned"
4500: ." for problems with a weight "
4501: ."of zero. These values were "
4502: ."ignored.");
4503: }
1.244 albertel 4504: } else {
4505: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
4506: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
4507: my $store_key=$dest;
4508: $store_key=~s/^stores/resource/;
4509: $store_key=~s/_/\./g;
4510: $grades{$store_key}=$entries{$fields{$dest}};
4511: }
1.41 ng 4512: }
1.508 www 4513: if (! %grades) {
4514: push(@skipped,&mt("[_1]: no data to save","$username:$domain"));
4515: } else {
4516: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
4517: my $result=&Apache::lonnet::cstore(\%grades,$symb,
1.302 albertel 4518: $env{'request.course.id'},
4519: $domain,$username);
1.508 www 4520: if ($result eq 'ok') {
4521: $request->print('.');
1.596.2.4 raeburn 4522: # Remove from grading queue
4523: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,
4524: $env{'course.'.$env{'request.course.id'}.'.domain'},
4525: $env{'course.'.$env{'request.course.id'}.'.num'},
4526: $domain,$username);
1.508 www 4527: } else {
4528: $request->print("<p><span class=\"LC_error\">".
4529: &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
4530: "$username:$domain",$result)."</span></p>");
4531: }
4532: $request->rflush();
4533: $countdone++;
4534: }
1.41 ng 4535: }
1.570 www 4536: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt("Saved scores for [quant,_1,student]",$countdone),$countdone==0));
1.596.2.4 raeburn 4537: if (@warnings) {
4538: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Warnings generated for the following saved scores:'),1).'<br />');
4539: $request->print(join(', ',@warnings));
4540: }
1.41 ng 4541: if (@skipped) {
1.571 www 4542: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('No scores stored for the following username(s):'),1).'<br />');
4543: $request->print(join(', ',@skipped));
1.106 albertel 4544: }
4545: if (@notallowed) {
1.571 www 4546: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Modification of scores not allowed for the following username(s):'),1).'<br />');
4547: $request->print(join(', ',@notallowed));
1.41 ng 4548: }
1.106 albertel 4549: $request->print("<br />\n");
1.324 albertel 4550: $request->print(&show_grading_menu_form($symb));
1.345 bowersj2 4551: return $error_msg;
1.26 albertel 4552: }
1.44 ng 4553: #------------- end of section for handling csv file upload ---------
4554: #
4555: #-------------------------------------------------------------------
4556: #
1.122 ng 4557: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4558: #
4559: #--- Select a page/sequence and a student to grade
1.68 ng 4560: sub pickStudentPage {
4561: my ($request) = shift;
4562:
1.539 riegler 4563: my $alertmsg = &mt('Please select the student you wish to grade.');
1.68 ng 4564: $request->print(<<LISTJAVASCRIPT);
4565: <script type="text/javascript" language="javascript">
4566:
4567: function checkPickOne(formname) {
1.76 ng 4568: if (radioSelection(formname.student) == null) {
1.539 riegler 4569: alert("$alertmsg");
1.68 ng 4570: return;
4571: }
1.125 ng 4572: ptr = pullDownSelection(formname.selectpage);
4573: formname.page.value = formname["page"+ptr].value;
4574: formname.title.value = formname["title"+ptr].value;
1.68 ng 4575: formname.submit();
4576: }
4577:
4578: </script>
4579: LISTJAVASCRIPT
1.118 ng 4580: &commonJSfunctions($request);
1.324 albertel 4581: my ($symb) = &get_symb($request);
1.257 albertel 4582: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4583: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4584: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4585:
1.398 albertel 4586: my $result='<h3><span class="LC_info"> '.
1.485 albertel 4587: &mt('Manual Grading by Page or Sequence').'</span></h3>';
1.68 ng 4588:
1.80 ng 4589: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.582 raeburn 4590: my $map_error;
4591: my ($titles,$symbx) = &getSymbMap($map_error);
4592: if ($map_error) {
4593: $request->print(&navmap_errormsg());
4594: return;
4595: }
1.137 albertel 4596: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4597: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4598: # my $type=($curpage =~ /\.(page|sequence)/);
1.485 albertel 4599: my $select = '<select name="selectpage">'."\n";
1.70 ng 4600: my $ctr=0;
1.68 ng 4601: foreach (@$titles) {
4602: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.485 albertel 4603: $select.='<option value="'.$ctr.'" '.
1.401 albertel 4604: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71 ng 4605: '>'.$showtitle.'</option>'."\n";
1.70 ng 4606: $ctr++;
1.68 ng 4607: }
1.485 albertel 4608: $select.= '</select>';
1.539 riegler 4609: $result.=' <b>'.&mt('Problems from').':</b> '.$select."<br />\n";
1.485 albertel 4610:
1.70 ng 4611: $ctr=0;
4612: foreach (@$titles) {
4613: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4614: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4615: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4616: $ctr++;
4617: }
1.72 ng 4618: $result.='<input type="hidden" name="page" />'."\n".
4619: '<input type="hidden" name="title" />'."\n";
1.68 ng 4620:
1.485 albertel 4621: my $options =
4622: '<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
4623: '<label><input type="radio" name="vProb" value="yes" /> '.&mt('yes').' </label>'."<br />\n";
1.539 riegler 4624: $result.=' <b>'.&mt('View Problem Text').': </b>'.$options;
1.485 albertel 4625:
4626: $options =
4627: '<label><input type="radio" name="lastSub" value="none" /> '.&mt('none').' </label>'."\n".
4628: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.&mt('by dates and submissions').'</label>'."\n".
4629: '<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').' </label>'."\n";
1.539 riegler 4630: $result.=' <b>'.&mt('Submissions').': </b>'.$options;
1.432 banghart 4631:
4632: $result.=&build_section_inputs();
1.442 banghart 4633: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4634: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.72 ng 4635: '<input type="hidden" name="command" value="displayPage" />'."\n".
1.418 albertel 4636: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4637: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72 ng 4638:
1.539 riegler 4639: $result.=' <b>'.&mt('Use CODE').': </b> <input type="text" name="CODE" value="" /> <br />'."\n";
1.382 albertel 4640:
1.80 ng 4641: $result.=' <input type="button" '.
1.589 bisitz 4642: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /><br />'."\n";
1.72 ng 4643:
1.68 ng 4644: $request->print($result);
4645:
1.485 albertel 4646: my $studentTable.=' <b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
1.484 albertel 4647: &Apache::loncommon::start_data_table().
4648: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4649: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4650: '<th>'.&nameUserString('header').'</th>'.
1.485 albertel 4651: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4652: '<th>'.&nameUserString('header').'</th>'.
4653: &Apache::loncommon::end_data_table_header_row();
1.68 ng 4654:
1.76 ng 4655: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4656: my $ptr = 1;
1.294 albertel 4657: foreach my $student (sort
4658: {
4659: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4660: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4661: }
4662: return $a cmp $b;
4663: } (keys(%$fullname))) {
1.68 ng 4664: my ($uname,$udom) = split(/:/,$student);
1.484 albertel 4665: $studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
4666: : '</td>');
1.126 ng 4667: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4668: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4669: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.484 albertel 4670: $studentTable.=
4671: ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row()
4672: : '');
1.68 ng 4673: $ptr++;
4674: }
1.484 albertel 4675: if ($ptr%2 == 0) {
4676: $studentTable.='</td><td> </td><td> </td>'.
4677: &Apache::loncommon::end_data_table_row();
4678: }
4679: $studentTable.=&Apache::loncommon::end_data_table()."\n";
1.126 ng 4680: $studentTable.='<input type="button" '.
1.589 bisitz 4681: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /></form>'."\n";
1.68 ng 4682:
1.324 albertel 4683: $studentTable.=&show_grading_menu_form($symb);
1.68 ng 4684: $request->print($studentTable);
4685:
4686: return '';
4687: }
4688:
4689: sub getSymbMap {
1.582 raeburn 4690: my ($map_error) = @_;
1.132 bowersj2 4691: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4692: unless (ref($navmap)) {
4693: if (ref($map_error)) {
4694: $$map_error = 'navmap';
4695: }
4696: return;
4697: }
1.68 ng 4698: my %symbx = ();
4699: my @titles = ();
1.117 bowersj2 4700: my $minder = 0;
4701:
4702: # Gather every sequence that has problems.
1.240 albertel 4703: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
4704: 1,0,1);
1.117 bowersj2 4705: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 4706: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 4707: my $title = $minder.'.'.
4708: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
4709: push(@titles, $title); # minder in case two titles are identical
4710: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 4711: $minder++;
1.241 albertel 4712: }
1.68 ng 4713: }
4714: return \@titles,\%symbx;
4715: }
4716:
1.72 ng 4717: #
4718: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 4719: sub displayPage {
4720: my ($request) = shift;
4721:
1.324 albertel 4722: my ($symb) = &get_symb($request);
1.257 albertel 4723: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4724: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4725: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4726: my $pageTitle = $env{'form.page'};
1.103 albertel 4727: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4728: my ($uname,$udom) = split(/:/,$env{'form.student'});
4729: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 4730:
4731: #need to make sure we have the correct data for later EXT calls,
4732: #thus invalidate the cache
4733: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 4734: $env{'course.'.$env{'request.course.id'}.'.num'},
4735: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 4736: &Apache::lonnet::clear_EXT_cache_status();
4737:
1.103 albertel 4738: if (!&canview($usec)) {
1.485 albertel 4739: $request->print('<span class="LC_warning">'.&mt('Unable to view requested student. ([_1])',$env{'form.student'}).'</span>');
1.324 albertel 4740: $request->print(&show_grading_menu_form($symb));
1.103 albertel 4741: return;
4742: }
1.398 albertel 4743: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.485 albertel 4744: $result.='<h3> '.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
1.129 ng 4745: '</h3>'."\n";
1.500 albertel 4746: $env{'form.CODE'} = uc($env{'form.CODE'});
1.501 foxr 4747: if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
1.485 albertel 4748: $result.='<h3> '.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
1.382 albertel 4749: } else {
4750: delete($env{'form.CODE'});
4751: }
1.71 ng 4752: &sub_page_js($request);
4753: $request->print($result);
4754:
1.132 bowersj2 4755: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4756: unless (ref($navmap)) {
4757: $request->print(&navmap_errormsg());
4758: $request->print(&show_grading_menu_form($symb));
4759: return;
4760: }
1.257 albertel 4761: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 4762: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4763: if (!$map) {
1.485 albertel 4764: $request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
1.324 albertel 4765: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4766: return;
4767: }
1.68 ng 4768: my $iterator = $navmap->getIterator($map->map_start(),
4769: $map->map_finish());
4770:
1.71 ng 4771: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 4772: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 4773: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
4774: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 4775: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 4776: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 4777: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.125 ng 4778: '<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257 albertel 4779: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71 ng 4780:
1.382 albertel 4781: if (defined($env{'form.CODE'})) {
4782: $studentTable.=
4783: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
4784: }
1.381 albertel 4785: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 4786: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 4787:
1.594 bisitz 4788: $studentTable.=' <span class="LC_info">'.
4789: &mt('Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon).
4790: '</span>'."\n".
1.484 albertel 4791: &Apache::loncommon::start_data_table().
4792: &Apache::loncommon::start_data_table_header_row().
4793: '<th align="center"> Prob. </th>'.
1.485 albertel 4794: '<th> '.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
1.484 albertel 4795: &Apache::loncommon::end_data_table_header_row();
1.71 ng 4796:
1.329 albertel 4797: &Apache::lonxml::clear_problem_counter();
1.196 albertel 4798: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 4799: $iterator->next(); # skip the first BEGIN_MAP
4800: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 4801: while ($depth > 0) {
1.68 ng 4802: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4803: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 4804:
1.385 albertel 4805: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4806: my $parts = $curRes->parts();
1.68 ng 4807: my $title = $curRes->compTitle();
1.71 ng 4808: my $symbx = $curRes->symb();
1.484 albertel 4809: $studentTable.=
4810: &Apache::loncommon::start_data_table_row().
4811: '<td align="center" valign="top" >'.$prob.
1.485 albertel 4812: (scalar(@{$parts}) == 1 ? ''
1.596.2.2 raeburn 4813: : '<br />('.&mt('[_1]parts)',
4814: scalar(@{$parts}).' ')
1.485 albertel 4815: ).
4816: '</td>';
1.71 ng 4817: $studentTable.='<td valign="top">';
1.382 albertel 4818: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 4819: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 4820: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 4821: undef,'both',\%form);
1.71 ng 4822: } else {
1.382 albertel 4823: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 4824: $companswer =~ s|<form(.*?)>||g;
4825: $companswer =~ s|</form>||g;
1.71 ng 4826: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 4827: # $companswer =~ s/$1/ /ms;
1.326 albertel 4828: # $request->print('match='.$1."<br />\n");
1.71 ng 4829: # }
1.116 ng 4830: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.539 riegler 4831: $studentTable.=' <b>'.$title.'</b> <br /> <b>'.&mt('Correct answer').':</b><br />'.$companswer;
1.71 ng 4832: }
4833:
1.257 albertel 4834: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 4835:
1.257 albertel 4836: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 4837: if ($record{'version'} eq '') {
1.485 albertel 4838: $studentTable.='<br /> <span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
1.71 ng 4839: } else {
1.116 ng 4840: my %responseType = ();
4841: foreach my $partid (@{$parts}) {
1.147 albertel 4842: my @responseIds =$curRes->responseIds($partid);
4843: my @responseType =$curRes->responseType($partid);
4844: my %responseIds;
4845: for (my $i=0;$i<=$#responseIds;$i++) {
4846: $responseIds{$responseIds[$i]}=$responseType[$i];
4847: }
4848: $responseType{$partid} = \%responseIds;
1.116 ng 4849: }
1.148 albertel 4850: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 4851:
1.71 ng 4852: }
1.257 albertel 4853: } elsif ($env{'form.lastSub'} eq 'all') {
4854: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71 ng 4855: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 4856: $env{'request.course.id'},
1.71 ng 4857: '','.submission');
4858:
4859: }
1.103 albertel 4860: if (&canmodify($usec)) {
1.585 bisitz 4861: $studentTable.=&gradeBox_start();
1.103 albertel 4862: foreach my $partid (@{$parts}) {
4863: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
4864: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
4865: $question++;
4866: }
1.585 bisitz 4867: $studentTable.=&gradeBox_end();
1.196 albertel 4868: $prob++;
1.71 ng 4869: }
4870: $studentTable.='</td></tr>';
1.68 ng 4871:
1.103 albertel 4872: }
1.68 ng 4873: $curRes = $iterator->next();
4874: }
4875:
1.589 bisitz 4876: $studentTable.=
4877: '</table>'."\n".
4878: '<input type="button" value="'.&mt('Save').'" '.
4879: 'onclick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
4880: '</form>'."\n";
1.324 albertel 4881: $studentTable.=&show_grading_menu_form($symb);
1.71 ng 4882: $request->print($studentTable);
4883:
4884: return '';
1.119 ng 4885: }
4886:
4887: sub displaySubByDates {
1.148 albertel 4888: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 4889: my $isCODE=0;
1.335 albertel 4890: my $isTask = ($symb =~/\.task$/);
1.224 albertel 4891: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 4892: my $studentTable=&Apache::loncommon::start_data_table().
4893: &Apache::loncommon::start_data_table_header_row().
4894: '<th>'.&mt('Date/Time').'</th>'.
4895: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
1.596.2.12.2. (raeburn 4896:): ($isTask?'<th>'.&mt('Version').'</th>':'').
1.467 albertel 4897: '<th>'.&mt('Submission').'</th>'.
4898: '<th>'.&mt('Status').'</th>'.
4899: &Apache::loncommon::end_data_table_header_row();
1.119 ng 4900: my ($version);
4901: my %mark;
1.148 albertel 4902: my %orders;
1.119 ng 4903: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 4904: if (!exists($$record{'1:timestamp'})) {
1.539 riegler 4905: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br />';
1.147 albertel 4906: }
1.335 albertel 4907:
4908: my $interaction;
1.525 raeburn 4909: my $no_increment = 1;
1.596.2.2 raeburn 4910: my %lastrndseed;
1.119 ng 4911: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 4912: my $timestamp =
4913: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 4914: if (exists($$record{$version.':resource.0.version'})) {
4915: $interaction = $$record{$version.':resource.0.version'};
4916: }
1.596.2.12.2. (raeburn 4917:): if ($isTask && $env{'form.previousversion'}) {
4918:): next unless ($interaction == $env{'form.previousversion'});
4919:): }
1.335 albertel 4920: my $where = ($isTask ? "$version:resource.$interaction"
4921: : "$version:resource");
1.467 albertel 4922: $studentTable.=&Apache::loncommon::start_data_table_row().
4923: '<td>'.$timestamp.'</td>';
1.224 albertel 4924: if ($isCODE) {
4925: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
4926: }
1.596.2.12.2. (raeburn 4927:): if ($isTask) {
4928:): $studentTable.='<td>'.$interaction.'</td>';
4929:): }
1.119 ng 4930: my @versionKeys = split(/\:/,$$record{$version.':keys'});
4931: my @displaySub = ();
4932: foreach my $partid (@{$parts}) {
1.596.2.2 raeburn 4933: my ($hidden,$type);
4934: $type = $$record{$version.':resource.'.$partid.'.type'};
4935: if (($type eq 'anonsurvey') || ($type eq 'anonsurveycred')) {
1.596 raeburn 4936: $hidden = 1;
4937: }
1.335 albertel 4938: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
4939: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
4940:
1.122 ng 4941: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 4942: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 4943: foreach my $matchKey (@matchKey) {
1.198 albertel 4944: if (exists($$record{$version.':'.$matchKey}) &&
4945: $$record{$version.':'.$matchKey} ne '') {
1.596 raeburn 4946:
1.335 albertel 4947: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
4948: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.596.2.12.2. (raeburn 4949:): $displaySub[0].='<span class="LC_nobreak">';
1.577 bisitz 4950: $displaySub[0].='<b>'.&mt('Part: [_1]',$display_part).'</b>'
4951: .' <span class="LC_internal_info">'
1.596.2.4 raeburn 4952: .'('.&mt('Response ID: [_1]',$responseId).')'
1.577 bisitz 4953: .'</span>'
4954: .' <b>';
1.596 raeburn 4955: if ($hidden) {
4956: $displaySub[0].= &mt('Anonymous Survey').'</b>';
4957: } else {
1.596.2.2 raeburn 4958: my ($trial,$rndseed,$newvariation);
4959: if ($type eq 'randomizetry') {
4960: $trial = $$record{"$where.$partid.tries"};
4961: $rndseed = $$record{"$where.$partid.rndseed"};
4962: }
1.596 raeburn 4963: if ($$record{"$where.$partid.tries"} eq '') {
4964: $displaySub[0].=&mt('Trial not counted');
4965: } else {
4966: $displaySub[0].=&mt('Trial: [_1]',
1.467 albertel 4967: $$record{"$where.$partid.tries"});
1.596.2.2 raeburn 4968: if ($rndseed || $lastrndseed{$partid}) {
4969: if ($rndseed ne $lastrndseed{$partid}) {
4970: $newvariation = ' ('.&mt('New variation this try').')';
4971: }
4972: }
1.596 raeburn 4973: }
4974: my $responseType=($isTask ? 'Task'
1.335 albertel 4975: : $responseType->{$partid}->{$responseId});
1.596 raeburn 4976: if (!exists($orders{$partid})) { $orders{$partid}={}; }
1.596.2.2 raeburn 4977: if ((!exists($orders{$partid}->{$responseId})) || ($trial)) {
1.596 raeburn 4978: $orders{$partid}->{$responseId}=
4979: &get_order($partid,$responseId,$symb,$uname,$udom,
1.596.2.2 raeburn 4980: $no_increment,$type,$trial,$rndseed);
1.596 raeburn 4981: }
1.596.2.2 raeburn 4982: $displaySub[0].='</b>'.$newvariation.'</span>'; # /nobreak
1.596 raeburn 4983: $displaySub[0].=' '.
1.596.2.2 raeburn 4984: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom,$type,$trial,$rndseed).'<br />';
1.596 raeburn 4985: }
1.147 albertel 4986: }
4987: }
1.335 albertel 4988: if (exists($$record{"$where.$partid.checkedin"})) {
1.485 albertel 4989: $displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
4990: $$record{"$where.$partid.checkedin"},
4991: $$record{"$where.$partid.checkedin.slot"}).
4992: '<br />';
1.335 albertel 4993: }
4994: if (exists $$record{"$where.$partid.award"}) {
1.485 albertel 4995: $displaySub[1].='<b>'.&mt('Part:').'</b> '.$display_part.' '.
1.335 albertel 4996: lc($$record{"$where.$partid.award"}).' '.
4997: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 4998: '<br />';
4999: }
1.335 albertel 5000: if (exists $$record{"$where.$partid.regrader"}) {
5001: $displaySub[2].=$$record{"$where.$partid.regrader"}.
5002: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
5003: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
5004: $displaySub[2].=
5005: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 5006: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 5007: }
5008: }
5009: # needed because old essay regrader has not parts info
5010: if (exists $$record{"$version:resource.regrader"}) {
5011: $displaySub[2].=$$record{"$version:resource.regrader"};
5012: }
5013: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
5014: if ($displaySub[2]) {
1.467 albertel 5015: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 5016: }
1.467 albertel 5017: $studentTable.=' </td>'.
5018: &Apache::loncommon::end_data_table_row();
1.119 ng 5019: }
1.467 albertel 5020: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 5021: return $studentTable;
1.71 ng 5022: }
5023:
5024: sub updateGradeByPage {
5025: my ($request) = shift;
5026:
1.257 albertel 5027: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
5028: my $cnum = $env{"course.$env{'request.course.id'}.num"};
5029: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
5030: my $pageTitle = $env{'form.page'};
1.103 albertel 5031: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 5032: my ($uname,$udom) = split(/:/,$env{'form.student'});
5033: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 5034: if (!&canmodify($usec)) {
1.526 raeburn 5035: $request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
1.324 albertel 5036: $request->print(&show_grading_menu_form($env{'form.symb'}));
1.103 albertel 5037: return;
5038: }
1.398 albertel 5039: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.526 raeburn 5040: $result.='<h3> '.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 5041: '</h3>'."\n";
1.70 ng 5042:
1.68 ng 5043: $request->print($result);
5044:
1.582 raeburn 5045:
1.132 bowersj2 5046: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 5047: unless (ref($navmap)) {
5048: $request->print(&navmap_errormsg());
5049: return;
5050: }
1.257 albertel 5051: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 5052: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 5053: if (!$map) {
1.527 raeburn 5054: $request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
1.324 albertel 5055: my ($symb)=&get_symb($request);
5056: $request->print(&show_grading_menu_form($symb));
1.288 albertel 5057: return;
5058: }
1.71 ng 5059: my $iterator = $navmap->getIterator($map->map_start(),
5060: $map->map_finish());
1.70 ng 5061:
1.484 albertel 5062: my $studentTable=
5063: &Apache::loncommon::start_data_table().
5064: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 5065: '<th align="center"> '.&mt('Prob.').' </th>'.
5066: '<th> '.&mt('Title').' </th>'.
5067: '<th> '.&mt('Previous Score').' </th>'.
5068: '<th> '.&mt('New Score').' </th>'.
1.484 albertel 5069: &Apache::loncommon::end_data_table_header_row();
1.71 ng 5070:
5071: $iterator->next(); # skip the first BEGIN_MAP
5072: my $curRes = $iterator->next(); # for "current resource"
1.196 albertel 5073: my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101 albertel 5074: while ($depth > 0) {
1.71 ng 5075: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 5076: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 5077:
1.385 albertel 5078: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 5079: my $parts = $curRes->parts();
1.71 ng 5080: my $title = $curRes->compTitle();
5081: my $symbx = $curRes->symb();
1.484 albertel 5082: $studentTable.=
5083: &Apache::loncommon::start_data_table_row().
5084: '<td align="center" valign="top" >'.$prob.
1.485 albertel 5085: (scalar(@{$parts}) == 1 ? ''
1.596.2.2 raeburn 5086: : '<br />('.&mt('[quant,_1,part]',scalar(@{$parts}))
1.526 raeburn 5087: .')').'</td>';
1.71 ng 5088: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
5089:
5090: my %newrecord=();
5091: my @displayPts=();
1.269 raeburn 5092: my %aggregate = ();
5093: my $aggregateflag = 0;
1.71 ng 5094: foreach my $partid (@{$parts}) {
1.257 albertel 5095: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
5096: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 5097:
1.257 albertel 5098: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
5099: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 5100: my $partial = $newpts/$wgt;
5101: my $score;
5102: if ($partial > 0) {
5103: $score = 'correct_by_override';
1.125 ng 5104: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 5105: $score = 'incorrect_by_override';
5106: }
1.257 albertel 5107: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 5108: if ($dropMenu eq 'excused') {
1.71 ng 5109: $partial = '';
5110: $score = 'excused';
1.125 ng 5111: } elsif ($dropMenu eq 'reset status'
1.257 albertel 5112: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 5113: $newrecord{'resource.'.$partid.'.tries'} = 0;
5114: $newrecord{'resource.'.$partid.'.solved'} = '';
5115: $newrecord{'resource.'.$partid.'.award'} = '';
5116: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 5117: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 5118: $changeflag++;
5119: $newpts = '';
1.269 raeburn 5120:
5121: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
5122: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
5123: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
5124: if ($aggtries > 0) {
5125: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
5126: $aggregateflag = 1;
5127: }
1.71 ng 5128: }
1.324 albertel 5129: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 5130: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.526 raeburn 5131: $displayPts[0].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.71 ng 5132: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 5133: ' <br />';
1.526 raeburn 5134: $displayPts[1].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.125 ng 5135: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 5136: ' <br />';
1.71 ng 5137: $question++;
1.380 albertel 5138: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 5139:
1.71 ng 5140: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 5141: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 5142: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 5143: if (scalar(keys(%newrecord)) > 0);
1.71 ng 5144:
5145: $changeflag++;
5146: }
5147: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 5148: my %record =
5149: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
5150: $udom,$uname);
5151:
5152: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
5153: $newrecord{'resource.CODE'} = $env{'form.CODE'};
5154: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
5155: $newrecord{'resource.CODE'} = '';
5156: }
1.257 albertel 5157: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 5158: $udom,$uname);
1.382 albertel 5159: %record = &Apache::lonnet::restore($symbx,
5160: $env{'request.course.id'},
5161: $udom,$uname);
1.380 albertel 5162: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
5163: $cdom,$cnum,$udom,$uname);
1.71 ng 5164: }
1.380 albertel 5165:
1.269 raeburn 5166: if ($aggregateflag) {
5167: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
5168: $env{'course.'.$env{'request.course.id'}.'.domain'},
5169: $env{'course.'.$env{'request.course.id'}.'.num'});
5170: }
1.125 ng 5171:
1.71 ng 5172: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
5173: '<td valign="top">'.$displayPts[1].'</td>'.
1.484 albertel 5174: &Apache::loncommon::end_data_table_row();
1.68 ng 5175:
1.196 albertel 5176: $prob++;
1.68 ng 5177: }
1.71 ng 5178: $curRes = $iterator->next();
1.68 ng 5179: }
1.98 albertel 5180:
1.484 albertel 5181: $studentTable.=&Apache::loncommon::end_data_table();
1.324 albertel 5182: $studentTable.=&show_grading_menu_form($env{'form.symb'});
1.526 raeburn 5183: my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
5184: &mt('The scores were changed for [quant,_1,problem].',
5185: $changeflag));
1.76 ng 5186: $request->print($grademsg.$studentTable);
1.68 ng 5187:
1.70 ng 5188: return '';
5189: }
5190:
1.72 ng 5191: #-------- end of section for handling grading by page/sequence ---------
5192: #
5193: #-------------------------------------------------------------------
5194:
1.581 www 5195: #-------------------- Bubblesheet (Scantron) Grading -------------------
1.75 albertel 5196: #
5197: #------ start of section for handling grading by page/sequence ---------
5198:
1.423 albertel 5199: =pod
5200:
5201: =head1 Bubble sheet grading routines
5202:
1.424 albertel 5203: For this documentation:
5204:
5205: 'scanline' refers to the full line of characters
5206: from the file that we are parsing that represents one entire sheet
5207:
5208: 'bubble line' refers to the data
1.596.2.6 raeburn 5209: representing the line of bubbles that are on the physical bubblesheet
1.424 albertel 5210:
5211:
1.596.2.6 raeburn 5212: The overall process is that a scanned in bubblesheet data is uploaded
1.424 albertel 5213: into a course. When a user wants to grade, they select a
1.596.2.6 raeburn 5214: sequence/folder of resources, a file of bubblesheet info, and pick
1.424 albertel 5215: one of the predefined configurations for what each scanline looks
5216: like.
5217:
5218: Next each scanline is checked for any errors of either 'missing
1.435 foxr 5219: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 5220: because too light bubbling), 'double bubble' (each bubble line should
5221: have no more that one letter picked), invalid or duplicated CODE,
1.556 weissno 5222: invalid student/employee ID
1.424 albertel 5223:
5224: If the CODE option is used that determines the randomization of the
1.556 weissno 5225: homework problems, either way the student/employee ID is looked up into a
1.424 albertel 5226: username:domain.
5227:
5228: During the validation phase the instructor can choose to skip scanlines.
5229:
1.596.2.6 raeburn 5230: After the validation phase, there are now 3 bubblesheet files
1.424 albertel 5231:
5232: scantron_original_filename (unmodified original file)
5233: scantron_corrected_filename (file where the corrected information has replaced the original information)
5234: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
5235:
5236: Also there is a separate hash nohist_scantrondata that contains extra
1.596.2.6 raeburn 5237: correction information that isn't representable in the bubblesheet
1.424 albertel 5238: file (see &scantron_getfile() for more information)
5239:
5240: After all scanlines are either valid, marked as valid or skipped, then
5241: foreach line foreach problem in the picked sequence, an ssi request is
5242: made that simulates a user submitting their selected letter(s) against
5243: the homework problem.
1.423 albertel 5244:
5245: =over 4
5246:
5247:
5248:
5249: =item defaultFormData
5250:
5251: Returns html hidden inputs used to hold context/default values.
5252:
5253: Arguments:
5254: $symb - $symb of the current resource
5255:
5256: =cut
1.422 foxr 5257:
1.81 albertel 5258: sub defaultFormData {
1.324 albertel 5259: my ($symb)=@_;
1.447 foxr 5260: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 5261: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
5262: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81 albertel 5263: }
5264:
1.447 foxr 5265:
1.423 albertel 5266: =pod
5267:
5268: =item getSequenceDropDown
5269:
5270: Return html dropdown of possible sequences to grade
5271:
5272: Arguments:
1.582 raeburn 5273: $symb - $symb of the current resource
5274: $map_error - ref to scalar which will container error if
5275: $navmap object is unavailable in &getSymbMap().
1.423 albertel 5276:
5277: =cut
1.422 foxr 5278:
1.75 albertel 5279: sub getSequenceDropDown {
1.582 raeburn 5280: my ($symb,$map_error)=@_;
1.75 albertel 5281: my $result='<select name="selectpage">'."\n";
1.582 raeburn 5282: my ($titles,$symbx) = &getSymbMap($map_error);
5283: if (ref($map_error)) {
5284: return if ($$map_error);
5285: }
1.137 albertel 5286: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 5287: my $ctr=0;
5288: foreach (@$titles) {
5289: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
5290: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 5291: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 5292: '>'.$showtitle.'</option>'."\n";
5293: $ctr++;
5294: }
5295: $result.= '</select>';
5296: return $result;
5297: }
5298:
1.495 albertel 5299: my %bubble_lines_per_response; # no. bubble lines for each response.
1.554 raeburn 5300: # key is zero-based index - 0, 1, 2 ...
1.495 albertel 5301:
5302: my %first_bubble_line; # First bubble line no. for each bubble.
5303:
1.509 raeburn 5304: my %subdivided_bubble_lines; # no. bubble lines for optionresponse,
5305: # matchresponse or rankresponse, where
5306: # an individual response can have multiple
5307: # lines
1.503 raeburn 5308:
5309: my %responsetype_per_response; # responsetype for each response
5310:
1.495 albertel 5311: # Save and restore the bubble lines array to the form env.
5312:
5313:
5314: sub save_bubble_lines {
5315: foreach my $line (keys(%bubble_lines_per_response)) {
5316: $env{"form.scantron.bubblelines.$line"} = $bubble_lines_per_response{$line};
5317: $env{"form.scantron.first_bubble_line.$line"} =
5318: $first_bubble_line{$line};
1.503 raeburn 5319: $env{"form.scantron.sub_bubblelines.$line"} =
5320: $subdivided_bubble_lines{$line};
5321: $env{"form.scantron.responsetype.$line"} =
5322: $responsetype_per_response{$line};
1.495 albertel 5323: }
5324: }
5325:
5326:
5327: sub restore_bubble_lines {
5328: my $line = 0;
5329: %bubble_lines_per_response = ();
5330: while ($env{"form.scantron.bubblelines.$line"}) {
5331: my $value = $env{"form.scantron.bubblelines.$line"};
5332: $bubble_lines_per_response{$line} = $value;
5333: $first_bubble_line{$line} =
5334: $env{"form.scantron.first_bubble_line.$line"};
1.503 raeburn 5335: $subdivided_bubble_lines{$line} =
5336: $env{"form.scantron.sub_bubblelines.$line"};
5337: $responsetype_per_response{$line} =
5338: $env{"form.scantron.responsetype.$line"};
1.495 albertel 5339: $line++;
5340: }
5341: }
5342:
5343: # Given the parsed scanline, get the response for
5344: # 'answer' number n:
5345:
5346: sub get_response_bubbles {
5347: my ($parsed_line, $response) = @_;
5348:
5349: my $bubble_line = $first_bubble_line{$response-1} +1;
5350: my $bubble_lines= $bubble_lines_per_response{$response-1};
5351:
5352: my $selected = "";
5353:
5354: for (my $bline = 0; $bline < $bubble_lines; $bline++) {
5355: $selected .= $$parsed_line{"scantron.$bubble_line.answer"}.":";
5356: $bubble_line++;
5357: }
5358: return $selected;
5359: }
1.423 albertel 5360:
5361: =pod
5362:
5363: =item scantron_filenames
5364:
5365: Returns a list of the scantron files in the current course
5366:
5367: =cut
1.422 foxr 5368:
1.202 albertel 5369: sub scantron_filenames {
1.257 albertel 5370: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5371: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517 raeburn 5372: my $getpropath = 1;
1.596.2.12.2. (raeburn 5373:): my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
5374:): $cname,$getpropath);
1.202 albertel 5375: my @possiblenames;
1.596.2.12.2. (raeburn 5376:): if (ref($dirlist) eq 'ARRAY') {
5377:): foreach my $filename (sort(@{$dirlist})) {
5378:): ($filename)=split(/&/,$filename);
5379:): if ($filename!~/^scantron_orig_/) { next ; }
5380:): $filename=~s/^scantron_orig_//;
5381:): push(@possiblenames,$filename);
5382:): }
1.202 albertel 5383: }
5384: return @possiblenames;
5385: }
5386:
1.423 albertel 5387: =pod
5388:
5389: =item scantron_uploads
5390:
5391: Returns html drop-down list of scantron files in current course.
5392:
5393: Arguments:
5394: $file2grade - filename to set as selected in the dropdown
5395:
5396: =cut
1.422 foxr 5397:
1.202 albertel 5398: sub scantron_uploads {
1.209 ng 5399: my ($file2grade) = @_;
1.202 albertel 5400: my $result= '<select name="scantron_selectfile">';
5401: $result.="<option></option>";
5402: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 5403: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 5404: }
5405: $result.="</select>";
5406: return $result;
5407: }
5408:
1.423 albertel 5409: =pod
5410:
5411: =item scantron_scantab
5412:
5413: Returns html drop down of the scantron formats in the scantronformat.tab
5414: file.
5415:
5416: =cut
1.422 foxr 5417:
1.82 albertel 5418: sub scantron_scantab {
5419: my $result='<select name="scantron_format">'."\n";
1.191 albertel 5420: $result.='<option></option>'."\n";
1.518 raeburn 5421: my @lines = &get_scantronformat_file();
5422: if (@lines > 0) {
5423: foreach my $line (@lines) {
5424: next if (($line =~ /^\#/) || ($line eq ''));
5425: my ($name,$descrip)=split(/:/,$line);
5426: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
5427: }
1.82 albertel 5428: }
5429: $result.='</select>'."\n";
1.518 raeburn 5430: return $result;
5431: }
5432:
5433: =pod
5434:
5435: =item get_scantronformat_file
5436:
5437: Returns an array containing lines from the scantron format file for
5438: the domain of the course.
5439:
5440: If a url for a custom.tab file is listed in domain's configuration.db,
5441: lines are from this file.
5442:
5443: Otherwise, if a default.tab has been published in RES space by the
5444: domainconfig user, lines are from this file.
5445:
5446: Otherwise, fall back to getting lines from the legacy file on the
1.519 raeburn 5447: local server: /home/httpd/lonTabs/default_scantronformat.tab
1.82 albertel 5448:
1.518 raeburn 5449: =cut
5450:
5451: sub get_scantronformat_file {
5452: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5453: my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
5454: my $gottab = 0;
5455: my @lines;
5456: if (ref($domconfig{'scantron'}) eq 'HASH') {
5457: if ($domconfig{'scantron'}{'scantronformat'} ne '') {
5458: my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
5459: if ($formatfile ne '-1') {
5460: @lines = split("\n",$formatfile,-1);
5461: $gottab = 1;
5462: }
5463: }
5464: }
5465: if (!$gottab) {
5466: my $confname = $cdom.'-domainconfig';
5467: my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
5468: my $formatfile = &Apache::lonnet::getfile($default);
5469: if ($formatfile ne '-1') {
5470: @lines = split("\n",$formatfile,-1);
5471: $gottab = 1;
5472: }
5473: }
5474: if (!$gottab) {
1.519 raeburn 5475: my @domains = &Apache::lonnet::current_machine_domains();
5476: if (grep(/^\Q$cdom\E$/,@domains)) {
5477: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
5478: @lines = <$fh>;
5479: close($fh);
5480: } else {
5481: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
5482: @lines = <$fh>;
5483: close($fh);
5484: }
1.518 raeburn 5485: }
5486: return @lines;
1.82 albertel 5487: }
5488:
1.423 albertel 5489: =pod
5490:
5491: =item scantron_CODElist
5492:
5493: Returns html drop down of the saved CODE lists from current course,
5494: generated from earlier printings.
5495:
5496: =cut
1.422 foxr 5497:
1.186 albertel 5498: sub scantron_CODElist {
1.257 albertel 5499: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
5500: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 5501: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
5502: my $namechoice='<option></option>';
1.225 albertel 5503: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 5504: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 5505: if ($name =~ /^type\0/) { next; }
1.186 albertel 5506: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
5507: }
5508: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
5509: return $namechoice;
5510: }
5511:
1.423 albertel 5512: =pod
5513:
5514: =item scantron_CODEunique
5515:
5516: Returns the html for "Each CODE to be used once" radio.
5517:
5518: =cut
1.422 foxr 5519:
1.186 albertel 5520: sub scantron_CODEunique {
1.532 bisitz 5521: my $result='<span class="LC_nobreak">
1.272 albertel 5522: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5523: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 5524: </span>
1.532 bisitz 5525: <span class="LC_nobreak">
1.272 albertel 5526: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5527: value="no" />'.&mt('No').' </label>
1.381 albertel 5528: </span>';
1.186 albertel 5529: return $result;
5530: }
1.423 albertel 5531:
5532: =pod
5533:
5534: =item scantron_selectphase
5535:
1.596.2.6 raeburn 5536: Generates the initial screen to start the bubblesheet process.
1.423 albertel 5537: Allows for - starting a grading run.
1.424 albertel 5538: - downloading existing scan data (original, corrected
1.423 albertel 5539: or skipped info)
5540:
5541: - uploading new scan data
5542:
5543: Arguments:
5544: $r - The Apache request object
5545: $file2grade - name of the file that contain the scanned data to score
5546:
5547: =cut
1.186 albertel 5548:
1.75 albertel 5549: sub scantron_selectphase {
1.209 ng 5550: my ($r,$file2grade) = @_;
1.324 albertel 5551: my ($symb)=&get_symb($r);
1.75 albertel 5552: if (!$symb) {return '';}
1.582 raeburn 5553: my $map_error;
5554: my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
5555: if ($map_error) {
5556: $r->print('<br />'.&navmap_errormsg().'<br />');
5557: return;
5558: }
1.324 albertel 5559: my $default_form_data=&defaultFormData($symb);
5560: my $grading_menu_button=&show_grading_menu_form($symb);
1.209 ng 5561: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 5562: my $format_selector=&scantron_scantab();
1.186 albertel 5563: my $CODE_selector=&scantron_CODElist();
5564: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 5565: my $result;
1.422 foxr 5566:
1.513 foxr 5567: $ssi_error = 0;
5568:
1.596.2.4 raeburn 5569: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
5570: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
5571:
5572: # Chunk of form to prompt for a scantron file upload.
5573:
5574: $r->print('
5575: <br />
5576: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5577: '.&Apache::loncommon::start_data_table_header_row().'
5578: <th>
5579: '.&mt('Specify a bubblesheet data file to upload.').'
5580: </th>
5581: '.&Apache::loncommon::end_data_table_header_row().'
5582: '.&Apache::loncommon::start_data_table_row().'
5583: <td>
5584: ');
5585: my $default_form_data=&defaultFormData(&get_symb($r,1));
5586: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5587: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
5588: $r->print('
5589: <script type="text/javascript" language="javascript">
5590: function checkUpload(formname) {
5591: if (formname.upfile.value == "") {
5592: alert("'.&mt('Please use the browse button to select a file from your local directory.').'");
5593: return false;
5594: }
5595: formname.submit();
5596: }
5597: </script>
5598:
5599: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
5600: '.$default_form_data.'
5601: <input name="courseid" type="hidden" value="'.$cnum.'" />
5602: <input name="domainid" type="hidden" value="'.$cdom.'" />
5603: <input name="command" value="scantronupload_save" type="hidden" />
5604: '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
5605: <br />
5606: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
5607: </form>
5608: ');
5609:
5610: $r->print('
5611: </td>
5612: '.&Apache::loncommon::end_data_table_row().'
5613: '.&Apache::loncommon::end_data_table().'
5614: ');
5615: }
5616:
1.422 foxr 5617: # Chunk of form to prompt for a file to grade and how:
5618:
1.489 albertel 5619: $result.= '
5620: <br />
5621: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
5622: <input type="hidden" name="command" value="scantron_warning" />
5623: '.$default_form_data.'
5624: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5625: '.&Apache::loncommon::start_data_table_header_row().'
5626: <th colspan="2">
1.492 albertel 5627: '.&mt('Specify file and which Folder/Sequence to grade').'
1.489 albertel 5628: </th>
5629: '.&Apache::loncommon::end_data_table_header_row().'
5630: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5631: <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489 albertel 5632: '.&Apache::loncommon::end_data_table_row().'
5633: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5634: <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
1.489 albertel 5635: '.&Apache::loncommon::end_data_table_row().'
5636: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5637: <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
1.489 albertel 5638: '.&Apache::loncommon::end_data_table_row().'
5639: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5640: <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489 albertel 5641: '.&Apache::loncommon::end_data_table_row().'
5642: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5643: <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489 albertel 5644: '.&Apache::loncommon::end_data_table_row().'
5645: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5646: <td> '.&mt('Options:').' </td>
1.187 albertel 5647: <td>
1.492 albertel 5648: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
5649: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
5650: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187 albertel 5651: </td>
1.489 albertel 5652: '.&Apache::loncommon::end_data_table_row().'
5653: '.&Apache::loncommon::start_data_table_row().'
1.174 albertel 5654: <td colspan="2">
1.572 www 5655: <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
1.162 albertel 5656: </td>
1.489 albertel 5657: '.&Apache::loncommon::end_data_table_row().'
5658: '.&Apache::loncommon::end_data_table().'
5659: </form>
5660: ';
1.162 albertel 5661:
5662: $r->print($result);
5663:
1.422 foxr 5664: # Chunk of the form that prompts to view a scoring office file,
5665: # corrected file, skipped records in a file.
5666:
1.489 albertel 5667: $r->print('
5668: <br />
5669: <form action="/adm/grades" name="scantron_download">
5670: '.$default_form_data.'
5671: <input type="hidden" name="command" value="scantron_download" />
5672: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5673: '.&Apache::loncommon::start_data_table_header_row().'
5674: <th>
1.492 albertel 5675: '.&mt('Download a scoring office file').'
1.489 albertel 5676: </th>
5677: '.&Apache::loncommon::end_data_table_header_row().'
5678: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5679: <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).'
1.489 albertel 5680: <br />
1.492 albertel 5681: <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489 albertel 5682: '.&Apache::loncommon::end_data_table_row().'
5683: '.&Apache::loncommon::end_data_table().'
5684: </form>
5685: <br />
5686: ');
1.162 albertel 5687:
1.457 banghart 5688: &Apache::lonpickcode::code_list($r,2);
1.523 raeburn 5689:
1.528 raeburn 5690: $r->print('<br /><form method="post" name="checkscantron">'.
1.523 raeburn 5691: $default_form_data."\n".
5692: &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
5693: &Apache::loncommon::start_data_table_header_row()."\n".
5694: '<th colspan="2">
1.572 www 5695: '.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
1.523 raeburn 5696: '</th>'."\n".
5697: &Apache::loncommon::end_data_table_header_row()."\n".
5698: &Apache::loncommon::start_data_table_row()."\n".
5699: '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
5700: '<td> '.$sequence_selector.' </td>'.
5701: &Apache::loncommon::end_data_table_row()."\n".
5702: &Apache::loncommon::start_data_table_row()."\n".
5703: '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
5704: '<td> '.$file_selector.' </td>'."\n".
5705: &Apache::loncommon::end_data_table_row()."\n".
5706: &Apache::loncommon::start_data_table_row()."\n".
5707: '<td> '.&mt('Format of data file:').' </td>'."\n".
5708: '<td> '.$format_selector.' </td>'."\n".
5709: &Apache::loncommon::end_data_table_row()."\n".
5710: &Apache::loncommon::start_data_table_row()."\n".
1.557 raeburn 5711: '<td> '.&mt('Options').' </td>'."\n".
5712: '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
5713: &Apache::loncommon::end_data_table_row()."\n".
5714: &Apache::loncommon::start_data_table_row()."\n".
1.523 raeburn 5715: '<td colspan="2">'."\n".
5716: '<input type="hidden" name="command" value="checksubmissions" />'."\n".
1.575 www 5717: '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
1.523 raeburn 5718: '</td>'."\n".
5719: &Apache::loncommon::end_data_table_row()."\n".
5720: &Apache::loncommon::end_data_table()."\n".
5721: '</form><br />');
1.457 banghart 5722: $r->print($grading_menu_button);
1.523 raeburn 5723: return;
1.75 albertel 5724: }
5725:
1.423 albertel 5726: =pod
5727:
5728: =item get_scantron_config
5729:
5730: Parse and return the scantron configuration line selected as a
5731: hash of configuration file fields.
5732:
5733: Arguments:
5734: which - the name of the configuration to parse from the file.
5735:
5736:
5737: Returns:
5738: If the named configuration is not in the file, an empty
5739: hash is returned.
5740: a hash with the fields
5741: name - internal name for the this configuration setup
5742: description - text to display to operator that describes this config
5743: CODElocation - if 0 or the string 'none'
5744: - no CODE exists for this config
5745: if -1 || the string 'letter'
5746: - a CODE exists for this config and is
5747: a string of letters
5748: Unsupported value (but planned for future support)
5749: if a positive integer
5750: - The CODE exists as the first n items from
5751: the question section of the form
5752: if the string 'number'
5753: - The CODE exists for this config and is
5754: a string of numbers
5755: CODEstart - (only matter if a CODE exists) column in the line where
5756: the CODE starts
5757: CODElength - length of the CODE
1.573 bisitz 5758: IDstart - column where the student/employee ID starts
1.556 weissno 5759: IDlength - length of the student/employee ID info
1.423 albertel 5760: Qstart - column where the information from the bubbled
5761: 'questions' start
5762: Qlength - number of columns comprising a single bubble line from
5763: the sheet. (usually either 1 or 10)
1.424 albertel 5764: Qon - either a single character representing the character used
1.423 albertel 5765: to signal a bubble was chosen in the positional setup, or
5766: the string 'letter' if the letter of the chosen bubble is
5767: in the final, or 'number' if a number representing the
5768: chosen bubble is in the file (1->A 0->J)
1.424 albertel 5769: Qoff - the character used to represent that a bubble was
5770: left blank
1.423 albertel 5771: PaperID - if the scanning process generates a unique number for each
5772: sheet scanned the column that this ID number starts in
5773: PaperIDlength - number of columns that comprise the unique ID number
5774: for the sheet of paper
1.424 albertel 5775: FirstName - column that the first name starts in
1.423 albertel 5776: FirstNameLength - number of columns that the first name spans
5777:
5778: LastName - column that the last name starts in
5779: LastNameLength - number of columns that the last name spans
1.596.2.12.2. (raeburn 5780:): BubblesPerRow - number of bubbles available in each row used to
5781:): bubble an answer. (If not specified, 10 assumed).
1.423 albertel 5782:
5783: =cut
1.422 foxr 5784:
1.82 albertel 5785: sub get_scantron_config {
5786: my ($which) = @_;
1.518 raeburn 5787: my @lines = &get_scantronformat_file();
1.82 albertel 5788: my %config;
1.157 albertel 5789: #FIXME probably should move to XML it has already gotten a bit much now
1.518 raeburn 5790: foreach my $line (@lines) {
1.82 albertel 5791: my ($name,$descrip)=split(/:/,$line);
5792: if ($name ne $which ) { next; }
5793: chomp($line);
5794: my @config=split(/:/,$line);
5795: $config{'name'}=$config[0];
5796: $config{'description'}=$config[1];
5797: $config{'CODElocation'}=$config[2];
5798: $config{'CODEstart'}=$config[3];
5799: $config{'CODElength'}=$config[4];
5800: $config{'IDstart'}=$config[5];
5801: $config{'IDlength'}=$config[6];
5802: $config{'Qstart'}=$config[7];
1.497 foxr 5803: $config{'Qlength'}=$config[8];
1.82 albertel 5804: $config{'Qoff'}=$config[9];
5805: $config{'Qon'}=$config[10];
1.157 albertel 5806: $config{'PaperID'}=$config[11];
5807: $config{'PaperIDlength'}=$config[12];
5808: $config{'FirstName'}=$config[13];
5809: $config{'FirstNamelength'}=$config[14];
5810: $config{'LastName'}=$config[15];
5811: $config{'LastNamelength'}=$config[16];
1.596.2.12.2. (raeburn 5812:): $config{'BubblesPerRow'}=$config[17];
1.82 albertel 5813: last;
5814: }
5815: return %config;
5816: }
5817:
1.423 albertel 5818: =pod
5819:
5820: =item username_to_idmap
5821:
1.556 weissno 5822: creates a hash keyed by student/employee ID with values of the corresponding
1.423 albertel 5823: student username:domain.
5824:
5825: Arguments:
5826:
5827: $classlist - reference to the class list hash. This is a hash
5828: keyed by student name:domain whose elements are references
1.424 albertel 5829: to arrays containing various chunks of information
1.423 albertel 5830: about the student. (See loncoursedata for more info).
5831:
5832: Returns
5833: %idmap - the constructed hash
5834:
5835: =cut
5836:
1.82 albertel 5837: sub username_to_idmap {
5838: my ($classlist)= @_;
5839: my %idmap;
5840: foreach my $student (keys(%$classlist)) {
5841: $idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
5842: $student;
5843: }
5844: return %idmap;
5845: }
1.423 albertel 5846:
5847: =pod
5848:
1.424 albertel 5849: =item scantron_fixup_scanline
1.423 albertel 5850:
5851: Process a requested correction to a scanline.
5852:
5853: Arguments:
5854: $scantron_config - hash from &get_scantron_config()
5855: $scan_data - hash of correction information
5856: (see &scantron_getfile())
5857: $line - existing scanline
5858: $whichline - line number of the passed in scanline
5859: $field - type of change to process
5860: (either
1.573 bisitz 5861: 'ID' -> correct the student/employee ID
1.423 albertel 5862: 'CODE' -> correct the CODE
5863: 'answer' -> fixup the submitted answers)
5864:
5865: $args - hash of additional info,
5866: - 'ID'
5867: 'newid' -> studentID to use in replacement
1.424 albertel 5868: of existing one
1.423 albertel 5869: - 'CODE'
5870: 'CODE_ignore_dup' - set to true if duplicates
5871: should be ignored.
5872: 'CODE' - is new code or 'use_unfound'
1.424 albertel 5873: if the existing unfound code should
1.423 albertel 5874: be used as is
5875: - 'answer'
5876: 'response' - new answer or 'none' if blank
5877: 'question' - the bubble line to change
1.503 raeburn 5878: 'questionnum' - the question identifier,
5879: may include subquestion.
1.423 albertel 5880:
5881: Returns:
5882: $line - the modified scanline
5883:
5884: Side effects:
5885: $scan_data - may be updated
5886:
5887: =cut
5888:
1.82 albertel 5889:
1.157 albertel 5890: sub scantron_fixup_scanline {
5891: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
5892: if ($field eq 'ID') {
5893: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 5894: return ($line,1,'New value too large');
1.157 albertel 5895: }
5896: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
5897: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
5898: $args->{'newid'});
5899: }
5900: substr($line,$$scantron_config{'IDstart'}-1,
5901: $$scantron_config{'IDlength'})=$args->{'newid'};
5902: if ($args->{'newid'}=~/^\s*$/) {
5903: &scan_data($scan_data,"$whichline.user",
5904: $args->{'username'}.':'.$args->{'domain'});
5905: }
1.186 albertel 5906: } elsif ($field eq 'CODE') {
1.192 albertel 5907: if ($args->{'CODE_ignore_dup'}) {
5908: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
5909: }
5910: &scan_data($scan_data,"$whichline.useCODE",'1');
5911: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 5912: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
5913: return ($line,1,'New CODE value too large');
5914: }
5915: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
5916: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
5917: }
5918: substr($line,$$scantron_config{'CODEstart'}-1,
5919: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 5920: }
1.157 albertel 5921: } elsif ($field eq 'answer') {
1.497 foxr 5922: my $length=$scantron_config->{'Qlength'};
1.157 albertel 5923: my $off=$scantron_config->{'Qoff'};
5924: my $on=$scantron_config->{'Qon'};
1.497 foxr 5925: my $answer=${off}x$length;
5926: if ($args->{'response'} eq 'none') {
5927: &scan_data($scan_data,
1.503 raeburn 5928: "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497 foxr 5929: } else {
5930: if ($on eq 'letter') {
5931: my @alphabet=('A'..'Z');
5932: $answer=$alphabet[$args->{'response'}];
5933: } elsif ($on eq 'number') {
5934: $answer=$args->{'response'}+1;
5935: if ($answer == 10) { $answer = '0'; }
1.274 albertel 5936: } else {
1.497 foxr 5937: substr($answer,$args->{'response'},1)=$on;
1.274 albertel 5938: }
1.497 foxr 5939: &scan_data($scan_data,
1.503 raeburn 5940: "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157 albertel 5941: }
1.497 foxr 5942: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
5943: substr($line,$where-1,$length)=$answer;
1.157 albertel 5944: }
5945: return $line;
5946: }
1.423 albertel 5947:
5948: =pod
5949:
5950: =item scan_data
5951:
5952: Edit or look up an item in the scan_data hash.
5953:
5954: Arguments:
5955: $scan_data - The hash (see scantron_getfile)
5956: $key - shorthand of the key to edit (actual key is
1.424 albertel 5957: scantronfilename_key).
1.423 albertel 5958: $data - New value of the hash entry.
5959: $delete - If true, the entry is removed from the hash.
5960:
5961: Returns:
5962: The new value of the hash table field (undefined if deleted).
5963:
5964: =cut
5965:
5966:
1.157 albertel 5967: sub scan_data {
5968: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 5969: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 5970: if (defined($value)) {
5971: $scan_data->{$filename.'_'.$key} = $value;
5972: }
5973: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
5974: return $scan_data->{$filename.'_'.$key};
5975: }
1.423 albertel 5976:
1.495 albertel 5977: # ----- These first few routines are general use routines.----
5978:
5979: # Return the number of occurences of a pattern in a string.
5980:
5981: sub occurence_count {
5982: my ($string, $pattern) = @_;
5983:
5984: my @matches = ($string =~ /$pattern/g);
5985:
5986: return scalar(@matches);
5987: }
5988:
5989:
5990: # Take a string known to have digits and convert all the
5991: # digits into letters in the range J,A..I.
5992:
5993: sub digits_to_letters {
5994: my ($input) = @_;
5995:
5996: my @alphabet = ('J', 'A'..'I');
5997:
5998: my @input = split(//, $input);
5999: my $output ='';
6000: for (my $i = 0; $i < scalar(@input); $i++) {
6001: if ($input[$i] =~ /\d/) {
6002: $output .= $alphabet[$input[$i]];
6003: } else {
6004: $output .= $input[$i];
6005: }
6006: }
6007: return $output;
6008: }
6009:
1.423 albertel 6010: =pod
6011:
6012: =item scantron_parse_scanline
6013:
6014: Decodes a scanline from the selected scantron file
6015:
6016: Arguments:
6017: line - The text of the scantron file line to process
6018: whichline - Line number
6019: scantron_config - Hash describing the format of the scantron lines.
6020: scan_data - Hash of extra information about the scanline
6021: (see scantron_getfile for more information)
6022: just_header - True if should not process question answers but only
6023: the stuff to the left of the answers.
6024: Returns:
6025: Hash containing the result of parsing the scanline
6026:
6027: Keys are all proceeded by the string 'scantron.'
6028:
6029: CODE - the CODE in use for this scanline
6030: useCODE - 1 if the CODE is invalid but it usage has been forced
6031: by the operator
6032: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
6033: CODEs were selected, but the usage has been
6034: forced by the operator
1.556 weissno 6035: ID - student/employee ID
1.423 albertel 6036: PaperID - if used, the ID number printed on the sheet when the
6037: paper was scanned
6038: FirstName - first name from the sheet
6039: LastName - last name from the sheet
6040:
6041: if just_header was not true these key may also exist
6042:
1.447 foxr 6043: missingerror - a list of bubble ranges that are considered to be answers
6044: to a single question that don't have any bubbles filled in.
6045: Of the form questionnumber:firstbubblenumber:count.
6046: doubleerror - a list of bubble ranges that are considered to be answers
6047: to a single question that have more than one bubble filled in.
6048: Of the form questionnumber::firstbubblenumber:count
6049:
6050: In the above, count is the number of bubble responses in the
6051: input line needed to represent the possible answers to the question.
6052: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
6053: per line would have count = 2.
6054:
1.423 albertel 6055: maxquest - the number of the last bubble line that was parsed
6056:
6057: (<number> starts at 1)
6058: <number>.answer - zero or more letters representing the selected
6059: letters from the scanline for the bubble line
6060: <number>.
6061: if blank there was either no bubble or there where
6062: multiple bubbles, (consult the keys missingerror and
6063: doubleerror if this is an error condition)
6064:
6065: =cut
6066:
1.82 albertel 6067: sub scantron_parse_scanline {
1.423 albertel 6068: my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470 foxr 6069:
1.82 albertel 6070: my %record;
1.550 raeburn 6071: my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
6072: my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos); # Answers
1.422 foxr 6073: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # earlier stuff
1.278 albertel 6074: if (!($$scantron_config{'CODElocation'} eq 0 ||
6075: $$scantron_config{'CODElocation'} eq 'none')) {
6076: if ($$scantron_config{'CODElocation'} < 0 ||
6077: $$scantron_config{'CODElocation'} eq 'letter' ||
6078: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 6079: $record{'scantron.CODE'}=substr($data,
6080: $$scantron_config{'CODEstart'}-1,
1.83 albertel 6081: $$scantron_config{'CODElength'});
1.191 albertel 6082: if (&scan_data($scan_data,"$whichline.useCODE")) {
6083: $record{'scantron.useCODE'}=1;
6084: }
1.192 albertel 6085: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
6086: $record{'scantron.CODE_ignore_dup'}=1;
6087: }
1.82 albertel 6088: } else {
6089: #FIXME interpret first N questions
6090: }
6091: }
1.83 albertel 6092: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
6093: $$scantron_config{'IDlength'});
1.157 albertel 6094: $record{'scantron.PaperID'}=
6095: substr($data,$$scantron_config{'PaperID'}-1,
6096: $$scantron_config{'PaperIDlength'});
6097: $record{'scantron.FirstName'}=
6098: substr($data,$$scantron_config{'FirstName'}-1,
6099: $$scantron_config{'FirstNamelength'});
6100: $record{'scantron.LastName'}=
6101: substr($data,$$scantron_config{'LastName'}-1,
6102: $$scantron_config{'LastNamelength'});
1.423 albertel 6103: if ($just_header) { return \%record; }
1.194 albertel 6104:
1.82 albertel 6105: my @alphabet=('A'..'Z');
6106: my $questnum=0;
1.447 foxr 6107: my $ansnum =1; # Multiple 'answer lines'/question.
6108:
1.470 foxr 6109: chomp($questions); # Get rid of any trailing \n.
6110: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
6111: while (length($questions)) {
1.447 foxr 6112: my $answers_needed = $bubble_lines_per_response{$questnum};
1.503 raeburn 6113: my $answer_length = ($$scantron_config{'Qlength'} * $answers_needed)
6114: || 1;
6115: $questnum++;
6116: my $quest_id = $questnum;
6117: my $currentquest = substr($questions,0,$answer_length);
6118: $questions = substr($questions,$answer_length);
6119: if (length($currentquest) < $answer_length) { next; }
6120:
6121: if ($subdivided_bubble_lines{$questnum-1} =~ /,/) {
6122: my $subquestnum = 1;
6123: my $subquestions = $currentquest;
6124: my @subanswers_needed =
6125: split(/,/,$subdivided_bubble_lines{$questnum-1});
6126: foreach my $subans (@subanswers_needed) {
6127: my $subans_length =
6128: ($$scantron_config{'Qlength'} * $subans) || 1;
6129: my $currsubquest = substr($subquestions,0,$subans_length);
6130: $subquestions = substr($subquestions,$subans_length);
6131: $quest_id = "$questnum.$subquestnum";
6132: if (($$scantron_config{'Qon'} eq 'letter') ||
6133: ($$scantron_config{'Qon'} eq 'number')) {
6134: $ansnum = &scantron_validator_lettnum($ansnum,
6135: $questnum,$quest_id,$subans,$currsubquest,$whichline,
6136: \@alphabet,\%record,$scantron_config,$scan_data);
6137: } else {
6138: $ansnum = &scantron_validator_positional($ansnum,
6139: $questnum,$quest_id,$subans,$currsubquest,$whichline, \@alphabet,\%record,$scantron_config,$scan_data);
6140: }
6141: $subquestnum ++;
6142: }
6143: } else {
6144: if (($$scantron_config{'Qon'} eq 'letter') ||
6145: ($$scantron_config{'Qon'} eq 'number')) {
6146: $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
6147: $quest_id,$answers_needed,$currentquest,$whichline,
6148: \@alphabet,\%record,$scantron_config,$scan_data);
6149: } else {
6150: $ansnum = &scantron_validator_positional($ansnum,$questnum,
6151: $quest_id,$answers_needed,$currentquest,$whichline,
6152: \@alphabet,\%record,$scantron_config,$scan_data);
6153: }
6154: }
6155: }
6156: $record{'scantron.maxquest'}=$questnum;
6157: return \%record;
6158: }
1.447 foxr 6159:
1.503 raeburn 6160: sub scantron_validator_lettnum {
6161: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
6162: $alphabet,$record,$scantron_config,$scan_data) = @_;
6163:
6164: # Qon 'letter' implies for each slot in currquest we have:
6165: # ? or * for doubles, a letter in A-Z for a bubble, and
6166: # about anything else (esp. a value of Qoff) for missing
6167: # bubbles.
6168: #
6169: # Qon 'number' implies each slot gives a digit that indexes the
6170: # bubbles filled, or Qoff, or a non-number for unbubbled lines,
6171: # and * or ? for double bubbles on a single line.
6172: #
1.447 foxr 6173:
1.503 raeburn 6174: my $matchon;
6175: if ($$scantron_config{'Qon'} eq 'letter') {
6176: $matchon = '[A-Z]';
6177: } elsif ($$scantron_config{'Qon'} eq 'number') {
6178: $matchon = '\d';
6179: }
6180: my $occurrences = 0;
6181: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
6182: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 6183: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
6184: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
6185: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
6186: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 6187: my @singlelines = split('',$currquest);
6188: foreach my $entry (@singlelines) {
6189: $occurrences = &occurence_count($entry,$matchon);
6190: if ($occurrences > 1) {
6191: last;
6192: }
6193: }
6194: } else {
6195: $occurrences = &occurence_count($currquest,$matchon);
6196: }
6197: if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
6198: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6199: for (my $ans=0; $ans<$answers_needed; $ans++) {
6200: my $bubble = substr($currquest,$ans,1);
6201: if ($bubble =~ /$matchon/ ) {
6202: if ($$scantron_config{'Qon'} eq 'number') {
6203: if ($bubble == 0) {
6204: $bubble = 10;
6205: }
6206: $record->{"scantron.$ansnum.answer"} =
6207: $alphabet->[$bubble-1];
6208: } else {
6209: $record->{"scantron.$ansnum.answer"} = $bubble;
6210: }
6211: } else {
6212: $record->{"scantron.$ansnum.answer"}='';
6213: }
6214: $ansnum++;
6215: }
6216: } elsif (!defined($currquest)
6217: || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
6218: || (&occurence_count($currquest,$matchon) == 0)) {
6219: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6220: $record->{"scantron.$ansnum.answer"}='';
6221: $ansnum++;
6222: }
6223: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6224: push(@{$record->{'scantron.missingerror'}},$quest_id);
6225: }
6226: } else {
6227: if ($$scantron_config{'Qon'} eq 'number') {
6228: $currquest = &digits_to_letters($currquest);
6229: }
6230: for (my $ans=0; $ans<$answers_needed; $ans++) {
6231: my $bubble = substr($currquest,$ans,1);
6232: $record->{"scantron.$ansnum.answer"} = $bubble;
6233: $ansnum++;
6234: }
6235: }
6236: return $ansnum;
6237: }
1.447 foxr 6238:
1.503 raeburn 6239: sub scantron_validator_positional {
6240: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
6241: $whichline,$alphabet,$record,$scantron_config,$scan_data) = @_;
1.447 foxr 6242:
1.503 raeburn 6243: # Otherwise there's a positional notation;
6244: # each bubble line requires Qlength items, and there are filled in
6245: # bubbles for each case where there 'Qon' characters.
6246: #
1.447 foxr 6247:
1.503 raeburn 6248: my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447 foxr 6249:
1.503 raeburn 6250: # If the split only gives us one element.. the full length of the
6251: # answer string, no bubbles are filled in:
1.447 foxr 6252:
1.507 raeburn 6253: if ($answers_needed eq '') {
6254: return;
6255: }
6256:
1.503 raeburn 6257: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
6258: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6259: $record->{"scantron.$ansnum.answer"}='';
6260: $ansnum++;
6261: }
6262: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6263: push(@{$record->{"scantron.missingerror"}},$quest_id);
6264: }
6265: } elsif (scalar(@array) == 2) {
6266: my $location = length($array[0]);
6267: my $line_num = int($location / $$scantron_config{'Qlength'});
6268: my $bubble = $alphabet->[$location % $$scantron_config{'Qlength'}];
6269: for (my $ans=0; $ans<$answers_needed; $ans++) {
6270: if ($ans eq $line_num) {
6271: $record->{"scantron.$ansnum.answer"} = $bubble;
6272: } else {
6273: $record->{"scantron.$ansnum.answer"} = ' ';
6274: }
6275: $ansnum++;
6276: }
6277: } else {
6278: # If there's more than one instance of a bubble character
6279: # That's a double bubble; with positional notation we can
6280: # record all the bubbles filled in as well as the
6281: # fact this response consists of multiple bubbles.
6282: #
6283: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
6284: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 6285: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
6286: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
6287: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
6288: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 6289: my $doubleerror = 0;
6290: while (($currquest >= $$scantron_config{'Qlength'}) &&
6291: (!$doubleerror)) {
6292: my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
6293: $currquest = substr($currquest,$$scantron_config{'Qlength'});
6294: my @currarray = split($$scantron_config{'Qon'},$currline,-1);
6295: if (length(@currarray) > 2) {
6296: $doubleerror = 1;
6297: }
6298: }
6299: if ($doubleerror) {
6300: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6301: }
6302: } else {
6303: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6304: }
6305: my $item = $ansnum;
6306: for (my $ans=0; $ans<$answers_needed; $ans++) {
6307: $record->{"scantron.$item.answer"} = '';
6308: $item ++;
6309: }
1.447 foxr 6310:
1.503 raeburn 6311: my @ans=@array;
6312: my $i=0;
6313: my $increment = 0;
6314: while ($#ans) {
6315: $i+=length($ans[0]) + $increment;
6316: my $line = int($i/$$scantron_config{'Qlength'} + $ansnum);
6317: my $bubble = $i%$$scantron_config{'Qlength'};
6318: $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
6319: shift(@ans);
6320: $increment = 1;
6321: }
6322: $ansnum += $answers_needed;
1.82 albertel 6323: }
1.503 raeburn 6324: return $ansnum;
1.82 albertel 6325: }
6326:
1.423 albertel 6327: =pod
6328:
6329: =item scantron_add_delay
6330:
6331: Adds an error message that occurred during the grading phase to a
6332: queue of messages to be shown after grading pass is complete
6333:
6334: Arguments:
1.424 albertel 6335: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 6336: $scanline - the scanline that caused the error
6337: $errormesage - the error message
6338: $errorcode - a numeric code for the error
6339:
6340: Side Effects:
1.424 albertel 6341: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 6342:
6343: =cut
6344:
1.82 albertel 6345: sub scantron_add_delay {
1.140 albertel 6346: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
6347: push(@$delayqueue,
6348: {'line' => $scanline, 'emsg' => $errormessage,
6349: 'ecode' => $errorcode }
6350: );
1.82 albertel 6351: }
6352:
1.423 albertel 6353: =pod
6354:
6355: =item scantron_find_student
6356:
1.424 albertel 6357: Finds the username for the current scanline
6358:
6359: Arguments:
6360: $scantron_record - hash result from scantron_parse_scanline
6361: $scan_data - hash of correction information
6362: (see &scantron_getfile() form more information)
6363: $idmap - hash from &username_to_idmap()
6364: $line - number of current scanline
6365:
6366: Returns:
6367: Either 'username:domain' or undef if unknown
6368:
1.423 albertel 6369: =cut
6370:
1.82 albertel 6371: sub scantron_find_student {
1.157 albertel 6372: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 6373: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 6374: if ($scanID =~ /^\s*$/) {
6375: return &scan_data($scan_data,"$line.user");
6376: }
1.83 albertel 6377: foreach my $id (keys(%$idmap)) {
1.157 albertel 6378: if (lc($id) eq lc($scanID)) {
6379: return $$idmap{$id};
6380: }
1.83 albertel 6381: }
6382: return undef;
6383: }
6384:
1.423 albertel 6385: =pod
6386:
6387: =item scantron_filter
6388:
1.424 albertel 6389: Filter sub for lonnavmaps, filters out hidden resources if ignore
6390: hidden resources was selected
6391:
1.423 albertel 6392: =cut
6393:
1.83 albertel 6394: sub scantron_filter {
6395: my ($curres)=@_;
1.331 albertel 6396:
6397: if (ref($curres) && $curres->is_problem()) {
6398: # if the user has asked to not have either hidden
6399: # or 'randomout' controlled resources to be graded
6400: # don't include them
6401: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6402: && $curres->randomout) {
6403: return 0;
6404: }
1.83 albertel 6405: return 1;
6406: }
6407: return 0;
1.82 albertel 6408: }
6409:
1.423 albertel 6410: =pod
6411:
6412: =item scantron_process_corrections
6413:
1.424 albertel 6414: Gets correction information out of submitted form data and corrects
6415: the scanline
6416:
1.423 albertel 6417: =cut
6418:
1.157 albertel 6419: sub scantron_process_corrections {
6420: my ($r) = @_;
1.257 albertel 6421: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6422: my ($scanlines,$scan_data)=&scantron_getfile();
6423: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 6424: my $which=$env{'form.scantron_line'};
1.200 albertel 6425: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 6426: my ($skip,$err,$errmsg);
1.257 albertel 6427: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 6428: $skip=1;
1.257 albertel 6429: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
6430: my $newstudent=$env{'form.scantron_username'}.':'.
6431: $env{'form.scantron_domain'};
1.157 albertel 6432: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
6433: ($line,$err,$errmsg)=
6434: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
6435: 'ID',{'newid'=>$newid,
1.257 albertel 6436: 'username'=>$env{'form.scantron_username'},
6437: 'domain'=>$env{'form.scantron_domain'}});
6438: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
6439: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 6440: my $newCODE;
1.192 albertel 6441: my %args;
1.190 albertel 6442: if ($resolution eq 'use_unfound') {
1.191 albertel 6443: $newCODE='use_unfound';
1.190 albertel 6444: } elsif ($resolution eq 'use_found') {
1.257 albertel 6445: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 6446: } elsif ($resolution eq 'use_typed') {
1.257 albertel 6447: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 6448: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 6449: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 6450: }
1.257 albertel 6451: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 6452: $args{'CODE_ignore_dup'}=1;
6453: }
6454: $args{'CODE'}=$newCODE;
1.186 albertel 6455: ($line,$err,$errmsg)=
6456: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 6457: 'CODE',\%args);
1.257 albertel 6458: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
6459: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 6460: ($line,$err,$errmsg)=
6461: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
6462: $which,'answer',
6463: { 'question'=>$question,
1.503 raeburn 6464: 'response'=>$env{"form.scantron_correct_Q_$question"},
6465: 'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157 albertel 6466: if ($err) { last; }
6467: }
6468: }
6469: if ($err) {
1.398 albertel 6470: $r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157 albertel 6471: } else {
1.200 albertel 6472: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 6473: &scantron_putfile($scanlines,$scan_data);
6474: }
6475: }
6476:
1.423 albertel 6477: =pod
6478:
6479: =item reset_skipping_status
6480:
1.424 albertel 6481: Forgets the current set of remember skipped scanlines (and thus
6482: reverts back to considering all lines in the
6483: scantron_skipped_<filename> file)
6484:
1.423 albertel 6485: =cut
6486:
1.200 albertel 6487: sub reset_skipping_status {
6488: my ($scanlines,$scan_data)=&scantron_getfile();
6489: &scan_data($scan_data,'remember_skipping',undef,1);
6490: &scantron_putfile(undef,$scan_data);
6491: }
6492:
1.423 albertel 6493: =pod
6494:
6495: =item start_skipping
6496:
1.424 albertel 6497: Marks a scanline to be skipped.
6498:
1.423 albertel 6499: =cut
6500:
1.376 albertel 6501: sub start_skipping {
1.200 albertel 6502: my ($scan_data,$i)=@_;
6503: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6504: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
6505: $remembered{$i}=2;
6506: } else {
6507: $remembered{$i}=1;
6508: }
1.200 albertel 6509: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
6510: }
6511:
1.423 albertel 6512: =pod
6513:
6514: =item should_be_skipped
6515:
1.424 albertel 6516: Checks whether a scanline should be skipped.
6517:
1.423 albertel 6518: =cut
6519:
1.200 albertel 6520: sub should_be_skipped {
1.376 albertel 6521: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 6522: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 6523: # not redoing old skips
1.376 albertel 6524: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 6525: return 0;
6526: }
6527: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6528:
6529: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
6530: return 0;
6531: }
1.200 albertel 6532: return 1;
6533: }
6534:
1.423 albertel 6535: =pod
6536:
6537: =item remember_current_skipped
6538:
1.424 albertel 6539: Discovers what scanlines are in the scantron_skipped_<filename>
6540: file and remembers them into scan_data for later use.
6541:
1.423 albertel 6542: =cut
6543:
1.200 albertel 6544: sub remember_current_skipped {
6545: my ($scanlines,$scan_data)=&scantron_getfile();
6546: my %to_remember;
6547: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6548: if ($scanlines->{'skipped'}[$i]) {
6549: $to_remember{$i}=1;
6550: }
6551: }
1.376 albertel 6552:
1.200 albertel 6553: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
6554: &scantron_putfile(undef,$scan_data);
6555: }
6556:
1.423 albertel 6557: =pod
6558:
6559: =item check_for_error
6560:
1.424 albertel 6561: Checks if there was an error when attempting to remove a specific
1.596.2.6 raeburn 6562: scantron_.. bubblesheet data file. Prints out an error if
1.424 albertel 6563: something went wrong.
6564:
1.423 albertel 6565: =cut
6566:
1.200 albertel 6567: sub check_for_error {
6568: my ($r,$result)=@_;
6569: if ($result ne 'ok' && $result ne 'not_found' ) {
1.492 albertel 6570: $r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200 albertel 6571: }
6572: }
1.157 albertel 6573:
1.423 albertel 6574: =pod
6575:
6576: =item scantron_warning_screen
6577:
1.424 albertel 6578: Interstitial screen to make sure the operator has selected the
6579: correct options before we start the validation phase.
6580:
1.423 albertel 6581: =cut
6582:
1.203 albertel 6583: sub scantron_warning_screen {
6584: my ($button_text)=@_;
1.257 albertel 6585: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 6586: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 6587: my $CODElist;
1.284 albertel 6588: if ($scantron_config{'CODElocation'} &&
6589: $scantron_config{'CODEstart'} &&
6590: $scantron_config{'CODElength'}) {
6591: $CODElist=$env{'form.scantron_CODElist'};
1.398 albertel 6592: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284 albertel 6593: $CODElist=
1.492 albertel 6594: '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373 albertel 6595: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 6596: }
1.596.2.12.2. (raeburn 6597:): my $lastbubblepoints;
6598:): if ($env{'form.scantron_lastbubblepoints'} ne '') {
6599:): $lastbubblepoints =
6600:): '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
6601:): $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
6602:): }
1.492 albertel 6603: return ('
1.203 albertel 6604: <p>
1.492 albertel 6605: <span class="LC_warning">
6606: '.&mt('Please double check the information below before clicking on \'[_1]\'',&mt($button_text)).'</span>
1.203 albertel 6607: </p>
6608: <table>
1.492 albertel 6609: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
6610: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
1.596.2.12.2. (raeburn 6611:): '.$CODElist.$lastbubblepoints.'
1.203 albertel 6612: </table>
6613: <br />
1.492 albertel 6614: <p> '.&mt('If this information is correct, please click on \'[_1]\'.',&mt($button_text)).'</p>
6615: <p> '.&mt('If something is incorrect, please click the \'Grading Menu\' button to start over.').'</p>
1.203 albertel 6616:
6617: <br />
1.492 albertel 6618: ');
1.203 albertel 6619: }
6620:
1.423 albertel 6621: =pod
6622:
6623: =item scantron_do_warning
6624:
1.424 albertel 6625: Check if the operator has picked something for all required
6626: fields. Error out if something is missing.
6627:
1.423 albertel 6628: =cut
6629:
1.203 albertel 6630: sub scantron_do_warning {
6631: my ($r)=@_;
1.324 albertel 6632: my ($symb)=&get_symb($r);
1.203 albertel 6633: if (!$symb) {return '';}
1.324 albertel 6634: my $default_form_data=&defaultFormData($symb);
1.203 albertel 6635: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 6636: if ( $env{'form.selectpage'} eq '' ||
6637: $env{'form.scantron_selectfile'} eq '' ||
6638: $env{'form.scantron_format'} eq '' ) {
1.596.2.4 raeburn 6639: $r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
1.257 albertel 6640: if ( $env{'form.selectpage'} eq '') {
1.492 albertel 6641: $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237 albertel 6642: }
1.257 albertel 6643: if ( $env{'form.scantron_selectfile'} eq '') {
1.596.2.4 raeburn 6644: $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 6645: }
1.257 albertel 6646: if ( $env{'form.scantron_format'} eq '') {
1.596.2.5 raeburn 6647: $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 6648: }
6649: } else {
1.265 www 6650: my $warning=&scantron_warning_screen('Grading: Validate Records');
1.596.2.12.2. (raeburn 6651:): my $bubbledbyhand=&hand_bubble_option();
1.492 albertel 6652: $r->print('
1.596.2.12.2. (raeburn 6653:): '.$warning.$bubbledbyhand.'
1.492 albertel 6654: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203 albertel 6655: <input type="hidden" name="command" value="scantron_validate" />
1.492 albertel 6656: ');
1.237 albertel 6657: }
1.352 albertel 6658: $r->print("</form><br />".&show_grading_menu_form($symb));
1.203 albertel 6659: return '';
6660: }
6661:
1.423 albertel 6662: =pod
6663:
6664: =item scantron_form_start
6665:
1.424 albertel 6666: html hidden input for remembering all selected grading options
6667:
1.423 albertel 6668: =cut
6669:
1.203 albertel 6670: sub scantron_form_start {
6671: my ($max_bubble)=@_;
6672: my $result= <<SCANTRONFORM;
6673: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 6674: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
6675: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
6676: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 6677: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 6678: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
6679: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
6680: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
6681: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 6682: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 6683: SCANTRONFORM
1.447 foxr 6684:
6685: my $line = 0;
6686: while (defined($env{"form.scantron.bubblelines.$line"})) {
6687: my $chunk =
6688: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 6689: $chunk .=
6690: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503 raeburn 6691: $chunk .=
6692: '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504 raeburn 6693: $chunk .=
6694: '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.447 foxr 6695: $result .= $chunk;
6696: $line++;
6697: }
1.203 albertel 6698: return $result;
6699: }
6700:
1.423 albertel 6701: =pod
6702:
6703: =item scantron_validate_file
6704:
1.596.2.6 raeburn 6705: Dispatch routine for doing validation of a bubblesheet data file.
1.424 albertel 6706:
6707: Also processes any necessary information resets that need to
6708: occur before validation begins (ignore previous corrections,
6709: restarting the skipped records processing)
6710:
1.423 albertel 6711: =cut
6712:
1.157 albertel 6713: sub scantron_validate_file {
6714: my ($r) = @_;
1.324 albertel 6715: my ($symb)=&get_symb($r);
1.157 albertel 6716: if (!$symb) {return '';}
1.324 albertel 6717: my $default_form_data=&defaultFormData($symb);
1.200 albertel 6718:
6719: # do the detection of only doing skipped records first befroe we delete
1.424 albertel 6720: # them when doing the corrections reset
1.257 albertel 6721: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 6722: &reset_skipping_status();
6723: }
1.257 albertel 6724: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 6725: &remember_current_skipped();
1.257 albertel 6726: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 6727: }
6728:
1.257 albertel 6729: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 6730: &check_for_error($r,&scantron_remove_file('corrected'));
6731: &check_for_error($r,&scantron_remove_file('skipped'));
6732: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 6733: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 6734: }
1.200 albertel 6735:
1.257 albertel 6736: if ($env{'form.scantron_corrections'}) {
1.157 albertel 6737: &scantron_process_corrections($r);
6738: }
1.503 raeburn 6739: $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157 albertel 6740: #get the student pick code ready
6741: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.582 raeburn 6742: my $nav_error;
1.596.2.12.2. (raeburn 6743:): my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
6744:): my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 6745: if ($nav_error) {
6746: $r->print(&navmap_errormsg());
6747: return '';
6748: }
1.203 albertel 6749: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.596.2.12.2. (raeburn 6750:): if ($env{'form.scantron_lastbubblepoints'} ne '') {
6751:): $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
6752:): }
1.157 albertel 6753: $r->print($result);
6754:
1.334 albertel 6755: my @validate_phases=( 'sequence',
6756: 'ID',
1.157 albertel 6757: 'CODE',
6758: 'doublebubble',
6759: 'missingbubbles');
1.257 albertel 6760: if (!$env{'form.validatepass'}) {
6761: $env{'form.validatepass'} = 0;
1.157 albertel 6762: }
1.257 albertel 6763: my $currentphase=$env{'form.validatepass'};
1.157 albertel 6764:
1.448 foxr 6765:
1.157 albertel 6766: my $stop=0;
6767: while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503 raeburn 6768: $r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157 albertel 6769: $r->rflush();
6770: my $which="scantron_validate_".$validate_phases[$currentphase];
6771: {
6772: no strict 'refs';
6773: ($stop,$currentphase)=&$which($r,$currentphase);
6774: }
6775: }
6776: if (!$stop) {
1.203 albertel 6777: my $warning=&scantron_warning_screen('Start Grading');
1.542 raeburn 6778: $r->print(&mt('Validation process complete.').'<br />'.
6779: $warning.
6780: &mt('Perform verification for each student after storage of submissions?').
6781: ' <span class="LC_nobreak"><label>'.
6782: '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
6783: (' 'x3).'<label>'.
6784: '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
6785: '</label></span><br />'.
6786: &mt('Grading will take longer if you use verification.').'<br />'.
1.572 www 6787: &mt("Alternatively, the 'Review bubblesheet data' utility (see grading menu) can be used for all students after grading is complete.").'<br /><br />'.
1.542 raeburn 6788: '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
6789: '<input type="hidden" name="command" value="scantron_process" />'."\n");
1.157 albertel 6790: } else {
6791: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
6792: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
6793: }
6794: if ($stop) {
1.334 albertel 6795: if ($validate_phases[$currentphase] eq 'sequence') {
1.539 riegler 6796: $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' → " />');
1.492 albertel 6797: $r->print(' '.&mt('this error').' <br />');
1.334 albertel 6798:
1.492 albertel 6799: $r->print(" <p>".&mt("Or click the 'Grading Menu' button to start over.")."</p>");
1.334 albertel 6800: } else {
1.503 raeburn 6801: if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
1.539 riegler 6802: $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' →" onclick="javascript:verify_bubble_radio(this.form)" />');
1.503 raeburn 6803: } else {
1.539 riegler 6804: $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' →" />');
1.503 raeburn 6805: }
1.492 albertel 6806: $r->print(' '.&mt('using corrected info').' <br />');
6807: $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
6808: $r->print(" ".&mt("this scanline saving it for later."));
1.334 albertel 6809: }
1.157 albertel 6810: }
1.352 albertel 6811: $r->print(" </form><br />".&show_grading_menu_form($symb));
1.157 albertel 6812: return '';
6813: }
6814:
1.423 albertel 6815:
6816: =pod
6817:
6818: =item scantron_remove_file
6819:
1.596.2.6 raeburn 6820: Removes the requested bubblesheet data file, makes sure that
1.424 albertel 6821: scantron_original_<filename> is never removed
6822:
6823:
1.423 albertel 6824: =cut
6825:
1.200 albertel 6826: sub scantron_remove_file {
1.192 albertel 6827: my ($which)=@_;
1.257 albertel 6828: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6829: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6830: my $file='scantron_';
1.200 albertel 6831: if ($which eq 'corrected' || $which eq 'skipped') {
6832: $file.=$which.'_';
1.192 albertel 6833: } else {
6834: return 'refused';
6835: }
1.257 albertel 6836: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 6837: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
6838: }
6839:
1.423 albertel 6840:
6841: =pod
6842:
6843: =item scantron_remove_scan_data
6844:
1.596.2.6 raeburn 6845: Removes all scan_data correction for the requested bubblesheet
1.424 albertel 6846: data file. (In the case that both the are doing skipped records we need
6847: to remember the old skipped lines for the time being so that element
6848: persists for a while.)
6849:
1.423 albertel 6850: =cut
6851:
1.200 albertel 6852: sub scantron_remove_scan_data {
1.257 albertel 6853: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6854: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6855: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
6856: my @todelete;
1.257 albertel 6857: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 6858: foreach my $key (@keys) {
6859: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 6860: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 6861: $key=~/remember_skipping/) {
6862: next;
6863: }
1.192 albertel 6864: push(@todelete,$key);
6865: }
6866: }
1.200 albertel 6867: my $result;
1.192 albertel 6868: if (@todelete) {
1.491 albertel 6869: $result = &Apache::lonnet::del('nohist_scantrondata',
6870: \@todelete,$cdom,$cname);
6871: } else {
6872: $result = 'ok';
1.192 albertel 6873: }
6874: return $result;
6875: }
6876:
1.423 albertel 6877:
6878: =pod
6879:
6880: =item scantron_getfile
6881:
1.596.2.6 raeburn 6882: Fetches the requested bubblesheet data file (all 3 versions), and
1.424 albertel 6883: the scan_data hash
6884:
6885: Arguments:
6886: None
6887:
6888: Returns:
6889: 2 hash references
6890:
6891: - first one has
6892: orig -
6893: corrected -
6894: skipped - each of which points to an array ref of the specified
6895: file broken up into individual lines
6896: count - number of scanlines
6897:
6898: - second is the scan_data hash possible keys are
1.425 albertel 6899: ($number refers to scanline numbered $number and thus the key affects
6900: only that scanline
6901: $bubline refers to the specific bubble line element and the aspects
6902: refers to that specific bubble line element)
6903:
6904: $number.user - username:domain to use
6905: $number.CODE_ignore_dup
6906: - ignore the duplicate CODE error
6907: $number.useCODE
6908: - use the CODE in the scanline as is
6909: $number.no_bubble.$bubline
6910: - it is valid that there is no bubbled in bubble
6911: at $number $bubline
6912: remember_skipping
6913: - a frozen hash containing keys of $number and values
6914: of either
6915: 1 - we are on a 'do skipped records pass' and plan
6916: on processing this line
6917: 2 - we are on a 'do skipped records pass' and this
6918: scanline has been marked to skip yet again
1.424 albertel 6919:
1.423 albertel 6920: =cut
6921:
1.157 albertel 6922: sub scantron_getfile {
1.200 albertel 6923: #FIXME really would prefer a scantron directory
1.257 albertel 6924: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6925: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 6926: my $lines;
6927: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6928: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 6929: my %scanlines;
6930: $scanlines{'orig'}=[(split("\n",$lines,-1))];
6931: my $temp=$scanlines{'orig'};
6932: $scanlines{'count'}=$#$temp;
6933:
6934: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6935: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 6936: if ($lines eq '-1') {
6937: $scanlines{'corrected'}=[];
6938: } else {
6939: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
6940: }
6941: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6942: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 6943: if ($lines eq '-1') {
6944: $scanlines{'skipped'}=[];
6945: } else {
6946: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
6947: }
1.175 albertel 6948: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 6949: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
6950: my %scan_data = @tmp;
6951: return (\%scanlines,\%scan_data);
6952: }
6953:
1.423 albertel 6954: =pod
6955:
6956: =item lonnet_putfile
6957:
1.424 albertel 6958: Wrapper routine to call &Apache::lonnet::finishuserfileupload
6959:
6960: Arguments:
6961: $contents - data to store
6962: $filename - filename to store $contents into
6963:
6964: Returns:
6965: result value from &Apache::lonnet::finishuserfileupload
6966:
1.423 albertel 6967: =cut
6968:
1.157 albertel 6969: sub lonnet_putfile {
6970: my ($contents,$filename)=@_;
1.257 albertel 6971: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
6972: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
6973: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 6974: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 6975:
6976: }
6977:
1.423 albertel 6978: =pod
6979:
6980: =item scantron_putfile
6981:
1.596.2.6 raeburn 6982: Stores the current version of the bubblesheet data files, and the
1.424 albertel 6983: scan_data hash. (Does not modify the original version only the
6984: corrected and skipped versions.
6985:
6986: Arguments:
6987: $scanlines - hash ref that looks like the first return value from
6988: &scantron_getfile()
6989: $scan_data - hash ref that looks like the second return value from
6990: &scantron_getfile()
6991:
1.423 albertel 6992: =cut
6993:
1.157 albertel 6994: sub scantron_putfile {
6995: my ($scanlines,$scan_data) = @_;
1.200 albertel 6996: #FIXME really would prefer a scantron directory
1.257 albertel 6997: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6998: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 6999: if ($scanlines) {
7000: my $prefix='scantron_';
1.157 albertel 7001: # no need to update orig, shouldn't change
7002: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 7003: # $env{'form.scantron_selectfile'});
1.200 albertel 7004: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
7005: $prefix.'corrected_'.
1.257 albertel 7006: $env{'form.scantron_selectfile'});
1.200 albertel 7007: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
7008: $prefix.'skipped_'.
1.257 albertel 7009: $env{'form.scantron_selectfile'});
1.200 albertel 7010: }
1.175 albertel 7011: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 7012: }
7013:
1.423 albertel 7014: =pod
7015:
7016: =item scantron_get_line
7017:
1.424 albertel 7018: Returns the correct version of the scanline
7019:
7020: Arguments:
7021: $scanlines - hash ref that looks like the first return value from
7022: &scantron_getfile()
7023: $scan_data - hash ref that looks like the second return value from
7024: &scantron_getfile()
7025: $i - number of the requested line (starts at 0)
7026:
7027: Returns:
7028: A scanline, (either the original or the corrected one if it
7029: exists), or undef if the requested scanline should be
7030: skipped. (Either because it's an skipped scanline, or it's an
7031: unskipped scanline and we are not doing a 'do skipped scanlines'
7032: pass.
7033:
1.423 albertel 7034: =cut
7035:
1.157 albertel 7036: sub scantron_get_line {
1.200 albertel 7037: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 7038: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
7039: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 7040: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
7041: return $scanlines->{'orig'}[$i];
7042: }
7043:
1.423 albertel 7044: =pod
7045:
7046: =item scantron_todo_count
7047:
1.424 albertel 7048: Counts the number of scanlines that need processing.
7049:
7050: Arguments:
7051: $scanlines - hash ref that looks like the first return value from
7052: &scantron_getfile()
7053: $scan_data - hash ref that looks like the second return value from
7054: &scantron_getfile()
7055:
7056: Returns:
7057: $count - number of scanlines to process
7058:
1.423 albertel 7059: =cut
7060:
1.200 albertel 7061: sub get_todo_count {
7062: my ($scanlines,$scan_data)=@_;
7063: my $count=0;
7064: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
7065: my $line=&scantron_get_line($scanlines,$scan_data,$i);
7066: if ($line=~/^[\s\cz]*$/) { next; }
7067: $count++;
7068: }
7069: return $count;
7070: }
7071:
1.423 albertel 7072: =pod
7073:
7074: =item scantron_put_line
7075:
1.596.2.6 raeburn 7076: Updates the 'corrected' or 'skipped' versions of the bubblesheet
1.424 albertel 7077: data file.
7078:
7079: Arguments:
7080: $scanlines - hash ref that looks like the first return value from
7081: &scantron_getfile()
7082: $scan_data - hash ref that looks like the second return value from
7083: &scantron_getfile()
7084: $i - line number to update
7085: $newline - contents of the updated scanline
7086: $skip - if true make the line for skipping and update the
7087: 'skipped' file
7088:
1.423 albertel 7089: =cut
7090:
1.157 albertel 7091: sub scantron_put_line {
1.200 albertel 7092: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 7093: if ($skip) {
7094: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 7095: &start_skipping($scan_data,$i);
1.157 albertel 7096: return;
7097: }
7098: $scanlines->{'corrected'}[$i]=$newline;
7099: }
7100:
1.423 albertel 7101: =pod
7102:
7103: =item scantron_clear_skip
7104:
1.424 albertel 7105: Remove a line from the 'skipped' file
7106:
7107: Arguments:
7108: $scanlines - hash ref that looks like the first return value from
7109: &scantron_getfile()
7110: $scan_data - hash ref that looks like the second return value from
7111: &scantron_getfile()
7112: $i - line number to update
7113:
1.423 albertel 7114: =cut
7115:
1.376 albertel 7116: sub scantron_clear_skip {
7117: my ($scanlines,$scan_data,$i)=@_;
7118: if (exists($scanlines->{'skipped'}[$i])) {
7119: undef($scanlines->{'skipped'}[$i]);
7120: return 1;
7121: }
7122: return 0;
7123: }
7124:
1.423 albertel 7125: =pod
7126:
7127: =item scantron_filter_not_exam
7128:
1.424 albertel 7129: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
7130: filter out resources that are not marked as 'exam' mode
7131:
1.423 albertel 7132: =cut
7133:
1.334 albertel 7134: sub scantron_filter_not_exam {
7135: my ($curres)=@_;
7136:
7137: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
7138: # if the user has asked to not have either hidden
7139: # or 'randomout' controlled resources to be graded
7140: # don't include them
7141: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
7142: && $curres->randomout) {
7143: return 0;
7144: }
7145: return 1;
7146: }
7147: return 0;
7148: }
7149:
1.423 albertel 7150: =pod
7151:
7152: =item scantron_validate_sequence
7153:
1.424 albertel 7154: Validates the selected sequence, checking for resource that are
7155: not set to exam mode.
7156:
1.423 albertel 7157: =cut
7158:
1.334 albertel 7159: sub scantron_validate_sequence {
7160: my ($r,$currentphase) = @_;
7161:
7162: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7163: unless (ref($navmap)) {
7164: $r->print(&navmap_errormsg());
7165: return (1,$currentphase);
7166: }
1.334 albertel 7167: my (undef,undef,$sequence)=
7168: &Apache::lonnet::decode_symb($env{'form.selectpage'});
7169:
7170: my $map=$navmap->getResourceByUrl($sequence);
7171:
7172: $r->print('<input type="hidden" name="validate_sequence_exam"
7173: value="ignore" />');
7174: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
7175: my @resources=
7176: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
7177: if (@resources) {
1.596.2.12.2. 0(raebur 7178:2): $r->print('<p class="LC_warning">'
7179:2): .&mt('Some resources in the sequence currently are not set to'
7180:2): .' exam mode. Grading these resources currently may not'
7181:2): .' work correctly.')
7182:2): .'</p>'
7183:2): );
1.334 albertel 7184: return (1,$currentphase);
7185: }
7186: }
7187:
7188: return (0,$currentphase+1);
7189: }
7190:
1.423 albertel 7191:
7192:
1.157 albertel 7193: sub scantron_validate_ID {
7194: my ($r,$currentphase) = @_;
7195:
7196: #get student info
7197: my $classlist=&Apache::loncoursedata::get_classlist();
7198: my %idmap=&username_to_idmap($classlist);
7199:
7200: #get scantron line setup
1.257 albertel 7201: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7202: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7203:
7204: my $nav_error;
1.596.2.12.2. (raeburn 7205:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
1.582 raeburn 7206: if ($nav_error) {
7207: $r->print(&navmap_errormsg());
7208: return(1,$currentphase);
7209: }
1.157 albertel 7210:
7211: my %found=('ids'=>{},'usernames'=>{});
7212: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7213: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7214: if ($line=~/^[\s\cz]*$/) { next; }
7215: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7216: $scan_data);
7217: my $id=$$scan_record{'scantron.ID'};
7218: my $found;
7219: foreach my $checkid (keys(%idmap)) {
7220: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
7221: }
7222: if ($found) {
7223: my $username=$idmap{$found};
7224: if ($found{'ids'}{$found}) {
7225: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7226: $line,'duplicateID',$found);
1.194 albertel 7227: return(1,$currentphase);
1.157 albertel 7228: } elsif ($found{'usernames'}{$username}) {
7229: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7230: $line,'duplicateID',$username);
1.194 albertel 7231: return(1,$currentphase);
1.157 albertel 7232: }
1.186 albertel 7233: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 7234: $found{'ids'}{$found}++;
7235: $found{'usernames'}{$username}++;
7236: } else {
7237: if ($id =~ /^\s*$/) {
1.158 albertel 7238: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 7239: if (defined($username) && $found{'usernames'}{$username}) {
7240: &scantron_get_correction($r,$i,$scan_record,
7241: \%scantron_config,
7242: $line,'duplicateID',$username);
1.194 albertel 7243: return(1,$currentphase);
1.157 albertel 7244: } elsif (!defined($username)) {
7245: &scantron_get_correction($r,$i,$scan_record,
7246: \%scantron_config,
7247: $line,'incorrectID');
1.194 albertel 7248: return(1,$currentphase);
1.157 albertel 7249: }
7250: $found{'usernames'}{$username}++;
7251: } else {
7252: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7253: $line,'incorrectID');
1.194 albertel 7254: return(1,$currentphase);
1.157 albertel 7255: }
7256: }
7257: }
7258:
7259: return (0,$currentphase+1);
7260: }
7261:
1.423 albertel 7262:
1.157 albertel 7263: sub scantron_get_correction {
7264: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
1.454 banghart 7265: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 7266: #to show both the current line and the previous one and allow skipping
7267: #the previous one or the current one
7268:
1.333 albertel 7269: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.596.2.6 raeburn 7270: $r->print(
7271: '<p class="LC_warning">'
7272: .&mt('An error was detected ([_1]) for PaperID [_2]',
7273: "<b>$error</b>",
7274: '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
7275: ."</p> \n");
1.157 albertel 7276: } else {
1.596.2.6 raeburn 7277: $r->print(
7278: '<p class="LC_warning">'
7279: .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
7280: "<b>$error</b>", $i, "<pre>$line</pre>")
7281: ."</p> \n");
7282: }
7283: my $message =
7284: '<p>'
7285: .&mt('The ID on the form is [_1]',
7286: "<tt>$$scan_record{'scantron.ID'}</tt>")
7287: .'<br />'
1.596.2.12 raeburn 7288: .&mt('The name on the paper is [_1], [_2]',
1.596.2.6 raeburn 7289: $$scan_record{'scantron.LastName'},
7290: $$scan_record{'scantron.FirstName'})
7291: .'</p>';
1.242 albertel 7292:
1.157 albertel 7293: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
7294: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503 raeburn 7295: # Array populated for doublebubble or
7296: my @lines_to_correct; # missingbubble errors to build javascript
7297: # to validate radio button checking
7298:
1.157 albertel 7299: if ($error =~ /ID$/) {
1.186 albertel 7300: if ($error eq 'incorrectID') {
1.596.2.6 raeburn 7301: $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
1.492 albertel 7302: "</p>\n");
1.157 albertel 7303: } elsif ($error eq 'duplicateID') {
1.596.2.6 raeburn 7304: $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 7305: }
1.242 albertel 7306: $r->print($message);
1.492 albertel 7307: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157 albertel 7308: $r->print("\n<ul><li> ");
7309: #FIXME it would be nice if this sent back the user ID and
7310: #could do partial userID matches
7311: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
7312: 'scantron_username','scantron_domain'));
7313: $r->print(": <input type='text' name='scantron_username' value='' />");
7314: $r->print("\n@".
1.257 albertel 7315: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 7316:
7317: $r->print('</li>');
1.186 albertel 7318: } elsif ($error =~ /CODE$/) {
7319: if ($error eq 'incorrectCODE') {
1.596.2.6 raeburn 7320: $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186 albertel 7321: } elsif ($error eq 'duplicateCODE') {
1.596.2.6 raeburn 7322: $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 7323: }
1.596.2.6 raeburn 7324: $r->print("<p>".&mt('The CODE on the form is [_1]',
7325: "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
7326: ."</p>\n");
1.242 albertel 7327: $r->print($message);
1.596.2.6 raeburn 7328: $r->print("<p>".&mt("How should I handle this?")."</p>\n");
1.187 albertel 7329: $r->print("\n<br /> ");
1.194 albertel 7330: my $i=0;
1.273 albertel 7331: if ($error eq 'incorrectCODE'
7332: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 7333: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 7334: if ($closest > 0) {
7335: foreach my $testcode (@{$closest}) {
7336: my $checked='';
1.569 bisitz 7337: if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7338: $r->print("
7339: <label>
1.569 bisitz 7340: <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
1.492 albertel 7341: ".&mt("Use the similar CODE [_1] instead.",
7342: "<b><tt>".$testcode."</tt></b>")."
7343: </label>
7344: <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278 albertel 7345: $r->print("\n<br />");
7346: $i++;
7347: }
1.194 albertel 7348: }
7349: }
1.273 albertel 7350: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.569 bisitz 7351: my $checked; if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7352: $r->print("
7353: <label>
1.569 bisitz 7354: <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
1.596.2.6 raeburn 7355: ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
1.492 albertel 7356: "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
7357: </label>");
1.273 albertel 7358: $r->print("\n<br />");
7359: }
1.194 albertel 7360:
1.188 albertel 7361: $r->print(<<ENDSCRIPT);
7362: <script type="text/javascript">
7363: function change_radio(field) {
1.190 albertel 7364: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 7365: var i;
7366: for (i=0;i<slct.length;i++) {
7367: if (slct[i].value==field) { slct[i].checked=true; }
7368: }
7369: }
7370: </script>
7371: ENDSCRIPT
1.187 albertel 7372: my $href="/adm/pickcode?".
1.359 www 7373: "form=".&escape("scantronupload").
7374: "&scantron_format=".&escape($env{'form.scantron_format'}).
7375: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
7376: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
7377: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 7378: if ($env{'form.scantron_CODElist'} =~ /\S/) {
1.492 albertel 7379: $r->print("
7380: <label>
7381: <input type='radio' name='scantron_CODE_resolution' value='use_found' />
7382: ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
7383: "<a target='_blank' href='$href'>","</a>")."
7384: </label>
1.558 bisitz 7385: ".&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 7386: $r->print("\n<br />");
7387: }
1.492 albertel 7388: $r->print("
7389: <label>
7390: <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
7391: ".&mt("Use [_1] as the CODE.",
7392: "</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 7393: $r->print("\n<br /><br />");
1.157 albertel 7394: } elsif ($error eq 'doublebubble') {
1.596.2.6 raeburn 7395: $r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497 foxr 7396:
7397: # The form field scantron_questions is acutally a list of line numbers.
7398: # represented by this form so:
7399:
7400: my $line_list = &questions_to_line_list($arg);
7401:
1.157 albertel 7402: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7403: $line_list.'" />');
1.242 albertel 7404: $r->print($message);
1.492 albertel 7405: $r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157 albertel 7406: foreach my $question (@{$arg}) {
1.503 raeburn 7407: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
7408: $scan_record, $error);
1.524 raeburn 7409: push(@lines_to_correct,@linenums);
1.157 albertel 7410: }
1.503 raeburn 7411: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7412: } elsif ($error eq 'missingbubble') {
1.596.2.9 raeburn 7413: $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 7414: $r->print($message);
1.492 albertel 7415: $r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503 raeburn 7416: $r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497 foxr 7417:
1.503 raeburn 7418: # The form field scantron_questions is actually a list of line numbers not
1.497 foxr 7419: # a list of question numbers. Therefore:
7420: #
7421:
7422: my $line_list = &questions_to_line_list($arg);
7423:
1.157 albertel 7424: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7425: $line_list.'" />');
1.157 albertel 7426: foreach my $question (@{$arg}) {
1.503 raeburn 7427: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
7428: $scan_record, $error);
1.524 raeburn 7429: push(@lines_to_correct,@linenums);
1.157 albertel 7430: }
1.503 raeburn 7431: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7432: } else {
7433: $r->print("\n<ul>");
7434: }
7435: $r->print("\n</li></ul>");
1.497 foxr 7436: }
7437:
1.503 raeburn 7438: sub verify_bubbles_checked {
7439: my (@ansnums) = @_;
7440: my $ansnumstr = join('","',@ansnums);
7441: my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
7442: my $output = (<<ENDSCRIPT);
7443: <script type="text/javascript">
7444: function verify_bubble_radio(form) {
7445: var ansnumArray = new Array ("$ansnumstr");
7446: var need_bubble_count = 0;
7447: for (var i=0; i<ansnumArray.length; i++) {
7448: if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
7449: var bubble_picked = 0;
7450: for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
7451: if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
7452: bubble_picked = 1;
7453: }
7454: }
7455: if (bubble_picked == 0) {
7456: need_bubble_count ++;
7457: }
7458: }
7459: }
7460: if (need_bubble_count) {
7461: alert("$warning");
7462: return;
7463: }
7464: form.submit();
7465: }
7466: </script>
7467: ENDSCRIPT
7468: return $output;
7469: }
7470:
1.497 foxr 7471: =pod
7472:
7473: =item questions_to_line_list
1.157 albertel 7474:
1.497 foxr 7475: Converts a list of questions into a string of comma separated
7476: line numbers in the answer sheet used by the questions. This is
7477: used to fill in the scantron_questions form field.
7478:
7479: Arguments:
7480: questions - Reference to an array of questions.
7481:
7482: =cut
7483:
7484:
7485: sub questions_to_line_list {
7486: my ($questions) = @_;
7487: my @lines;
7488:
1.503 raeburn 7489: foreach my $item (@{$questions}) {
7490: my $question = $item;
7491: my ($first,$count,$last);
7492: if ($item =~ /^(\d+)\.(\d+)$/) {
7493: $question = $1;
7494: my $subquestion = $2;
7495: $first = $first_bubble_line{$question-1} + 1;
7496: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7497: my $subcount = 1;
7498: while ($subcount<$subquestion) {
7499: $first += $subans[$subcount-1];
7500: $subcount ++;
7501: }
7502: $count = $subans[$subquestion-1];
7503: } else {
7504: $first = $first_bubble_line{$question-1} + 1;
7505: $count = $bubble_lines_per_response{$question-1};
7506: }
1.506 raeburn 7507: $last = $first+$count-1;
1.503 raeburn 7508: push(@lines, ($first..$last));
1.497 foxr 7509: }
7510: return join(',', @lines);
7511: }
7512:
7513: =pod
7514:
7515: =item prompt_for_corrections
7516:
7517: Prompts for a potentially multiline correction to the
7518: user's bubbling (factors out common code from scantron_get_correction
7519: for multi and missing bubble cases).
7520:
7521: Arguments:
7522: $r - Apache request object.
7523: $question - The question number to prompt for.
7524: $scan_config - The scantron file configuration hash.
7525: $scan_record - Reference to the hash that has the the parsed scanlines.
1.503 raeburn 7526: $error - Type of error
1.497 foxr 7527:
7528: Implicit inputs:
7529: %bubble_lines_per_response - Starting line numbers for each question.
7530: Numbered from 0 (but question numbers are from
7531: 1.
7532: %first_bubble_line - Starting bubble line for each question.
1.509 raeburn 7533: %subdivided_bubble_lines - optionresponse, matchresponse and rankresponse
7534: type problems render as separate sub-questions,
1.503 raeburn 7535: in exam mode. This hash contains a
7536: comma-separated list of the lines per
7537: sub-question.
1.510 raeburn 7538: %responsetype_per_response - essayresponse, formularesponse,
7539: stringresponse, imageresponse, reactionresponse,
7540: and organicresponse type problem parts can have
1.503 raeburn 7541: multiple lines per response if the weight
7542: assigned exceeds 10. In this case, only
7543: one bubble per line is permitted, but more
7544: than one line might contain bubbles, e.g.
7545: bubbling of: line 1 - J, line 2 - J,
7546: line 3 - B would assign 22 points.
1.497 foxr 7547:
7548: =cut
7549:
7550: sub prompt_for_corrections {
1.503 raeburn 7551: my ($r, $question, $scan_config, $scan_record, $error) = @_;
7552: my ($current_line,$lines);
7553: my @linenums;
7554: my $questionnum = $question;
7555: if ($question =~ /^(\d+)\.(\d+)$/) {
7556: $question = $1;
7557: $current_line = $first_bubble_line{$question-1} + 1 ;
7558: my $subquestion = $2;
7559: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7560: my $subcount = 1;
7561: while ($subcount<$subquestion) {
7562: $current_line += $subans[$subcount-1];
7563: $subcount ++;
7564: }
7565: $lines = $subans[$subquestion-1];
7566: } else {
7567: $current_line = $first_bubble_line{$question-1} + 1 ;
7568: $lines = $bubble_lines_per_response{$question-1};
7569: }
1.497 foxr 7570: if ($lines > 1) {
1.503 raeburn 7571: $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
7572: if (($responsetype_per_response{$question-1} eq 'essayresponse') ||
7573: ($responsetype_per_response{$question-1} eq 'formularesponse') ||
1.510 raeburn 7574: ($responsetype_per_response{$question-1} eq 'stringresponse') ||
7575: ($responsetype_per_response{$question-1} eq 'imageresponse') ||
7576: ($responsetype_per_response{$question-1} eq 'reactionresponse') ||
7577: ($responsetype_per_response{$question-1} eq 'organicresponse')) {
1.572 www 7578: $r->print(&mt("Although this particular question type requires handgrading, the instructions for this question in the exam directed students to leave [quant,_1,line] blank on their bubblesheets.",$lines).'<br /><br />'.&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.').'<br />'.&mt('The score for this question will be a sum of the numeric values for the selected bubbles from each line, where A=1 point, B=2 points etc.').'<br />'.&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.").'<br /><br />');
1.503 raeburn 7579: } else {
7580: $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
7581: }
1.497 foxr 7582: }
7583: for (my $i =0; $i < $lines; $i++) {
1.503 raeburn 7584: my $selected = $$scan_record{"scantron.$current_line.answer"};
7585: &scantron_bubble_selector($r,$scan_config,$current_line,
7586: $questionnum,$error,split('', $selected));
1.524 raeburn 7587: push(@linenums,$current_line);
1.497 foxr 7588: $current_line++;
7589: }
7590: if ($lines > 1) {
7591: $r->print("<hr /><br />");
7592: }
1.503 raeburn 7593: return @linenums;
1.157 albertel 7594: }
1.423 albertel 7595:
7596: =pod
7597:
7598: =item scantron_bubble_selector
7599:
7600: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 7601: possibly showing the existing the selected bubbles if known
1.423 albertel 7602:
7603: Arguments:
7604: $r - Apache request object
7605: $scan_config - hash from &get_scantron_config()
1.497 foxr 7606: $line - Number of the line being displayed.
1.503 raeburn 7607: $questionnum - Question number (may include subquestion)
7608: $error - Type of error.
1.497 foxr 7609: @selected - Array of bubbles picked on this line.
1.423 albertel 7610:
7611: =cut
7612:
1.157 albertel 7613: sub scantron_bubble_selector {
1.503 raeburn 7614: my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157 albertel 7615: my $max=$$scan_config{'Qlength'};
1.274 albertel 7616:
7617: my $scmode=$$scan_config{'Qon'};
1.596.2.12.2. (raeburn 7618:): if ($scmode eq 'number' || $scmode eq 'letter') {
7619:): if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
7620:): ($$scan_config{'BubblesPerRow'} > 0)) {
7621:): $max=$$scan_config{'BubblesPerRow'};
7622:): if (($scmode eq 'number') && ($max > 10)) {
7623:): $max = 10;
7624:): } elsif (($scmode eq 'letter') && $max > 26) {
7625:): $max = 26;
7626:): }
7627:): } else {
7628:): $max = 10;
7629:): }
7630:): }
1.274 albertel 7631:
1.157 albertel 7632: my @alphabet=('A'..'Z');
1.503 raeburn 7633: $r->print(&Apache::loncommon::start_data_table().
7634: &Apache::loncommon::start_data_table_row());
7635: $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497 foxr 7636: for (my $i=0;$i<$max+1;$i++) {
7637: $r->print("\n".'<td align="center">');
7638: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
7639: else { $r->print(' '); }
7640: $r->print('</td>');
7641: }
1.503 raeburn 7642: $r->print(&Apache::loncommon::end_data_table_row().
7643: &Apache::loncommon::start_data_table_row());
1.497 foxr 7644: for (my $i=0;$i<$max;$i++) {
7645: $r->print("\n".
7646: '<td><label><input type="radio" name="scantron_correct_Q_'.
7647: $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
7648: }
1.503 raeburn 7649: my $nobub_checked = ' ';
7650: if ($error eq 'missingbubble') {
7651: $nobub_checked = ' checked = "checked" ';
7652: }
7653: $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
7654: $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
7655: '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
7656: $line.'" value="'.$questionnum.'" /></td>');
7657: $r->print(&Apache::loncommon::end_data_table_row().
7658: &Apache::loncommon::end_data_table());
1.157 albertel 7659: }
7660:
1.423 albertel 7661: =pod
7662:
7663: =item num_matches
7664:
1.424 albertel 7665: Counts the number of characters that are the same between the two arguments.
7666:
7667: Arguments:
7668: $orig - CODE from the scanline
7669: $code - CODE to match against
7670:
7671: Returns:
7672: $count - integer count of the number of same characters between the
7673: two arguments
7674:
1.423 albertel 7675: =cut
7676:
1.194 albertel 7677: sub num_matches {
7678: my ($orig,$code) = @_;
7679: my @code=split(//,$code);
7680: my @orig=split(//,$orig);
7681: my $same=0;
7682: for (my $i=0;$i<scalar(@code);$i++) {
7683: if ($code[$i] eq $orig[$i]) { $same++; }
7684: }
7685: return $same;
7686: }
7687:
1.423 albertel 7688: =pod
7689:
7690: =item scantron_get_closely_matching_CODEs
7691:
1.424 albertel 7692: Cycles through all CODEs and finds the set that has the greatest
7693: number of same characters as the provided CODE
7694:
7695: Arguments:
7696: $allcodes - hash ref returned by &get_codes()
7697: $CODE - CODE from the current scanline
7698:
7699: Returns:
7700: 2 element list
7701: - first elements is number of how closely matching the best fit is
7702: (5 means best set has 5 matching characters)
7703: - second element is an arrary ref containing the set of valid CODEs
7704: that best fit the passed in CODE
7705:
1.423 albertel 7706: =cut
7707:
1.194 albertel 7708: sub scantron_get_closely_matching_CODEs {
7709: my ($allcodes,$CODE)=@_;
7710: my @CODEs;
7711: foreach my $testcode (sort(keys(%{$allcodes}))) {
7712: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
7713: }
7714:
7715: return ($#CODEs,$CODEs[-1]);
7716: }
7717:
1.423 albertel 7718: =pod
7719:
7720: =item get_codes
7721:
1.424 albertel 7722: Builds a hash which has keys of all of the valid CODEs from the selected
7723: set of remembered CODEs.
7724:
7725: Arguments:
7726: $old_name - name of the set of remembered CODEs
7727: $cdom - domain of the course
7728: $cnum - internal course name
7729:
7730: Returns:
7731: %allcodes - keys are the valid CODEs, values are all 1
7732:
1.423 albertel 7733: =cut
7734:
1.194 albertel 7735: sub get_codes {
1.280 foxr 7736: my ($old_name, $cdom, $cnum) = @_;
7737: if (!$old_name) {
7738: $old_name=$env{'form.scantron_CODElist'};
7739: }
7740: if (!$cdom) {
7741: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
7742: }
7743: if (!$cnum) {
7744: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
7745: }
1.278 albertel 7746: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
7747: $cdom,$cnum);
7748: my %allcodes;
7749: if ($result{"type\0$old_name"} eq 'number') {
7750: %allcodes=map {($_,1)} split(',',$result{$old_name});
7751: } else {
7752: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
7753: }
1.194 albertel 7754: return %allcodes;
7755: }
7756:
1.423 albertel 7757: =pod
7758:
7759: =item scantron_validate_CODE
7760:
1.424 albertel 7761: Validates all scanlines in the selected file to not have any
7762: invalid or underspecified CODEs and that none of the codes are
7763: duplicated if this was requested.
7764:
1.423 albertel 7765: =cut
7766:
1.157 albertel 7767: sub scantron_validate_CODE {
7768: my ($r,$currentphase) = @_;
1.257 albertel 7769: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 7770: if ($scantron_config{'CODElocation'} &&
7771: $scantron_config{'CODEstart'} &&
7772: $scantron_config{'CODElength'}) {
1.257 albertel 7773: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 7774: &FIXME_blow_up()
7775: }
7776: } else {
7777: return (0,$currentphase+1);
7778: }
7779:
7780: my %usedCODEs;
7781:
1.194 albertel 7782: my %allcodes=&get_codes();
1.186 albertel 7783:
1.582 raeburn 7784: my $nav_error;
1.596.2.12.2. (raeburn 7785:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
1.582 raeburn 7786: if ($nav_error) {
7787: $r->print(&navmap_errormsg());
7788: return(1,$currentphase);
7789: }
1.447 foxr 7790:
1.186 albertel 7791: my ($scanlines,$scan_data)=&scantron_getfile();
7792: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7793: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 7794: if ($line=~/^[\s\cz]*$/) { next; }
7795: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7796: $scan_data);
7797: my $CODE=$$scan_record{'scantron.CODE'};
7798: my $error=0;
1.224 albertel 7799: if (!&Apache::lonnet::validCODE($CODE)) {
7800: &scantron_get_correction($r,$i,$scan_record,
7801: \%scantron_config,
7802: $line,'incorrectCODE',\%allcodes);
7803: return(1,$currentphase);
7804: }
1.221 albertel 7805: if (%allcodes && !exists($allcodes{$CODE})
7806: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 7807: &scantron_get_correction($r,$i,$scan_record,
7808: \%scantron_config,
1.194 albertel 7809: $line,'incorrectCODE',\%allcodes);
7810: return(1,$currentphase);
1.186 albertel 7811: }
1.214 albertel 7812: if (exists($usedCODEs{$CODE})
1.257 albertel 7813: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 7814: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 7815: &scantron_get_correction($r,$i,$scan_record,
7816: \%scantron_config,
1.194 albertel 7817: $line,'duplicateCODE',$usedCODEs{$CODE});
7818: return(1,$currentphase);
1.186 albertel 7819: }
1.524 raeburn 7820: push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 7821: }
1.157 albertel 7822: return (0,$currentphase+1);
7823: }
7824:
1.423 albertel 7825: =pod
7826:
7827: =item scantron_validate_doublebubble
7828:
1.424 albertel 7829: Validates all scanlines in the selected file to not have any
7830: bubble lines with multiple bubbles marked.
7831:
1.423 albertel 7832: =cut
7833:
1.157 albertel 7834: sub scantron_validate_doublebubble {
7835: my ($r,$currentphase) = @_;
7836: #get student info
7837: my $classlist=&Apache::loncoursedata::get_classlist();
7838: my %idmap=&username_to_idmap($classlist);
7839:
7840: #get scantron line setup
1.257 albertel 7841: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7842: my ($scanlines,$scan_data)=&scantron_getfile();
1.583 raeburn 7843: my $nav_error;
1.596.2.12.2. (raeburn 7844:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
1.583 raeburn 7845: if ($nav_error) {
7846: $r->print(&navmap_errormsg());
7847: return(1,$currentphase);
7848: }
1.447 foxr 7849:
1.157 albertel 7850: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7851: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7852: if ($line=~/^[\s\cz]*$/) { next; }
7853: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7854: $scan_data);
7855: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
7856: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
7857: 'doublebubble',
7858: $$scan_record{'scantron.doubleerror'});
7859: return (1,$currentphase);
7860: }
7861: return (0,$currentphase+1);
7862: }
7863:
1.423 albertel 7864:
1.503 raeburn 7865: sub scantron_get_maxbubble {
1.596.2.12.2. (raeburn 7866:): my ($nav_error,$scantron_config) = @_;
1.257 albertel 7867: if (defined($env{'form.scantron_maxbubble'}) &&
7868: $env{'form.scantron_maxbubble'}) {
1.447 foxr 7869: &restore_bubble_lines();
1.257 albertel 7870: return $env{'form.scantron_maxbubble'};
1.191 albertel 7871: }
1.330 albertel 7872:
1.447 foxr 7873: my (undef, undef, $sequence) =
1.257 albertel 7874: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 7875:
1.447 foxr 7876: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7877: unless (ref($navmap)) {
7878: if (ref($nav_error)) {
7879: $$nav_error = 1;
7880: }
1.591 raeburn 7881: return;
1.582 raeburn 7882: }
1.191 albertel 7883: my $map=$navmap->getResourceByUrl($sequence);
7884: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.596.2.12.2. (raeburn 7885:): my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
1.330 albertel 7886:
7887: &Apache::lonxml::clear_problem_counter();
7888:
1.557 raeburn 7889: my $uname = $env{'user.name'};
7890: my $udom = $env{'user.domain'};
1.435 foxr 7891: my $cid = $env{'request.course.id'};
7892: my $total_lines = 0;
7893: %bubble_lines_per_response = ();
1.447 foxr 7894: %first_bubble_line = ();
1.503 raeburn 7895: %subdivided_bubble_lines = ();
7896: %responsetype_per_response = ();
1.554 raeburn 7897:
1.447 foxr 7898: my $response_number = 0;
7899: my $bubble_line = 0;
1.191 albertel 7900: foreach my $resource (@resources) {
1.596.2.12.2. (raeburn 7901:): my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
7902:): $udom,$bubbles_per_row);
1.542 raeburn 7903: if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
7904: foreach my $part_id (@{$parts}) {
7905: my $lines;
7906:
7907: # TODO - make this a persistent hash not an array.
7908:
7909: # optionresponse, matchresponse and rankresponse type items
7910: # render as separate sub-questions in exam mode.
7911: if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
7912: ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
7913: ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
7914: my ($numbub,$numshown);
7915: if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
7916: if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
7917: $numbub = scalar(@{$analysis->{$part_id.'.options'}});
7918: }
7919: } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
7920: if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
7921: $numbub = scalar(@{$analysis->{$part_id.'.items'}});
7922: }
7923: } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
7924: if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
7925: $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
7926: }
7927: }
7928: if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
7929: $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
7930: }
1.596.2.12.2. (raeburn 7931:): my $bubbles_per_row =
7932:): &bubblesheet_bubbles_per_row($scantron_config);
7933:): my $inner_bubble_lines = int($numbub/$bubbles_per_row);
7934:): if (($numbub % $bubbles_per_row) != 0) {
1.542 raeburn 7935: $inner_bubble_lines++;
7936: }
7937: for (my $i=0; $i<$numshown; $i++) {
7938: $subdivided_bubble_lines{$response_number} .=
7939: $inner_bubble_lines.',';
7940: }
7941: $subdivided_bubble_lines{$response_number} =~ s/,$//;
7942: $lines = $numshown * $inner_bubble_lines;
7943: } else {
7944: $lines = $analysis->{"$part_id.bubble_lines"};
1.596.2.12.2. (raeburn 7945:): }
1.542 raeburn 7946:
7947: $first_bubble_line{$response_number} = $bubble_line;
7948: $bubble_lines_per_response{$response_number} = $lines;
7949: $responsetype_per_response{$response_number} =
7950: $analysis->{$part_id.'.type'};
7951: $response_number++;
7952:
7953: $bubble_line += $lines;
7954: $total_lines += $lines;
7955: }
7956: }
7957: }
1.552 raeburn 7958: &Apache::lonnet::delenv('scantron.');
1.542 raeburn 7959:
7960: &save_bubble_lines();
7961: $env{'form.scantron_maxbubble'} =
7962: $total_lines;
7963: return $env{'form.scantron_maxbubble'};
7964: }
1.523 raeburn 7965:
1.596.2.12.2. (raeburn 7966:): sub bubblesheet_bubbles_per_row {
7967:): my ($scantron_config) = @_;
7968:): my $bubbles_per_row;
7969:): if (ref($scantron_config) eq 'HASH') {
7970:): $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
7971:): }
7972:): if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
7973:): $bubbles_per_row = 10;
7974:): }
7975:): return $bubbles_per_row;
7976:): }
7977:):
1.157 albertel 7978: sub scantron_validate_missingbubbles {
7979: my ($r,$currentphase) = @_;
7980: #get student info
7981: my $classlist=&Apache::loncoursedata::get_classlist();
7982: my %idmap=&username_to_idmap($classlist);
7983:
7984: #get scantron line setup
1.257 albertel 7985: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7986: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7987: my $nav_error;
1.596.2.12.2. (raeburn 7988:): my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 7989: if ($nav_error) {
7990: return(1,$currentphase);
7991: }
1.157 albertel 7992: if (!$max_bubble) { $max_bubble=2**31; }
7993: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7994: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7995: if ($line=~/^[\s\cz]*$/) { next; }
7996: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7997: $scan_data);
7998: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
7999: my @to_correct;
1.470 foxr 8000:
8001: # Probably here's where the error is...
8002:
1.157 albertel 8003: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505 raeburn 8004: my $lastbubble;
8005: if ($missing =~ /^(\d+)\.(\d+)$/) {
8006: my $question = $1;
8007: my $subquestion = $2;
8008: if (!defined($first_bubble_line{$question -1})) { next; }
8009: my $first = $first_bubble_line{$question-1};
8010: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
8011: my $subcount = 1;
8012: while ($subcount<$subquestion) {
8013: $first += $subans[$subcount-1];
8014: $subcount ++;
8015: }
8016: my $count = $subans[$subquestion-1];
8017: $lastbubble = $first + $count;
8018: } else {
8019: if (!defined($first_bubble_line{$missing - 1})) { next; }
8020: $lastbubble = $first_bubble_line{$missing - 1} + $bubble_lines_per_response{$missing - 1};
8021: }
8022: if ($lastbubble > $max_bubble) { next; }
1.157 albertel 8023: push(@to_correct,$missing);
8024: }
8025: if (@to_correct) {
8026: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
8027: $line,'missingbubble',\@to_correct);
8028: return (1,$currentphase);
8029: }
8030:
8031: }
8032: return (0,$currentphase+1);
8033: }
8034:
1.596.2.12.2. (raeburn 8035:): sub hand_bubble_option {
8036:): my (undef, undef, $sequence) =
8037:): &Apache::lonnet::decode_symb($env{'form.selectpage'});
8038:): return if ($sequence eq '');
8039:): my $navmap = Apache::lonnavmaps::navmap->new();
8040:): unless (ref($navmap)) {
8041:): return;
8042:): }
8043:): my $needs_hand_bubbles;
8044:): my $map=$navmap->getResourceByUrl($sequence);
8045:): my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8046:): foreach my $res (@resources) {
8047:): if (ref($res)) {
8048:): if ($res->is_problem()) {
8049:): my $partlist = $res->parts();
8050:): foreach my $part (@{ $partlist }) {
8051:): my @types = $res->responseType($part);
8052:): if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
8053:): $needs_hand_bubbles = 1;
8054:): last;
8055:): }
8056:): }
8057:): }
8058:): }
8059:): }
8060:): if ($needs_hand_bubbles) {
8061:): my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
8062:): my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8063:): return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
8064:): &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 />').
8065:): '<label><input type="radio" name="scantron_lastbubblepoints" value="'.$bubbles_per_row.'" checked="checked" />'.&mt('[quant,_1,point]',$bubbles_per_row).'</label> '.&mt('or').' '.
8066:): '<label><input type="radio" name="scantron_lastbubblepoints" value="0"/>0 points</label></p>';
8067:): }
8068:): return;
8069:): }
1.423 albertel 8070:
1.82 albertel 8071: sub scantron_process_students {
1.75 albertel 8072: my ($r) = @_;
1.513 foxr 8073:
1.257 albertel 8074: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.324 albertel 8075: my ($symb)=&get_symb($r);
1.513 foxr 8076: if (!$symb) {
8077: return '';
8078: }
1.324 albertel 8079: my $default_form_data=&defaultFormData($symb);
1.82 albertel 8080:
1.257 albertel 8081: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.596.2.12.2. (raeburn 8082:): my $bubbles_per_row =
8083:): &bubblesheet_bubbles_per_row(\%scantron_config);
1.157 albertel 8084: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 8085: my $classlist=&Apache::loncoursedata::get_classlist();
8086: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 8087: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8088: unless (ref($navmap)) {
8089: $r->print(&navmap_errormsg());
8090: return '';
8091: }
1.83 albertel 8092: my $map=$navmap->getResourceByUrl($sequence);
1.596.2.12.2. 1(raebur 8093:2): my $randomorder;
8094:2): if (ref($map)) {
8095:2): $randomorder = $map->randomorder();
8096:2): }
1.83 albertel 8097: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.596.2.12.2. 1(raebur 8098:2): my (%grader_partids_by_symb,%grader_randomlists_by_symb,%ordered);
1.557 raeburn 8099: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
1.596.2.12.2. (raeburn 8100:): \%grader_randomlists_by_symb,$bubbles_per_row);
1(raebur 8101:2): my ($resource_error,%symb_to_resource,@master_seq);
1.557 raeburn 8102: foreach my $resource (@resources) {
1.586 raeburn 8103: my $ressymb;
8104: if (ref($resource)) {
8105: $ressymb = $resource->symb();
1.596.2.12.2. 1(raebur 8106:2): push(@master_seq,$ressymb);
8107:2): $symb_to_resource{$ressymb} = $resource;
1.586 raeburn 8108: } else {
8109: $resource_error = 1;
8110: last;
8111: }
1.557 raeburn 8112: my ($analysis,$parts) =
8113: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.596.2.12.2. (raeburn 8114:): $env{'user.name'},$env{'user.domain'},
8115:): 1,$bubbles_per_row);
1.557 raeburn 8116: $grader_partids_by_symb{$ressymb} = $parts;
8117: if (ref($analysis) eq 'HASH') {
8118: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
8119: $grader_randomlists_by_symb{$ressymb} =
8120: $analysis->{'parts_withrandomlist'};
8121: }
8122: }
8123: }
1.586 raeburn 8124: if ($resource_error) {
8125: $r->print(&navmap_errormsg());
8126: return '';
8127: }
1.557 raeburn 8128:
1.554 raeburn 8129: my ($uname,$udom);
1.82 albertel 8130: my $result= <<SCANTRONFORM;
1.81 albertel 8131: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
8132: <input type="hidden" name="command" value="scantron_configphase" />
8133: $default_form_data
8134: SCANTRONFORM
1.82 albertel 8135: $r->print($result);
8136:
8137: my @delayqueue;
1.542 raeburn 8138: my (%completedstudents,%scandata);
1.140 albertel 8139:
1.520 www 8140: my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
1.200 albertel 8141: my $count=&get_todo_count($scanlines,$scan_data);
1.596.2.12.2. (raeburn 8142:): my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1.140 albertel 8143: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
8144: 'Processing first student');
1.542 raeburn 8145: $r->print('<br />');
1.140 albertel 8146: my $start=&Time::HiRes::time();
1.158 albertel 8147: my $i=-1;
1.542 raeburn 8148: my $started;
1.447 foxr 8149:
1.582 raeburn 8150: my $nav_error;
1.596.2.12.2. (raeburn 8151:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 8152: if ($nav_error) {
8153: $r->print(&navmap_errormsg());
8154: return '';
8155: }
8156:
1.513 foxr 8157: # If an ssi failed in scantron_get_maxbubble, put an error message out to
8158: # the user and return.
8159:
8160: if ($ssi_error) {
8161: $r->print("</form>");
8162: &ssi_print_error($r);
8163: $r->print(&show_grading_menu_form($symb));
1.520 www 8164: &Apache::lonnet::remove_lock($lock);
1.513 foxr 8165: return ''; # Dunno why the other returns return '' rather than just returning.
8166: }
1.447 foxr 8167:
1.542 raeburn 8168: my %lettdig = &letter_to_digits();
8169: my $numletts = scalar(keys(%lettdig));
8170:
1.157 albertel 8171: while ($i<$scanlines->{'count'}) {
8172: ($uname,$udom)=('','');
8173: $i++;
1.200 albertel 8174: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8175: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 8176: if ($started) {
8177: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
8178: 'last student');
8179: }
8180: $started=1;
1.157 albertel 8181: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
8182: $scan_data);
8183: unless ($uname=&scantron_find_student($scan_record,$scan_data,
8184: \%idmap,$i)) {
8185: &scantron_add_delay(\@delayqueue,$line,
8186: 'Unable to find a student that matches',1);
8187: next;
8188: }
8189: if (exists $completedstudents{$uname}) {
8190: &scantron_add_delay(\@delayqueue,$line,
8191: 'Student '.$uname.' has multiple sheets',2);
8192: next;
8193: }
1.596.2.12.2. 1(raebur 8194:2): my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
8195:2): my $user = $uname.':'.$usec;
1.157 albertel 8196: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 8197:
1.596.2.12.2. 1(raebur 8198:2): my $scancode;
8199:2): if ((exists($scan_record->{'scantron.CODE'})) &&
8200:2): (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8201:2): $scancode = $scan_record->{'scantron.CODE'};
8202:2): } else {
8203:2): $scancode = '';
8204:2): }
8205:2):
8206:2): my @mapresources = @resources;
8207:2): if ($randomorder) {
8208:2): @mapresources =
8209:2): &users_order($user,$scancode,$sequence,\@master_seq,\%ordered,
8210:2): \%symb_to_resource);
8211:2): }
1.586 raeburn 8212: my (%partids_by_symb,$res_error);
1.596.2.12.2. 1(raebur 8213:2): foreach my $resource (@mapresources) {
1.586 raeburn 8214: my $ressymb;
8215: if (ref($resource)) {
8216: $ressymb = $resource->symb();
8217: } else {
8218: $res_error = 1;
8219: last;
8220: }
1.557 raeburn 8221: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8222: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
8223: my ($analysis,$parts) =
1.596.2.12.2. (raeburn 8224:): &scantron_partids_tograde($resource,$env{'request.course.id'},
8225:): $uname,$udom,undef,$bubbles_per_row);
1.557 raeburn 8226: $partids_by_symb{$ressymb} = $parts;
8227: } else {
8228: $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
8229: }
1.554 raeburn 8230: }
8231:
1.586 raeburn 8232: if ($res_error) {
8233: &scantron_add_delay(\@delayqueue,$line,
8234: 'An error occurred while grading student '.$uname,2);
8235: next;
8236: }
8237:
1.330 albertel 8238: &Apache::lonxml::clear_problem_counter();
1.514 raeburn 8239: &Apache::lonnet::appenv($scan_record);
1.376 albertel 8240:
8241: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
8242: &scantron_putfile($scanlines,$scan_data);
8243: }
1.161 albertel 8244:
1.542 raeburn 8245: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.596.2.12.2. 1(raebur 8246:2): \@mapresources,\%partids_by_symb,
(raeburn 8247:): $bubbles_per_row) eq 'ssi_error') {
1.542 raeburn 8248: $ssi_error = 0; # So end of handler error message does not trigger.
8249: $r->print("</form>");
8250: &ssi_print_error($r);
8251: $r->print(&show_grading_menu_form($symb));
8252: &Apache::lonnet::remove_lock($lock);
8253: return ''; # Why return ''? Beats me.
8254: }
1.513 foxr 8255:
1.140 albertel 8256: $completedstudents{$uname}={'line'=>$line};
1.542 raeburn 8257: if ($env{'form.verifyrecord'}) {
8258: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
8259: my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8260: chomp($studentdata);
8261: $studentdata =~ s/\r$//;
8262: my $studentrecord = '';
8263: my $counter = -1;
1.596.2.12.2. 1(raebur 8264:2): foreach my $resource (@mapresources) {
1.554 raeburn 8265: my $ressymb = $resource->symb();
1.542 raeburn 8266: ($counter,my $recording) =
8267: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8268: $counter,$studentdata,$partids_by_symb{$ressymb},
1.542 raeburn 8269: \%scantron_config,\%lettdig,$numletts);
8270: $studentrecord .= $recording;
8271: }
8272: if ($studentrecord ne $studentdata) {
1.554 raeburn 8273: &Apache::lonxml::clear_problem_counter();
8274: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.596.2.12.2. 1(raebur 8275:2): \@mapresources,\%partids_by_symb,
(raeburn 8276:): $bubbles_per_row) eq 'ssi_error') {
1.554 raeburn 8277: $ssi_error = 0; # So end of handler error message does not trigger.
8278: $r->print("</form>");
8279: &ssi_print_error($r);
8280: $r->print(&show_grading_menu_form($symb));
8281: &Apache::lonnet::remove_lock($lock);
8282: delete($completedstudents{$uname});
8283: return '';
8284: }
1.542 raeburn 8285: $counter = -1;
8286: $studentrecord = '';
1.596.2.12.2. 1(raebur 8287:2): foreach my $resource (@mapresources) {
1.554 raeburn 8288: my $ressymb = $resource->symb();
1.542 raeburn 8289: ($counter,my $recording) =
8290: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8291: $counter,$studentdata,$partids_by_symb{$ressymb},
1.542 raeburn 8292: \%scantron_config,\%lettdig,$numletts);
8293: $studentrecord .= $recording;
8294: }
8295: if ($studentrecord ne $studentdata) {
1.596.2.6 raeburn 8296: $r->print('<p><span class="LC_warning">');
1.542 raeburn 8297: if ($scancode eq '') {
1.596.2.6 raeburn 8298: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
1.542 raeburn 8299: $uname.':'.$udom,$scan_record->{'scantron.ID'}));
8300: } else {
1.596.2.6 raeburn 8301: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
1.542 raeburn 8302: $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
8303: }
8304: $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
8305: &Apache::loncommon::start_data_table_header_row()."\n".
8306: '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
8307: &Apache::loncommon::end_data_table_header_row()."\n".
8308: &Apache::loncommon::start_data_table_row().
1.596.2.6 raeburn 8309: '<td>'.&mt('Bubblesheet').'</td>'.
1.542 raeburn 8310: '<td><span class="LC_nobreak">'.$studentdata.'</span></td>'.
8311: &Apache::loncommon::end_data_table_row().
8312: &Apache::loncommon::start_data_table_row().
1.596.2.6 raeburn 8313: '<td>'.&mt('Stored submissions').'</td>'.
1.542 raeburn 8314: '<td><span class="LC_nobreak">'.$studentrecord.'</span></td>'."\n".
8315: &Apache::loncommon::end_data_table_row().
8316: &Apache::loncommon::end_data_table().'</p>');
8317: } else {
8318: $r->print('<br /><span class="LC_warning">'.
8319: &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 />'.
8320: &mt("As a consequence, this user's submission history records two tries.").
8321: '</span><br />');
8322: }
8323: }
8324: }
1.543 raeburn 8325: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 8326: } continue {
1.330 albertel 8327: &Apache::lonxml::clear_problem_counter();
1.552 raeburn 8328: &Apache::lonnet::delenv('scantron.');
1.82 albertel 8329: }
1.140 albertel 8330: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.520 www 8331: &Apache::lonnet::remove_lock($lock);
1.172 albertel 8332: # my $lasttime = &Time::HiRes::time()-$start;
8333: # $r->print("<p>took $lasttime</p>");
1.140 albertel 8334:
1.200 albertel 8335: $r->print("</form>");
1.324 albertel 8336: $r->print(&show_grading_menu_form($symb));
1.157 albertel 8337: return '';
1.75 albertel 8338: }
1.157 albertel 8339:
1.557 raeburn 8340: sub graders_resources_pass {
1.596.2.12.2. (raeburn 8341:): my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
8342:): $bubbles_per_row) = @_;
1.557 raeburn 8343: if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) &&
8344: (ref($grader_randomlists_by_symb) eq 'HASH')) {
8345: foreach my $resource (@{$resources}) {
8346: my $ressymb = $resource->symb();
8347: my ($analysis,$parts) =
8348: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.596.2.12.2. (raeburn 8349:): $env{'user.name'},$env{'user.domain'},
8350:): 1,$bubbles_per_row);
1.557 raeburn 8351: $grader_partids_by_symb->{$ressymb} = $parts;
8352: if (ref($analysis) eq 'HASH') {
8353: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
8354: $grader_randomlists_by_symb->{$ressymb} =
8355: $analysis->{'parts_withrandomlist'};
8356: }
8357: }
8358: }
8359: }
8360: return;
8361: }
8362:
1.596.2.12.2. 1(raebur 8363:2): =pod
8364:2):
8365:2): =item users_order
8366:2):
8367:2): Returns array of resources in current map, ordered based on either CODE,
8368:2): if this is a CODEd exam, or based on student's identity if this is a
8369:2): "NAMEd" exam.
8370:2):
8371:2): Should be used when randomorder applied when the corresponding exam was
8372:2): printed, prior to students completing bubblesheets for the version of the
8373:2): exam the student received.
8374:2):
8375:2): =cut
8376:2):
8377:2): sub users_order {
8378:2): my ($user,$scancode,$mapurl,$master_seq,$ordered,$symb_to_resource) = @_;
8379:2): my @mapresources;
8380:2): unless ((ref($ordered) eq 'HASH') && (ref($symb_to_resource) eq 'HASH')) {
8381:2): return @mapresources;
8382:2): }
8383:2): if (($scancode) && (ref($ordered->{$scancode}) eq 'ARRAY')) {
8384:2): @mapresources = @{$ordered->{$scancode}};
8385:2): } elsif ($scancode) {
8386:2): $env{'form.CODE'} = $scancode;
8387:2): my $actual_seq =
8388:2): &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8389:2): $master_seq,
8390:2): $user,$scancode);
8391:2): if (ref($actual_seq) eq 'ARRAY') {
8392:2): @{$ordered->{$scancode}} =
8393:2): map { $symb_to_resource->{$_}; } @{$actual_seq};
8394:2): @mapresources = @{$ordered->{$scancode}};
8395:2): }
8396:2): delete($env{'form.CODE'});
8397:2): } else {
8398:2): my $actual_seq =
8399:2): &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8400:2): $master_seq,
8401:2): $user);
8402:2): if (ref($actual_seq) eq 'ARRAY') {
8403:2): @mapresources =
8404:2): map { $symb_to_resource->{$_}; } @{$actual_seq};
8405:2): }
8406:2): }
8407:2): return @mapresources;
8408:2): }
8409:2):
1.542 raeburn 8410: sub grade_student_bubbles {
1.596.2.12.2. (raeburn 8411:): my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row) = @_;
1.554 raeburn 8412: if (ref($resources) eq 'ARRAY') {
8413: my $count = 0;
8414: foreach my $resource (@{$resources}) {
8415: my $ressymb = $resource->symb();
8416: my %form = ('submitted' => 'scantron',
8417: 'grade_target' => 'grade',
8418: 'grade_username' => $uname,
8419: 'grade_domain' => $udom,
8420: 'grade_courseid' => $env{'request.course.id'},
8421: 'grade_symb' => $ressymb,
8422: 'CODE' => $scancode
8423: );
1.596.2.12.2. (raeburn 8424:): if ($bubbles_per_row ne '') {
8425:): $form{'bubbles_per_row'} = $bubbles_per_row;
8426:): }
8427:): if ($env{'form.scantron_lastbubblepoints'} ne '') {
8428:): $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
8429:): }
1.554 raeburn 8430: if (ref($parts) eq 'HASH') {
8431: if (ref($parts->{$ressymb}) eq 'ARRAY') {
8432: foreach my $part (@{$parts->{$ressymb}}) {
8433: $form{'scantron_questnum_start.'.$part} =
8434: 1+$env{'form.scantron.first_bubble_line.'.$count};
8435: $count++;
8436: }
8437: }
8438: }
8439: my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
8440: return 'ssi_error' if ($ssi_error);
8441: last if (&Apache::loncommon::connection_aborted($r));
8442: }
1.542 raeburn 8443: }
8444: return;
8445: }
8446:
1.157 albertel 8447: sub scantron_upload_scantron_data {
8448: my ($r)=@_;
1.565 raeburn 8449: my $dom = $env{'request.role.domain'};
8450: my $domdesc = &Apache::lonnet::domain($dom,'description');
8451: $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
1.157 albertel 8452: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 8453: 'domainid',
1.565 raeburn 8454: 'coursename',$dom);
8455: my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
1.596.2.12.2. (raeburn 8456:): (' 'x2).&mt('(shows course personnel)');
8457:): my ($symb) = &get_symb($r,1);
8458:): my $default_form_data=&defaultFormData($symb);
1.579 raeburn 8459: my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
8460: 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.492 albertel 8461: $r->print('
1.157 albertel 8462: <script type="text/javascript" language="javascript">
8463: function checkUpload(formname) {
8464: if (formname.upfile.value == "") {
1.579 raeburn 8465: alert("'.$nofile_alert.'");
1.157 albertel 8466: return false;
8467: }
1.565 raeburn 8468: if (formname.courseid.value == "") {
1.579 raeburn 8469: alert("'.$nocourseid_alert.'");
1.565 raeburn 8470: return false;
8471: }
1.157 albertel 8472: formname.submit();
8473: }
1.565 raeburn 8474:
8475: function ToSyllabus() {
8476: var cdom = '."'$dom'".';
8477: var cnum = document.rules.courseid.value;
8478: if (cdom == "" || cdom == null) {
8479: return;
8480: }
8481: if (cnum == "" || cnum == null) {
8482: return;
8483: }
8484: syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
8485: "height=350,width=350,scrollbars=yes,menubar=no");
8486: return;
8487: }
8488:
1.157 albertel 8489: </script>
8490:
1.596.2.4 raeburn 8491: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
1.566 raeburn 8492:
1.492 albertel 8493: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
1.565 raeburn 8494: '.$default_form_data.
8495: &Apache::lonhtmlcommon::start_pick_box().
8496: &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
8497: '<input name="courseid" type="text" size="30" />'.$select_link.
8498: &Apache::lonhtmlcommon::row_closure().
8499: &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
8500: '<input name="coursename" type="text" size="30" />'.$syllabuslink.
8501: &Apache::lonhtmlcommon::row_closure().
8502: &Apache::lonhtmlcommon::row_title(&mt('Domain')).
8503: '<input name="domainid" type="hidden" />'.$domdesc.
8504: &Apache::lonhtmlcommon::row_closure().
8505: &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
8506: '<input type="file" name="upfile" size="50" />'.
8507: &Apache::lonhtmlcommon::row_closure(1).
8508: &Apache::lonhtmlcommon::end_pick_box().'<br />
8509:
1.492 albertel 8510: <input name="command" value="scantronupload_save" type="hidden" />
1.589 bisitz 8511: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
1.157 albertel 8512: </form>
1.492 albertel 8513: ');
1.157 albertel 8514: return '';
8515: }
8516:
1.423 albertel 8517:
1.157 albertel 8518: sub scantron_upload_scantron_data_save {
8519: my($r)=@_;
1.324 albertel 8520: my ($symb)=&get_symb($r,1);
1.182 albertel 8521: my $doanotherupload=
8522: '<br /><form action="/adm/grades" method="post">'."\n".
8523: '<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492 albertel 8524: '<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182 albertel 8525: '</form>'."\n";
1.257 albertel 8526: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 8527: !&Apache::lonnet::allowed('usc',
1.257 albertel 8528: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.575 www 8529: $r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
1.182 albertel 8530: if ($symb) {
1.324 albertel 8531: $r->print(&show_grading_menu_form($symb));
1.182 albertel 8532: } else {
8533: $r->print($doanotherupload);
8534: }
1.162 albertel 8535: return '';
8536: }
1.257 albertel 8537: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.568 raeburn 8538: my $uploadedfile;
1.567 raeburn 8539: $r->print('<h3>'.&mt("Uploading file to [_1]",$coursedata{'description'}).'</h3>');
1.257 albertel 8540: if (length($env{'form.upfile'}) < 2) {
1.568 raeburn 8541: $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 8542: } else {
1.568 raeburn 8543: my $result =
8544: &Apache::lonnet::userfileupload('upfile','','scantron','','','',
8545: $env{'form.courseid'},$env{'form.domainid'});
8546: if ($result =~ m{^/uploaded/}) {
1.567 raeburn 8547: $r->print(&mt('[_1]Success:[_2] Successfully uploaded [_3] bytes of data into location: [_4]',
8548: '<span class="LC_success">','</span>',(length($env{'form.upfile'})-1),
8549: '<span class="LC_filename">'.$result.'</span>'));
1.568 raeburn 8550: ($uploadedfile) = ($result =~ m{/([^/]+)$});
1.567 raeburn 8551: $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
1.568 raeburn 8552: $env{'form.courseid'},$uploadedfile));
1.210 albertel 8553: } else {
1.567 raeburn 8554: $r->print(&mt('[_1]Error:[_2] An error ([_3]) occurred when attempting to upload the file, [_4]',
8555: '<span class="LC_error">','</span>',$result,
1.568 raeburn 8556: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183 albertel 8557: }
8558: }
1.174 albertel 8559: if ($symb) {
1.209 ng 8560: $r->print(&scantron_selectphase($r,$uploadedfile));
1.174 albertel 8561: } else {
1.182 albertel 8562: $r->print($doanotherupload);
1.174 albertel 8563: }
1.157 albertel 8564: return '';
8565: }
8566:
1.567 raeburn 8567: sub validate_uploaded_scantron_file {
8568: my ($cdom,$cname,$fname) = @_;
8569: my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
8570: my @lines;
8571: if ($scanlines ne '-1') {
8572: @lines=split("\n",$scanlines,-1);
8573: }
8574: my $output;
8575: if (@lines) {
8576: my (%counts,$max_match_format);
8577: my ($max_match_count,$max_match_pct) = (0,0);
8578: my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
8579: my %idmap = &username_to_idmap($classlist);
8580: foreach my $key (keys(%idmap)) {
8581: my $lckey = lc($key);
8582: $idmap{$lckey} = $idmap{$key};
8583: }
8584: my %unique_formats;
8585: my @formatlines = &get_scantronformat_file();
8586: foreach my $line (@formatlines) {
8587: chomp($line);
8588: my @config = split(/:/,$line);
8589: my $idstart = $config[5];
8590: my $idlength = $config[6];
8591: if (($idstart ne '') && ($idlength > 0)) {
8592: if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
8593: push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]);
8594: } else {
8595: $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
8596: }
8597: }
8598: }
8599: foreach my $key (keys(%unique_formats)) {
8600: my ($idstart,$idlength) = split(':',$key);
8601: %{$counts{$key}} = (
8602: 'found' => 0,
8603: 'total' => 0,
8604: );
8605: foreach my $line (@lines) {
8606: next if ($line =~ /^#/);
8607: next if ($line =~ /^[\s\cz]*$/);
8608: my $id = substr($line,$idstart-1,$idlength);
8609: $id = lc($id);
8610: if (exists($idmap{$id})) {
8611: $counts{$key}{'found'} ++;
8612: }
8613: $counts{$key}{'total'} ++;
8614: }
8615: if ($counts{$key}{'total'}) {
8616: my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
8617: if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
8618: $max_match_pct = $percent_match;
8619: $max_match_format = $key;
8620: $max_match_count = $counts{$key}{'total'};
8621: }
8622: }
8623: }
8624: if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
8625: my $format_descs;
8626: my $numwithformat = @{$unique_formats{$max_match_format}};
8627: for (my $i=0; $i<$numwithformat; $i++) {
8628: my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
8629: if ($i<$numwithformat-2) {
8630: $format_descs .= '"<i>'.$desc.'</i>", ';
8631: } elsif ($i==$numwithformat-2) {
8632: $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
8633: } elsif ($i==$numwithformat-1) {
8634: $format_descs .= '"<i>'.$desc.'</i>"';
8635: }
8636: }
8637: my $showpct = sprintf("%.0f",$max_match_pct).'%';
8638: $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).
8639: '<br />'.&mt('A low percentage of matches results from one of the following:').'<ul>'.
8640: '<li>'.&mt('The file was uploaded to the wrong course').'</li>'.
8641: '<li>'.&mt('The data are not in the format expected for the domain: [_1]',
8642: '<i>'.$cdom.'</i>').'</li>'.
8643: '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
8644: '<li>'.&mt('The course roster is not up to date').'</li>'.
8645: '</ul>';
8646: }
8647: } else {
8648: $output = '<span class="LC_warning">'.&mt('Uploaded file contained no data').'</span>';
8649: }
8650: return $output;
8651: }
8652:
1.202 albertel 8653: sub valid_file {
8654: my ($requested_file)=@_;
8655: foreach my $filename (sort(&scantron_filenames())) {
8656: if ($requested_file eq $filename) { return 1; }
8657: }
8658: return 0;
8659: }
8660:
8661: sub scantron_download_scantron_data {
8662: my ($r)=@_;
1.596.2.12.2. (raeburn 8663:): my ($symb) = &get_symb($r,1);
8664:): my $default_form_data=&defaultFormData($symb);
1.257 albertel 8665: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
8666: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
8667: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 8668: if (! &valid_file($file)) {
1.492 albertel 8669: $r->print('
1.202 albertel 8670: <p>
1.492 albertel 8671: '.&mt('The requested file name was invalid.').'
1.202 albertel 8672: </p>
1.492 albertel 8673: ');
1.596.2.12.2. (raeburn 8674:): $r->print(&show_grading_menu_form($symb));
1.202 albertel 8675: return;
8676: }
8677: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
8678: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
8679: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
8680: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
8681: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
8682: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492 albertel 8683: $r->print('
1.202 albertel 8684: <p>
1.492 albertel 8685: '.&mt('[_1]Original[_2] file as uploaded by the scantron office.',
8686: '<a href="'.$orig.'">','</a>').'
1.202 albertel 8687: </p>
8688: <p>
1.492 albertel 8689: '.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
8690: '<a href="'.$corrected.'">','</a>').'
1.202 albertel 8691: </p>
8692: <p>
1.492 albertel 8693: '.&mt('[_1]Skipped[_2], a file of records that were skipped.',
8694: '<a href="'.$skipped.'">','</a>').'
1.202 albertel 8695: </p>
1.492 albertel 8696: ');
1.596.2.12.2. (raeburn 8697:): $r->print(&show_grading_menu_form($symb));
1.202 albertel 8698: return '';
8699: }
1.157 albertel 8700:
1.523 raeburn 8701: sub checkscantron_results {
8702: my ($r) = @_;
8703: my ($symb)=&get_symb($r);
8704: if (!$symb) {return '';}
8705: my $grading_menu_button=&show_grading_menu_form($symb);
8706: my $cid = $env{'request.course.id'};
1.542 raeburn 8707: my %lettdig = &letter_to_digits();
1.523 raeburn 8708: my $numletts = scalar(keys(%lettdig));
8709: my $cnum = $env{'course.'.$cid.'.num'};
8710: my $cdom = $env{'course.'.$cid.'.domain'};
8711: my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
8712: my %record;
8713: my %scantron_config =
8714: &Apache::grades::get_scantron_config($env{'form.scantron_format'});
1.596.2.12.2. (raeburn 8715:): my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.523 raeburn 8716: my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
8717: my $classlist=&Apache::loncoursedata::get_classlist();
8718: my %idmap=&Apache::grades::username_to_idmap($classlist);
8719: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8720: unless (ref($navmap)) {
8721: $r->print(&navmap_errormsg());
8722: return '';
8723: }
1.523 raeburn 8724: my $map=$navmap->getResourceByUrl($sequence);
1.596.2.12.2. 1(raebur 8725:2): my ($randomorder,@master_seq,%symb_to_resource);
8726:2): if (ref($map)) {
8727:2): $randomorder=$map->randomorder();
8728:2): }
1.557 raeburn 8729: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.596.2.12.2. 1(raebur 8730:2): foreach my $resource (@resources) {
8731:2): if (ref($resource)) {
8732:2): my $ressymb = $resource->symb();
8733:2): push(@master_seq,$ressymb);
8734:2): $symb_to_resource{$ressymb} = $resource;
8735:2): }
8736:2): }
1.557 raeburn 8737: my (%grader_partids_by_symb,%grader_randomlists_by_symb);
1.596.2.12.2. (raeburn 8738:): &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8739:): \%grader_randomlists_by_symb,$bubbles_per_row);
1.554 raeburn 8740: my ($uname,$udom);
1.523 raeburn 8741: my (%scandata,%lastname,%bylast);
8742: $r->print('
8743: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
8744:
8745: my @delayqueue;
8746: my %completedstudents;
8747:
8748: my $count=&Apache::grades::get_todo_count($scanlines,$scan_data);
1.596.2.12.2. (raeburn 8749:): my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1(raebur 8750:2): my ($username,$domain,$started,%ordered);
1.582 raeburn 8751: my $nav_error;
1.596.2.12.2. (raeburn 8752:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 8753: if ($nav_error) {
8754: $r->print(&navmap_errormsg());
8755: return '';
8756: }
1.523 raeburn 8757:
8758: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
8759: 'Processing first student');
8760: my $start=&Time::HiRes::time();
8761: my $i=-1;
8762:
8763: while ($i<$scanlines->{'count'}) {
8764: ($username,$domain,$uname)=('','','');
8765: $i++;
8766: my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
8767: if ($line=~/^[\s\cz]*$/) { next; }
8768: if ($started) {
8769: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
8770: 'last student');
8771: }
8772: $started=1;
8773: my $scan_record=
8774: &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
8775: $scan_data);
8776: unless ($uname=&Apache::grades::scantron_find_student($scan_record,$scan_data,
8777: \%idmap,$i)) {
8778: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
8779: 'Unable to find a student that matches',1);
8780: next;
8781: }
8782: if (exists $completedstudents{$uname}) {
8783: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
8784: 'Student '.$uname.' has multiple sheets',2);
8785: next;
8786: }
8787: my $pid = $scan_record->{'scantron.ID'};
8788: $lastname{$pid} = $scan_record->{'scantron.LastName'};
8789: push(@{$bylast{$lastname{$pid}}},$pid);
8790: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
8791: $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8792: chomp($scandata{$pid});
8793: $scandata{$pid} =~ s/\r$//;
1.596.2.12.2. 1(raebur 8794:2): my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
8795:2): my $user = $uname.':'.$usec;
1.523 raeburn 8796: ($username,$domain)=split(/:/,$uname);
1.596.2.12.2. 1(raebur 8797:2):
8798:2): my $scancode;
8799:2): if ((exists($scan_record->{'scantron.CODE'})) &&
8800:2): (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8801:2): $scancode = $scan_record->{'scantron.CODE'};
8802:2): } else {
8803:2): $scancode = '';
8804:2): }
8805:2):
8806:2): my @mapresources = @resources;
8807:2): if ($randomorder) {
8808:2): @mapresources =
8809:2): &users_order($user,$scancode,$sequence,\@master_seq,\%ordered,
8810:2): \%symb_to_resource);
8811:2): }
1.523 raeburn 8812: my $counter = -1;
1.596.2.12.2. 1(raebur 8813:2): foreach my $resource (@mapresources) {
1.557 raeburn 8814: my $parts;
1.554 raeburn 8815: my $ressymb = $resource->symb();
1.557 raeburn 8816: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8817: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
8818: (my $analysis,$parts) =
1.596.2.12.2. (raeburn 8819:): &scantron_partids_tograde($resource,$env{'request.course.id'},
8820:): $username,$domain,undef,
8821:): $bubbles_per_row);
1.557 raeburn 8822: } else {
8823: $parts = $grader_partids_by_symb{$ressymb};
8824: }
1.542 raeburn 8825: ($counter,my $recording) =
8826: &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
1.554 raeburn 8827: $scandata{$pid},$parts,
1.542 raeburn 8828: \%scantron_config,\%lettdig,$numletts);
8829: $record{$pid} .= $recording;
1.523 raeburn 8830: }
8831: }
8832: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
8833: $r->print('<br />');
8834: my ($okstudents,$badstudents,$numstudents,$passed,$failed);
8835: $passed = 0;
8836: $failed = 0;
8837: $numstudents = 0;
8838: foreach my $last (sort(keys(%bylast))) {
8839: if (ref($bylast{$last}) eq 'ARRAY') {
8840: foreach my $pid (sort(@{$bylast{$last}})) {
8841: my $showscandata = $scandata{$pid};
8842: my $showrecord = $record{$pid};
8843: $showscandata =~ s/\s/ /g;
8844: $showrecord =~ s/\s/ /g;
8845: if ($scandata{$pid} eq $record{$pid}) {
8846: my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
8847: $okstudents .= '<tr class="'.$css_class.'">'.
1.581 www 8848: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
1.523 raeburn 8849: '</tr>'."\n".
8850: '<tr class="'.$css_class.'">'."\n".
8851: '<td>Submissions</td><td>'.$showrecord.'</td></tr>'."\n";
8852: $passed ++;
8853: } else {
8854: my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
1.581 www 8855: $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 8856: '</tr>'."\n".
8857: '<tr class="'.$css_class.'">'."\n".
8858: '<td>Submissions</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
8859: '</tr>'."\n";
8860: $failed ++;
8861: }
8862: $numstudents ++;
8863: }
8864: }
8865: }
1.596.2.4 raeburn 8866: $r->print('<p>'.
1.596.2.8 raeburn 8867: &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).',
1.596.2.4 raeburn 8868: '<b>',
8869: $numstudents,
8870: '</b>',
8871: $env{'form.scantron_maxbubble'}).
8872: '</p>'
8873: );
1.523 raeburn 8874: $r->print('<p>'.&mt('Exact matches for <b>[quant,_1,student]</b>.',$passed).'<br />'.&mt('Discrepancies detected for <b>[quant,_1,student]</b>.',$failed).'</p>');
8875: if ($passed) {
1.572 www 8876: $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 8877: $r->print(&Apache::loncommon::start_data_table()."\n".
8878: &Apache::loncommon::start_data_table_header_row()."\n".
8879: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
8880: &Apache::loncommon::end_data_table_header_row()."\n".
8881: $okstudents."\n".
8882: &Apache::loncommon::end_data_table().'<br />');
8883: }
8884: if ($failed) {
1.572 www 8885: $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 8886: $r->print(&Apache::loncommon::start_data_table()."\n".
8887: &Apache::loncommon::start_data_table_header_row()."\n".
8888: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
8889: &Apache::loncommon::end_data_table_header_row()."\n".
8890: $badstudents."\n".
8891: &Apache::loncommon::end_data_table()).'<br />'.
1.572 www 8892: &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 8893: }
8894: $r->print('</form><br />'.$grading_menu_button);
8895: return;
8896: }
8897:
1.542 raeburn 8898: sub verify_scantron_grading {
1.554 raeburn 8899: my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
1.542 raeburn 8900: $scantron_config,$lettdig,$numletts) = @_;
8901: my ($record,%expected,%startpos);
8902: return ($counter,$record) if (!ref($resource));
8903: return ($counter,$record) if (!$resource->is_problem());
8904: my $symb = $resource->symb();
1.554 raeburn 8905: return ($counter,$record) if (ref($partids) ne 'ARRAY');
8906: foreach my $part_id (@{$partids}) {
1.542 raeburn 8907: $counter ++;
8908: $expected{$part_id} = 0;
8909: if ($env{"form.scantron.sub_bubblelines.$counter"}) {
8910: my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$counter"});
8911: foreach my $item (@sub_lines) {
8912: $expected{$part_id} += $item;
8913: }
8914: } else {
8915: $expected{$part_id} = $env{"form.scantron.bubblelines.$counter"};
8916: }
8917: $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
8918: }
8919: if ($symb) {
8920: my %recorded;
8921: my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
8922: if ($returnhash{'version'}) {
8923: my %lasthash=();
8924: my $version;
8925: for ($version=1;$version<=$returnhash{'version'};$version++) {
8926: foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
8927: $lasthash{$key}=$returnhash{$version.':'.$key};
8928: }
8929: }
8930: foreach my $key (keys(%lasthash)) {
8931: if ($key =~ /\.scantron$/) {
8932: my $value = &unescape($lasthash{$key});
8933: my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
8934: if ($value eq '') {
8935: for (my $i=0; $i<$expected{$part_id}; $i++) {
8936: for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
8937: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8938: }
8939: }
8940: } else {
8941: my @tocheck;
8942: my @items = split(//,$value);
8943: if (($scantron_config->{'Qon'} eq 'letter') ||
8944: ($scantron_config->{'Qon'} eq 'number')) {
8945: if (@items < $expected{$part_id}) {
8946: my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
8947: my @singles = split(//,$fragment);
8948: foreach my $pos (@singles) {
8949: if ($pos eq ' ') {
8950: push(@tocheck,$pos);
8951: } else {
8952: my $next = shift(@items);
8953: push(@tocheck,$next);
8954: }
8955: }
8956: } else {
8957: @tocheck = @items;
8958: }
8959: foreach my $letter (@tocheck) {
8960: if ($scantron_config->{'Qon'} eq 'letter') {
8961: if ($letter !~ /^[A-J]$/) {
8962: $letter = $scantron_config->{'Qoff'};
8963: }
8964: $recorded{$part_id} .= $letter;
8965: } elsif ($scantron_config->{'Qon'} eq 'number') {
8966: my $digit;
8967: if ($letter !~ /^[A-J]$/) {
8968: $digit = $scantron_config->{'Qoff'};
8969: } else {
8970: $digit = $lettdig->{$letter};
8971: }
8972: $recorded{$part_id} .= $digit;
8973: }
8974: }
8975: } else {
8976: @tocheck = @items;
8977: for (my $i=0; $i<$expected{$part_id}; $i++) {
8978: my $curr_sub = shift(@tocheck);
8979: my $digit;
8980: if ($curr_sub =~ /^[A-J]$/) {
8981: $digit = $lettdig->{$curr_sub}-1;
8982: }
8983: if ($curr_sub eq 'J') {
8984: $digit += scalar($numletts);
8985: }
8986: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
8987: if ($j == $digit) {
8988: $recorded{$part_id} .= $scantron_config->{'Qon'};
8989: } else {
8990: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8991: }
8992: }
8993: }
8994: }
8995: }
8996: }
8997: }
8998: }
1.554 raeburn 8999: foreach my $part_id (@{$partids}) {
1.542 raeburn 9000: if ($recorded{$part_id} eq '') {
9001: for (my $i=0; $i<$expected{$part_id}; $i++) {
9002: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
9003: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9004: }
9005: }
9006: }
9007: $record .= $recorded{$part_id};
9008: }
9009: }
9010: return ($counter,$record);
9011: }
9012:
9013: sub letter_to_digits {
9014: my %lettdig = (
9015: A => 1,
9016: B => 2,
9017: C => 3,
9018: D => 4,
9019: E => 5,
9020: F => 6,
9021: G => 7,
9022: H => 8,
9023: I => 9,
9024: J => 0,
9025: );
9026: return %lettdig;
9027: }
9028:
1.423 albertel 9029:
1.75 albertel 9030: #-------- end of section for handling grading scantron forms -------
9031: #
9032: #-------------------------------------------------------------------
9033:
1.72 ng 9034: #-------------------------- Menu interface -------------------------
9035: #
9036: #--- Show a Grading Menu button - Calls the next routine ---
9037: sub show_grading_menu_form {
1.324 albertel 9038: my ($symb)=@_;
1.125 ng 9039: my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.418 albertel 9040: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 9041: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.72 ng 9042: '<input type="hidden" name="command" value="gradingmenu" />'."\n".
1.478 albertel 9043: '<input type="submit" name="submit" value="'.&mt('Grading Menu').'" />'."\n".
1.72 ng 9044: '</form>'."\n";
9045: return $result;
9046: }
9047:
1.77 ng 9048: # -- Retrieve choices for grading form
9049: sub savedState {
9050: my %savedState = ();
1.257 albertel 9051: if ($env{'form.saveState'}) {
9052: foreach (split(/:/,$env{'form.saveState'})) {
1.77 ng 9053: my ($key,$value) = split(/=/,$_,2);
9054: $savedState{$key} = $value;
9055: }
9056: }
9057: return \%savedState;
9058: }
1.76 ng 9059:
1.596.2.12.2. (raeburn 9060:): #--- Href with symb and command ---
9061:):
9062:): sub href_symb_cmd {
9063:): my ($symb,$cmd)=@_;
9064:): return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&command='.$cmd;
9065:): }
9066:):
1.443 banghart 9067: sub grading_menu {
9068: my ($request) = @_;
9069: my ($symb)=&get_symb($request);
9070: if (!$symb) {return '';}
9071: my $probTitle = &Apache::lonnet::gettitle($symb);
9072: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
9073:
1.444 banghart 9074: $request->print($table);
1.443 banghart 9075: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
9076: 'handgrade'=>$hdgrade,
9077: 'probTitle'=>$probTitle,
9078: 'command'=>'submit_options',
9079: 'saveState'=>"",
9080: 'gradingMenu'=>1,
9081: 'showgrading'=>"yes");
1.538 schulted 9082:
9083: my $url1 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9084:
1.443 banghart 9085: $fields{'command'} = 'csvform';
1.538 schulted 9086: my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9087:
1.443 banghart 9088: $fields{'command'} = 'processclicker';
1.538 schulted 9089: my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9090:
1.443 banghart 9091: $fields{'command'} = 'scantron_selectphase';
1.538 schulted 9092: my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9093:
9094: my @menu = ({ categorytitle=>'Course Grading',
9095: items =>[
9096: { linktext => 'Manual Grading/View Submissions',
9097: url => $url1,
9098: permission => 'F',
9099: icon => 'edit-find-replace.png',
9100: linktitle => 'Start the process of hand grading submissions.'
9101: },
9102: { linktext => 'Upload Scores',
9103: url => $url2,
9104: permission => 'F',
9105: icon => 'uploadscores.png',
9106: linktitle => 'Specify a file containing the class scores for current resource.'
9107: },
9108: { linktext => 'Process Clicker',
9109: url => $url3,
9110: permission => 'F',
9111: icon => 'addClickerInfoFile.png',
9112: linktitle => 'Specify a file containing the clicker information for this resource.'
9113: },
1.587 raeburn 9114: { linktext => 'Grade/Manage/Review Bubblesheets',
1.538 schulted 9115: url => $url4,
9116: permission => 'F',
9117: icon => 'stat.png',
1.596.2.4 raeburn 9118: linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
1.538 schulted 9119: }
9120: ]
9121: });
9122:
9123: #$fields{'command'} = 'verify';
9124: #$url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.443 banghart 9125: #
9126: # Create the menu
9127: my $Str;
1.444 banghart 9128: # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
1.445 banghart 9129: $Str .= '<form method="post" action="" name="gradingMenu">';
9130: $Str .= '<input type="hidden" name="command" value="" />'.
9131: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
9132: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
1.476 albertel 9133: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.445 banghart 9134: '<input type="hidden" name="saveState" value="" />'."\n".
9135: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
9136: '<input type="hidden" name="showgrading" value="yes" />'."\n";
9137:
1.538 schulted 9138: $Str .= Apache::lonhtmlcommon::generate_menu(@menu);
9139: #$menudata->{'jscript'}
1.584 bisitz 9140: $Str .='<hr /><input type="button" value="'.&mt('Verify Receipt No.').'" '.
1.589 bisitz 9141: ' onclick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
1.538 schulted 9142: ' /> '.
9143: &Apache::lonnet::recprefix($env{'request.course.id'}).
1.589 bisitz 9144: '-<input type="text" name="receipt" size="4" onchange="javascript:checkReceiptNo(this.form,\'OK\')" />';
1.538 schulted 9145:
1.444 banghart 9146: $Str .="</form>\n";
1.539 riegler 9147: my $receiptalert = &mt("Please enter a receipt number given by a student in the receipt box.");
1.443 banghart 9148: $request->print(<<GRADINGMENUJS);
9149: <script type="text/javascript" language="javascript">
9150: function checkChoice(formname,val,cmdx) {
9151: if (val <= 2) {
9152: var cmd = radioSelection(formname.radioChoice);
9153: var cmdsave = cmd;
9154: } else {
9155: cmd = cmdx;
9156: cmdsave = 'submission';
9157: }
9158: formname.command.value = cmd;
9159: if (val < 5) formname.submit();
9160: if (val == 5) {
1.458 banghart 9161: if (!checkReceiptNo(formname,'notOK')) {
9162: return false;
9163: } else {
9164: formname.submit();
9165: }
1.445 banghart 9166: }
9167: }
1.443 banghart 9168:
9169: function checkReceiptNo(formname,nospace) {
9170: var receiptNo = formname.receipt.value;
9171: var checkOpt = false;
9172: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
9173: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
9174: if (checkOpt) {
1.539 riegler 9175: alert("$receiptalert");
1.443 banghart 9176: formname.receipt.value = "";
9177: formname.receipt.focus();
9178: return false;
9179: }
9180: return true;
9181: }
9182: </script>
9183: GRADINGMENUJS
9184: &commonJSfunctions($request);
9185: return $Str;
9186: }
9187:
9188:
9189: #--- Displays the submissions first page -------
9190: sub submit_options {
1.72 ng 9191: my ($request) = @_;
1.324 albertel 9192: my ($symb)=&get_symb($request);
1.72 ng 9193: if (!$symb) {return '';}
1.76 ng 9194: my $probTitle = &Apache::lonnet::gettitle($symb);
1.72 ng 9195:
1.539 riegler 9196: my $receiptalert = &mt("Please enter a receipt number given by a student in the receipt box.");
1.72 ng 9197: $request->print(<<GRADINGMENUJS);
9198: <script type="text/javascript" language="javascript">
1.116 ng 9199: function checkChoice(formname,val,cmdx) {
9200: if (val <= 2) {
9201: var cmd = radioSelection(formname.radioChoice);
1.118 ng 9202: var cmdsave = cmd;
1.116 ng 9203: } else {
9204: cmd = cmdx;
1.118 ng 9205: cmdsave = 'submission';
1.116 ng 9206: }
9207: formname.command.value = cmd;
1.118 ng 9208: formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145 albertel 9209: ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116 ng 9210: if (val < 5) formname.submit();
9211: if (val == 5) {
1.72 ng 9212: if (!checkReceiptNo(formname,'notOK')) { return false;}
9213: formname.submit();
9214: }
1.238 albertel 9215: if (val < 7) formname.submit();
1.72 ng 9216: }
9217:
9218: function checkReceiptNo(formname,nospace) {
9219: var receiptNo = formname.receipt.value;
9220: var checkOpt = false;
9221: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
9222: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
9223: if (checkOpt) {
1.539 riegler 9224: alert("$receiptalert");
1.72 ng 9225: formname.receipt.value = "";
9226: formname.receipt.focus();
9227: return false;
9228: }
9229: return true;
9230: }
9231: </script>
9232: GRADINGMENUJS
1.118 ng 9233: &commonJSfunctions($request);
1.324 albertel 9234: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
1.473 albertel 9235: my $result;
1.76 ng 9236: my (undef,$sections) = &getclasslist('all','0');
1.77 ng 9237: my $savedState = &savedState();
1.118 ng 9238: my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77 ng 9239: my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118 ng 9240: my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77 ng 9241: my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72 ng 9242:
1.533 bisitz 9243: # Preselect sections
9244: my $selsec="";
9245: if (ref($sections)) {
9246: foreach my $section (sort(@$sections)) {
9247: $selsec.='<option value="'.$section.'" '.
9248: ($saveSec eq $section ? 'selected="selected"':'').'>'.$section.'</option>'."\n";
9249: }
9250: }
9251:
1.72 ng 9252: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.418 albertel 9253: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.72 ng 9254: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
9255: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.116 ng 9256: '<input type="hidden" name="command" value="" />'."\n".
1.77 ng 9257: '<input type="hidden" name="saveState" value="" />'."\n".
1.124 ng 9258: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72 ng 9259: '<input type="hidden" name="showgrading" value="yes" />'."\n";
9260:
1.472 albertel 9261: $result.='
1.533 bisitz 9262: <h2>
9263: '.&mt('Grade Current Resource').'
9264: </h2>
9265: <div>
9266: '.$table.'
9267: </div>
9268:
1.537 harmsja 9269: <div class="LC_columnSection">
9270:
1.533 bisitz 9271: <fieldset>
9272: <legend>
9273: '.&mt('Sections').'
9274: </legend>
9275: <select name="section" multiple="multiple" size="5">'."\n";
9276: $result.= $selsec;
1.401 albertel 9277: $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> ';
1.472 albertel 9278: $result.='
1.533 bisitz 9279: </fieldset>
1.537 harmsja 9280:
1.533 bisitz 9281: <fieldset>
9282: <legend>
9283: '.&mt('Groups').'
9284: </legend>
9285: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
9286: </fieldset>
1.537 harmsja 9287:
1.533 bisitz 9288: <fieldset>
9289: <legend>
9290: '.&mt('Access Status').'
9291: </legend>
9292: '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'
9293: </fieldset>
1.537 harmsja 9294:
1.533 bisitz 9295: <fieldset>
9296: <legend>
9297: '.&mt('Submission Status').'
9298: </legend>
9299: <select name="submitonly" size="5">
1.473 albertel 9300: <option value="yes" '. ($saveSub eq 'yes' ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>
9301: <option value="queued" '. ($saveSub eq 'queued' ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>
9302: <option value="graded" '. ($saveSub eq 'graded' ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>
9303: <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>
9304: <option value="all" '. ($saveSub eq 'all' ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>
1.533 bisitz 9305: </select>
9306: </fieldset>
1.537 harmsja 9307:
1.533 bisitz 9308: </div>
9309:
9310: <br />
9311: <div>
9312: <div>
1.473 albertel 9313: <label>
9314: <input type="radio" name="radioChoice" value="submission" '.
9315: ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.
9316: &mt('Select individual students to grade and view submissions.').'
9317: </label>
9318: </div>
1.533 bisitz 9319: <div>
1.473 albertel 9320: <label>
9321: <input type="radio" name="radioChoice" value="viewgrades" '.
9322: ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
9323: &mt('Grade all selected students in a grading table.').'
9324: </label>
9325: </div>
1.533 bisitz 9326: <div>
1.589 bisitz 9327: <input type="button" onclick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next').' →" />
1.473 albertel 9328: </div>
1.472 albertel 9329: </div>
1.533 bisitz 9330:
9331:
1.473 albertel 9332: <h2>
9333: '.&mt('Grade Complete Folder for One Student').'
9334: </h2>
1.533 bisitz 9335: <div>
9336: <div>
1.473 albertel 9337: <label>
9338: <input type="radio" name="radioChoice" value="pickStudentPage" '.
9339: ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
9340: &mt('The <b>complete</b> page/sequence/folder: For one student').'
9341: </label>
9342: </div>
1.533 bisitz 9343: <div>
1.589 bisitz 9344: <input type="button" onclick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next').' →" />
1.473 albertel 9345: </div>
1.472 albertel 9346: </div>
9347: </form>';
1.499 albertel 9348: $result .= &show_grading_menu_form($symb);
1.44 ng 9349: return $result;
1.2 albertel 9350: }
9351:
1.285 albertel 9352: sub reset_perm {
9353: undef(%perm);
9354: }
9355:
9356: sub init_perm {
9357: &reset_perm();
1.300 albertel 9358: foreach my $test_perm ('vgr','mgr','opa') {
9359:
9360: my $scope = $env{'request.course.id'};
9361: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
9362:
9363: $scope .= '/'.$env{'request.course.sec'};
9364: if ( $perm{$test_perm}=
9365: &Apache::lonnet::allowed($test_perm,$scope)) {
9366: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
9367: } else {
9368: delete($perm{$test_perm});
9369: }
1.285 albertel 9370: }
9371: }
9372: }
9373:
1.596.2.12.2. (raeburn 9374:): sub init_old_essays {
9375:): my ($symb,$apath,$adom,$aname) = @_;
9376:): if ($symb ne '') {
9377:): my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
9378:): if (keys(%essays) > 0) {
9379:): $old_essays{$symb} = \%essays;
9380:): }
9381:): }
9382:): return;
9383:): }
9384:):
9385:): sub reset_old_essays {
9386:): undef(%old_essays);
9387:): }
9388:):
1.400 www 9389: sub gather_clicker_ids {
1.408 albertel 9390: my %clicker_ids;
1.400 www 9391:
9392: my $classlist = &Apache::loncoursedata::get_classlist();
9393:
9394: # Set up a couple variables.
1.407 albertel 9395: my $username_idx = &Apache::loncoursedata::CL_SNAME();
9396: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 9397: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 9398:
1.407 albertel 9399: foreach my $student (keys(%$classlist)) {
1.438 www 9400: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 9401: my $username = $classlist->{$student}->[$username_idx];
9402: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 9403: my $clickers =
1.408 albertel 9404: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 9405: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9406: $id=~s/^[\#0]+//;
1.421 www 9407: $id=~s/[\-\:]//g;
1.407 albertel 9408: if (exists($clicker_ids{$id})) {
1.408 albertel 9409: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 9410: } else {
1.408 albertel 9411: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 9412: }
9413: }
9414: }
1.407 albertel 9415: return %clicker_ids;
1.400 www 9416: }
9417:
1.402 www 9418: sub gather_adv_clicker_ids {
1.408 albertel 9419: my %clicker_ids;
1.402 www 9420: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
9421: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9422: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 9423: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 9424: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
9425: my ($puname,$pudom)=split(/\:/,$person);
9426: my $clickers =
1.408 albertel 9427: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 9428: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9429: $id=~s/^[\#0]+//;
1.421 www 9430: $id=~s/[\-\:]//g;
1.408 albertel 9431: if (exists($clicker_ids{$id})) {
9432: $clicker_ids{$id}.=','.$puname.':'.$pudom;
9433: } else {
9434: $clicker_ids{$id}=$puname.':'.$pudom;
9435: }
1.405 www 9436: }
1.402 www 9437: }
9438: }
1.407 albertel 9439: return %clicker_ids;
1.402 www 9440: }
9441:
1.413 www 9442: sub clicker_grading_parameters {
9443: return ('gradingmechanism' => 'scalar',
9444: 'upfiletype' => 'scalar',
9445: 'specificid' => 'scalar',
9446: 'pcorrect' => 'scalar',
9447: 'pincorrect' => 'scalar');
9448: }
9449:
1.400 www 9450: sub process_clicker {
9451: my ($r)=@_;
9452: my ($symb)=&get_symb($r);
9453: if (!$symb) {return '';}
9454: my $result=&checkforfile_js();
9455: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
9456: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
9457: $result.=$table;
9458: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
9459: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.538 schulted 9460: $result.=' <b>'.&mt('Specify a file containing the clicker information for this resource.').
9461: '</b></td></tr>'."\n";
1.596.2.4 raeburn 9462: $result.='<tr bgcolor="#ffffe6"><td>'."\n";
1.413 www 9463: # Attempt to restore parameters from last session, set defaults if not present
9464: my %Saveable_Parameters=&clicker_grading_parameters();
9465: &Apache::loncommon::restore_course_settings('grades_clicker',
9466: \%Saveable_Parameters);
9467: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
9468: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
9469: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
9470: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
9471:
9472: my %checked;
1.521 www 9473: foreach my $gradingmechanism ('attendance','personnel','specific','given') {
1.413 www 9474: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
1.569 bisitz 9475: $checked{$gradingmechanism}=' checked="checked"';
1.413 www 9476: }
9477: }
9478:
1.400 www 9479: my $upload=&mt("Upload File");
9480: my $type=&mt("Type");
1.402 www 9481: my $attendance=&mt("Award points just for participation");
9482: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 9483: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.521 www 9484: my $given=&mt("Correctness determined from given list of answers").' '.
9485: '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
1.402 www 9486: my $pcorrect=&mt("Percentage points for correct solution");
9487: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 9488: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.596.2.1 raeburn 9489: {'iclicker' => 'i>clicker',
1.596.2.12.2. (raeburn 9490:): 'interwrite' => 'interwrite PRS',
9491:): 'turning' => 'Turning Technologies'});
1.418 albertel 9492: $symb = &Apache::lonenc::check_encrypt($symb);
1.400 www 9493: $result.=<<ENDUPFORM;
1.402 www 9494: <script type="text/javascript">
9495: function sanitycheck() {
9496: // Accept only integer percentages
9497: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
9498: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
9499: // Find out grading choice
9500: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9501: if (document.forms.gradesupload.gradingmechanism[i].checked) {
9502: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
9503: }
9504: }
9505: // By default, new choice equals user selection
9506: newgradingchoice=gradingchoice;
9507: // Not good to give more points for false answers than correct ones
9508: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
9509: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
9510: }
9511: // If new choice is attendance only, and old choice was correctness-based, restore defaults
9512: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
9513: document.forms.gradesupload.pcorrect.value=100;
9514: document.forms.gradesupload.pincorrect.value=100;
9515: }
9516: // If the values are different, cannot be attendance only
9517: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
9518: (gradingchoice=='attendance')) {
9519: newgradingchoice='personnel';
9520: }
9521: // Change grading choice to new one
9522: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9523: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
9524: document.forms.gradesupload.gradingmechanism[i].checked=true;
9525: } else {
9526: document.forms.gradesupload.gradingmechanism[i].checked=false;
9527: }
9528: }
9529: // Remember the old state
9530: document.forms.gradesupload.waschecked.value=newgradingchoice;
9531: }
9532: </script>
1.400 www 9533: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
9534: <input type="hidden" name="symb" value="$symb" />
9535: <input type="hidden" name="command" value="processclickerfile" />
9536: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
9537: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
9538: <input type="file" name="upfile" size="50" />
9539: <br /><label>$type: $selectform</label>
1.589 bisitz 9540: <br /><label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
9541: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
9542: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
1.414 www 9543: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.589 bisitz 9544: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
1.521 www 9545: <br />
9546: <input type="text" name="givenanswer" size="50" />
1.413 www 9547: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
1.589 bisitz 9548: <br /><label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
9549: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
9550: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.400 www 9551: </form>
9552: ENDUPFORM
9553: $result.='</td></tr></table>'."\n".
9554: '</td></tr></table><br /><br />'."\n";
9555: $result.=&show_grading_menu_form($symb);
9556: return $result;
9557: }
9558:
9559: sub process_clicker_file {
9560: my ($r)=@_;
9561: my ($symb)=&get_symb($r);
9562: if (!$symb) {return '';}
1.413 www 9563:
9564: my %Saveable_Parameters=&clicker_grading_parameters();
9565: &Apache::loncommon::store_course_settings('grades_clicker',
9566: \%Saveable_Parameters);
9567:
1.400 www 9568: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.404 www 9569: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 9570: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
9571: return $result.&show_grading_menu_form($symb);
1.404 www 9572: }
1.522 www 9573: if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
1.521 www 9574: $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
9575: return $result.&show_grading_menu_form($symb);
9576: }
1.522 www 9577: my $foundgiven=0;
1.521 www 9578: if ($env{'form.gradingmechanism'} eq 'given') {
9579: $env{'form.givenanswer'}=~s/^\s*//gs;
9580: $env{'form.givenanswer'}=~s/\s*$//gs;
1.596.2.4 raeburn 9581: $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
1.521 www 9582: $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
1.522 www 9583: my @answers=split(/\,/,$env{'form.givenanswer'});
9584: $foundgiven=$#answers+1;
1.521 www 9585: }
1.407 albertel 9586: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 9587: my %correct_ids;
1.404 www 9588: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 9589: %correct_ids=&gather_adv_clicker_ids();
1.404 www 9590: }
9591: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 9592: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
9593: $correct_id=~tr/a-z/A-Z/;
9594: $correct_id=~s/\s//gs;
9595: $correct_id=~s/^[\#0]+//;
1.421 www 9596: $correct_id=~s/[\-\:]//g;
1.414 www 9597: if ($correct_id) {
9598: $correct_ids{$correct_id}='specified';
9599: }
9600: }
1.400 www 9601: }
1.404 www 9602: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 9603: $result.=&mt('Score based on attendance only');
1.521 www 9604: } elsif ($env{'form.gradingmechanism'} eq 'given') {
1.522 www 9605: $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
1.404 www 9606: } else {
1.408 albertel 9607: my $number=0;
1.411 www 9608: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 9609: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 9610: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 9611: if ($correct_ids{$id} eq 'specified') {
9612: $result.=&mt('specified');
9613: } else {
9614: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
9615: $result.=&Apache::loncommon::plainname($uname,$udom);
9616: }
9617: $number++;
9618: }
1.411 www 9619: $result.="</p>\n";
1.408 albertel 9620: if ($number==0) {
9621: $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
9622: return $result.&show_grading_menu_form($symb);
9623: }
1.404 www 9624: }
1.405 www 9625: if (length($env{'form.upfile'}) < 2) {
1.407 albertel 9626: $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
9627: '<span class="LC_error">',
9628: '</span>',
9629: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.405 www 9630: return $result.&show_grading_menu_form($symb);
9631: }
1.410 www 9632:
9633: # Were able to get all the info needed, now analyze the file
9634:
1.411 www 9635: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 9636: $symb = &Apache::lonenc::check_encrypt($symb);
1.410 www 9637: my $heading=&mt('Scanning clicker file');
9638: $result.=(<<ENDHEADER);
9639: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
9640: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
1.596.2.4 raeburn 9641: <b>$heading</b></td></tr><tr bgcolor="#ffffe6"><td>
1.410 www 9642: <form method="post" action="/adm/grades" name="clickeranalysis">
9643: <input type="hidden" name="symb" value="$symb" />
9644: <input type="hidden" name="command" value="assignclickergrades" />
9645: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
9646: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.411 www 9647: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
9648: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
9649: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 9650: ENDHEADER
1.522 www 9651: if ($env{'form.gradingmechanism'} eq 'given') {
9652: $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
9653: }
1.408 albertel 9654: my %responses;
9655: my @questiontitles;
1.405 www 9656: my $errormsg='';
9657: my $number=0;
9658: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 9659: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 9660: }
1.419 www 9661: if ($env{'form.upfiletype'} eq 'interwrite') {
9662: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
9663: }
1.596.2.12.2. (raeburn 9664:): if ($env{'form.upfiletype'} eq 'turning') {
9665:): ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
9666:): }
1.411 www 9667: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
9668: '<input type="hidden" name="number" value="'.$number.'" />'.
9669: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
9670: $env{'form.pcorrect'},$env{'form.pincorrect'}).
9671: '<br />';
1.522 www 9672: if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
9673: $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
9674: return $result.&show_grading_menu_form($symb);
9675: }
1.414 www 9676: # Remember Question Titles
9677: # FIXME: Possibly need delimiter other than ":"
9678: for (my $i=0;$i<$number;$i++) {
9679: $result.='<input type="hidden" name="question:'.$i.'" value="'.
9680: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
9681: }
1.411 www 9682: my $correct_count=0;
9683: my $student_count=0;
9684: my $unknown_count=0;
1.414 www 9685: # Match answers with usernames
9686: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 9687: foreach my $id (keys(%responses)) {
1.410 www 9688: if ($correct_ids{$id}) {
1.414 www 9689: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 9690: $correct_count++;
1.410 www 9691: } elsif ($clicker_ids{$id}) {
1.437 www 9692: if ($clicker_ids{$id}=~/\,/) {
9693: # More than one user with the same clicker!
9694: $result.="\n<hr />".&mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
9695: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
9696: "<select name='multi".$id."'>";
9697: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
9698: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
9699: }
9700: $result.='</select>';
9701: $unknown_count++;
9702: } else {
9703: # Good: found one and only one user with the right clicker
9704: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
9705: $student_count++;
9706: }
1.410 www 9707: } else {
1.411 www 9708: $result.="\n<hr />".&mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
9709: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
9710: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
9711: "\n".&mt("Domain").": ".
9712: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
1.596.2.4 raeburn 9713: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
1.411 www 9714: $unknown_count++;
1.410 www 9715: }
1.405 www 9716: }
1.412 www 9717: $result.='<hr />'.
9718: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
1.521 www 9719: if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
1.412 www 9720: if ($correct_count==0) {
9721: $errormsg.="Found no correct answers answers for grading!";
9722: } elsif ($correct_count>1) {
1.414 www 9723: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 9724: }
9725: }
1.428 www 9726: if ($number<1) {
9727: $errormsg.="Found no questions.";
9728: }
1.412 www 9729: if ($errormsg) {
9730: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
9731: } else {
9732: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
9733: }
9734: $result.='</form></td></tr></table>'."\n".
1.410 www 9735: '</td></tr></table><br /><br />'."\n";
1.404 www 9736: return $result.&show_grading_menu_form($symb);
1.400 www 9737: }
9738:
1.405 www 9739: sub iclicker_eval {
1.406 www 9740: my ($questiontitles,$responses)=@_;
1.405 www 9741: my $number=0;
9742: my $errormsg='';
9743: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 9744: my %components=&Apache::loncommon::record_sep($line);
9745: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 9746: if ($entries[0] eq 'Question') {
9747: for (my $i=3;$i<$#entries;$i+=6) {
9748: $$questiontitles[$number]=$entries[$i];
9749: $number++;
9750: }
9751: }
9752: if ($entries[0]=~/^\#/) {
9753: my $id=$entries[0];
9754: my @idresponses;
9755: $id=~s/^[\#0]+//;
9756: for (my $i=0;$i<$number;$i++) {
9757: my $idx=3+$i*6;
1.596.2.4 raeburn 9758: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
1.408 albertel 9759: push(@idresponses,$entries[$idx]);
9760: }
9761: $$responses{$id}=join(',',@idresponses);
9762: }
1.405 www 9763: }
9764: return ($errormsg,$number);
9765: }
9766:
1.419 www 9767: sub interwrite_eval {
9768: my ($questiontitles,$responses)=@_;
9769: my $number=0;
9770: my $errormsg='';
1.420 www 9771: my $skipline=1;
9772: my $questionnumber=0;
9773: my %idresponses=();
1.419 www 9774: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
9775: my %components=&Apache::loncommon::record_sep($line);
9776: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 9777: if ($entries[1] eq 'Time') { $skipline=0; next; }
9778: if ($entries[1] eq 'Response') { $skipline=1; }
9779: next if $skipline;
9780: if ($entries[0]!=$questionnumber) {
9781: $questionnumber=$entries[0];
9782: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
9783: $number++;
1.419 www 9784: }
1.420 www 9785: my $id=$entries[4];
9786: $id=~s/^[\#0]+//;
1.421 www 9787: $id=~s/^v\d*\://i;
9788: $id=~s/[\-\:]//g;
1.420 www 9789: $idresponses{$id}[$number]=$entries[6];
9790: }
1.524 raeburn 9791: foreach my $id (keys(%idresponses)) {
1.420 www 9792: $$responses{$id}=join(',',@{$idresponses{$id}});
9793: $$responses{$id}=~s/^\s*\,//;
1.419 www 9794: }
9795: return ($errormsg,$number);
9796: }
9797:
1.596.2.12.2. (raeburn 9798:): sub turning_eval {
9799:): my ($questiontitles,$responses)=@_;
9800:): my $number=0;
9801:): my $errormsg='';
9802:): foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
9803:): my %components=&Apache::loncommon::record_sep($line);
9804:): my @entries=map {$components{$_}} (sort(keys(%components)));
9805:): if ($#entries>$number) { $number=$#entries; }
9806:): my $id=$entries[0];
9807:): my @idresponses;
9808:): $id=~s/^[\#0]+//;
9809:): unless ($id) { next; }
9810:): for (my $idx=1;$idx<=$#entries;$idx++) {
9811:): $entries[$idx]=~s/\,/\;/g;
9812:): $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
9813:): push(@idresponses,$entries[$idx]);
9814:): }
9815:): $$responses{$id}=join(',',@idresponses);
9816:): }
9817:): for (my $i=1; $i<=$number; $i++) {
9818:): $$questiontitles[$i]=&mt('Question [_1]',$i);
9819:): }
9820:): return ($errormsg,$number);
9821:): }
9822:):
1.414 www 9823: sub assign_clicker_grades {
9824: my ($r)=@_;
9825: my ($symb)=&get_symb($r);
9826: if (!$symb) {return '';}
1.416 www 9827: # See which part we are saving to
1.582 raeburn 9828: my $res_error;
9829: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
9830: if ($res_error) {
9831: return &navmap_errormsg();
9832: }
1.416 www 9833: # FIXME: This should probably look for the first handgradeable part
9834: my $part=$$partlist[0];
9835: # Start screen output
1.596.2.10 raeburn 9836: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.596.2.4 raeburn 9837:
1.596.2.10 raeburn 9838: $result .= '<br />'.
9839: &Apache::loncommon::start_data_table().
1.596.2.4 raeburn 9840: &Apache::loncommon::start_data_table_header_row().
9841: '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
9842: &Apache::loncommon::end_data_table_header_row().
9843: &Apache::loncommon::start_data_table_row().'<td>';
1.416 www 9844:
1.414 www 9845: # Get correct result
9846: # FIXME: Possibly need delimiter other than ":"
9847: my @correct=();
1.415 www 9848: my $gradingmechanism=$env{'form.gradingmechanism'};
9849: my $number=$env{'form.number'};
9850: if ($gradingmechanism ne 'attendance') {
1.414 www 9851: foreach my $key (keys(%env)) {
9852: if ($key=~/^form\.correct\:/) {
9853: my @input=split(/\,/,$env{$key});
9854: for (my $i=0;$i<=$#input;$i++) {
9855: if (($correct[$i]) && ($input[$i]) &&
9856: ($correct[$i] ne $input[$i])) {
9857: $result.='<br /><span class="LC_warning">'.
9858: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
9859: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
1.596.2.4 raeburn 9860: } elsif (($input[$i]) || ($input[$i] eq '0')) {
1.414 www 9861: $correct[$i]=$input[$i];
9862: }
9863: }
9864: }
9865: }
1.415 www 9866: for (my $i=0;$i<$number;$i++) {
1.596.2.4 raeburn 9867: if ((!$correct[$i]) && ($correct[$i] ne '0')) {
1.414 www 9868: $result.='<br /><span class="LC_error">'.
9869: &mt('No correct result given for question "[_1]"!',
9870: $env{'form.question:'.$i}).'</span>';
9871: }
9872: }
1.596.2.4 raeburn 9873: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
1.414 www 9874: }
9875: # Start grading
1.415 www 9876: my $pcorrect=$env{'form.pcorrect'};
9877: my $pincorrect=$env{'form.pincorrect'};
1.416 www 9878: my $storecount=0;
1.596.2.4 raeburn 9879: my %users=();
1.415 www 9880: foreach my $key (keys(%env)) {
1.420 www 9881: my $user='';
1.415 www 9882: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 9883: $user=$1;
9884: }
9885: if ($key=~/^form\.unknown\:(.*)$/) {
9886: my $id=$1;
9887: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
9888: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 9889: } elsif ($env{'form.multi'.$id}) {
9890: $user=$env{'form.multi'.$id};
1.420 www 9891: }
9892: }
1.596.2.4 raeburn 9893: if ($user) {
9894: if ($users{$user}) {
9895: $result.='<br /><span class="LC_warning">'.
9896: &mt("More than one entry found for <tt>[_1]</tt>!",$user).
9897: '</span><br />';
9898: }
9899: $users{$user}=1;
1.415 www 9900: my @answer=split(/\,/,$env{$key});
9901: my $sum=0;
1.522 www 9902: my $realnumber=$number;
1.415 www 9903: for (my $i=0;$i<$number;$i++) {
1.576 www 9904: if ($correct[$i] eq '-') {
9905: $realnumber--;
9906: } elsif ($answer[$i]) {
1.415 www 9907: if ($gradingmechanism eq 'attendance') {
9908: $sum+=$pcorrect;
1.576 www 9909: } elsif ($correct[$i] eq '*') {
1.522 www 9910: $sum+=$pcorrect;
1.415 www 9911: } else {
1.596.2.4 raeburn 9912: # We actually grade if correct or not
9913: my $increment=$pincorrect;
9914: # Special case: numerical answer "0"
9915: if ($correct[$i] eq '0') {
9916: if ($answer[$i]=~/^[0\.]+$/) {
9917: $increment=$pcorrect;
9918: }
9919: # General numerical answer, both evaluate to something non-zero
9920: } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
9921: if (1.0*$correct[$i]==1.0*$answer[$i]) {
9922: $increment=$pcorrect;
9923: }
9924: # Must be just alphanumeric
9925: } elsif ($answer[$i] eq $correct[$i]) {
9926: $increment=$pcorrect;
1.415 www 9927: }
1.596.2.4 raeburn 9928: $sum+=$increment;
1.415 www 9929: }
9930: }
9931: }
1.522 www 9932: my $ave=$sum/(100*$realnumber);
1.416 www 9933: # Store
9934: my ($username,$domain)=split(/\:/,$user);
9935: my %grades=();
9936: $grades{"resource.$part.solved"}='correct_by_override';
9937: $grades{"resource.$part.awarded"}=$ave;
9938: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
9939: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
9940: $env{'request.course.id'},
9941: $domain,$username);
9942: if ($returncode ne 'ok') {
9943: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
9944: } else {
9945: $storecount++;
9946: }
1.415 www 9947: }
9948: }
9949: # We are done
1.549 hauer 9950: $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
1.596.2.4 raeburn 9951: '</td>'.
9952: &Apache::loncommon::end_data_table_row().
9953: &Apache::loncommon::end_data_table()."<br /><br />\n";
1.414 www 9954: return $result.&show_grading_menu_form($symb);
9955: }
9956:
1.582 raeburn 9957: sub navmap_errormsg {
9958: return '<div class="LC_error">'.
9959: &mt('An error occurred retrieving information about resources in the course.').'<br />'.
1.595 raeburn 9960: &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 9961: '</div>';
9962: }
9963:
1.596.2.12.2. (raeburn 9964:): sub startpage {
9965:): my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
9966:): if ($nomenu) {
9967:): $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
9968:): } else {
9969:): $r->print(&Apache::loncommon::start_page('Grading',$js,
9970:): {'bread_crumbs' => $crumbs}));
9971:): }
9972:): unless ($nodisplayflag) {
9973:): $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
9974:): }
9975:): }
9976:):
1.1 albertel 9977: sub handler {
1.41 ng 9978: my $request=$_[0];
1.434 albertel 9979: &reset_caches();
1.596.2.4 raeburn 9980: if ($request->header_only) {
9981: &Apache::loncommon::content_type($request,'text/html');
9982: $request->send_http_header;
9983: return OK;
1.41 ng 9984: }
9985: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.596.2.4 raeburn 9986:
1.324 albertel 9987: my $symb=&get_symb($request,1);
1.160 albertel 9988: my @commands=&Apache::loncommon::get_env_multiple('form.command');
9989: my $command=$commands[0];
1.447 foxr 9990:
1.160 albertel 9991: if ($#commands > 0) {
9992: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
9993: }
1.447 foxr 9994:
1.513 foxr 9995: $ssi_error = 0;
1.535 raeburn 9996: my $brcrum = [{href=>"/adm/grades",text=>"Grading"}];
1.596.2.4 raeburn 9997: my $start_page = &Apache::loncommon::start_page('Grading',undef,
1.596.2.12.2. (raeburn 9998:): {'bread_crumbs' => $brcrum});
1.324 albertel 9999: if ($symb eq '' && $command eq '') {
1.257 albertel 10000: if ($env{'user.adv'}) {
1.596.2.4 raeburn 10001: &Apache::loncommon::content_type($request,'text/html');
10002: $request->send_http_header;
10003: $request->print($start_page);
1.257 albertel 10004: if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
10005: ($env{'form.codethree'})) {
10006: my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
10007: $env{'form.codethree'};
1.41 ng 10008: my ($tsymb,$tuname,$tudom,$tcrsid)=
10009: &Apache::lonnet::checkin($token);
10010: if ($tsymb) {
1.137 albertel 10011: my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41 ng 10012: if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.513 foxr 10013: $request->print(&ssi_with_retries('/res/'.$url, $ssi_retries,
1.99 albertel 10014: ('grade_username' => $tuname,
10015: 'grade_domain' => $tudom,
10016: 'grade_courseid' => $tcrsid,
10017: 'grade_symb' => $tsymb)));
1.41 ng 10018: } else {
1.45 ng 10019: $request->print('<h3>Not authorized: '.$token.'</h3>');
1.99 albertel 10020: }
1.41 ng 10021: } else {
1.45 ng 10022: $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41 ng 10023: }
1.14 www 10024: } else {
1.41 ng 10025: $request->print(&Apache::lonxml::tokeninputfield());
10026: }
1.596.2.4 raeburn 10027: } elsif ($env{'request.course.id'}) {
10028: &init_perm();
10029: if (!%perm) {
10030: $request->internal_redirect('/adm/quickgrades');
10031: } else {
10032: &Apache::loncommon::content_type($request,'text/html');
10033: $request->send_http_header;
10034: $request->print($start_page);
10035: }
10036: }
1.41 ng 10037: } else {
1.596.2.4 raeburn 10038: &init_perm();
10039: if (!$env{'request.course.id'}) {
1.596.2.11 raeburn 10040: unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
10041: ($command =~ /^scantronupload/)) {
10042: # Not in a course.
10043: $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
10044: return HTTP_NOT_ACCEPTABLE;
10045: }
1.596.2.4 raeburn 10046: } elsif (!%perm) {
10047: $request->internal_redirect('/adm/quickgrades');
10048: }
10049: &Apache::loncommon::content_type($request,'text/html');
10050: $request->send_http_header;
1.596.2.12.2. (raeburn 10051:): unless ((($command eq 'submission' || $command eq 'versionsub')) && ($perm{'vgr'})) {
10052:): $request->print($start_page);
10053:): }
1.104 albertel 10054: if ($command eq 'submission' && $perm{'vgr'}) {
1.596.2.12.2. (raeburn 10055:): my ($stuvcurrent,$stuvdisp,$versionform,$js);
10056:): if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
10057:): ($stuvcurrent,$stuvdisp,$versionform,$js) =
10058:): &choose_task_version_form($symb,$env{'form.student'},
10059:): $env{'form.userdom'});
10060:): }
10061:): &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
10062:): if ($versionform) {
10063:): $request->print($versionform);
10064:): }
10065:): $request->print('<br clear="all" />');
1.257 albertel 10066: ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.596.2.12.2. (raeburn 10067:): } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
10068:): my ($stuvcurrent,$stuvdisp,$versionform,$js) =
10069:): &choose_task_version_form($symb,$env{'form.student'},
10070:): $env{'form.userdom'},
10071:): $env{'form.inhibitmenu'});
10072:): &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
10073:): if ($versionform) {
10074:): $request->print($versionform);
10075:): }
10076:): $request->print('<br clear="all" />');
10077:): $request->print(&show_previous_task_version($request,$symb));
1.103 albertel 10078: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68 ng 10079: &pickStudentPage($request);
1.103 albertel 10080: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68 ng 10081: &displayPage($request);
1.104 albertel 10082: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71 ng 10083: &updateGradeByPage($request);
1.104 albertel 10084: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41 ng 10085: &processGroup($request);
1.104 albertel 10086: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.443 banghart 10087: $request->print(&grading_menu($request));
10088: } elsif ($command eq 'submit_options' && $perm{'vgr'}) {
10089: $request->print(&submit_options($request));
1.104 albertel 10090: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41 ng 10091: $request->print(&viewgrades($request));
1.104 albertel 10092: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41 ng 10093: $request->print(&processHandGrade($request));
1.106 albertel 10094: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41 ng 10095: $request->print(&editgrades($request));
1.106 albertel 10096: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41 ng 10097: $request->print(&verifyreceipt($request));
1.400 www 10098: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
10099: $request->print(&process_clicker($request));
10100: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
10101: $request->print(&process_clicker_file($request));
1.414 www 10102: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
10103: $request->print(&assign_clicker_grades($request));
1.106 albertel 10104: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72 ng 10105: $request->print(&upcsvScores_form($request));
1.106 albertel 10106: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41 ng 10107: $request->print(&csvupload($request));
1.106 albertel 10108: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41 ng 10109: $request->print(&csvuploadmap($request));
1.246 albertel 10110: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 10111: if ($env{'form.associate'} ne 'Reverse Association') {
1.246 albertel 10112: $request->print(&csvuploadoptions($request));
1.41 ng 10113: } else {
1.257 albertel 10114: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
10115: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 10116: } else {
1.257 albertel 10117: $env{'form.upfile_associate'} = 'forward';
1.41 ng 10118: }
10119: $request->print(&csvuploadmap($request));
10120: }
1.246 albertel 10121: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
10122: $request->print(&csvuploadassign($request));
1.106 albertel 10123: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75 albertel 10124: $request->print(&scantron_selectphase($request));
1.203 albertel 10125: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
10126: $request->print(&scantron_do_warning($request));
1.142 albertel 10127: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
10128: $request->print(&scantron_validate_file($request));
1.106 albertel 10129: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82 albertel 10130: $request->print(&scantron_process_students($request));
1.157 albertel 10131: } elsif ($command eq 'scantronupload' &&
1.257 albertel 10132: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10133: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162 albertel 10134: $request->print(&scantron_upload_scantron_data($request));
1.157 albertel 10135: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 10136: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10137: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157 albertel 10138: $request->print(&scantron_upload_scantron_data_save($request));
1.202 albertel 10139: } elsif ($command eq 'scantron_download' &&
1.257 albertel 10140: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 10141: $request->print(&scantron_download_scantron_data($request));
1.523 raeburn 10142: } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
10143: $request->print(&checkscantron_results($request));
1.106 albertel 10144: } elsif ($command) {
1.562 bisitz 10145: $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
1.26 albertel 10146: }
1.2 albertel 10147: }
1.513 foxr 10148: if ($ssi_error) {
10149: &ssi_print_error($request);
10150: }
1.353 albertel 10151: $request->print(&Apache::loncommon::end_page());
1.434 albertel 10152: &reset_caches();
1.596.2.4 raeburn 10153: return OK;
1.44 ng 10154: }
10155:
1.1 albertel 10156: 1;
10157:
1.13 albertel 10158: __END__;
1.531 jms 10159:
10160:
10161: =head1 NAME
10162:
10163: Apache::grades
10164:
10165: =head1 SYNOPSIS
10166:
10167: Handles the viewing of grades.
10168:
10169: This is part of the LearningOnline Network with CAPA project
10170: described at http://www.lon-capa.org.
10171:
10172: =head1 OVERVIEW
10173:
10174: Do an ssi with retries:
10175: While I'd love to factor out this with the vesrion in lonprintout,
10176: 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
10177: I'm not quite ready to invent (e.g. an ssi_with_retry object).
10178:
10179: At least the logic that drives this has been pulled out into loncommon.
10180:
10181:
10182:
10183: ssi_with_retries - Does the server side include of a resource.
10184: if the ssi call returns an error we'll retry it up to
10185: the number of times requested by the caller.
10186: If we still have a proble, no text is appended to the
10187: output and we set some global variables.
10188: to indicate to the caller an SSI error occurred.
10189: All of this is supposed to deal with the issues described
10190: in LonCAPA BZ 5631 see:
10191: http://bugs.lon-capa.org/show_bug.cgi?id=5631
10192: by informing the user that this happened.
10193:
10194: Parameters:
10195: resource - The resource to include. This is passed directly, without
10196: interpretation to lonnet::ssi.
10197: form - The form hash parameters that guide the interpretation of the resource
10198:
10199: retries - Number of retries allowed before giving up completely.
10200: Returns:
10201: On success, returns the rendered resource identified by the resource parameter.
10202: Side Effects:
10203: The following global variables can be set:
10204: ssi_error - If an unrecoverable error occurred this becomes true.
10205: It is up to the caller to initialize this to false
10206: if desired.
10207: ssi_error_resource - If an unrecoverable error occurred, this is the value
10208: of the resource that could not be rendered by the ssi
10209: call.
10210: ssi_error_message - The error string fetched from the ssi response
10211: in the event of an error.
10212:
10213:
10214: =head1 HANDLER SUBROUTINE
10215:
10216: ssi_with_retries()
10217:
10218: =head1 SUBROUTINES
10219:
10220: =over
10221:
10222: =item scantron_get_correction() :
10223:
10224: Builds the interface screen to interact with the operator to fix a
10225: specific error condition in a specific scanline
10226:
10227: Arguments:
10228: $r - Apache request object
10229: $i - number of the current scanline
10230: $scan_record - hash ref as returned from &scantron_parse_scanline()
10231: $scan_config - hash ref as returned from &get_scantron_config()
10232: $line - full contents of the current scanline
10233: $error - error condition, valid values are
10234: 'incorrectCODE', 'duplicateCODE',
10235: 'doublebubble', 'missingbubble',
10236: 'duplicateID', 'incorrectID'
10237: $arg - extra information needed
10238: For errors:
10239: - duplicateID - paper number that this studentID was seen before on
10240: - duplicateCODE - array ref of the paper numbers this CODE was
10241: seen on before
10242: - incorrectCODE - current incorrect CODE
10243: - doublebubble - array ref of the bubble lines that have double
10244: bubble errors
10245: - missingbubble - array ref of the bubble lines that have missing
10246: bubble errors
10247:
10248: =item scantron_get_maxbubble() :
10249:
1.582 raeburn 10250: Arguments:
10251: $nav_error - Reference to scalar which is a flag to indicate a
10252: failure to retrieve a navmap object.
10253: if $nav_error is set to 1 by scantron_get_maxbubble(), the
10254: calling routine should trap the error condition and display the warning
10255: found in &navmap_errormsg().
10256:
1.596.2.12.2. (raeburn 10257:): $scantron_config - Reference to bubblesheet format configuration hash.
10258:):
1.531 jms 10259: Returns the maximum number of bubble lines that are expected to
10260: occur. Does this by walking the selected sequence rendering the
10261: resource and then checking &Apache::lonxml::get_problem_counter()
10262: for what the current value of the problem counter is.
10263:
10264: Caches the results to $env{'form.scantron_maxbubble'},
10265: $env{'form.scantron.bubble_lines.n'},
10266: $env{'form.scantron.first_bubble_line.n'} and
10267: $env{"form.scantron.sub_bubblelines.n"}
10268: which are the total number of bubble, lines, the number of bubble
10269: lines for response n and number of the first bubble line for response n,
10270: and a comma separated list of numbers of bubble lines for sub-questions
10271: (for optionresponse, matchresponse, and rankresponse items), for response n.
10272:
10273:
10274: =item scantron_validate_missingbubbles() :
10275:
10276: Validates all scanlines in the selected file to not have any
10277: answers that don't have bubbles that have not been verified
10278: to be bubble free.
10279:
10280: =item scantron_process_students() :
10281:
1.596.2.6 raeburn 10282: Routine that does the actual grading of the bubblesheet information.
1.531 jms 10283:
10284: The parsed scanline hash is added to %env
10285:
10286: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
10287: foreach resource , with the form data of
10288:
10289: 'submitted' =>'scantron'
10290: 'grade_target' =>'grade',
10291: 'grade_username'=> username of student
10292: 'grade_domain' => domain of student
10293: 'grade_courseid'=> of course
10294: 'grade_symb' => symb of resource to grade
10295:
10296: This triggers a grading pass. The problem grading code takes care
10297: of converting the bubbled letter information (now in %env) into a
10298: valid submission.
10299:
10300: =item scantron_upload_scantron_data() :
10301:
1.596.2.6 raeburn 10302: Creates the screen for adding a new bubblesheet data file to a course.
1.531 jms 10303:
10304: =item scantron_upload_scantron_data_save() :
10305:
10306: Adds a provided bubble information data file to the course if user
10307: has the correct privileges to do so.
10308:
10309: =item valid_file() :
10310:
10311: Validates that the requested bubble data file exists in the course.
10312:
10313: =item scantron_download_scantron_data() :
10314:
10315: Shows a list of the three internal files (original, corrected,
1.596.2.6 raeburn 10316: skipped) for a specific bubblesheet data file that exists in the
1.531 jms 10317: course.
10318:
10319: =item scantron_validate_ID() :
10320:
10321: Validates all scanlines in the selected file to not have any
1.556 weissno 10322: invalid or underspecified student/employee IDs
1.531 jms 10323:
1.582 raeburn 10324: =item navmap_errormsg() :
10325:
10326: Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
10327: Should be called whenever the request to instantiate a navmap object fails.
10328:
1.531 jms 10329: =back
10330:
10331: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>