Annotation of loncom/homework/grades.pm, revision 1.742
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.742 ! raeburn 4: # $Id: grades.pm,v 1.741 2017/07/02 16:50:30 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.646 raeburn 43: use Apache::Constants qw(:common :http);
1.167 sakharuk 44: use Apache::lonlocal;
1.386 raeburn 45: use Apache::lonenc;
1.622 www 46: use Apache::lonstathelpers;
1.639 www 47: use Apache::lonquickgrades;
1.657 raeburn 48: use Apache::bridgetask();
1.170 albertel 49: use String::Similarity;
1.359 www 50: use LONCAPA;
51:
1.315 bowersj2 52: use POSIX qw(floor);
1.87 www 53:
1.435 foxr 54:
1.513 foxr 55:
1.435 foxr 56: my %perm=();
1.674 raeburn 57: my %old_essays=();
1.447 foxr 58:
1.513 foxr 59: # These variables are used to recover from ssi errors
60:
61: my $ssi_retries = 5;
62: my $ssi_error;
63: my $ssi_error_resource;
64: my $ssi_error_message;
65:
66:
67: sub ssi_with_retries {
68: my ($resource, $retries, %form) = @_;
69: my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
70: if ($response->is_error) {
71: $ssi_error = 1;
72: $ssi_error_resource = $resource;
73: $ssi_error_message = $response->code . " " . $response->message;
74: }
75:
76: return $content;
77:
78: }
79: #
80: # Prodcuces an ssi retry failure error message to the user:
81: #
82:
83: sub ssi_print_error {
84: my ($r) = @_;
1.516 raeburn 85: my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
86: $r->print('
87: <br />
88: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
89: <p>
90: '.&mt('Unable to retrieve a resource from a server:').'<br />
91: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
92: '.&mt('Error:').' '.$ssi_error_message.'
93: </p>
94: <p>'.
95: &mt('It is recommended that you try again later, as this error may mean the server was just temporarily unavailable, or is down for maintenance.').'<br />'.
96: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
97: '</p>');
98: return;
1.513 foxr 99: }
100:
1.44 ng 101: #
1.146 albertel 102: # --- Retrieve the parts from the metadata file.---
1.598 www 103: # Returns an array of everything that the resources stores away
104: #
105:
1.44 ng 106: sub getpartlist {
1.582 raeburn 107: my ($symb,$errorref) = @_;
1.439 albertel 108:
109: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 110: unless (ref($navmap)) {
111: if (ref($errorref)) {
112: $$errorref = 'navmap';
113: return;
114: }
115: }
1.439 albertel 116: my $res = $navmap->getBySymb($symb);
117: my $partlist = $res->parts();
118: my $url = $res->src();
119: my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
120:
1.146 albertel 121: my @stores;
1.439 albertel 122: foreach my $part (@{ $partlist }) {
1.146 albertel 123: foreach my $key (@metakeys) {
124: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
125: }
126: }
127: return @stores;
1.2 albertel 128: }
129:
1.129 ng 130: #--- Format fullname, username:domain if different for display
131: #--- Use anywhere where the student names are listed
132: sub nameUserString {
133: my ($type,$fullname,$uname,$udom) = @_;
134: if ($type eq 'header') {
1.485 albertel 135: return '<b> '.&mt('Fullname').' </b><span class="LC_internal_info">('.&mt('Username').')</span>';
1.129 ng 136: } else {
1.398 albertel 137: return ' '.$fullname.'<span class="LC_internal_info"> ('.$uname.
138: ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129 ng 139: }
140: }
141:
1.44 ng 142: #--- Get the partlist and the response type for a given problem. ---
143: #--- Indicate if a response type is coded handgraded or not. ---
1.623 www 144: #--- Sets response_error pointer to "1" if navmaps object broken ---
1.39 ng 145: sub response_type {
1.582 raeburn 146: my ($symb,$response_error) = @_;
1.377 albertel 147:
148: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 149: unless (ref($navmap)) {
150: if (ref($response_error)) {
151: $$response_error = 1;
152: }
153: return;
154: }
1.377 albertel 155: my $res = $navmap->getBySymb($symb);
1.593 raeburn 156: unless (ref($res)) {
157: $$response_error = 1;
158: return;
159: }
1.377 albertel 160: my $partlist = $res->parts();
1.392 albertel 161: my %vPart =
162: map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377 albertel 163: my (%response_types,%handgrade);
164: foreach my $part (@{ $partlist }) {
1.392 albertel 165: next if (%vPart && !exists($vPart{$part}));
166:
1.377 albertel 167: my @types = $res->responseType($part);
168: my @ids = $res->responseIds($part);
169: for (my $i=0; $i < scalar(@ids); $i++) {
170: $response_types{$part}{$ids[$i]} = $types[$i];
171: $handgrade{$part.'_'.$ids[$i]} =
172: &Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
173: '.handgrade',$symb);
1.41 ng 174: }
175: }
1.377 albertel 176: return ($partlist,\%handgrade,\%response_types);
1.39 ng 177: }
178:
1.375 albertel 179: sub flatten_responseType {
180: my ($responseType) = @_;
181: my @part_response_id =
182: map {
183: my $part = $_;
184: map {
185: [$part,$_]
186: } sort(keys(%{ $responseType->{$part} }));
187: } sort(keys(%$responseType));
188: return @part_response_id;
189: }
190:
1.207 albertel 191: sub get_display_part {
1.324 albertel 192: my ($partID,$symb)=@_;
1.207 albertel 193: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
194: if (defined($display) and $display ne '') {
1.577 bisitz 195: $display.= ' (<span class="LC_internal_info">'
196: .&mt('Part ID: [_1]',$partID).'</span>)';
1.207 albertel 197: } else {
198: $display=$partID;
199: }
200: return $display;
201: }
1.269 raeburn 202:
1.434 albertel 203: sub reset_caches {
204: &reset_analyze_cache();
205: &reset_perm();
1.674 raeburn 206: &reset_old_essays();
1.434 albertel 207: }
208:
209: {
210: my %analyze_cache;
1.557 raeburn 211: my %analyze_cache_formkeys;
1.148 albertel 212:
1.434 albertel 213: sub reset_analyze_cache {
214: undef(%analyze_cache);
1.557 raeburn 215: undef(%analyze_cache_formkeys);
1.434 albertel 216: }
217:
218: sub get_analyze {
1.649 raeburn 219: my ($symb,$uname,$udom,$no_increment,$add_to_hash,$type,$trial,$rndseed,$bubbles_per_row)=@_;
1.434 albertel 220: my $key = "$symb\0$uname\0$udom";
1.640 raeburn 221: if ($type eq 'randomizetry') {
222: if ($trial ne '') {
223: $key .= "\0".$trial;
224: }
225: }
1.557 raeburn 226: if (exists($analyze_cache{$key})) {
227: my $getupdate = 0;
228: if (ref($add_to_hash) eq 'HASH') {
229: foreach my $item (keys(%{$add_to_hash})) {
230: if (ref($analyze_cache_formkeys{$key}) eq 'HASH') {
231: if (!exists($analyze_cache_formkeys{$key}{$item})) {
232: $getupdate = 1;
233: last;
234: }
235: } else {
236: $getupdate = 1;
237: }
238: }
239: }
240: if (!$getupdate) {
241: return $analyze_cache{$key};
242: }
243: }
1.434 albertel 244:
245: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
246: $url=&Apache::lonnet::clutter($url);
1.557 raeburn 247: my %form = ('grade_target' => 'analyze',
248: 'grade_domain' => $udom,
249: 'grade_symb' => $symb,
250: 'grade_courseid' => $env{'request.course.id'},
251: 'grade_username' => $uname,
252: 'grade_noincrement' => $no_increment);
1.649 raeburn 253: if ($bubbles_per_row ne '') {
254: $form{'bubbles_per_row'} = $bubbles_per_row;
255: }
1.640 raeburn 256: if ($type eq 'randomizetry') {
257: $form{'grade_questiontype'} = $type;
258: if ($rndseed ne '') {
259: $form{'grade_rndseed'} = $rndseed;
260: }
261: }
1.557 raeburn 262: if (ref($add_to_hash)) {
263: %form = (%form,%{$add_to_hash});
1.640 raeburn 264: }
1.557 raeburn 265: my $subresult=&ssi_with_retries($url, $ssi_retries,%form);
1.434 albertel 266: (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
267: my %analyze=&Apache::lonnet::str2hash($subresult);
1.557 raeburn 268: if (ref($add_to_hash) eq 'HASH') {
269: $analyze_cache_formkeys{$key} = $add_to_hash;
270: } else {
271: $analyze_cache_formkeys{$key} = {};
272: }
1.434 albertel 273: return $analyze_cache{$key} = \%analyze;
274: }
275:
276: sub get_order {
1.640 raeburn 277: my ($partid,$respid,$symb,$uname,$udom,$no_increment,$type,$trial,$rndseed)=@_;
278: my $analyze = &get_analyze($symb,$uname,$udom,$no_increment,undef,$type,$trial,$rndseed);
1.434 albertel 279: return $analyze->{"$partid.$respid.shown"};
280: }
281:
282: sub get_radiobutton_correct_foil {
1.640 raeburn 283: my ($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed)=@_;
284: my $analyze = &get_analyze($symb,$uname,$udom,undef,undef,$type,$trial,$rndseed);
285: my $foils = &get_order($partid,$respid,$symb,$uname,$udom,undef,$type,$trial,$rndseed);
1.555 raeburn 286: if (ref($foils) eq 'ARRAY') {
287: foreach my $foil (@{$foils}) {
288: if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
289: return $foil;
290: }
1.434 albertel 291: }
292: }
293: }
1.554 raeburn 294:
295: sub scantron_partids_tograde {
1.741 raeburn 296: my ($resource,$cid,$uname,$udom,$check_for_randomlist,$bubbles_per_row,$scancode) = @_;
1.554 raeburn 297: my (%analysis,@parts);
298: if (ref($resource)) {
299: my $symb = $resource->symb();
1.557 raeburn 300: my $add_to_form;
301: if ($check_for_randomlist) {
302: $add_to_form = { 'check_parts_withrandomlist' => 1,};
303: }
1.741 raeburn 304: if ($scancode) {
305: if (ref($add_to_form) eq 'HASH') {
306: $add_to_form->{'code_for_randomlist'} = $scancode;
307: } else {
308: $add_to_form = { 'code_for_randomlist' => $scancode,};
309: }
310: }
1.649 raeburn 311: my $analyze =
312: &get_analyze($symb,$uname,$udom,undef,$add_to_form,
313: undef,undef,undef,$bubbles_per_row);
1.554 raeburn 314: if (ref($analyze) eq 'HASH') {
315: %analysis = %{$analyze};
316: }
317: if (ref($analysis{'parts'}) eq 'ARRAY') {
318: foreach my $part (@{$analysis{'parts'}}) {
319: my ($id,$respid) = split(/\./,$part);
320: if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
321: push(@parts,$part);
322: }
323: }
324: }
325: }
326: return (\%analysis,\@parts);
327: }
328:
1.148 albertel 329: }
1.434 albertel 330:
1.118 ng 331: #--- Clean response type for display
1.335 albertel 332: #--- Currently filters option/rank/radiobutton/match/essay/Task
333: # response types only.
1.118 ng 334: sub cleanRecord {
1.336 albertel 335: my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
1.640 raeburn 336: $uname,$udom,$type,$trial,$rndseed) = @_;
1.398 albertel 337: my $grayFont = '<span class="LC_internal_info">';
1.148 albertel 338: if ($response =~ /^(option|rank)$/) {
339: my %answer=&Apache::lonnet::str2hash($answer);
1.720 kruse 340: my @answer = %answer;
341: %answer = map {&HTML::Entities::encode($_, '"<>&')} @answer;
1.148 albertel 342: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
343: my ($toprow,$bottomrow);
344: foreach my $foil (@$order) {
345: if ($grading{$foil} == 1) {
346: $toprow.='<td><b>'.$answer{$foil}.' </b></td>';
347: } else {
348: $toprow.='<td><i>'.$answer{$foil}.' </i></td>';
349: }
1.398 albertel 350: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 351: }
352: return '<blockquote><table border="1">'.
1.466 albertel 353: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
354: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660 raeburn 355: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 356: } elsif ($response eq 'match') {
357: my %answer=&Apache::lonnet::str2hash($answer);
1.720 kruse 358: my @answer = %answer;
359: %answer = map {&HTML::Entities::encode($_, '"<>&')} @answer;
1.148 albertel 360: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
361: my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
362: my ($toprow,$middlerow,$bottomrow);
363: foreach my $foil (@$order) {
364: my $item=shift(@items);
365: if ($grading{$foil} == 1) {
366: $toprow.='<td><b>'.$item.' </b></td>';
1.398 albertel 367: $middlerow.='<td><b>'.$grayFont.$answer{$foil}.' </span></b></td>';
1.148 albertel 368: } else {
369: $toprow.='<td><i>'.$item.' </i></td>';
1.398 albertel 370: $middlerow.='<td><i>'.$grayFont.$answer{$foil}.' </span></i></td>';
1.148 albertel 371: }
1.398 albertel 372: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.118 ng 373: }
1.126 ng 374: return '<blockquote><table border="1">'.
1.466 albertel 375: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
376: '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148 albertel 377: $middlerow.'</tr>'.
1.466 albertel 378: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660 raeburn 379: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 380: } elsif ($response eq 'radiobutton') {
381: my %answer=&Apache::lonnet::str2hash($answer);
1.720 kruse 382: my @answer = %answer;
383: %answer = map {&HTML::Entities::encode($_, '"<>&')} @answer;
1.148 albertel 384: my ($toprow,$bottomrow);
1.434 albertel 385: my $correct =
1.640 raeburn 386: &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed);
1.434 albertel 387: foreach my $foil (@$order) {
1.148 albertel 388: if (exists($answer{$foil})) {
1.434 albertel 389: if ($foil eq $correct) {
1.466 albertel 390: $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148 albertel 391: } else {
1.466 albertel 392: $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148 albertel 393: }
394: } else {
1.466 albertel 395: $toprow.='<td>'.&mt('false').'</td>';
1.148 albertel 396: }
1.398 albertel 397: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 398: }
399: return '<blockquote><table border="1">'.
1.466 albertel 400: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
401: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660 raeburn 402: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 403: } elsif ($response eq 'essay') {
1.257 albertel 404: if (! exists ($env{'form.'.$symb})) {
1.122 ng 405: my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 406: $env{'course.'.$env{'request.course.id'}.'.domain'},
407: $env{'course.'.$env{'request.course.id'}.'.num'});
1.122 ng 408:
1.257 albertel 409: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
410: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
411: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
412: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
413: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
414: $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 415: }
1.730 kruse 416: return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.720 kruse 417:
1.268 albertel 418: } elsif ( $response eq 'organic') {
1.721 bisitz 419: my $result=&mt('Smile representation: [_1]',
420: '"<tt>'.&HTML::Entities::encode($answer, '"<>&').'</tt>"');
1.268 albertel 421: my $jme=$record->{$version."resource.$partid.$respid.molecule"};
422: $result.=&Apache::chemresponse::jme_img($jme,$answer,400);
423: return $result;
1.335 albertel 424: } elsif ( $response eq 'Task') {
425: if ( $answer eq 'SUBMITTED') {
426: my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336 albertel 427: my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335 albertel 428: return $result;
429: } elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
430: my @matches = grep(/^\Q$version\E.*?\.instance$/,
431: keys(%{$record}));
432: return join('<br />',($version,@matches));
433:
434:
435: } else {
436: my $result =
437: '<p>'
438: .&mt('Overall result: [_1]',
439: $record->{$version."resource.$respid.$partid.status"})
440: .'</p>';
441:
442: $result .= '<ul>';
443: my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
444: keys(%{$record}));
445: foreach my $grade (sort(@grade)) {
446: my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
447: $result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
448: $dim, $record->{$grade}).
449: '</li>';
450: }
451: $result.='</ul>';
452: return $result;
453: }
1.716 bisitz 454: } elsif ( $response =~ m/(?:numerical|formula|custom)/) {
455: # Respect multiple input fields, see Bug #5409
1.440 albertel 456: $answer =
457: &Apache::loncommon::format_previous_attempt_value('submission',
458: $answer);
1.720 kruse 459: return $answer;
1.122 ng 460: }
1.720 kruse 461: return &HTML::Entities::encode($answer, '"<>&');
1.118 ng 462: }
463:
464: #-- A couple of common js functions
465: sub commonJSfunctions {
466: my $request = shift;
1.597 wenzelju 467: $request->print(&Apache::lonhtmlcommon::scripttag(<<COMMONJSFUNCTIONS));
1.118 ng 468: function radioSelection(radioButton) {
469: var selection=null;
470: if (radioButton.length > 1) {
471: for (var i=0; i<radioButton.length; i++) {
472: if (radioButton[i].checked) {
473: return radioButton[i].value;
474: }
475: }
476: } else {
477: if (radioButton.checked) return radioButton.value;
478: }
479: return selection;
480: }
481:
482: function pullDownSelection(selectOne) {
483: var selection="";
484: if (selectOne.length > 1) {
485: for (var i=0; i<selectOne.length; i++) {
486: if (selectOne[i].selected) {
487: return selectOne[i].value;
488: }
489: }
490: } else {
1.138 albertel 491: // only one value it must be the selected one
492: return selectOne.value;
1.118 ng 493: }
494: }
495: COMMONJSFUNCTIONS
496: }
497:
1.44 ng 498: #--- Dumps the class list with usernames,list of sections,
499: #--- section, ids and fullnames for each user.
500: sub getclasslist {
1.449 banghart 501: my ($getsec,$filterlist,$getgroup) = @_;
1.291 albertel 502: my @getsec;
1.450 banghart 503: my @getgroup;
1.442 banghart 504: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291 albertel 505: if (!ref($getsec)) {
506: if ($getsec ne '' && $getsec ne 'all') {
507: @getsec=($getsec);
508: }
509: } else {
510: @getsec=@{$getsec};
511: }
512: if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450 banghart 513: if (!ref($getgroup)) {
514: if ($getgroup ne '' && $getgroup ne 'all') {
515: @getgroup=($getgroup);
516: }
517: } else {
518: @getgroup=@{$getgroup};
519: }
520: if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291 albertel 521:
1.449 banghart 522: my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49 albertel 523: # Bail out if we were unable to get the classlist
1.56 matthew 524: return if (! defined($classlist));
1.449 banghart 525: &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56 matthew 526: #
527: my %sections;
528: my %fullnames;
1.205 matthew 529: foreach my $student (keys(%$classlist)) {
530: my $end =
531: $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
532: my $start =
533: $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
534: my $id =
535: $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
536: my $section =
537: $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
538: my $fullname =
539: $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
540: my $status =
541: $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449 banghart 542: my $group =
543: $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76 ng 544: # filter students according to status selected
1.442 banghart 545: if ($filterlist && (!($stu_status =~ /Any/))) {
546: if (!($stu_status =~ $status)) {
1.450 banghart 547: delete($classlist->{$student});
1.76 ng 548: next;
549: }
550: }
1.450 banghart 551: # filter students according to groups selected
1.453 banghart 552: my @stu_groups = split(/,/,$group);
1.450 banghart 553: if (@getgroup) {
554: my $exclude = 1;
1.454 banghart 555: foreach my $grp (@getgroup) {
556: foreach my $stu_group (@stu_groups) {
1.453 banghart 557: if ($stu_group eq $grp) {
558: $exclude = 0;
559: }
1.450 banghart 560: }
1.453 banghart 561: if (($grp eq 'none') && !$group) {
562: $exclude = 0;
563: }
1.450 banghart 564: }
565: if ($exclude) {
566: delete($classlist->{$student});
567: }
568: }
1.205 matthew 569: $section = ($section ne '' ? $section : 'none');
1.106 albertel 570: if (&canview($section)) {
1.291 albertel 571: if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103 albertel 572: $sections{$section}++;
1.450 banghart 573: if ($classlist->{$student}) {
574: $fullnames{$student}=$fullname;
575: }
1.103 albertel 576: } else {
1.205 matthew 577: delete($classlist->{$student});
1.103 albertel 578: }
579: } else {
1.205 matthew 580: delete($classlist->{$student});
1.103 albertel 581: }
1.44 ng 582: }
583: my %seen = ();
1.56 matthew 584: my @sections = sort(keys(%sections));
585: return ($classlist,\@sections,\%fullnames);
1.44 ng 586: }
587:
1.103 albertel 588: sub canmodify {
589: my ($sec)=@_;
590: if ($perm{'mgr'}) {
591: if (!defined($perm{'mgr_section'})) {
592: # can modify whole class
593: return 1;
594: } else {
595: if ($sec eq $perm{'mgr_section'}) {
596: #can modify the requested section
597: return 1;
598: } else {
599: # can't modify the request section
600: return 0;
601: }
602: }
603: }
604: #can't modify
605: return 0;
606: }
607:
608: sub canview {
609: my ($sec)=@_;
610: if ($perm{'vgr'}) {
611: if (!defined($perm{'vgr_section'})) {
612: # can modify whole class
613: return 1;
614: } else {
615: if ($sec eq $perm{'vgr_section'}) {
616: #can modify the requested section
617: return 1;
618: } else {
619: # can't modify the request section
620: return 0;
621: }
622: }
623: }
624: #can't modify
625: return 0;
626: }
627:
1.44 ng 628: #--- Retrieve the grade status of a student for all the parts
629: sub student_gradeStatus {
1.324 albertel 630: my ($symb,$udom,$uname,$partlist) = @_;
1.257 albertel 631: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44 ng 632: my %partstatus = ();
633: foreach (@$partlist) {
1.128 ng 634: my ($status,undef) = split(/_/,$record{"resource.$_.solved"},2);
1.44 ng 635: $status = 'nothing' if ($status eq '');
636: $partstatus{$_} = $status;
637: my $subkey = "resource.$_.submitted_by";
638: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
639: }
640: return %partstatus;
641: }
642:
1.45 ng 643: # hidden form and javascript that calls the form
644: # Use by verifyscript and viewgrades
645: # Shows a student's view of problem and submission
646: sub jscriptNform {
1.324 albertel 647: my ($symb) = @_;
1.442 banghart 648: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.597 wenzelju 649: my $jscript= &Apache::lonhtmlcommon::scripttag(
1.45 ng 650: ' function viewOneStudent(user,domain) {'."\n".
651: ' document.onestudent.student.value = user;'."\n".
652: ' document.onestudent.userdom.value = domain;'."\n".
653: ' document.onestudent.submit();'."\n".
654: ' }'."\n".
1.597 wenzelju 655: "\n");
1.45 ng 656: $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418 albertel 657: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.442 banghart 658: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.45 ng 659: '<input type="hidden" name="command" value="submission" />'."\n".
660: '<input type="hidden" name="student" value="" />'."\n".
661: '<input type="hidden" name="userdom" value="" />'."\n".
662: '</form>'."\n";
663: return $jscript;
664: }
1.39 ng 665:
1.447 foxr 666:
667:
1.315 bowersj2 668: # Given the score (as a number [0-1] and the weight) what is the final
669: # point value? This function will round to the nearest tenth, third,
670: # or quarter if one of those is within the tolerance of .00001.
1.316 albertel 671: sub compute_points {
1.315 bowersj2 672: my ($score, $weight) = @_;
673:
674: my $tolerance = .00001;
675: my $points = $score * $weight;
676:
677: # Check for nearness to 1/x.
678: my $check_for_nearness = sub {
679: my ($factor) = @_;
680: my $num = ($points * $factor) + $tolerance;
681: my $floored_num = floor($num);
1.316 albertel 682: if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315 bowersj2 683: return $floored_num / $factor;
684: }
685: return $points;
686: };
687:
688: $points = $check_for_nearness->(10);
689: $points = $check_for_nearness->(3);
690: $points = $check_for_nearness->(4);
691:
692: return $points;
693: }
694:
1.44 ng 695: #------------------ End of general use routines --------------------
1.87 www 696:
697: #
698: # Find most similar essay
699: #
700:
701: sub most_similar {
1.674 raeburn 702: my ($uname,$udom,$symb,$uessay)=@_;
703:
704: unless ($symb) { return ''; }
705:
706: unless (ref($old_essays{$symb}) eq 'HASH') { return ''; }
1.87 www 707:
708: # ignore spaces and punctuation
709:
710: $uessay=~s/\W+/ /gs;
711:
1.282 www 712: # ignore empty submissions (occuring when only files are sent)
713:
1.598 www 714: unless ($uessay=~/\w+/s) { return ''; }
1.282 www 715:
1.87 www 716: # these will be returned. Do not care if not at least 50 percent similar
1.88 www 717: my $limit=0.6;
1.87 www 718: my $sname='';
719: my $sdom='';
720: my $scrsid='';
721: my $sessay='';
722: # go through all essays ...
1.674 raeburn 723: foreach my $tkey (keys(%{$old_essays{$symb}})) {
1.426 albertel 724: my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87 www 725: # ... except the same student
1.426 albertel 726: next if (($tname eq $uname) && ($tdom eq $udom));
1.674 raeburn 727: my $tessay=$old_essays{$symb}{$tkey};
1.426 albertel 728: $tessay=~s/\W+/ /gs;
1.87 www 729: # String similarity gives up if not even limit
1.426 albertel 730: my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87 www 731: # Found one
1.426 albertel 732: if ($tsimilar>$limit) {
733: $limit=$tsimilar;
734: $sname=$tname;
735: $sdom=$tdom;
736: $scrsid=$tcrsid;
1.674 raeburn 737: $sessay=$old_essays{$symb}{$tkey};
1.426 albertel 738: }
1.87 www 739: }
1.88 www 740: if ($limit>0.6) {
1.87 www 741: return ($sname,$sdom,$scrsid,$sessay,$limit);
742: } else {
743: return ('','','','',0);
744: }
745: }
746:
1.44 ng 747: #-------------------------------------------------------------------
748:
749: #------------------------------------ Receipt Verification Routines
1.45 ng 750: #
1.602 www 751:
752: sub initialverifyreceipt {
1.608 www 753: my ($request,$symb) = @_;
1.602 www 754: &commonJSfunctions($request);
1.694 bisitz 755: return '<form name="gradingMenu" action=""><input type="submit" value="'.&mt('Verify Receipt Number.').'" />'.
1.602 www 756: &Apache::lonnet::recprefix($env{'request.course.id'}).
757: '-<input type="text" name="receipt" size="4" />'.
1.603 www 758: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
759: '<input type="hidden" name="command" value="verify" />'.
760: "</form>\n";
1.602 www 761: }
762:
1.44 ng 763: #--- Check whether a receipt number is valid.---
764: sub verifyreceipt {
1.608 www 765: my ($request,$symb) = @_;
1.44 ng 766:
1.257 albertel 767: my $courseid = $env{'request.course.id'};
1.184 www 768: my $receipt = &Apache::lonnet::recprefix($courseid).'-'.
1.257 albertel 769: $env{'form.receipt'};
1.44 ng 770: $receipt =~ s/[^\-\d]//g;
771:
1.487 albertel 772: my $title.=
773: '<h3><span class="LC_info">'.
1.605 www 774: &mt('Verifying Receipt Number [_1]',$receipt).
775: '</span></h3>'."\n";
1.44 ng 776:
777: my ($string,$contents,$matches) = ('','',0);
1.56 matthew 778: my (undef,undef,$fullname) = &getclasslist('all','0');
1.177 albertel 779:
780: my $receiptparts=0;
1.390 albertel 781: if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
782: $env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177 albertel 783: my $parts=['0'];
1.582 raeburn 784: if ($receiptparts) {
785: my $res_error;
786: ($parts)=&response_type($symb,\$res_error);
787: if ($res_error) {
788: return &navmap_errormsg();
789: }
790: }
1.486 albertel 791:
792: my $header =
793: &Apache::loncommon::start_data_table().
794: &Apache::loncommon::start_data_table_header_row().
1.487 albertel 795: '<th> '.&mt('Fullname').' </th>'."\n".
796: '<th> '.&mt('Username').' </th>'."\n".
797: '<th> '.&mt('Domain').' </th>';
1.486 albertel 798: if ($receiptparts) {
1.487 albertel 799: $header.='<th> '.&mt('Problem Part').' </th>';
1.486 albertel 800: }
801: $header.=
802: &Apache::loncommon::end_data_table_header_row();
803:
1.294 albertel 804: foreach (sort
805: {
806: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
807: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
808: }
809: return $a cmp $b;
810: } (keys(%$fullname))) {
1.44 ng 811: my ($uname,$udom)=split(/\:/);
1.177 albertel 812: foreach my $part (@$parts) {
813: if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
1.486 albertel 814: $contents.=
815: &Apache::loncommon::start_data_table_row().
816: '<td> '."\n".
1.177 albertel 817: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 818: '\');" target="_self">'.$$fullname{$_}.'</a> </td>'."\n".
1.177 albertel 819: '<td> '.$uname.' </td>'.
820: '<td> '.$udom.' </td>';
821: if ($receiptparts) {
822: $contents.='<td> '.$part.' </td>';
823: }
1.486 albertel 824: $contents.=
825: &Apache::loncommon::end_data_table_row()."\n";
1.177 albertel 826:
827: $matches++;
828: }
1.44 ng 829: }
830: }
831: if ($matches == 0) {
1.584 bisitz 832: $string = $title
833: .'<p class="LC_warning">'
834: .&mt('No match found for the above receipt number.')
835: .'</p>';
1.44 ng 836: } else {
1.324 albertel 837: $string = &jscriptNform($symb).$title.
1.487 albertel 838: '<p>'.
1.584 bisitz 839: &mt('The above receipt number matches the following [quant,_1,student].',$matches).
1.487 albertel 840: '</p>'.
1.486 albertel 841: $header.
842: $contents.
843: &Apache::loncommon::end_data_table()."\n";
1.44 ng 844: }
1.614 www 845: return $string;
1.44 ng 846: }
847:
848: #--- This is called by a number of programs.
849: #--- Called from the Grading Menu - View/Grade an individual student
850: #--- Also called directly when one clicks on the subm button
851: # on the problem page.
1.30 ng 852: sub listStudents {
1.617 www 853: my ($request,$symb,$submitonly) = @_;
1.49 albertel 854:
1.257 albertel 855: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
856: my $cnum = $env{"course.$env{'request.course.id'}.num"};
857: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449 banghart 858: my $getgroup = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.617 www 859: unless ($submitonly) {
860: $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
861: }
1.49 albertel 862:
1.632 www 863: my $result='';
1.623 www 864: my $res_error;
865: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
1.49 albertel 866:
1.736 damieng 867: my %js_lt = &Apache::lonlocal::texthash (
1.559 raeburn 868: 'multiple' => 'Please select a student or group of students before clicking on the Next button.',
869: 'single' => 'Please select the student before clicking on the Next button.',
870: );
1.736 damieng 871: &js_escape(\%js_lt);
1.597 wenzelju 872: $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
1.110 ng 873: function checkSelect(checkBox) {
874: var ctr=0;
875: var sense="";
876: if (checkBox.length > 1) {
877: for (var i=0; i<checkBox.length; i++) {
878: if (checkBox[i].checked) {
879: ctr++;
880: }
881: }
1.736 damieng 882: sense = '$js_lt{'multiple'}';
1.110 ng 883: } else {
884: if (checkBox.checked) {
885: ctr = 1;
886: }
1.736 damieng 887: sense = '$js_lt{'single'}';
1.110 ng 888: }
889: if (ctr == 0) {
1.485 albertel 890: alert(sense);
1.110 ng 891: return false;
892: }
893: document.gradesub.submit();
894: }
895:
896: function reLoadList(formname) {
1.112 ng 897: if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110 ng 898: formname.command.value = 'submission';
899: formname.submit();
900: }
1.45 ng 901: LISTJAVASCRIPT
902:
1.118 ng 903: &commonJSfunctions($request);
1.41 ng 904: $request->print($result);
1.39 ng 905:
1.154 albertel 906: my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
1.598 www 907: "\n";
1.485 albertel 908:
1.561 bisitz 909: $gradeTable .= &Apache::lonhtmlcommon::start_pick_box();
910: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
911: .'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n"
912: .'<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n"
913: .'<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label><br />'."\n"
914: .&Apache::lonhtmlcommon::row_closure();
915: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Answer'))
916: .'<label><input type="radio" name="vAns" value="no" /> '.&mt('no').' </label>'."\n"
917: .'<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n"
918: .'<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label><br />'."\n"
919: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 920:
921: my $submission_options;
1.442 banghart 922: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
923: my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257 albertel 924: $env{'form.Status'} = $saveStatus;
1.485 albertel 925: $submission_options.=
1.592 bisitz 926: '<span class="LC_nobreak">'.
1.624 www 927: '<label><input type="radio" name="lastSub" value="lastonly" /> '.
1.699 kruse 928: &mt('last submission').' </label></span>'."\n".
1.592 bisitz 929: '<span class="LC_nobreak">'.
930: '<label><input type="radio" name="lastSub" value="last" /> '.
1.699 kruse 931: &mt('last submission with details').' </label></span>'."\n".
1.592 bisitz 932: '<span class="LC_nobreak">'.
1.628 www 933: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.
1.699 kruse 934: &mt('all submissions').'</label></span>'."\n".
1.592 bisitz 935: '<span class="LC_nobreak">'.
936: '<label><input type="radio" name="lastSub" value="all" /> '.
1.699 kruse 937: &mt('all submissions with details').'</label></span>';
938: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Submissions'))
1.561 bisitz 939: .$submission_options
940: .&Apache::lonhtmlcommon::row_closure();
941:
942: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Grading Increments'))
943: .'<select name="increment">'
944: .'<option value="1">'.&mt('Whole Points').'</option>'
945: .'<option value=".5">'.&mt('Half Points').'</option>'
946: .'<option value=".25">'.&mt('Quarter Points').'</option>'
947: .'<option value=".1">'.&mt('Tenths of a Point').'</option>'
948: .'</select>'
949: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 950:
951: $gradeTable .=
1.432 banghart 952: &build_section_inputs().
1.45 ng 953: '<input type="hidden" name="submitonly" value="'.$submitonly.'" />'."\n".
1.418 albertel 954: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110 ng 955: '<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
956:
1.618 www 957: if (exists($env{'form.Status'})) {
1.561 bisitz 958: $gradeTable .= '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
1.124 ng 959: } else {
1.561 bisitz 960: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Student Status'))
961: .&Apache::lonhtmlcommon::StatusOptions(
962: $saveStatus,undef,1,'javascript:reLoadList(this.form);')
963: .&Apache::lonhtmlcommon::row_closure();
1.124 ng 964: }
1.112 ng 965:
1.561 bisitz 966: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Check For Plagiarism'))
967: .'<input type="checkbox" name="checkPlag" checked="checked" />'
968: .&Apache::lonhtmlcommon::row_closure(1)
969: .&Apache::lonhtmlcommon::end_pick_box();
970:
971: $gradeTable .= '<p>'
1.618 www 972: .&mt("To view/grade/regrade a submission or a group of submissions, click on the check box(es) next to the student's name(s). Then click on the Next button.")."\n"
1.561 bisitz 973: .'<input type="hidden" name="command" value="processGroup" />'
974: .'</p>';
1.249 albertel 975:
976: # checkall buttons
977: $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110 ng 978: $gradeTable.='<input type="button" '."\n".
1.589 bisitz 979: 'onclick="javascript:checkSelect(this.form.stuinfo);" '."\n".
980: 'value="'.&mt('Next').' →" /> <br />'."\n";
1.249 albertel 981: $gradeTable.=&check_buttons();
1.450 banghart 982: my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.474 albertel 983: $gradeTable.= &Apache::loncommon::start_data_table().
984: &Apache::loncommon::start_data_table_header_row();
1.110 ng 985: my $loop = 0;
986: while ($loop < 2) {
1.485 albertel 987: $gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
988: '<th>'.&nameUserString('header').' '.&mt('Section/Group').'</th>';
1.618 www 989: if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.485 albertel 990: foreach my $part (sort(@$partlist)) {
991: my $display_part=
992: &get_display_part((split(/_/,$part))[0],$symb);
993: $gradeTable.=
994: '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
1.110 ng 995: }
1.301 albertel 996: } elsif ($submitonly eq 'queued') {
1.474 albertel 997: $gradeTable.='<th>'.&mt('Queue Status').' </th>';
1.110 ng 998: }
999: $loop++;
1.126 ng 1000: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 1001: }
1.474 albertel 1002: $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
1.41 ng 1003:
1.45 ng 1004: my $ctr = 0;
1.294 albertel 1005: foreach my $student (sort
1006: {
1007: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
1008: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
1009: }
1010: return $a cmp $b;
1011: }
1012: (keys(%$fullname))) {
1.41 ng 1013: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 1014:
1.110 ng 1015: my %status = ();
1.301 albertel 1016:
1017: if ($submitonly eq 'queued') {
1018: my %queue_status =
1019: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
1020: $udom,$uname);
1021: next if (!defined($queue_status{'gradingqueue'}));
1022: $status{'gradingqueue'} = $queue_status{'gradingqueue'};
1023: }
1024:
1.618 www 1025: if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.324 albertel 1026: (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 1027: my $submitted = 0;
1.164 albertel 1028: my $graded = 0;
1.248 albertel 1029: my $incorrect = 0;
1.110 ng 1030: foreach (keys(%status)) {
1.145 albertel 1031: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 1032: $graded = 1 if ($status{$_} =~ /^ungraded/);
1033: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1034:
1.110 ng 1035: my ($foo,$partid,$foo1) = split(/\./,$_);
1036: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145 albertel 1037: $submitted = 0;
1.150 albertel 1038: my ($part)=split(/\./,$partid);
1.110 ng 1039: $gradeTable.='<input type="hidden" name="'.
1.150 albertel 1040: $student.':'.$part.':submitted_by" value="'.
1.110 ng 1041: $status{'resource.'.$partid.'.submitted_by'}.'" />';
1042: }
1.41 ng 1043: }
1.248 albertel 1044:
1.156 albertel 1045: next if (!$submitted && ($submitonly eq 'yes' ||
1046: $submitonly eq 'incorrect' ||
1047: $submitonly eq 'graded'));
1.248 albertel 1048: next if (!$graded && ($submitonly eq 'graded'));
1049: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 1050: }
1.34 ng 1051:
1.45 ng 1052: $ctr++;
1.249 albertel 1053: my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452 banghart 1054: my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104 albertel 1055: if ( $perm{'vgr'} eq 'F' ) {
1.474 albertel 1056: if ($ctr%2 ==1) {
1057: $gradeTable.= &Apache::loncommon::start_data_table_row();
1058: }
1.126 ng 1059: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.563 bisitz 1060: '<td align="center"><label><input type="checkbox" name="stuinfo" value="'.
1.249 albertel 1061: $student.':'.$$fullname{$student}.':::SECTION'.$section.
1062: ') " /> </label></td>'."\n".'<td>'.
1063: &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474 albertel 1064: ' '.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110 ng 1065:
1.618 www 1066: if ($submitonly ne 'all') {
1.524 raeburn 1067: foreach (sort(keys(%status))) {
1.485 albertel 1068: next if ($_ =~ /^resource.*?submitted_by$/);
1069: $gradeTable.='<td align="center"> '.&mt($status{$_}).' </td>'."\n";
1.110 ng 1070: }
1.41 ng 1071: }
1.126 ng 1072: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474 albertel 1073: if ($ctr%2 ==0) {
1074: $gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
1075: }
1.41 ng 1076: }
1077: }
1.110 ng 1078: if ($ctr%2 ==1) {
1.126 ng 1079: $gradeTable.='<td> </td><td> </td><td> </td>';
1.618 www 1080: if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.110 ng 1081: foreach (@$partlist) {
1082: $gradeTable.='<td> </td>';
1083: }
1.301 albertel 1084: } elsif ($submitonly eq 'queued') {
1085: $gradeTable.='<td> </td>';
1.110 ng 1086: }
1.474 albertel 1087: $gradeTable.=&Apache::loncommon::end_data_table_row();
1.110 ng 1088: }
1089:
1.474 albertel 1090: $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.589 bisitz 1091: '<input type="button" '.
1092: 'onclick="javascript:checkSelect(this.form.stuinfo);" '.
1093: 'value="'.&mt('Next').' →" /></form>'."\n";
1.45 ng 1094: if ($ctr == 0) {
1.96 albertel 1095: my $num_students=(scalar(keys(%$fullname)));
1096: if ($num_students eq 0) {
1.485 albertel 1097: $gradeTable='<br /> <span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
1.96 albertel 1098: } else {
1.171 albertel 1099: my $submissions='submissions';
1100: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
1101: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 1102: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.398 albertel 1103: $gradeTable='<br /> <span class="LC_warning">'.
1.709 bisitz 1104: &mt('No '.$submissions.' found for this resource for any students. ([quant,_1,student] checked for '.$submissions.')',
1.485 albertel 1105: $num_students).
1106: '</span><br />';
1.96 albertel 1107: }
1.46 ng 1108: } elsif ($ctr == 1) {
1.474 albertel 1109: $gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45 ng 1110: }
1111: $request->print($gradeTable);
1.44 ng 1112: return '';
1.10 ng 1113: }
1114:
1.44 ng 1115: #---- Called from the listStudents routine
1.249 albertel 1116:
1117: sub check_script {
1118: my ($form, $type)=@_;
1.597 wenzelju 1119: my $chkallscript= &Apache::lonhtmlcommon::scripttag('
1.249 albertel 1120: function checkall() {
1121: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1122: ele = document.forms.'.$form.'.elements[i];
1123: if (ele.name == "'.$type.'") {
1124: document.forms.'.$form.'.elements[i].checked=true;
1125: }
1126: }
1127: }
1128:
1129: function checksec() {
1130: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1131: ele = document.forms.'.$form.'.elements[i];
1132: string = document.forms.'.$form.'.chksec.value;
1133: if
1134: (ele.value.indexOf(":::SECTION"+string)>0) {
1135: document.forms.'.$form.'.elements[i].checked=true;
1136: }
1137: }
1138: }
1139:
1140:
1141: function uncheckall() {
1142: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1143: ele = document.forms.'.$form.'.elements[i];
1144: if (ele.name == "'.$type.'") {
1145: document.forms.'.$form.'.elements[i].checked=false;
1146: }
1147: }
1148: }
1149:
1.597 wenzelju 1150: '."\n");
1.249 albertel 1151: return $chkallscript;
1152: }
1153:
1154: sub check_buttons {
1.485 albertel 1155: my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
1156: $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" /> ';
1157: $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
1.249 albertel 1158: $buttons.='<input type="text" size="5" name="chksec" /> ';
1159: return $buttons;
1160: }
1161:
1.44 ng 1162: # Displays the submissions for one student or a group of students
1.34 ng 1163: sub processGroup {
1.619 www 1164: my ($request,$symb) = @_;
1.41 ng 1165: my $ctr = 0;
1.155 albertel 1166: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 1167: my $total = scalar(@stuchecked)-1;
1.45 ng 1168:
1.396 banghart 1169: foreach my $student (@stuchecked) {
1170: my ($uname,$udom,$fullname) = split(/:/,$student);
1.257 albertel 1171: $env{'form.student'} = $uname;
1172: $env{'form.userdom'} = $udom;
1173: $env{'form.fullname'} = $fullname;
1.619 www 1174: &submission($request,$ctr,$total,$symb);
1.41 ng 1175: $ctr++;
1176: }
1177: return '';
1.35 ng 1178: }
1.34 ng 1179:
1.44 ng 1180: #------------------------------------------------------------------------------------
1181: #
1182: #-------------------------- Next few routines handles grading by student, essentially
1183: # handles essay response type problem/part
1184: #
1185: #--- Javascript to handle the submission page functionality ---
1186: sub sub_page_js {
1187: my $request = shift;
1.736 damieng 1188: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1189: &js_escape(\$alertmsg);
1.597 wenzelju 1190: $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
1.71 ng 1191: function updateRadio(formname,id,weight) {
1.125 ng 1192: var gradeBox = formname["GD_BOX"+id];
1193: var radioButton = formname["RADVAL"+id];
1194: var oldpts = formname["oldpts"+id].value;
1.72 ng 1195: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 1196: gradeBox.value = pts;
1197: var resetbox = false;
1198: if (isNaN(pts) || pts < 0) {
1.539 riegler 1199: alert("$alertmsg"+pts);
1.71 ng 1200: for (var i=0; i<radioButton.length; i++) {
1201: if (radioButton[i].checked) {
1202: gradeBox.value = i;
1203: resetbox = true;
1204: }
1205: }
1206: if (!resetbox) {
1207: formtextbox.value = "";
1208: }
1209: return;
1.44 ng 1210: }
1.71 ng 1211:
1212: if (pts > weight) {
1213: var resp = confirm("You entered a value ("+pts+
1214: ") greater than the weight for the part. Accept?");
1215: if (resp == false) {
1.125 ng 1216: gradeBox.value = oldpts;
1.71 ng 1217: return;
1218: }
1.44 ng 1219: }
1.13 albertel 1220:
1.71 ng 1221: for (var i=0; i<radioButton.length; i++) {
1222: radioButton[i].checked=false;
1223: if (pts == i && pts != "") {
1224: radioButton[i].checked=true;
1225: }
1226: }
1227: updateSelect(formname,id);
1.125 ng 1228: formname["stores"+id].value = "0";
1.41 ng 1229: }
1.5 albertel 1230:
1.72 ng 1231: function writeBox(formname,id,pts) {
1.125 ng 1232: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1233: if (checkSolved(formname,id) == 'update') {
1234: gradeBox.value = pts;
1235: } else {
1.125 ng 1236: var oldpts = formname["oldpts"+id].value;
1.72 ng 1237: gradeBox.value = oldpts;
1.125 ng 1238: var radioButton = formname["RADVAL"+id];
1.71 ng 1239: for (var i=0; i<radioButton.length; i++) {
1240: radioButton[i].checked=false;
1.72 ng 1241: if (i == oldpts) {
1.71 ng 1242: radioButton[i].checked=true;
1243: }
1244: }
1.41 ng 1245: }
1.125 ng 1246: formname["stores"+id].value = "0";
1.71 ng 1247: updateSelect(formname,id);
1248: return;
1.41 ng 1249: }
1.44 ng 1250:
1.71 ng 1251: function clearRadBox(formname,id) {
1252: if (checkSolved(formname,id) == 'noupdate') {
1253: updateSelect(formname,id);
1254: return;
1255: }
1.125 ng 1256: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1257: for (var i=0; i<gradeSelect.length; i++) {
1258: if (gradeSelect[i].selected) {
1259: var selectx=i;
1260: }
1261: }
1.125 ng 1262: var stores = formname["stores"+id];
1.71 ng 1263: if (selectx == stores.value) { return };
1.125 ng 1264: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1265: gradeBox.value = "";
1.125 ng 1266: var radioButton = formname["RADVAL"+id];
1.71 ng 1267: for (var i=0; i<radioButton.length; i++) {
1268: radioButton[i].checked=false;
1269: }
1270: stores.value = selectx;
1271: }
1.5 albertel 1272:
1.71 ng 1273: function checkSolved(formname,id) {
1.125 ng 1274: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1275: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1276: if (!reply) {return "noupdate";}
1.120 ng 1277: formname.overRideScore.value = 'yes';
1.41 ng 1278: }
1.71 ng 1279: return "update";
1.13 albertel 1280: }
1.71 ng 1281:
1282: function updateSelect(formname,id) {
1.125 ng 1283: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1284: return;
1.41 ng 1285: }
1.33 ng 1286:
1.121 ng 1287: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1288: function checksubmit(formname,val,total,parttot) {
1.121 ng 1289: formname.gradeOpt.value = val;
1.71 ng 1290: if (val == "Save & Next") {
1291: for (i=0;i<=total;i++) {
1292: for (j=0;j<parttot;j++) {
1.125 ng 1293: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1294: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1295: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1296: if (points == "") {
1.125 ng 1297: var name = formname["name"+i].value;
1.129 ng 1298: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1299: var resp = confirm("You did not assign a score for "+studentID+
1300: ", part "+partid+". Continue?");
1.71 ng 1301: if (resp == false) {
1.125 ng 1302: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1303: return false;
1304: }
1305: }
1306: }
1307: }
1308: }
1309: }
1.120 ng 1310: formname.submit();
1311: }
1312:
1.71 ng 1313: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1314: function checkSubmitPage(formname,total) {
1315: noscore = new Array(100);
1316: var ptr = 0;
1317: for (i=1;i<total;i++) {
1.125 ng 1318: var partid = formname["q_"+i].value;
1.127 ng 1319: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1320: var points = formname["GD_BOX"+i+"_"+partid].value;
1321: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1322: if (points == "" && status != "correct_by_student") {
1323: noscore[ptr] = i;
1324: ptr++;
1325: }
1326: }
1327: }
1328: if (ptr != 0) {
1329: var sense = ptr == 1 ? ": " : "s: ";
1330: var prolist = "";
1331: if (ptr == 1) {
1332: prolist = noscore[0];
1333: } else {
1334: var i = 0;
1335: while (i < ptr-1) {
1336: prolist += noscore[i]+", ";
1337: i++;
1338: }
1339: prolist += "and "+noscore[i];
1340: }
1341: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1342: if (resp == false) {
1343: return false;
1344: }
1345: }
1.45 ng 1346:
1.71 ng 1347: formname.submit();
1348: }
1349: SUBJAVASCRIPT
1350: }
1.45 ng 1351:
1.71 ng 1352: #--- javascript for essay type problem --
1353: sub sub_page_kw_js {
1354: my $request = shift;
1.80 ng 1355: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1356: &commonJSfunctions($request);
1.350 albertel 1357:
1.629 www 1358: my $inner_js_msg_central= (<<INNERJS);
1359: <script type="text/javascript">
1.350 albertel 1360: function checkInput() {
1361: opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
1362: var nmsg = opener.document.SCORE.savemsgN.value;
1363: var usrctr = document.msgcenter.usrctr.value;
1364: var newval = opener.document.SCORE["newmsg"+usrctr];
1365: newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
1366:
1367: var msgchk = "";
1368: if (document.msgcenter.subchk.checked) {
1369: msgchk = "msgsub,";
1370: }
1371: var includemsg = 0;
1372: for (var i=1; i<=nmsg; i++) {
1373: var opnmsg = opener.document.SCORE["savemsg"+i];
1374: var frmmsg = document.msgcenter["msg"+i];
1375: opnmsg.value = opener.checkEntities(frmmsg.value);
1376: var showflg = opener.document.SCORE["shownOnce"+i];
1377: showflg.value = "1";
1378: var chkbox = document.msgcenter["msgn"+i];
1379: if (chkbox.checked) {
1380: msgchk += "savemsg"+i+",";
1381: includemsg = 1;
1382: }
1383: }
1384: if (document.msgcenter.newmsgchk.checked) {
1385: msgchk += "newmsg"+usrctr;
1386: includemsg = 1;
1387: }
1388: imgformname = opener.document.SCORE["mailicon"+usrctr];
1389: imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
1390: var includemsg = opener.document.SCORE["includemsg"+usrctr];
1391: includemsg.value = msgchk;
1392:
1393: self.close()
1394:
1395: }
1.629 www 1396: </script>
1.350 albertel 1397: INNERJS
1398:
1.629 www 1399: my $inner_js_highlight_central= (<<INNERJS);
1400: <script type="text/javascript">
1.351 albertel 1401: function updateChoice(flag) {
1402: opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
1403: opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
1404: opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
1405: opener.document.SCORE.refresh.value = "on";
1406: if (opener.document.SCORE.keywords.value!=""){
1407: opener.document.SCORE.submit();
1408: }
1409: self.close()
1410: }
1.629 www 1411: </script>
1.351 albertel 1412: INNERJS
1413:
1414: my $start_page_msg_central =
1415: &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
1416: {'js_ready' => 1,
1417: 'only_body' => 1,
1418: 'bgcolor' =>'#FFFFFF',});
1419: my $end_page_msg_central =
1420: &Apache::loncommon::end_page({'js_ready' => 1});
1421:
1422:
1423: my $start_page_highlight_central =
1424: &Apache::loncommon::start_page('Highlight Central',
1425: $inner_js_highlight_central,
1.350 albertel 1426: {'js_ready' => 1,
1427: 'only_body' => 1,
1428: 'bgcolor' =>'#FFFFFF',});
1.351 albertel 1429: my $end_page_highlight_central =
1.350 albertel 1430: &Apache::loncommon::end_page({'js_ready' => 1});
1431:
1.219 www 1432: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1433: $docopen=~s/^document\.//;
1.736 damieng 1434: my %js_lt = &Apache::lonlocal::texthash(
1.652 raeburn 1435: keyw => 'Keywords list, separated by a space. Add/delete to list if desired.',
1436: plse => 'Please select a word or group of words from document and then click this link.',
1437: adds => 'Add selection to keyword list? Edit if desired.',
1.736 damieng 1438: col1 => 'red',
1439: col2 => 'green',
1440: col3 => 'blue',
1441: siz1 => 'normal',
1442: siz2 => '+1',
1443: siz3 => '+2',
1444: sty1 => 'normal',
1445: sty2 => 'italic',
1446: sty3 => 'bold',
1447: );
1448: my %html_js_lt = &Apache::lonlocal::texthash(
1.652 raeburn 1449: comp => 'Compose Message for: ',
1450: incl => 'Include',
1.656 raeburn 1451: type => 'Type',
1.652 raeburn 1452: subj => 'Subject',
1453: mesa => 'Message',
1454: new => 'New',
1455: save => 'Save',
1456: canc => 'Cancel',
1457: kehi => 'Keyword Highlight Options',
1458: txtc => 'Text Color',
1459: font => 'Font Size',
1.656 raeburn 1460: fnst => 'Font Style',
1.652 raeburn 1461: );
1.736 damieng 1462: &js_escape(\%js_lt);
1463: &html_escape(\%html_js_lt);
1464: &js_escape(\%html_js_lt);
1.597 wenzelju 1465: $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
1.45 ng 1466:
1.44 ng 1467: //===================== Show list of keywords ====================
1.122 ng 1468: function keywords(formname) {
1.736 damieng 1469: var nret = prompt("$js_lt{'keyw'}",formname.keywords.value);
1.44 ng 1470: if (nret==null) return;
1.122 ng 1471: formname.keywords.value = nret;
1.44 ng 1472:
1.122 ng 1473: if (formname.keywords.value != "") {
1.128 ng 1474: formname.refresh.value = "on";
1.122 ng 1475: formname.submit();
1.44 ng 1476: }
1477: return;
1478: }
1479:
1480: //===================== Script to view submitted by ==================
1481: function viewSubmitter(submitter) {
1482: document.SCORE.refresh.value = "on";
1483: document.SCORE.NCT.value = "1";
1484: document.SCORE.unamedom0.value = submitter;
1485: document.SCORE.submit();
1486: return;
1487: }
1488:
1489: //===================== Script to add keyword(s) ==================
1490: function getSel() {
1491: if (document.getSelection) txt = document.getSelection();
1492: else if (document.selection) txt = document.selection.createRange().text;
1493: else return;
1494: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1495: if (cleantxt=="") {
1.736 damieng 1496: alert("$js_lt{'plse'}");
1.44 ng 1497: return;
1498: }
1.736 damieng 1499: var nret = prompt("$js_lt{'adds'}",cleantxt);
1.44 ng 1500: if (nret==null) return;
1.127 ng 1501: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1502: if (document.SCORE.keywords.value != "") {
1.127 ng 1503: document.SCORE.refresh.value = "on";
1.44 ng 1504: document.SCORE.submit();
1505: }
1506: return;
1507: }
1508:
1509: //====================== Script for composing message ==============
1.80 ng 1510: // preload images
1511: img1 = new Image();
1512: img1.src = "$iconpath/mailbkgrd.gif";
1513: img2 = new Image();
1514: img2.src = "$iconpath/mailto.gif";
1515:
1.44 ng 1516: function msgCenter(msgform,usrctr,fullname) {
1517: var Nmsg = msgform.savemsgN.value;
1518: savedMsgHeader(Nmsg,usrctr,fullname);
1519: var subject = msgform.msgsub.value;
1.127 ng 1520: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1521: re = /msgsub/;
1522: var shwsel = "";
1523: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1524: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1525: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1526: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1527: var testmsg = "savemsg"+i+",";
1528: re = new RegExp(testmsg,"g");
1.44 ng 1529: shwsel = "";
1530: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1531: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1532: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1533: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1534: //any < is already converted to <, etc. However, only once!!
1.44 ng 1535: }
1.125 ng 1536: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1537: shwsel = "";
1538: re = /newmsg/;
1539: if (re.test(msgchk)) { shwsel = "checked" }
1540: newMsg(newmsg,shwsel);
1541: msgTail();
1542: return;
1543: }
1544:
1.123 ng 1545: function checkEntities(strx) {
1546: if (strx.length == 0) return strx;
1547: var orgStr = ["&", "<", ">", '"'];
1548: var newStr = ["&", "<", ">", """];
1549: var counter = 0;
1550: while (counter < 4) {
1551: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1552: counter++;
1553: }
1554: return strx;
1555: }
1556:
1557: function strReplace(strx, orgStr, newStr) {
1558: return strx.split(orgStr).join(newStr);
1559: }
1560:
1.44 ng 1561: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1562: var height = 70*Nmsg+250;
1.44 ng 1563: if (height > 600) {
1564: height = 600;
1565: }
1.118 ng 1566: var xpos = (screen.width-600)/2;
1567: xpos = (xpos < 0) ? '0' : xpos;
1568: var ypos = (screen.height-height)/2-30;
1569: ypos = (ypos < 0) ? '0' : ypos;
1570:
1.668 www 1571: pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars=yes,screenx='+xpos+',screeny='+ypos+',width=700,height='+height);
1.76 ng 1572: pWin.focus();
1573: pDoc = pWin.document;
1.219 www 1574: pDoc.$docopen;
1.351 albertel 1575: pDoc.write('$start_page_msg_central');
1.76 ng 1576:
1577: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1578: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.736 damieng 1579: pDoc.write("<h1> $html_js_lt{'comp'}\"+fullname+\"<\\/h1>");
1.76 ng 1580:
1.676 golterma 1581: pDoc.write('<table style="border:1px solid black;"><tr>');
1.736 damieng 1582: pDoc.write("<td><b>$html_js_lt{'incl'}<\\/b><\\/td><td><b>$html_js_lt{'type'}<\\/b><\\/td><td><b>$html_js_lt{'mesa'}<\\/td><\\/tr>");
1.44 ng 1583: }
1584: function displaySubject(msg,shwsel) {
1.76 ng 1585: pDoc = pWin.document;
1.676 golterma 1586: pDoc.write("<tr>");
1587: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.736 damieng 1588: pDoc.write("<td>$html_js_lt{'subj'}<\\/td>");
1.676 golterma 1589: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"40\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44 ng 1590: }
1591:
1.72 ng 1592: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1593: pDoc = pWin.document;
1.676 golterma 1594: pDoc.write("<tr>");
1595: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.465 albertel 1596: pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
1597: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1598: }
1599:
1600: function newMsg(newmsg,shwsel) {
1.76 ng 1601: pDoc = pWin.document;
1.676 golterma 1602: pDoc.write("<tr>");
1603: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.736 damieng 1604: pDoc.write("<td align=\\"center\\">$html_js_lt{'new'}<\\/td>");
1.465 albertel 1605: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1606: }
1607:
1608: function msgTail() {
1.76 ng 1609: pDoc = pWin.document;
1.676 golterma 1610: //pDoc.write("<\\/table>");
1.465 albertel 1611: pDoc.write("<\\/td><\\/tr><\\/table> ");
1.736 damieng 1612: pDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'save'}\\" onclick=\\"javascript:checkInput()\\"> ");
1613: pDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465 albertel 1614: pDoc.write("<\\/form>");
1.351 albertel 1615: pDoc.write('$end_page_msg_central');
1.128 ng 1616: pDoc.close();
1.44 ng 1617: }
1618:
1619: //====================== Script for keyword highlight options ==============
1620: function kwhighlight() {
1621: var kwclr = document.SCORE.kwclr.value;
1622: var kwsize = document.SCORE.kwsize.value;
1623: var kwstyle = document.SCORE.kwstyle.value;
1624: var redsel = "";
1625: var grnsel = "";
1626: var blusel = "";
1.736 damieng 1627: var txtcol1 = "$js_lt{'col1'}";
1628: var txtcol2 = "$js_lt{'col2'}";
1629: var txtcol3 = "$js_lt{'col3'}";
1630: var txtsiz1 = "$js_lt{'siz1'}";
1631: var txtsiz2 = "$js_lt{'siz2'}";
1632: var txtsiz3 = "$js_lt{'siz3'}";
1633: var txtsty1 = "$js_lt{'sty1'}";
1634: var txtsty2 = "$js_lt{'sty2'}";
1635: var txtsty3 = "$js_lt{'sty3'}";
1.718 bisitz 1636: if (kwclr=="red") {var redsel="checked='checked'"};
1637: if (kwclr=="green") {var grnsel="checked='checked'"};
1638: if (kwclr=="blue") {var blusel="checked='checked'"};
1.44 ng 1639: var sznsel = "";
1640: var sz1sel = "";
1641: var sz2sel = "";
1.718 bisitz 1642: if (kwsize=="0") {var sznsel="checked='checked'"};
1643: if (kwsize=="+1") {var sz1sel="checked='checked'"};
1644: if (kwsize=="+2") {var sz2sel="checked='checked'"};
1.44 ng 1645: var synsel = "";
1646: var syisel = "";
1647: var sybsel = "";
1.718 bisitz 1648: if (kwstyle=="") {var synsel="checked='checked'"};
1649: if (kwstyle=="<i>") {var syisel="checked='checked'"};
1650: if (kwstyle=="<b>") {var sybsel="checked='checked'"};
1.44 ng 1651: highlightCentral();
1.718 bisitz 1652: highlightbody('red',txtcol1,redsel,'0',txtsiz1,sznsel,'',txtsty1,synsel);
1653: highlightbody('green',txtcol2,grnsel,'+1',txtsiz2,sz1sel,'<i>',txtsty2,syisel);
1654: highlightbody('blue',txtcol3,blusel,'+2',txtsiz3,sz2sel,'<b>',txtsty3,sybsel);
1.44 ng 1655: highlightend();
1656: return;
1657: }
1658:
1659: function highlightCentral() {
1.76 ng 1660: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1661: var xpos = (screen.width-400)/2;
1662: xpos = (xpos < 0) ? '0' : xpos;
1663: var ypos = (screen.height-330)/2-30;
1664: ypos = (ypos < 0) ? '0' : ypos;
1665:
1.206 albertel 1666: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1667: hwdWin.focus();
1668: var hDoc = hwdWin.document;
1.219 www 1669: hDoc.$docopen;
1.351 albertel 1670: hDoc.write('$start_page_highlight_central');
1.76 ng 1671: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.736 damieng 1672: hDoc.write("<h1>$html_js_lt{'kehi'}<\\/h1>");
1.76 ng 1673:
1.718 bisitz 1674: hDoc.write('<table border="0" width="100%"><tr style="background-color:#A1D676">');
1.736 damieng 1675: hDoc.write("<th>$html_js_lt{'txtc'}<\\/th><th>$html_js_lt{'font'}<\\/th><th>$html_js_lt{'fnst'}<\\/th><\\/tr>");
1.44 ng 1676: }
1677:
1678: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1679: var hDoc = hwdWin.document;
1.718 bisitz 1680: hDoc.write("<tr>");
1.76 ng 1681: hDoc.write("<td align=\\"left\\">");
1.718 bisitz 1682: hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+" \\/> "+clrtxt+"<\\/td>");
1.76 ng 1683: hDoc.write("<td align=\\"left\\">");
1.718 bisitz 1684: hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+" \\/> "+sztxt+"<\\/td>");
1.76 ng 1685: hDoc.write("<td align=\\"left\\">");
1.718 bisitz 1686: hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+" \\/> "+sytxt+"<\\/td>");
1.465 albertel 1687: hDoc.write("<\\/tr>");
1.44 ng 1688: }
1689:
1690: function highlightend() {
1.76 ng 1691: var hDoc = hwdWin.document;
1.718 bisitz 1692: hDoc.write("<\\/table><br \\/>");
1.736 damieng 1693: hDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'save'}\\" onclick=\\"javascript:updateChoice(1)\\" \\/> ");
1694: hDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'canc'}\\" onclick=\\"self.close()\\" \\/><br /><br />");
1.465 albertel 1695: hDoc.write("<\\/form>");
1.351 albertel 1696: hDoc.write('$end_page_highlight_central');
1.128 ng 1697: hDoc.close();
1.44 ng 1698: }
1699:
1700: SUBJAVASCRIPT
1701: }
1702:
1.349 albertel 1703: sub get_increment {
1.348 bowersj2 1704: my $increment = $env{'form.increment'};
1705: if ($increment != 1 && $increment != .5 && $increment != .25 &&
1706: $increment != .1) {
1707: $increment = 1;
1708: }
1709: return $increment;
1710: }
1711:
1.585 bisitz 1712: sub gradeBox_start {
1713: return (
1714: &Apache::loncommon::start_data_table()
1715: .&Apache::loncommon::start_data_table_header_row()
1716: .'<th>'.&mt('Part').'</th>'
1717: .'<th>'.&mt('Points').'</th>'
1718: .'<th> </th>'
1719: .'<th>'.&mt('Assign Grade').'</th>'
1720: .'<th>'.&mt('Weight').'</th>'
1721: .'<th>'.&mt('Grade Status').'</th>'
1722: .&Apache::loncommon::end_data_table_header_row()
1723: );
1724: }
1725:
1726: sub gradeBox_end {
1727: return (
1728: &Apache::loncommon::end_data_table()
1729: );
1730: }
1.71 ng 1731: #--- displays the grading box, used in essay type problem and grading by page/sequence
1732: sub gradeBox {
1.322 albertel 1733: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381 albertel 1734: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 1735: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 1736: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466 albertel 1737: my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)')
1738: : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71 ng 1739: $wgt = ($wgt > 0 ? $wgt : '1');
1740: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1741: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.695 bisitz 1742: my $data_WGT='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466 albertel 1743: my $display_part= &get_display_part($partid,$symb);
1.270 albertel 1744: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1745: [$partid]);
1746: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1747: if ($last_resets{$partid}) {
1748: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1749: }
1.695 bisitz 1750: my $result=&Apache::loncommon::start_data_table_row();
1.71 ng 1751: my $ctr = 0;
1.348 bowersj2 1752: my $thisweight = 0;
1.349 albertel 1753: my $increment = &get_increment();
1.485 albertel 1754:
1755: my $radio.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1.348 bowersj2 1756: while ($thisweight<=$wgt) {
1.532 bisitz 1757: $radio.= '<td><span class="LC_nobreak"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1758: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348 bowersj2 1759: $thisweight.')" value="'.$thisweight.'" '.
1.401 albertel 1760: ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.485 albertel 1761: $radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348 bowersj2 1762: $thisweight += $increment;
1.71 ng 1763: $ctr++;
1764: }
1.485 albertel 1765: $radio.='</tr></table>';
1766:
1767: my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1.71 ng 1768: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1.589 bisitz 1769: 'onchange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1.71 ng 1770: $wgt.')" /></td>'."\n";
1.485 albertel 1771: $line.='<td>/'.$wgt.' '.$wgtmsg.
1.71 ng 1772: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1.585 bisitz 1773: ' </td>'."\n";
1774: $line.='<td><select name="GD_SEL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1775: 'onchange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1.71 ng 1776: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.485 albertel 1777: $line.='<option></option>'.
1778: '<option value="excused" selected="selected">'.&mt('excused').'</option>';
1.71 ng 1779: } else {
1.485 albertel 1780: $line.='<option selected="selected"></option>'.
1781: '<option value="excused" >'.&mt('excused').'</option>';
1.71 ng 1782: }
1.485 albertel 1783: $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
1784:
1785:
1786: $result .=
1.695 bisitz 1787: '<td>'.$data_WGT.$display_part.'</td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>';
1.585 bisitz 1788: $result.=&Apache::loncommon::end_data_table_row();
1.695 bisitz 1789: $result.=&Apache::loncommon::start_data_table_row().'<td colspan="6">';
1.71 ng 1790: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1791: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1792: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1793: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1794: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1795: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1796: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1797: $aggtries.'" />'."\n";
1.582 raeburn 1798: my $res_error;
1799: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record,\$res_error);
1.695 bisitz 1800: $result.='</td>'.&Apache::loncommon::end_data_table_row();
1.582 raeburn 1801: if ($res_error) {
1802: return &navmap_errormsg();
1803: }
1.318 banghart 1804: return $result;
1805: }
1.322 albertel 1806:
1807: sub handback_box {
1.623 www 1808: my ($symb,$uname,$udom,$counter,$partid,$record,$res_error_pointer) = @_;
1809: my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error_pointer);
1.323 banghart 1810: my (@respids);
1.652 raeburn 1811: my @part_response_id = &flatten_responseType($responseType);
1.375 albertel 1812: foreach my $part_response_id (@part_response_id) {
1813: my ($part,$resp) = @{ $part_response_id };
1.323 banghart 1814: if ($part eq $partid) {
1.375 albertel 1815: push(@respids,$resp);
1.323 banghart 1816: }
1817: }
1.318 banghart 1818: my $result;
1.323 banghart 1819: foreach my $respid (@respids) {
1.322 albertel 1820: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1821: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1822: next if (!@$files);
1.654 raeburn 1823: my $file_counter = 0;
1.313 banghart 1824: foreach my $file (@$files) {
1.368 banghart 1825: if ($file =~ /\/portfolio\//) {
1.654 raeburn 1826: $file_counter++;
1.368 banghart 1827: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
1.729 raeburn 1828: my ($name,$version,$ext) = &Apache::lonnet::file_name_version_ext($file_disp);
1.368 banghart 1829: $file_disp = "$name.$ext";
1830: $file = $file_path.$file_disp;
1831: $result.=&mt('Return commented version of [_1] to student.',
1832: '<span class="LC_filename">'.$file_disp.'</span>');
1833: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1.654 raeburn 1834: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />'."\n";
1.368 banghart 1835: }
1.322 albertel 1836: }
1.654 raeburn 1837: if ($file_counter) {
1838: $result .= '<input type="hidden" name="'.$prefix.'countreturndoc" value="'.$file_counter.'" />'."\n".
1839: '<span class="LC_info">'.
1840: '('.&mt('File(s) will be uploaded when you click on Save & Next below.',$file_counter).')</span><br /><br />';
1841: }
1.313 banghart 1842: }
1.318 banghart 1843: return $result;
1.71 ng 1844: }
1.44 ng 1845:
1.58 albertel 1846: sub show_problem {
1.382 albertel 1847: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144 albertel 1848: my $rendered;
1.382 albertel 1849: my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329 albertel 1850: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1851: if ($mode eq 'both' or $mode eq 'text') {
1852: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382 albertel 1853: $env{'request.course.id'},
1854: undef,\%form);
1.144 albertel 1855: }
1.58 albertel 1856: if ($removeform) {
1857: $rendered=~s|<form(.*?)>||g;
1858: $rendered=~s|</form>||g;
1.374 albertel 1859: $rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58 albertel 1860: }
1.144 albertel 1861: my $companswer;
1862: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1863: &Apache::lonxml::restore_problem_counter();
1.382 albertel 1864: $companswer=
1865: &Apache::loncommon::get_student_answers($symb,$uname,$udom,
1866: $env{'request.course.id'},
1867: %form);
1.144 albertel 1868: }
1.58 albertel 1869: if ($removeform) {
1870: $companswer=~s|<form(.*?)>||g;
1871: $companswer=~s|</form>||g;
1.144 albertel 1872: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1873: }
1.671 raeburn 1874: my $renderheading = &mt('View of the problem');
1875: my $answerheading = &mt('Correct answer');
1876: if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
1877: my $stu_fullname = $env{'form.fullname'};
1878: if ($stu_fullname eq '') {
1879: $stu_fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
1880: }
1881: my $forwhom = &nameUserString(undef,$stu_fullname,$uname,$udom);
1882: if ($forwhom ne '') {
1883: $renderheading = &mt('View of the problem for[_1]',$forwhom);
1884: $answerheading = &mt('Correct answer for[_1]',$forwhom);
1885: }
1886: }
1.468 albertel 1887: $rendered=
1.588 bisitz 1888: '<div class="LC_Box">'
1.671 raeburn 1889: .'<h3 class="LC_hcell">'.$renderheading.'</h3>'
1.588 bisitz 1890: .$rendered
1891: .'</div>';
1.468 albertel 1892: $companswer=
1.588 bisitz 1893: '<div class="LC_Box">'
1.671 raeburn 1894: .'<h3 class="LC_hcell">'.$answerheading.'</h3>'
1.588 bisitz 1895: .$companswer
1896: .'</div>';
1.468 albertel 1897: my $result;
1.144 albertel 1898: if ($mode eq 'both') {
1.588 bisitz 1899: $result=$rendered.$companswer;
1.144 albertel 1900: } elsif ($mode eq 'text') {
1.588 bisitz 1901: $result=$rendered;
1.144 albertel 1902: } elsif ($mode eq 'answer') {
1.588 bisitz 1903: $result=$companswer;
1.144 albertel 1904: }
1.71 ng 1905: return $result;
1.58 albertel 1906: }
1.397 albertel 1907:
1.396 banghart 1908: sub files_exist {
1909: my ($r, $symb) = @_;
1910: my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397 albertel 1911:
1.396 banghart 1912: foreach my $student (@students) {
1913: my ($uname,$udom,$fullname) = split(/:/,$student);
1.397 albertel 1914: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
1915: $udom,$uname);
1.396 banghart 1916: my ($string,$timestamp)= &get_last_submission(\%record);
1.397 albertel 1917: foreach my $submission (@$string) {
1918: my ($partid,$respid) =
1919: ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1920: my $files=&get_submitted_files($udom,$uname,$partid,$respid,
1921: \%record);
1922: return 1 if (@$files);
1.396 banghart 1923: }
1924: }
1.397 albertel 1925: return 0;
1.396 banghart 1926: }
1.397 albertel 1927:
1.394 banghart 1928: sub download_all_link {
1929: my ($r,$symb) = @_;
1.621 www 1930: unless (&files_exist($r, $symb)) {
1931: $r->print(&mt('There are currently no submitted documents.'));
1932: return;
1933: }
1934:
1.395 albertel 1935: my $all_students =
1936: join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
1937:
1938: my $parts =
1939: join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
1940:
1.394 banghart 1941: my $identifier = &Apache::loncommon::get_cgi_id();
1.514 raeburn 1942: &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
1943: 'cgi.'.$identifier.'.symb' => $symb,
1944: 'cgi.'.$identifier.'.parts' => $parts,});
1.395 albertel 1945: $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
1946: &mt('Download All Submitted Documents').'</a>');
1.621 www 1947: return;
1948: }
1949:
1950: sub submit_download_link {
1951: my ($request,$symb) = @_;
1952: if (!$symb) { return ''; }
1953: #FIXME: Figure out which type of problem this is and provide appropriate download
1954: &download_all_link($request,$symb);
1.394 banghart 1955: }
1.395 albertel 1956:
1.432 banghart 1957: sub build_section_inputs {
1958: my $section_inputs;
1959: if ($env{'form.section'} eq '') {
1960: $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
1961: } else {
1962: my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434 albertel 1963: foreach my $section (@sections) {
1.432 banghart 1964: $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
1965: }
1966: }
1967: return $section_inputs;
1968: }
1969:
1.44 ng 1970: # --------------------------- show submissions of a student, option to grade
1971: sub submission {
1.608 www 1972: my ($request,$counter,$total,$symb) = @_;
1.257 albertel 1973: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
1974: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
1975: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
1976: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.608 www 1977:
1.605 www 1978: my $probtitle=&Apache::lonnet::gettitle($symb);
1.324 albertel 1979: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104 albertel 1980:
1981: if (!&canview($usec)) {
1.712 bisitz 1982: $request->print(
1983: '<span class="LC_warning">'.
1.713 bisitz 1984: &mt('Unable to view requested student.').
1.712 bisitz 1985: ' '.&mt('([_1] in section [_2] in course id [_3])',
1986: $uname.':'.$udom,$usec,$env{'request.course.id'}).
1987: '</span>');
1.104 albertel 1988: return;
1989: }
1990:
1.257 albertel 1991: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
1992: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
1993: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
1994: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381 albertel 1995: my $checkIcon = '<img alt="'.&mt('Check Mark').
1996: '" src="'.$request->dir_config('lonIconsURL').
1.122 ng 1997: '/check.gif" height="16" border="0" />';
1.41 ng 1998:
1999: # header info
2000: if ($counter == 0) {
2001: &sub_page_js($request);
1.621 www 2002: &sub_page_kw_js($request);
1.118 ng 2003:
1.44 ng 2004: # option to display problem, only once else it cause problems
2005: # with the form later since the problem has a form.
1.257 albertel 2006: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 2007: my $mode;
1.257 albertel 2008: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 2009: $mode='both';
1.257 albertel 2010: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 2011: $mode='text';
1.257 albertel 2012: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 2013: $mode='answer';
2014: }
1.329 albertel 2015: &Apache::lonxml::clear_problem_counter();
1.144 albertel 2016: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 2017: }
1.441 www 2018:
1.704 raeburn 2019: # kwclr is the only variable that is guaranteed not to be blank
1.44 ng 2020: # if this subroutine has been called once.
1.41 ng 2021: my %keyhash = ();
1.624 www 2022: # if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
2023: if (1) {
1.41 ng 2024: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 2025: $env{'course.'.$env{'request.course.id'}.'.domain'},
2026: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 2027:
1.257 albertel 2028: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
2029: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
2030: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
2031: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
2032: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
2033: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
1.605 www 2034: $keyhash{$symb.'_subject'} : $probtitle;
1.257 albertel 2035: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 2036: }
1.257 albertel 2037: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442 banghart 2038: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303 banghart 2039: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 2040: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.442 banghart 2041: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.120 ng 2042: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.41 ng 2043: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 2044: '<input type="hidden" name="studentNo" value="" />'."\n".
2045: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.418 albertel 2046: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 2047: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
2048: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
2049: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.432 banghart 2050: &build_section_inputs().
1.326 albertel 2051: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
1.41 ng 2052: '<input type="hidden" name="NCT"'.
1.257 albertel 2053: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
1.624 www 2054: # if ($env{'form.handgrade'} eq 'yes') {
2055: if (1) {
1.257 albertel 2056: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
2057: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
2058: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
2059: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
2060: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 2061: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 2062: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 2063: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
2064: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
2065: }
1.123 ng 2066: }
1.41 ng 2067:
2068: my ($cts,$prnmsg) = (1,'');
1.257 albertel 2069: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 2070: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 2071: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 2072: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 2073: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 2074: '" />'."\n".
2075: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 2076: $cts++;
2077: }
2078: $request->print($prnmsg);
1.32 ng 2079:
1.624 www 2080: # if ($env{'form.handgrade'} eq 'yes') {
2081: if (1) {
1.652 raeburn 2082:
2083: my %lt = &Apache::lonlocal::texthash(
1.719 bisitz 2084: keyh => 'Keyword Highlighting for Essays',
1.652 raeburn 2085: keyw => 'Keyword Options',
1.655 raeburn 2086: list => 'List',
1.652 raeburn 2087: past => 'Paste Selection to List',
1.661 www 2088: high => 'Highlight Attribute',
1.652 raeburn 2089: );
1.88 www 2090: #
2091: # Print out the keyword options line
2092: #
1.718 bisitz 2093: $request->print(
2094: '<div class="LC_columnSection">'
2095: .'<fieldset><legend>'.$lt{'keyh'}.'</legend>'
2096: .&Apache::lonhtmlcommon::funclist_from_array(
2097: ['<a href="javascript:keywords(document.SCORE);" target="_self">'.$lt{'list'}.'</a>',
2098: '<a href="#" onmousedown="javascript:getSel(); return false"
2099: class="page">'.$lt{'past'}.'</a>',
2100: '<a href="javascript:kwhighlight();" target="_self">'.$lt{'high'}.'</a>'],
2101: {legend => $lt{'keyw'}})
2102: .'</fieldset></div>'
2103: );
2104:
1.88 www 2105: #
2106: # Load the other essays for similarity check
2107: #
1.324 albertel 2108: my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384 albertel 2109: my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359 www 2110: $apath=&escape($apath);
1.88 www 2111: $apath=~s/\W/\_/gs;
1.674 raeburn 2112: &init_old_essays($symb,$apath,$adom,$aname);
1.41 ng 2113: }
2114: }
1.44 ng 2115:
1.441 www 2116: # This is where output for one specific student would start
1.592 bisitz 2117: my $add_class = ($counter%2) ? ' LC_grade_show_user_odd_row' : '';
2118: $request->print(
2119: "\n\n"
2120: .'<div class="LC_grade_show_user'.$add_class.'">'
2121: .'<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</h2>'
2122: ."\n"
2123: );
1.441 www 2124:
1.592 bisitz 2125: # Show additional functions if allowed
2126: if ($perm{'vgr'}) {
2127: $request->print(
2128: &Apache::loncommon::track_student_link(
1.708 bisitz 2129: 'View recent activity',
1.592 bisitz 2130: $uname,$udom,'check')
2131: .' '
2132: );
2133: }
2134: if ($perm{'opa'}) {
2135: $request->print(
2136: &Apache::loncommon::pprmlink(
2137: &mt('Set/Change parameters'),
2138: $uname,$udom,$symb,'check'));
2139: }
2140:
2141: # Show Problem
1.257 albertel 2142: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144 albertel 2143: my $mode;
1.257 albertel 2144: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 2145: $mode='both';
1.257 albertel 2146: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 2147: $mode='text';
1.257 albertel 2148: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 2149: $mode='answer';
2150: }
1.329 albertel 2151: &Apache::lonxml::clear_problem_counter();
1.475 albertel 2152: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58 albertel 2153: }
1.144 albertel 2154:
1.257 albertel 2155: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.582 raeburn 2156: my $res_error;
2157: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
2158: if ($res_error) {
2159: $request->print(&navmap_errormsg());
2160: return;
2161: }
1.41 ng 2162:
1.44 ng 2163: # Display student info
1.41 ng 2164: $request->print(($counter == 0 ? '' : '<br />'));
1.590 bisitz 2165:
2166: my $result='<div class="LC_Box">'
2167: .'<h3 class="LC_hcell">'.&mt('Submissions').'</h3>';
1.45 ng 2168: $result.='<input type="hidden" name="name'.$counter.
1.588 bisitz 2169: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.624 www 2170: # if ($env{'form.handgrade'} eq 'no') {
2171: if (1) {
1.588 bisitz 2172: $result.='<p class="LC_info">'
2173: .&mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)
2174: ."</p>\n";
1.469 albertel 2175: }
2176:
1.118 ng 2177: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464 albertel 2178: my $fullname;
2179: my $col_fullnames = [];
1.624 www 2180: # if ($env{'form.handgrade'} eq 'yes') {
2181: if (1) {
1.464 albertel 2182: (my $sub_result,$fullname,$col_fullnames)=
2183: &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
2184: $counter);
2185: $result.=$sub_result;
1.41 ng 2186: }
1.44 ng 2187: $request->print($result."\n");
1.702 kruse 2188:
1.44 ng 2189: # print student answer/submission
1.588 bisitz 2190: # Options are (1) Handgraded submission only
1.44 ng 2191: # (2) Last submission, includes submission that is not handgraded
2192: # (for multi-response type part)
2193: # (3) Last submission plus the parts info
2194: # (4) The whole record for this student
1.702 kruse 2195:
2196: my ($string,$timestamp)= &get_last_submission(\%record);
1.468 albertel 2197:
1.702 kruse 2198: my $lastsubonly;
1.468 albertel 2199:
1.702 kruse 2200: if ($$timestamp eq '') {
2201: $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>';
2202: } else {
2203: $lastsubonly =
2204: '<div class="LC_grade_submissions_body">'
2205: .'<b>'.&mt('Date Submitted:').'</b> '.$$timestamp."\n";
2206:
2207: my %seenparts;
2208: my @part_response_id = &flatten_responseType($responseType);
2209: foreach my $part (@part_response_id) {
2210: next if ($env{'form.lastSub'} eq 'hdgrade'
1.393 albertel 2211: && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
2212:
1.702 kruse 2213: my ($partid,$respid) = @{ $part };
2214: my $display_part=&get_display_part($partid,$symb);
2215: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
2216: if (exists($seenparts{$partid})) { next; }
2217: $seenparts{$partid}=1;
2218: $request->print(
2219: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2220: ' <b>'.&mt('Collaborative submission by: [_1]',
2221: '<a href="javascript:viewSubmitter(\''.
2222: $env{"form.$uname:$udom:$partid:submitted_by"}.
2223: '\');" target="_self">'.
2224: $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a>').
2225: '<br />');
2226: next;
2227: }
2228: my $responsetype = $responseType->{$partid}->{$respid};
2229: if (!exists($record{"resource.$partid.$respid.submission"})) {
2230: $lastsubonly.="\n".'<div class="LC_grade_submission_part">'.
2231: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2232: ' <span class="LC_internal_info">'.
2233: '('.&mt('Response ID: [_1]',$respid).')'.
2234: '</span> '.
2235: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br /><br /></div>';
2236: next;
2237: }
2238: foreach my $submission (@$string) {
2239: my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
2240: if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.724 raeburn 2241: my ($ressub,$hide,$draft,$subval) = split(/:/,$submission,4);
1.702 kruse 2242: # Similarity check
2243: my $similar='';
2244: my ($type,$trial,$rndseed);
2245: if ($hide eq 'rand') {
2246: $type = 'randomizetry';
2247: $trial = $record{"resource.$partid.tries"};
1.733 raeburn 2248: $rndseed = $record{"resource.$partid.rndseed"};
1.702 kruse 2249: }
2250: if ($env{'form.checkPlag'}) {
2251: my ($oname,$odom,$ocrsid,$oessay,$osim)=
2252: &most_similar($uname,$udom,$symb,$subval);
2253: if ($osim) {
2254: $osim=int($osim*100.0);
2255: my %old_course_desc =
2256: &Apache::lonnet::coursedescription($ocrsid,
2257: {'one_time' => 1});
2258:
2259: if ($hide eq 'anon') {
2260: $similar='<hr /><span class="LC_warning">'.&mt("Essay was found to be similar to another essay submitted for this assignment.").'<br />'.
2261: &mt('As the current submission is for an anonymous survey, no other details are available.').'</span><hr />';
2262: } else {
2263: $similar="<hr /><h3><span class=\"LC_warning\">".
2264: &mt('Essay is [_1]% similar to an essay by [_2] in course [_3] (course id [_4]:[_5])',
2265: $osim,
2266: &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')',
1.596 raeburn 2267: $old_course_desc{'description'},
2268: $old_course_desc{'num'},
2269: $old_course_desc{'domain'}).
2270: '</span></h3><blockquote><i>'.
2271: &keywords_highlight($oessay).
2272: '</i></blockquote><hr />';
1.702 kruse 2273: }
2274: }
2275: }
2276: my $order=&get_order($partid,$respid,$symb,$uname,$udom,
2277: undef,$type,$trial,$rndseed);
2278: if ($env{'form.lastSub'} eq 'lastonly' || $env{'form.lastSub'} eq 'datesub' || $env{'form.lastSub'} =~ /^(last|all)$/ || ($env{'form.lastSub'} eq 'hdgrade' &&
1.377 albertel 2279: $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.702 kruse 2280: my $display_part=&get_display_part($partid,$symb);
2281: $lastsubonly.='<div class="LC_grade_submission_part">'.
2282: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2283: ' <span class="LC_internal_info">'.
2284: '('.&mt('Response ID: [_1]',$respid).')'.
2285: '</span> ';
2286: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
2287:
2288: if (@$files) {
2289: if ($hide eq 'anon') {
2290: $lastsubonly.='<br />'.&mt('[quant,_1,file] uploaded to this anonymous survey',scalar(@{$files}));
2291: } else {
2292: $lastsubonly.='<br /><br />'.'<b>'.&mt('Submitted Files:').'</b>'
2293: .'<br /><span class="LC_warning">';
2294: if(@$files == 1) {
2295: $lastsubonly .= &mt('Like all files provided by users, this file may contain viruses!');
1.596 raeburn 2296: } else {
1.702 kruse 2297: $lastsubonly .= &mt('Like all files provided by users, these files may contain viruses!');
2298: }
2299: $lastsubonly .= '</span>';
2300: foreach my $file (@$files) {
2301: &Apache::lonnet::allowuploaded('/adm/grades',$file);
2302: $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border="0" alt="" /> '.$file.'</a>';
1.596 raeburn 2303: }
2304: }
1.702 kruse 2305: $lastsubonly.='<br />';
2306: }
2307: if ($hide eq 'anon') {
2308: $lastsubonly.='<br /><b>'.&mt('Anonymous Survey').'</b>';
2309: } else {
1.724 raeburn 2310: $lastsubonly.='<br /><b>'.&mt('Submitted Answer:').' </b>';
2311: if ($draft) {
2312: $lastsubonly.= ' <span class="LC_warning">'.&mt('Draft Copy').'</span>';
2313: }
2314: $subval =
1.702 kruse 2315: &cleanRecord($subval,$responsetype,$symb,$partid,
2316: $respid,\%record,$order,undef,$uname,$udom,$type,$trial,$rndseed);
1.724 raeburn 2317: if ($responsetype eq 'essay') {
2318: $subval =~ s{\n}{<br />}g;
2319: }
2320: $lastsubonly.=$subval."\n";
1.702 kruse 2321: }
2322: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
2323: $lastsubonly.='</div>';
1.41 ng 2324: }
1.702 kruse 2325: }
1.151 albertel 2326: }
1.702 kruse 2327: $lastsubonly.='</div>'."\n"; # End: LC_grade_submissions_body
2328: }
2329: $request->print($lastsubonly);
2330: if ($env{'form.lastSub'} eq 'datesub') {
1.623 www 2331: my ($parts,$handgrade,$responseType) = &response_type($symb,\$res_error);
1.148 albertel 2332: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.720 kruse 2333:
1.702 kruse 2334: }
2335: if ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.726 raeburn 2336: my $identifier = (&canmodify($usec)? $counter : '');
1.702 kruse 2337: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 2338: $env{'request.course.id'},
1.44 ng 2339: $last,'.submission',
1.726 raeburn 2340: 'Apache::grades::keywords_highlight',
2341: $usec,$identifier));
1.41 ng 2342: }
1.121 ng 2343: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
2344: .$udom.'" />'."\n");
1.44 ng 2345: # return if view submission with no grading option
1.618 www 2346: if (!&canmodify($usec)) {
1.633 www 2347: $request->print('<p><span class="LC_warning">'.&mt('No grading privileges').'</span></p></div>');
1.41 ng 2348: return;
1.180 albertel 2349: } else {
1.468 albertel 2350: $request->print('</div>'."\n");
1.41 ng 2351: }
1.33 ng 2352:
1.121 ng 2353: # essay grading message center
1.624 www 2354: # if ($env{'form.handgrade'} eq 'yes') {
2355: if (1) {
1.468 albertel 2356: my $result='<div class="LC_grade_message_center">';
2357:
2358: $result.='<div class="LC_grade_message_center_header">'.
2359: &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257 albertel 2360: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 2361: my $msgfor = $givenn.' '.$lastname;
1.464 albertel 2362: if (scalar(@$col_fullnames) > 0) {
2363: my $lastone = pop(@$col_fullnames);
2364: $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118 ng 2365: }
2366: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468 albertel 2367: $result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121 ng 2368: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
2369: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417 albertel 2370: ',\''.$msgfor.'\');" target="_self">'.
1.695 bisitz 2371: &mt('Compose message to student'.(scalar(@$col_fullnames) >= 1 ? 's' : '')).'</a><label> ('.
1.350 albertel 2372: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.695 bisitz 2373: ' <img src="'.$request->dir_config('lonIconsURL').
2374: '/mailbkgrd.gif" width="14" height="10" alt="" name="mailicon'.$counter.'" />'."\n".
1.298 www 2375: '<br /> ('.
1.468 albertel 2376: &mt('Message will be sent when you click on Save & Next below.').")\n";
2377: $result.='</div></div>';
1.121 ng 2378: $request->print($result);
1.118 ng 2379: }
1.41 ng 2380:
2381: my %seen = ();
2382: my @partlist;
1.129 ng 2383: my @gradePartRespid;
1.375 albertel 2384: my @part_response_id = &flatten_responseType($responseType);
1.585 bisitz 2385: $request->print(
1.588 bisitz 2386: '<div class="LC_Box">'
2387: .'<h3 class="LC_hcell">'.&mt('Assign Grades').'</h3>'
1.585 bisitz 2388: );
1.592 bisitz 2389: $request->print(&gradeBox_start());
1.375 albertel 2390: foreach my $part_response_id (@part_response_id) {
2391: my ($partid,$respid) = @{ $part_response_id };
2392: my $part_resp = join('_',@{ $part_response_id });
1.322 albertel 2393: next if ($seen{$partid} > 0);
1.41 ng 2394: $seen{$partid}++;
1.393 albertel 2395: next if ($$handgrade{$part_resp} ne 'yes'
2396: && $env{'form.lastSub'} eq 'hdgrade');
1.524 raeburn 2397: push(@partlist,$partid);
2398: push(@gradePartRespid,$partid.'.'.$respid);
1.322 albertel 2399: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 2400: }
1.585 bisitz 2401: $request->print(&gradeBox_end()); # </div>
2402: $request->print('</div>');
1.468 albertel 2403:
2404: $request->print('<div class="LC_grade_info_links">');
2405: $request->print('</div>');
2406:
1.45 ng 2407: $result='<input type="hidden" name="partlist'.$counter.
2408: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 2409: $result.='<input type="hidden" name="gradePartRespid'.
2410: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 2411: my $ctr = 0;
2412: while ($ctr < scalar(@partlist)) {
2413: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
2414: $partlist[$ctr].'" />'."\n";
2415: $ctr++;
2416: }
1.468 albertel 2417: $request->print($result.''."\n");
1.41 ng 2418:
1.441 www 2419: # Done with printing info for one student
2420:
1.468 albertel 2421: $request->print('</div>');#LC_grade_show_user
1.441 www 2422:
2423:
1.41 ng 2424: # print end of form
2425: if ($counter == $total) {
1.592 bisitz 2426: my $endform='<br /><hr /><table border="0"><tr><td>'."\n";
1.485 albertel 2427: $endform.='<input type="button" value="'.&mt('Save & Next').'" '.
1.589 bisitz 2428: 'onclick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417 albertel 2429: $total.','.scalar(@partlist).');" target="_self" /> '."\n";
1.119 ng 2430: my $ntstu ='<select name="NTSTU">'.
2431: '<option>1</option><option>2</option>'.
2432: '<option>3</option><option>5</option>'.
2433: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 2434: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401 albertel 2435: $ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.578 raeburn 2436: $endform.=&mt('[_1]student(s)',$ntstu);
1.485 albertel 2437: $endform.=' <input type="button" value="'.&mt('Previous').'" '.
1.589 bisitz 2438: 'onclick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> '."\n".
1.485 albertel 2439: '<input type="button" value="'.&mt('Next').'" '.
1.589 bisitz 2440: 'onclick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> ';
1.592 bisitz 2441: $endform.='<span class="LC_warning">'.
2442: &mt('(Next and Previous (student) do not save the scores.)').
2443: '</span>'."\n" ;
1.349 albertel 2444: $endform.="<input type='hidden' value='".&get_increment().
1.348 bowersj2 2445: "' name='increment' />";
1.485 albertel 2446: $endform.='</td></tr></table></form>';
1.41 ng 2447: $request->print($endform);
2448: }
2449: return '';
1.38 ng 2450: }
2451:
1.464 albertel 2452: sub check_collaborators {
2453: my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
2454: my ($result,@col_fullnames);
2455: my ($classlist,undef,$fullname) = &getclasslist('all','0');
2456: foreach my $part (keys(%$handgrade)) {
2457: my $ncol = &Apache::lonnet::EXT('resource.'.$part.
2458: '.maxcollaborators',
2459: $symb,$udom,$uname);
2460: next if ($ncol <= 0);
2461: $part =~ s/\_/\./g;
2462: next if ($record->{'resource.'.$part.'.collaborators'} eq '');
2463: my (@good_collaborators, @bad_collaborators);
2464: foreach my $possible_collaborator
1.630 www 2465: (split(/[,;\s]+/,$record->{'resource.'.$part.'.collaborators'})) {
1.464 albertel 2466: $possible_collaborator =~ s/[\$\^\(\)]//g;
2467: next if ($possible_collaborator eq '');
1.631 www 2468: my ($co_name,$co_dom) = split(/:/,$possible_collaborator);
1.464 albertel 2469: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
2470: next if ($co_name eq $uname && $co_dom eq $udom);
2471: # Doing this grep allows 'fuzzy' specification
2472: my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i,
2473: keys(%$classlist));
2474: if (! scalar(@matches)) {
2475: push(@bad_collaborators, $possible_collaborator);
2476: } else {
2477: push(@good_collaborators, @matches);
2478: }
2479: }
2480: if (scalar(@good_collaborators) != 0) {
1.630 www 2481: $result.='<br />'.&mt('Collaborators:').'<ol>';
1.464 albertel 2482: foreach my $name (@good_collaborators) {
2483: my ($lastname,$givenn) = split(/,/,$$fullname{$name});
2484: push(@col_fullnames, $givenn.' '.$lastname);
1.630 www 2485: $result.='<li>'.$fullname->{$name}.'</li>';
1.464 albertel 2486: }
1.630 www 2487: $result.='</ol><br />'."\n";
1.466 albertel 2488: my ($part)=split(/\./,$part);
1.464 albertel 2489: $result.='<input type="hidden" name="collaborator'.$counter.
2490: '" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
2491: "\n";
2492: }
2493: if (scalar(@bad_collaborators) > 0) {
1.466 albertel 2494: $result.='<div class="LC_warning">';
1.464 albertel 2495: $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
2496: $result .= '</div>';
2497: }
2498: if (scalar(@bad_collaborators > $ncol)) {
1.466 albertel 2499: $result .= '<div class="LC_warning">';
1.464 albertel 2500: $result .= &mt('This student has submitted too many '.
2501: 'collaborators. Maximum is [_1].',$ncol);
2502: $result .= '</div>';
2503: }
2504: }
2505: return ($result,$fullname,\@col_fullnames);
2506: }
2507:
1.44 ng 2508: #--- Retrieve the last submission for all the parts
1.38 ng 2509: sub get_last_submission {
1.119 ng 2510: my ($returnhash)=@_;
1.596 raeburn 2511: my (@string,$timestamp,%lasthidden);
1.119 ng 2512: if ($$returnhash{'version'}) {
1.46 ng 2513: my %lasthash=();
2514: my ($version);
1.119 ng 2515: for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397 albertel 2516: foreach my $key (sort(split(/\:/,
2517: $$returnhash{$version.':keys'}))) {
2518: $lasthash{$key}=$$returnhash{$version.':'.$key};
2519: $timestamp =
1.545 raeburn 2520: &Apache::lonlocal::locallocaltime($$returnhash{$version.':timestamp'});
1.46 ng 2521: }
2522: }
1.640 raeburn 2523: my (%typeparts,%randombytry);
1.596 raeburn 2524: my $showsurv =
2525: &Apache::lonnet::allowed('vas',$env{'request.course.id'});
2526: foreach my $key (sort(keys(%lasthash))) {
2527: if ($key =~ /\.type$/) {
2528: if (($lasthash{$key} eq 'anonsurvey') ||
1.640 raeburn 2529: ($lasthash{$key} eq 'anonsurveycred') ||
2530: ($lasthash{$key} eq 'randomizetry')) {
1.596 raeburn 2531: my ($ign,@parts) = split(/\./,$key);
2532: pop(@parts);
1.641 raeburn 2533: my $id = join('.',@parts);
1.640 raeburn 2534: if ($lasthash{$key} eq 'randomizetry') {
2535: $randombytry{$ign.'.'.$id} = $lasthash{$key};
2536: } else {
2537: unless ($showsurv) {
2538: $typeparts{$ign.'.'.$id} = $lasthash{$key};
2539: }
1.596 raeburn 2540: }
2541: delete($lasthash{$key});
2542: }
2543: }
2544: }
2545: my @hidden = keys(%typeparts);
1.640 raeburn 2546: my @randomize = keys(%randombytry);
1.397 albertel 2547: foreach my $key (keys(%lasthash)) {
2548: next if ($key !~ /\.submission$/);
1.596 raeburn 2549: my $hide;
2550: if (@hidden) {
2551: foreach my $id (@hidden) {
2552: if ($key =~ /^\Q$id\E/) {
1.640 raeburn 2553: $hide = 'anon';
1.596 raeburn 2554: last;
2555: }
2556: }
2557: }
1.640 raeburn 2558: unless ($hide) {
2559: if (@randomize) {
1.732 raeburn 2560: foreach my $id (@randomize) {
1.640 raeburn 2561: if ($key =~ /^\Q$id\E/) {
2562: $hide = 'rand';
2563: last;
2564: }
2565: }
2566: }
2567: }
1.397 albertel 2568: my ($partid,$foo) = split(/submission$/,$key);
1.724 raeburn 2569: my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ? 1 : 0;
2570: push(@string, join(':', $key, $hide, $draft, (
1.716 bisitz 2571: ref($lasthash{$key}) eq 'ARRAY' ?
2572: join(',', @{$lasthash{$key}}) : $lasthash{$key}) ));
1.41 ng 2573: }
2574: }
1.397 albertel 2575: if (!@string) {
2576: $string[0] =
1.539 riegler 2577: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span>';
1.397 albertel 2578: }
2579: return (\@string,\$timestamp);
1.38 ng 2580: }
1.35 ng 2581:
1.44 ng 2582: #--- High light keywords, with style choosen by user.
1.38 ng 2583: sub keywords_highlight {
1.44 ng 2584: my $string = shift;
1.257 albertel 2585: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2586: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2587: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2588: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.398 albertel 2589: foreach my $keyword (@keylist) {
2590: $string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41 ng 2591: }
2592: return $string;
1.38 ng 2593: }
1.36 ng 2594:
1.671 raeburn 2595: # For Tasks provide a mechanism to display previous version for one specific student
2596:
2597: sub show_previous_task_version {
2598: my ($request,$symb) = @_;
2599: if ($symb eq '') {
1.717 bisitz 2600: $request->print(
2601: '<span class="LC_error">'.
2602: &mt('Unable to handle ambiguous references.').
2603: '</span>');
1.671 raeburn 2604: return '';
2605: }
2606: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
2607: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
2608: if (!&canview($usec)) {
1.712 bisitz 2609: $request->print(
2610: '<span class="LC_warning">'.
1.713 bisitz 2611: &mt('Unable to view previous version for requested student.').
1.712 bisitz 2612: ' '.&mt('([_1] in section [_2] in course id [_3])',
2613: $uname.':'.$udom,$usec,$env{'request.course.id'}).
2614: '</span>');
1.671 raeburn 2615: return;
2616: }
2617: my $mode = 'both';
2618: my $isTask = ($symb =~/\.task$/);
2619: if ($isTask) {
2620: if ($env{'form.previousversion'} =~ /^\d+$/) {
2621: if ($env{'form.fullname'} eq '') {
2622: $env{'form.fullname'} =
2623: &Apache::loncommon::plainname($uname,$udom,'lastname');
2624: }
2625: my $probtitle=&Apache::lonnet::gettitle($symb);
2626: $request->print("\n\n".
2627: '<div class="LC_grade_show_user">'.
2628: '<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
2629: '</h2>'."\n");
2630: &Apache::lonxml::clear_problem_counter();
2631: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,
2632: {'previousversion' => $env{'form.previousversion'} }));
2633: $request->print("\n</div>");
2634: }
2635: }
2636: return;
2637: }
2638:
2639: sub choose_task_version_form {
2640: my ($symb,$uname,$udom,$nomenu) = @_;
2641: my $isTask = ($symb =~/\.task$/);
2642: my ($current,$version,$result,$js,$displayed,$rowtitle);
2643: if ($isTask) {
2644: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
2645: $udom,$uname);
2646: if (($record{'resource.0.version'} eq '') ||
2647: ($record{'resource.0.version'} < 2)) {
2648: return ($record{'resource.0.version'},
2649: $record{'resource.0.version'},$result,$js);
2650: } else {
2651: $current = $record{'resource.0.version'};
2652: }
2653: if ($env{'form.previousversion'}) {
2654: $displayed = $env{'form.previousversion'};
2655: $rowtitle = &mt('Choose another version:')
2656: } else {
2657: $displayed = $current;
2658: $rowtitle = &mt('Show earlier version:');
2659: }
2660: $result = '<div class="LC_left_float">';
2661: my $list;
2662: my $numversions = 0;
2663: for (my $i=1; $i<=$record{'resource.0.version'}; $i++) {
2664: if ($i == $current) {
2665: if (!$env{'form.previousversion'} || $nomenu) {
2666: next;
2667: } else {
2668: $list .= '<option value="'.$i.'">'.&mt('Current').'</option>'."\n";
2669: $numversions ++;
2670: }
2671: } elsif (defined($record{'resource.'.$i.'.0.status'})) {
2672: unless ($i == $env{'form.previousversion'}) {
2673: $numversions ++;
2674: }
2675: $list .= '<option value="'.$i.'">'.$i.'</option>'."\n";
2676: }
2677: }
2678: if ($numversions) {
2679: $symb = &HTML::Entities::encode($symb,'<>"&');
2680: $result .=
2681: '<form name="getprev" method="post" action=""'.
2682: ' onsubmit="return previousVersion('."'$uname','$udom','$symb','$displayed'".');">'.
2683: &Apache::loncommon::start_data_table().
2684: &Apache::loncommon::start_data_table_row().
2685: '<th align="left">'.$rowtitle.'</th>'.
2686: '<td><select name="version">'.
2687: '<option>'.&mt('Select').'</option>'.
2688: $list.
2689: '</select></td>'.
2690: &Apache::loncommon::end_data_table_row();
2691: unless ($nomenu) {
2692: $result .= &Apache::loncommon::start_data_table_row().
2693: '<th align="left">'.&mt('Open in new window').'</th>'.
2694: '<td><span class="LC_nobreak">'.
2695: '<label><input type="radio" name="prevwin" value="1" />'.
2696: &mt('Yes').'</label>'.
2697: '<label><input type="radio" name="prevwin" value="0" checked="checked" />'.&mt('No').'</label>'.
2698: '</span></td>'.
2699: &Apache::loncommon::end_data_table_row();
2700: }
2701: $result .=
2702: &Apache::loncommon::start_data_table_row().
2703: '<th align="left"> </th>'.
2704: '<td>'.
2705: '<input type="submit" name="prevsub" value="'.&mt('Display').'" />'.
2706: '</td>'.
2707: &Apache::loncommon::end_data_table_row().
2708: &Apache::loncommon::end_data_table().
2709: '</form>';
2710: $js = &previous_display_javascript($nomenu,$current);
2711: } elsif ($displayed && $nomenu) {
2712: $result .= '<a href="javascript:window.close()">'.&mt('Close window').'</a>';
2713: } else {
2714: $result .= &mt('No previous versions to show for this student');
2715: }
2716: $result .= '</div>';
2717: }
2718: return ($current,$displayed,$result,$js);
2719: }
2720:
2721: sub previous_display_javascript {
2722: my ($nomenu,$current) = @_;
2723: my $js = <<"JSONE";
2724: <script type="text/javascript">
2725: // <![CDATA[
2726: function previousVersion(uname,udom,symb) {
2727: var current = '$current';
2728: var version = document.getprev.version.options[document.getprev.version.selectedIndex].value;
2729: var prevstr = new RegExp("^\\\\d+\$");
2730: if (!prevstr.test(version)) {
2731: return false;
2732: }
2733: var url = '';
2734: if (version == current) {
2735: url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=submission';
2736: } else {
2737: url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=versionsub&previousversion='+version;
2738: }
2739: JSONE
2740: if ($nomenu) {
2741: $js .= <<"JSTWO";
2742: document.location.href = url;
2743: JSTWO
2744: } else {
2745: $js .= <<"JSTHREE";
2746: var newwin = 0;
2747: for (var i=0; i<document.getprev.prevwin.length; i++) {
2748: if (document.getprev.prevwin[i].checked == true) {
2749: newwin = document.getprev.prevwin[i].value;
2750: }
2751: }
2752: if (newwin == 1) {
2753: var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
2754: url = url+'&inhibitmenu=yes';
2755: if (typeof(previousWin) == 'undefined' || previousWin.closed) {
2756: previousWin = window.open(url,'',options,1);
2757: } else {
2758: previousWin.location.href = url;
2759: }
2760: previousWin.focus();
2761: return false;
2762: } else {
2763: document.location.href = url;
2764: return false;
2765: }
2766: JSTHREE
2767: }
2768: $js .= <<"ENDJS";
2769: return false;
2770: }
2771: // ]]>
2772: </script>
2773: ENDJS
2774:
2775: }
2776:
1.44 ng 2777: #--- Called from submission routine
1.38 ng 2778: sub processHandGrade {
1.608 www 2779: my ($request,$symb) = @_;
1.324 albertel 2780: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2781: my $button = $env{'form.gradeOpt'};
2782: my $ngrade = $env{'form.NCT'};
2783: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2784: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2785: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2786:
1.44 ng 2787: if ($button eq 'Save & Next') {
2788: my $ctr = 0;
2789: while ($ctr < $ngrade) {
1.257 albertel 2790: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.726 raeburn 2791: my ($errorflag,$pts,$wgt,$numhidden) =
2792: &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2793: if ($errorflag eq 'no_score') {
2794: $ctr++;
2795: next;
2796: }
1.104 albertel 2797: if ($errorflag eq 'not_allowed') {
1.721 bisitz 2798: $request->print(
2799: '<span class="LC_error">'
2800: .&mt('Not allowed to modify grades for [_1]',"$uname:$udom")
2801: .'</span>');
1.104 albertel 2802: $ctr++;
2803: next;
2804: }
1.726 raeburn 2805: if ($numhidden) {
2806: $request->print(
2807: '<span class="LC_info">'
2808: .&mt('For [_1]: [quant,_2,transaction] hidden',"$uname:$udom",$numhidden)
2809: .'</span><br />');
2810: }
1.257 albertel 2811: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2812: my ($subject,$message,$msgstatus) = ('','','');
1.418 albertel 2813: my $restitle = &Apache::lonnet::gettitle($symb);
2814: my ($feedurl,$showsymb) =
2815: &get_feedurl_and_symb($symb,$uname,$udom);
2816: my $messagetail;
1.62 albertel 2817: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2818: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2819: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386 raeburn 2820: $subject.=' ['.$restitle.']';
1.44 ng 2821: my (@msgnum) = split(/,/,$includemsg);
2822: foreach (@msgnum) {
1.257 albertel 2823: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2824: }
1.80 ng 2825: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2826: if ($env{'form.withgrades'.$ctr}) {
2827: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386 raeburn 2828: $messagetail = " for <a href=\"".
1.605 www 2829: $feedurl."?symb=$showsymb\">$restitle</a>";
1.386 raeburn 2830: }
2831: $msgstatus =
2832: &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
2833: $message.$messagetail,
1.418 albertel 2834: undef,$feedurl,undef,
1.386 raeburn 2835: undef,undef,$showsymb,
2836: $restitle);
1.574 bisitz 2837: $request->print('<br />'.&mt('Sending message to [_1]',$uname.':'.$udom).': '.
1.652 raeburn 2838: $msgstatus.'<br />');
1.44 ng 2839: }
1.257 albertel 2840: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2841: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2842: foreach my $collabstr (@collabstrs) {
2843: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2844: foreach my $collaborator (@collaborators) {
1.150 albertel 2845: my ($errorflag,$pts,$wgt) =
1.324 albertel 2846: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2847: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2848: if ($errorflag eq 'not_allowed') {
1.362 albertel 2849: $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150 albertel 2850: next;
1.418 albertel 2851: } elsif ($message ne '') {
2852: my ($baseurl,$showsymb) =
2853: &get_feedurl_and_symb($symb,$collaborator,
2854: $udom);
2855: if ($env{'form.withgrades'.$ctr}) {
2856: $messagetail = " for <a href=\"".
1.605 www 2857: $baseurl."?symb=$showsymb\">$restitle</a>";
1.150 albertel 2858: }
1.418 albertel 2859: $msgstatus =
2860: &Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104 albertel 2861: }
1.44 ng 2862: }
2863: }
2864: }
2865: $ctr++;
2866: }
2867: }
2868:
1.624 www 2869: # if ($env{'form.handgrade'} eq 'yes') {
2870: if (1) {
1.119 ng 2871: # Keywords sorted in alphabatical order
1.257 albertel 2872: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 2873: my %keyhash = ();
1.257 albertel 2874: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
2875: $env{'form.keywords'} =~ s/^\s+|\s+$//;
2876: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
2877: $env{'form.keywords'} = join(' ',@keywords);
2878: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
2879: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
2880: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
2881: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
2882: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 2883:
2884: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 2885: # New messages are saved in env for the next student.
1.119 ng 2886: # All messages are saved in nohist_handgrade.db
2887: my ($ctr,$idx) = (1,1);
1.257 albertel 2888: while ($ctr <= $env{'form.savemsgN'}) {
2889: if ($env{'form.savemsg'.$ctr} ne '') {
2890: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 2891: $idx++;
2892: }
2893: $ctr++;
1.41 ng 2894: }
1.119 ng 2895: $ctr = 0;
2896: while ($ctr < $ngrade) {
1.257 albertel 2897: if ($env{'form.newmsg'.$ctr} ne '') {
2898: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
2899: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 2900: $idx++;
2901: }
2902: $ctr++;
1.41 ng 2903: }
1.257 albertel 2904: $env{'form.savemsgN'} = --$idx;
2905: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 2906: my $putresult = &Apache::lonnet::put
1.301 albertel 2907: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 2908: }
1.44 ng 2909: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 2910: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
2911: if ($env{'form.refresh'} eq 'on') {
1.86 ng 2912: my ($ctr,$total) = (0,0);
2913: while ($ctr < $ngrade) {
1.257 albertel 2914: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 2915: $ctr++;
2916: }
1.257 albertel 2917: $env{'form.NTSTU'}=$ngrade;
1.86 ng 2918: $ctr = 0;
2919: while ($ctr < $total) {
1.257 albertel 2920: my $processUser = $env{'form.unamedom'.$ctr};
2921: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2922: $env{'form.fullname'} = $$fullname{$processUser};
1.625 www 2923: &submission($request,$ctr,$total-1,$symb);
1.41 ng 2924: $ctr++;
2925: }
2926: return '';
2927: }
1.36 ng 2928:
1.44 ng 2929: # Get the next/previous one or group of students
1.257 albertel 2930: my $firststu = $env{'form.unamedom0'};
2931: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 2932: my $ctr = 2;
1.41 ng 2933: while ($laststu eq '') {
1.257 albertel 2934: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 2935: $ctr++;
2936: $laststu = $firststu if ($ctr > $ngrade);
2937: }
1.44 ng 2938:
1.41 ng 2939: my (@parsedlist,@nextlist);
2940: my ($nextflg) = 0;
1.524 raeburn 2941: foreach my $item (sort
1.294 albertel 2942: {
2943: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2944: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2945: }
2946: return $a cmp $b;
2947: } (keys(%$fullname))) {
1.605 www 2948: # FIXME: this is fishy, looks like the button label
1.41 ng 2949: if ($nextflg == 1 && $button =~ /Next$/) {
1.524 raeburn 2950: push(@parsedlist,$item);
1.41 ng 2951: }
1.524 raeburn 2952: $nextflg = 1 if ($item eq $laststu);
1.41 ng 2953: if ($button eq 'Previous') {
1.524 raeburn 2954: last if ($item eq $firststu);
2955: push(@parsedlist,$item);
1.41 ng 2956: }
2957: }
2958: $ctr = 0;
1.605 www 2959: # FIXME: this is fishy, looks like the button label
1.41 ng 2960: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.582 raeburn 2961: my $res_error;
2962: my ($partlist) = &response_type($symb,\$res_error);
2963: if ($res_error) {
2964: $request->print(&navmap_errormsg());
2965: return;
2966: }
1.41 ng 2967: foreach my $student (@parsedlist) {
1.257 albertel 2968: my $submitonly=$env{'form.submitonly'};
1.41 ng 2969: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 2970:
2971: if ($submitonly eq 'queued') {
2972: my %queue_status =
2973: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
2974: $udom,$uname);
2975: next if (!defined($queue_status{'gradingqueue'}));
2976: }
2977:
1.156 albertel 2978: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 2979: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2980: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 2981: my $submitted = 0;
1.248 albertel 2982: my $ungraded = 0;
2983: my $incorrect = 0;
1.524 raeburn 2984: foreach my $item (keys(%status)) {
2985: $submitted = 1 if ($status{$item} ne 'nothing');
2986: $ungraded = 1 if ($status{$item} =~ /^ungraded/);
2987: $incorrect = 1 if ($status{$item} =~ /^incorrect/);
2988: my ($foo,$partid,$foo1) = split(/\./,$item);
1.145 albertel 2989: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
2990: $submitted = 0;
2991: }
1.41 ng 2992: }
1.156 albertel 2993: next if (!$submitted && ($submitonly eq 'yes' ||
2994: $submitonly eq 'incorrect' ||
2995: $submitonly eq 'graded'));
1.248 albertel 2996: next if (!$ungraded && ($submitonly eq 'graded'));
2997: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 2998: }
1.524 raeburn 2999: push(@nextlist,$student) if ($ctr < $ntstu);
1.129 ng 3000: last if ($ctr == $ntstu);
1.41 ng 3001: $ctr++;
3002: }
1.36 ng 3003:
1.41 ng 3004: $ctr = 0;
3005: my $total = scalar(@nextlist)-1;
1.39 ng 3006:
1.524 raeburn 3007: foreach (sort(@nextlist)) {
1.41 ng 3008: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 3009: $env{'form.student'} = $uname;
3010: $env{'form.userdom'} = $udom;
3011: $env{'form.fullname'} = $$fullname{$_};
1.625 www 3012: &submission($request,$ctr,$total,$symb);
1.41 ng 3013: $ctr++;
3014: }
3015: if ($total < 0) {
1.653 raeburn 3016: my $the_end.='<p>'.&mt('[_1]Message:[_2] No more students for this section or class.','<b>','</b>').'</p>'."\n";
1.41 ng 3017: $request->print($the_end);
3018: }
3019: return '';
1.38 ng 3020: }
1.36 ng 3021:
1.44 ng 3022: #---- Save the score and award for each student, if changed
1.38 ng 3023: sub saveHandGrade {
1.324 albertel 3024: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 3025: my @version_parts;
1.104 albertel 3026: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 3027: $env{'request.course.id'});
1.104 albertel 3028: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 3029: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 3030: my @parts_graded;
1.77 ng 3031: my %newrecord = ();
1.726 raeburn 3032: my ($pts,$wgt,$totchg) = ('','',0);
1.269 raeburn 3033: my %aggregate = ();
3034: my $aggregateflag = 0;
1.726 raeburn 3035: if ($env{'form.HIDE'.$newflg}) {
1.727 raeburn 3036: my ($version,$parts) = split(/:/,$env{'form.HIDE'.$newflg},2);
1.728 raeburn 3037: my $numchgs = &makehidden($version,$parts,\%record,$symb,$domain,$stuname,1);
1.726 raeburn 3038: $totchg += $numchgs;
3039: }
1.301 albertel 3040: my @parts = split(/:/,$env{'form.partlist'.$newflg});
3041: foreach my $new_part (@parts) {
1.337 banghart 3042: #collaborator ($submi may vary for different parts
1.259 banghart 3043: if ($submitter && $new_part ne $part) { next; }
3044: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 3045: if ($dropMenu eq 'excused') {
1.259 banghart 3046: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
3047: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
3048: if (exists($record{'resource.'.$new_part.'.awarded'})) {
3049: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 3050: }
1.364 banghart 3051: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 3052: }
1.125 ng 3053: } elsif ($dropMenu eq 'reset status'
1.259 banghart 3054: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.524 raeburn 3055: foreach my $key (keys(%record)) {
1.259 banghart 3056: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 3057: }
1.259 banghart 3058: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 3059: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 3060: my $totaltries = $record{'resource.'.$part.'.tries'};
3061:
3062: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
3063: [$new_part]);
3064: my $aggtries =$totaltries;
1.269 raeburn 3065: if ($last_resets{$new_part}) {
1.270 albertel 3066: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
3067: $new_part);
1.269 raeburn 3068: }
1.270 albertel 3069:
3070: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 3071: if ($aggtries > 0) {
1.327 albertel 3072: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 3073: $aggregateflag = 1;
3074: }
1.125 ng 3075: } elsif ($dropMenu eq '') {
1.259 banghart 3076: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
3077: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
3078: $env{'form.RADVAL'.$newflg.'_'.$new_part});
3079: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 3080: next;
3081: }
1.259 banghart 3082: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
3083: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 3084: my $partial= $pts/$wgt;
1.259 banghart 3085: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 3086: #do not update score for part if not changed.
1.346 banghart 3087: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 3088: next;
1.251 banghart 3089: } else {
1.524 raeburn 3090: push(@parts_graded,$new_part);
1.153 albertel 3091: }
1.259 banghart 3092: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
3093: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 3094: }
1.259 banghart 3095: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 3096: if ($partial == 0) {
1.153 albertel 3097: if ($record{$reckey} ne 'incorrect_by_override') {
3098: $newrecord{$reckey} = 'incorrect_by_override';
3099: }
1.41 ng 3100: } else {
1.153 albertel 3101: if ($record{$reckey} ne 'correct_by_override') {
3102: $newrecord{$reckey} = 'correct_by_override';
3103: }
3104: }
3105: if ($submitter &&
1.259 banghart 3106: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
3107: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 3108: }
1.259 banghart 3109: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 3110: "$env{'user.name'}:$env{'user.domain'}";
1.41 ng 3111: }
1.259 banghart 3112: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 3113: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
3114: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
3115: $dropMenu eq 'reset status')
3116: {
1.524 raeburn 3117: push(@version_parts,$new_part);
1.259 banghart 3118: }
1.41 ng 3119: }
1.301 albertel 3120: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3121: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3122:
1.344 albertel 3123: if (%newrecord) {
3124: if (@version_parts) {
1.364 banghart 3125: my @changed_keys = &version_portfiles(\%record, \@parts_graded,
3126: $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 3127: @newrecord{@changed_keys} = @record{@changed_keys};
1.367 albertel 3128: foreach my $new_part (@version_parts) {
3129: &handback_files($request,$symb,$stuname,$domain,$newflg,
3130: $new_part,\%newrecord);
3131: }
1.259 banghart 3132: }
1.44 ng 3133: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 3134: $env{'request.course.id'},$domain,$stuname);
1.380 albertel 3135: &check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
3136: $cdom,$cnum,$domain,$stuname);
1.41 ng 3137: }
1.269 raeburn 3138: if ($aggregateflag) {
3139: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3140: $cdom,$cnum);
1.269 raeburn 3141: }
1.726 raeburn 3142: return ('',$pts,$wgt,$totchg);
3143: }
3144:
3145: sub makehidden {
1.728 raeburn 3146: my ($version,$parts,$record,$symb,$domain,$stuname,$tolog) = @_;
1.726 raeburn 3147: return unless (ref($record) eq 'HASH');
3148: my %modified;
3149: my $numchanged = 0;
3150: if (exists($record->{$version.':keys'})) {
3151: my $partsregexp = $parts;
3152: $partsregexp =~ s/,/|/g;
3153: foreach my $key (split(/\:/,$record->{$version.':keys'})) {
3154: if ($key =~ /^resource\.(?:$partsregexp)\.([^\.]+)$/) {
3155: my $item = $1;
3156: unless (($item eq 'solved') || ($item =~ /^award(|msg|ed)$/)) {
3157: $modified{$key} = $record->{$version.':'.$key};
3158: }
3159: } elsif ($key =~ m{^(resource\.(?:$partsregexp)\.[^\.]+\.)(.+)$}) {
3160: $modified{$1.'hidden'.$2} = $record->{$version.':'.$key};
3161: } elsif ($key =~ /^(ip|timestamp|host)$/) {
3162: $modified{$key} = $record->{$version.':'.$key};
3163: }
3164: }
3165: if (keys(%modified)) {
3166: if (&Apache::lonnet::putstore($env{'request.course.id'},$symb,$version,\%modified,
1.728 raeburn 3167: $domain,$stuname,$tolog) eq 'ok') {
1.726 raeburn 3168: $numchanged ++;
3169: }
3170: }
3171: }
3172: return $numchanged;
1.36 ng 3173: }
1.322 albertel 3174:
1.380 albertel 3175: sub check_and_remove_from_queue {
3176: my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
3177: my @ungraded_parts;
3178: foreach my $part (@{$parts}) {
3179: if ( $record->{ 'resource.'.$part.'.awarded'} eq ''
3180: && $record->{ 'resource.'.$part.'.solved' } ne 'excused'
3181: && $newrecord->{'resource.'.$part.'.awarded'} eq ''
3182: && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
3183: ) {
3184: push(@ungraded_parts, $part);
3185: }
3186: }
3187: if ( !@ungraded_parts ) {
3188: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
3189: $cnum,$domain,$stuname);
3190: }
3191: }
3192:
1.337 banghart 3193: sub handback_files {
3194: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.517 raeburn 3195: my $portfolio_root = '/userfiles/portfolio';
1.582 raeburn 3196: my $res_error;
3197: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3198: if ($res_error) {
3199: $request->print('<br />'.&navmap_errormsg().'<br />');
3200: return;
3201: }
1.654 raeburn 3202: my @handedback;
3203: my $file_msg;
1.375 albertel 3204: my @part_response_id = &flatten_responseType($responseType);
3205: foreach my $part_response_id (@part_response_id) {
3206: my ($part_id,$resp_id) = @{ $part_response_id };
3207: my $part_resp = join('_',@{ $part_response_id });
1.654 raeburn 3208: if (($env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'} =~ /^\d+$/) & ($new_part eq $part_id)) {
3209: for (my $counter=1; $counter<=$env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'}; $counter++) {
3210: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
3211: if ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter}) {
3212: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter.'.filename'};
1.338 banghart 3213: my ($directory,$answer_file) =
1.654 raeburn 3214: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter} =~ /^(.*?)([^\/]*)$/);
1.338 banghart 3215: my ($answer_name,$answer_ver,$answer_ext) =
1.729 raeburn 3216: &Apache::lonnet::file_name_version_ext($answer_file);
1.355 banghart 3217: my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.517 raeburn 3218: my $getpropath = 1;
1.662 raeburn 3219: my ($dir_list,$listerror) =
3220: &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,
3221: $domain,$stuname,$getpropath);
1.729 raeburn 3222: my $version = &Apache::lonnet::get_next_version($answer_name,$answer_ext,$dir_list);
1.686 bisitz 3223: # fix filename
1.355 banghart 3224: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
3225: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
1.654 raeburn 3226: $newflg.'_'.$part_resp.'_returndoc'.$counter,
1.355 banghart 3227: $save_file_name);
1.337 banghart 3228: if ($result !~ m|^/uploaded/|) {
1.536 raeburn 3229: $request->print('<br /><span class="LC_error">'.
3230: &mt('An error occurred ([_1]) while trying to upload [_2].',
1.654 raeburn 3231: $result,$newflg.'_'.$part_resp.'_returndoc'.$counter).
1.536 raeburn 3232: '</span>');
1.356 banghart 3233: } else {
1.360 banghart 3234: # mark the file as read only
1.654 raeburn 3235: push(@handedback,$save_file_name);
1.367 albertel 3236: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
3237: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
3238: }
3239: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
1.654 raeburn 3240: $file_msg.= '<span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span> <br />";
1.337 banghart 3241: }
1.686 bisitz 3242: $request->print('<br />'.&mt('[_1] will be the uploaded filename [_2]','<span class="LC_info">'.$fname.'</span>','<span class="LC_filename">'.$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter}.'</span>'));
1.337 banghart 3243: }
3244: }
3245: }
1.654 raeburn 3246: }
3247: if (@handedback > 0) {
3248: $request->print('<br />');
3249: my @what = ($symb,$env{'request.course.id'},'handback');
3250: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@handedback,\@what);
3251: my $user_lh = &Apache::loncommon::user_lang($stuname,$domain,$env{'request.course.id'});
3252: my ($subject,$message);
3253: if (scalar(@handedback) == 1) {
3254: $subject = &mt_user($user_lh,'File Handed Back by Instructor');
3255: $message = &mt_user($user_lh,'A file has been returned that was originally submitted in response to: ');
3256: } else {
3257: $subject = &mt_user($user_lh,'Files Handed Back by Instructor');
3258: $message = &mt_user($user_lh,'Files have been returned that were originally submitted in response to: ');
3259: }
3260: $message .= "<p><strong>".&Apache::lonnet::gettitle($symb)." </strong></p>";
3261: $message .= &mt_user($user_lh,'The returned file(s) are named: [_1]',"<br />$file_msg <br />").
3262: &mt_user($user_lh,'The file(s) can be found in your [_1]portfolio[_2].','<a href="/adm/portfolio">','</a>');
3263: my ($feedurl,$showsymb) =
3264: &get_feedurl_and_symb($symb,$domain,$stuname);
3265: my $restitle = &Apache::lonnet::gettitle($symb);
3266: $subject .= ' '.&mt_user($user_lh,'(File Returned)').' ['.$restitle.']';
3267: my $msgstatus =
3268: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject,
3269: $message,undef,$feedurl,undef,undef,undef,$showsymb,
3270: $restitle);
3271: if ($msgstatus) {
3272: $request->print(&mt('Notification message status: [_1]','<span class="LC_info">'.$msgstatus.'</span>').'<br />');
3273: }
3274: }
1.338 banghart 3275: return;
1.337 banghart 3276: }
3277:
1.418 albertel 3278: sub get_feedurl_and_symb {
3279: my ($symb,$uname,$udom) = @_;
3280: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
3281: $url = &Apache::lonnet::clutter($url);
3282: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
3283: $symb,$udom,$uname);
3284: if ($encrypturl =~ /^yes$/i) {
3285: &Apache::lonenc::encrypted(\$url,1);
3286: &Apache::lonenc::encrypted(\$symb,1);
3287: }
3288: return ($url,$symb);
3289: }
3290:
1.313 banghart 3291: sub get_submitted_files {
3292: my ($udom,$uname,$partid,$respid,$record) = @_;
3293: my @files;
3294: if ($$record{"resource.$partid.$respid.portfiles"}) {
3295: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
3296: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
3297: push(@files,$file_url.$file);
3298: }
3299: }
3300: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
3301: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
3302: }
3303: return (\@files);
3304: }
1.322 albertel 3305:
1.269 raeburn 3306: # ----------- Provides number of tries since last reset.
3307: sub get_num_tries {
3308: my ($record,$last_reset,$part) = @_;
3309: my $timestamp = '';
3310: my $num_tries = 0;
3311: if ($$record{'version'}) {
3312: for (my $version=$$record{'version'};$version>=1;$version--) {
3313: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
3314: $timestamp = $$record{$version.':timestamp'};
3315: if ($timestamp > $last_reset) {
3316: $num_tries ++;
3317: } else {
3318: last;
3319: }
3320: }
3321: }
3322: }
3323: return $num_tries;
3324: }
3325:
3326: # ----------- Determine decrements required in aggregate totals
3327: sub decrement_aggs {
3328: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
3329: my %decrement = (
3330: attempts => 0,
3331: users => 0,
3332: correct => 0
3333: );
3334: $decrement{'attempts'} = $aggtries;
3335: if ($solvedstatus =~ /^correct/) {
3336: $decrement{'correct'} = 1;
3337: }
3338: if ($aggtries == $totaltries) {
3339: $decrement{'users'} = 1;
3340: }
1.524 raeburn 3341: foreach my $type (keys(%decrement)) {
1.269 raeburn 3342: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
3343: }
3344: return;
3345: }
3346:
3347: # ----------- Determine timestamps for last reset of aggregate totals for parts
3348: sub get_last_resets {
1.270 albertel 3349: my ($symb,$courseid,$partids) =@_;
3350: my %last_resets;
1.269 raeburn 3351: my $cdom = $env{'course.'.$courseid.'.domain'};
3352: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 3353: my @keys;
3354: foreach my $part (@{$partids}) {
3355: push(@keys,"$symb\0$part\0resettime");
3356: }
3357: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
3358: $cdom,$cname);
3359: foreach my $part (@{$partids}) {
3360: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 3361: }
1.270 albertel 3362: return %last_resets;
1.269 raeburn 3363: }
3364:
1.251 banghart 3365: # ----------- Handles creating versions for portfolio files as answers
3366: sub version_portfiles {
1.343 banghart 3367: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 3368: my $version_parts = join('|',@$v_flag);
1.343 banghart 3369: my @returned_keys;
1.255 banghart 3370: my $parts = join('|', @$parts_graded);
1.277 albertel 3371: foreach my $key (keys(%$record)) {
1.259 banghart 3372: my $new_portfiles;
1.263 banghart 3373: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 3374: my @versioned_portfiles;
1.367 albertel 3375: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.729 raeburn 3376: if (@portfiles) {
3377: &Apache::lonnet::portfiles_versioning($symb,$domain,$stu_name,\@portfiles,
3378: \@versioned_portfiles);
1.252 banghart 3379: }
1.343 banghart 3380: $$record{$key} = join(',',@versioned_portfiles);
3381: push(@returned_keys,$key);
1.251 banghart 3382: }
3383: }
1.343 banghart 3384: return (@returned_keys);
1.305 banghart 3385: }
3386:
1.44 ng 3387: #--------------------------------------------------------------------------------------
3388: #
3389: #-------------------------- Next few routines handles grading by section or whole class
3390: #
3391: #--- Javascript to handle grading by section or whole class
1.42 ng 3392: sub viewgrades_js {
3393: my ($request) = shift;
3394:
1.539 riegler 3395: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.736 damieng 3396: &js_escape(\$alertmsg);
1.597 wenzelju 3397: $request->print(&Apache::lonhtmlcommon::scripttag(<<VIEWJAVASCRIPT));
1.45 ng 3398: function writePoint(partid,weight,point) {
1.125 ng 3399: var radioButton = document.classgrade["RADVAL_"+partid];
3400: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 3401: if (point == "textval") {
1.125 ng 3402: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 3403: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3404: alert("$alertmsg"+parseFloat(point));
1.42 ng 3405: var resetbox = false;
3406: for (var i=0; i<radioButton.length; i++) {
3407: if (radioButton[i].checked) {
3408: textbox.value = i;
3409: resetbox = true;
3410: }
3411: }
3412: if (!resetbox) {
3413: textbox.value = "";
3414: }
3415: return;
3416: }
1.109 matthew 3417: if (parseFloat(point) > parseFloat(weight)) {
3418: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3419: ") greater than the weight for the part. Accept?");
3420: if (resp == false) {
3421: textbox.value = "";
3422: return;
3423: }
3424: }
1.42 ng 3425: for (var i=0; i<radioButton.length; i++) {
3426: radioButton[i].checked=false;
1.109 matthew 3427: if (parseFloat(point) == i) {
1.42 ng 3428: radioButton[i].checked=true;
3429: }
3430: }
1.41 ng 3431:
1.42 ng 3432: } else {
1.125 ng 3433: textbox.value = parseFloat(point);
1.42 ng 3434: }
1.41 ng 3435: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3436: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3437: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3438: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3439: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3440: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3441: if (saveval != "correct") {
3442: scorename.value = point;
1.43 ng 3443: if (selname[0].selected != true) {
3444: selname[0].selected = true;
3445: }
1.42 ng 3446: }
3447: }
1.125 ng 3448: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3449: }
3450:
3451: function writeRadText(partid,weight) {
1.125 ng 3452: var selval = document.classgrade["SELVAL_"+partid];
3453: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3454: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3455: var textbox = document.classgrade["TEXTVAL_"+partid];
3456: if (selval[1].selected || selval[2].selected) {
1.42 ng 3457: for (var i=0; i<radioButton.length; i++) {
3458: radioButton[i].checked=false;
3459:
3460: }
3461: textbox.value = "";
3462:
3463: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3464: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3465: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3466: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3467: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3468: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3469: if ((saveval != "correct") || override) {
1.42 ng 3470: scorename.value = "";
1.125 ng 3471: if (selval[1].selected) {
3472: selname[1].selected = true;
3473: } else {
3474: selname[2].selected = true;
3475: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3476: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3477: }
1.42 ng 3478: }
3479: }
1.43 ng 3480: } else {
3481: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3482: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3483: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3484: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3485: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3486: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3487: if ((saveval != "correct") || override) {
1.125 ng 3488: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3489: selname[0].selected = true;
3490: }
3491: }
3492: }
1.42 ng 3493: }
3494:
3495: function changeSelect(partid,user) {
1.125 ng 3496: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3497: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3498: var point = textbox.value;
1.125 ng 3499: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3500:
1.109 matthew 3501: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3502: alert("$alertmsg"+parseFloat(point));
1.44 ng 3503: textbox.value = "";
3504: return;
3505: }
1.109 matthew 3506: if (parseFloat(point) > parseFloat(weight)) {
3507: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3508: ") greater than the weight of the part. Accept?");
3509: if (resp == false) {
3510: textbox.value = "";
3511: return;
3512: }
3513: }
1.42 ng 3514: selval[0].selected = true;
3515: }
3516:
3517: function changeOneScore(partid,user) {
1.125 ng 3518: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3519: if (selval[1].selected || selval[2].selected) {
3520: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3521: if (selval[2].selected) {
3522: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3523: }
1.269 raeburn 3524: }
1.42 ng 3525: }
3526:
3527: function resetEntry(numpart) {
3528: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3529: var partid = document.classgrade["partid_"+ctpart].value;
3530: var radioButton = document.classgrade["RADVAL_"+partid];
3531: var textbox = document.classgrade["TEXTVAL_"+partid];
3532: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3533: for (var i=0; i<radioButton.length; i++) {
3534: radioButton[i].checked=false;
3535:
3536: }
3537: textbox.value = "";
3538: selval[0].selected = true;
3539:
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 resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3544: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3545: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3546: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3547: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3548: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3549: if (saveselval == "excused") {
1.43 ng 3550: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3551: } else {
1.43 ng 3552: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3553: }
3554: }
1.41 ng 3555: }
1.42 ng 3556: }
3557:
1.41 ng 3558: VIEWJAVASCRIPT
1.42 ng 3559: }
3560:
1.44 ng 3561: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3562: sub viewgrades {
1.608 www 3563: my ($request,$symb) = @_;
1.42 ng 3564: &viewgrades_js($request);
1.41 ng 3565:
1.168 albertel 3566: #need to make sure we have the correct data for later EXT calls,
3567: #thus invalidate the cache
3568: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3569: $env{'course.'.$env{'request.course.id'}.'.num'},
3570: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3571: &Apache::lonnet::clear_EXT_cache_status();
3572:
1.398 albertel 3573: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
1.41 ng 3574:
3575: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3576: $result.=&jscriptNform($symb);
1.41 ng 3577:
1.44 ng 3578: #beginning of class grading form
1.442 banghart 3579: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3580: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3581: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3582: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3583: &build_section_inputs().
1.442 banghart 3584: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.72 ng 3585:
1.738 raeburn 3586: #retrieve selected groups
3587: my (@groups,$group_display);
3588: @groups = &Apache::loncommon::get_env_multiple('form.group');
3589: if (grep(/^all$/,@groups)) {
3590: @groups = ('all');
3591: } elsif (grep(/^none$/,@groups)) {
3592: @groups = ('none');
3593: } elsif (@groups > 0) {
3594: $group_display = join(', ',@groups);
3595: }
3596:
3597: my ($common_header,$specific_header,@sections,$section_display);
3598: @sections = &Apache::loncommon::get_env_multiple('form.section');
3599: if (grep(/^all$/,@sections)) {
3600: @sections = ('all');
3601: if ($group_display) {
3602: $common_header = &mt('Assign Common Grade to Students in Group(s) [_1]',$group_display);
3603: $specific_header = &mt('Assign Grade to Specific Students in Group(s) [_1]',$group_display);
3604: } elsif (grep(/^none$/,@groups)) {
3605: $common_header = &mt('Assign Common Grade to Students not assigned to any groups');
3606: $specific_header = &mt('Assign Grade to Specific Students not assigned to any groups');
3607: } else {
3608: $common_header = &mt('Assign Common Grade to Class');
3609: $specific_header = &mt('Assign Grade to Specific Students in Class');
3610: }
3611: } elsif (grep(/^none$/,@sections)) {
3612: @sections = ('none');
3613: if ($group_display) {
3614: $common_header = &mt('Assign Common Grade to Students in no Section and in Group(s) [_1]',$group_display);
3615: $specific_header = &mt('Assign Grade to Specific Students in no Section and in Group(s)',$group_display);
3616: } elsif (grep(/^none$/,@groups)) {
3617: $common_header = &mt('Assign Common Grade to Students in no Section and in no Group');
3618: $specific_header = &mt('Assign Grade to Specific Students in no Section and in no Group');
3619: } else {
3620: $common_header = &mt('Assign Common Grade to Students in no Section');
3621: $specific_header = &mt('Assign Grade to Specific Students in no Section');
3622: }
3623: } else {
3624: $section_display = join (", ",@sections);
3625: if ($group_display) {
3626: $common_header = &mt('Assign Common Grade to Students in Section(s) [_1], and in Group(s) [_2]',
3627: $section_display,$group_display);
3628: $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1], and in Group(s) [_2]',
3629: $section_display,$group_display);
3630: } elsif (grep(/^none$/,@groups)) {
3631: $common_header = &mt('Assign Common Grade to Students in Section(s) [_1] and no Group',$section_display);
3632: $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1] and no Group',$section_display);
3633: } else {
3634: $common_header = &mt('Assign Common Grade to Students in Section(s) [_1]',$section_display);
3635: $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1]',$section_display);
3636: }
3637: }
3638: my %submit_types = &substatus_options();
3639: my $submission_status = $submit_types{$env{'form.submitonly'}};
3640:
3641: if ($env{'form.submitonly'} eq 'all') {
3642: $result.= '<h3>'.$common_header.'</h3>';
3643: } else {
3644: $result.= '<h3>'.$common_header.' '.&mt('(submission status: "[_1]")',$submission_status).'</h3>';
1.52 albertel 3645: }
1.738 raeburn 3646: $result .= &Apache::loncommon::start_data_table();
1.44 ng 3647: #radio buttons/text box for assigning points for a section or class.
3648: #handles different parts of a problem
1.582 raeburn 3649: my $res_error;
3650: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3651: if ($res_error) {
3652: return &navmap_errormsg();
3653: }
1.42 ng 3654: my %weight = ();
3655: my $ctsparts = 0;
1.45 ng 3656: my %seen = ();
1.375 albertel 3657: my @part_response_id = &flatten_responseType($responseType);
3658: foreach my $part_response_id (@part_response_id) {
3659: my ($partid,$respid) = @{ $part_response_id };
3660: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3661: next if $seen{$partid};
3662: $seen{$partid}++;
1.375 albertel 3663: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3664: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3665: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3666:
1.324 albertel 3667: my $display_part=&get_display_part($partid,$symb);
1.485 albertel 3668: my $radio.='<table border="0"><tr>';
1.41 ng 3669: my $ctr = 0;
1.42 ng 3670: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.485 albertel 3671: $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3672: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3673: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3674: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3675: $ctr++;
3676: }
1.485 albertel 3677: $radio.='</tr></table>';
3678: my $line = '<input type="text" name="TEXTVAL_'.
1.589 bisitz 3679: $partid.'" size="4" '.'onchange="javascript:writePoint(\''.
1.54 albertel 3680: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.539 riegler 3681: $weight{$partid}.' '.&mt('(problem weight)').'</td>'."\n";
1.701 bisitz 3682: $line.= '<td><b>'.&mt('Grade Status').':</b>'.
3683: '<select name="SELVAL_'.$partid.'" '.
3684: 'onchange="javascript:writeRadText(\''.$partid.'\','.
3685: $weight{$partid}.')"> '.
1.401 albertel 3686: '<option selected="selected"> </option>'.
1.485 albertel 3687: '<option value="excused">'.&mt('excused').'</option>'.
3688: '<option value="reset status">'.&mt('reset status').'</option>'.
3689: '</select></td>'.
3690: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
3691: $line.='<input type="hidden" name="partid_'.
3692: $ctsparts.'" value="'.$partid.'" />'."\n";
3693: $line.='<input type="hidden" name="weight_'.
3694: $partid.'" value="'.$weight{$partid}.'" />'."\n";
3695:
3696: $result.=
3697: &Apache::loncommon::start_data_table_row()."\n".
1.577 bisitz 3698: '<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 3699: &Apache::loncommon::end_data_table_row()."\n";
1.42 ng 3700: $ctsparts++;
1.41 ng 3701: }
1.474 albertel 3702: $result.=&Apache::loncommon::end_data_table()."\n".
1.52 albertel 3703: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.485 albertel 3704: $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
1.589 bisitz 3705: 'onclick="javascript:resetEntry('.$ctsparts.');" />';
1.41 ng 3706:
1.44 ng 3707: #table listing all the students in a section/class
3708: #header of table
1.738 raeburn 3709: if ($env{'form.submitonly'} eq 'all') {
3710: $result.= '<h3>'.$specific_header.'</h3>';
3711: } else {
3712: $result.= '<h3>'.$specific_header.' '.&mt('(submission status: "[_1]")',$submission_status).'</h3>';
3713: }
3714: $result.= &Apache::loncommon::start_data_table().
1.560 raeburn 3715: &Apache::loncommon::start_data_table_header_row().
3716: '<th>'.&mt('No.').'</th>'.
3717: '<th>'.&nameUserString('header')."</th>\n";
1.582 raeburn 3718: my $partserror;
3719: my (@parts) = sort(&getpartlist($symb,\$partserror));
3720: if ($partserror) {
3721: return &navmap_errormsg();
3722: }
1.324 albertel 3723: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3724: my @partids = ();
1.41 ng 3725: foreach my $part (@parts) {
3726: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.539 riegler 3727: my $narrowtext = &mt('Tries');
3728: $display =~ s|^Number of Attempts|$narrowtext <br />|; # makes the column narrower
1.41 ng 3729: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3730: my ($partid) = &split_part_type($part);
1.524 raeburn 3731: push(@partids,$partid);
1.628 www 3732: #
3733: # FIXME: Looks like $display looks at English text
3734: #
1.324 albertel 3735: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3736: if ($display =~ /^Partial Credit Factor/) {
1.485 albertel 3737: $result.='<th>'.
1.697 bisitz 3738: &mt('Score Part: [_1][_2](weight = [_3])',
3739: $display_part,'<br />',$weight{$partid}).'</th>'."\n";
1.41 ng 3740: next;
1.485 albertel 3741:
1.207 albertel 3742: } else {
1.485 albertel 3743: if ($display =~ /Problem Status/) {
3744: my $grade_status_mt = &mt('Grade Status');
3745: $display =~ s{Problem Status}{$grade_status_mt<br />};
3746: }
3747: my $part_mt = &mt('Part:');
3748: $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
1.41 ng 3749: }
1.485 albertel 3750:
1.474 albertel 3751: $result.='<th>'.$display.'</th>'."\n";
1.41 ng 3752: }
1.474 albertel 3753: $result.=&Apache::loncommon::end_data_table_header_row();
1.44 ng 3754:
1.270 albertel 3755: my %last_resets =
3756: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3757:
1.41 ng 3758: #get info for each student
1.44 ng 3759: #list all the students - with points and grade status
1.738 raeburn 3760: my (undef,undef,$fullname) = &getclasslist(\@sections,'1',\@groups);
1.41 ng 3761: my $ctr = 0;
1.294 albertel 3762: foreach (sort
3763: {
3764: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3765: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3766: }
3767: return $a cmp $b;
3768: } (keys(%$fullname))) {
1.324 albertel 3769: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.738 raeburn 3770: $_,$$fullname{$_},\@parts,\%weight,\$ctr,\%last_resets);
1.41 ng 3771: }
1.474 albertel 3772: $result.=&Apache::loncommon::end_data_table();
1.41 ng 3773: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.485 albertel 3774: $result.='<input type="button" value="'.&mt('Save').'" '.
1.589 bisitz 3775: 'onclick="javascript:submit();" target="_self" /></form>'."\n";
1.738 raeburn 3776: if ($ctr == 0) {
1.442 banghart 3777: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.738 raeburn 3778: $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>'.
3779: '<span class="LC_warning">';
3780: if ($env{'form.submitonly'} eq 'all') {
3781: if (grep(/^all$/,@sections)) {
3782: if (grep(/^all$/,@groups)) {
3783: $result .= &mt('There are no students with enrollment status [_1] to modify or grade.',
3784: $stu_status);
3785: } elsif (grep(/^none$/,@groups)) {
3786: $result .= &mt('There are no students with no group assigned and with enrollment status [_1] to modify or grade.',
3787: $stu_status);
3788: } else {
3789: $result .= &mt('There are no students in group(s) [_1] with enrollment status [_2] to modify or grade.',
3790: $group_display,$stu_status);
3791: }
3792: } elsif (grep(/^none$/,@sections)) {
3793: if (grep(/^all$/,@groups)) {
3794: $result .= &mt('There are no students in no section with enrollment status [_1] to modify or grade.',
3795: $stu_status);
3796: } elsif (grep(/^none$/,@groups)) {
3797: $result .= &mt('There are no students in no section and no group with enrollment status [_1] to modify or grade.',
3798: $stu_status);
3799: } else {
3800: $result .= &mt('There are no students in no section in group(s) [_1] with enrollment status [_2] to modify or grade.',
3801: $group_display,$stu_status);
3802: }
3803: } else {
3804: if (grep(/^all$/,@groups)) {
3805: $result .= &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
3806: $section_display,$stu_status);
3807: } elsif (grep(/^none$/,@groups)) {
1.739 raeburn 3808: $result .= &mt('There are no students in section(s) [_1] and no group with enrollment status [_2] to modify or grade.',
1.738 raeburn 3809: $section_display,$stu_status);
3810: } else {
3811: $result .= &mt('There are no students in section(s) [_1] and group(s) [_2] with enrollment status [_3] to modify or grade.',
3812: $section_display,$group_display,$stu_status);
3813: }
3814: }
3815: } else {
3816: if (grep(/^all$/,@sections)) {
3817: if (grep(/^all$/,@groups)) {
3818: $result .= &mt('There are no students with enrollment status [_1] and submission status "[_2]" to modify or grade.',
3819: $stu_status,$submission_status);
3820: } elsif (grep(/^none$/,@groups)) {
3821: $result .= &mt('There are no students with no group assigned with enrollment status [_1] and submission status "[_2]" to modify or grade.',
3822: $stu_status,$submission_status);
3823: } else {
3824: $result .= &mt('There are no students in group(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
3825: $group_display,$stu_status,$submission_status);
3826: }
3827: } elsif (grep(/^none$/,@sections)) {
3828: if (grep(/^all$/,@groups)) {
3829: $result .= &mt('There are no students in no section with enrollment status [_1] and submission status "[_2]" to modify or grade.',
3830: $stu_status,$submission_status);
3831: } elsif (grep(/^none$/,@groups)) {
3832: $result .= &mt('There are no students in no section and no group with enrollment status [_1] and submission status "[_2]" to modify or grade.',
3833: $stu_status,$submission_status);
3834: } else {
3835: $result .= &mt('There are no students in no section in group(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
3836: $group_display,$stu_status,$submission_status);
3837: }
3838: } else {
3839: if (grep(/^all$/,@groups)) {
3840: $result .= &mt('There are no students in section(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
3841: $section_display,$stu_status,$submission_status);
3842: } elsif (grep(/^none$/,@groups)) {
3843: $result .= &mt('There are no students in section(s) [_1] and no group with enrollment status [_2] and submission status "[_3]" to modify or grade.',
3844: $section_display,$stu_status,$submission_status);
3845: } else {
3846: $result .= &mt('There are no students in section(s) [_1] and group(s) [_2] with enrollment status [_3] and submission status "[_4]" to modify or grade.',
3847: $section_display,$group_display,$stu_status,$submission_status);
3848: }
3849: }
3850: }
3851: $result .= '</span><br />';
1.96 albertel 3852: }
1.41 ng 3853: return $result;
3854: }
3855:
1.738 raeburn 3856: #--- call by previous routine to display each student who satisfies submission filter.
1.41 ng 3857: sub viewstudentgrade {
1.324 albertel 3858: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 3859: my ($uname,$udom) = split(/:/,$student);
3860: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.738 raeburn 3861: my $submitonly = $env{'form.submitonly'};
3862: unless (($submitonly eq 'all') || ($submitonly eq 'queued')) {
3863: my %partstatus = ();
3864: if (ref($parts) eq 'ARRAY') {
3865: foreach my $apart (@{$parts}) {
3866: my ($part,$type) = &split_part_type($apart);
3867: my ($status,undef) = split(/_/,$record{"resource.$part.solved"},2);
3868: $status = 'nothing' if ($status eq '');
3869: $partstatus{$part} = $status;
3870: my $subkey = "resource.$part.submitted_by";
3871: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
3872: }
3873: my $submitted = 0;
3874: my $graded = 0;
3875: my $incorrect = 0;
3876: foreach my $key (keys(%partstatus)) {
3877: $submitted = 1 if ($partstatus{$key} ne 'nothing');
3878: $graded = 1 if ($partstatus{$key} =~ /^ungraded/);
3879: $incorrect = 1 if ($partstatus{$key} =~ /^incorrect/);
3880:
3881: my $partid = (split(/\./,$key))[1];
3882: if ($partstatus{'resource.'.$partid.'.'.$key.'.submitted_by'} ne '') {
3883: $submitted = 0;
3884: }
3885: }
3886: return if (!$submitted && ($submitonly eq 'yes' ||
3887: $submitonly eq 'incorrect' ||
3888: $submitonly eq 'graded'));
3889: return if (!$graded && ($submitonly eq 'graded'));
3890: return if (!$incorrect && $submitonly eq 'incorrect');
3891: }
3892: }
3893: if ($submitonly eq 'queued') {
3894: my ($cdom,$cnum) = split(/_/,$courseid);
3895: my %queue_status =
3896: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
3897: $udom,$uname);
3898: return if (!defined($queue_status{'gradingqueue'}));
3899: }
3900: $$ctr++;
3901: my %aggregates = ();
1.474 albertel 3902: my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.738 raeburn 3903: '<input type="hidden" name="ctr'.($$ctr-1).'" value="'.$student.'" />'.
3904: "\n".$$ctr.' </td><td> '.
1.44 ng 3905: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 3906: '\');" target="_self">'.$fullname.'</a> '.
1.398 albertel 3907: '<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281 albertel 3908: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 3909: foreach my $apart (@$parts) {
3910: my ($part,$type) = &split_part_type($apart);
1.41 ng 3911: my $score=$record{"resource.$part.$type"};
1.276 albertel 3912: $result.='<td align="center">';
1.269 raeburn 3913: my ($aggtries,$totaltries);
3914: unless (exists($aggregates{$part})) {
1.270 albertel 3915: $totaltries = $record{'resource.'.$part.'.tries'};
3916: $aggtries = $totaltries;
1.269 raeburn 3917: if ($$last_resets{$part}) {
1.270 albertel 3918: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
3919: $part);
3920: }
1.269 raeburn 3921: $result.='<input type="hidden" name="'.
3922: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
3923: $result.='<input type="hidden" name="'.
3924: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
3925: $aggregates{$part} = 1;
3926: }
1.41 ng 3927: if ($type eq 'awarded') {
1.320 albertel 3928: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 3929: $result.='<input type="hidden" name="'.
1.89 albertel 3930: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 3931: $result.='<input type="text" name="'.
1.89 albertel 3932: 'GD_'.$student.'_'.$part.'_awarded" '.
1.589 bisitz 3933: 'onchange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 3934: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 3935: } elsif ($type eq 'solved') {
3936: my ($status,$foo)=split(/_/,$score,2);
3937: $status = 'nothing' if ($status eq '');
1.89 albertel 3938: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 3939: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 3940: $result.=' <select name="'.
1.89 albertel 3941: 'GD_'.$student.'_'.$part.'_solved" '.
1.589 bisitz 3942: 'onchange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.485 albertel 3943: $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>'
3944: : '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
3945: $result.='<option value="reset status">'.&mt('reset status').'</option>';
1.126 ng 3946: $result.="</select> </td>\n";
1.122 ng 3947: } else {
3948: $result.='<input type="hidden" name="'.
3949: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
3950: "\n";
1.233 albertel 3951: $result.='<input type="text" name="'.
1.122 ng 3952: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
3953: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 3954: }
3955: }
1.474 albertel 3956: $result.=&Apache::loncommon::end_data_table_row();
1.41 ng 3957: return $result;
1.38 ng 3958: }
3959:
1.44 ng 3960: #--- change scores for all the students in a section/class
3961: # record does not get update if unchanged
1.38 ng 3962: sub editgrades {
1.608 www 3963: my ($request,$symb) = @_;
1.41 ng 3964:
1.433 banghart 3965: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477 albertel 3966: my $title='<h2>'.&mt('Current Grade Status').'</h2>';
1.433 banghart 3967: $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126 ng 3968:
1.477 albertel 3969: my $result= &Apache::loncommon::start_data_table().
3970: &Apache::loncommon::start_data_table_header_row().
3971: '<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
3972: '<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43 ng 3973: my %scoreptr = (
3974: 'correct' =>'correct_by_override',
3975: 'incorrect'=>'incorrect_by_override',
3976: 'excused' =>'excused',
3977: 'ungraded' =>'ungraded_attempted',
1.596 raeburn 3978: 'credited' =>'credit_attempted',
1.43 ng 3979: 'nothing' => '',
3980: );
1.257 albertel 3981: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 3982:
1.44 ng 3983: my (@partid);
3984: my %weight = ();
1.54 albertel 3985: my %columns = ();
1.44 ng 3986: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 3987:
1.582 raeburn 3988: my $partserror;
3989: my (@parts) = sort(&getpartlist($symb,\$partserror));
3990: if ($partserror) {
3991: return &navmap_errormsg();
3992: }
1.54 albertel 3993: my $header;
1.257 albertel 3994: while ($ctr < $env{'form.totalparts'}) {
3995: my $partid = $env{'form.partid_'.$ctr};
1.524 raeburn 3996: push(@partid,$partid);
1.257 albertel 3997: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 3998: $ctr++;
1.54 albertel 3999: }
1.324 albertel 4000: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54 albertel 4001: foreach my $partid (@partid) {
1.478 albertel 4002: $header .= '<th align="center">'.&mt('Old Score').'</th>'.
4003: '<th align="center">'.&mt('New Score').'</th>';
1.54 albertel 4004: $columns{$partid}=2;
4005: foreach my $stores (@parts) {
4006: my ($part,$type) = &split_part_type($stores);
4007: if ($part !~ m/^\Q$partid\E/) { next;}
4008: if ($type eq 'awarded' || $type eq 'solved') { next; }
4009: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
1.551 raeburn 4010: $display =~ s/\[Part: \Q$part\E\]//;
1.539 riegler 4011: my $narrowtext = &mt('Tries');
4012: $display =~ s/Number of Attempts/$narrowtext/;
4013: $header .= '<th align="center">'.&mt('Old').' '.$display.'</th>'.
4014: '<th align="center">'.&mt('New').' '.$display.'</th>';
1.54 albertel 4015: $columns{$partid}+=2;
4016: }
4017: }
4018: foreach my $partid (@partid) {
1.324 albertel 4019: my $display_part=&get_display_part($partid,$symb);
1.478 albertel 4020: $result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
4021: &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
4022: '</th>';
1.54 albertel 4023:
1.44 ng 4024: }
1.477 albertel 4025: $result .= &Apache::loncommon::end_data_table_header_row().
4026: &Apache::loncommon::start_data_table_header_row().
4027: $header.
4028: &Apache::loncommon::end_data_table_header_row();
4029: my @noupdate;
1.126 ng 4030: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 4031: for ($i=0; $i<$env{'form.total'}; $i++) {
1.93 albertel 4032: my $line;
1.257 albertel 4033: my $user = $env{'form.ctr'.$i};
1.281 albertel 4034: my ($uname,$udom)=split(/:/,$user);
1.44 ng 4035: my %newrecord;
4036: my $updateflag = 0;
1.281 albertel 4037: $line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108 albertel 4038: my $usec=$classlist->{"$uname:$udom"}[5];
1.105 albertel 4039: if (!&canmodify($usec)) {
1.126 ng 4040: my $numcols=scalar(@partid)*4+2;
1.477 albertel 4041: push(@noupdate,
1.478 albertel 4042: $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
4043: &mt('Not allowed to modify student')."</span></td></tr>");
1.105 albertel 4044: next;
4045: }
1.269 raeburn 4046: my %aggregate = ();
4047: my $aggregateflag = 0;
1.281 albertel 4048: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 4049: foreach (@partid) {
1.257 albertel 4050: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 4051: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
4052: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 4053: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
4054: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 4055: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
4056: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 4057: my $score;
4058: if ($partial eq '') {
1.257 albertel 4059: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 4060: } elsif ($partial > 0) {
4061: $score = 'correct_by_override';
4062: } elsif ($partial == 0) {
4063: $score = 'incorrect_by_override';
4064: }
1.257 albertel 4065: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 4066: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
4067:
1.292 albertel 4068: $newrecord{'resource.'.$_.'.regrader'}=
4069: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 4070: if ($dropMenu eq 'reset status' &&
4071: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 4072: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 4073: $newrecord{'resource.'.$_.'.solved'} = '';
4074: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 4075: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 4076: $updateflag = 1;
1.269 raeburn 4077: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
4078: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
4079: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
4080: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
4081: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
4082: $aggregateflag = 1;
4083: }
1.139 albertel 4084: } elsif (!($old_part eq $partial && $old_score eq $score)) {
4085: $updateflag = 1;
4086: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
4087: $newrecord{'resource.'.$_.'.solved'} = $score;
4088: $rec_update++;
1.125 ng 4089: }
4090:
1.93 albertel 4091: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 4092: '<td align="center">'.$awarded.
4093: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 4094:
1.54 albertel 4095:
4096: my $partid=$_;
4097: foreach my $stores (@parts) {
4098: my ($part,$type) = &split_part_type($stores);
4099: if ($part !~ m/^\Q$partid\E/) { next;}
4100: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 4101: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
4102: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 4103: if ($awarded ne '' && $awarded ne $old_aw) {
4104: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 4105: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 4106: $updateflag=1;
4107: }
1.93 albertel 4108: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 4109: '<td align="center">'.$awarded.' </td>';
4110: }
1.44 ng 4111: }
1.477 albertel 4112: $line.="\n";
1.301 albertel 4113:
4114: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
4115: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
4116:
1.44 ng 4117: if ($updateflag) {
4118: $count++;
1.257 albertel 4119: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 4120: $udom,$uname);
1.301 albertel 4121:
4122: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
4123: $cnum,$udom,$uname)) {
4124: # need to figure out if should be in queue.
4125: my %record =
4126: &Apache::lonnet::restore($symb,$env{'request.course.id'},
4127: $udom,$uname);
4128: my $all_graded = 1;
4129: my $none_graded = 1;
4130: foreach my $part (@parts) {
4131: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
4132: $all_graded = 0;
4133: } else {
4134: $none_graded = 0;
4135: }
4136: }
4137:
4138: if ($all_graded || $none_graded) {
4139: &Apache::bridgetask::remove_from_queue('gradingqueue',
4140: $symb,$cdom,$cnum,
4141: $udom,$uname);
4142: }
4143: }
4144:
1.477 albertel 4145: $result.=&Apache::loncommon::start_data_table_row().
4146: '<td align="right"> '.$updateCtr.' </td>'.$line.
4147: &Apache::loncommon::end_data_table_row();
1.126 ng 4148: $updateCtr++;
1.93 albertel 4149: } else {
1.477 albertel 4150: push(@noupdate,
4151: '<td align="right"> '.$noupdateCtr.' </td>'.$line);
1.126 ng 4152: $noupdateCtr++;
1.44 ng 4153: }
1.269 raeburn 4154: if ($aggregateflag) {
4155: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 4156: $cdom,$cnum);
1.269 raeburn 4157: }
1.93 albertel 4158: }
1.477 albertel 4159: if (@noupdate) {
1.126 ng 4160: # my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
4161: my $numcols=scalar(@partid)*4+2;
1.477 albertel 4162: $result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478 albertel 4163: '<td align="center" colspan="'.$numcols.'">'.
4164: &mt('No Changes Occurred For the Students Below').
4165: '</td>'.
1.477 albertel 4166: &Apache::loncommon::end_data_table_row();
4167: foreach my $line (@noupdate) {
4168: $result.=
4169: &Apache::loncommon::start_data_table_row().
4170: $line.
4171: &Apache::loncommon::end_data_table_row();
4172: }
1.44 ng 4173: }
1.614 www 4174: $result .= &Apache::loncommon::end_data_table();
1.478 albertel 4175: my $msg = '<p><b>'.
4176: &mt('Number of records updated = [_1] for [quant,_2,student].',
4177: $rec_update,$count).'</b><br />'.
4178: '<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
4179: '</b></p>';
1.44 ng 4180: return $title.$msg.$result;
1.5 albertel 4181: }
1.54 albertel 4182:
4183: sub split_part_type {
4184: my ($partstr) = @_;
4185: my ($temp,@allparts)=split(/_/,$partstr);
4186: my $type=pop(@allparts);
1.439 albertel 4187: my $part=join('_',@allparts);
1.54 albertel 4188: return ($part,$type);
4189: }
4190:
1.44 ng 4191: #------------- end of section for handling grading by section/class ---------
4192: #
4193: #----------------------------------------------------------------------------
4194:
1.5 albertel 4195:
1.44 ng 4196: #----------------------------------------------------------------------------
4197: #
4198: #-------------------------- Next few routines handles grading by csv upload
4199: #
4200: #--- Javascript to handle csv upload
1.27 albertel 4201: sub csvupload_javascript_reverse_associate {
1.573 bisitz 4202: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 4203: my $error2=&mt('You need to specify at least one grading field');
1.736 damieng 4204: &js_escape(\$error1);
4205: &js_escape(\$error2);
1.27 albertel 4206: return(<<ENDPICK);
4207: function verify(vf) {
4208: var foundsomething=0;
4209: var founduname=0;
1.243 albertel 4210: var foundID=0;
1.27 albertel 4211: for (i=0;i<=vf.nfields.value;i++) {
4212: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4213: if (i==0 && tw!=0) { foundID=1; }
4214: if (i==1 && tw!=0) { founduname=1; }
4215: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 4216: }
1.246 albertel 4217: if (founduname==0 && foundID==0) {
4218: alert('$error1');
4219: return;
1.27 albertel 4220: }
4221: if (foundsomething==0) {
1.246 albertel 4222: alert('$error2');
4223: return;
1.27 albertel 4224: }
4225: vf.submit();
4226: }
4227: function flip(vf,tf) {
4228: var nw=eval('vf.f'+tf+'.selectedIndex');
4229: var i;
4230: for (i=0;i<=vf.nfields.value;i++) {
4231: //can not pick the same destination field for both name and domain
4232: if (((i ==0)||(i ==1)) &&
4233: ((tf==0)||(tf==1)) &&
4234: (i!=tf) &&
4235: (eval('vf.f'+i+'.selectedIndex')==nw)) {
4236: eval('vf.f'+i+'.selectedIndex=0;')
4237: }
4238: }
4239: }
4240: ENDPICK
4241: }
4242:
4243: sub csvupload_javascript_forward_associate {
1.573 bisitz 4244: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 4245: my $error2=&mt('You need to specify at least one grading field');
1.736 damieng 4246: &js_escape(\$error1);
4247: &js_escape(\$error2);
1.27 albertel 4248: return(<<ENDPICK);
4249: function verify(vf) {
4250: var foundsomething=0;
4251: var founduname=0;
1.243 albertel 4252: var foundID=0;
1.27 albertel 4253: for (i=0;i<=vf.nfields.value;i++) {
4254: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4255: if (tw==1) { foundID=1; }
4256: if (tw==2) { founduname=1; }
4257: if (tw>3) { foundsomething=1; }
1.27 albertel 4258: }
1.246 albertel 4259: if (founduname==0 && foundID==0) {
4260: alert('$error1');
4261: return;
1.27 albertel 4262: }
4263: if (foundsomething==0) {
1.246 albertel 4264: alert('$error2');
4265: return;
1.27 albertel 4266: }
4267: vf.submit();
4268: }
4269: function flip(vf,tf) {
4270: var nw=eval('vf.f'+tf+'.selectedIndex');
4271: var i;
4272: //can not pick the same destination field twice
4273: for (i=0;i<=vf.nfields.value;i++) {
4274: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
4275: eval('vf.f'+i+'.selectedIndex=0;')
4276: }
4277: }
4278: }
4279: ENDPICK
4280: }
4281:
1.26 albertel 4282: sub csvuploadmap_header {
1.324 albertel 4283: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 4284: my $javascript;
1.257 albertel 4285: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4286: $javascript=&csvupload_javascript_reverse_associate();
4287: } else {
4288: $javascript=&csvupload_javascript_forward_associate();
4289: }
1.45 ng 4290:
1.418 albertel 4291: $symb = &Apache::lonenc::check_encrypt($symb);
1.632 www 4292: $request->print('<form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">'.
4293: &mt('Total number of records found in file: [_1]',$distotal).'<hr />'.
4294: &mt('Associate entries from the uploaded file with as many fields as you can.'));
4295: my $reverse=&mt("Reverse Association");
1.41 ng 4296: $request->print(<<ENDPICK);
1.632 www 4297: <br />
4298: <input type="button" value="$reverse" onclick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.26 albertel 4299: <input type="hidden" name="associate" value="" />
4300: <input type="hidden" name="phase" value="three" />
4301: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 4302: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
4303: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 4304: <input type="hidden" name="upfile_associate"
1.257 albertel 4305: value="$env{'form.upfile_associate'}" />
1.26 albertel 4306: <input type="hidden" name="symb" value="$symb" />
1.246 albertel 4307: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 4308: <hr />
4309: ENDPICK
1.597 wenzelju 4310: $request->print(&Apache::lonhtmlcommon::scripttag($javascript));
1.118 ng 4311: return '';
1.26 albertel 4312:
4313: }
4314:
4315: sub csvupload_fields {
1.582 raeburn 4316: my ($symb,$errorref) = @_;
4317: my (@parts) = &getpartlist($symb,$errorref);
4318: if (ref($errorref)) {
4319: if ($$errorref) {
4320: return;
4321: }
4322: }
4323:
1.556 weissno 4324: my @fields=(['ID','Student/Employee ID'],
1.737 raeburn 4325: ['clicker','Clicker ID'],
1.243 albertel 4326: ['username','Student Username'],
4327: ['domain','Student Domain']);
1.324 albertel 4328: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 4329: foreach my $part (sort(@parts)) {
4330: my @datum;
4331: my $display=&Apache::lonnet::metadata($url,$part.'.display');
4332: my $name=$part;
4333: if (!$display) { $display = $name; }
4334: @datum=($name,$display);
1.244 albertel 4335: if ($name=~/^stores_(.*)_awarded/) {
4336: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
4337: }
1.41 ng 4338: push(@fields,\@datum);
4339: }
4340: return (@fields);
1.26 albertel 4341: }
4342:
4343: sub csvuploadmap_footer {
1.41 ng 4344: my ($request,$i,$keyfields) =@_;
1.703 bisitz 4345: my $buttontext = &mt('Assign Grades');
1.41 ng 4346: $request->print(<<ENDPICK);
1.26 albertel 4347: </table>
4348: <input type="hidden" name="nfields" value="$i" />
4349: <input type="hidden" name="keyfields" value="$keyfields" />
1.703 bisitz 4350: <input type="button" onclick="javascript:verify(this.form)" value="$buttontext" /><br />
1.26 albertel 4351: </form>
4352: ENDPICK
4353: }
4354:
1.283 albertel 4355: sub checkforfile_js {
1.638 www 4356: my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
1.736 damieng 4357: &js_escape(\$alertmsg);
1.597 wenzelju 4358: my $result = &Apache::lonhtmlcommon::scripttag(<<CSVFORMJS);
1.86 ng 4359: function checkUpload(formname) {
4360: if (formname.upfile.value == "") {
1.539 riegler 4361: alert("$alertmsg");
1.86 ng 4362: return false;
4363: }
4364: formname.submit();
4365: }
4366: CSVFORMJS
1.283 albertel 4367: return $result;
4368: }
4369:
4370: sub upcsvScores_form {
1.608 www 4371: my ($request,$symb) = @_;
1.283 albertel 4372: if (!$symb) {return '';}
4373: my $result=&checkforfile_js();
1.632 www 4374: $result.=&Apache::loncommon::start_data_table().
4375: &Apache::loncommon::start_data_table_header_row().
4376: '<th>'.&mt('Specify a file containing the class scores for current resource.').'</th>'.
4377: &Apache::loncommon::end_data_table_header_row().
4378: &Apache::loncommon::start_data_table_row().'<td>';
1.370 www 4379: my $upload=&mt("Upload Scores");
1.86 ng 4380: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 4381: my $ignore=&mt('Ignore First Line');
1.418 albertel 4382: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 4383: $result.=<<ENDUPFORM;
1.106 albertel 4384: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 4385: <input type="hidden" name="symb" value="$symb" />
4386: <input type="hidden" name="command" value="csvuploadmap" />
4387: $upfile_select
1.589 bisitz 4388: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.86 ng 4389: </form>
4390: ENDUPFORM
1.370 www 4391: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
1.632 www 4392: &mt("How do I create a CSV file from a spreadsheet")).
4393: '</td>'.
4394: &Apache::loncommon::end_data_table_row().
4395: &Apache::loncommon::end_data_table();
1.86 ng 4396: return $result;
4397: }
4398:
4399:
1.26 albertel 4400: sub csvuploadmap {
1.608 www 4401: my ($request,$symb)= @_;
1.41 ng 4402: if (!$symb) {return '';}
1.72 ng 4403:
1.41 ng 4404: my $datatoken;
1.257 albertel 4405: if (!$env{'form.datatoken'}) {
1.41 ng 4406: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 4407: } else {
1.742 ! raeburn 4408: $datatoken=&Apache::loncommon::valid_datatoken($env{'form.datatoken'});
! 4409: if ($datatoken ne '') {
! 4410: &Apache::loncommon::load_tmp_file($request,$datatoken);
! 4411: }
1.26 albertel 4412: }
1.41 ng 4413: my @records=&Apache::loncommon::upfile_record_sep();
1.324 albertel 4414: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 4415: my ($i,$keyfields);
4416: if (@records) {
1.582 raeburn 4417: my $fieldserror;
4418: my @fields=&csvupload_fields($symb,\$fieldserror);
4419: if ($fieldserror) {
4420: $request->print(&navmap_errormsg());
4421: return;
4422: }
1.257 albertel 4423: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4424: &Apache::loncommon::csv_print_samples($request,\@records);
4425: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
4426: \@fields);
4427: foreach (@fields) { $keyfields.=$_->[0].','; }
4428: chop($keyfields);
4429: } else {
4430: unshift(@fields,['none','']);
4431: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
4432: \@fields);
1.311 banghart 4433: foreach my $rec (@records) {
4434: my %temp = &Apache::loncommon::record_sep($rec);
4435: if (%temp) {
4436: $keyfields=join(',',sort(keys(%temp)));
4437: last;
4438: }
4439: }
1.41 ng 4440: }
4441: }
4442: &csvuploadmap_footer($request,$i,$keyfields);
1.72 ng 4443:
1.41 ng 4444: return '';
1.27 albertel 4445: }
4446:
1.246 albertel 4447: sub csvuploadoptions {
1.608 www 4448: my ($request,$symb)= @_;
1.632 www 4449: my $overwrite=&mt('Overwrite any existing score');
1.246 albertel 4450: $request->print(<<ENDPICK);
4451: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
4452: <input type="hidden" name="command" value="csvuploadassign" />
4453: <p>
4454: <label>
4455: <input type="checkbox" name="overwite_scores" checked="checked" />
1.632 www 4456: $overwrite
1.246 albertel 4457: </label>
4458: </p>
4459: ENDPICK
4460: my %fields=&get_fields();
4461: if (!defined($fields{'domain'})) {
1.257 albertel 4462: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.632 www 4463: $request->print("\n<p>".&mt('Users are in domain: [_1]',$domform)."</p>\n");
1.246 albertel 4464: }
1.257 albertel 4465: foreach my $key (sort(keys(%env))) {
1.246 albertel 4466: if ($key !~ /^form\.(.*)$/) { next; }
4467: my $cleankey=$1;
4468: if ($cleankey eq 'command') { next; }
4469: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 4470: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 4471: }
4472: # FIXME do a check for any duplicated user ids...
4473: # FIXME do a check for any invalid user ids?...
1.703 bisitz 4474: $request->print('<input type="submit" value="'.&mt('Assign Grades').'" /><br />
1.290 albertel 4475: <hr /></form>'."\n");
1.246 albertel 4476: return '';
4477: }
4478:
4479: sub get_fields {
4480: my %fields;
1.257 albertel 4481: my @keyfields = split(/\,/,$env{'form.keyfields'});
4482: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
4483: if ($env{'form.upfile_associate'} eq 'reverse') {
4484: if ($env{'form.f'.$i} ne 'none') {
4485: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 4486: }
4487: } else {
1.257 albertel 4488: if ($env{'form.f'.$i} ne 'none') {
4489: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 4490: }
4491: }
1.27 albertel 4492: }
1.246 albertel 4493: return %fields;
4494: }
4495:
4496: sub csvuploadassign {
1.608 www 4497: my ($request,$symb)= @_;
1.246 albertel 4498: if (!$symb) {return '';}
1.345 bowersj2 4499: my $error_msg = '';
1.742 ! raeburn 4500: my $datatoken = &Apache::loncommon::valid_datatoken($env{'form.datatoken'});
! 4501: if ($datatoken ne '') {
! 4502: &Apache::loncommon::load_tmp_file($request,$datatoken);
! 4503: }
1.246 albertel 4504: my @gradedata = &Apache::loncommon::upfile_record_sep();
4505: my %fields=&get_fields();
1.257 albertel 4506: my $courseid=$env{'request.course.id'};
1.97 albertel 4507: my ($classlist) = &getclasslist('all',0);
1.106 albertel 4508: my @notallowed;
1.41 ng 4509: my @skipped;
1.657 raeburn 4510: my @warnings;
1.41 ng 4511: my $countdone=0;
4512: foreach my $grade (@gradedata) {
4513: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 4514: my $domain;
4515: if ($entries{$fields{'domain'}}) {
4516: $domain=$entries{$fields{'domain'}};
4517: } else {
1.257 albertel 4518: $domain=$env{'form.default_domain'};
1.246 albertel 4519: }
1.243 albertel 4520: $domain=~s/\s//g;
1.41 ng 4521: my $username=$entries{$fields{'username'}};
1.160 albertel 4522: $username=~s/\s//g;
1.243 albertel 4523: if (!$username) {
4524: my $id=$entries{$fields{'ID'}};
1.247 albertel 4525: $id=~s/\s//g;
1.737 raeburn 4526: if ($id ne '') {
4527: my %ids=&Apache::lonnet::idget($domain,[$id]);
4528: $username=$ids{$id};
4529: } else {
4530: if ($entries{$fields{'clicker'}}) {
4531: my $clicker = $entries{$fields{'clicker'}};
4532: $clicker=~s/\s//g;
4533: if ($clicker ne '') {
4534: my %clickers = &Apache::lonnet::idget($domain,[$clicker],'clickers');
4535: if ($clickers{$clicker} ne '') {
4536: my $match = 0;
4537: my @inclass;
4538: foreach my $poss (split(/,/,$clickers{$clicker})) {
4539: if (exists($$classlist{"$poss:$domain"})) {
4540: $username = $poss;
4541: push(@inclass,$poss);
4542: $match ++;
4543:
4544: }
4545: }
4546: if ($match > 1) {
4547: undef($username);
4548: $request->print('<p class="LC_warning">'.
4549: &mt('Score not saved for clicker: [_1] (matched multiple usernames: [_2])',
4550: $clicker,join(', ',@inclass)).'</p>');
4551: }
4552: }
4553: }
4554: }
4555: }
1.243 albertel 4556: }
1.41 ng 4557: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 4558: my $id=$entries{$fields{'ID'}};
4559: $id=~s/\s//g;
1.737 raeburn 4560: my $clicker = $entries{$fields{'clicker'}};
4561: $clicker=~s/\s//g;
4562: if ($clicker) {
4563: push(@skipped,"$clicker:$domain");
4564: } elsif ($id) {
1.247 albertel 4565: push(@skipped,"$id:$domain");
4566: } else {
4567: push(@skipped,"$username:$domain");
4568: }
1.41 ng 4569: next;
4570: }
1.108 albertel 4571: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 4572: if (!&canmodify($usec)) {
4573: push(@notallowed,"$username:$domain");
4574: next;
4575: }
1.244 albertel 4576: my %points;
1.41 ng 4577: my %grades;
4578: foreach my $dest (keys(%fields)) {
1.244 albertel 4579: if ($dest eq 'ID' || $dest eq 'username' ||
4580: $dest eq 'domain') { next; }
4581: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
4582: if ($dest=~/stores_(.*)_points/) {
4583: my $part=$1;
4584: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
4585: $symb,$domain,$username);
1.345 bowersj2 4586: if ($wgt) {
4587: $entries{$fields{$dest}}=~s/\s//g;
4588: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 4589: my $award=($pcr == 0) ? 'incorrect_by_override'
4590: : 'correct_by_override';
1.638 www 4591: if ($pcr>1) {
1.657 raeburn 4592: push(@warnings,&mt("[_1]: point value larger than weight","$username:$domain"));
1.638 www 4593: }
1.345 bowersj2 4594: $grades{"resource.$part.awarded"}=$pcr;
4595: $grades{"resource.$part.solved"}=$award;
4596: $points{$part}=1;
4597: } else {
4598: $error_msg = "<br />" .
4599: &mt("Some point values were assigned"
4600: ." for problems with a weight "
4601: ."of zero. These values were "
4602: ."ignored.");
4603: }
1.244 albertel 4604: } else {
4605: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
4606: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
4607: my $store_key=$dest;
4608: $store_key=~s/^stores/resource/;
4609: $store_key=~s/_/\./g;
4610: $grades{$store_key}=$entries{$fields{$dest}};
4611: }
1.41 ng 4612: }
1.508 www 4613: if (! %grades) {
4614: push(@skipped,&mt("[_1]: no data to save","$username:$domain"));
4615: } else {
4616: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
4617: my $result=&Apache::lonnet::cstore(\%grades,$symb,
1.302 albertel 4618: $env{'request.course.id'},
4619: $domain,$username);
1.508 www 4620: if ($result eq 'ok') {
1.627 www 4621: # Successfully stored
1.508 www 4622: $request->print('.');
1.627 www 4623: # Remove from grading queue
4624: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,
4625: $env{'course.'.$env{'request.course.id'}.'.domain'},
4626: $env{'course.'.$env{'request.course.id'}.'.num'},
4627: $domain,$username);
4628: $countdone++;
4629: } else {
1.508 www 4630: $request->print("<p><span class=\"LC_error\">".
4631: &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
4632: "$username:$domain",$result)."</span></p>");
4633: }
4634: $request->rflush();
4635: }
1.41 ng 4636: }
1.570 www 4637: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt("Saved scores for [quant,_1,student]",$countdone),$countdone==0));
1.657 raeburn 4638: if (@warnings) {
4639: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Warnings generated for the following saved scores:'),1).'<br />');
4640: $request->print(join(', ',@warnings));
4641: }
1.41 ng 4642: if (@skipped) {
1.571 www 4643: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('No scores stored for the following username(s):'),1).'<br />');
4644: $request->print(join(', ',@skipped));
1.106 albertel 4645: }
4646: if (@notallowed) {
1.571 www 4647: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Modification of scores not allowed for the following username(s):'),1).'<br />');
4648: $request->print(join(', ',@notallowed));
1.41 ng 4649: }
1.106 albertel 4650: $request->print("<br />\n");
1.345 bowersj2 4651: return $error_msg;
1.26 albertel 4652: }
1.44 ng 4653: #------------- end of section for handling csv file upload ---------
4654: #
4655: #-------------------------------------------------------------------
4656: #
1.122 ng 4657: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4658: #
4659: #--- Select a page/sequence and a student to grade
1.68 ng 4660: sub pickStudentPage {
1.608 www 4661: my ($request,$symb) = @_;
1.68 ng 4662:
1.539 riegler 4663: my $alertmsg = &mt('Please select the student you wish to grade.');
1.736 damieng 4664: &js_escape(\$alertmsg);
1.597 wenzelju 4665: $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
1.68 ng 4666:
4667: function checkPickOne(formname) {
1.76 ng 4668: if (radioSelection(formname.student) == null) {
1.539 riegler 4669: alert("$alertmsg");
1.68 ng 4670: return;
4671: }
1.125 ng 4672: ptr = pullDownSelection(formname.selectpage);
4673: formname.page.value = formname["page"+ptr].value;
4674: formname.title.value = formname["title"+ptr].value;
1.68 ng 4675: formname.submit();
4676: }
4677:
4678: LISTJAVASCRIPT
1.118 ng 4679: &commonJSfunctions($request);
1.608 www 4680:
1.257 albertel 4681: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4682: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4683: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4684:
1.398 albertel 4685: my $result='<h3><span class="LC_info"> '.
1.485 albertel 4686: &mt('Manual Grading by Page or Sequence').'</span></h3>';
1.68 ng 4687:
1.80 ng 4688: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.582 raeburn 4689: my $map_error;
4690: my ($titles,$symbx) = &getSymbMap($map_error);
4691: if ($map_error) {
4692: $request->print(&navmap_errormsg());
4693: return;
4694: }
1.137 albertel 4695: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4696: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4697: # my $type=($curpage =~ /\.(page|sequence)/);
1.700 bisitz 4698:
4699: # Collection of hidden fields
1.70 ng 4700: my $ctr=0;
1.68 ng 4701: foreach (@$titles) {
1.700 bisitz 4702: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4703: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4704: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4705: $ctr++;
1.68 ng 4706: }
1.700 bisitz 4707: $result.='<input type="hidden" name="page" />'."\n".
4708: '<input type="hidden" name="title" />'."\n";
4709:
4710: $result.=&build_section_inputs();
4711: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4712: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
4713: '<input type="hidden" name="command" value="displayPage" />'."\n".
4714: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.485 albertel 4715:
1.700 bisitz 4716: # Show grading options
4717: $result.=&Apache::lonhtmlcommon::start_pick_box();
4718: my $select = '<select name="selectpage">'."\n";
1.70 ng 4719: $ctr=0;
4720: foreach (@$titles) {
4721: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.700 bisitz 4722: $select.='<option value="'.$ctr.'"'.
4723: ($$symbx{$_} =~ /$curpage$/ ? ' selected="selected"' : '').
4724: '>'.$showtitle.'</option>'."\n";
1.70 ng 4725: $ctr++;
4726: }
1.700 bisitz 4727: $select.= '</select>';
1.68 ng 4728:
1.700 bisitz 4729: $result.=
4730: &Apache::lonhtmlcommon::row_title(&mt('Problems from'))
4731: .$select
4732: .&Apache::lonhtmlcommon::row_closure();
4733:
4734: $result.=
4735: &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
4736: .'<label><input type="radio" name="vProb" value="no"'
4737: .' checked="checked" /> '.&mt('no').' </label>'."\n"
4738: .'<label><input type="radio" name="vProb" value="yes" />'
4739: .&mt('yes').'</label>'."\n"
4740: .&Apache::lonhtmlcommon::row_closure();
4741:
4742: $result.=
4743: &Apache::lonhtmlcommon::row_title(&mt('View Submissions'))
4744: .'<label><input type="radio" name="lastSub" value="none" /> '
4745: .&mt('none').' </label>'."\n"
4746: .'<label><input type="radio" name="lastSub" value="datesub"'
4747: .' checked="checked" /> '.&mt('all submissions').'</label>'."\n"
4748: .'<label><input type="radio" name="lastSub" value="all" /> '
4749: .&mt('all submissions with details').' </label>'
4750: .&Apache::lonhtmlcommon::row_closure();
1.432 banghart 4751:
1.700 bisitz 4752: $result.=
4753: &Apache::lonhtmlcommon::row_title(&mt('Use CODE'))
4754: .'<input type="text" name="CODE" value="" />'
4755: .&Apache::lonhtmlcommon::row_closure(1)
4756: .&Apache::lonhtmlcommon::end_pick_box();
1.382 albertel 4757:
1.700 bisitz 4758: # Show list of students to select for grading
4759: $result.='<br /><input type="button" '.
1.589 bisitz 4760: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /><br />'."\n";
1.72 ng 4761:
1.68 ng 4762: $request->print($result);
4763:
1.485 albertel 4764: my $studentTable.=' <b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
1.484 albertel 4765: &Apache::loncommon::start_data_table().
4766: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4767: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4768: '<th>'.&nameUserString('header').'</th>'.
1.485 albertel 4769: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4770: '<th>'.&nameUserString('header').'</th>'.
4771: &Apache::loncommon::end_data_table_header_row();
1.68 ng 4772:
1.76 ng 4773: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4774: my $ptr = 1;
1.294 albertel 4775: foreach my $student (sort
4776: {
4777: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4778: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4779: }
4780: return $a cmp $b;
4781: } (keys(%$fullname))) {
1.68 ng 4782: my ($uname,$udom) = split(/:/,$student);
1.484 albertel 4783: $studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
4784: : '</td>');
1.126 ng 4785: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4786: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4787: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.484 albertel 4788: $studentTable.=
4789: ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row()
4790: : '');
1.68 ng 4791: $ptr++;
4792: }
1.484 albertel 4793: if ($ptr%2 == 0) {
4794: $studentTable.='</td><td> </td><td> </td>'.
4795: &Apache::loncommon::end_data_table_row();
4796: }
4797: $studentTable.=&Apache::loncommon::end_data_table()."\n";
1.126 ng 4798: $studentTable.='<input type="button" '.
1.589 bisitz 4799: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /></form>'."\n";
1.68 ng 4800:
4801: $request->print($studentTable);
4802:
4803: return '';
4804: }
4805:
4806: sub getSymbMap {
1.582 raeburn 4807: my ($map_error) = @_;
1.132 bowersj2 4808: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4809: unless (ref($navmap)) {
4810: if (ref($map_error)) {
4811: $$map_error = 'navmap';
4812: }
4813: return;
4814: }
1.68 ng 4815: my %symbx = ();
4816: my @titles = ();
1.117 bowersj2 4817: my $minder = 0;
4818:
4819: # Gather every sequence that has problems.
1.240 albertel 4820: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
4821: 1,0,1);
1.117 bowersj2 4822: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 4823: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 4824: my $title = $minder.'.'.
4825: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
4826: push(@titles, $title); # minder in case two titles are identical
4827: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 4828: $minder++;
1.241 albertel 4829: }
1.68 ng 4830: }
4831: return \@titles,\%symbx;
4832: }
4833:
1.72 ng 4834: #
4835: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 4836: sub displayPage {
1.608 www 4837: my ($request,$symb) = @_;
1.257 albertel 4838: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4839: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4840: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4841: my $pageTitle = $env{'form.page'};
1.103 albertel 4842: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4843: my ($uname,$udom) = split(/:/,$env{'form.student'});
4844: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 4845:
4846: #need to make sure we have the correct data for later EXT calls,
4847: #thus invalidate the cache
4848: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 4849: $env{'course.'.$env{'request.course.id'}.'.num'},
4850: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 4851: &Apache::lonnet::clear_EXT_cache_status();
4852:
1.103 albertel 4853: if (!&canview($usec)) {
1.712 bisitz 4854: $request->print(
4855: '<span class="LC_warning">'.
4856: &mt('Unable to view requested student. ([_1])',
4857: $env{'form.student'}).
4858: '</span>');
4859: return;
1.103 albertel 4860: }
1.398 albertel 4861: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.485 albertel 4862: $result.='<h3> '.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
1.129 ng 4863: '</h3>'."\n";
1.500 albertel 4864: $env{'form.CODE'} = uc($env{'form.CODE'});
1.501 foxr 4865: if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
1.485 albertel 4866: $result.='<h3> '.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
1.382 albertel 4867: } else {
4868: delete($env{'form.CODE'});
4869: }
1.71 ng 4870: &sub_page_js($request);
4871: $request->print($result);
4872:
1.132 bowersj2 4873: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4874: unless (ref($navmap)) {
4875: $request->print(&navmap_errormsg());
4876: return;
4877: }
1.257 albertel 4878: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 4879: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4880: if (!$map) {
1.485 albertel 4881: $request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
1.288 albertel 4882: return;
4883: }
1.68 ng 4884: my $iterator = $navmap->getIterator($map->map_start(),
4885: $map->map_finish());
4886:
1.71 ng 4887: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 4888: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 4889: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
4890: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 4891: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 4892: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 4893: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.613 www 4894: '<input type="hidden" name="overRideScore" value="no" />'."\n";
1.71 ng 4895:
1.382 albertel 4896: if (defined($env{'form.CODE'})) {
4897: $studentTable.=
4898: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
4899: }
1.381 albertel 4900: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 4901: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 4902:
1.594 bisitz 4903: $studentTable.=' <span class="LC_info">'.
4904: &mt('Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon).
4905: '</span>'."\n".
1.484 albertel 4906: &Apache::loncommon::start_data_table().
4907: &Apache::loncommon::start_data_table_header_row().
1.700 bisitz 4908: '<th>'.&mt('Prob.').'</th>'.
1.485 albertel 4909: '<th> '.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
1.484 albertel 4910: &Apache::loncommon::end_data_table_header_row();
1.71 ng 4911:
1.329 albertel 4912: &Apache::lonxml::clear_problem_counter();
1.196 albertel 4913: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 4914: $iterator->next(); # skip the first BEGIN_MAP
4915: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 4916: while ($depth > 0) {
1.68 ng 4917: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4918: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 4919:
1.385 albertel 4920: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4921: my $parts = $curRes->parts();
1.68 ng 4922: my $title = $curRes->compTitle();
1.71 ng 4923: my $symbx = $curRes->symb();
1.484 albertel 4924: $studentTable.=
4925: &Apache::loncommon::start_data_table_row().
4926: '<td align="center" valign="top" >'.$prob.
1.485 albertel 4927: (scalar(@{$parts}) == 1 ? ''
1.681 raeburn 4928: : '<br />('.&mt('[_1]parts',
4929: scalar(@{$parts}).' ').')'
1.485 albertel 4930: ).
4931: '</td>';
1.71 ng 4932: $studentTable.='<td valign="top">';
1.382 albertel 4933: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 4934: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 4935: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 4936: undef,'both',\%form);
1.71 ng 4937: } else {
1.382 albertel 4938: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 4939: $companswer =~ s|<form(.*?)>||g;
4940: $companswer =~ s|</form>||g;
1.71 ng 4941: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 4942: # $companswer =~ s/$1/ /ms;
1.326 albertel 4943: # $request->print('match='.$1."<br />\n");
1.71 ng 4944: # }
1.116 ng 4945: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.539 riegler 4946: $studentTable.=' <b>'.$title.'</b> <br /> <b>'.&mt('Correct answer').':</b><br />'.$companswer;
1.71 ng 4947: }
4948:
1.257 albertel 4949: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 4950:
1.257 albertel 4951: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 4952: if ($record{'version'} eq '') {
1.485 albertel 4953: $studentTable.='<br /> <span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
1.71 ng 4954: } else {
1.116 ng 4955: my %responseType = ();
4956: foreach my $partid (@{$parts}) {
1.147 albertel 4957: my @responseIds =$curRes->responseIds($partid);
4958: my @responseType =$curRes->responseType($partid);
4959: my %responseIds;
4960: for (my $i=0;$i<=$#responseIds;$i++) {
4961: $responseIds{$responseIds[$i]}=$responseType[$i];
4962: }
4963: $responseType{$partid} = \%responseIds;
1.116 ng 4964: }
1.148 albertel 4965: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 4966:
1.71 ng 4967: }
1.257 albertel 4968: } elsif ($env{'form.lastSub'} eq 'all') {
4969: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.726 raeburn 4970: my $identifier = (&canmodify($usec)? $prob : '');
1.71 ng 4971: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 4972: $env{'request.course.id'},
1.726 raeburn 4973: '','.submission',undef,
4974: $usec,$identifier);
1.71 ng 4975:
4976: }
1.103 albertel 4977: if (&canmodify($usec)) {
1.585 bisitz 4978: $studentTable.=&gradeBox_start();
1.103 albertel 4979: foreach my $partid (@{$parts}) {
4980: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
4981: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
4982: $question++;
4983: }
1.585 bisitz 4984: $studentTable.=&gradeBox_end();
1.196 albertel 4985: $prob++;
1.71 ng 4986: }
4987: $studentTable.='</td></tr>';
1.68 ng 4988:
1.103 albertel 4989: }
1.68 ng 4990: $curRes = $iterator->next();
4991: }
4992:
1.589 bisitz 4993: $studentTable.=
4994: '</table>'."\n".
4995: '<input type="button" value="'.&mt('Save').'" '.
4996: 'onclick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
4997: '</form>'."\n";
1.71 ng 4998: $request->print($studentTable);
4999:
5000: return '';
1.119 ng 5001: }
5002:
5003: sub displaySubByDates {
1.148 albertel 5004: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 5005: my $isCODE=0;
1.335 albertel 5006: my $isTask = ($symb =~/\.task$/);
1.224 albertel 5007: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 5008: my $studentTable=&Apache::loncommon::start_data_table().
5009: &Apache::loncommon::start_data_table_header_row().
5010: '<th>'.&mt('Date/Time').'</th>'.
5011: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
1.671 raeburn 5012: ($isTask?'<th>'.&mt('Version').'</th>':'').
1.467 albertel 5013: '<th>'.&mt('Submission').'</th>'.
5014: '<th>'.&mt('Status').'</th>'.
5015: &Apache::loncommon::end_data_table_header_row();
1.119 ng 5016: my ($version);
5017: my %mark;
1.148 albertel 5018: my %orders;
1.119 ng 5019: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 5020: if (!exists($$record{'1:timestamp'})) {
1.539 riegler 5021: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br />';
1.147 albertel 5022: }
1.335 albertel 5023:
5024: my $interaction;
1.525 raeburn 5025: my $no_increment = 1;
1.735 raeburn 5026: my (%lastrndseed,%lasttype);
1.119 ng 5027: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 5028: my $timestamp =
5029: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 5030: if (exists($$record{$version.':resource.0.version'})) {
5031: $interaction = $$record{$version.':resource.0.version'};
5032: }
1.671 raeburn 5033: if ($isTask && $env{'form.previousversion'}) {
5034: next unless ($interaction == $env{'form.previousversion'});
5035: }
1.335 albertel 5036: my $where = ($isTask ? "$version:resource.$interaction"
5037: : "$version:resource");
1.467 albertel 5038: $studentTable.=&Apache::loncommon::start_data_table_row().
5039: '<td>'.$timestamp.'</td>';
1.224 albertel 5040: if ($isCODE) {
5041: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
5042: }
1.671 raeburn 5043: if ($isTask) {
5044: $studentTable.='<td>'.$interaction.'</td>';
5045: }
1.119 ng 5046: my @versionKeys = split(/\:/,$$record{$version.':keys'});
5047: my @displaySub = ();
5048: foreach my $partid (@{$parts}) {
1.640 raeburn 5049: my ($hidden,$type);
5050: $type = $$record{$version.':resource.'.$partid.'.type'};
5051: if (($type eq 'anonsurvey') || ($type eq 'anonsurveycred')) {
1.596 raeburn 5052: $hidden = 1;
5053: }
1.335 albertel 5054: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
5055: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
5056:
1.122 ng 5057: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 5058: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 5059: foreach my $matchKey (@matchKey) {
1.198 albertel 5060: if (exists($$record{$version.':'.$matchKey}) &&
5061: $$record{$version.':'.$matchKey} ne '') {
1.596 raeburn 5062:
1.335 albertel 5063: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
5064: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.670 raeburn 5065: $displaySub[0].='<span class="LC_nobreak">';
1.577 bisitz 5066: $displaySub[0].='<b>'.&mt('Part: [_1]',$display_part).'</b>'
5067: .' <span class="LC_internal_info">'
1.625 www 5068: .'('.&mt('Response ID: [_1]',$responseId).')'
1.577 bisitz 5069: .'</span>'
5070: .' <b>';
1.596 raeburn 5071: if ($hidden) {
5072: $displaySub[0].= &mt('Anonymous Survey').'</b>';
5073: } else {
1.640 raeburn 5074: my ($trial,$rndseed,$newvariation);
5075: if ($type eq 'randomizetry') {
5076: $trial = $$record{"$where.$partid.tries"};
1.733 raeburn 5077: $rndseed = $$record{"$where.$partid.rndseed"};
1.640 raeburn 5078: }
1.596 raeburn 5079: if ($$record{"$where.$partid.tries"} eq '') {
5080: $displaySub[0].=&mt('Trial not counted');
5081: } else {
5082: $displaySub[0].=&mt('Trial: [_1]',
1.467 albertel 5083: $$record{"$where.$partid.tries"});
1.734 raeburn 5084: if (($rndseed ne '') && ($lastrndseed{$partid} ne '')) {
1.735 raeburn 5085: if (($rndseed ne $lastrndseed{$partid}) &&
5086: (($type eq 'randomizetry') || ($lasttype{$partid} eq 'randomizetry'))) {
1.640 raeburn 5087: $newvariation = ' ('.&mt('New variation this try').')';
5088: }
5089: }
5090: $lastrndseed{$partid} = $rndseed;
1.735 raeburn 5091: $lasttype{$partid} = $type;
1.596 raeburn 5092: }
5093: my $responseType=($isTask ? 'Task'
1.335 albertel 5094: : $responseType->{$partid}->{$responseId});
1.596 raeburn 5095: if (!exists($orders{$partid})) { $orders{$partid}={}; }
1.640 raeburn 5096: if ((!exists($orders{$partid}->{$responseId})) || ($trial)) {
1.596 raeburn 5097: $orders{$partid}->{$responseId}=
5098: &get_order($partid,$responseId,$symb,$uname,$udom,
1.640 raeburn 5099: $no_increment,$type,$trial,$rndseed);
1.596 raeburn 5100: }
1.640 raeburn 5101: $displaySub[0].='</b>'.$newvariation.'</span>'; # /nobreak
1.596 raeburn 5102: $displaySub[0].=' '.
1.640 raeburn 5103: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom,$type,$trial,$rndseed).'<br />';
1.596 raeburn 5104: }
1.147 albertel 5105: }
5106: }
1.335 albertel 5107: if (exists($$record{"$where.$partid.checkedin"})) {
1.485 albertel 5108: $displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
5109: $$record{"$where.$partid.checkedin"},
5110: $$record{"$where.$partid.checkedin.slot"}).
5111: '<br />';
1.335 albertel 5112: }
5113: if (exists $$record{"$where.$partid.award"}) {
1.485 albertel 5114: $displaySub[1].='<b>'.&mt('Part:').'</b> '.$display_part.' '.
1.335 albertel 5115: lc($$record{"$where.$partid.award"}).' '.
5116: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 5117: '<br />';
5118: }
1.335 albertel 5119: if (exists $$record{"$where.$partid.regrader"}) {
5120: $displaySub[2].=$$record{"$where.$partid.regrader"}.
5121: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
5122: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
5123: $displaySub[2].=
5124: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 5125: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 5126: }
5127: }
5128: # needed because old essay regrader has not parts info
5129: if (exists $$record{"$version:resource.regrader"}) {
5130: $displaySub[2].=$$record{"$version:resource.regrader"};
5131: }
5132: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
5133: if ($displaySub[2]) {
1.467 albertel 5134: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 5135: }
1.467 albertel 5136: $studentTable.=' </td>'.
5137: &Apache::loncommon::end_data_table_row();
1.119 ng 5138: }
1.467 albertel 5139: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 5140: return $studentTable;
1.71 ng 5141: }
5142:
5143: sub updateGradeByPage {
1.608 www 5144: my ($request,$symb) = @_;
1.71 ng 5145:
1.257 albertel 5146: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
5147: my $cnum = $env{"course.$env{'request.course.id'}.num"};
5148: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
5149: my $pageTitle = $env{'form.page'};
1.103 albertel 5150: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 5151: my ($uname,$udom) = split(/:/,$env{'form.student'});
5152: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 5153: if (!&canmodify($usec)) {
1.526 raeburn 5154: $request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
1.103 albertel 5155: return;
5156: }
1.398 albertel 5157: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.526 raeburn 5158: $result.='<h3> '.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 5159: '</h3>'."\n";
1.70 ng 5160:
1.68 ng 5161: $request->print($result);
5162:
1.582 raeburn 5163:
1.132 bowersj2 5164: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 5165: unless (ref($navmap)) {
5166: $request->print(&navmap_errormsg());
5167: return;
5168: }
1.257 albertel 5169: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 5170: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 5171: if (!$map) {
1.527 raeburn 5172: $request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
1.288 albertel 5173: return;
5174: }
1.71 ng 5175: my $iterator = $navmap->getIterator($map->map_start(),
5176: $map->map_finish());
1.70 ng 5177:
1.484 albertel 5178: my $studentTable=
5179: &Apache::loncommon::start_data_table().
5180: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 5181: '<th align="center"> '.&mt('Prob.').' </th>'.
5182: '<th> '.&mt('Title').' </th>'.
5183: '<th> '.&mt('Previous Score').' </th>'.
5184: '<th> '.&mt('New Score').' </th>'.
1.484 albertel 5185: &Apache::loncommon::end_data_table_header_row();
1.71 ng 5186:
5187: $iterator->next(); # skip the first BEGIN_MAP
5188: my $curRes = $iterator->next(); # for "current resource"
1.726 raeburn 5189: my ($depth,$question,$prob,$changeflag,$hideflag)= (1,1,1,0,0);
1.101 albertel 5190: while ($depth > 0) {
1.71 ng 5191: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 5192: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 5193:
1.385 albertel 5194: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 5195: my $parts = $curRes->parts();
1.71 ng 5196: my $title = $curRes->compTitle();
5197: my $symbx = $curRes->symb();
1.484 albertel 5198: $studentTable.=
5199: &Apache::loncommon::start_data_table_row().
5200: '<td align="center" valign="top" >'.$prob.
1.485 albertel 5201: (scalar(@{$parts}) == 1 ? ''
1.640 raeburn 5202: : '<br />('.&mt('[quant,_1,part]',scalar(@{$parts}))
1.526 raeburn 5203: .')').'</td>';
1.71 ng 5204: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
5205:
5206: my %newrecord=();
5207: my @displayPts=();
1.269 raeburn 5208: my %aggregate = ();
5209: my $aggregateflag = 0;
1.726 raeburn 5210: if ($env{'form.HIDE'.$prob}) {
5211: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.727 raeburn 5212: my ($version,$parts) = split(/:/,$env{'form.HIDE'.$prob},2);
1.728 raeburn 5213: my $numchgs = &makehidden($version,$parts,\%record,$symbx,$udom,$uname,1);
1.726 raeburn 5214: $hideflag += $numchgs;
5215: }
1.71 ng 5216: foreach my $partid (@{$parts}) {
1.257 albertel 5217: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
5218: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 5219:
1.257 albertel 5220: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
5221: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 5222: my $partial = $newpts/$wgt;
5223: my $score;
5224: if ($partial > 0) {
5225: $score = 'correct_by_override';
1.125 ng 5226: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 5227: $score = 'incorrect_by_override';
5228: }
1.257 albertel 5229: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 5230: if ($dropMenu eq 'excused') {
1.71 ng 5231: $partial = '';
5232: $score = 'excused';
1.125 ng 5233: } elsif ($dropMenu eq 'reset status'
1.257 albertel 5234: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 5235: $newrecord{'resource.'.$partid.'.tries'} = 0;
5236: $newrecord{'resource.'.$partid.'.solved'} = '';
5237: $newrecord{'resource.'.$partid.'.award'} = '';
5238: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 5239: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 5240: $changeflag++;
5241: $newpts = '';
1.269 raeburn 5242:
5243: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
5244: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
5245: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
5246: if ($aggtries > 0) {
5247: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
5248: $aggregateflag = 1;
5249: }
1.71 ng 5250: }
1.324 albertel 5251: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 5252: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.526 raeburn 5253: $displayPts[0].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.71 ng 5254: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 5255: ' <br />';
1.526 raeburn 5256: $displayPts[1].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.125 ng 5257: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 5258: ' <br />';
1.71 ng 5259: $question++;
1.380 albertel 5260: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 5261:
1.71 ng 5262: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 5263: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 5264: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 5265: if (scalar(keys(%newrecord)) > 0);
1.71 ng 5266:
5267: $changeflag++;
5268: }
5269: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 5270: my %record =
5271: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
5272: $udom,$uname);
5273:
5274: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
5275: $newrecord{'resource.CODE'} = $env{'form.CODE'};
5276: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
5277: $newrecord{'resource.CODE'} = '';
5278: }
1.257 albertel 5279: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 5280: $udom,$uname);
1.382 albertel 5281: %record = &Apache::lonnet::restore($symbx,
5282: $env{'request.course.id'},
5283: $udom,$uname);
1.380 albertel 5284: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
5285: $cdom,$cnum,$udom,$uname);
1.71 ng 5286: }
1.380 albertel 5287:
1.269 raeburn 5288: if ($aggregateflag) {
5289: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
5290: $env{'course.'.$env{'request.course.id'}.'.domain'},
5291: $env{'course.'.$env{'request.course.id'}.'.num'});
5292: }
1.125 ng 5293:
1.71 ng 5294: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
5295: '<td valign="top">'.$displayPts[1].'</td>'.
1.484 albertel 5296: &Apache::loncommon::end_data_table_row();
1.68 ng 5297:
1.196 albertel 5298: $prob++;
1.68 ng 5299: }
1.71 ng 5300: $curRes = $iterator->next();
1.68 ng 5301: }
1.98 albertel 5302:
1.484 albertel 5303: $studentTable.=&Apache::loncommon::end_data_table();
1.526 raeburn 5304: my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
5305: &mt('The scores were changed for [quant,_1,problem].',
1.726 raeburn 5306: $changeflag).'<br />');
5307: my $hidemsg=($hideflag == 0 ? '' :
5308: &mt('Submissions were marked "hidden" for [quant,_1,transaction].',
5309: $hideflag).'<br />');
5310: $request->print($hidemsg.$grademsg.$studentTable);
1.68 ng 5311:
1.70 ng 5312: return '';
5313: }
5314:
1.72 ng 5315: #-------- end of section for handling grading by page/sequence ---------
5316: #
5317: #-------------------------------------------------------------------
5318:
1.581 www 5319: #-------------------- Bubblesheet (Scantron) Grading -------------------
1.75 albertel 5320: #
5321: #------ start of section for handling grading by page/sequence ---------
5322:
1.423 albertel 5323: =pod
5324:
5325: =head1 Bubble sheet grading routines
5326:
1.424 albertel 5327: For this documentation:
5328:
5329: 'scanline' refers to the full line of characters
5330: from the file that we are parsing that represents one entire sheet
5331:
5332: 'bubble line' refers to the data
1.659 raeburn 5333: representing the line of bubbles that are on the physical bubblesheet
1.424 albertel 5334:
5335:
1.659 raeburn 5336: The overall process is that a scanned in bubblesheet data is uploaded
1.424 albertel 5337: into a course. When a user wants to grade, they select a
1.659 raeburn 5338: sequence/folder of resources, a file of bubblesheet info, and pick
1.424 albertel 5339: one of the predefined configurations for what each scanline looks
5340: like.
5341:
5342: Next each scanline is checked for any errors of either 'missing
1.435 foxr 5343: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 5344: because too light bubbling), 'double bubble' (each bubble line should
1.703 bisitz 5345: have no more than one letter picked), invalid or duplicated CODE,
1.556 weissno 5346: invalid student/employee ID
1.424 albertel 5347:
5348: If the CODE option is used that determines the randomization of the
1.556 weissno 5349: homework problems, either way the student/employee ID is looked up into a
1.424 albertel 5350: username:domain.
5351:
5352: During the validation phase the instructor can choose to skip scanlines.
5353:
1.659 raeburn 5354: After the validation phase, there are now 3 bubblesheet files
1.424 albertel 5355:
5356: scantron_original_filename (unmodified original file)
5357: scantron_corrected_filename (file where the corrected information has replaced the original information)
5358: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
5359:
5360: Also there is a separate hash nohist_scantrondata that contains extra
1.659 raeburn 5361: correction information that isn't representable in the bubblesheet
1.424 albertel 5362: file (see &scantron_getfile() for more information)
5363:
5364: After all scanlines are either valid, marked as valid or skipped, then
5365: foreach line foreach problem in the picked sequence, an ssi request is
5366: made that simulates a user submitting their selected letter(s) against
5367: the homework problem.
1.423 albertel 5368:
5369: =over 4
5370:
5371:
5372:
5373: =item defaultFormData
5374:
5375: Returns html hidden inputs used to hold context/default values.
5376:
5377: Arguments:
5378: $symb - $symb of the current resource
5379:
5380: =cut
1.422 foxr 5381:
1.81 albertel 5382: sub defaultFormData {
1.324 albertel 5383: my ($symb)=@_;
1.613 www 5384: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />';
1.81 albertel 5385: }
5386:
1.447 foxr 5387:
1.423 albertel 5388: =pod
5389:
5390: =item getSequenceDropDown
5391:
5392: Return html dropdown of possible sequences to grade
5393:
5394: Arguments:
1.582 raeburn 5395: $symb - $symb of the current resource
5396: $map_error - ref to scalar which will container error if
5397: $navmap object is unavailable in &getSymbMap().
1.423 albertel 5398:
5399: =cut
1.422 foxr 5400:
1.75 albertel 5401: sub getSequenceDropDown {
1.582 raeburn 5402: my ($symb,$map_error)=@_;
1.75 albertel 5403: my $result='<select name="selectpage">'."\n";
1.582 raeburn 5404: my ($titles,$symbx) = &getSymbMap($map_error);
5405: if (ref($map_error)) {
5406: return if ($$map_error);
5407: }
1.137 albertel 5408: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 5409: my $ctr=0;
5410: foreach (@$titles) {
5411: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
5412: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 5413: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 5414: '>'.$showtitle.'</option>'."\n";
5415: $ctr++;
5416: }
5417: $result.= '</select>';
5418: return $result;
5419: }
5420:
1.495 albertel 5421: my %bubble_lines_per_response; # no. bubble lines for each response.
1.554 raeburn 5422: # key is zero-based index - 0, 1, 2 ...
1.495 albertel 5423:
5424: my %first_bubble_line; # First bubble line no. for each bubble.
5425:
1.509 raeburn 5426: my %subdivided_bubble_lines; # no. bubble lines for optionresponse,
5427: # matchresponse or rankresponse, where
5428: # an individual response can have multiple
5429: # lines
1.503 raeburn 5430:
5431: my %responsetype_per_response; # responsetype for each response
5432:
1.691 raeburn 5433: my %masterseq_id_responsenum; # src_id (e.g., 12.3_0.11 etc.) for each
5434: # numbered response. Needed when randomorder
5435: # or randompick are in use. Key is ID, value
5436: # is response number.
5437:
1.495 albertel 5438: # Save and restore the bubble lines array to the form env.
5439:
5440:
5441: sub save_bubble_lines {
5442: foreach my $line (keys(%bubble_lines_per_response)) {
5443: $env{"form.scantron.bubblelines.$line"} = $bubble_lines_per_response{$line};
5444: $env{"form.scantron.first_bubble_line.$line"} =
5445: $first_bubble_line{$line};
1.503 raeburn 5446: $env{"form.scantron.sub_bubblelines.$line"} =
5447: $subdivided_bubble_lines{$line};
5448: $env{"form.scantron.responsetype.$line"} =
5449: $responsetype_per_response{$line};
1.495 albertel 5450: }
1.691 raeburn 5451: foreach my $resid (keys(%masterseq_id_responsenum)) {
5452: my $line = $masterseq_id_responsenum{$resid};
5453: $env{"form.scantron.residpart.$line"} = $resid;
5454: }
1.495 albertel 5455: }
5456:
5457:
5458: sub restore_bubble_lines {
5459: my $line = 0;
5460: %bubble_lines_per_response = ();
1.691 raeburn 5461: %masterseq_id_responsenum = ();
1.495 albertel 5462: while ($env{"form.scantron.bubblelines.$line"}) {
5463: my $value = $env{"form.scantron.bubblelines.$line"};
5464: $bubble_lines_per_response{$line} = $value;
5465: $first_bubble_line{$line} =
5466: $env{"form.scantron.first_bubble_line.$line"};
1.503 raeburn 5467: $subdivided_bubble_lines{$line} =
5468: $env{"form.scantron.sub_bubblelines.$line"};
5469: $responsetype_per_response{$line} =
5470: $env{"form.scantron.responsetype.$line"};
1.691 raeburn 5471: my $id = $env{"form.scantron.residpart.$line"};
5472: $masterseq_id_responsenum{$id} = $line;
1.495 albertel 5473: $line++;
5474: }
5475: }
5476:
1.423 albertel 5477: =pod
5478:
5479: =item scantron_filenames
5480:
5481: Returns a list of the scantron files in the current course
5482:
5483: =cut
1.422 foxr 5484:
1.202 albertel 5485: sub scantron_filenames {
1.257 albertel 5486: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5487: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517 raeburn 5488: my $getpropath = 1;
1.662 raeburn 5489: my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
5490: $cname,$getpropath);
1.202 albertel 5491: my @possiblenames;
1.662 raeburn 5492: if (ref($dirlist) eq 'ARRAY') {
5493: foreach my $filename (sort(@{$dirlist})) {
5494: ($filename)=split(/&/,$filename);
5495: if ($filename!~/^scantron_orig_/) { next ; }
5496: $filename=~s/^scantron_orig_//;
5497: push(@possiblenames,$filename);
5498: }
1.202 albertel 5499: }
5500: return @possiblenames;
5501: }
5502:
1.423 albertel 5503: =pod
5504:
5505: =item scantron_uploads
5506:
5507: Returns html drop-down list of scantron files in current course.
5508:
5509: Arguments:
5510: $file2grade - filename to set as selected in the dropdown
5511:
5512: =cut
1.422 foxr 5513:
1.202 albertel 5514: sub scantron_uploads {
1.209 ng 5515: my ($file2grade) = @_;
1.202 albertel 5516: my $result= '<select name="scantron_selectfile">';
5517: $result.="<option></option>";
5518: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 5519: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 5520: }
5521: $result.="</select>";
5522: return $result;
5523: }
5524:
1.423 albertel 5525: =pod
5526:
5527: =item scantron_scantab
5528:
5529: Returns html drop down of the scantron formats in the scantronformat.tab
5530: file.
5531:
5532: =cut
1.422 foxr 5533:
1.82 albertel 5534: sub scantron_scantab {
5535: my $result='<select name="scantron_format">'."\n";
1.191 albertel 5536: $result.='<option></option>'."\n";
1.518 raeburn 5537: my @lines = &get_scantronformat_file();
5538: if (@lines > 0) {
5539: foreach my $line (@lines) {
5540: next if (($line =~ /^\#/) || ($line eq ''));
5541: my ($name,$descrip)=split(/:/,$line);
5542: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
5543: }
1.82 albertel 5544: }
5545: $result.='</select>'."\n";
1.518 raeburn 5546: return $result;
5547: }
5548:
5549: =pod
5550:
5551: =item get_scantronformat_file
5552:
5553: Returns an array containing lines from the scantron format file for
5554: the domain of the course.
5555:
5556: If a url for a custom.tab file is listed in domain's configuration.db,
5557: lines are from this file.
5558:
5559: Otherwise, if a default.tab has been published in RES space by the
5560: domainconfig user, lines are from this file.
5561:
5562: Otherwise, fall back to getting lines from the legacy file on the
1.519 raeburn 5563: local server: /home/httpd/lonTabs/default_scantronformat.tab
1.82 albertel 5564:
1.518 raeburn 5565: =cut
5566:
5567: sub get_scantronformat_file {
5568: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5569: my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
5570: my $gottab = 0;
5571: my @lines;
5572: if (ref($domconfig{'scantron'}) eq 'HASH') {
5573: if ($domconfig{'scantron'}{'scantronformat'} ne '') {
5574: my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
5575: if ($formatfile ne '-1') {
5576: @lines = split("\n",$formatfile,-1);
5577: $gottab = 1;
5578: }
5579: }
5580: }
5581: if (!$gottab) {
5582: my $confname = $cdom.'-domainconfig';
5583: my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
5584: my $formatfile = &Apache::lonnet::getfile($default);
5585: if ($formatfile ne '-1') {
5586: @lines = split("\n",$formatfile,-1);
5587: $gottab = 1;
5588: }
5589: }
5590: if (!$gottab) {
1.519 raeburn 5591: my @domains = &Apache::lonnet::current_machine_domains();
5592: if (grep(/^\Q$cdom\E$/,@domains)) {
5593: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
5594: @lines = <$fh>;
5595: close($fh);
5596: } else {
5597: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
5598: @lines = <$fh>;
5599: close($fh);
5600: }
1.518 raeburn 5601: }
5602: return @lines;
1.82 albertel 5603: }
5604:
1.423 albertel 5605: =pod
5606:
5607: =item scantron_CODElist
5608:
5609: Returns html drop down of the saved CODE lists from current course,
5610: generated from earlier printings.
5611:
5612: =cut
1.422 foxr 5613:
1.186 albertel 5614: sub scantron_CODElist {
1.257 albertel 5615: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
5616: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 5617: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
5618: my $namechoice='<option></option>';
1.225 albertel 5619: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 5620: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 5621: if ($name =~ /^type\0/) { next; }
1.186 albertel 5622: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
5623: }
5624: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
5625: return $namechoice;
5626: }
5627:
1.423 albertel 5628: =pod
5629:
5630: =item scantron_CODEunique
5631:
5632: Returns the html for "Each CODE to be used once" radio.
5633:
5634: =cut
1.422 foxr 5635:
1.186 albertel 5636: sub scantron_CODEunique {
1.532 bisitz 5637: my $result='<span class="LC_nobreak">
1.272 albertel 5638: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5639: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 5640: </span>
1.532 bisitz 5641: <span class="LC_nobreak">
1.272 albertel 5642: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5643: value="no" />'.&mt('No').' </label>
1.381 albertel 5644: </span>';
1.186 albertel 5645: return $result;
5646: }
1.423 albertel 5647:
5648: =pod
5649:
5650: =item scantron_selectphase
5651:
1.659 raeburn 5652: Generates the initial screen to start the bubblesheet process.
1.423 albertel 5653: Allows for - starting a grading run.
1.424 albertel 5654: - downloading existing scan data (original, corrected
1.423 albertel 5655: or skipped info)
5656:
5657: - uploading new scan data
5658:
5659: Arguments:
5660: $r - The Apache request object
5661: $file2grade - name of the file that contain the scanned data to score
5662:
5663: =cut
1.186 albertel 5664:
1.75 albertel 5665: sub scantron_selectphase {
1.608 www 5666: my ($r,$file2grade,$symb) = @_;
1.75 albertel 5667: if (!$symb) {return '';}
1.582 raeburn 5668: my $map_error;
5669: my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
5670: if ($map_error) {
5671: $r->print('<br />'.&navmap_errormsg().'<br />');
5672: return;
5673: }
1.324 albertel 5674: my $default_form_data=&defaultFormData($symb);
1.209 ng 5675: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 5676: my $format_selector=&scantron_scantab();
1.186 albertel 5677: my $CODE_selector=&scantron_CODElist();
5678: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 5679: my $result;
1.422 foxr 5680:
1.513 foxr 5681: $ssi_error = 0;
5682:
1.606 wenzelju 5683: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
5684: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
5685:
5686: # Chunk of form to prompt for a scantron file upload.
5687:
5688: $r->print('
5689: <br />
5690: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5691: '.&Apache::loncommon::start_data_table_header_row().'
5692: <th>
5693: '.&mt('Specify a bubblesheet data file to upload.').'
5694: </th>
5695: '.&Apache::loncommon::end_data_table_header_row().'
5696: '.&Apache::loncommon::start_data_table_row().'
5697: <td>
5698: ');
1.608 www 5699: my $default_form_data=&defaultFormData($symb);
1.606 wenzelju 5700: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5701: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.736 damieng 5702: my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
5703: &js_escape(\$alertmsg);
1.606 wenzelju 5704: $r->print(&Apache::lonhtmlcommon::scripttag('
5705: function checkUpload(formname) {
5706: if (formname.upfile.value == "") {
1.736 damieng 5707: alert("'.$alertmsg.'");
1.606 wenzelju 5708: return false;
5709: }
5710: formname.submit();
5711: }'));
5712: $r->print('
5713: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
5714: '.$default_form_data.'
5715: <input name="courseid" type="hidden" value="'.$cnum.'" />
5716: <input name="domainid" type="hidden" value="'.$cdom.'" />
5717: <input name="command" value="scantronupload_save" type="hidden" />
5718: '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
5719: <br />
5720: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
5721: </form>
5722: ');
5723:
5724: $r->print('
5725: </td>
5726: '.&Apache::loncommon::end_data_table_row().'
5727: '.&Apache::loncommon::end_data_table().'
5728: ');
5729: }
5730:
1.422 foxr 5731: # Chunk of form to prompt for a file to grade and how:
5732:
1.489 albertel 5733: $result.= '
5734: <br />
5735: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
5736: <input type="hidden" name="command" value="scantron_warning" />
5737: '.$default_form_data.'
5738: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5739: '.&Apache::loncommon::start_data_table_header_row().'
5740: <th colspan="2">
1.492 albertel 5741: '.&mt('Specify file and which Folder/Sequence to grade').'
1.489 albertel 5742: </th>
5743: '.&Apache::loncommon::end_data_table_header_row().'
5744: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5745: <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489 albertel 5746: '.&Apache::loncommon::end_data_table_row().'
5747: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5748: <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
1.489 albertel 5749: '.&Apache::loncommon::end_data_table_row().'
5750: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5751: <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
1.489 albertel 5752: '.&Apache::loncommon::end_data_table_row().'
5753: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5754: <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489 albertel 5755: '.&Apache::loncommon::end_data_table_row().'
5756: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5757: <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489 albertel 5758: '.&Apache::loncommon::end_data_table_row().'
5759: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5760: <td> '.&mt('Options:').' </td>
1.187 albertel 5761: <td>
1.492 albertel 5762: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
5763: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
5764: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187 albertel 5765: </td>
1.489 albertel 5766: '.&Apache::loncommon::end_data_table_row().'
5767: '.&Apache::loncommon::start_data_table_row().'
1.174 albertel 5768: <td colspan="2">
1.572 www 5769: <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
1.162 albertel 5770: </td>
1.489 albertel 5771: '.&Apache::loncommon::end_data_table_row().'
5772: '.&Apache::loncommon::end_data_table().'
5773: </form>
5774: ';
1.162 albertel 5775:
5776: $r->print($result);
5777:
1.422 foxr 5778:
5779:
5780: # Chunk of the form that prompts to view a scoring office file,
5781: # corrected file, skipped records in a file.
5782:
1.489 albertel 5783: $r->print('
5784: <br />
5785: <form action="/adm/grades" name="scantron_download">
5786: '.$default_form_data.'
5787: <input type="hidden" name="command" value="scantron_download" />
5788: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5789: '.&Apache::loncommon::start_data_table_header_row().'
5790: <th>
1.492 albertel 5791: '.&mt('Download a scoring office file').'
1.489 albertel 5792: </th>
5793: '.&Apache::loncommon::end_data_table_header_row().'
5794: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5795: <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).'
1.489 albertel 5796: <br />
1.492 albertel 5797: <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489 albertel 5798: '.&Apache::loncommon::end_data_table_row().'
5799: '.&Apache::loncommon::end_data_table().'
5800: </form>
5801: <br />
5802: ');
1.162 albertel 5803:
1.457 banghart 5804: &Apache::lonpickcode::code_list($r,2);
1.523 raeburn 5805:
1.694 bisitz 5806: $r->print('<br /><form method="post" name="checkscantron" action="">'.
1.523 raeburn 5807: $default_form_data."\n".
5808: &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
5809: &Apache::loncommon::start_data_table_header_row()."\n".
5810: '<th colspan="2">
1.572 www 5811: '.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
1.523 raeburn 5812: '</th>'."\n".
5813: &Apache::loncommon::end_data_table_header_row()."\n".
5814: &Apache::loncommon::start_data_table_row()."\n".
5815: '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
5816: '<td> '.$sequence_selector.' </td>'.
5817: &Apache::loncommon::end_data_table_row()."\n".
5818: &Apache::loncommon::start_data_table_row()."\n".
5819: '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
5820: '<td> '.$file_selector.' </td>'."\n".
5821: &Apache::loncommon::end_data_table_row()."\n".
5822: &Apache::loncommon::start_data_table_row()."\n".
5823: '<td> '.&mt('Format of data file:').' </td>'."\n".
5824: '<td> '.$format_selector.' </td>'."\n".
5825: &Apache::loncommon::end_data_table_row()."\n".
5826: &Apache::loncommon::start_data_table_row()."\n".
1.557 raeburn 5827: '<td> '.&mt('Options').' </td>'."\n".
5828: '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
5829: &Apache::loncommon::end_data_table_row()."\n".
5830: &Apache::loncommon::start_data_table_row()."\n".
1.523 raeburn 5831: '<td colspan="2">'."\n".
5832: '<input type="hidden" name="command" value="checksubmissions" />'."\n".
1.575 www 5833: '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
1.523 raeburn 5834: '</td>'."\n".
5835: &Apache::loncommon::end_data_table_row()."\n".
5836: &Apache::loncommon::end_data_table()."\n".
5837: '</form><br />');
5838: return;
1.75 albertel 5839: }
5840:
1.423 albertel 5841: =pod
5842:
5843: =item get_scantron_config
5844:
1.711 bisitz 5845: Parse and return the bubblesheet configuration line selected as a
1.423 albertel 5846: hash of configuration file fields.
5847:
5848: Arguments:
5849: which - the name of the configuration to parse from the file.
5850:
5851:
5852: Returns:
5853: If the named configuration is not in the file, an empty
5854: hash is returned.
5855: a hash with the fields
5856: name - internal name for the this configuration setup
5857: description - text to display to operator that describes this config
5858: CODElocation - if 0 or the string 'none'
5859: - no CODE exists for this config
5860: if -1 || the string 'letter'
5861: - a CODE exists for this config and is
5862: a string of letters
5863: Unsupported value (but planned for future support)
5864: if a positive integer
5865: - The CODE exists as the first n items from
5866: the question section of the form
5867: if the string 'number'
5868: - The CODE exists for this config and is
5869: a string of numbers
5870: CODEstart - (only matter if a CODE exists) column in the line where
5871: the CODE starts
5872: CODElength - length of the CODE
1.573 bisitz 5873: IDstart - column where the student/employee ID starts
1.556 weissno 5874: IDlength - length of the student/employee ID info
1.423 albertel 5875: Qstart - column where the information from the bubbled
5876: 'questions' start
5877: Qlength - number of columns comprising a single bubble line from
5878: the sheet. (usually either 1 or 10)
1.424 albertel 5879: Qon - either a single character representing the character used
1.423 albertel 5880: to signal a bubble was chosen in the positional setup, or
5881: the string 'letter' if the letter of the chosen bubble is
5882: in the final, or 'number' if a number representing the
5883: chosen bubble is in the file (1->A 0->J)
1.424 albertel 5884: Qoff - the character used to represent that a bubble was
5885: left blank
1.423 albertel 5886: PaperID - if the scanning process generates a unique number for each
5887: sheet scanned the column that this ID number starts in
5888: PaperIDlength - number of columns that comprise the unique ID number
5889: for the sheet of paper
1.424 albertel 5890: FirstName - column that the first name starts in
1.423 albertel 5891: FirstNameLength - number of columns that the first name spans
5892:
5893: LastName - column that the last name starts in
5894: LastNameLength - number of columns that the last name spans
1.649 raeburn 5895: BubblesPerRow - number of bubbles available in each row used to
5896: bubble an answer. (If not specified, 10 assumed).
1.671 raeburn 5897:
1.423 albertel 5898: =cut
1.422 foxr 5899:
1.82 albertel 5900: sub get_scantron_config {
5901: my ($which) = @_;
1.518 raeburn 5902: my @lines = &get_scantronformat_file();
1.82 albertel 5903: my %config;
1.157 albertel 5904: #FIXME probably should move to XML it has already gotten a bit much now
1.518 raeburn 5905: foreach my $line (@lines) {
1.82 albertel 5906: my ($name,$descrip)=split(/:/,$line);
5907: if ($name ne $which ) { next; }
5908: chomp($line);
5909: my @config=split(/:/,$line);
5910: $config{'name'}=$config[0];
5911: $config{'description'}=$config[1];
5912: $config{'CODElocation'}=$config[2];
5913: $config{'CODEstart'}=$config[3];
5914: $config{'CODElength'}=$config[4];
5915: $config{'IDstart'}=$config[5];
5916: $config{'IDlength'}=$config[6];
5917: $config{'Qstart'}=$config[7];
1.497 foxr 5918: $config{'Qlength'}=$config[8];
1.82 albertel 5919: $config{'Qoff'}=$config[9];
5920: $config{'Qon'}=$config[10];
1.157 albertel 5921: $config{'PaperID'}=$config[11];
5922: $config{'PaperIDlength'}=$config[12];
5923: $config{'FirstName'}=$config[13];
5924: $config{'FirstNamelength'}=$config[14];
5925: $config{'LastName'}=$config[15];
5926: $config{'LastNamelength'}=$config[16];
1.649 raeburn 5927: $config{'BubblesPerRow'}=$config[17];
1.82 albertel 5928: last;
5929: }
5930: return %config;
5931: }
5932:
1.423 albertel 5933: =pod
5934:
5935: =item username_to_idmap
5936:
1.556 weissno 5937: creates a hash keyed by student/employee ID with values of the corresponding
1.731 raeburn 5938: student username:domain. If a single ID occurs for more than one student,
5939: the status of the student is checked, and if Active, the value in the hash
5940: will be set to the Active student.
1.423 albertel 5941:
5942: Arguments:
5943:
5944: $classlist - reference to the class list hash. This is a hash
5945: keyed by student name:domain whose elements are references
1.424 albertel 5946: to arrays containing various chunks of information
1.423 albertel 5947: about the student. (See loncoursedata for more info).
5948:
5949: Returns
5950: %idmap - the constructed hash
5951:
5952: =cut
5953:
1.82 albertel 5954: sub username_to_idmap {
5955: my ($classlist)= @_;
5956: my %idmap;
5957: foreach my $student (keys(%$classlist)) {
1.731 raeburn 5958: my $id = $classlist->{$student}->[&Apache::loncoursedata::CL_ID];
5959: unless ($id eq '') {
5960: if (!exists($idmap{$id})) {
5961: $idmap{$id} = $student;
5962: } else {
5963: my $status = $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS];
5964: if ($status eq 'Active') {
5965: $idmap{$id} = $student;
5966: }
5967: }
5968: }
1.82 albertel 5969: }
5970: return %idmap;
5971: }
1.423 albertel 5972:
5973: =pod
5974:
1.424 albertel 5975: =item scantron_fixup_scanline
1.423 albertel 5976:
5977: Process a requested correction to a scanline.
5978:
5979: Arguments:
5980: $scantron_config - hash from &get_scantron_config()
5981: $scan_data - hash of correction information
5982: (see &scantron_getfile())
5983: $line - existing scanline
5984: $whichline - line number of the passed in scanline
5985: $field - type of change to process
5986: (either
1.573 bisitz 5987: 'ID' -> correct the student/employee ID
1.423 albertel 5988: 'CODE' -> correct the CODE
5989: 'answer' -> fixup the submitted answers)
5990:
5991: $args - hash of additional info,
5992: - 'ID'
5993: 'newid' -> studentID to use in replacement
1.424 albertel 5994: of existing one
1.423 albertel 5995: - 'CODE'
5996: 'CODE_ignore_dup' - set to true if duplicates
5997: should be ignored.
5998: 'CODE' - is new code or 'use_unfound'
1.424 albertel 5999: if the existing unfound code should
1.423 albertel 6000: be used as is
6001: - 'answer'
6002: 'response' - new answer or 'none' if blank
6003: 'question' - the bubble line to change
1.503 raeburn 6004: 'questionnum' - the question identifier,
6005: may include subquestion.
1.423 albertel 6006:
6007: Returns:
6008: $line - the modified scanline
6009:
6010: Side effects:
6011: $scan_data - may be updated
6012:
6013: =cut
6014:
1.82 albertel 6015:
1.157 albertel 6016: sub scantron_fixup_scanline {
6017: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
6018: if ($field eq 'ID') {
6019: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 6020: return ($line,1,'New value too large');
1.157 albertel 6021: }
6022: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
6023: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
6024: $args->{'newid'});
6025: }
6026: substr($line,$$scantron_config{'IDstart'}-1,
6027: $$scantron_config{'IDlength'})=$args->{'newid'};
6028: if ($args->{'newid'}=~/^\s*$/) {
6029: &scan_data($scan_data,"$whichline.user",
6030: $args->{'username'}.':'.$args->{'domain'});
6031: }
1.186 albertel 6032: } elsif ($field eq 'CODE') {
1.192 albertel 6033: if ($args->{'CODE_ignore_dup'}) {
6034: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
6035: }
6036: &scan_data($scan_data,"$whichline.useCODE",'1');
6037: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 6038: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
6039: return ($line,1,'New CODE value too large');
6040: }
6041: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
6042: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
6043: }
6044: substr($line,$$scantron_config{'CODEstart'}-1,
6045: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 6046: }
1.157 albertel 6047: } elsif ($field eq 'answer') {
1.497 foxr 6048: my $length=$scantron_config->{'Qlength'};
1.157 albertel 6049: my $off=$scantron_config->{'Qoff'};
6050: my $on=$scantron_config->{'Qon'};
1.497 foxr 6051: my $answer=${off}x$length;
6052: if ($args->{'response'} eq 'none') {
6053: &scan_data($scan_data,
1.503 raeburn 6054: "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497 foxr 6055: } else {
6056: if ($on eq 'letter') {
6057: my @alphabet=('A'..'Z');
6058: $answer=$alphabet[$args->{'response'}];
6059: } elsif ($on eq 'number') {
6060: $answer=$args->{'response'}+1;
6061: if ($answer == 10) { $answer = '0'; }
1.274 albertel 6062: } else {
1.497 foxr 6063: substr($answer,$args->{'response'},1)=$on;
1.274 albertel 6064: }
1.497 foxr 6065: &scan_data($scan_data,
1.503 raeburn 6066: "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157 albertel 6067: }
1.497 foxr 6068: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
6069: substr($line,$where-1,$length)=$answer;
1.157 albertel 6070: }
6071: return $line;
6072: }
1.423 albertel 6073:
6074: =pod
6075:
6076: =item scan_data
6077:
6078: Edit or look up an item in the scan_data hash.
6079:
6080: Arguments:
6081: $scan_data - The hash (see scantron_getfile)
6082: $key - shorthand of the key to edit (actual key is
1.424 albertel 6083: scantronfilename_key).
1.423 albertel 6084: $data - New value of the hash entry.
6085: $delete - If true, the entry is removed from the hash.
6086:
6087: Returns:
6088: The new value of the hash table field (undefined if deleted).
6089:
6090: =cut
6091:
6092:
1.157 albertel 6093: sub scan_data {
6094: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 6095: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 6096: if (defined($value)) {
6097: $scan_data->{$filename.'_'.$key} = $value;
6098: }
6099: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
6100: return $scan_data->{$filename.'_'.$key};
6101: }
1.423 albertel 6102:
1.495 albertel 6103: # ----- These first few routines are general use routines.----
6104:
6105: # Return the number of occurences of a pattern in a string.
6106:
6107: sub occurence_count {
6108: my ($string, $pattern) = @_;
6109:
6110: my @matches = ($string =~ /$pattern/g);
6111:
6112: return scalar(@matches);
6113: }
6114:
6115:
6116: # Take a string known to have digits and convert all the
6117: # digits into letters in the range J,A..I.
6118:
6119: sub digits_to_letters {
6120: my ($input) = @_;
6121:
6122: my @alphabet = ('J', 'A'..'I');
6123:
6124: my @input = split(//, $input);
6125: my $output ='';
6126: for (my $i = 0; $i < scalar(@input); $i++) {
6127: if ($input[$i] =~ /\d/) {
6128: $output .= $alphabet[$input[$i]];
6129: } else {
6130: $output .= $input[$i];
6131: }
6132: }
6133: return $output;
6134: }
6135:
1.423 albertel 6136: =pod
6137:
6138: =item scantron_parse_scanline
6139:
1.711 bisitz 6140: Decodes a scanline from the selected bubblesheet file
1.423 albertel 6141:
6142: Arguments:
1.711 bisitz 6143: line - The text of the bubblesheet file line to process
1.423 albertel 6144: whichline - Line number
1.711 bisitz 6145: scantron_config - Hash describing the format of the bubblesheet lines.
1.423 albertel 6146: scan_data - Hash of extra information about the scanline
6147: (see scantron_getfile for more information)
6148: just_header - True if should not process question answers but only
6149: the stuff to the left of the answers.
1.691 raeburn 6150: randomorder - True if randomorder in use
6151: randompick - True if randompick in use
6152: sequence - Exam folder URL
6153: master_seq - Ref to array containing symbs in exam folder
6154: symb_to_resource - Ref to hash of symbs for resources in exam folder
6155: (corresponding values are resource objects)
6156: partids_by_symb - Ref to hash of symb -> array ref of partIDs
6157: orderedforcode - Ref to hash of arrays. keys are CODEs and values
6158: are refs to an array of resource objects, ordered
6159: according to order used for CODE, when randomorder
6160: and or randompick are in use.
6161: respnumlookup - Ref to hash mapping question numbers in bubble lines
6162: for current line to question number used for same question
6163: in "Master Sequence" (as seen by Course Coordinator).
6164: startline - Ref to hash where key is question number (0 is first)
6165: and value is number of first bubble line for current
6166: student or code-based randompick and/or randomorder.
6167: totalref - Ref of scalar used to score total number of bubble
6168: lines needed for responses in a scan line (used when
6169: randompick in use.
6170:
1.423 albertel 6171: Returns:
6172: Hash containing the result of parsing the scanline
6173:
6174: Keys are all proceeded by the string 'scantron.'
6175:
6176: CODE - the CODE in use for this scanline
6177: useCODE - 1 if the CODE is invalid but it usage has been forced
6178: by the operator
6179: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
6180: CODEs were selected, but the usage has been
6181: forced by the operator
1.556 weissno 6182: ID - student/employee ID
1.423 albertel 6183: PaperID - if used, the ID number printed on the sheet when the
6184: paper was scanned
6185: FirstName - first name from the sheet
6186: LastName - last name from the sheet
6187:
6188: if just_header was not true these key may also exist
6189:
1.447 foxr 6190: missingerror - a list of bubble ranges that are considered to be answers
6191: to a single question that don't have any bubbles filled in.
6192: Of the form questionnumber:firstbubblenumber:count.
6193: doubleerror - a list of bubble ranges that are considered to be answers
6194: to a single question that have more than one bubble filled in.
6195: Of the form questionnumber::firstbubblenumber:count
6196:
6197: In the above, count is the number of bubble responses in the
6198: input line needed to represent the possible answers to the question.
6199: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
6200: per line would have count = 2.
6201:
1.423 albertel 6202: maxquest - the number of the last bubble line that was parsed
6203:
6204: (<number> starts at 1)
6205: <number>.answer - zero or more letters representing the selected
6206: letters from the scanline for the bubble line
6207: <number>.
6208: if blank there was either no bubble or there where
6209: multiple bubbles, (consult the keys missingerror and
6210: doubleerror if this is an error condition)
6211:
6212: =cut
6213:
1.82 albertel 6214: sub scantron_parse_scanline {
1.691 raeburn 6215: my ($line,$whichline,$scantron_config,$scan_data,$just_header,$idmap,
6216: $randomorder,$randompick,$sequence,$master_seq,$symb_to_resource,
6217: $partids_by_symb,$orderedforcode,$respnumlookup,$startline,$totalref)=@_;
1.470 foxr 6218:
1.82 albertel 6219: my %record;
1.691 raeburn 6220: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # stuff before answers
1.278 albertel 6221: if (!($$scantron_config{'CODElocation'} eq 0 ||
6222: $$scantron_config{'CODElocation'} eq 'none')) {
6223: if ($$scantron_config{'CODElocation'} < 0 ||
6224: $$scantron_config{'CODElocation'} eq 'letter' ||
6225: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 6226: $record{'scantron.CODE'}=substr($data,
6227: $$scantron_config{'CODEstart'}-1,
1.83 albertel 6228: $$scantron_config{'CODElength'});
1.191 albertel 6229: if (&scan_data($scan_data,"$whichline.useCODE")) {
6230: $record{'scantron.useCODE'}=1;
6231: }
1.192 albertel 6232: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
6233: $record{'scantron.CODE_ignore_dup'}=1;
6234: }
1.82 albertel 6235: } else {
6236: #FIXME interpret first N questions
6237: }
6238: }
1.83 albertel 6239: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
6240: $$scantron_config{'IDlength'});
1.157 albertel 6241: $record{'scantron.PaperID'}=
6242: substr($data,$$scantron_config{'PaperID'}-1,
6243: $$scantron_config{'PaperIDlength'});
6244: $record{'scantron.FirstName'}=
6245: substr($data,$$scantron_config{'FirstName'}-1,
6246: $$scantron_config{'FirstNamelength'});
6247: $record{'scantron.LastName'}=
6248: substr($data,$$scantron_config{'LastName'}-1,
6249: $$scantron_config{'LastNamelength'});
1.423 albertel 6250: if ($just_header) { return \%record; }
1.194 albertel 6251:
1.82 albertel 6252: my @alphabet=('A'..'Z');
6253: my $questnum=0;
1.447 foxr 6254: my $ansnum =1; # Multiple 'answer lines'/question.
6255:
1.691 raeburn 6256: my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
6257: if ($randompick || $randomorder) {
6258: my $total = &get_respnum_lookups($sequence,$scan_data,$idmap,$line,\%record,
6259: $master_seq,$symb_to_resource,
6260: $partids_by_symb,$orderedforcode,
6261: $respnumlookup,$startline);
6262: if ($total) {
6263: $lastpos = $total*$$scantron_config{'Qlength'};
6264: }
6265: if (ref($totalref)) {
6266: $$totalref = $total;
6267: }
6268: }
6269: my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos); # Answers
1.470 foxr 6270: chomp($questions); # Get rid of any trailing \n.
6271: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
6272: while (length($questions)) {
1.691 raeburn 6273: my $answers_needed;
6274: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6275: $answers_needed = $bubble_lines_per_response{$respnumlookup->{$questnum}};
6276: } else {
6277: $answers_needed = $bubble_lines_per_response{$questnum};
6278: }
1.503 raeburn 6279: my $answer_length = ($$scantron_config{'Qlength'} * $answers_needed)
6280: || 1;
6281: $questnum++;
6282: my $quest_id = $questnum;
6283: my $currentquest = substr($questions,0,$answer_length);
6284: $questions = substr($questions,$answer_length);
6285: if (length($currentquest) < $answer_length) { next; }
6286:
1.691 raeburn 6287: my $subdivided;
6288: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6289: $subdivided = $subdivided_bubble_lines{$respnumlookup->{$questnum-1}};
6290: } else {
6291: $subdivided = $subdivided_bubble_lines{$questnum-1};
6292: }
6293: if ($subdivided =~ /,/) {
1.503 raeburn 6294: my $subquestnum = 1;
6295: my $subquestions = $currentquest;
1.691 raeburn 6296: my @subanswers_needed = split(/,/,$subdivided);
1.503 raeburn 6297: foreach my $subans (@subanswers_needed) {
6298: my $subans_length =
6299: ($$scantron_config{'Qlength'} * $subans) || 1;
6300: my $currsubquest = substr($subquestions,0,$subans_length);
6301: $subquestions = substr($subquestions,$subans_length);
6302: $quest_id = "$questnum.$subquestnum";
6303: if (($$scantron_config{'Qon'} eq 'letter') ||
6304: ($$scantron_config{'Qon'} eq 'number')) {
6305: $ansnum = &scantron_validator_lettnum($ansnum,
6306: $questnum,$quest_id,$subans,$currsubquest,$whichline,
1.691 raeburn 6307: \@alphabet,\%record,$scantron_config,$scan_data,
6308: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6309: } else {
6310: $ansnum = &scantron_validator_positional($ansnum,
1.691 raeburn 6311: $questnum,$quest_id,$subans,$currsubquest,$whichline,
6312: \@alphabet,\%record,$scantron_config,$scan_data,
6313: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6314: }
6315: $subquestnum ++;
6316: }
6317: } else {
6318: if (($$scantron_config{'Qon'} eq 'letter') ||
6319: ($$scantron_config{'Qon'} eq 'number')) {
6320: $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
6321: $quest_id,$answers_needed,$currentquest,$whichline,
1.691 raeburn 6322: \@alphabet,\%record,$scantron_config,$scan_data,
6323: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6324: } else {
6325: $ansnum = &scantron_validator_positional($ansnum,$questnum,
6326: $quest_id,$answers_needed,$currentquest,$whichline,
1.691 raeburn 6327: \@alphabet,\%record,$scantron_config,$scan_data,
6328: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6329: }
6330: }
6331: }
6332: $record{'scantron.maxquest'}=$questnum;
6333: return \%record;
6334: }
1.447 foxr 6335:
1.691 raeburn 6336: sub get_master_seq {
6337: my ($resources,$master_seq,$symb_to_resource) = @_;
6338: return unless ((ref($resources) eq 'ARRAY') && (ref($master_seq) eq 'ARRAY') &&
6339: (ref($symb_to_resource) eq 'HASH'));
6340: my $resource_error;
6341: foreach my $resource (@{$resources}) {
6342: my $ressymb;
6343: if (ref($resource)) {
6344: $ressymb = $resource->symb();
6345: push(@{$master_seq},$ressymb);
6346: $symb_to_resource->{$ressymb} = $resource;
6347: } else {
6348: $resource_error = 1;
6349: last;
6350: }
6351: }
6352: return $resource_error;
6353: }
6354:
6355: sub get_respnum_lookups {
6356: my ($sequence,$scan_data,$idmap,$line,$record,$master_seq,$symb_to_resource,
6357: $partids_by_symb,$orderedforcode,$respnumlookup,$startline) = @_;
6358: return unless ((ref($record) eq 'HASH') && (ref($master_seq) eq 'ARRAY') &&
6359: (ref($symb_to_resource) eq 'HASH') && (ref($partids_by_symb) eq 'HASH') &&
6360: (ref($orderedforcode) eq 'HASH') && (ref($respnumlookup) eq 'HASH') &&
6361: (ref($startline) eq 'HASH'));
6362: my ($user,$scancode);
6363: if ((exists($record->{'scantron.CODE'})) &&
6364: (&Apache::lonnet::validCODE($record->{'scantron.CODE'}))) {
6365: $scancode = $record->{'scantron.CODE'};
6366: } else {
6367: $user = &scantron_find_student($record,$scan_data,$idmap,$line);
6368: }
6369: my @mapresources =
6370: &users_order($user,$scancode,$sequence,$master_seq,$symb_to_resource,
6371: $orderedforcode);
6372: my $total = 0;
6373: my $count = 0;
6374: foreach my $resource (@mapresources) {
6375: my $id = $resource->id();
6376: my $symb = $resource->symb();
6377: if (ref($partids_by_symb->{$symb}) eq 'ARRAY') {
6378: foreach my $partid (@{$partids_by_symb->{$symb}}) {
6379: my $respnum = $masterseq_id_responsenum{$id.'_'.$partid};
6380: if ($respnum ne '') {
6381: $respnumlookup->{$count} = $respnum;
6382: $startline->{$count} = $total;
6383: $total += $bubble_lines_per_response{$respnum};
6384: $count ++;
6385: }
6386: }
6387: }
6388: }
6389: return $total;
6390: }
6391:
1.503 raeburn 6392: sub scantron_validator_lettnum {
6393: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
1.691 raeburn 6394: $alphabet,$record,$scantron_config,$scan_data,$randomorder,
6395: $randompick,$respnumlookup) = @_;
1.503 raeburn 6396:
6397: # Qon 'letter' implies for each slot in currquest we have:
6398: # ? or * for doubles, a letter in A-Z for a bubble, and
6399: # about anything else (esp. a value of Qoff) for missing
6400: # bubbles.
6401: #
6402: # Qon 'number' implies each slot gives a digit that indexes the
6403: # bubbles filled, or Qoff, or a non-number for unbubbled lines,
6404: # and * or ? for double bubbles on a single line.
6405: #
1.447 foxr 6406:
1.503 raeburn 6407: my $matchon;
6408: if ($$scantron_config{'Qon'} eq 'letter') {
6409: $matchon = '[A-Z]';
6410: } elsif ($$scantron_config{'Qon'} eq 'number') {
6411: $matchon = '\d';
6412: }
6413: my $occurrences = 0;
1.691 raeburn 6414: my $responsenum = $questnum-1;
6415: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6416: $responsenum = $respnumlookup->{$questnum-1}
6417: }
6418: if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
6419: ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
6420: ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
6421: ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
6422: ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
6423: ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.503 raeburn 6424: my @singlelines = split('',$currquest);
6425: foreach my $entry (@singlelines) {
6426: $occurrences = &occurence_count($entry,$matchon);
6427: if ($occurrences > 1) {
6428: last;
6429: }
1.691 raeburn 6430: }
1.503 raeburn 6431: } else {
6432: $occurrences = &occurence_count($currquest,$matchon);
6433: }
6434: if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
6435: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6436: for (my $ans=0; $ans<$answers_needed; $ans++) {
6437: my $bubble = substr($currquest,$ans,1);
6438: if ($bubble =~ /$matchon/ ) {
6439: if ($$scantron_config{'Qon'} eq 'number') {
6440: if ($bubble == 0) {
6441: $bubble = 10;
6442: }
6443: $record->{"scantron.$ansnum.answer"} =
6444: $alphabet->[$bubble-1];
6445: } else {
6446: $record->{"scantron.$ansnum.answer"} = $bubble;
6447: }
6448: } else {
6449: $record->{"scantron.$ansnum.answer"}='';
6450: }
6451: $ansnum++;
6452: }
6453: } elsif (!defined($currquest)
6454: || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
6455: || (&occurence_count($currquest,$matchon) == 0)) {
6456: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6457: $record->{"scantron.$ansnum.answer"}='';
6458: $ansnum++;
6459: }
6460: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6461: push(@{$record->{'scantron.missingerror'}},$quest_id);
6462: }
6463: } else {
6464: if ($$scantron_config{'Qon'} eq 'number') {
6465: $currquest = &digits_to_letters($currquest);
6466: }
6467: for (my $ans=0; $ans<$answers_needed; $ans++) {
6468: my $bubble = substr($currquest,$ans,1);
6469: $record->{"scantron.$ansnum.answer"} = $bubble;
6470: $ansnum++;
6471: }
6472: }
6473: return $ansnum;
6474: }
1.447 foxr 6475:
1.503 raeburn 6476: sub scantron_validator_positional {
6477: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
1.691 raeburn 6478: $whichline,$alphabet,$record,$scantron_config,$scan_data,
6479: $randomorder,$randompick,$respnumlookup) = @_;
1.447 foxr 6480:
1.503 raeburn 6481: # Otherwise there's a positional notation;
6482: # each bubble line requires Qlength items, and there are filled in
6483: # bubbles for each case where there 'Qon' characters.
6484: #
1.447 foxr 6485:
1.503 raeburn 6486: my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447 foxr 6487:
1.503 raeburn 6488: # If the split only gives us one element.. the full length of the
6489: # answer string, no bubbles are filled in:
1.447 foxr 6490:
1.507 raeburn 6491: if ($answers_needed eq '') {
6492: return;
6493: }
6494:
1.503 raeburn 6495: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
6496: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6497: $record->{"scantron.$ansnum.answer"}='';
6498: $ansnum++;
6499: }
6500: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6501: push(@{$record->{"scantron.missingerror"}},$quest_id);
6502: }
6503: } elsif (scalar(@array) == 2) {
6504: my $location = length($array[0]);
6505: my $line_num = int($location / $$scantron_config{'Qlength'});
6506: my $bubble = $alphabet->[$location % $$scantron_config{'Qlength'}];
6507: for (my $ans=0; $ans<$answers_needed; $ans++) {
6508: if ($ans eq $line_num) {
6509: $record->{"scantron.$ansnum.answer"} = $bubble;
6510: } else {
6511: $record->{"scantron.$ansnum.answer"} = ' ';
6512: }
6513: $ansnum++;
6514: }
6515: } else {
6516: # If there's more than one instance of a bubble character
6517: # That's a double bubble; with positional notation we can
6518: # record all the bubbles filled in as well as the
6519: # fact this response consists of multiple bubbles.
6520: #
1.691 raeburn 6521: my $responsenum = $questnum-1;
6522: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6523: $responsenum = $respnumlookup->{$questnum-1}
6524: }
6525: if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
6526: ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
6527: ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
6528: ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
6529: ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
6530: ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.503 raeburn 6531: my $doubleerror = 0;
6532: while (($currquest >= $$scantron_config{'Qlength'}) &&
6533: (!$doubleerror)) {
6534: my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
6535: $currquest = substr($currquest,$$scantron_config{'Qlength'});
6536: my @currarray = split($$scantron_config{'Qon'},$currline,-1);
6537: if (length(@currarray) > 2) {
6538: $doubleerror = 1;
6539: }
6540: }
6541: if ($doubleerror) {
6542: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6543: }
6544: } else {
6545: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6546: }
6547: my $item = $ansnum;
6548: for (my $ans=0; $ans<$answers_needed; $ans++) {
6549: $record->{"scantron.$item.answer"} = '';
6550: $item ++;
6551: }
1.447 foxr 6552:
1.503 raeburn 6553: my @ans=@array;
6554: my $i=0;
6555: my $increment = 0;
6556: while ($#ans) {
6557: $i+=length($ans[0]) + $increment;
6558: my $line = int($i/$$scantron_config{'Qlength'} + $ansnum);
6559: my $bubble = $i%$$scantron_config{'Qlength'};
6560: $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
6561: shift(@ans);
6562: $increment = 1;
6563: }
6564: $ansnum += $answers_needed;
1.82 albertel 6565: }
1.503 raeburn 6566: return $ansnum;
1.82 albertel 6567: }
6568:
1.423 albertel 6569: =pod
6570:
6571: =item scantron_add_delay
6572:
6573: Adds an error message that occurred during the grading phase to a
6574: queue of messages to be shown after grading pass is complete
6575:
6576: Arguments:
1.424 albertel 6577: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 6578: $scanline - the scanline that caused the error
6579: $errormesage - the error message
6580: $errorcode - a numeric code for the error
6581:
6582: Side Effects:
1.424 albertel 6583: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 6584:
6585: =cut
6586:
1.82 albertel 6587: sub scantron_add_delay {
1.140 albertel 6588: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
6589: push(@$delayqueue,
6590: {'line' => $scanline, 'emsg' => $errormessage,
6591: 'ecode' => $errorcode }
6592: );
1.82 albertel 6593: }
6594:
1.423 albertel 6595: =pod
6596:
6597: =item scantron_find_student
6598:
1.424 albertel 6599: Finds the username for the current scanline
6600:
6601: Arguments:
6602: $scantron_record - hash result from scantron_parse_scanline
6603: $scan_data - hash of correction information
6604: (see &scantron_getfile() form more information)
6605: $idmap - hash from &username_to_idmap()
6606: $line - number of current scanline
6607:
6608: Returns:
6609: Either 'username:domain' or undef if unknown
6610:
1.423 albertel 6611: =cut
6612:
1.82 albertel 6613: sub scantron_find_student {
1.157 albertel 6614: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 6615: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 6616: if ($scanID =~ /^\s*$/) {
6617: return &scan_data($scan_data,"$line.user");
6618: }
1.83 albertel 6619: foreach my $id (keys(%$idmap)) {
1.157 albertel 6620: if (lc($id) eq lc($scanID)) {
6621: return $$idmap{$id};
6622: }
1.83 albertel 6623: }
6624: return undef;
6625: }
6626:
1.423 albertel 6627: =pod
6628:
6629: =item scantron_filter
6630:
1.424 albertel 6631: Filter sub for lonnavmaps, filters out hidden resources if ignore
6632: hidden resources was selected
6633:
1.423 albertel 6634: =cut
6635:
1.83 albertel 6636: sub scantron_filter {
6637: my ($curres)=@_;
1.331 albertel 6638:
6639: if (ref($curres) && $curres->is_problem()) {
6640: # if the user has asked to not have either hidden
6641: # or 'randomout' controlled resources to be graded
6642: # don't include them
6643: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6644: && $curres->randomout) {
6645: return 0;
6646: }
1.83 albertel 6647: return 1;
6648: }
6649: return 0;
1.82 albertel 6650: }
6651:
1.423 albertel 6652: =pod
6653:
6654: =item scantron_process_corrections
6655:
1.424 albertel 6656: Gets correction information out of submitted form data and corrects
6657: the scanline
6658:
1.423 albertel 6659: =cut
6660:
1.157 albertel 6661: sub scantron_process_corrections {
6662: my ($r) = @_;
1.257 albertel 6663: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6664: my ($scanlines,$scan_data)=&scantron_getfile();
6665: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 6666: my $which=$env{'form.scantron_line'};
1.200 albertel 6667: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 6668: my ($skip,$err,$errmsg);
1.257 albertel 6669: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 6670: $skip=1;
1.257 albertel 6671: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
6672: my $newstudent=$env{'form.scantron_username'}.':'.
6673: $env{'form.scantron_domain'};
1.157 albertel 6674: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
6675: ($line,$err,$errmsg)=
6676: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
6677: 'ID',{'newid'=>$newid,
1.257 albertel 6678: 'username'=>$env{'form.scantron_username'},
6679: 'domain'=>$env{'form.scantron_domain'}});
6680: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
6681: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 6682: my $newCODE;
1.192 albertel 6683: my %args;
1.190 albertel 6684: if ($resolution eq 'use_unfound') {
1.191 albertel 6685: $newCODE='use_unfound';
1.190 albertel 6686: } elsif ($resolution eq 'use_found') {
1.257 albertel 6687: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 6688: } elsif ($resolution eq 'use_typed') {
1.257 albertel 6689: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 6690: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 6691: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 6692: }
1.257 albertel 6693: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 6694: $args{'CODE_ignore_dup'}=1;
6695: }
6696: $args{'CODE'}=$newCODE;
1.186 albertel 6697: ($line,$err,$errmsg)=
6698: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 6699: 'CODE',\%args);
1.257 albertel 6700: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
6701: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 6702: ($line,$err,$errmsg)=
6703: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
6704: $which,'answer',
6705: { 'question'=>$question,
1.503 raeburn 6706: 'response'=>$env{"form.scantron_correct_Q_$question"},
6707: 'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157 albertel 6708: if ($err) { last; }
6709: }
6710: }
6711: if ($err) {
1.703 bisitz 6712: $r->print(
6713: '<p class="LC_error">'
6714: .&mt('Unable to accept last correction, an error occurred: [_1]',
6715: $errmsg)
1.704 raeburn 6716: .'</p>');
1.157 albertel 6717: } else {
1.200 albertel 6718: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 6719: &scantron_putfile($scanlines,$scan_data);
6720: }
6721: }
6722:
1.423 albertel 6723: =pod
6724:
6725: =item reset_skipping_status
6726:
1.424 albertel 6727: Forgets the current set of remember skipped scanlines (and thus
6728: reverts back to considering all lines in the
6729: scantron_skipped_<filename> file)
6730:
1.423 albertel 6731: =cut
6732:
1.200 albertel 6733: sub reset_skipping_status {
6734: my ($scanlines,$scan_data)=&scantron_getfile();
6735: &scan_data($scan_data,'remember_skipping',undef,1);
6736: &scantron_putfile(undef,$scan_data);
6737: }
6738:
1.423 albertel 6739: =pod
6740:
6741: =item start_skipping
6742:
1.424 albertel 6743: Marks a scanline to be skipped.
6744:
1.423 albertel 6745: =cut
6746:
1.376 albertel 6747: sub start_skipping {
1.200 albertel 6748: my ($scan_data,$i)=@_;
6749: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6750: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
6751: $remembered{$i}=2;
6752: } else {
6753: $remembered{$i}=1;
6754: }
1.200 albertel 6755: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
6756: }
6757:
1.423 albertel 6758: =pod
6759:
6760: =item should_be_skipped
6761:
1.424 albertel 6762: Checks whether a scanline should be skipped.
6763:
1.423 albertel 6764: =cut
6765:
1.200 albertel 6766: sub should_be_skipped {
1.376 albertel 6767: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 6768: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 6769: # not redoing old skips
1.376 albertel 6770: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 6771: return 0;
6772: }
6773: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6774:
6775: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
6776: return 0;
6777: }
1.200 albertel 6778: return 1;
6779: }
6780:
1.423 albertel 6781: =pod
6782:
6783: =item remember_current_skipped
6784:
1.424 albertel 6785: Discovers what scanlines are in the scantron_skipped_<filename>
6786: file and remembers them into scan_data for later use.
6787:
1.423 albertel 6788: =cut
6789:
1.200 albertel 6790: sub remember_current_skipped {
6791: my ($scanlines,$scan_data)=&scantron_getfile();
6792: my %to_remember;
6793: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6794: if ($scanlines->{'skipped'}[$i]) {
6795: $to_remember{$i}=1;
6796: }
6797: }
1.376 albertel 6798:
1.200 albertel 6799: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
6800: &scantron_putfile(undef,$scan_data);
6801: }
6802:
1.423 albertel 6803: =pod
6804:
6805: =item check_for_error
6806:
1.424 albertel 6807: Checks if there was an error when attempting to remove a specific
1.659 raeburn 6808: scantron_.. bubblesheet data file. Prints out an error if
1.424 albertel 6809: something went wrong.
6810:
1.423 albertel 6811: =cut
6812:
1.200 albertel 6813: sub check_for_error {
6814: my ($r,$result)=@_;
6815: if ($result ne 'ok' && $result ne 'not_found' ) {
1.492 albertel 6816: $r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200 albertel 6817: }
6818: }
1.157 albertel 6819:
1.423 albertel 6820: =pod
6821:
6822: =item scantron_warning_screen
6823:
1.424 albertel 6824: Interstitial screen to make sure the operator has selected the
6825: correct options before we start the validation phase.
6826:
1.423 albertel 6827: =cut
6828:
1.203 albertel 6829: sub scantron_warning_screen {
1.650 raeburn 6830: my ($button_text,$symb)=@_;
1.257 albertel 6831: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 6832: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 6833: my $CODElist;
1.284 albertel 6834: if ($scantron_config{'CODElocation'} &&
6835: $scantron_config{'CODEstart'} &&
6836: $scantron_config{'CODElength'}) {
6837: $CODElist=$env{'form.scantron_CODElist'};
1.721 bisitz 6838: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">'.&mt('None').'</span>'; }
1.284 albertel 6839: $CODElist=
1.492 albertel 6840: '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373 albertel 6841: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 6842: }
1.663 raeburn 6843: my $lastbubblepoints;
6844: if ($env{'form.scantron_lastbubblepoints'} ne '') {
6845: $lastbubblepoints =
6846: '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
6847: $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
6848: }
1.492 albertel 6849: return ('
1.203 albertel 6850: <p>
1.492 albertel 6851: <span class="LC_warning">
1.705 raeburn 6852: '.&mt("Please double check the information below before clicking on '[_1]'",&mt($button_text)).'</span>
1.203 albertel 6853: </p>
6854: <table>
1.492 albertel 6855: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
6856: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
1.663 raeburn 6857: '.$CODElist.$lastbubblepoints.'
1.203 albertel 6858: </table>
1.680 raeburn 6859: <p> '.&mt("If this information is correct, please click on '[_1]'.",&mt($button_text)).'<br />
1.650 raeburn 6860: '.&mt('If something is incorrect, please return to [_1]Grade/Manage/Review Bubblesheets[_2] to start over.','<a href="/adm/grades?symb='.$symb.'&command=scantron_selectphase" class="LC_info">','</a>').'</p>
1.203 albertel 6861:
6862: <br />
1.492 albertel 6863: ');
1.203 albertel 6864: }
6865:
1.423 albertel 6866: =pod
6867:
6868: =item scantron_do_warning
6869:
1.424 albertel 6870: Check if the operator has picked something for all required
6871: fields. Error out if something is missing.
6872:
1.423 albertel 6873: =cut
6874:
1.203 albertel 6875: sub scantron_do_warning {
1.608 www 6876: my ($r,$symb)=@_;
1.203 albertel 6877: if (!$symb) {return '';}
1.324 albertel 6878: my $default_form_data=&defaultFormData($symb);
1.203 albertel 6879: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 6880: if ( $env{'form.selectpage'} eq '' ||
6881: $env{'form.scantron_selectfile'} eq '' ||
6882: $env{'form.scantron_format'} eq '' ) {
1.642 raeburn 6883: $r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
1.257 albertel 6884: if ( $env{'form.selectpage'} eq '') {
1.492 albertel 6885: $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237 albertel 6886: }
1.257 albertel 6887: if ( $env{'form.scantron_selectfile'} eq '') {
1.642 raeburn 6888: $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 6889: }
1.257 albertel 6890: if ( $env{'form.scantron_format'} eq '') {
1.642 raeburn 6891: $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 6892: }
6893: } else {
1.650 raeburn 6894: my $warning=&scantron_warning_screen('Grading: Validate Records',$symb);
1.663 raeburn 6895: my $bubbledbyhand=&hand_bubble_option();
1.492 albertel 6896: $r->print('
1.663 raeburn 6897: '.$warning.$bubbledbyhand.'
1.492 albertel 6898: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203 albertel 6899: <input type="hidden" name="command" value="scantron_validate" />
1.492 albertel 6900: ');
1.237 albertel 6901: }
1.614 www 6902: $r->print("</form><br />");
1.203 albertel 6903: return '';
6904: }
6905:
1.423 albertel 6906: =pod
6907:
6908: =item scantron_form_start
6909:
1.424 albertel 6910: html hidden input for remembering all selected grading options
6911:
1.423 albertel 6912: =cut
6913:
1.203 albertel 6914: sub scantron_form_start {
6915: my ($max_bubble)=@_;
6916: my $result= <<SCANTRONFORM;
6917: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 6918: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
6919: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
6920: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 6921: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 6922: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
6923: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
6924: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
6925: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 6926: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 6927: SCANTRONFORM
1.447 foxr 6928:
6929: my $line = 0;
6930: while (defined($env{"form.scantron.bubblelines.$line"})) {
6931: my $chunk =
6932: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 6933: $chunk .=
6934: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503 raeburn 6935: $chunk .=
6936: '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504 raeburn 6937: $chunk .=
6938: '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.691 raeburn 6939: $chunk .=
6940: '<input type="hidden" name="scantron.residpart.'.$line.'" value="'.$env{"form.scantron.residpart.$line"}.'" />'."\n";
1.447 foxr 6941: $result .= $chunk;
6942: $line++;
1.691 raeburn 6943: }
1.203 albertel 6944: return $result;
6945: }
6946:
1.423 albertel 6947: =pod
6948:
6949: =item scantron_validate_file
6950:
1.659 raeburn 6951: Dispatch routine for doing validation of a bubblesheet data file.
1.424 albertel 6952:
6953: Also processes any necessary information resets that need to
6954: occur before validation begins (ignore previous corrections,
6955: restarting the skipped records processing)
6956:
1.423 albertel 6957: =cut
6958:
1.157 albertel 6959: sub scantron_validate_file {
1.608 www 6960: my ($r,$symb) = @_;
1.157 albertel 6961: if (!$symb) {return '';}
1.324 albertel 6962: my $default_form_data=&defaultFormData($symb);
1.200 albertel 6963:
1.703 bisitz 6964: # do the detection of only doing skipped records first before we delete
1.424 albertel 6965: # them when doing the corrections reset
1.257 albertel 6966: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 6967: &reset_skipping_status();
6968: }
1.257 albertel 6969: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 6970: &remember_current_skipped();
1.257 albertel 6971: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 6972: }
6973:
1.257 albertel 6974: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 6975: &check_for_error($r,&scantron_remove_file('corrected'));
6976: &check_for_error($r,&scantron_remove_file('skipped'));
6977: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 6978: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 6979: }
1.200 albertel 6980:
1.257 albertel 6981: if ($env{'form.scantron_corrections'}) {
1.157 albertel 6982: &scantron_process_corrections($r);
6983: }
1.503 raeburn 6984: $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157 albertel 6985: #get the student pick code ready
6986: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.582 raeburn 6987: my $nav_error;
1.649 raeburn 6988: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
6989: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 6990: if ($nav_error) {
6991: $r->print(&navmap_errormsg());
6992: return '';
6993: }
1.203 albertel 6994: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.663 raeburn 6995: if ($env{'form.scantron_lastbubblepoints'} ne '') {
6996: $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
6997: }
1.157 albertel 6998: $r->print($result);
6999:
1.334 albertel 7000: my @validate_phases=( 'sequence',
7001: 'ID',
1.157 albertel 7002: 'CODE',
7003: 'doublebubble',
7004: 'missingbubbles');
1.257 albertel 7005: if (!$env{'form.validatepass'}) {
7006: $env{'form.validatepass'} = 0;
1.157 albertel 7007: }
1.257 albertel 7008: my $currentphase=$env{'form.validatepass'};
1.157 albertel 7009:
1.448 foxr 7010:
1.157 albertel 7011: my $stop=0;
7012: while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503 raeburn 7013: $r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157 albertel 7014: $r->rflush();
1.691 raeburn 7015:
1.157 albertel 7016: my $which="scantron_validate_".$validate_phases[$currentphase];
7017: {
7018: no strict 'refs';
7019: ($stop,$currentphase)=&$which($r,$currentphase);
7020: }
7021: }
7022: if (!$stop) {
1.650 raeburn 7023: my $warning=&scantron_warning_screen('Start Grading',$symb);
1.542 raeburn 7024: $r->print(&mt('Validation process complete.').'<br />'.
7025: $warning.
7026: &mt('Perform verification for each student after storage of submissions?').
7027: ' <span class="LC_nobreak"><label>'.
7028: '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
7029: (' 'x3).'<label>'.
7030: '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
7031: '</label></span><br />'.
7032: &mt('Grading will take longer if you use verification.').'<br />'.
1.650 raeburn 7033: &mt('Otherwise, Grade/Manage/Review Bubblesheets [_1] Review bubblesheet data can be used once grading is complete.','»').'<br /><br />'.
1.542 raeburn 7034: '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
7035: '<input type="hidden" name="command" value="scantron_process" />'."\n");
1.157 albertel 7036: } else {
7037: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
7038: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
7039: }
7040: if ($stop) {
1.334 albertel 7041: if ($validate_phases[$currentphase] eq 'sequence') {
1.539 riegler 7042: $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' → " />');
1.492 albertel 7043: $r->print(' '.&mt('this error').' <br />');
1.334 albertel 7044:
1.650 raeburn 7045: $r->print('<p>'.&mt('Or return to [_1]Grade/Manage/Review Bubblesheets[_2] to start over.','<a href="/adm/grades?symb='.$symb.'&command=scantron_selectphase" class="LC_info">','</a>').'</p>');
1.334 albertel 7046: } else {
1.503 raeburn 7047: if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
1.539 riegler 7048: $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' →" onclick="javascript:verify_bubble_radio(this.form)" />');
1.503 raeburn 7049: } else {
1.539 riegler 7050: $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' →" />');
1.503 raeburn 7051: }
1.492 albertel 7052: $r->print(' '.&mt('using corrected info').' <br />');
7053: $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
7054: $r->print(" ".&mt("this scanline saving it for later."));
1.334 albertel 7055: }
1.157 albertel 7056: }
1.614 www 7057: $r->print(" </form><br />");
1.157 albertel 7058: return '';
7059: }
7060:
1.423 albertel 7061:
7062: =pod
7063:
7064: =item scantron_remove_file
7065:
1.659 raeburn 7066: Removes the requested bubblesheet data file, makes sure that
1.424 albertel 7067: scantron_original_<filename> is never removed
7068:
7069:
1.423 albertel 7070: =cut
7071:
1.200 albertel 7072: sub scantron_remove_file {
1.192 albertel 7073: my ($which)=@_;
1.257 albertel 7074: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7075: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 7076: my $file='scantron_';
1.200 albertel 7077: if ($which eq 'corrected' || $which eq 'skipped') {
7078: $file.=$which.'_';
1.192 albertel 7079: } else {
7080: return 'refused';
7081: }
1.257 albertel 7082: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 7083: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
7084: }
7085:
1.423 albertel 7086:
7087: =pod
7088:
7089: =item scantron_remove_scan_data
7090:
1.659 raeburn 7091: Removes all scan_data correction for the requested bubblesheet
1.424 albertel 7092: data file. (In the case that both the are doing skipped records we need
7093: to remember the old skipped lines for the time being so that element
7094: persists for a while.)
7095:
1.423 albertel 7096: =cut
7097:
1.200 albertel 7098: sub scantron_remove_scan_data {
1.257 albertel 7099: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7100: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 7101: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
7102: my @todelete;
1.257 albertel 7103: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 7104: foreach my $key (@keys) {
7105: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 7106: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 7107: $key=~/remember_skipping/) {
7108: next;
7109: }
1.192 albertel 7110: push(@todelete,$key);
7111: }
7112: }
1.200 albertel 7113: my $result;
1.192 albertel 7114: if (@todelete) {
1.491 albertel 7115: $result = &Apache::lonnet::del('nohist_scantrondata',
7116: \@todelete,$cdom,$cname);
7117: } else {
7118: $result = 'ok';
1.192 albertel 7119: }
7120: return $result;
7121: }
7122:
1.423 albertel 7123:
7124: =pod
7125:
7126: =item scantron_getfile
7127:
1.659 raeburn 7128: Fetches the requested bubblesheet data file (all 3 versions), and
1.424 albertel 7129: the scan_data hash
7130:
7131: Arguments:
7132: None
7133:
7134: Returns:
7135: 2 hash references
7136:
7137: - first one has
7138: orig -
7139: corrected -
7140: skipped - each of which points to an array ref of the specified
7141: file broken up into individual lines
7142: count - number of scanlines
7143:
7144: - second is the scan_data hash possible keys are
1.425 albertel 7145: ($number refers to scanline numbered $number and thus the key affects
7146: only that scanline
7147: $bubline refers to the specific bubble line element and the aspects
7148: refers to that specific bubble line element)
7149:
7150: $number.user - username:domain to use
7151: $number.CODE_ignore_dup
7152: - ignore the duplicate CODE error
7153: $number.useCODE
7154: - use the CODE in the scanline as is
7155: $number.no_bubble.$bubline
7156: - it is valid that there is no bubbled in bubble
7157: at $number $bubline
7158: remember_skipping
7159: - a frozen hash containing keys of $number and values
7160: of either
7161: 1 - we are on a 'do skipped records pass' and plan
7162: on processing this line
7163: 2 - we are on a 'do skipped records pass' and this
7164: scanline has been marked to skip yet again
1.424 albertel 7165:
1.423 albertel 7166: =cut
7167:
1.157 albertel 7168: sub scantron_getfile {
1.200 albertel 7169: #FIXME really would prefer a scantron directory
1.257 albertel 7170: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7171: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 7172: my $lines;
7173: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7174: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 7175: my %scanlines;
7176: $scanlines{'orig'}=[(split("\n",$lines,-1))];
7177: my $temp=$scanlines{'orig'};
7178: $scanlines{'count'}=$#$temp;
7179:
7180: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7181: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 7182: if ($lines eq '-1') {
7183: $scanlines{'corrected'}=[];
7184: } else {
7185: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
7186: }
7187: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7188: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 7189: if ($lines eq '-1') {
7190: $scanlines{'skipped'}=[];
7191: } else {
7192: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
7193: }
1.175 albertel 7194: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 7195: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
7196: my %scan_data = @tmp;
7197: return (\%scanlines,\%scan_data);
7198: }
7199:
1.423 albertel 7200: =pod
7201:
7202: =item lonnet_putfile
7203:
1.424 albertel 7204: Wrapper routine to call &Apache::lonnet::finishuserfileupload
7205:
7206: Arguments:
7207: $contents - data to store
7208: $filename - filename to store $contents into
7209:
7210: Returns:
7211: result value from &Apache::lonnet::finishuserfileupload
7212:
1.423 albertel 7213: =cut
7214:
1.157 albertel 7215: sub lonnet_putfile {
7216: my ($contents,$filename)=@_;
1.257 albertel 7217: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
7218: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7219: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 7220: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 7221:
7222: }
7223:
1.423 albertel 7224: =pod
7225:
7226: =item scantron_putfile
7227:
1.659 raeburn 7228: Stores the current version of the bubblesheet data files, and the
1.424 albertel 7229: scan_data hash. (Does not modify the original version only the
7230: corrected and skipped versions.
7231:
7232: Arguments:
7233: $scanlines - hash ref that looks like the first return value from
7234: &scantron_getfile()
7235: $scan_data - hash ref that looks like the second return value from
7236: &scantron_getfile()
7237:
1.423 albertel 7238: =cut
7239:
1.157 albertel 7240: sub scantron_putfile {
7241: my ($scanlines,$scan_data) = @_;
1.200 albertel 7242: #FIXME really would prefer a scantron directory
1.257 albertel 7243: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7244: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 7245: if ($scanlines) {
7246: my $prefix='scantron_';
1.157 albertel 7247: # no need to update orig, shouldn't change
7248: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 7249: # $env{'form.scantron_selectfile'});
1.200 albertel 7250: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
7251: $prefix.'corrected_'.
1.257 albertel 7252: $env{'form.scantron_selectfile'});
1.200 albertel 7253: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
7254: $prefix.'skipped_'.
1.257 albertel 7255: $env{'form.scantron_selectfile'});
1.200 albertel 7256: }
1.175 albertel 7257: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 7258: }
7259:
1.423 albertel 7260: =pod
7261:
7262: =item scantron_get_line
7263:
1.424 albertel 7264: Returns the correct version of the scanline
7265:
7266: Arguments:
7267: $scanlines - hash ref that looks like the first return value from
7268: &scantron_getfile()
7269: $scan_data - hash ref that looks like the second return value from
7270: &scantron_getfile()
7271: $i - number of the requested line (starts at 0)
7272:
7273: Returns:
7274: A scanline, (either the original or the corrected one if it
7275: exists), or undef if the requested scanline should be
7276: skipped. (Either because it's an skipped scanline, or it's an
7277: unskipped scanline and we are not doing a 'do skipped scanlines'
7278: pass.
7279:
1.423 albertel 7280: =cut
7281:
1.157 albertel 7282: sub scantron_get_line {
1.200 albertel 7283: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 7284: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
7285: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 7286: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
7287: return $scanlines->{'orig'}[$i];
7288: }
7289:
1.423 albertel 7290: =pod
7291:
7292: =item scantron_todo_count
7293:
1.424 albertel 7294: Counts the number of scanlines that need processing.
7295:
7296: Arguments:
7297: $scanlines - hash ref that looks like the first return value from
7298: &scantron_getfile()
7299: $scan_data - hash ref that looks like the second return value from
7300: &scantron_getfile()
7301:
7302: Returns:
7303: $count - number of scanlines to process
7304:
1.423 albertel 7305: =cut
7306:
1.200 albertel 7307: sub get_todo_count {
7308: my ($scanlines,$scan_data)=@_;
7309: my $count=0;
7310: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
7311: my $line=&scantron_get_line($scanlines,$scan_data,$i);
7312: if ($line=~/^[\s\cz]*$/) { next; }
7313: $count++;
7314: }
7315: return $count;
7316: }
7317:
1.423 albertel 7318: =pod
7319:
7320: =item scantron_put_line
7321:
1.659 raeburn 7322: Updates the 'corrected' or 'skipped' versions of the bubblesheet
1.424 albertel 7323: data file.
7324:
7325: Arguments:
7326: $scanlines - hash ref that looks like the first return value from
7327: &scantron_getfile()
7328: $scan_data - hash ref that looks like the second return value from
7329: &scantron_getfile()
7330: $i - line number to update
7331: $newline - contents of the updated scanline
7332: $skip - if true make the line for skipping and update the
7333: 'skipped' file
7334:
1.423 albertel 7335: =cut
7336:
1.157 albertel 7337: sub scantron_put_line {
1.200 albertel 7338: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 7339: if ($skip) {
7340: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 7341: &start_skipping($scan_data,$i);
1.157 albertel 7342: return;
7343: }
7344: $scanlines->{'corrected'}[$i]=$newline;
7345: }
7346:
1.423 albertel 7347: =pod
7348:
7349: =item scantron_clear_skip
7350:
1.424 albertel 7351: Remove a line from the 'skipped' file
7352:
7353: Arguments:
7354: $scanlines - hash ref that looks like the first return value from
7355: &scantron_getfile()
7356: $scan_data - hash ref that looks like the second return value from
7357: &scantron_getfile()
7358: $i - line number to update
7359:
1.423 albertel 7360: =cut
7361:
1.376 albertel 7362: sub scantron_clear_skip {
7363: my ($scanlines,$scan_data,$i)=@_;
7364: if (exists($scanlines->{'skipped'}[$i])) {
7365: undef($scanlines->{'skipped'}[$i]);
7366: return 1;
7367: }
7368: return 0;
7369: }
7370:
1.423 albertel 7371: =pod
7372:
7373: =item scantron_filter_not_exam
7374:
1.424 albertel 7375: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
7376: filter out resources that are not marked as 'exam' mode
7377:
1.423 albertel 7378: =cut
7379:
1.334 albertel 7380: sub scantron_filter_not_exam {
7381: my ($curres)=@_;
7382:
7383: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
7384: # if the user has asked to not have either hidden
7385: # or 'randomout' controlled resources to be graded
7386: # don't include them
7387: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
7388: && $curres->randomout) {
7389: return 0;
7390: }
7391: return 1;
7392: }
7393: return 0;
7394: }
7395:
1.423 albertel 7396: =pod
7397:
7398: =item scantron_validate_sequence
7399:
1.424 albertel 7400: Validates the selected sequence, checking for resource that are
7401: not set to exam mode.
7402:
1.423 albertel 7403: =cut
7404:
1.334 albertel 7405: sub scantron_validate_sequence {
7406: my ($r,$currentphase) = @_;
7407:
7408: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7409: unless (ref($navmap)) {
7410: $r->print(&navmap_errormsg());
7411: return (1,$currentphase);
7412: }
1.334 albertel 7413: my (undef,undef,$sequence)=
7414: &Apache::lonnet::decode_symb($env{'form.selectpage'});
7415:
7416: my $map=$navmap->getResourceByUrl($sequence);
7417:
7418: $r->print('<input type="hidden" name="validate_sequence_exam"
7419: value="ignore" />');
7420: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
7421: my @resources=
7422: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
7423: if (@resources) {
1.675 bisitz 7424: $r->print(
7425: '<p class="LC_warning">'
7426: .&mt('Some resources in the sequence currently are not set to'
1.684 bisitz 7427: .' bubblesheet exam mode. Grading these resources currently may not'
1.675 bisitz 7428: .' work correctly.')
7429: .'</p>'
7430: );
1.334 albertel 7431: return (1,$currentphase);
7432: }
7433: }
7434:
7435: return (0,$currentphase+1);
7436: }
7437:
1.423 albertel 7438:
7439:
1.157 albertel 7440: sub scantron_validate_ID {
7441: my ($r,$currentphase) = @_;
7442:
7443: #get student info
7444: my $classlist=&Apache::loncoursedata::get_classlist();
7445: my %idmap=&username_to_idmap($classlist);
7446:
7447: #get scantron line setup
1.257 albertel 7448: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7449: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7450:
7451: my $nav_error;
1.649 raeburn 7452: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
1.582 raeburn 7453: if ($nav_error) {
7454: $r->print(&navmap_errormsg());
7455: return(1,$currentphase);
7456: }
1.157 albertel 7457:
7458: my %found=('ids'=>{},'usernames'=>{});
7459: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7460: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7461: if ($line=~/^[\s\cz]*$/) { next; }
7462: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7463: $scan_data);
7464: my $id=$$scan_record{'scantron.ID'};
7465: my $found;
7466: foreach my $checkid (keys(%idmap)) {
7467: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
7468: }
7469: if ($found) {
7470: my $username=$idmap{$found};
7471: if ($found{'ids'}{$found}) {
7472: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7473: $line,'duplicateID',$found);
1.194 albertel 7474: return(1,$currentphase);
1.157 albertel 7475: } elsif ($found{'usernames'}{$username}) {
7476: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7477: $line,'duplicateID',$username);
1.194 albertel 7478: return(1,$currentphase);
1.157 albertel 7479: }
1.186 albertel 7480: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 7481: $found{'ids'}{$found}++;
7482: $found{'usernames'}{$username}++;
7483: } else {
7484: if ($id =~ /^\s*$/) {
1.158 albertel 7485: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 7486: if (defined($username) && $found{'usernames'}{$username}) {
7487: &scantron_get_correction($r,$i,$scan_record,
7488: \%scantron_config,
7489: $line,'duplicateID',$username);
1.194 albertel 7490: return(1,$currentphase);
1.157 albertel 7491: } elsif (!defined($username)) {
7492: &scantron_get_correction($r,$i,$scan_record,
7493: \%scantron_config,
7494: $line,'incorrectID');
1.194 albertel 7495: return(1,$currentphase);
1.157 albertel 7496: }
7497: $found{'usernames'}{$username}++;
7498: } else {
7499: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7500: $line,'incorrectID');
1.194 albertel 7501: return(1,$currentphase);
1.157 albertel 7502: }
7503: }
7504: }
7505:
7506: return (0,$currentphase+1);
7507: }
7508:
1.423 albertel 7509:
1.157 albertel 7510: sub scantron_get_correction {
1.691 raeburn 7511: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg,
7512: $randomorder,$randompick,$respnumlookup,$startline)=@_;
1.454 banghart 7513: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 7514: #to show both the current line and the previous one and allow skipping
7515: #the previous one or the current one
7516:
1.333 albertel 7517: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.658 bisitz 7518: $r->print(
7519: '<p class="LC_warning">'
7520: .&mt('An error was detected ([_1]) for PaperID [_2]',
7521: "<b>$error</b>",
7522: '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
7523: ."</p> \n");
1.157 albertel 7524: } else {
1.658 bisitz 7525: $r->print(
7526: '<p class="LC_warning">'
7527: .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
7528: "<b>$error</b>", $i, "<pre>$line</pre>")
7529: ."</p> \n");
7530: }
7531: my $message =
7532: '<p>'
7533: .&mt('The ID on the form is [_1]',
7534: "<tt>$$scan_record{'scantron.ID'}</tt>")
7535: .'<br />'
1.665 raeburn 7536: .&mt('The name on the paper is [_1], [_2]',
1.658 bisitz 7537: $$scan_record{'scantron.LastName'},
7538: $$scan_record{'scantron.FirstName'})
7539: .'</p>';
1.242 albertel 7540:
1.157 albertel 7541: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
7542: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503 raeburn 7543: # Array populated for doublebubble or
7544: my @lines_to_correct; # missingbubble errors to build javascript
7545: # to validate radio button checking
7546:
1.157 albertel 7547: if ($error =~ /ID$/) {
1.186 albertel 7548: if ($error eq 'incorrectID') {
1.658 bisitz 7549: $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
1.492 albertel 7550: "</p>\n");
1.157 albertel 7551: } elsif ($error eq 'duplicateID') {
1.658 bisitz 7552: $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 7553: }
1.242 albertel 7554: $r->print($message);
1.492 albertel 7555: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157 albertel 7556: $r->print("\n<ul><li> ");
7557: #FIXME it would be nice if this sent back the user ID and
7558: #could do partial userID matches
7559: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
7560: 'scantron_username','scantron_domain'));
7561: $r->print(": <input type='text' name='scantron_username' value='' />");
1.685 bisitz 7562: $r->print("\n:\n".
1.257 albertel 7563: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 7564:
7565: $r->print('</li>');
1.186 albertel 7566: } elsif ($error =~ /CODE$/) {
7567: if ($error eq 'incorrectCODE') {
1.658 bisitz 7568: $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186 albertel 7569: } elsif ($error eq 'duplicateCODE') {
1.658 bisitz 7570: $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 7571: }
1.658 bisitz 7572: $r->print("<p>".&mt('The CODE on the form is [_1]',
7573: "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
7574: ."</p>\n");
1.242 albertel 7575: $r->print($message);
1.658 bisitz 7576: $r->print("<p>".&mt("How should I handle this?")."</p>\n");
1.187 albertel 7577: $r->print("\n<br /> ");
1.194 albertel 7578: my $i=0;
1.273 albertel 7579: if ($error eq 'incorrectCODE'
7580: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 7581: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 7582: if ($closest > 0) {
7583: foreach my $testcode (@{$closest}) {
7584: my $checked='';
1.569 bisitz 7585: if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7586: $r->print("
7587: <label>
1.569 bisitz 7588: <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
1.492 albertel 7589: ".&mt("Use the similar CODE [_1] instead.",
7590: "<b><tt>".$testcode."</tt></b>")."
7591: </label>
7592: <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278 albertel 7593: $r->print("\n<br />");
7594: $i++;
7595: }
1.194 albertel 7596: }
7597: }
1.273 albertel 7598: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.569 bisitz 7599: my $checked; if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7600: $r->print("
7601: <label>
1.569 bisitz 7602: <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
1.659 raeburn 7603: ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
1.492 albertel 7604: "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
7605: </label>");
1.273 albertel 7606: $r->print("\n<br />");
7607: }
1.194 albertel 7608:
1.597 wenzelju 7609: $r->print(&Apache::lonhtmlcommon::scripttag(<<ENDSCRIPT));
1.188 albertel 7610: function change_radio(field) {
1.190 albertel 7611: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 7612: var i;
7613: for (i=0;i<slct.length;i++) {
7614: if (slct[i].value==field) { slct[i].checked=true; }
7615: }
7616: }
7617: ENDSCRIPT
1.187 albertel 7618: my $href="/adm/pickcode?".
1.359 www 7619: "form=".&escape("scantronupload").
7620: "&scantron_format=".&escape($env{'form.scantron_format'}).
7621: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
7622: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
7623: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 7624: if ($env{'form.scantron_CODElist'} =~ /\S/) {
1.492 albertel 7625: $r->print("
7626: <label>
7627: <input type='radio' name='scantron_CODE_resolution' value='use_found' />
7628: ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
7629: "<a target='_blank' href='$href'>","</a>")."
7630: </label>
1.558 bisitz 7631: ".&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 7632: $r->print("\n<br />");
7633: }
1.492 albertel 7634: $r->print("
7635: <label>
7636: <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
7637: ".&mt("Use [_1] as the CODE.",
7638: "</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 7639: $r->print("\n<br /><br />");
1.157 albertel 7640: } elsif ($error eq 'doublebubble') {
1.658 bisitz 7641: $r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497 foxr 7642:
7643: # The form field scantron_questions is acutally a list of line numbers.
7644: # represented by this form so:
7645:
1.691 raeburn 7646: my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
7647: $respnumlookup,$startline);
1.497 foxr 7648:
1.157 albertel 7649: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7650: $line_list.'" />');
1.242 albertel 7651: $r->print($message);
1.492 albertel 7652: $r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157 albertel 7653: foreach my $question (@{$arg}) {
1.503 raeburn 7654: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
1.691 raeburn 7655: $scan_record, $error,
7656: $randomorder,$randompick,
7657: $respnumlookup,$startline);
1.524 raeburn 7658: push(@lines_to_correct,@linenums);
1.157 albertel 7659: }
1.503 raeburn 7660: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7661: } elsif ($error eq 'missingbubble') {
1.658 bisitz 7662: $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 7663: $r->print($message);
1.492 albertel 7664: $r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503 raeburn 7665: $r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497 foxr 7666:
1.503 raeburn 7667: # The form field scantron_questions is actually a list of line numbers not
1.497 foxr 7668: # a list of question numbers. Therefore:
7669: #
1.691 raeburn 7670:
7671: my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
7672: $respnumlookup,$startline);
1.497 foxr 7673:
1.157 albertel 7674: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7675: $line_list.'" />');
1.157 albertel 7676: foreach my $question (@{$arg}) {
1.503 raeburn 7677: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
1.691 raeburn 7678: $scan_record, $error,
7679: $randomorder,$randompick,
7680: $respnumlookup,$startline);
1.524 raeburn 7681: push(@lines_to_correct,@linenums);
1.157 albertel 7682: }
1.503 raeburn 7683: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7684: } else {
7685: $r->print("\n<ul>");
7686: }
7687: $r->print("\n</li></ul>");
1.497 foxr 7688: }
7689:
1.503 raeburn 7690: sub verify_bubbles_checked {
7691: my (@ansnums) = @_;
7692: my $ansnumstr = join('","',@ansnums);
7693: my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
1.736 damieng 7694: &js_escape(\$warning);
1.597 wenzelju 7695: my $output = &Apache::lonhtmlcommon::scripttag((<<ENDSCRIPT));
1.503 raeburn 7696: function verify_bubble_radio(form) {
7697: var ansnumArray = new Array ("$ansnumstr");
7698: var need_bubble_count = 0;
7699: for (var i=0; i<ansnumArray.length; i++) {
7700: if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
7701: var bubble_picked = 0;
7702: for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
7703: if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
7704: bubble_picked = 1;
7705: }
7706: }
7707: if (bubble_picked == 0) {
7708: need_bubble_count ++;
7709: }
7710: }
7711: }
7712: if (need_bubble_count) {
7713: alert("$warning");
7714: return;
7715: }
7716: form.submit();
7717: }
7718: ENDSCRIPT
7719: return $output;
7720: }
7721:
1.497 foxr 7722: =pod
7723:
7724: =item questions_to_line_list
1.157 albertel 7725:
1.497 foxr 7726: Converts a list of questions into a string of comma separated
7727: line numbers in the answer sheet used by the questions. This is
7728: used to fill in the scantron_questions form field.
7729:
7730: Arguments:
7731: questions - Reference to an array of questions.
1.691 raeburn 7732: randomorder - True if randomorder in use.
7733: randompick - True if randompick in use.
7734: respnumlookup - Reference to HASH mapping question numbers in bubble lines
7735: for current line to question number used for same question
7736: in "Master Seqence" (as seen by Course Coordinator).
7737: startline - Reference to hash where key is question number (0 is first)
7738: and key is number of first bubble line for current student
7739: or code-based randompick and/or randomorder.
1.693 raeburn 7740:
1.497 foxr 7741: =cut
7742:
7743:
7744: sub questions_to_line_list {
1.691 raeburn 7745: my ($questions,$randomorder,$randompick,$respnumlookup,$startline) = @_;
1.497 foxr 7746: my @lines;
7747:
1.503 raeburn 7748: foreach my $item (@{$questions}) {
7749: my $question = $item;
7750: my ($first,$count,$last);
7751: if ($item =~ /^(\d+)\.(\d+)$/) {
7752: $question = $1;
7753: my $subquestion = $2;
1.691 raeburn 7754: my $responsenum = $question-1;
7755: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7756: $responsenum = $respnumlookup->{$question-1};
7757: if (ref($startline) eq 'HASH') {
7758: $first = $startline->{$question-1} + 1;
7759: }
7760: } else {
7761: $first = $first_bubble_line{$responsenum} + 1;
7762: }
7763: my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.503 raeburn 7764: my $subcount = 1;
7765: while ($subcount<$subquestion) {
7766: $first += $subans[$subcount-1];
7767: $subcount ++;
7768: }
7769: $count = $subans[$subquestion-1];
7770: } else {
1.691 raeburn 7771: my $responsenum = $question-1;
7772: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7773: $responsenum = $respnumlookup->{$question-1};
7774: if (ref($startline) eq 'HASH') {
7775: $first = $startline->{$question-1} + 1;
7776: }
7777: } else {
7778: $first = $first_bubble_line{$responsenum} + 1;
7779: }
7780: $count = $bubble_lines_per_response{$responsenum};
1.503 raeburn 7781: }
1.506 raeburn 7782: $last = $first+$count-1;
1.503 raeburn 7783: push(@lines, ($first..$last));
1.497 foxr 7784: }
7785: return join(',', @lines);
7786: }
7787:
7788: =pod
7789:
7790: =item prompt_for_corrections
7791:
7792: Prompts for a potentially multiline correction to the
7793: user's bubbling (factors out common code from scantron_get_correction
7794: for multi and missing bubble cases).
7795:
7796: Arguments:
7797: $r - Apache request object.
7798: $question - The question number to prompt for.
7799: $scan_config - The scantron file configuration hash.
7800: $scan_record - Reference to the hash that has the the parsed scanlines.
1.503 raeburn 7801: $error - Type of error
1.691 raeburn 7802: $randomorder - True if randomorder in use.
7803: $randompick - True if randompick in use.
7804: $respnumlookup - Reference to HASH mapping question numbers in bubble lines
7805: for current line to question number used for same question
7806: in "Master Seqence" (as seen by Course Coordinator).
7807: $startline - Reference to hash where key is question number (0 is first)
7808: and value is number of first bubble line for current student
7809: or code-based randompick and/or randomorder.
7810:
1.497 foxr 7811:
7812: Implicit inputs:
7813: %bubble_lines_per_response - Starting line numbers for each question.
7814: Numbered from 0 (but question numbers are from
7815: 1.
7816: %first_bubble_line - Starting bubble line for each question.
1.509 raeburn 7817: %subdivided_bubble_lines - optionresponse, matchresponse and rankresponse
7818: type problems render as separate sub-questions,
1.503 raeburn 7819: in exam mode. This hash contains a
7820: comma-separated list of the lines per
7821: sub-question.
1.510 raeburn 7822: %responsetype_per_response - essayresponse, formularesponse,
7823: stringresponse, imageresponse, reactionresponse,
7824: and organicresponse type problem parts can have
1.503 raeburn 7825: multiple lines per response if the weight
7826: assigned exceeds 10. In this case, only
7827: one bubble per line is permitted, but more
7828: than one line might contain bubbles, e.g.
7829: bubbling of: line 1 - J, line 2 - J,
7830: line 3 - B would assign 22 points.
1.497 foxr 7831:
7832: =cut
7833:
7834: sub prompt_for_corrections {
1.691 raeburn 7835: my ($r, $question, $scan_config, $scan_record, $error, $randomorder,
7836: $randompick, $respnumlookup, $startline) = @_;
1.503 raeburn 7837: my ($current_line,$lines);
7838: my @linenums;
7839: my $questionnum = $question;
1.691 raeburn 7840: my ($first,$responsenum);
1.503 raeburn 7841: if ($question =~ /^(\d+)\.(\d+)$/) {
7842: $question = $1;
7843: my $subquestion = $2;
1.691 raeburn 7844: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7845: $responsenum = $respnumlookup->{$question-1};
7846: if (ref($startline) eq 'HASH') {
7847: $first = $startline->{$question-1};
7848: }
7849: } else {
7850: $responsenum = $question-1;
1.714 raeburn 7851: $first = $first_bubble_line{$responsenum};
1.691 raeburn 7852: }
7853: $current_line = $first + 1 ;
7854: my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.503 raeburn 7855: my $subcount = 1;
7856: while ($subcount<$subquestion) {
7857: $current_line += $subans[$subcount-1];
7858: $subcount ++;
7859: }
7860: $lines = $subans[$subquestion-1];
7861: } else {
1.691 raeburn 7862: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7863: $responsenum = $respnumlookup->{$question-1};
7864: if (ref($startline) eq 'HASH') {
7865: $first = $startline->{$question-1};
7866: }
7867: } else {
7868: $responsenum = $question-1;
7869: $first = $first_bubble_line{$responsenum};
7870: }
7871: $current_line = $first + 1;
7872: $lines = $bubble_lines_per_response{$responsenum};
1.503 raeburn 7873: }
1.497 foxr 7874: if ($lines > 1) {
1.503 raeburn 7875: $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
1.691 raeburn 7876: if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
7877: ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
7878: ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
7879: ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
7880: ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
7881: ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.684 bisitz 7882: $r->print(
7883: &mt("Although this particular question type requires handgrading, the instructions for this question in the bubblesheet exam directed students to leave [quant,_1,line] blank on their bubblesheets.",$lines)
7884: .'<br /><br />'
7885: .&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.')
7886: .'<br />'
7887: .&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.')
7888: .'<br />'
7889: .&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.")
7890: .'<br /><br />'
7891: );
1.503 raeburn 7892: } else {
7893: $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
7894: }
1.497 foxr 7895: }
7896: for (my $i =0; $i < $lines; $i++) {
1.503 raeburn 7897: my $selected = $$scan_record{"scantron.$current_line.answer"};
1.691 raeburn 7898: &scantron_bubble_selector($r,$scan_config,$current_line,
1.503 raeburn 7899: $questionnum,$error,split('', $selected));
1.524 raeburn 7900: push(@linenums,$current_line);
1.497 foxr 7901: $current_line++;
7902: }
7903: if ($lines > 1) {
7904: $r->print("<hr /><br />");
7905: }
1.503 raeburn 7906: return @linenums;
1.157 albertel 7907: }
1.423 albertel 7908:
7909: =pod
7910:
7911: =item scantron_bubble_selector
7912:
7913: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 7914: possibly showing the existing the selected bubbles if known
1.423 albertel 7915:
7916: Arguments:
7917: $r - Apache request object
7918: $scan_config - hash from &get_scantron_config()
1.497 foxr 7919: $line - Number of the line being displayed.
1.503 raeburn 7920: $questionnum - Question number (may include subquestion)
7921: $error - Type of error.
1.497 foxr 7922: @selected - Array of bubbles picked on this line.
1.423 albertel 7923:
7924: =cut
7925:
1.157 albertel 7926: sub scantron_bubble_selector {
1.503 raeburn 7927: my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157 albertel 7928: my $max=$$scan_config{'Qlength'};
1.274 albertel 7929:
7930: my $scmode=$$scan_config{'Qon'};
1.649 raeburn 7931: if ($scmode eq 'number' || $scmode eq 'letter') {
7932: if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
7933: ($$scan_config{'BubblesPerRow'} > 0)) {
7934: $max=$$scan_config{'BubblesPerRow'};
7935: if (($scmode eq 'number') && ($max > 10)) {
7936: $max = 10;
7937: } elsif (($scmode eq 'letter') && $max > 26) {
7938: $max = 26;
7939: }
7940: } else {
7941: $max = 10;
7942: }
7943: }
1.274 albertel 7944:
1.157 albertel 7945: my @alphabet=('A'..'Z');
1.503 raeburn 7946: $r->print(&Apache::loncommon::start_data_table().
7947: &Apache::loncommon::start_data_table_row());
7948: $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497 foxr 7949: for (my $i=0;$i<$max+1;$i++) {
7950: $r->print("\n".'<td align="center">');
7951: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
7952: else { $r->print(' '); }
7953: $r->print('</td>');
7954: }
1.503 raeburn 7955: $r->print(&Apache::loncommon::end_data_table_row().
7956: &Apache::loncommon::start_data_table_row());
1.497 foxr 7957: for (my $i=0;$i<$max;$i++) {
7958: $r->print("\n".
7959: '<td><label><input type="radio" name="scantron_correct_Q_'.
7960: $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
7961: }
1.503 raeburn 7962: my $nobub_checked = ' ';
7963: if ($error eq 'missingbubble') {
7964: $nobub_checked = ' checked = "checked" ';
7965: }
7966: $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
7967: $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
7968: '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
7969: $line.'" value="'.$questionnum.'" /></td>');
7970: $r->print(&Apache::loncommon::end_data_table_row().
7971: &Apache::loncommon::end_data_table());
1.157 albertel 7972: }
7973:
1.423 albertel 7974: =pod
7975:
7976: =item num_matches
7977:
1.424 albertel 7978: Counts the number of characters that are the same between the two arguments.
7979:
7980: Arguments:
7981: $orig - CODE from the scanline
7982: $code - CODE to match against
7983:
7984: Returns:
7985: $count - integer count of the number of same characters between the
7986: two arguments
7987:
1.423 albertel 7988: =cut
7989:
1.194 albertel 7990: sub num_matches {
7991: my ($orig,$code) = @_;
7992: my @code=split(//,$code);
7993: my @orig=split(//,$orig);
7994: my $same=0;
7995: for (my $i=0;$i<scalar(@code);$i++) {
7996: if ($code[$i] eq $orig[$i]) { $same++; }
7997: }
7998: return $same;
7999: }
8000:
1.423 albertel 8001: =pod
8002:
8003: =item scantron_get_closely_matching_CODEs
8004:
1.424 albertel 8005: Cycles through all CODEs and finds the set that has the greatest
8006: number of same characters as the provided CODE
8007:
8008: Arguments:
8009: $allcodes - hash ref returned by &get_codes()
8010: $CODE - CODE from the current scanline
8011:
8012: Returns:
8013: 2 element list
8014: - first elements is number of how closely matching the best fit is
8015: (5 means best set has 5 matching characters)
8016: - second element is an arrary ref containing the set of valid CODEs
8017: that best fit the passed in CODE
8018:
1.423 albertel 8019: =cut
8020:
1.194 albertel 8021: sub scantron_get_closely_matching_CODEs {
8022: my ($allcodes,$CODE)=@_;
8023: my @CODEs;
8024: foreach my $testcode (sort(keys(%{$allcodes}))) {
8025: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
8026: }
8027:
8028: return ($#CODEs,$CODEs[-1]);
8029: }
8030:
1.423 albertel 8031: =pod
8032:
8033: =item get_codes
8034:
1.424 albertel 8035: Builds a hash which has keys of all of the valid CODEs from the selected
8036: set of remembered CODEs.
8037:
8038: Arguments:
8039: $old_name - name of the set of remembered CODEs
8040: $cdom - domain of the course
8041: $cnum - internal course name
8042:
8043: Returns:
8044: %allcodes - keys are the valid CODEs, values are all 1
8045:
1.423 albertel 8046: =cut
8047:
1.194 albertel 8048: sub get_codes {
1.280 foxr 8049: my ($old_name, $cdom, $cnum) = @_;
8050: if (!$old_name) {
8051: $old_name=$env{'form.scantron_CODElist'};
8052: }
8053: if (!$cdom) {
8054: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
8055: }
8056: if (!$cnum) {
8057: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
8058: }
1.278 albertel 8059: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
8060: $cdom,$cnum);
8061: my %allcodes;
8062: if ($result{"type\0$old_name"} eq 'number') {
8063: %allcodes=map {($_,1)} split(',',$result{$old_name});
8064: } else {
8065: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
8066: }
1.194 albertel 8067: return %allcodes;
8068: }
8069:
1.423 albertel 8070: =pod
8071:
8072: =item scantron_validate_CODE
8073:
1.424 albertel 8074: Validates all scanlines in the selected file to not have any
8075: invalid or underspecified CODEs and that none of the codes are
8076: duplicated if this was requested.
8077:
1.423 albertel 8078: =cut
8079:
1.157 albertel 8080: sub scantron_validate_CODE {
8081: my ($r,$currentphase) = @_;
1.257 albertel 8082: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 8083: if ($scantron_config{'CODElocation'} &&
8084: $scantron_config{'CODEstart'} &&
8085: $scantron_config{'CODElength'}) {
1.257 albertel 8086: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 8087: &FIXME_blow_up()
8088: }
8089: } else {
8090: return (0,$currentphase+1);
8091: }
8092:
8093: my %usedCODEs;
8094:
1.194 albertel 8095: my %allcodes=&get_codes();
1.186 albertel 8096:
1.582 raeburn 8097: my $nav_error;
1.649 raeburn 8098: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
1.582 raeburn 8099: if ($nav_error) {
8100: $r->print(&navmap_errormsg());
8101: return(1,$currentphase);
8102: }
1.447 foxr 8103:
1.186 albertel 8104: my ($scanlines,$scan_data)=&scantron_getfile();
8105: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8106: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 8107: if ($line=~/^[\s\cz]*$/) { next; }
8108: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
8109: $scan_data);
8110: my $CODE=$$scan_record{'scantron.CODE'};
8111: my $error=0;
1.224 albertel 8112: if (!&Apache::lonnet::validCODE($CODE)) {
8113: &scantron_get_correction($r,$i,$scan_record,
8114: \%scantron_config,
8115: $line,'incorrectCODE',\%allcodes);
8116: return(1,$currentphase);
8117: }
1.221 albertel 8118: if (%allcodes && !exists($allcodes{$CODE})
8119: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 8120: &scantron_get_correction($r,$i,$scan_record,
8121: \%scantron_config,
1.194 albertel 8122: $line,'incorrectCODE',\%allcodes);
8123: return(1,$currentphase);
1.186 albertel 8124: }
1.214 albertel 8125: if (exists($usedCODEs{$CODE})
1.257 albertel 8126: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 8127: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 8128: &scantron_get_correction($r,$i,$scan_record,
8129: \%scantron_config,
1.194 albertel 8130: $line,'duplicateCODE',$usedCODEs{$CODE});
8131: return(1,$currentphase);
1.186 albertel 8132: }
1.524 raeburn 8133: push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 8134: }
1.157 albertel 8135: return (0,$currentphase+1);
8136: }
8137:
1.423 albertel 8138: =pod
8139:
8140: =item scantron_validate_doublebubble
8141:
1.424 albertel 8142: Validates all scanlines in the selected file to not have any
8143: bubble lines with multiple bubbles marked.
8144:
1.423 albertel 8145: =cut
8146:
1.157 albertel 8147: sub scantron_validate_doublebubble {
8148: my ($r,$currentphase) = @_;
8149: #get student info
8150: my $classlist=&Apache::loncoursedata::get_classlist();
8151: my %idmap=&username_to_idmap($classlist);
1.691 raeburn 8152: my (undef,undef,$sequence)=
8153: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.157 albertel 8154:
8155: #get scantron line setup
1.257 albertel 8156: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 8157: my ($scanlines,$scan_data)=&scantron_getfile();
1.691 raeburn 8158:
8159: my $navmap = Apache::lonnavmaps::navmap->new();
8160: unless (ref($navmap)) {
8161: $r->print(&navmap_errormsg());
8162: return(1,$currentphase);
8163: }
8164: my $map=$navmap->getResourceByUrl($sequence);
8165: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8166: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
8167: %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
8168: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8169:
1.583 raeburn 8170: my $nav_error;
1.691 raeburn 8171: if (ref($map)) {
8172: $randomorder = $map->randomorder();
8173: $randompick = $map->randompick();
8174: if ($randomorder || $randompick) {
8175: $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8176: if ($nav_error) {
8177: $r->print(&navmap_errormsg());
8178: return(1,$currentphase);
8179: }
8180: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8181: \%grader_randomlists_by_symb,$bubbles_per_row);
8182: }
8183: } else {
8184: $r->print(&navmap_errormsg());
8185: return(1,$currentphase);
8186: }
8187:
1.649 raeburn 8188: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
1.583 raeburn 8189: if ($nav_error) {
8190: $r->print(&navmap_errormsg());
8191: return(1,$currentphase);
8192: }
1.447 foxr 8193:
1.157 albertel 8194: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8195: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8196: if ($line=~/^[\s\cz]*$/) { next; }
8197: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
1.691 raeburn 8198: $scan_data,undef,\%idmap,$randomorder,
8199: $randompick,$sequence,\@master_seq,
8200: \%symb_to_resource,\%grader_partids_by_symb,
8201: \%orderedforcode,\%respnumlookup,\%startline);
1.157 albertel 8202: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
8203: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
8204: 'doublebubble',
1.691 raeburn 8205: $$scan_record{'scantron.doubleerror'},
8206: $randomorder,$randompick,\%respnumlookup,\%startline);
1.157 albertel 8207: return (1,$currentphase);
8208: }
8209: return (0,$currentphase+1);
8210: }
8211:
1.423 albertel 8212:
1.503 raeburn 8213: sub scantron_get_maxbubble {
1.649 raeburn 8214: my ($nav_error,$scantron_config) = @_;
1.257 albertel 8215: if (defined($env{'form.scantron_maxbubble'}) &&
8216: $env{'form.scantron_maxbubble'}) {
1.447 foxr 8217: &restore_bubble_lines();
1.257 albertel 8218: return $env{'form.scantron_maxbubble'};
1.191 albertel 8219: }
1.330 albertel 8220:
1.447 foxr 8221: my (undef, undef, $sequence) =
1.257 albertel 8222: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 8223:
1.447 foxr 8224: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8225: unless (ref($navmap)) {
8226: if (ref($nav_error)) {
8227: $$nav_error = 1;
8228: }
1.591 raeburn 8229: return;
1.582 raeburn 8230: }
1.191 albertel 8231: my $map=$navmap->getResourceByUrl($sequence);
8232: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.649 raeburn 8233: my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
1.330 albertel 8234:
8235: &Apache::lonxml::clear_problem_counter();
8236:
1.557 raeburn 8237: my $uname = $env{'user.name'};
8238: my $udom = $env{'user.domain'};
1.435 foxr 8239: my $cid = $env{'request.course.id'};
8240: my $total_lines = 0;
8241: %bubble_lines_per_response = ();
1.447 foxr 8242: %first_bubble_line = ();
1.503 raeburn 8243: %subdivided_bubble_lines = ();
8244: %responsetype_per_response = ();
1.691 raeburn 8245: %masterseq_id_responsenum = ();
1.554 raeburn 8246:
1.447 foxr 8247: my $response_number = 0;
8248: my $bubble_line = 0;
1.191 albertel 8249: foreach my $resource (@resources) {
1.691 raeburn 8250: my $resid = $resource->id();
1.672 raeburn 8251: my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
8252: $udom,undef,$bubbles_per_row);
1.542 raeburn 8253: if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
8254: foreach my $part_id (@{$parts}) {
8255: my $lines;
8256:
8257: # TODO - make this a persistent hash not an array.
8258:
8259: # optionresponse, matchresponse and rankresponse type items
8260: # render as separate sub-questions in exam mode.
8261: if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
8262: ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
8263: ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
8264: my ($numbub,$numshown);
8265: if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
8266: if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
8267: $numbub = scalar(@{$analysis->{$part_id.'.options'}});
8268: }
8269: } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
8270: if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
8271: $numbub = scalar(@{$analysis->{$part_id.'.items'}});
8272: }
8273: } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
8274: if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
8275: $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
8276: }
8277: }
8278: if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
8279: $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
8280: }
1.649 raeburn 8281: my $bubbles_per_row =
8282: &bubblesheet_bubbles_per_row($scantron_config);
8283: my $inner_bubble_lines = int($numbub/$bubbles_per_row);
8284: if (($numbub % $bubbles_per_row) != 0) {
1.542 raeburn 8285: $inner_bubble_lines++;
8286: }
8287: for (my $i=0; $i<$numshown; $i++) {
8288: $subdivided_bubble_lines{$response_number} .=
8289: $inner_bubble_lines.',';
8290: }
8291: $subdivided_bubble_lines{$response_number} =~ s/,$//;
8292: $lines = $numshown * $inner_bubble_lines;
8293: } else {
8294: $lines = $analysis->{"$part_id.bubble_lines"};
1.649 raeburn 8295: }
1.542 raeburn 8296:
8297: $first_bubble_line{$response_number} = $bubble_line;
8298: $bubble_lines_per_response{$response_number} = $lines;
8299: $responsetype_per_response{$response_number} =
8300: $analysis->{$part_id.'.type'};
1.691 raeburn 8301: $masterseq_id_responsenum{$resid.'_'.$part_id} = $response_number;
1.542 raeburn 8302: $response_number++;
8303:
8304: $bubble_line += $lines;
8305: $total_lines += $lines;
8306: }
8307: }
8308: }
1.552 raeburn 8309: &Apache::lonnet::delenv('scantron.');
1.542 raeburn 8310:
8311: &save_bubble_lines();
8312: $env{'form.scantron_maxbubble'} =
8313: $total_lines;
8314: return $env{'form.scantron_maxbubble'};
8315: }
1.523 raeburn 8316:
1.649 raeburn 8317: sub bubblesheet_bubbles_per_row {
8318: my ($scantron_config) = @_;
8319: my $bubbles_per_row;
8320: if (ref($scantron_config) eq 'HASH') {
8321: $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
8322: }
8323: if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
8324: $bubbles_per_row = 10;
8325: }
8326: return $bubbles_per_row;
8327: }
8328:
1.157 albertel 8329: sub scantron_validate_missingbubbles {
8330: my ($r,$currentphase) = @_;
8331: #get student info
8332: my $classlist=&Apache::loncoursedata::get_classlist();
8333: my %idmap=&username_to_idmap($classlist);
1.691 raeburn 8334: my (undef,undef,$sequence)=
8335: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.157 albertel 8336:
8337: #get scantron line setup
1.257 albertel 8338: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 8339: my ($scanlines,$scan_data)=&scantron_getfile();
1.691 raeburn 8340:
8341: my $navmap = Apache::lonnavmaps::navmap->new();
8342: unless (ref($navmap)) {
8343: $r->print(&navmap_errormsg());
8344: return(1,$currentphase);
8345: }
8346:
8347: my $map=$navmap->getResourceByUrl($sequence);
8348: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8349: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
8350: %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
8351: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8352:
1.582 raeburn 8353: my $nav_error;
1.691 raeburn 8354: if (ref($map)) {
8355: $randomorder = $map->randomorder();
8356: $randompick = $map->randompick();
8357: if ($randomorder || $randompick) {
8358: $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8359: if ($nav_error) {
8360: $r->print(&navmap_errormsg());
8361: return(1,$currentphase);
8362: }
8363: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8364: \%grader_randomlists_by_symb,$bubbles_per_row);
8365: }
8366: } else {
8367: $r->print(&navmap_errormsg());
8368: return(1,$currentphase);
8369: }
8370:
8371:
1.649 raeburn 8372: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 8373: if ($nav_error) {
1.691 raeburn 8374: $r->print(&navmap_errormsg());
1.693 raeburn 8375: return(1,$currentphase);
1.582 raeburn 8376: }
1.691 raeburn 8377:
1.157 albertel 8378: if (!$max_bubble) { $max_bubble=2**31; }
8379: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8380: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8381: if ($line=~/^[\s\cz]*$/) { next; }
1.691 raeburn 8382: my $scan_record =
8383: &scantron_parse_scanline($line,$i,\%scantron_config,$scan_data,undef,\%idmap,
8384: $randomorder,$randompick,$sequence,\@master_seq,
8385: \%symb_to_resource,\%grader_partids_by_symb,
8386: \%orderedforcode,\%respnumlookup,\%startline);
1.157 albertel 8387: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
8388: my @to_correct;
1.470 foxr 8389:
8390: # Probably here's where the error is...
8391:
1.157 albertel 8392: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505 raeburn 8393: my $lastbubble;
8394: if ($missing =~ /^(\d+)\.(\d+)$/) {
8395: my $question = $1;
8396: my $subquestion = $2;
1.691 raeburn 8397: my ($first,$responsenum);
8398: if ($randomorder || $randompick) {
8399: $responsenum = $respnumlookup{$question-1};
8400: $first = $startline{$question-1};
8401: } else {
8402: $responsenum = $question-1;
8403: $first = $first_bubble_line{$responsenum};
8404: }
8405: if (!defined($first)) { next; }
8406: my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.505 raeburn 8407: my $subcount = 1;
8408: while ($subcount<$subquestion) {
8409: $first += $subans[$subcount-1];
8410: $subcount ++;
8411: }
8412: my $count = $subans[$subquestion-1];
8413: $lastbubble = $first + $count;
8414: } else {
1.691 raeburn 8415: my ($first,$responsenum);
8416: if ($randomorder || $randompick) {
8417: $responsenum = $respnumlookup{$missing-1};
8418: $first = $startline{$missing-1};
8419: } else {
8420: $responsenum = $missing-1;
8421: $first = $first_bubble_line{$responsenum};
8422: }
8423: if (!defined($first)) { next; }
8424: $lastbubble = $first + $bubble_lines_per_response{$responsenum};
1.505 raeburn 8425: }
8426: if ($lastbubble > $max_bubble) { next; }
1.157 albertel 8427: push(@to_correct,$missing);
8428: }
8429: if (@to_correct) {
8430: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
1.691 raeburn 8431: $line,'missingbubble',\@to_correct,
8432: $randomorder,$randompick,\%respnumlookup,
8433: \%startline);
1.157 albertel 8434: return (1,$currentphase);
8435: }
8436:
8437: }
8438: return (0,$currentphase+1);
8439: }
8440:
1.663 raeburn 8441: sub hand_bubble_option {
8442: my (undef, undef, $sequence) =
8443: &Apache::lonnet::decode_symb($env{'form.selectpage'});
8444: return if ($sequence eq '');
8445: my $navmap = Apache::lonnavmaps::navmap->new();
8446: unless (ref($navmap)) {
8447: return;
8448: }
8449: my $needs_hand_bubbles;
8450: my $map=$navmap->getResourceByUrl($sequence);
8451: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8452: foreach my $res (@resources) {
8453: if (ref($res)) {
8454: if ($res->is_problem()) {
8455: my $partlist = $res->parts();
8456: foreach my $part (@{ $partlist }) {
8457: my @types = $res->responseType($part);
8458: if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
8459: $needs_hand_bubbles = 1;
8460: last;
8461: }
8462: }
8463: }
8464: }
8465: }
8466: if ($needs_hand_bubbles) {
8467: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
8468: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8469: return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
8470: &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 />').
8471: '<label><input type="radio" name="scantron_lastbubblepoints" value="'.$bubbles_per_row.'" checked="checked" />'.&mt('[quant,_1,point]',$bubbles_per_row).'</label> '.&mt('or').' '.
1.722 raeburn 8472: '<label><input type="radio" name="scantron_lastbubblepoints" value="0" />'.&mt('0 points').'</label></p>';
1.663 raeburn 8473: }
8474: return;
8475: }
1.423 albertel 8476:
1.82 albertel 8477: sub scantron_process_students {
1.608 www 8478: my ($r,$symb) = @_;
1.513 foxr 8479:
1.257 albertel 8480: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.513 foxr 8481: if (!$symb) {
8482: return '';
8483: }
1.324 albertel 8484: my $default_form_data=&defaultFormData($symb);
1.82 albertel 8485:
1.257 albertel 8486: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.691 raeburn 8487: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.157 albertel 8488: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 8489: my $classlist=&Apache::loncoursedata::get_classlist();
8490: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 8491: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8492: unless (ref($navmap)) {
8493: $r->print(&navmap_errormsg());
8494: return '';
1.691 raeburn 8495: }
1.83 albertel 8496: my $map=$navmap->getResourceByUrl($sequence);
1.691 raeburn 8497: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
1.693 raeburn 8498: %grader_randomlists_by_symb);
1.677 raeburn 8499: if (ref($map)) {
8500: $randomorder = $map->randomorder();
1.689 raeburn 8501: $randompick = $map->randompick();
1.691 raeburn 8502: } else {
8503: $r->print(&navmap_errormsg());
8504: return '';
1.677 raeburn 8505: }
1.691 raeburn 8506: my $nav_error;
1.83 albertel 8507: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.691 raeburn 8508: if ($randomorder || $randompick) {
8509: $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8510: if ($nav_error) {
8511: $r->print(&navmap_errormsg());
8512: return '';
8513: }
8514: }
1.557 raeburn 8515: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
1.649 raeburn 8516: \%grader_randomlists_by_symb,$bubbles_per_row);
1.557 raeburn 8517:
1.554 raeburn 8518: my ($uname,$udom);
1.82 albertel 8519: my $result= <<SCANTRONFORM;
1.81 albertel 8520: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
8521: <input type="hidden" name="command" value="scantron_configphase" />
8522: $default_form_data
8523: SCANTRONFORM
1.82 albertel 8524: $r->print($result);
8525:
8526: my @delayqueue;
1.542 raeburn 8527: my (%completedstudents,%scandata);
1.140 albertel 8528:
1.520 www 8529: my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
1.200 albertel 8530: my $count=&get_todo_count($scanlines,$scan_data);
1.667 www 8531: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
8532: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.542 raeburn 8533: $r->print('<br />');
1.140 albertel 8534: my $start=&Time::HiRes::time();
1.158 albertel 8535: my $i=-1;
1.542 raeburn 8536: my $started;
1.447 foxr 8537:
1.649 raeburn 8538: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 8539: if ($nav_error) {
8540: $r->print(&navmap_errormsg());
8541: return '';
8542: }
8543:
1.513 foxr 8544: # If an ssi failed in scantron_get_maxbubble, put an error message out to
8545: # the user and return.
8546:
8547: if ($ssi_error) {
8548: $r->print("</form>");
8549: &ssi_print_error($r);
1.520 www 8550: &Apache::lonnet::remove_lock($lock);
1.513 foxr 8551: return ''; # Dunno why the other returns return '' rather than just returning.
8552: }
1.447 foxr 8553:
1.542 raeburn 8554: my %lettdig = &letter_to_digits();
8555: my $numletts = scalar(keys(%lettdig));
1.691 raeburn 8556: my %orderedforcode;
1.542 raeburn 8557:
1.157 albertel 8558: while ($i<$scanlines->{'count'}) {
8559: ($uname,$udom)=('','');
8560: $i++;
1.200 albertel 8561: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8562: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 8563: if ($started) {
1.667 www 8564: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.200 albertel 8565: }
8566: $started=1;
1.691 raeburn 8567: my %respnumlookup = ();
8568: my %startline = ();
8569: my $total;
1.157 albertel 8570: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
1.691 raeburn 8571: $scan_data,undef,\%idmap,$randomorder,
8572: $randompick,$sequence,\@master_seq,
8573: \%symb_to_resource,\%grader_partids_by_symb,
8574: \%orderedforcode,\%respnumlookup,\%startline,
8575: \$total);
1.157 albertel 8576: unless ($uname=&scantron_find_student($scan_record,$scan_data,
8577: \%idmap,$i)) {
8578: &scantron_add_delay(\@delayqueue,$line,
8579: 'Unable to find a student that matches',1);
8580: next;
8581: }
8582: if (exists $completedstudents{$uname}) {
8583: &scantron_add_delay(\@delayqueue,$line,
8584: 'Student '.$uname.' has multiple sheets',2);
8585: next;
8586: }
1.677 raeburn 8587: my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
8588: my $user = $uname.':'.$usec;
1.157 albertel 8589: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 8590:
1.677 raeburn 8591: my $scancode;
8592: if ((exists($scan_record->{'scantron.CODE'})) &&
8593: (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8594: $scancode = $scan_record->{'scantron.CODE'};
8595: } else {
8596: $scancode = '';
8597: }
8598:
8599: my @mapresources = @resources;
1.689 raeburn 8600: if ($randomorder || $randompick) {
1.678 raeburn 8601: @mapresources =
1.691 raeburn 8602: &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
8603: \%orderedforcode);
1.677 raeburn 8604: }
1.586 raeburn 8605: my (%partids_by_symb,$res_error);
1.677 raeburn 8606: foreach my $resource (@mapresources) {
1.586 raeburn 8607: my $ressymb;
8608: if (ref($resource)) {
8609: $ressymb = $resource->symb();
8610: } else {
8611: $res_error = 1;
8612: last;
8613: }
1.557 raeburn 8614: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8615: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
1.741 raeburn 8616: my $currcode;
8617: if (exists($grader_randomlists_by_symb{$ressymb})) {
8618: $currcode = $scancode;
8619: }
1.557 raeburn 8620: my ($analysis,$parts) =
1.672 raeburn 8621: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.741 raeburn 8622: $uname,$udom,undef,$bubbles_per_row,
8623: $currcode);
1.557 raeburn 8624: $partids_by_symb{$ressymb} = $parts;
8625: } else {
8626: $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
8627: }
1.554 raeburn 8628: }
8629:
1.586 raeburn 8630: if ($res_error) {
8631: &scantron_add_delay(\@delayqueue,$line,
8632: 'An error occurred while grading student '.$uname,2);
8633: next;
8634: }
8635:
1.330 albertel 8636: &Apache::lonxml::clear_problem_counter();
1.514 raeburn 8637: &Apache::lonnet::appenv($scan_record);
1.376 albertel 8638:
8639: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
8640: &scantron_putfile($scanlines,$scan_data);
8641: }
1.161 albertel 8642:
1.542 raeburn 8643: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677 raeburn 8644: \@mapresources,\%partids_by_symb,
1.691 raeburn 8645: $bubbles_per_row,$randomorder,$randompick,
8646: \%respnumlookup,\%startline)
8647: eq 'ssi_error') {
1.542 raeburn 8648: $ssi_error = 0; # So end of handler error message does not trigger.
8649: $r->print("</form>");
8650: &ssi_print_error($r);
8651: &Apache::lonnet::remove_lock($lock);
8652: return ''; # Why return ''? Beats me.
8653: }
1.513 foxr 8654:
1.692 raeburn 8655: if (($scancode) && ($randomorder || $randompick)) {
8656: my $parmresult =
8657: &Apache::lonparmset::storeparm_by_symb($symb,
8658: '0_examcode',2,$scancode,
8659: 'string_examcode',$uname,
8660: $udom);
8661: }
1.140 albertel 8662: $completedstudents{$uname}={'line'=>$line};
1.542 raeburn 8663: if ($env{'form.verifyrecord'}) {
8664: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
1.691 raeburn 8665: if ($randompick) {
8666: if ($total) {
8667: $lastpos = $total*$scantron_config{'Qlength'};
8668: }
8669: }
8670:
1.542 raeburn 8671: my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8672: chomp($studentdata);
8673: $studentdata =~ s/\r$//;
8674: my $studentrecord = '';
8675: my $counter = -1;
1.677 raeburn 8676: foreach my $resource (@mapresources) {
1.554 raeburn 8677: my $ressymb = $resource->symb();
1.542 raeburn 8678: ($counter,my $recording) =
8679: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8680: $counter,$studentdata,$partids_by_symb{$ressymb},
1.691 raeburn 8681: \%scantron_config,\%lettdig,$numletts,$randomorder,
8682: $randompick,\%respnumlookup,\%startline);
1.542 raeburn 8683: $studentrecord .= $recording;
8684: }
8685: if ($studentrecord ne $studentdata) {
1.554 raeburn 8686: &Apache::lonxml::clear_problem_counter();
8687: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677 raeburn 8688: \@mapresources,\%partids_by_symb,
1.691 raeburn 8689: $bubbles_per_row,$randomorder,$randompick,
8690: \%respnumlookup,\%startline)
8691: eq 'ssi_error') {
1.554 raeburn 8692: $ssi_error = 0; # So end of handler error message does not trigger.
8693: $r->print("</form>");
8694: &ssi_print_error($r);
8695: &Apache::lonnet::remove_lock($lock);
8696: delete($completedstudents{$uname});
8697: return '';
8698: }
1.542 raeburn 8699: $counter = -1;
8700: $studentrecord = '';
1.677 raeburn 8701: foreach my $resource (@mapresources) {
1.554 raeburn 8702: my $ressymb = $resource->symb();
1.542 raeburn 8703: ($counter,my $recording) =
8704: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8705: $counter,$studentdata,$partids_by_symb{$ressymb},
1.691 raeburn 8706: \%scantron_config,\%lettdig,$numletts,
8707: $randomorder,$randompick,\%respnumlookup,
8708: \%startline);
1.542 raeburn 8709: $studentrecord .= $recording;
8710: }
8711: if ($studentrecord ne $studentdata) {
1.658 bisitz 8712: $r->print('<p><span class="LC_warning">');
1.542 raeburn 8713: if ($scancode eq '') {
1.658 bisitz 8714: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
1.542 raeburn 8715: $uname.':'.$udom,$scan_record->{'scantron.ID'}));
8716: } else {
1.658 bisitz 8717: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
1.542 raeburn 8718: $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
8719: }
8720: $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
8721: &Apache::loncommon::start_data_table_header_row()."\n".
8722: '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
8723: &Apache::loncommon::end_data_table_header_row()."\n".
8724: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8725: '<td>'.&mt('Bubblesheet').'</td>'.
1.707 bisitz 8726: '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentdata.'</tt></span></td>'.
1.542 raeburn 8727: &Apache::loncommon::end_data_table_row().
8728: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8729: '<td>'.&mt('Stored submissions').'</td>'.
1.707 bisitz 8730: '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentrecord.'</tt></span></td>'."\n".
1.542 raeburn 8731: &Apache::loncommon::end_data_table_row().
8732: &Apache::loncommon::end_data_table().'</p>');
8733: } else {
8734: $r->print('<br /><span class="LC_warning">'.
8735: &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 />'.
8736: &mt("As a consequence, this user's submission history records two tries.").
8737: '</span><br />');
8738: }
8739: }
8740: }
1.543 raeburn 8741: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 8742: } continue {
1.330 albertel 8743: &Apache::lonxml::clear_problem_counter();
1.552 raeburn 8744: &Apache::lonnet::delenv('scantron.');
1.82 albertel 8745: }
1.140 albertel 8746: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.520 www 8747: &Apache::lonnet::remove_lock($lock);
1.172 albertel 8748: # my $lasttime = &Time::HiRes::time()-$start;
8749: # $r->print("<p>took $lasttime</p>");
1.140 albertel 8750:
1.200 albertel 8751: $r->print("</form>");
1.157 albertel 8752: return '';
1.75 albertel 8753: }
1.157 albertel 8754:
1.557 raeburn 8755: sub graders_resources_pass {
1.649 raeburn 8756: my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
8757: $bubbles_per_row) = @_;
1.557 raeburn 8758: if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) &&
8759: (ref($grader_randomlists_by_symb) eq 'HASH')) {
8760: foreach my $resource (@{$resources}) {
8761: my $ressymb = $resource->symb();
8762: my ($analysis,$parts) =
8763: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672 raeburn 8764: $env{'user.name'},$env{'user.domain'},
8765: 1,$bubbles_per_row);
1.557 raeburn 8766: $grader_partids_by_symb->{$ressymb} = $parts;
8767: if (ref($analysis) eq 'HASH') {
8768: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
8769: $grader_randomlists_by_symb->{$ressymb} =
8770: $analysis->{'parts_withrandomlist'};
8771: }
8772: }
8773: }
8774: }
8775: return;
8776: }
8777:
1.678 raeburn 8778: =pod
8779:
8780: =item users_order
8781:
8782: Returns array of resources in current map, ordered based on either CODE,
8783: if this is a CODEd exam, or based on student's identity if this is a
8784: "NAMEd" exam.
8785:
1.691 raeburn 8786: Should be used when randomorder and/or randompick applied when the
8787: corresponding exam was printed, prior to students completing bubblesheets
8788: for the version of the exam the student received.
1.678 raeburn 8789:
8790: =cut
8791:
8792: sub users_order {
1.691 raeburn 8793: my ($user,$scancode,$mapurl,$master_seq,$symb_to_resource,$orderedforcode) = @_;
1.678 raeburn 8794: my @mapresources;
1.691 raeburn 8795: unless ((ref($master_seq) eq 'ARRAY') && (ref($symb_to_resource) eq 'HASH')) {
1.678 raeburn 8796: return @mapresources;
1.691 raeburn 8797: }
8798: if ($scancode) {
8799: if ((ref($orderedforcode) eq 'HASH') && (ref($orderedforcode->{$scancode}) eq 'ARRAY')) {
8800: @mapresources = @{$orderedforcode->{$scancode}};
8801: } else {
8802: $env{'form.CODE'} = $scancode;
8803: my $actual_seq =
8804: &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8805: $master_seq,
8806: $user,$scancode,1);
8807: if (ref($actual_seq) eq 'ARRAY') {
8808: @mapresources = map { $symb_to_resource->{$_}; } @{$actual_seq};
8809: if (ref($orderedforcode) eq 'HASH') {
8810: if (@mapresources > 0) {
8811: $orderedforcode->{$scancode} = \@mapresources;
8812: }
8813: }
8814: }
8815: delete($env{'form.CODE'});
1.678 raeburn 8816: }
8817: } else {
8818: my $actual_seq =
8819: &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8820: $master_seq,
1.688 raeburn 8821: $user,undef,1);
1.678 raeburn 8822: if (ref($actual_seq) eq 'ARRAY') {
8823: @mapresources =
8824: map { $symb_to_resource->{$_}; } @{$actual_seq};
8825: }
1.691 raeburn 8826: }
8827: return @mapresources;
1.678 raeburn 8828: }
8829:
1.542 raeburn 8830: sub grade_student_bubbles {
1.691 raeburn 8831: my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row,
8832: $randomorder,$randompick,$respnumlookup,$startline) = @_;
8833: my $uselookup = 0;
8834: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH') &&
8835: (ref($startline) eq 'HASH')) {
8836: $uselookup = 1;
8837: }
8838:
1.554 raeburn 8839: if (ref($resources) eq 'ARRAY') {
8840: my $count = 0;
8841: foreach my $resource (@{$resources}) {
8842: my $ressymb = $resource->symb();
8843: my %form = ('submitted' => 'scantron',
8844: 'grade_target' => 'grade',
8845: 'grade_username' => $uname,
8846: 'grade_domain' => $udom,
8847: 'grade_courseid' => $env{'request.course.id'},
8848: 'grade_symb' => $ressymb,
8849: 'CODE' => $scancode
8850: );
1.649 raeburn 8851: if ($bubbles_per_row ne '') {
8852: $form{'bubbles_per_row'} = $bubbles_per_row;
8853: }
1.663 raeburn 8854: if ($env{'form.scantron_lastbubblepoints'} ne '') {
8855: $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
8856: }
1.554 raeburn 8857: if (ref($parts) eq 'HASH') {
8858: if (ref($parts->{$ressymb}) eq 'ARRAY') {
8859: foreach my $part (@{$parts->{$ressymb}}) {
1.691 raeburn 8860: if ($uselookup) {
8861: $form{'scantron_questnum_start.'.$part} = $startline->{$count} + 1;
8862: } else {
8863: $form{'scantron_questnum_start.'.$part} =
8864: 1+$env{'form.scantron.first_bubble_line.'.$count};
8865: }
1.554 raeburn 8866: $count++;
8867: }
8868: }
8869: }
8870: my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
8871: return 'ssi_error' if ($ssi_error);
8872: last if (&Apache::loncommon::connection_aborted($r));
8873: }
1.542 raeburn 8874: }
8875: return;
8876: }
8877:
1.157 albertel 8878: sub scantron_upload_scantron_data {
1.608 www 8879: my ($r,$symb)=@_;
1.565 raeburn 8880: my $dom = $env{'request.role.domain'};
8881: my $domdesc = &Apache::lonnet::domain($dom,'description');
8882: $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
1.157 albertel 8883: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 8884: 'domainid',
1.565 raeburn 8885: 'coursename',$dom);
8886: my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
8887: (' 'x2).&mt('(shows course personnel)');
1.608 www 8888: my $default_form_data=&defaultFormData($symb);
1.579 raeburn 8889: my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
1.736 damieng 8890: &js_escape(\$nofile_alert);
1.579 raeburn 8891: 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.736 damieng 8892: &js_escape(\$nocourseid_alert);
1.597 wenzelju 8893: $r->print(&Apache::lonhtmlcommon::scripttag('
1.157 albertel 8894: function checkUpload(formname) {
8895: if (formname.upfile.value == "") {
1.579 raeburn 8896: alert("'.$nofile_alert.'");
1.157 albertel 8897: return false;
8898: }
1.565 raeburn 8899: if (formname.courseid.value == "") {
1.579 raeburn 8900: alert("'.$nocourseid_alert.'");
1.565 raeburn 8901: return false;
8902: }
1.157 albertel 8903: formname.submit();
8904: }
1.565 raeburn 8905:
8906: function ToSyllabus() {
8907: var cdom = '."'$dom'".';
8908: var cnum = document.rules.courseid.value;
8909: if (cdom == "" || cdom == null) {
8910: return;
8911: }
8912: if (cnum == "" || cnum == null) {
8913: return;
8914: }
8915: syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
8916: "height=350,width=350,scrollbars=yes,menubar=no");
8917: return;
8918: }
8919:
1.597 wenzelju 8920: '));
8921: $r->print('
1.648 bisitz 8922: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
1.566 raeburn 8923:
1.492 albertel 8924: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
1.565 raeburn 8925: '.$default_form_data.
8926: &Apache::lonhtmlcommon::start_pick_box().
8927: &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
8928: '<input name="courseid" type="text" size="30" />'.$select_link.
8929: &Apache::lonhtmlcommon::row_closure().
8930: &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
8931: '<input name="coursename" type="text" size="30" />'.$syllabuslink.
8932: &Apache::lonhtmlcommon::row_closure().
8933: &Apache::lonhtmlcommon::row_title(&mt('Domain')).
8934: '<input name="domainid" type="hidden" />'.$domdesc.
8935: &Apache::lonhtmlcommon::row_closure().
8936: &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
8937: '<input type="file" name="upfile" size="50" />'.
8938: &Apache::lonhtmlcommon::row_closure(1).
8939: &Apache::lonhtmlcommon::end_pick_box().'<br />
8940:
1.492 albertel 8941: <input name="command" value="scantronupload_save" type="hidden" />
1.589 bisitz 8942: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
1.157 albertel 8943: </form>
1.492 albertel 8944: ');
1.157 albertel 8945: return '';
8946: }
8947:
1.423 albertel 8948:
1.157 albertel 8949: sub scantron_upload_scantron_data_save {
1.608 www 8950: my($r,$symb)=@_;
1.182 albertel 8951: my $doanotherupload=
8952: '<br /><form action="/adm/grades" method="post">'."\n".
8953: '<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492 albertel 8954: '<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182 albertel 8955: '</form>'."\n";
1.257 albertel 8956: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 8957: !&Apache::lonnet::allowed('usc',
1.257 albertel 8958: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.575 www 8959: $r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
1.614 www 8960: unless ($symb) {
1.182 albertel 8961: $r->print($doanotherupload);
8962: }
1.162 albertel 8963: return '';
8964: }
1.257 albertel 8965: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.568 raeburn 8966: my $uploadedfile;
1.710 bisitz 8967: $r->print('<p>'.&mt('Uploading file to [_1]','"'.$coursedata{'description'}.'"').'</p>');
1.257 albertel 8968: if (length($env{'form.upfile'}) < 2) {
1.710 bisitz 8969: $r->print(
8970: &Apache::lonhtmlcommon::confirm_success(
8971: &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
8972: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1));
1.183 albertel 8973: } else {
1.568 raeburn 8974: my $result =
8975: &Apache::lonnet::userfileupload('upfile','','scantron','','','',
8976: $env{'form.courseid'},$env{'form.domainid'});
1.710 bisitz 8977: if ($result =~ m{^/uploaded/}) {
8978: $r->print(
8979: &Apache::lonhtmlcommon::confirm_success(&mt('Upload successful')).'<br />'.
8980: &mt('Uploaded [_1] bytes of data into location: [_2]',
8981: (length($env{'form.upfile'})-1),
8982: '<span class="LC_filename">'.$result.'</span>'));
1.568 raeburn 8983: ($uploadedfile) = ($result =~ m{/([^/]+)$});
1.567 raeburn 8984: $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
1.568 raeburn 8985: $env{'form.courseid'},$uploadedfile));
1.710 bisitz 8986: } else {
8987: $r->print(
8988: &Apache::lonhtmlcommon::confirm_success(&mt('Upload failed'),1).'<br />'.
8989: &mt('An error ([_1]) occurred when attempting to upload the file: [_2]',
8990: $result,
1.568 raeburn 8991: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183 albertel 8992: }
8993: }
1.174 albertel 8994: if ($symb) {
1.612 www 8995: $r->print(&scantron_selectphase($r,$uploadedfile,$symb));
1.174 albertel 8996: } else {
1.182 albertel 8997: $r->print($doanotherupload);
1.174 albertel 8998: }
1.157 albertel 8999: return '';
9000: }
9001:
1.567 raeburn 9002: sub validate_uploaded_scantron_file {
9003: my ($cdom,$cname,$fname) = @_;
9004: my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
9005: my @lines;
9006: if ($scanlines ne '-1') {
9007: @lines=split("\n",$scanlines,-1);
9008: }
9009: my $output;
9010: if (@lines) {
9011: my (%counts,$max_match_format);
1.710 bisitz 9012: my ($found_match_count,$max_match_count,$max_match_pct) = (0,0,0);
1.567 raeburn 9013: my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
9014: my %idmap = &username_to_idmap($classlist);
9015: foreach my $key (keys(%idmap)) {
9016: my $lckey = lc($key);
9017: $idmap{$lckey} = $idmap{$key};
9018: }
9019: my %unique_formats;
9020: my @formatlines = &get_scantronformat_file();
9021: foreach my $line (@formatlines) {
9022: chomp($line);
9023: my @config = split(/:/,$line);
9024: my $idstart = $config[5];
9025: my $idlength = $config[6];
9026: if (($idstart ne '') && ($idlength > 0)) {
9027: if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
9028: push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]);
9029: } else {
9030: $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
9031: }
9032: }
9033: }
9034: foreach my $key (keys(%unique_formats)) {
9035: my ($idstart,$idlength) = split(':',$key);
9036: %{$counts{$key}} = (
9037: 'found' => 0,
9038: 'total' => 0,
9039: );
9040: foreach my $line (@lines) {
9041: next if ($line =~ /^#/);
9042: next if ($line =~ /^[\s\cz]*$/);
9043: my $id = substr($line,$idstart-1,$idlength);
9044: $id = lc($id);
9045: if (exists($idmap{$id})) {
9046: $counts{$key}{'found'} ++;
9047: }
9048: $counts{$key}{'total'} ++;
9049: }
9050: if ($counts{$key}{'total'}) {
9051: my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
9052: if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
9053: $max_match_pct = $percent_match;
9054: $max_match_format = $key;
1.710 bisitz 9055: $found_match_count = $counts{$key}{'found'};
1.567 raeburn 9056: $max_match_count = $counts{$key}{'total'};
9057: }
9058: }
9059: }
9060: if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
9061: my $format_descs;
9062: my $numwithformat = @{$unique_formats{$max_match_format}};
9063: for (my $i=0; $i<$numwithformat; $i++) {
9064: my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
9065: if ($i<$numwithformat-2) {
9066: $format_descs .= '"<i>'.$desc.'</i>", ';
9067: } elsif ($i==$numwithformat-2) {
9068: $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
9069: } elsif ($i==$numwithformat-1) {
9070: $format_descs .= '"<i>'.$desc.'</i>"';
9071: }
9072: }
9073: my $showpct = sprintf("%.0f",$max_match_pct).'%';
1.710 bisitz 9074: $output .= '<br />';
9075: if ($found_match_count == $max_match_count) {
9076: # 100% matching entries
9077: $output .= &Apache::lonhtmlcommon::confirm_success(
9078: &mt('Comparison of student IDs: [_1] matching ([quant,_2,entry,entries])',
9079: '<b>'.$showpct.'</b>',$found_match_count)).'<br />'.
9080: &mt('Comparison of student IDs in the uploaded file with'.
9081: ' the course roster found matches for [_1] of the [_2] entries'.
9082: ' in the file (for the format defined for [_3]).',
9083: '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs);
9084: } else {
9085: # Not all entries matching? -> Show warning and additional info
9086: $output .=
9087: &Apache::lonhtmlcommon::confirm_success(
9088: &mt('Comparison of student IDs: [_1] matching ([_2]/[quant,_3,entry,entries])',
9089: '<b>'.$showpct.'</b>',$found_match_count,$max_match_count).'<br />'.
9090: &mt('Not all entries could be matched!'),1).'<br />'.
9091: &mt('Comparison of student IDs in the uploaded file with'.
9092: ' the course roster found matches for [_1] of the [_2] entries'.
9093: ' in the file (for the format defined for [_3]).',
9094: '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs).
9095: '<p class="LC_info">'.
9096: &mt('A low percentage of matches results from one of the following:').
9097: '</p><ul>'.
9098: '<li>'.&mt('The file was uploaded to the wrong course.').'</li>'.
9099: '<li>'.&mt('The data is not in the format expected for the domain: [_1]',
9100: '<i>'.$cdom.'</i>').'</li>'.
9101: '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
9102: '<li>'.&mt('The course roster is not up to date.').'</li>'.
9103: '</ul>';
9104: }
1.567 raeburn 9105: }
9106: } else {
1.710 bisitz 9107: $output = '<p class="LC_warning">'.&mt('Uploaded file contained no data').'</p>';
1.567 raeburn 9108: }
9109: return $output;
9110: }
9111:
1.202 albertel 9112: sub valid_file {
9113: my ($requested_file)=@_;
9114: foreach my $filename (sort(&scantron_filenames())) {
9115: if ($requested_file eq $filename) { return 1; }
9116: }
9117: return 0;
9118: }
9119:
9120: sub scantron_download_scantron_data {
1.608 www 9121: my ($r,$symb)=@_;
9122: my $default_form_data=&defaultFormData($symb);
1.257 albertel 9123: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
9124: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9125: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 9126: if (! &valid_file($file)) {
1.492 albertel 9127: $r->print('
1.202 albertel 9128: <p>
1.686 bisitz 9129: '.&mt('The requested filename was invalid.').'
1.202 albertel 9130: </p>
1.492 albertel 9131: ');
1.202 albertel 9132: return;
9133: }
9134: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
9135: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
9136: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
9137: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
9138: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
9139: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492 albertel 9140: $r->print('
1.202 albertel 9141: <p>
1.723 raeburn 9142: '.&mt('[_1]Original[_2] file as uploaded by the bubblesheet scanning office.',
1.492 albertel 9143: '<a href="'.$orig.'">','</a>').'
1.202 albertel 9144: </p>
9145: <p>
1.492 albertel 9146: '.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
9147: '<a href="'.$corrected.'">','</a>').'
1.202 albertel 9148: </p>
9149: <p>
1.492 albertel 9150: '.&mt('[_1]Skipped[_2], a file of records that were skipped.',
9151: '<a href="'.$skipped.'">','</a>').'
1.202 albertel 9152: </p>
1.492 albertel 9153: ');
1.202 albertel 9154: return '';
9155: }
1.157 albertel 9156:
1.523 raeburn 9157: sub checkscantron_results {
1.608 www 9158: my ($r,$symb) = @_;
1.523 raeburn 9159: if (!$symb) {return '';}
9160: my $cid = $env{'request.course.id'};
1.542 raeburn 9161: my %lettdig = &letter_to_digits();
1.523 raeburn 9162: my $numletts = scalar(keys(%lettdig));
9163: my $cnum = $env{'course.'.$cid.'.num'};
9164: my $cdom = $env{'course.'.$cid.'.domain'};
9165: my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
9166: my %record;
9167: my %scantron_config =
9168: &Apache::grades::get_scantron_config($env{'form.scantron_format'});
1.649 raeburn 9169: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.523 raeburn 9170: my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
9171: my $classlist=&Apache::loncoursedata::get_classlist();
9172: my %idmap=&Apache::grades::username_to_idmap($classlist);
9173: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 9174: unless (ref($navmap)) {
9175: $r->print(&navmap_errormsg());
9176: return '';
9177: }
1.523 raeburn 9178: my $map=$navmap->getResourceByUrl($sequence);
1.691 raeburn 9179: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
9180: %grader_randomlists_by_symb,%orderedforcode);
1.677 raeburn 9181: if (ref($map)) {
9182: $randomorder=$map->randomorder();
1.689 raeburn 9183: $randompick=$map->randompick();
1.677 raeburn 9184: }
1.557 raeburn 9185: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.691 raeburn 9186: my $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
9187: if ($nav_error) {
9188: $r->print(&navmap_errormsg());
9189: return '';
1.678 raeburn 9190: }
1.673 raeburn 9191: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
9192: \%grader_randomlists_by_symb,$bubbles_per_row);
1.554 raeburn 9193: my ($uname,$udom);
1.523 raeburn 9194: my (%scandata,%lastname,%bylast);
9195: $r->print('
9196: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
9197:
9198: my @delayqueue;
9199: my %completedstudents;
9200:
1.691 raeburn 9201: my $count=&get_todo_count($scanlines,$scan_data);
1.667 www 9202: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1.706 raeburn 9203: my ($username,$domain,$started);
1.649 raeburn 9204: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 9205: if ($nav_error) {
9206: $r->print(&navmap_errormsg());
9207: return '';
9208: }
1.523 raeburn 9209:
1.667 www 9210: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.523 raeburn 9211: my $start=&Time::HiRes::time();
9212: my $i=-1;
9213:
9214: while ($i<$scanlines->{'count'}) {
9215: ($username,$domain,$uname)=('','','');
9216: $i++;
9217: my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
9218: if ($line=~/^[\s\cz]*$/) { next; }
9219: if ($started) {
1.667 www 9220: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.523 raeburn 9221: }
9222: $started=1;
9223: my $scan_record=
9224: &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
9225: $scan_data);
1.693 raeburn 9226: unless ($uname=&scantron_find_student($scan_record,$scan_data,
9227: \%idmap,$i)) {
1.523 raeburn 9228: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
9229: 'Unable to find a student that matches',1);
9230: next;
9231: }
9232: if (exists $completedstudents{$uname}) {
9233: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
9234: 'Student '.$uname.' has multiple sheets',2);
9235: next;
9236: }
9237: my $pid = $scan_record->{'scantron.ID'};
9238: $lastname{$pid} = $scan_record->{'scantron.LastName'};
9239: push(@{$bylast{$lastname{$pid}}},$pid);
1.678 raeburn 9240: my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
9241: my $user = $uname.':'.$usec;
1.523 raeburn 9242: ($username,$domain)=split(/:/,$uname);
1.677 raeburn 9243:
1.678 raeburn 9244: my $scancode;
1.677 raeburn 9245: if ((exists($scan_record->{'scantron.CODE'})) &&
9246: (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
9247: $scancode = $scan_record->{'scantron.CODE'};
9248: } else {
9249: $scancode = '';
9250: }
9251:
9252: my @mapresources = @resources;
1.691 raeburn 9253: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
9254: my %respnumlookup=();
9255: my %startline=();
1.689 raeburn 9256: if ($randomorder || $randompick) {
1.678 raeburn 9257: @mapresources =
1.691 raeburn 9258: &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
9259: \%orderedforcode);
9260: my $total = &get_respnum_lookups($sequence,$scan_data,\%idmap,$line,
9261: $scan_record,\@master_seq,\%symb_to_resource,
9262: \%grader_partids_by_symb,\%orderedforcode,
9263: \%respnumlookup,\%startline);
9264: if ($randompick && $total) {
9265: $lastpos = $total*$scantron_config{'Qlength'};
9266: }
1.677 raeburn 9267: }
1.691 raeburn 9268: $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
9269: chomp($scandata{$pid});
9270: $scandata{$pid} =~ s/\r$//;
9271:
1.523 raeburn 9272: my $counter = -1;
1.677 raeburn 9273: foreach my $resource (@mapresources) {
1.557 raeburn 9274: my $parts;
1.554 raeburn 9275: my $ressymb = $resource->symb();
1.557 raeburn 9276: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
9277: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
1.741 raeburn 9278: my $currcode;
9279: if (exists($grader_randomlists_by_symb{$ressymb})) {
9280: $currcode = $scancode;
9281: }
1.557 raeburn 9282: (my $analysis,$parts) =
1.672 raeburn 9283: &scantron_partids_tograde($resource,$env{'request.course.id'},
9284: $username,$domain,undef,
1.741 raeburn 9285: $bubbles_per_row,$currcode);
1.557 raeburn 9286: } else {
9287: $parts = $grader_partids_by_symb{$ressymb};
9288: }
1.542 raeburn 9289: ($counter,my $recording) =
9290: &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
1.554 raeburn 9291: $scandata{$pid},$parts,
1.691 raeburn 9292: \%scantron_config,\%lettdig,$numletts,
9293: $randomorder,$randompick,
9294: \%respnumlookup,\%startline);
1.542 raeburn 9295: $record{$pid} .= $recording;
1.523 raeburn 9296: }
9297: }
9298: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
9299: $r->print('<br />');
9300: my ($okstudents,$badstudents,$numstudents,$passed,$failed);
9301: $passed = 0;
9302: $failed = 0;
9303: $numstudents = 0;
9304: foreach my $last (sort(keys(%bylast))) {
9305: if (ref($bylast{$last}) eq 'ARRAY') {
9306: foreach my $pid (sort(@{$bylast{$last}})) {
9307: my $showscandata = $scandata{$pid};
9308: my $showrecord = $record{$pid};
9309: $showscandata =~ s/\s/ /g;
9310: $showrecord =~ s/\s/ /g;
9311: if ($scandata{$pid} eq $record{$pid}) {
9312: my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
9313: $okstudents .= '<tr class="'.$css_class.'">'.
1.581 www 9314: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
1.523 raeburn 9315: '</tr>'."\n".
9316: '<tr class="'.$css_class.'">'."\n".
1.721 bisitz 9317: '<td>'.&mt('Submissions').'</td><td>'.$showrecord.'</td></tr>'."\n";
1.523 raeburn 9318: $passed ++;
9319: } else {
9320: my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
1.581 www 9321: $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 9322: '</tr>'."\n".
9323: '<tr class="'.$css_class.'">'."\n".
1.721 bisitz 9324: '<td>'.&mt('Submissions').'</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
1.523 raeburn 9325: '</tr>'."\n";
9326: $failed ++;
9327: }
9328: $numstudents ++;
9329: }
9330: }
9331: }
1.648 bisitz 9332: $r->print(
9333: '<p>'
9334: .&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).',
9335: '<b>',
9336: $numstudents,
9337: '</b>',
9338: $env{'form.scantron_maxbubble'})
9339: .'</p>'
9340: );
1.682 raeburn 9341: $r->print('<p>'
1.683 raeburn 9342: .&mt('Exact matches for [_1][quant,_2,student][_3].','<b>',$passed,'</b>')
1.682 raeburn 9343: .'<br />'
9344: .&mt('Discrepancies detected for [_1][quant,_2,student][_3].','<b>',$failed,'</b>')
9345: .'</p>'
9346: );
1.523 raeburn 9347: if ($passed) {
1.572 www 9348: $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 9349: $r->print(&Apache::loncommon::start_data_table()."\n".
9350: &Apache::loncommon::start_data_table_header_row()."\n".
9351: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
9352: &Apache::loncommon::end_data_table_header_row()."\n".
9353: $okstudents."\n".
9354: &Apache::loncommon::end_data_table().'<br />');
9355: }
9356: if ($failed) {
1.572 www 9357: $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 9358: $r->print(&Apache::loncommon::start_data_table()."\n".
9359: &Apache::loncommon::start_data_table_header_row()."\n".
9360: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
9361: &Apache::loncommon::end_data_table_header_row()."\n".
9362: $badstudents."\n".
9363: &Apache::loncommon::end_data_table()).'<br />'.
1.572 www 9364: &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 9365: }
1.614 www 9366: $r->print('</form><br />');
1.523 raeburn 9367: return;
9368: }
9369:
1.542 raeburn 9370: sub verify_scantron_grading {
1.554 raeburn 9371: my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
1.691 raeburn 9372: $scantron_config,$lettdig,$numletts,$randomorder,$randompick,
9373: $respnumlookup,$startline) = @_;
1.542 raeburn 9374: my ($record,%expected,%startpos);
9375: return ($counter,$record) if (!ref($resource));
9376: return ($counter,$record) if (!$resource->is_problem());
9377: my $symb = $resource->symb();
1.554 raeburn 9378: return ($counter,$record) if (ref($partids) ne 'ARRAY');
9379: foreach my $part_id (@{$partids}) {
1.542 raeburn 9380: $counter ++;
9381: $expected{$part_id} = 0;
1.691 raeburn 9382: my $respnum = $counter;
9383: if ($randomorder || $randompick) {
9384: $respnum = $respnumlookup->{$counter};
9385: $startpos{$part_id} = $startline->{$counter} + 1;
9386: } else {
9387: $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
9388: }
9389: if ($env{"form.scantron.sub_bubblelines.$respnum"}) {
9390: my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$respnum"});
1.542 raeburn 9391: foreach my $item (@sub_lines) {
9392: $expected{$part_id} += $item;
9393: }
9394: } else {
1.691 raeburn 9395: $expected{$part_id} = $env{"form.scantron.bubblelines.$respnum"};
1.542 raeburn 9396: }
9397: }
9398: if ($symb) {
9399: my %recorded;
9400: my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
9401: if ($returnhash{'version'}) {
9402: my %lasthash=();
9403: my $version;
9404: for ($version=1;$version<=$returnhash{'version'};$version++) {
9405: foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
9406: $lasthash{$key}=$returnhash{$version.':'.$key};
9407: }
9408: }
9409: foreach my $key (keys(%lasthash)) {
9410: if ($key =~ /\.scantron$/) {
9411: my $value = &unescape($lasthash{$key});
9412: my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
9413: if ($value eq '') {
9414: for (my $i=0; $i<$expected{$part_id}; $i++) {
9415: for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
9416: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9417: }
9418: }
9419: } else {
9420: my @tocheck;
9421: my @items = split(//,$value);
9422: if (($scantron_config->{'Qon'} eq 'letter') ||
9423: ($scantron_config->{'Qon'} eq 'number')) {
9424: if (@items < $expected{$part_id}) {
9425: my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
9426: my @singles = split(//,$fragment);
9427: foreach my $pos (@singles) {
9428: if ($pos eq ' ') {
9429: push(@tocheck,$pos);
9430: } else {
9431: my $next = shift(@items);
9432: push(@tocheck,$next);
9433: }
9434: }
9435: } else {
9436: @tocheck = @items;
9437: }
9438: foreach my $letter (@tocheck) {
9439: if ($scantron_config->{'Qon'} eq 'letter') {
9440: if ($letter !~ /^[A-J]$/) {
9441: $letter = $scantron_config->{'Qoff'};
9442: }
9443: $recorded{$part_id} .= $letter;
9444: } elsif ($scantron_config->{'Qon'} eq 'number') {
9445: my $digit;
9446: if ($letter !~ /^[A-J]$/) {
9447: $digit = $scantron_config->{'Qoff'};
9448: } else {
9449: $digit = $lettdig->{$letter};
9450: }
9451: $recorded{$part_id} .= $digit;
9452: }
9453: }
9454: } else {
9455: @tocheck = @items;
9456: for (my $i=0; $i<$expected{$part_id}; $i++) {
9457: my $curr_sub = shift(@tocheck);
9458: my $digit;
9459: if ($curr_sub =~ /^[A-J]$/) {
9460: $digit = $lettdig->{$curr_sub}-1;
9461: }
9462: if ($curr_sub eq 'J') {
9463: $digit += scalar($numletts);
9464: }
9465: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
9466: if ($j == $digit) {
9467: $recorded{$part_id} .= $scantron_config->{'Qon'};
9468: } else {
9469: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9470: }
9471: }
9472: }
9473: }
9474: }
9475: }
9476: }
9477: }
1.554 raeburn 9478: foreach my $part_id (@{$partids}) {
1.542 raeburn 9479: if ($recorded{$part_id} eq '') {
9480: for (my $i=0; $i<$expected{$part_id}; $i++) {
9481: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
9482: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9483: }
9484: }
9485: }
9486: $record .= $recorded{$part_id};
9487: }
9488: }
9489: return ($counter,$record);
9490: }
9491:
1.691 raeburn 9492: sub letter_to_digits {
1.542 raeburn 9493: my %lettdig = (
9494: A => 1,
9495: B => 2,
9496: C => 3,
9497: D => 4,
9498: E => 5,
9499: F => 6,
9500: G => 7,
9501: H => 8,
9502: I => 9,
9503: J => 0,
9504: );
9505: return %lettdig;
9506: }
9507:
1.423 albertel 9508:
1.75 albertel 9509: #-------- end of section for handling grading scantron forms -------
9510: #
9511: #-------------------------------------------------------------------
9512:
1.72 ng 9513: #-------------------------- Menu interface -------------------------
9514: #
1.614 www 9515: #--- Href with symb and command ---
9516:
9517: sub href_symb_cmd {
9518: my ($symb,$cmd)=@_;
1.669 raeburn 9519: return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&command='.$cmd;
1.72 ng 9520: }
9521:
1.443 banghart 9522: sub grading_menu {
1.608 www 9523: my ($request,$symb) = @_;
1.443 banghart 9524: if (!$symb) {return '';}
9525:
9526: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
1.618 www 9527: 'command'=>'individual');
1.538 schulted 9528:
1.598 www 9529: my $url1a = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9530:
9531: $fields{'command'}='ungraded';
9532: my $url1b=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9533:
9534: $fields{'command'}='table';
9535: my $url1c=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9536:
9537: $fields{'command'}='all_for_one';
9538: my $url1d=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9539:
1.621 www 9540: $fields{'command'}='downloadfilesselect';
9541: my $url1e=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9542:
1.443 banghart 9543: $fields{'command'} = 'csvform';
1.538 schulted 9544: my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9545:
1.443 banghart 9546: $fields{'command'} = 'processclicker';
1.538 schulted 9547: my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9548:
1.443 banghart 9549: $fields{'command'} = 'scantron_selectphase';
1.538 schulted 9550: my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.602 www 9551:
9552: $fields{'command'} = 'initialverifyreceipt';
9553: my $url5 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.538 schulted 9554:
1.598 www 9555: my @menu = ({ categorytitle=>'Hand Grading',
1.538 schulted 9556: items =>[
1.598 www 9557: { linktext => 'Select individual students to grade',
9558: url => $url1a,
1.538 schulted 9559: permission => 'F',
1.636 wenzelju 9560: icon => 'grade_students.png',
1.598 www 9561: linktitle => 'Grade current resource for a selection of students.'
9562: },
9563: { linktext => 'Grade ungraded submissions.',
9564: url => $url1b,
9565: permission => 'F',
1.636 wenzelju 9566: icon => 'ungrade_sub.png',
1.598 www 9567: linktitle => 'Grade all submissions that have not been graded yet.'
1.538 schulted 9568: },
1.598 www 9569:
9570: { linktext => 'Grading table',
9571: url => $url1c,
9572: permission => 'F',
1.636 wenzelju 9573: icon => 'grading_table.png',
1.598 www 9574: linktitle => 'Grade current resource for all students.'
9575: },
1.615 www 9576: { linktext => 'Grade page/folder for one student',
1.598 www 9577: url => $url1d,
9578: permission => 'F',
1.636 wenzelju 9579: icon => 'grade_PageFolder.png',
1.598 www 9580: linktitle => 'Grade all resources in current page/sequence/folder for one student.'
1.621 www 9581: },
9582: { linktext => 'Download submissions',
9583: url => $url1e,
9584: permission => 'F',
1.636 wenzelju 9585: icon => 'download_sub.png',
1.621 www 9586: linktitle => 'Download all students submissions.'
1.598 www 9587: }]},
9588: { categorytitle=>'Automated Grading',
9589: items =>[
9590:
1.538 schulted 9591: { linktext => 'Upload Scores',
9592: url => $url2,
9593: permission => 'F',
9594: icon => 'uploadscores.png',
9595: linktitle => 'Specify a file containing the class scores for current resource.'
9596: },
9597: { linktext => 'Process Clicker',
9598: url => $url3,
9599: permission => 'F',
9600: icon => 'addClickerInfoFile.png',
9601: linktitle => 'Specify a file containing the clicker information for this resource.'
9602: },
1.587 raeburn 9603: { linktext => 'Grade/Manage/Review Bubblesheets',
1.538 schulted 9604: url => $url4,
9605: permission => 'F',
1.636 wenzelju 9606: icon => 'bubblesheet.png',
1.648 bisitz 9607: linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
1.602 www 9608: },
1.616 www 9609: { linktext => 'Verify Receipt Number',
1.602 www 9610: url => $url5,
9611: permission => 'F',
1.636 wenzelju 9612: icon => 'receipt_number.png',
1.602 www 9613: linktitle => 'Verify a system-generated receipt number for correct problem solution.'
9614: }
9615:
1.538 schulted 9616: ]
9617: });
9618:
1.443 banghart 9619: # Create the menu
9620: my $Str;
1.445 banghart 9621: $Str .= '<form method="post" action="" name="gradingMenu">';
9622: $Str .= '<input type="hidden" name="command" value="" />'.
1.618 www 9623: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.445 banghart 9624:
1.602 www 9625: $Str .= &Apache::lonhtmlcommon::generate_menu(@menu);
1.443 banghart 9626: return $Str;
9627: }
9628:
1.598 www 9629:
9630: sub ungraded {
9631: my ($request)=@_;
9632: &submit_options($request);
9633: }
9634:
1.599 www 9635: sub submit_options_sequence {
1.608 www 9636: my ($request,$symb) = @_;
1.599 www 9637: if (!$symb) {return '';}
1.600 www 9638: &commonJSfunctions($request);
9639: my $result;
1.599 www 9640:
1.600 www 9641: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 9642: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 9643: $result.=&selectfield(0).
1.601 www 9644: '<input type="hidden" name="command" value="pickStudentPage" />
1.600 www 9645: <div>
9646: <input type="submit" value="'.&mt('Next').' →" />
9647: </div>
9648: </div>
9649: </form>';
9650: return $result;
9651: }
9652:
9653: sub submit_options_table {
1.608 www 9654: my ($request,$symb) = @_;
1.600 www 9655: if (!$symb) {return '';}
1.599 www 9656: &commonJSfunctions($request);
9657: my $result;
9658:
9659: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 9660: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.599 www 9661:
1.738 raeburn 9662: $result.=&selectfield(1).
1.601 www 9663: '<input type="hidden" name="command" value="viewgrades" />
1.599 www 9664: <div>
9665: <input type="submit" value="'.&mt('Next').' →" />
9666: </div>
9667: </div>
9668: </form>';
9669: return $result;
9670: }
1.443 banghart 9671:
1.621 www 9672: sub submit_options_download {
9673: my ($request,$symb) = @_;
9674: if (!$symb) {return '';}
9675:
9676: &commonJSfunctions($request);
9677:
9678: my $result='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
9679: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
9680: $result.='
9681: <h2>
9682: '.&mt('Select Students for Which to Download Submissions').'
9683: </h2>'.&selectfield(1).'
9684: <input type="hidden" name="command" value="downloadfileslink" />
9685: <input type="submit" value="'.&mt('Next').' →" />
9686: </div>
9687: </div>
1.600 www 9688:
9689:
1.621 www 9690: </form>';
9691: return $result;
9692: }
9693:
1.443 banghart 9694: #--- Displays the submissions first page -------
9695: sub submit_options {
1.608 www 9696: my ($request,$symb) = @_;
1.72 ng 9697: if (!$symb) {return '';}
9698:
1.118 ng 9699: &commonJSfunctions($request);
1.473 albertel 9700: my $result;
1.533 bisitz 9701:
1.72 ng 9702: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 9703: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 9704: $result.=&selectfield(1).'
1.601 www 9705: <input type="hidden" name="command" value="submission" />
9706: <input type="submit" value="'.&mt('Next').' →" />
9707: </div>
9708: </div>
9709:
9710:
9711: </form>';
9712: return $result;
9713: }
1.533 bisitz 9714:
1.601 www 9715: sub selectfield {
9716: my ($full)=@_;
1.635 raeburn 9717: my %options =
1.738 raeburn 9718: (&substatus_options,
9719: 'select_form_order' => ['yes','queued','graded','incorrect','all']);
1.601 www 9720: my $result='<div class="LC_columnSection">
1.537 harmsja 9721:
1.533 bisitz 9722: <fieldset>
9723: <legend>
9724: '.&mt('Sections').'
9725: </legend>
1.601 www 9726: '.&Apache::lonstatistics::SectionSelect('section','multiple',5).'
1.533 bisitz 9727: </fieldset>
1.537 harmsja 9728:
1.533 bisitz 9729: <fieldset>
9730: <legend>
9731: '.&mt('Groups').'
9732: </legend>
9733: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
9734: </fieldset>
1.537 harmsja 9735:
1.533 bisitz 9736: <fieldset>
9737: <legend>
9738: '.&mt('Access Status').'
9739: </legend>
1.601 www 9740: '.&Apache::lonhtmlcommon::StatusOptions(undef,undef,5,undef,'mult').'
9741: </fieldset>';
9742: if ($full) {
9743: $result.='
1.533 bisitz 9744: <fieldset>
9745: <legend>
9746: '.&mt('Submission Status').'
1.601 www 9747: </legend>'.
1.635 raeburn 9748: &Apache::loncommon::select_form('all','submitonly',\%options).
1.601 www 9749: '</fieldset>';
9750: }
9751: $result.='</div><br />';
1.44 ng 9752: return $result;
1.2 albertel 9753: }
9754:
1.738 raeburn 9755: sub substatus_options {
9756: return &Apache::lonlocal::texthash(
9757: 'yes' => 'with submissions',
9758: 'queued' => 'in grading queue',
9759: 'graded' => 'with ungraded submissions',
9760: 'incorrect' => 'with incorrect submissions',
1.740 raeburn 9761: 'all' => 'with any status',
9762: );
1.738 raeburn 9763: }
9764:
1.285 albertel 9765: sub reset_perm {
9766: undef(%perm);
9767: }
9768:
9769: sub init_perm {
9770: &reset_perm();
1.300 albertel 9771: foreach my $test_perm ('vgr','mgr','opa') {
9772:
9773: my $scope = $env{'request.course.id'};
9774: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
9775:
9776: $scope .= '/'.$env{'request.course.sec'};
9777: if ( $perm{$test_perm}=
9778: &Apache::lonnet::allowed($test_perm,$scope)) {
9779: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
9780: } else {
9781: delete($perm{$test_perm});
9782: }
1.285 albertel 9783: }
9784: }
9785: }
9786:
1.674 raeburn 9787: sub init_old_essays {
9788: my ($symb,$apath,$adom,$aname) = @_;
9789: if ($symb ne '') {
9790: my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
9791: if (keys(%essays) > 0) {
9792: $old_essays{$symb} = \%essays;
9793: }
9794: }
9795: return;
9796: }
9797:
9798: sub reset_old_essays {
9799: undef(%old_essays);
9800: }
9801:
1.400 www 9802: sub gather_clicker_ids {
1.408 albertel 9803: my %clicker_ids;
1.400 www 9804:
9805: my $classlist = &Apache::loncoursedata::get_classlist();
9806:
9807: # Set up a couple variables.
1.407 albertel 9808: my $username_idx = &Apache::loncoursedata::CL_SNAME();
9809: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 9810: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 9811:
1.407 albertel 9812: foreach my $student (keys(%$classlist)) {
1.438 www 9813: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 9814: my $username = $classlist->{$student}->[$username_idx];
9815: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 9816: my $clickers =
1.408 albertel 9817: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 9818: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9819: $id=~s/^[\#0]+//;
1.421 www 9820: $id=~s/[\-\:]//g;
1.407 albertel 9821: if (exists($clicker_ids{$id})) {
1.408 albertel 9822: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 9823: } else {
1.408 albertel 9824: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 9825: }
9826: }
9827: }
1.407 albertel 9828: return %clicker_ids;
1.400 www 9829: }
9830:
1.402 www 9831: sub gather_adv_clicker_ids {
1.408 albertel 9832: my %clicker_ids;
1.402 www 9833: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
9834: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9835: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 9836: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 9837: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
9838: my ($puname,$pudom)=split(/\:/,$person);
9839: my $clickers =
1.408 albertel 9840: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 9841: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9842: $id=~s/^[\#0]+//;
1.421 www 9843: $id=~s/[\-\:]//g;
1.408 albertel 9844: if (exists($clicker_ids{$id})) {
9845: $clicker_ids{$id}.=','.$puname.':'.$pudom;
9846: } else {
9847: $clicker_ids{$id}=$puname.':'.$pudom;
9848: }
1.405 www 9849: }
1.402 www 9850: }
9851: }
1.407 albertel 9852: return %clicker_ids;
1.402 www 9853: }
9854:
1.413 www 9855: sub clicker_grading_parameters {
9856: return ('gradingmechanism' => 'scalar',
9857: 'upfiletype' => 'scalar',
9858: 'specificid' => 'scalar',
9859: 'pcorrect' => 'scalar',
9860: 'pincorrect' => 'scalar');
9861: }
9862:
1.400 www 9863: sub process_clicker {
1.608 www 9864: my ($r,$symb)=@_;
1.400 www 9865: if (!$symb) {return '';}
9866: my $result=&checkforfile_js();
1.632 www 9867: $result.=&Apache::loncommon::start_data_table().
9868: &Apache::loncommon::start_data_table_header_row().
9869: '<th>'.&mt('Specify a file containing clicker information and set grading options.').'</th>'.
9870: &Apache::loncommon::end_data_table_header_row().
9871: &Apache::loncommon::start_data_table_row()."<td>\n";
1.413 www 9872: # Attempt to restore parameters from last session, set defaults if not present
9873: my %Saveable_Parameters=&clicker_grading_parameters();
9874: &Apache::loncommon::restore_course_settings('grades_clicker',
9875: \%Saveable_Parameters);
9876: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
9877: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
9878: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
9879: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
9880:
9881: my %checked;
1.521 www 9882: foreach my $gradingmechanism ('attendance','personnel','specific','given') {
1.413 www 9883: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
1.569 bisitz 9884: $checked{$gradingmechanism}=' checked="checked"';
1.413 www 9885: }
9886: }
9887:
1.632 www 9888: my $upload=&mt("Evaluate File");
1.400 www 9889: my $type=&mt("Type");
1.402 www 9890: my $attendance=&mt("Award points just for participation");
9891: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 9892: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.521 www 9893: my $given=&mt("Correctness determined from given list of answers").' '.
9894: '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
1.402 www 9895: my $pcorrect=&mt("Percentage points for correct solution");
9896: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 9897: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.635 raeburn 9898: {'iclicker' => 'i>clicker',
1.666 www 9899: 'interwrite' => 'interwrite PRS',
9900: 'turning' => 'Turning Technologies'});
1.418 albertel 9901: $symb = &Apache::lonenc::check_encrypt($symb);
1.597 wenzelju 9902: $result.= &Apache::lonhtmlcommon::scripttag(<<ENDUPFORM);
1.402 www 9903: function sanitycheck() {
9904: // Accept only integer percentages
9905: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
9906: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
9907: // Find out grading choice
9908: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9909: if (document.forms.gradesupload.gradingmechanism[i].checked) {
9910: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
9911: }
9912: }
9913: // By default, new choice equals user selection
9914: newgradingchoice=gradingchoice;
9915: // Not good to give more points for false answers than correct ones
9916: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
9917: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
9918: }
9919: // If new choice is attendance only, and old choice was correctness-based, restore defaults
9920: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
9921: document.forms.gradesupload.pcorrect.value=100;
9922: document.forms.gradesupload.pincorrect.value=100;
9923: }
9924: // If the values are different, cannot be attendance only
9925: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
9926: (gradingchoice=='attendance')) {
9927: newgradingchoice='personnel';
9928: }
9929: // Change grading choice to new one
9930: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9931: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
9932: document.forms.gradesupload.gradingmechanism[i].checked=true;
9933: } else {
9934: document.forms.gradesupload.gradingmechanism[i].checked=false;
9935: }
9936: }
9937: // Remember the old state
9938: document.forms.gradesupload.waschecked.value=newgradingchoice;
9939: }
1.597 wenzelju 9940: ENDUPFORM
9941: $result.= <<ENDUPFORM;
1.400 www 9942: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
9943: <input type="hidden" name="symb" value="$symb" />
9944: <input type="hidden" name="command" value="processclickerfile" />
9945: <input type="file" name="upfile" size="50" />
9946: <br /><label>$type: $selectform</label>
1.632 www 9947: ENDUPFORM
9948: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9949: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDGRADINGFORM);
9950: <label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
1.589 bisitz 9951: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
9952: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
1.414 www 9953: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.589 bisitz 9954: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
1.521 www 9955: <br />
9956: <input type="text" name="givenanswer" size="50" />
1.413 www 9957: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
1.632 www 9958: ENDGRADINGFORM
9959: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9960: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDPERCFORM);
9961: <label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
1.589 bisitz 9962: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
9963: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.597 wenzelju 9964: </form>'
1.632 www 9965: ENDPERCFORM
9966: $result.='</td>'.
9967: &Apache::loncommon::end_data_table_row().
9968: &Apache::loncommon::end_data_table();
1.400 www 9969: return $result;
9970: }
9971:
9972: sub process_clicker_file {
1.608 www 9973: my ($r,$symb)=@_;
1.400 www 9974: if (!$symb) {return '';}
1.413 www 9975:
9976: my %Saveable_Parameters=&clicker_grading_parameters();
9977: &Apache::loncommon::store_course_settings('grades_clicker',
9978: \%Saveable_Parameters);
1.598 www 9979: my $result='';
1.404 www 9980: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 9981: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
1.614 www 9982: return $result;
1.404 www 9983: }
1.522 www 9984: if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
1.521 www 9985: $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
1.614 www 9986: return $result;
1.521 www 9987: }
1.522 www 9988: my $foundgiven=0;
1.521 www 9989: if ($env{'form.gradingmechanism'} eq 'given') {
9990: $env{'form.givenanswer'}=~s/^\s*//gs;
9991: $env{'form.givenanswer'}=~s/\s*$//gs;
1.644 www 9992: $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
1.521 www 9993: $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
1.522 www 9994: my @answers=split(/\,/,$env{'form.givenanswer'});
9995: $foundgiven=$#answers+1;
1.521 www 9996: }
1.407 albertel 9997: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 9998: my %correct_ids;
1.404 www 9999: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 10000: %correct_ids=&gather_adv_clicker_ids();
1.404 www 10001: }
10002: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 10003: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
10004: $correct_id=~tr/a-z/A-Z/;
10005: $correct_id=~s/\s//gs;
10006: $correct_id=~s/^[\#0]+//;
1.421 www 10007: $correct_id=~s/[\-\:]//g;
1.414 www 10008: if ($correct_id) {
10009: $correct_ids{$correct_id}='specified';
10010: }
10011: }
1.400 www 10012: }
1.404 www 10013: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 10014: $result.=&mt('Score based on attendance only');
1.521 www 10015: } elsif ($env{'form.gradingmechanism'} eq 'given') {
1.522 www 10016: $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
1.404 www 10017: } else {
1.408 albertel 10018: my $number=0;
1.411 www 10019: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 10020: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 10021: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 10022: if ($correct_ids{$id} eq 'specified') {
10023: $result.=&mt('specified');
10024: } else {
10025: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
10026: $result.=&Apache::loncommon::plainname($uname,$udom);
10027: }
10028: $number++;
10029: }
1.411 www 10030: $result.="</p>\n";
1.710 bisitz 10031: if ($number==0) {
10032: $result .=
10033: &Apache::lonhtmlcommon::confirm_success(
10034: &mt('No IDs found to determine correct answer'),1);
10035: return $result;
10036: }
1.404 www 10037: }
1.405 www 10038: if (length($env{'form.upfile'}) < 2) {
1.710 bisitz 10039: $result .=
10040: &Apache::lonhtmlcommon::confirm_success(
10041: &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
10042: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1);
1.614 www 10043: return $result;
1.405 www 10044: }
1.410 www 10045:
10046: # Were able to get all the info needed, now analyze the file
10047:
1.411 www 10048: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 10049: $symb = &Apache::lonenc::check_encrypt($symb);
1.632 www 10050: $result.=&Apache::loncommon::start_data_table().
10051: &Apache::loncommon::start_data_table_header_row().
10052: '<th>'.&mt('Evaluate clicker file').'</th>'.
10053: &Apache::loncommon::end_data_table_header_row().
10054: &Apache::loncommon::start_data_table_row().(<<ENDHEADER);
10055: <td>
1.410 www 10056: <form method="post" action="/adm/grades" name="clickeranalysis">
10057: <input type="hidden" name="symb" value="$symb" />
10058: <input type="hidden" name="command" value="assignclickergrades" />
1.411 www 10059: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
10060: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
10061: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 10062: ENDHEADER
1.522 www 10063: if ($env{'form.gradingmechanism'} eq 'given') {
10064: $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
10065: }
1.408 albertel 10066: my %responses;
10067: my @questiontitles;
1.405 www 10068: my $errormsg='';
10069: my $number=0;
10070: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 10071: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 10072: }
1.419 www 10073: if ($env{'form.upfiletype'} eq 'interwrite') {
10074: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
10075: }
1.666 www 10076: if ($env{'form.upfiletype'} eq 'turning') {
10077: ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
10078: }
1.411 www 10079: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
10080: '<input type="hidden" name="number" value="'.$number.'" />'.
10081: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
10082: $env{'form.pcorrect'},$env{'form.pincorrect'}).
10083: '<br />';
1.522 www 10084: if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
10085: $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
1.614 www 10086: return $result;
1.522 www 10087: }
1.414 www 10088: # Remember Question Titles
10089: # FIXME: Possibly need delimiter other than ":"
10090: for (my $i=0;$i<$number;$i++) {
10091: $result.='<input type="hidden" name="question:'.$i.'" value="'.
10092: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
10093: }
1.411 www 10094: my $correct_count=0;
10095: my $student_count=0;
10096: my $unknown_count=0;
1.414 www 10097: # Match answers with usernames
10098: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 10099: foreach my $id (keys(%responses)) {
1.410 www 10100: if ($correct_ids{$id}) {
1.414 www 10101: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 10102: $correct_count++;
1.410 www 10103: } elsif ($clicker_ids{$id}) {
1.437 www 10104: if ($clicker_ids{$id}=~/\,/) {
10105: # More than one user with the same clicker!
1.632 www 10106: $result.="</td>".&Apache::loncommon::end_data_table_row().
10107: &Apache::loncommon::start_data_table_row()."<td>".
10108: &mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
1.437 www 10109: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10110: "<select name='multi".$id."'>";
10111: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
10112: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
10113: }
10114: $result.='</select>';
10115: $unknown_count++;
10116: } else {
10117: # Good: found one and only one user with the right clicker
10118: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
10119: $student_count++;
10120: }
1.410 www 10121: } else {
1.632 www 10122: $result.="</td>".&Apache::loncommon::end_data_table_row().
10123: &Apache::loncommon::start_data_table_row()."<td>".
10124: &mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
1.411 www 10125: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10126: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
10127: "\n".&mt("Domain").": ".
10128: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
1.643 www 10129: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
1.411 www 10130: $unknown_count++;
1.410 www 10131: }
1.405 www 10132: }
1.412 www 10133: $result.='<hr />'.
10134: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
1.521 www 10135: if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
1.412 www 10136: if ($correct_count==0) {
1.696 bisitz 10137: $errormsg.="Found no correct answers for grading!";
1.412 www 10138: } elsif ($correct_count>1) {
1.414 www 10139: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 10140: }
10141: }
1.428 www 10142: if ($number<1) {
10143: $errormsg.="Found no questions.";
10144: }
1.412 www 10145: if ($errormsg) {
10146: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
10147: } else {
10148: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
10149: }
1.632 www 10150: $result.='</form></td>'.
10151: &Apache::loncommon::end_data_table_row().
10152: &Apache::loncommon::end_data_table();
1.614 www 10153: return $result;
1.400 www 10154: }
10155:
1.405 www 10156: sub iclicker_eval {
1.406 www 10157: my ($questiontitles,$responses)=@_;
1.405 www 10158: my $number=0;
10159: my $errormsg='';
10160: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 10161: my %components=&Apache::loncommon::record_sep($line);
10162: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 10163: if ($entries[0] eq 'Question') {
10164: for (my $i=3;$i<$#entries;$i+=6) {
10165: $$questiontitles[$number]=$entries[$i];
10166: $number++;
10167: }
10168: }
10169: if ($entries[0]=~/^\#/) {
10170: my $id=$entries[0];
10171: my @idresponses;
10172: $id=~s/^[\#0]+//;
10173: for (my $i=0;$i<$number;$i++) {
10174: my $idx=3+$i*6;
1.644 www 10175: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
1.408 albertel 10176: push(@idresponses,$entries[$idx]);
10177: }
10178: $$responses{$id}=join(',',@idresponses);
10179: }
1.405 www 10180: }
10181: return ($errormsg,$number);
10182: }
10183:
1.419 www 10184: sub interwrite_eval {
10185: my ($questiontitles,$responses)=@_;
10186: my $number=0;
10187: my $errormsg='';
1.420 www 10188: my $skipline=1;
10189: my $questionnumber=0;
10190: my %idresponses=();
1.419 www 10191: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10192: my %components=&Apache::loncommon::record_sep($line);
10193: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 10194: if ($entries[1] eq 'Time') { $skipline=0; next; }
10195: if ($entries[1] eq 'Response') { $skipline=1; }
10196: next if $skipline;
10197: if ($entries[0]!=$questionnumber) {
10198: $questionnumber=$entries[0];
10199: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
10200: $number++;
1.419 www 10201: }
1.420 www 10202: my $id=$entries[4];
10203: $id=~s/^[\#0]+//;
1.421 www 10204: $id=~s/^v\d*\://i;
10205: $id=~s/[\-\:]//g;
1.420 www 10206: $idresponses{$id}[$number]=$entries[6];
10207: }
1.524 raeburn 10208: foreach my $id (keys(%idresponses)) {
1.420 www 10209: $$responses{$id}=join(',',@{$idresponses{$id}});
10210: $$responses{$id}=~s/^\s*\,//;
1.419 www 10211: }
10212: return ($errormsg,$number);
10213: }
10214:
1.666 www 10215: sub turning_eval {
10216: my ($questiontitles,$responses)=@_;
10217: my $number=0;
10218: my $errormsg='';
10219: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10220: my %components=&Apache::loncommon::record_sep($line);
10221: my @entries=map {$components{$_}} (sort(keys(%components)));
10222: if ($#entries>$number) { $number=$#entries; }
10223: my $id=$entries[0];
10224: my @idresponses;
10225: $id=~s/^[\#0]+//;
10226: unless ($id) { next; }
10227: for (my $idx=1;$idx<=$#entries;$idx++) {
10228: $entries[$idx]=~s/\,/\;/g;
10229: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
10230: push(@idresponses,$entries[$idx]);
10231: }
10232: $$responses{$id}=join(',',@idresponses);
10233: }
10234: for (my $i=1; $i<=$number; $i++) {
10235: $$questiontitles[$i]=&mt('Question [_1]',$i);
10236: }
10237: return ($errormsg,$number);
10238: }
10239:
10240:
1.414 www 10241: sub assign_clicker_grades {
1.608 www 10242: my ($r,$symb)=@_;
1.414 www 10243: if (!$symb) {return '';}
1.416 www 10244: # See which part we are saving to
1.582 raeburn 10245: my $res_error;
10246: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
10247: if ($res_error) {
10248: return &navmap_errormsg();
10249: }
1.416 www 10250: # FIXME: This should probably look for the first handgradeable part
10251: my $part=$$partlist[0];
10252: # Start screen output
1.632 www 10253: my $result=&Apache::loncommon::start_data_table().
10254: &Apache::loncommon::start_data_table_header_row().
10255: '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
10256: &Apache::loncommon::end_data_table_header_row().
10257: &Apache::loncommon::start_data_table_row().'<td>';
1.414 www 10258: # Get correct result
10259: # FIXME: Possibly need delimiter other than ":"
10260: my @correct=();
1.415 www 10261: my $gradingmechanism=$env{'form.gradingmechanism'};
10262: my $number=$env{'form.number'};
10263: if ($gradingmechanism ne 'attendance') {
1.414 www 10264: foreach my $key (keys(%env)) {
10265: if ($key=~/^form\.correct\:/) {
10266: my @input=split(/\,/,$env{$key});
10267: for (my $i=0;$i<=$#input;$i++) {
10268: if (($correct[$i]) && ($input[$i]) &&
10269: ($correct[$i] ne $input[$i])) {
10270: $result.='<br /><span class="LC_warning">'.
10271: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
10272: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
1.644 www 10273: } elsif (($input[$i]) || ($input[$i] eq '0')) {
1.414 www 10274: $correct[$i]=$input[$i];
10275: }
10276: }
10277: }
10278: }
1.415 www 10279: for (my $i=0;$i<$number;$i++) {
1.644 www 10280: if ((!$correct[$i]) && ($correct[$i] ne '0')) {
1.414 www 10281: $result.='<br /><span class="LC_error">'.
10282: &mt('No correct result given for question "[_1]"!',
10283: $env{'form.question:'.$i}).'</span>';
10284: }
10285: }
1.644 www 10286: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
1.414 www 10287: }
10288: # Start grading
1.415 www 10289: my $pcorrect=$env{'form.pcorrect'};
10290: my $pincorrect=$env{'form.pincorrect'};
1.416 www 10291: my $storecount=0;
1.632 www 10292: my %users=();
1.415 www 10293: foreach my $key (keys(%env)) {
1.420 www 10294: my $user='';
1.415 www 10295: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 10296: $user=$1;
10297: }
10298: if ($key=~/^form\.unknown\:(.*)$/) {
10299: my $id=$1;
10300: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
10301: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 10302: } elsif ($env{'form.multi'.$id}) {
10303: $user=$env{'form.multi'.$id};
1.420 www 10304: }
10305: }
1.632 www 10306: if ($user) {
10307: if ($users{$user}) {
10308: $result.='<br /><span class="LC_warning">'.
1.696 bisitz 10309: &mt('More than one entry found for [_1]!','<tt>'.$user.'</tt>').
1.632 www 10310: '</span><br />';
10311: }
10312: $users{$user}=1;
1.415 www 10313: my @answer=split(/\,/,$env{$key});
10314: my $sum=0;
1.522 www 10315: my $realnumber=$number;
1.415 www 10316: for (my $i=0;$i<$number;$i++) {
1.576 www 10317: if ($correct[$i] eq '-') {
10318: $realnumber--;
1.644 www 10319: } elsif (($answer[$i]) || ($answer[$i]=~/^[0\.]+$/)) {
1.415 www 10320: if ($gradingmechanism eq 'attendance') {
10321: $sum+=$pcorrect;
1.576 www 10322: } elsif ($correct[$i] eq '*') {
1.522 www 10323: $sum+=$pcorrect;
1.415 www 10324: } else {
1.644 www 10325: # We actually grade if correct or not
10326: my $increment=$pincorrect;
10327: # Special case: numerical answer "0"
10328: if ($correct[$i] eq '0') {
10329: if ($answer[$i]=~/^[0\.]+$/) {
10330: $increment=$pcorrect;
10331: }
10332: # General numerical answer, both evaluate to something non-zero
10333: } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
10334: if (1.0*$correct[$i]==1.0*$answer[$i]) {
10335: $increment=$pcorrect;
10336: }
10337: # Must be just alphanumeric
10338: } elsif ($answer[$i] eq $correct[$i]) {
10339: $increment=$pcorrect;
1.415 www 10340: }
1.644 www 10341: $sum+=$increment;
1.415 www 10342: }
10343: }
10344: }
1.522 www 10345: my $ave=$sum/(100*$realnumber);
1.416 www 10346: # Store
10347: my ($username,$domain)=split(/\:/,$user);
10348: my %grades=();
10349: $grades{"resource.$part.solved"}='correct_by_override';
10350: $grades{"resource.$part.awarded"}=$ave;
10351: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
10352: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
10353: $env{'request.course.id'},
10354: $domain,$username);
10355: if ($returncode ne 'ok') {
10356: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
10357: } else {
10358: $storecount++;
10359: }
1.415 www 10360: }
10361: }
10362: # We are done
1.549 hauer 10363: $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
1.632 www 10364: '</td>'.
10365: &Apache::loncommon::end_data_table_row().
10366: &Apache::loncommon::end_data_table();
1.614 www 10367: return $result;
1.414 www 10368: }
10369:
1.582 raeburn 10370: sub navmap_errormsg {
10371: return '<div class="LC_error">'.
10372: &mt('An error occurred retrieving information about resources in the course.').'<br />'.
1.595 raeburn 10373: &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 10374: '</div>';
10375: }
1.607 droeschl 10376:
1.609 www 10377: sub startpage {
1.671 raeburn 10378: my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
10379: if ($nomenu) {
10380: $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
10381: } else {
10382: unshift(@$crumbs,{href=>&href_symb_cmd($symb,'gradingmenu'),text=>"Grading"});
10383: $r->print(&Apache::loncommon::start_page('Grading',$js,
10384: {'bread_crumbs' => $crumbs}));
10385: &Apache::lonquickgrades::startGradeScreen($r,($env{'form.symb'}?'probgrading':'grading'));
10386: }
1.613 www 10387: unless ($nodisplayflag) {
1.671 raeburn 10388: $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
1.613 www 10389: }
1.607 droeschl 10390: }
1.582 raeburn 10391:
1.622 www 10392: sub select_problem {
10393: my ($r)=@_;
1.632 www 10394: $r->print('<h3>'.&mt('Select the problem or one of the problems you want to grade').'</h3><form action="/adm/grades">');
1.622 www 10395: $r->print(&Apache::lonstathelpers::problem_selector('.',undef,1));
10396: $r->print('<input type="hidden" name="command" value="gradingmenu" />');
10397: $r->print('<input type="submit" value="'.&mt('Next').' →" /></form>');
10398: }
10399:
1.1 albertel 10400: sub handler {
1.41 ng 10401: my $request=$_[0];
1.434 albertel 10402: &reset_caches();
1.646 raeburn 10403: if ($request->header_only) {
10404: &Apache::loncommon::content_type($request,'text/html');
10405: $request->send_http_header;
10406: return OK;
10407: }
10408: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
10409:
1.664 raeburn 10410: # see what command we need to execute
10411:
10412: my @commands=&Apache::loncommon::get_env_multiple('form.command');
10413: my $command=$commands[0];
10414:
1.646 raeburn 10415: &init_perm();
10416: if (!$env{'request.course.id'}) {
1.664 raeburn 10417: unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
10418: ($command =~ /^scantronupload/)) {
10419: # Not in a course.
10420: $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
10421: return HTTP_NOT_ACCEPTABLE;
10422: }
1.646 raeburn 10423: } elsif (!%perm) {
10424: $request->internal_redirect('/adm/quickgrades');
1.687 raeburn 10425: return OK;
1.41 ng 10426: }
1.646 raeburn 10427: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 10428: $request->send_http_header;
1.646 raeburn 10429:
1.160 albertel 10430: if ($#commands > 0) {
10431: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
10432: }
1.608 www 10433:
10434: # see what the symb is
10435:
10436: my $symb=$env{'form.symb'};
10437: unless ($symb) {
10438: (my $url=$env{'form.url'}) =~ s-^https*://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
10439: $symb=&Apache::lonnet::symbread($url);
10440: }
1.646 raeburn 10441: &Apache::lonenc::check_decrypt(\$symb);
1.608 www 10442:
1.513 foxr 10443: $ssi_error = 0;
1.637 www 10444: if (($symb eq '' || $command eq '') && ($env{'request.course.id'})) {
1.601 www 10445: #
1.637 www 10446: # Not called from a resource, but inside a course
1.601 www 10447: #
1.622 www 10448: &startpage($request,undef,[],1,1);
10449: &select_problem($request);
1.41 ng 10450: } else {
1.104 albertel 10451: if ($command eq 'submission' && $perm{'vgr'}) {
1.671 raeburn 10452: my ($stuvcurrent,$stuvdisp,$versionform,$js);
10453: if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
10454: ($stuvcurrent,$stuvdisp,$versionform,$js) =
10455: &choose_task_version_form($symb,$env{'form.student'},
10456: $env{'form.userdom'});
10457: }
10458: &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
10459: if ($versionform) {
10460: $request->print($versionform);
10461: }
10462: $request->print('<br clear="all" />');
1.611 www 10463: ($env{'form.student'} eq '' ? &listStudents($request,$symb) : &submission($request,0,0,$symb));
1.671 raeburn 10464: } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
10465: my ($stuvcurrent,$stuvdisp,$versionform,$js) =
10466: &choose_task_version_form($symb,$env{'form.student'},
10467: $env{'form.userdom'},
10468: $env{'form.inhibitmenu'});
10469: &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
10470: if ($versionform) {
10471: $request->print($versionform);
10472: }
10473: $request->print('<br clear="all" />');
10474: $request->print(&show_previous_task_version($request,$symb));
1.103 albertel 10475: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.615 www 10476: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10477: {href=>'',text=>'Select student'}],1,1);
1.608 www 10478: &pickStudentPage($request,$symb);
1.103 albertel 10479: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.615 www 10480: &startpage($request,$symb,
10481: [{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10482: {href=>'',text=>'Select student'},
10483: {href=>'',text=>'Grade student'}],1,1);
1.608 www 10484: &displayPage($request,$symb);
1.104 albertel 10485: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.616 www 10486: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10487: {href=>'',text=>'Select student'},
10488: {href=>'',text=>'Grade student'},
10489: {href=>'',text=>'Store grades'}],1,1);
1.608 www 10490: &updateGradeByPage($request,$symb);
1.104 albertel 10491: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.619 www 10492: &startpage($request,$symb,[{href=>'',text=>'...'},
10493: {href=>'',text=>'Modify grades'}]);
1.608 www 10494: &processGroup($request,$symb);
1.104 albertel 10495: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.608 www 10496: &startpage($request,$symb);
10497: $request->print(&grading_menu($request,$symb));
1.598 www 10498: } elsif ($command eq 'individual' && $perm{'vgr'}) {
1.617 www 10499: &startpage($request,$symb,[{href=>'',text=>'Select individual students to grade'}]);
1.608 www 10500: $request->print(&submit_options($request,$symb));
1.598 www 10501: } elsif ($command eq 'ungraded' && $perm{'vgr'}) {
1.617 www 10502: &startpage($request,$symb,[{href=>'',text=>'Grade ungraded submissions'}]);
10503: $request->print(&listStudents($request,$symb,'graded'));
1.598 www 10504: } elsif ($command eq 'table' && $perm{'vgr'}) {
1.614 www 10505: &startpage($request,$symb,[{href=>"", text=>"Grading table"}]);
1.611 www 10506: $request->print(&submit_options_table($request,$symb));
1.598 www 10507: } elsif ($command eq 'all_for_one' && $perm{'vgr'}) {
1.615 www 10508: &startpage($request,$symb,[{href=>'',text=>'Grade page/folder for one student'}],1,1);
1.608 www 10509: $request->print(&submit_options_sequence($request,$symb));
1.104 albertel 10510: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.614 www 10511: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},{href=>'', text=>"Modify grades"}]);
1.608 www 10512: $request->print(&viewgrades($request,$symb));
1.104 albertel 10513: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.620 www 10514: &startpage($request,$symb,[{href=>'',text=>'...'},
10515: {href=>'',text=>'Store grades'}]);
1.608 www 10516: $request->print(&processHandGrade($request,$symb));
1.106 albertel 10517: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.614 www 10518: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},
10519: {href=>&href_symb_cmd($symb,'viewgrades').'&group=all§ion=all&Status=Active',
10520: text=>"Modify grades"},
10521: {href=>'', text=>"Store grades"}]);
1.608 www 10522: $request->print(&editgrades($request,$symb));
1.602 www 10523: } elsif ($command eq 'initialverifyreceipt' && $perm{'vgr'}) {
1.616 www 10524: &startpage($request,$symb,[{href=>'',text=>'Verify Receipt Number'}]);
1.611 www 10525: $request->print(&initialverifyreceipt($request,$symb));
1.106 albertel 10526: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.616 www 10527: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"initialverifyreceipt"),text=>'Verify Receipt Number'},
10528: {href=>'',text=>'Verification Result'}]);
1.608 www 10529: $request->print(&verifyreceipt($request,$symb));
1.400 www 10530: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
1.615 www 10531: &startpage($request,$symb,[{href=>'', text=>'Process clicker'}]);
1.608 www 10532: $request->print(&process_clicker($request,$symb));
1.400 www 10533: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
1.615 www 10534: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10535: {href=>'', text=>'Process clicker file'}]);
1.608 www 10536: $request->print(&process_clicker_file($request,$symb));
1.414 www 10537: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
1.615 www 10538: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10539: {href=>'', text=>'Process clicker file'},
10540: {href=>'', text=>'Store grades'}]);
1.608 www 10541: $request->print(&assign_clicker_grades($request,$symb));
1.106 albertel 10542: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.627 www 10543: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10544: $request->print(&upcsvScores_form($request,$symb));
1.106 albertel 10545: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.627 www 10546: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10547: $request->print(&csvupload($request,$symb));
1.106 albertel 10548: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.627 www 10549: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10550: $request->print(&csvuploadmap($request,$symb));
1.246 albertel 10551: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 10552: if ($env{'form.associate'} ne 'Reverse Association') {
1.627 www 10553: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10554: $request->print(&csvuploadoptions($request,$symb));
1.41 ng 10555: } else {
1.257 albertel 10556: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
10557: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 10558: } else {
1.257 albertel 10559: $env{'form.upfile_associate'} = 'forward';
1.41 ng 10560: }
1.627 www 10561: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10562: $request->print(&csvuploadmap($request,$symb));
1.41 ng 10563: }
1.246 albertel 10564: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
1.627 www 10565: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10566: $request->print(&csvuploadassign($request,$symb));
1.106 albertel 10567: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.616 www 10568: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.612 www 10569: $request->print(&scantron_selectphase($request,undef,$symb));
1.203 albertel 10570: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
1.616 www 10571: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10572: $request->print(&scantron_do_warning($request,$symb));
1.142 albertel 10573: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
1.616 www 10574: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10575: $request->print(&scantron_validate_file($request,$symb));
1.106 albertel 10576: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.616 www 10577: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10578: $request->print(&scantron_process_students($request,$symb));
1.157 albertel 10579: } elsif ($command eq 'scantronupload' &&
1.257 albertel 10580: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10581: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616 www 10582: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10583: $request->print(&scantron_upload_scantron_data($request,$symb));
1.157 albertel 10584: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 10585: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10586: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616 www 10587: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10588: $request->print(&scantron_upload_scantron_data_save($request,$symb));
1.202 albertel 10589: } elsif ($command eq 'scantron_download' &&
1.257 albertel 10590: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.616 www 10591: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10592: $request->print(&scantron_download_scantron_data($request,$symb));
1.523 raeburn 10593: } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
1.616 www 10594: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.621 www 10595: $request->print(&checkscantron_results($request,$symb));
10596: } elsif ($command eq 'downloadfilesselect' && $perm{'vgr'}) {
10597: &startpage($request,$symb,[{href=>'', text=>'Select which submissions to download'}]);
10598: $request->print(&submit_options_download($request,$symb));
10599: } elsif ($command eq 'downloadfileslink' && $perm{'vgr'}) {
10600: &startpage($request,$symb,
10601: [{href=>&href_symb_cmd($symb,'downloadfilesselect'), text=>'Select which submissions to download'},
10602: {href=>'', text=>'Download submissions'}]);
10603: &submit_download_link($request,$symb);
1.106 albertel 10604: } elsif ($command) {
1.620 www 10605: &startpage($request,$symb,[{href=>'', text=>'Access denied'}]);
1.562 bisitz 10606: $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
1.26 albertel 10607: }
1.2 albertel 10608: }
1.513 foxr 10609: if ($ssi_error) {
10610: &ssi_print_error($request);
10611: }
1.671 raeburn 10612: if ($env{'form.inhibitmenu'}) {
10613: $request->print(&Apache::loncommon::end_page());
10614: } else {
10615: &Apache::lonquickgrades::endGradeScreen($request);
10616: }
1.434 albertel 10617: &reset_caches();
1.646 raeburn 10618: return OK;
1.44 ng 10619: }
10620:
1.1 albertel 10621: 1;
10622:
1.13 albertel 10623: __END__;
1.531 jms 10624:
10625:
10626: =head1 NAME
10627:
10628: Apache::grades
10629:
10630: =head1 SYNOPSIS
10631:
10632: Handles the viewing of grades.
10633:
10634: This is part of the LearningOnline Network with CAPA project
10635: described at http://www.lon-capa.org.
10636:
10637: =head1 OVERVIEW
10638:
10639: Do an ssi with retries:
1.715 bisitz 10640: While I'd love to factor out this with the version in lonprintout,
1.531 jms 10641: 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
10642: I'm not quite ready to invent (e.g. an ssi_with_retry object).
10643:
10644: At least the logic that drives this has been pulled out into loncommon.
10645:
10646:
10647:
10648: ssi_with_retries - Does the server side include of a resource.
10649: if the ssi call returns an error we'll retry it up to
10650: the number of times requested by the caller.
1.715 bisitz 10651: If we still have a problem, no text is appended to the
1.531 jms 10652: output and we set some global variables.
10653: to indicate to the caller an SSI error occurred.
10654: All of this is supposed to deal with the issues described
1.715 bisitz 10655: in LON-CAPA BZ 5631 see:
1.531 jms 10656: http://bugs.lon-capa.org/show_bug.cgi?id=5631
10657: by informing the user that this happened.
10658:
10659: Parameters:
10660: resource - The resource to include. This is passed directly, without
10661: interpretation to lonnet::ssi.
10662: form - The form hash parameters that guide the interpretation of the resource
10663:
10664: retries - Number of retries allowed before giving up completely.
10665: Returns:
10666: On success, returns the rendered resource identified by the resource parameter.
10667: Side Effects:
10668: The following global variables can be set:
10669: ssi_error - If an unrecoverable error occurred this becomes true.
10670: It is up to the caller to initialize this to false
10671: if desired.
10672: ssi_error_resource - If an unrecoverable error occurred, this is the value
10673: of the resource that could not be rendered by the ssi
10674: call.
10675: ssi_error_message - The error string fetched from the ssi response
10676: in the event of an error.
10677:
10678:
10679: =head1 HANDLER SUBROUTINE
10680:
10681: ssi_with_retries()
10682:
10683: =head1 SUBROUTINES
10684:
10685: =over
10686:
1.671 raeburn 10687: =head1 Routines to display previous version of a Task for a specific student
10688:
10689: Tasks are graded pass/fail. Students who have yet to pass a particular Task
10690: can receive another opportunity. Access to tasks is slot-based. If a slot
10691: requires a proctor to check-in the student, a new version of the Task will
10692: be created when the student is checked in to the new opportunity.
10693:
10694: If a particular student has tried two or more versions of a particular task,
10695: the submission screen provides a user with vgr privileges (e.g., a Course
10696: Coordinator) the ability to display a previous version worked on by the
10697: student. By default, the current version is displayed. If a previous version
10698: has been selected for display, submission data are only shown that pertain
10699: to that particular version, and the interface to submit grades is not shown.
10700:
10701: =over 4
10702:
10703: =item show_previous_task_version()
10704:
10705: Displays a specified version of a student's Task, as the student sees it.
10706:
10707: Inputs: 2
10708: request - request object
10709: symb - unique symb for current instance of resource
10710:
10711: Output: None.
10712:
10713: Side Effects: calls &show_problem() to print version of Task, with
10714: version contained in form item: $env{'form.previousversion'}
10715:
10716: =item choose_task_version_form()
10717:
10718: Displays a web form used to select which version of a student's view of a
10719: Task should be displayed. Either launches a pop-up window, or replaces
10720: content in existing pop-up, or replaces page in main window.
10721:
10722: Inputs: 4
10723: symb - unique symb for current instance of resource
10724: uname - username of student
10725: udom - domain of student
10726: nomenu - 1 if display is in a pop-up window, and hence no menu
10727: breadcrumbs etc., are displayed
10728:
10729: Output: 4
10730: current - student's current version
10731: displayed - student's version being displayed
10732: result - scalar containing HTML for web form used to switch to
10733: a different version (or a link to close window, if pop-up).
10734: js - javascript for processing selection in versions web form
10735:
10736: Side Effects: None.
10737:
10738: =item previous_display_javascript()
10739:
10740: Inputs: 2
10741: nomenu - 1 if display is in a pop-up window, and hence no menu
10742: breadcrumbs etc., are displayed.
10743: current - student's current version number.
10744:
10745: Output: 1
10746: js - javascript for processing selection in versions web form.
10747:
10748: Side Effects: None.
10749:
10750: =back
10751:
10752: =head1 Routines to process bubblesheet data.
10753:
10754: =over 4
10755:
1.531 jms 10756: =item scantron_get_correction() :
10757:
10758: Builds the interface screen to interact with the operator to fix a
10759: specific error condition in a specific scanline
10760:
10761: Arguments:
10762: $r - Apache request object
10763: $i - number of the current scanline
10764: $scan_record - hash ref as returned from &scantron_parse_scanline()
10765: $scan_config - hash ref as returned from &get_scantron_config()
10766: $line - full contents of the current scanline
10767: $error - error condition, valid values are
10768: 'incorrectCODE', 'duplicateCODE',
10769: 'doublebubble', 'missingbubble',
10770: 'duplicateID', 'incorrectID'
10771: $arg - extra information needed
10772: For errors:
10773: - duplicateID - paper number that this studentID was seen before on
10774: - duplicateCODE - array ref of the paper numbers this CODE was
10775: seen on before
10776: - incorrectCODE - current incorrect CODE
10777: - doublebubble - array ref of the bubble lines that have double
10778: bubble errors
10779: - missingbubble - array ref of the bubble lines that have missing
10780: bubble errors
10781:
1.691 raeburn 10782: $randomorder - True if exam folder has randomorder set
10783: $randompick - True if exam folder has randompick set
10784: $respnumlookup - Reference to HASH mapping question numbers in bubble lines
10785: for current line to question number used for same question
10786: in "Master Seqence" (as seen by Course Coordinator).
10787: $startline - Reference to hash where key is question number (0 is first)
10788: and value is number of first bubble line for current student
10789: or code-based randompick and/or randomorder.
10790:
10791:
10792:
1.531 jms 10793: =item scantron_get_maxbubble() :
10794:
1.582 raeburn 10795: Arguments:
10796: $nav_error - Reference to scalar which is a flag to indicate a
10797: failure to retrieve a navmap object.
10798: if $nav_error is set to 1 by scantron_get_maxbubble(), the
10799: calling routine should trap the error condition and display the warning
10800: found in &navmap_errormsg().
10801:
1.649 raeburn 10802: $scantron_config - Reference to bubblesheet format configuration hash.
10803:
1.531 jms 10804: Returns the maximum number of bubble lines that are expected to
10805: occur. Does this by walking the selected sequence rendering the
10806: resource and then checking &Apache::lonxml::get_problem_counter()
10807: for what the current value of the problem counter is.
10808:
10809: Caches the results to $env{'form.scantron_maxbubble'},
10810: $env{'form.scantron.bubble_lines.n'},
10811: $env{'form.scantron.first_bubble_line.n'} and
10812: $env{"form.scantron.sub_bubblelines.n"}
1.691 raeburn 10813: which are the total number of bubble lines, the number of bubble
1.531 jms 10814: lines for response n and number of the first bubble line for response n,
10815: and a comma separated list of numbers of bubble lines for sub-questions
10816: (for optionresponse, matchresponse, and rankresponse items), for response n.
10817:
10818:
10819: =item scantron_validate_missingbubbles() :
10820:
10821: Validates all scanlines in the selected file to not have any
10822: answers that don't have bubbles that have not been verified
10823: to be bubble free.
10824:
10825: =item scantron_process_students() :
10826:
1.659 raeburn 10827: Routine that does the actual grading of the bubblesheet information.
1.531 jms 10828:
10829: The parsed scanline hash is added to %env
10830:
10831: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
10832: foreach resource , with the form data of
10833:
10834: 'submitted' =>'scantron'
10835: 'grade_target' =>'grade',
10836: 'grade_username'=> username of student
10837: 'grade_domain' => domain of student
10838: 'grade_courseid'=> of course
10839: 'grade_symb' => symb of resource to grade
10840:
10841: This triggers a grading pass. The problem grading code takes care
10842: of converting the bubbled letter information (now in %env) into a
10843: valid submission.
10844:
10845: =item scantron_upload_scantron_data() :
10846:
1.659 raeburn 10847: Creates the screen for adding a new bubblesheet data file to a course.
1.531 jms 10848:
10849: =item scantron_upload_scantron_data_save() :
10850:
10851: Adds a provided bubble information data file to the course if user
10852: has the correct privileges to do so.
10853:
10854: =item valid_file() :
10855:
10856: Validates that the requested bubble data file exists in the course.
10857:
10858: =item scantron_download_scantron_data() :
10859:
10860: Shows a list of the three internal files (original, corrected,
1.659 raeburn 10861: skipped) for a specific bubblesheet data file that exists in the
1.531 jms 10862: course.
10863:
10864: =item scantron_validate_ID() :
10865:
10866: Validates all scanlines in the selected file to not have any
1.556 weissno 10867: invalid or underspecified student/employee IDs
1.531 jms 10868:
1.582 raeburn 10869: =item navmap_errormsg() :
10870:
10871: Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
1.671 raeburn 10872: Should be called whenever the request to instantiate a navmap object fails.
10873:
10874: =back
1.582 raeburn 10875:
1.531 jms 10876: =back
10877:
10878: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>