Annotation of loncom/homework/grades.pm, revision 1.744
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.744 ! raeburn 4: # $Id: grades.pm,v 1.743 2017/12/14 17:37:07 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.744 ! raeburn 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.743 raeburn 4202: my $error1=&mt('You need to specify the username, the student/employee ID, or the clicker 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.743 raeburn 4211: var foundclicker=0;
1.27 albertel 4212: for (i=0;i<=vf.nfields.value;i++) {
4213: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4214: if (i==0 && tw!=0) { foundID=1; }
4215: if (i==1 && tw!=0) { founduname=1; }
1.743 raeburn 4216: if (i==2 && tw!=0) { foundclicker=1; }
4217: if (i!=0 && i!=1 && i!=2 && i!=3 && tw!=0) { foundsomething=1; }
1.27 albertel 4218: }
1.743 raeburn 4219: if (founduname==0 && foundID==0 && foundclicker==0) {
1.246 albertel 4220: alert('$error1');
4221: return;
1.27 albertel 4222: }
4223: if (foundsomething==0) {
1.246 albertel 4224: alert('$error2');
4225: return;
1.27 albertel 4226: }
4227: vf.submit();
4228: }
4229: function flip(vf,tf) {
4230: var nw=eval('vf.f'+tf+'.selectedIndex');
4231: var i;
4232: for (i=0;i<=vf.nfields.value;i++) {
4233: //can not pick the same destination field for both name and domain
4234: if (((i ==0)||(i ==1)) &&
4235: ((tf==0)||(tf==1)) &&
4236: (i!=tf) &&
4237: (eval('vf.f'+i+'.selectedIndex')==nw)) {
4238: eval('vf.f'+i+'.selectedIndex=0;')
4239: }
4240: }
4241: }
4242: ENDPICK
4243: }
4244:
4245: sub csvupload_javascript_forward_associate {
1.743 raeburn 4246: my $error1=&mt('You need to specify the username, the student/employee ID, or the clicker ID');
1.246 albertel 4247: my $error2=&mt('You need to specify at least one grading field');
1.736 damieng 4248: &js_escape(\$error1);
4249: &js_escape(\$error2);
1.27 albertel 4250: return(<<ENDPICK);
4251: function verify(vf) {
4252: var foundsomething=0;
4253: var founduname=0;
1.243 albertel 4254: var foundID=0;
1.743 raeburn 4255: var foundclicker=0;
1.27 albertel 4256: for (i=0;i<=vf.nfields.value;i++) {
4257: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4258: if (tw==1) { foundID=1; }
4259: if (tw==2) { founduname=1; }
1.743 raeburn 4260: if (tw==3) { foundclicker=1; }
4261: if (tw>4) { foundsomething=1; }
1.27 albertel 4262: }
1.743 raeburn 4263: if (founduname==0 && foundID==0 && Æ’oundclicker==0) {
1.246 albertel 4264: alert('$error1');
4265: return;
1.27 albertel 4266: }
4267: if (foundsomething==0) {
1.246 albertel 4268: alert('$error2');
4269: return;
1.27 albertel 4270: }
4271: vf.submit();
4272: }
4273: function flip(vf,tf) {
4274: var nw=eval('vf.f'+tf+'.selectedIndex');
4275: var i;
4276: //can not pick the same destination field twice
4277: for (i=0;i<=vf.nfields.value;i++) {
4278: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
4279: eval('vf.f'+i+'.selectedIndex=0;')
4280: }
4281: }
4282: }
4283: ENDPICK
4284: }
4285:
1.26 albertel 4286: sub csvuploadmap_header {
1.324 albertel 4287: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 4288: my $javascript;
1.257 albertel 4289: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4290: $javascript=&csvupload_javascript_reverse_associate();
4291: } else {
4292: $javascript=&csvupload_javascript_forward_associate();
4293: }
1.45 ng 4294:
1.418 albertel 4295: $symb = &Apache::lonenc::check_encrypt($symb);
1.632 www 4296: $request->print('<form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">'.
4297: &mt('Total number of records found in file: [_1]',$distotal).'<hr />'.
4298: &mt('Associate entries from the uploaded file with as many fields as you can.'));
4299: my $reverse=&mt("Reverse Association");
1.41 ng 4300: $request->print(<<ENDPICK);
1.632 www 4301: <br />
4302: <input type="button" value="$reverse" onclick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.26 albertel 4303: <input type="hidden" name="associate" value="" />
4304: <input type="hidden" name="phase" value="three" />
4305: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 4306: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
4307: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 4308: <input type="hidden" name="upfile_associate"
1.257 albertel 4309: value="$env{'form.upfile_associate'}" />
1.26 albertel 4310: <input type="hidden" name="symb" value="$symb" />
1.246 albertel 4311: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 4312: <hr />
4313: ENDPICK
1.597 wenzelju 4314: $request->print(&Apache::lonhtmlcommon::scripttag($javascript));
1.118 ng 4315: return '';
1.26 albertel 4316:
4317: }
4318:
4319: sub csvupload_fields {
1.582 raeburn 4320: my ($symb,$errorref) = @_;
4321: my (@parts) = &getpartlist($symb,$errorref);
4322: if (ref($errorref)) {
4323: if ($$errorref) {
4324: return;
4325: }
4326: }
4327:
1.556 weissno 4328: my @fields=(['ID','Student/Employee ID'],
1.243 albertel 4329: ['username','Student Username'],
1.743 raeburn 4330: ['clicker','Clicker ID'],
1.243 albertel 4331: ['domain','Student Domain']);
1.324 albertel 4332: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 4333: foreach my $part (sort(@parts)) {
4334: my @datum;
4335: my $display=&Apache::lonnet::metadata($url,$part.'.display');
4336: my $name=$part;
4337: if (!$display) { $display = $name; }
4338: @datum=($name,$display);
1.244 albertel 4339: if ($name=~/^stores_(.*)_awarded/) {
4340: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
4341: }
1.41 ng 4342: push(@fields,\@datum);
4343: }
4344: return (@fields);
1.26 albertel 4345: }
4346:
4347: sub csvuploadmap_footer {
1.41 ng 4348: my ($request,$i,$keyfields) =@_;
1.703 bisitz 4349: my $buttontext = &mt('Assign Grades');
1.41 ng 4350: $request->print(<<ENDPICK);
1.26 albertel 4351: </table>
4352: <input type="hidden" name="nfields" value="$i" />
4353: <input type="hidden" name="keyfields" value="$keyfields" />
1.703 bisitz 4354: <input type="button" onclick="javascript:verify(this.form)" value="$buttontext" /><br />
1.26 albertel 4355: </form>
4356: ENDPICK
4357: }
4358:
1.283 albertel 4359: sub checkforfile_js {
1.638 www 4360: my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
1.736 damieng 4361: &js_escape(\$alertmsg);
1.597 wenzelju 4362: my $result = &Apache::lonhtmlcommon::scripttag(<<CSVFORMJS);
1.86 ng 4363: function checkUpload(formname) {
4364: if (formname.upfile.value == "") {
1.539 riegler 4365: alert("$alertmsg");
1.86 ng 4366: return false;
4367: }
4368: formname.submit();
4369: }
4370: CSVFORMJS
1.283 albertel 4371: return $result;
4372: }
4373:
4374: sub upcsvScores_form {
1.608 www 4375: my ($request,$symb) = @_;
1.283 albertel 4376: if (!$symb) {return '';}
4377: my $result=&checkforfile_js();
1.632 www 4378: $result.=&Apache::loncommon::start_data_table().
4379: &Apache::loncommon::start_data_table_header_row().
4380: '<th>'.&mt('Specify a file containing the class scores for current resource.').'</th>'.
4381: &Apache::loncommon::end_data_table_header_row().
4382: &Apache::loncommon::start_data_table_row().'<td>';
1.370 www 4383: my $upload=&mt("Upload Scores");
1.86 ng 4384: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 4385: my $ignore=&mt('Ignore First Line');
1.418 albertel 4386: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 4387: $result.=<<ENDUPFORM;
1.106 albertel 4388: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 4389: <input type="hidden" name="symb" value="$symb" />
4390: <input type="hidden" name="command" value="csvuploadmap" />
4391: $upfile_select
1.589 bisitz 4392: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.86 ng 4393: </form>
4394: ENDUPFORM
1.370 www 4395: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
1.632 www 4396: &mt("How do I create a CSV file from a spreadsheet")).
4397: '</td>'.
4398: &Apache::loncommon::end_data_table_row().
4399: &Apache::loncommon::end_data_table();
1.86 ng 4400: return $result;
4401: }
4402:
4403:
1.26 albertel 4404: sub csvuploadmap {
1.608 www 4405: my ($request,$symb)= @_;
1.41 ng 4406: if (!$symb) {return '';}
1.72 ng 4407:
1.41 ng 4408: my $datatoken;
1.257 albertel 4409: if (!$env{'form.datatoken'}) {
1.41 ng 4410: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 4411: } else {
1.742 raeburn 4412: $datatoken=&Apache::loncommon::valid_datatoken($env{'form.datatoken'});
4413: if ($datatoken ne '') {
4414: &Apache::loncommon::load_tmp_file($request,$datatoken);
4415: }
1.26 albertel 4416: }
1.41 ng 4417: my @records=&Apache::loncommon::upfile_record_sep();
1.324 albertel 4418: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 4419: my ($i,$keyfields);
4420: if (@records) {
1.582 raeburn 4421: my $fieldserror;
4422: my @fields=&csvupload_fields($symb,\$fieldserror);
4423: if ($fieldserror) {
4424: $request->print(&navmap_errormsg());
4425: return;
4426: }
1.257 albertel 4427: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4428: &Apache::loncommon::csv_print_samples($request,\@records);
4429: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
4430: \@fields);
4431: foreach (@fields) { $keyfields.=$_->[0].','; }
4432: chop($keyfields);
4433: } else {
4434: unshift(@fields,['none','']);
4435: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
4436: \@fields);
1.311 banghart 4437: foreach my $rec (@records) {
4438: my %temp = &Apache::loncommon::record_sep($rec);
4439: if (%temp) {
4440: $keyfields=join(',',sort(keys(%temp)));
4441: last;
4442: }
4443: }
1.41 ng 4444: }
4445: }
4446: &csvuploadmap_footer($request,$i,$keyfields);
1.72 ng 4447:
1.41 ng 4448: return '';
1.27 albertel 4449: }
4450:
1.246 albertel 4451: sub csvuploadoptions {
1.608 www 4452: my ($request,$symb)= @_;
1.632 www 4453: my $overwrite=&mt('Overwrite any existing score');
1.246 albertel 4454: $request->print(<<ENDPICK);
4455: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
4456: <input type="hidden" name="command" value="csvuploadassign" />
4457: <p>
4458: <label>
4459: <input type="checkbox" name="overwite_scores" checked="checked" />
1.632 www 4460: $overwrite
1.246 albertel 4461: </label>
4462: </p>
4463: ENDPICK
4464: my %fields=&get_fields();
4465: if (!defined($fields{'domain'})) {
1.257 albertel 4466: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.632 www 4467: $request->print("\n<p>".&mt('Users are in domain: [_1]',$domform)."</p>\n");
1.246 albertel 4468: }
1.257 albertel 4469: foreach my $key (sort(keys(%env))) {
1.246 albertel 4470: if ($key !~ /^form\.(.*)$/) { next; }
4471: my $cleankey=$1;
4472: if ($cleankey eq 'command') { next; }
4473: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 4474: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 4475: }
4476: # FIXME do a check for any duplicated user ids...
4477: # FIXME do a check for any invalid user ids?...
1.703 bisitz 4478: $request->print('<input type="submit" value="'.&mt('Assign Grades').'" /><br />
1.290 albertel 4479: <hr /></form>'."\n");
1.246 albertel 4480: return '';
4481: }
4482:
4483: sub get_fields {
4484: my %fields;
1.257 albertel 4485: my @keyfields = split(/\,/,$env{'form.keyfields'});
4486: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
4487: if ($env{'form.upfile_associate'} eq 'reverse') {
4488: if ($env{'form.f'.$i} ne 'none') {
4489: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 4490: }
4491: } else {
1.257 albertel 4492: if ($env{'form.f'.$i} ne 'none') {
4493: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 4494: }
4495: }
1.27 albertel 4496: }
1.246 albertel 4497: return %fields;
4498: }
4499:
4500: sub csvuploadassign {
1.608 www 4501: my ($request,$symb)= @_;
1.246 albertel 4502: if (!$symb) {return '';}
1.345 bowersj2 4503: my $error_msg = '';
1.742 raeburn 4504: my $datatoken = &Apache::loncommon::valid_datatoken($env{'form.datatoken'});
4505: if ($datatoken ne '') {
4506: &Apache::loncommon::load_tmp_file($request,$datatoken);
4507: }
1.246 albertel 4508: my @gradedata = &Apache::loncommon::upfile_record_sep();
4509: my %fields=&get_fields();
1.257 albertel 4510: my $courseid=$env{'request.course.id'};
1.97 albertel 4511: my ($classlist) = &getclasslist('all',0);
1.106 albertel 4512: my @notallowed;
1.41 ng 4513: my @skipped;
1.657 raeburn 4514: my @warnings;
1.41 ng 4515: my $countdone=0;
4516: foreach my $grade (@gradedata) {
4517: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 4518: my $domain;
4519: if ($entries{$fields{'domain'}}) {
4520: $domain=$entries{$fields{'domain'}};
4521: } else {
1.257 albertel 4522: $domain=$env{'form.default_domain'};
1.246 albertel 4523: }
1.243 albertel 4524: $domain=~s/\s//g;
1.41 ng 4525: my $username=$entries{$fields{'username'}};
1.160 albertel 4526: $username=~s/\s//g;
1.243 albertel 4527: if (!$username) {
4528: my $id=$entries{$fields{'ID'}};
1.247 albertel 4529: $id=~s/\s//g;
1.737 raeburn 4530: if ($id ne '') {
4531: my %ids=&Apache::lonnet::idget($domain,[$id]);
4532: $username=$ids{$id};
4533: } else {
4534: if ($entries{$fields{'clicker'}}) {
4535: my $clicker = $entries{$fields{'clicker'}};
4536: $clicker=~s/\s//g;
4537: if ($clicker ne '') {
4538: my %clickers = &Apache::lonnet::idget($domain,[$clicker],'clickers');
4539: if ($clickers{$clicker} ne '') {
4540: my $match = 0;
4541: my @inclass;
4542: foreach my $poss (split(/,/,$clickers{$clicker})) {
4543: if (exists($$classlist{"$poss:$domain"})) {
4544: $username = $poss;
4545: push(@inclass,$poss);
4546: $match ++;
4547:
4548: }
4549: }
4550: if ($match > 1) {
4551: undef($username);
4552: $request->print('<p class="LC_warning">'.
4553: &mt('Score not saved for clicker: [_1] (matched multiple usernames: [_2])',
4554: $clicker,join(', ',@inclass)).'</p>');
4555: }
4556: }
4557: }
4558: }
4559: }
1.243 albertel 4560: }
1.41 ng 4561: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 4562: my $id=$entries{$fields{'ID'}};
4563: $id=~s/\s//g;
1.737 raeburn 4564: my $clicker = $entries{$fields{'clicker'}};
4565: $clicker=~s/\s//g;
4566: if ($clicker) {
4567: push(@skipped,"$clicker:$domain");
4568: } elsif ($id) {
1.247 albertel 4569: push(@skipped,"$id:$domain");
4570: } else {
4571: push(@skipped,"$username:$domain");
4572: }
1.41 ng 4573: next;
4574: }
1.108 albertel 4575: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 4576: if (!&canmodify($usec)) {
4577: push(@notallowed,"$username:$domain");
4578: next;
4579: }
1.244 albertel 4580: my %points;
1.41 ng 4581: my %grades;
4582: foreach my $dest (keys(%fields)) {
1.244 albertel 4583: if ($dest eq 'ID' || $dest eq 'username' ||
4584: $dest eq 'domain') { next; }
4585: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
4586: if ($dest=~/stores_(.*)_points/) {
4587: my $part=$1;
4588: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
4589: $symb,$domain,$username);
1.345 bowersj2 4590: if ($wgt) {
4591: $entries{$fields{$dest}}=~s/\s//g;
4592: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 4593: my $award=($pcr == 0) ? 'incorrect_by_override'
4594: : 'correct_by_override';
1.638 www 4595: if ($pcr>1) {
1.657 raeburn 4596: push(@warnings,&mt("[_1]: point value larger than weight","$username:$domain"));
1.638 www 4597: }
1.345 bowersj2 4598: $grades{"resource.$part.awarded"}=$pcr;
4599: $grades{"resource.$part.solved"}=$award;
4600: $points{$part}=1;
4601: } else {
4602: $error_msg = "<br />" .
4603: &mt("Some point values were assigned"
4604: ." for problems with a weight "
4605: ."of zero. These values were "
4606: ."ignored.");
4607: }
1.244 albertel 4608: } else {
4609: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
4610: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
4611: my $store_key=$dest;
4612: $store_key=~s/^stores/resource/;
4613: $store_key=~s/_/\./g;
4614: $grades{$store_key}=$entries{$fields{$dest}};
4615: }
1.41 ng 4616: }
1.508 www 4617: if (! %grades) {
4618: push(@skipped,&mt("[_1]: no data to save","$username:$domain"));
4619: } else {
4620: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
4621: my $result=&Apache::lonnet::cstore(\%grades,$symb,
1.302 albertel 4622: $env{'request.course.id'},
4623: $domain,$username);
1.508 www 4624: if ($result eq 'ok') {
1.627 www 4625: # Successfully stored
1.508 www 4626: $request->print('.');
1.627 www 4627: # Remove from grading queue
4628: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,
4629: $env{'course.'.$env{'request.course.id'}.'.domain'},
4630: $env{'course.'.$env{'request.course.id'}.'.num'},
4631: $domain,$username);
4632: $countdone++;
4633: } else {
1.508 www 4634: $request->print("<p><span class=\"LC_error\">".
4635: &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
4636: "$username:$domain",$result)."</span></p>");
4637: }
4638: $request->rflush();
4639: }
1.41 ng 4640: }
1.570 www 4641: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt("Saved scores for [quant,_1,student]",$countdone),$countdone==0));
1.657 raeburn 4642: if (@warnings) {
4643: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Warnings generated for the following saved scores:'),1).'<br />');
4644: $request->print(join(', ',@warnings));
4645: }
1.41 ng 4646: if (@skipped) {
1.571 www 4647: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('No scores stored for the following username(s):'),1).'<br />');
4648: $request->print(join(', ',@skipped));
1.106 albertel 4649: }
4650: if (@notallowed) {
1.571 www 4651: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Modification of scores not allowed for the following username(s):'),1).'<br />');
4652: $request->print(join(', ',@notallowed));
1.41 ng 4653: }
1.106 albertel 4654: $request->print("<br />\n");
1.345 bowersj2 4655: return $error_msg;
1.26 albertel 4656: }
1.44 ng 4657: #------------- end of section for handling csv file upload ---------
4658: #
4659: #-------------------------------------------------------------------
4660: #
1.122 ng 4661: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4662: #
4663: #--- Select a page/sequence and a student to grade
1.68 ng 4664: sub pickStudentPage {
1.608 www 4665: my ($request,$symb) = @_;
1.68 ng 4666:
1.539 riegler 4667: my $alertmsg = &mt('Please select the student you wish to grade.');
1.736 damieng 4668: &js_escape(\$alertmsg);
1.597 wenzelju 4669: $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
1.68 ng 4670:
4671: function checkPickOne(formname) {
1.76 ng 4672: if (radioSelection(formname.student) == null) {
1.539 riegler 4673: alert("$alertmsg");
1.68 ng 4674: return;
4675: }
1.125 ng 4676: ptr = pullDownSelection(formname.selectpage);
4677: formname.page.value = formname["page"+ptr].value;
4678: formname.title.value = formname["title"+ptr].value;
1.68 ng 4679: formname.submit();
4680: }
4681:
4682: LISTJAVASCRIPT
1.118 ng 4683: &commonJSfunctions($request);
1.608 www 4684:
1.257 albertel 4685: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4686: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4687: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4688:
1.398 albertel 4689: my $result='<h3><span class="LC_info"> '.
1.485 albertel 4690: &mt('Manual Grading by Page or Sequence').'</span></h3>';
1.68 ng 4691:
1.80 ng 4692: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.582 raeburn 4693: my $map_error;
4694: my ($titles,$symbx) = &getSymbMap($map_error);
4695: if ($map_error) {
4696: $request->print(&navmap_errormsg());
4697: return;
4698: }
1.137 albertel 4699: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4700: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4701: # my $type=($curpage =~ /\.(page|sequence)/);
1.700 bisitz 4702:
4703: # Collection of hidden fields
1.70 ng 4704: my $ctr=0;
1.68 ng 4705: foreach (@$titles) {
1.700 bisitz 4706: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4707: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4708: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4709: $ctr++;
1.68 ng 4710: }
1.700 bisitz 4711: $result.='<input type="hidden" name="page" />'."\n".
4712: '<input type="hidden" name="title" />'."\n";
4713:
4714: $result.=&build_section_inputs();
4715: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4716: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
4717: '<input type="hidden" name="command" value="displayPage" />'."\n".
4718: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.485 albertel 4719:
1.700 bisitz 4720: # Show grading options
4721: $result.=&Apache::lonhtmlcommon::start_pick_box();
4722: my $select = '<select name="selectpage">'."\n";
1.70 ng 4723: $ctr=0;
4724: foreach (@$titles) {
4725: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.700 bisitz 4726: $select.='<option value="'.$ctr.'"'.
4727: ($$symbx{$_} =~ /$curpage$/ ? ' selected="selected"' : '').
4728: '>'.$showtitle.'</option>'."\n";
1.70 ng 4729: $ctr++;
4730: }
1.700 bisitz 4731: $select.= '</select>';
1.68 ng 4732:
1.700 bisitz 4733: $result.=
4734: &Apache::lonhtmlcommon::row_title(&mt('Problems from'))
4735: .$select
4736: .&Apache::lonhtmlcommon::row_closure();
4737:
4738: $result.=
4739: &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
4740: .'<label><input type="radio" name="vProb" value="no"'
4741: .' checked="checked" /> '.&mt('no').' </label>'."\n"
4742: .'<label><input type="radio" name="vProb" value="yes" />'
4743: .&mt('yes').'</label>'."\n"
4744: .&Apache::lonhtmlcommon::row_closure();
4745:
4746: $result.=
4747: &Apache::lonhtmlcommon::row_title(&mt('View Submissions'))
4748: .'<label><input type="radio" name="lastSub" value="none" /> '
4749: .&mt('none').' </label>'."\n"
4750: .'<label><input type="radio" name="lastSub" value="datesub"'
4751: .' checked="checked" /> '.&mt('all submissions').'</label>'."\n"
4752: .'<label><input type="radio" name="lastSub" value="all" /> '
4753: .&mt('all submissions with details').' </label>'
4754: .&Apache::lonhtmlcommon::row_closure();
1.432 banghart 4755:
1.700 bisitz 4756: $result.=
4757: &Apache::lonhtmlcommon::row_title(&mt('Use CODE'))
4758: .'<input type="text" name="CODE" value="" />'
4759: .&Apache::lonhtmlcommon::row_closure(1)
4760: .&Apache::lonhtmlcommon::end_pick_box();
1.382 albertel 4761:
1.700 bisitz 4762: # Show list of students to select for grading
4763: $result.='<br /><input type="button" '.
1.589 bisitz 4764: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /><br />'."\n";
1.72 ng 4765:
1.68 ng 4766: $request->print($result);
4767:
1.485 albertel 4768: my $studentTable.=' <b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
1.484 albertel 4769: &Apache::loncommon::start_data_table().
4770: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4771: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4772: '<th>'.&nameUserString('header').'</th>'.
1.485 albertel 4773: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4774: '<th>'.&nameUserString('header').'</th>'.
4775: &Apache::loncommon::end_data_table_header_row();
1.68 ng 4776:
1.76 ng 4777: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4778: my $ptr = 1;
1.294 albertel 4779: foreach my $student (sort
4780: {
4781: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4782: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4783: }
4784: return $a cmp $b;
4785: } (keys(%$fullname))) {
1.68 ng 4786: my ($uname,$udom) = split(/:/,$student);
1.484 albertel 4787: $studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
4788: : '</td>');
1.126 ng 4789: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4790: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4791: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.484 albertel 4792: $studentTable.=
4793: ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row()
4794: : '');
1.68 ng 4795: $ptr++;
4796: }
1.484 albertel 4797: if ($ptr%2 == 0) {
4798: $studentTable.='</td><td> </td><td> </td>'.
4799: &Apache::loncommon::end_data_table_row();
4800: }
4801: $studentTable.=&Apache::loncommon::end_data_table()."\n";
1.126 ng 4802: $studentTable.='<input type="button" '.
1.589 bisitz 4803: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /></form>'."\n";
1.68 ng 4804:
4805: $request->print($studentTable);
4806:
4807: return '';
4808: }
4809:
4810: sub getSymbMap {
1.582 raeburn 4811: my ($map_error) = @_;
1.132 bowersj2 4812: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4813: unless (ref($navmap)) {
4814: if (ref($map_error)) {
4815: $$map_error = 'navmap';
4816: }
4817: return;
4818: }
1.68 ng 4819: my %symbx = ();
4820: my @titles = ();
1.117 bowersj2 4821: my $minder = 0;
4822:
4823: # Gather every sequence that has problems.
1.240 albertel 4824: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
4825: 1,0,1);
1.117 bowersj2 4826: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 4827: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 4828: my $title = $minder.'.'.
4829: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
4830: push(@titles, $title); # minder in case two titles are identical
4831: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 4832: $minder++;
1.241 albertel 4833: }
1.68 ng 4834: }
4835: return \@titles,\%symbx;
4836: }
4837:
1.72 ng 4838: #
4839: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 4840: sub displayPage {
1.608 www 4841: my ($request,$symb) = @_;
1.257 albertel 4842: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4843: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4844: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4845: my $pageTitle = $env{'form.page'};
1.103 albertel 4846: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4847: my ($uname,$udom) = split(/:/,$env{'form.student'});
4848: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 4849:
4850: #need to make sure we have the correct data for later EXT calls,
4851: #thus invalidate the cache
4852: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 4853: $env{'course.'.$env{'request.course.id'}.'.num'},
4854: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 4855: &Apache::lonnet::clear_EXT_cache_status();
4856:
1.103 albertel 4857: if (!&canview($usec)) {
1.712 bisitz 4858: $request->print(
4859: '<span class="LC_warning">'.
4860: &mt('Unable to view requested student. ([_1])',
4861: $env{'form.student'}).
4862: '</span>');
4863: return;
1.103 albertel 4864: }
1.398 albertel 4865: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.485 albertel 4866: $result.='<h3> '.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
1.129 ng 4867: '</h3>'."\n";
1.500 albertel 4868: $env{'form.CODE'} = uc($env{'form.CODE'});
1.501 foxr 4869: if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
1.485 albertel 4870: $result.='<h3> '.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
1.382 albertel 4871: } else {
4872: delete($env{'form.CODE'});
4873: }
1.71 ng 4874: &sub_page_js($request);
4875: $request->print($result);
4876:
1.132 bowersj2 4877: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4878: unless (ref($navmap)) {
4879: $request->print(&navmap_errormsg());
4880: return;
4881: }
1.257 albertel 4882: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 4883: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4884: if (!$map) {
1.485 albertel 4885: $request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
1.288 albertel 4886: return;
4887: }
1.68 ng 4888: my $iterator = $navmap->getIterator($map->map_start(),
4889: $map->map_finish());
4890:
1.71 ng 4891: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 4892: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 4893: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
4894: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 4895: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 4896: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 4897: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.613 www 4898: '<input type="hidden" name="overRideScore" value="no" />'."\n";
1.71 ng 4899:
1.382 albertel 4900: if (defined($env{'form.CODE'})) {
4901: $studentTable.=
4902: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
4903: }
1.381 albertel 4904: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 4905: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 4906:
1.594 bisitz 4907: $studentTable.=' <span class="LC_info">'.
4908: &mt('Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon).
4909: '</span>'."\n".
1.484 albertel 4910: &Apache::loncommon::start_data_table().
4911: &Apache::loncommon::start_data_table_header_row().
1.700 bisitz 4912: '<th>'.&mt('Prob.').'</th>'.
1.485 albertel 4913: '<th> '.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
1.484 albertel 4914: &Apache::loncommon::end_data_table_header_row();
1.71 ng 4915:
1.329 albertel 4916: &Apache::lonxml::clear_problem_counter();
1.196 albertel 4917: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 4918: $iterator->next(); # skip the first BEGIN_MAP
4919: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 4920: while ($depth > 0) {
1.68 ng 4921: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4922: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 4923:
1.385 albertel 4924: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4925: my $parts = $curRes->parts();
1.68 ng 4926: my $title = $curRes->compTitle();
1.71 ng 4927: my $symbx = $curRes->symb();
1.484 albertel 4928: $studentTable.=
4929: &Apache::loncommon::start_data_table_row().
4930: '<td align="center" valign="top" >'.$prob.
1.485 albertel 4931: (scalar(@{$parts}) == 1 ? ''
1.681 raeburn 4932: : '<br />('.&mt('[_1]parts',
4933: scalar(@{$parts}).' ').')'
1.485 albertel 4934: ).
4935: '</td>';
1.71 ng 4936: $studentTable.='<td valign="top">';
1.382 albertel 4937: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 4938: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 4939: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 4940: undef,'both',\%form);
1.71 ng 4941: } else {
1.382 albertel 4942: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 4943: $companswer =~ s|<form(.*?)>||g;
4944: $companswer =~ s|</form>||g;
1.71 ng 4945: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 4946: # $companswer =~ s/$1/ /ms;
1.326 albertel 4947: # $request->print('match='.$1."<br />\n");
1.71 ng 4948: # }
1.116 ng 4949: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.539 riegler 4950: $studentTable.=' <b>'.$title.'</b> <br /> <b>'.&mt('Correct answer').':</b><br />'.$companswer;
1.71 ng 4951: }
4952:
1.257 albertel 4953: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 4954:
1.257 albertel 4955: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 4956: if ($record{'version'} eq '') {
1.485 albertel 4957: $studentTable.='<br /> <span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
1.71 ng 4958: } else {
1.116 ng 4959: my %responseType = ();
4960: foreach my $partid (@{$parts}) {
1.147 albertel 4961: my @responseIds =$curRes->responseIds($partid);
4962: my @responseType =$curRes->responseType($partid);
4963: my %responseIds;
4964: for (my $i=0;$i<=$#responseIds;$i++) {
4965: $responseIds{$responseIds[$i]}=$responseType[$i];
4966: }
4967: $responseType{$partid} = \%responseIds;
1.116 ng 4968: }
1.148 albertel 4969: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 4970:
1.71 ng 4971: }
1.257 albertel 4972: } elsif ($env{'form.lastSub'} eq 'all') {
4973: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.726 raeburn 4974: my $identifier = (&canmodify($usec)? $prob : '');
1.71 ng 4975: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 4976: $env{'request.course.id'},
1.726 raeburn 4977: '','.submission',undef,
4978: $usec,$identifier);
1.71 ng 4979:
4980: }
1.103 albertel 4981: if (&canmodify($usec)) {
1.585 bisitz 4982: $studentTable.=&gradeBox_start();
1.103 albertel 4983: foreach my $partid (@{$parts}) {
4984: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
4985: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
4986: $question++;
4987: }
1.585 bisitz 4988: $studentTable.=&gradeBox_end();
1.196 albertel 4989: $prob++;
1.71 ng 4990: }
4991: $studentTable.='</td></tr>';
1.68 ng 4992:
1.103 albertel 4993: }
1.68 ng 4994: $curRes = $iterator->next();
4995: }
4996:
1.589 bisitz 4997: $studentTable.=
4998: '</table>'."\n".
4999: '<input type="button" value="'.&mt('Save').'" '.
5000: 'onclick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
5001: '</form>'."\n";
1.71 ng 5002: $request->print($studentTable);
5003:
5004: return '';
1.119 ng 5005: }
5006:
5007: sub displaySubByDates {
1.148 albertel 5008: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 5009: my $isCODE=0;
1.335 albertel 5010: my $isTask = ($symb =~/\.task$/);
1.224 albertel 5011: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 5012: my $studentTable=&Apache::loncommon::start_data_table().
5013: &Apache::loncommon::start_data_table_header_row().
5014: '<th>'.&mt('Date/Time').'</th>'.
5015: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
1.671 raeburn 5016: ($isTask?'<th>'.&mt('Version').'</th>':'').
1.467 albertel 5017: '<th>'.&mt('Submission').'</th>'.
5018: '<th>'.&mt('Status').'</th>'.
5019: &Apache::loncommon::end_data_table_header_row();
1.119 ng 5020: my ($version);
5021: my %mark;
1.148 albertel 5022: my %orders;
1.119 ng 5023: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 5024: if (!exists($$record{'1:timestamp'})) {
1.539 riegler 5025: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br />';
1.147 albertel 5026: }
1.335 albertel 5027:
5028: my $interaction;
1.525 raeburn 5029: my $no_increment = 1;
1.735 raeburn 5030: my (%lastrndseed,%lasttype);
1.119 ng 5031: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 5032: my $timestamp =
5033: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 5034: if (exists($$record{$version.':resource.0.version'})) {
5035: $interaction = $$record{$version.':resource.0.version'};
5036: }
1.671 raeburn 5037: if ($isTask && $env{'form.previousversion'}) {
5038: next unless ($interaction == $env{'form.previousversion'});
5039: }
1.335 albertel 5040: my $where = ($isTask ? "$version:resource.$interaction"
5041: : "$version:resource");
1.467 albertel 5042: $studentTable.=&Apache::loncommon::start_data_table_row().
5043: '<td>'.$timestamp.'</td>';
1.224 albertel 5044: if ($isCODE) {
5045: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
5046: }
1.671 raeburn 5047: if ($isTask) {
5048: $studentTable.='<td>'.$interaction.'</td>';
5049: }
1.119 ng 5050: my @versionKeys = split(/\:/,$$record{$version.':keys'});
5051: my @displaySub = ();
5052: foreach my $partid (@{$parts}) {
1.640 raeburn 5053: my ($hidden,$type);
5054: $type = $$record{$version.':resource.'.$partid.'.type'};
5055: if (($type eq 'anonsurvey') || ($type eq 'anonsurveycred')) {
1.596 raeburn 5056: $hidden = 1;
5057: }
1.335 albertel 5058: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
5059: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
5060:
1.122 ng 5061: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 5062: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 5063: foreach my $matchKey (@matchKey) {
1.198 albertel 5064: if (exists($$record{$version.':'.$matchKey}) &&
5065: $$record{$version.':'.$matchKey} ne '') {
1.596 raeburn 5066:
1.335 albertel 5067: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
5068: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.670 raeburn 5069: $displaySub[0].='<span class="LC_nobreak">';
1.577 bisitz 5070: $displaySub[0].='<b>'.&mt('Part: [_1]',$display_part).'</b>'
5071: .' <span class="LC_internal_info">'
1.625 www 5072: .'('.&mt('Response ID: [_1]',$responseId).')'
1.577 bisitz 5073: .'</span>'
5074: .' <b>';
1.596 raeburn 5075: if ($hidden) {
5076: $displaySub[0].= &mt('Anonymous Survey').'</b>';
5077: } else {
1.640 raeburn 5078: my ($trial,$rndseed,$newvariation);
5079: if ($type eq 'randomizetry') {
5080: $trial = $$record{"$where.$partid.tries"};
1.733 raeburn 5081: $rndseed = $$record{"$where.$partid.rndseed"};
1.640 raeburn 5082: }
1.596 raeburn 5083: if ($$record{"$where.$partid.tries"} eq '') {
5084: $displaySub[0].=&mt('Trial not counted');
5085: } else {
5086: $displaySub[0].=&mt('Trial: [_1]',
1.467 albertel 5087: $$record{"$where.$partid.tries"});
1.734 raeburn 5088: if (($rndseed ne '') && ($lastrndseed{$partid} ne '')) {
1.735 raeburn 5089: if (($rndseed ne $lastrndseed{$partid}) &&
5090: (($type eq 'randomizetry') || ($lasttype{$partid} eq 'randomizetry'))) {
1.640 raeburn 5091: $newvariation = ' ('.&mt('New variation this try').')';
5092: }
5093: }
5094: $lastrndseed{$partid} = $rndseed;
1.735 raeburn 5095: $lasttype{$partid} = $type;
1.596 raeburn 5096: }
5097: my $responseType=($isTask ? 'Task'
1.335 albertel 5098: : $responseType->{$partid}->{$responseId});
1.596 raeburn 5099: if (!exists($orders{$partid})) { $orders{$partid}={}; }
1.640 raeburn 5100: if ((!exists($orders{$partid}->{$responseId})) || ($trial)) {
1.596 raeburn 5101: $orders{$partid}->{$responseId}=
5102: &get_order($partid,$responseId,$symb,$uname,$udom,
1.640 raeburn 5103: $no_increment,$type,$trial,$rndseed);
1.596 raeburn 5104: }
1.640 raeburn 5105: $displaySub[0].='</b>'.$newvariation.'</span>'; # /nobreak
1.596 raeburn 5106: $displaySub[0].=' '.
1.640 raeburn 5107: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom,$type,$trial,$rndseed).'<br />';
1.596 raeburn 5108: }
1.147 albertel 5109: }
5110: }
1.335 albertel 5111: if (exists($$record{"$where.$partid.checkedin"})) {
1.485 albertel 5112: $displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
5113: $$record{"$where.$partid.checkedin"},
5114: $$record{"$where.$partid.checkedin.slot"}).
5115: '<br />';
1.335 albertel 5116: }
5117: if (exists $$record{"$where.$partid.award"}) {
1.485 albertel 5118: $displaySub[1].='<b>'.&mt('Part:').'</b> '.$display_part.' '.
1.335 albertel 5119: lc($$record{"$where.$partid.award"}).' '.
5120: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 5121: '<br />';
5122: }
1.335 albertel 5123: if (exists $$record{"$where.$partid.regrader"}) {
5124: $displaySub[2].=$$record{"$where.$partid.regrader"}.
5125: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
5126: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
5127: $displaySub[2].=
5128: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 5129: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 5130: }
5131: }
5132: # needed because old essay regrader has not parts info
5133: if (exists $$record{"$version:resource.regrader"}) {
5134: $displaySub[2].=$$record{"$version:resource.regrader"};
5135: }
5136: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
5137: if ($displaySub[2]) {
1.467 albertel 5138: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 5139: }
1.467 albertel 5140: $studentTable.=' </td>'.
5141: &Apache::loncommon::end_data_table_row();
1.119 ng 5142: }
1.467 albertel 5143: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 5144: return $studentTable;
1.71 ng 5145: }
5146:
5147: sub updateGradeByPage {
1.608 www 5148: my ($request,$symb) = @_;
1.71 ng 5149:
1.257 albertel 5150: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
5151: my $cnum = $env{"course.$env{'request.course.id'}.num"};
5152: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
5153: my $pageTitle = $env{'form.page'};
1.103 albertel 5154: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 5155: my ($uname,$udom) = split(/:/,$env{'form.student'});
5156: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 5157: if (!&canmodify($usec)) {
1.526 raeburn 5158: $request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
1.103 albertel 5159: return;
5160: }
1.398 albertel 5161: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.526 raeburn 5162: $result.='<h3> '.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 5163: '</h3>'."\n";
1.70 ng 5164:
1.68 ng 5165: $request->print($result);
5166:
1.582 raeburn 5167:
1.132 bowersj2 5168: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 5169: unless (ref($navmap)) {
5170: $request->print(&navmap_errormsg());
5171: return;
5172: }
1.257 albertel 5173: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 5174: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 5175: if (!$map) {
1.527 raeburn 5176: $request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
1.288 albertel 5177: return;
5178: }
1.71 ng 5179: my $iterator = $navmap->getIterator($map->map_start(),
5180: $map->map_finish());
1.70 ng 5181:
1.484 albertel 5182: my $studentTable=
5183: &Apache::loncommon::start_data_table().
5184: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 5185: '<th align="center"> '.&mt('Prob.').' </th>'.
5186: '<th> '.&mt('Title').' </th>'.
5187: '<th> '.&mt('Previous Score').' </th>'.
5188: '<th> '.&mt('New Score').' </th>'.
1.484 albertel 5189: &Apache::loncommon::end_data_table_header_row();
1.71 ng 5190:
5191: $iterator->next(); # skip the first BEGIN_MAP
5192: my $curRes = $iterator->next(); # for "current resource"
1.726 raeburn 5193: my ($depth,$question,$prob,$changeflag,$hideflag)= (1,1,1,0,0);
1.101 albertel 5194: while ($depth > 0) {
1.71 ng 5195: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 5196: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 5197:
1.385 albertel 5198: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 5199: my $parts = $curRes->parts();
1.71 ng 5200: my $title = $curRes->compTitle();
5201: my $symbx = $curRes->symb();
1.484 albertel 5202: $studentTable.=
5203: &Apache::loncommon::start_data_table_row().
5204: '<td align="center" valign="top" >'.$prob.
1.485 albertel 5205: (scalar(@{$parts}) == 1 ? ''
1.640 raeburn 5206: : '<br />('.&mt('[quant,_1,part]',scalar(@{$parts}))
1.526 raeburn 5207: .')').'</td>';
1.71 ng 5208: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
5209:
5210: my %newrecord=();
5211: my @displayPts=();
1.269 raeburn 5212: my %aggregate = ();
5213: my $aggregateflag = 0;
1.726 raeburn 5214: if ($env{'form.HIDE'.$prob}) {
5215: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.727 raeburn 5216: my ($version,$parts) = split(/:/,$env{'form.HIDE'.$prob},2);
1.728 raeburn 5217: my $numchgs = &makehidden($version,$parts,\%record,$symbx,$udom,$uname,1);
1.726 raeburn 5218: $hideflag += $numchgs;
5219: }
1.71 ng 5220: foreach my $partid (@{$parts}) {
1.257 albertel 5221: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
5222: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 5223:
1.257 albertel 5224: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
5225: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 5226: my $partial = $newpts/$wgt;
5227: my $score;
5228: if ($partial > 0) {
5229: $score = 'correct_by_override';
1.125 ng 5230: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 5231: $score = 'incorrect_by_override';
5232: }
1.257 albertel 5233: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 5234: if ($dropMenu eq 'excused') {
1.71 ng 5235: $partial = '';
5236: $score = 'excused';
1.125 ng 5237: } elsif ($dropMenu eq 'reset status'
1.257 albertel 5238: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 5239: $newrecord{'resource.'.$partid.'.tries'} = 0;
5240: $newrecord{'resource.'.$partid.'.solved'} = '';
5241: $newrecord{'resource.'.$partid.'.award'} = '';
5242: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 5243: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 5244: $changeflag++;
5245: $newpts = '';
1.269 raeburn 5246:
5247: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
5248: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
5249: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
5250: if ($aggtries > 0) {
5251: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
5252: $aggregateflag = 1;
5253: }
1.71 ng 5254: }
1.324 albertel 5255: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 5256: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.526 raeburn 5257: $displayPts[0].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.71 ng 5258: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 5259: ' <br />';
1.526 raeburn 5260: $displayPts[1].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.125 ng 5261: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 5262: ' <br />';
1.71 ng 5263: $question++;
1.380 albertel 5264: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 5265:
1.71 ng 5266: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 5267: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 5268: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 5269: if (scalar(keys(%newrecord)) > 0);
1.71 ng 5270:
5271: $changeflag++;
5272: }
5273: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 5274: my %record =
5275: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
5276: $udom,$uname);
5277:
5278: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
5279: $newrecord{'resource.CODE'} = $env{'form.CODE'};
5280: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
5281: $newrecord{'resource.CODE'} = '';
5282: }
1.257 albertel 5283: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 5284: $udom,$uname);
1.382 albertel 5285: %record = &Apache::lonnet::restore($symbx,
5286: $env{'request.course.id'},
5287: $udom,$uname);
1.380 albertel 5288: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
5289: $cdom,$cnum,$udom,$uname);
1.71 ng 5290: }
1.380 albertel 5291:
1.269 raeburn 5292: if ($aggregateflag) {
5293: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
5294: $env{'course.'.$env{'request.course.id'}.'.domain'},
5295: $env{'course.'.$env{'request.course.id'}.'.num'});
5296: }
1.125 ng 5297:
1.71 ng 5298: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
5299: '<td valign="top">'.$displayPts[1].'</td>'.
1.484 albertel 5300: &Apache::loncommon::end_data_table_row();
1.68 ng 5301:
1.196 albertel 5302: $prob++;
1.68 ng 5303: }
1.71 ng 5304: $curRes = $iterator->next();
1.68 ng 5305: }
1.98 albertel 5306:
1.484 albertel 5307: $studentTable.=&Apache::loncommon::end_data_table();
1.526 raeburn 5308: my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
5309: &mt('The scores were changed for [quant,_1,problem].',
1.726 raeburn 5310: $changeflag).'<br />');
5311: my $hidemsg=($hideflag == 0 ? '' :
5312: &mt('Submissions were marked "hidden" for [quant,_1,transaction].',
5313: $hideflag).'<br />');
5314: $request->print($hidemsg.$grademsg.$studentTable);
1.68 ng 5315:
1.70 ng 5316: return '';
5317: }
5318:
1.72 ng 5319: #-------- end of section for handling grading by page/sequence ---------
5320: #
5321: #-------------------------------------------------------------------
5322:
1.581 www 5323: #-------------------- Bubblesheet (Scantron) Grading -------------------
1.75 albertel 5324: #
5325: #------ start of section for handling grading by page/sequence ---------
5326:
1.423 albertel 5327: =pod
5328:
5329: =head1 Bubble sheet grading routines
5330:
1.424 albertel 5331: For this documentation:
5332:
5333: 'scanline' refers to the full line of characters
5334: from the file that we are parsing that represents one entire sheet
5335:
5336: 'bubble line' refers to the data
1.659 raeburn 5337: representing the line of bubbles that are on the physical bubblesheet
1.424 albertel 5338:
5339:
1.659 raeburn 5340: The overall process is that a scanned in bubblesheet data is uploaded
1.424 albertel 5341: into a course. When a user wants to grade, they select a
1.659 raeburn 5342: sequence/folder of resources, a file of bubblesheet info, and pick
1.424 albertel 5343: one of the predefined configurations for what each scanline looks
5344: like.
5345:
5346: Next each scanline is checked for any errors of either 'missing
1.435 foxr 5347: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 5348: because too light bubbling), 'double bubble' (each bubble line should
1.703 bisitz 5349: have no more than one letter picked), invalid or duplicated CODE,
1.556 weissno 5350: invalid student/employee ID
1.424 albertel 5351:
5352: If the CODE option is used that determines the randomization of the
1.556 weissno 5353: homework problems, either way the student/employee ID is looked up into a
1.424 albertel 5354: username:domain.
5355:
5356: During the validation phase the instructor can choose to skip scanlines.
5357:
1.659 raeburn 5358: After the validation phase, there are now 3 bubblesheet files
1.424 albertel 5359:
5360: scantron_original_filename (unmodified original file)
5361: scantron_corrected_filename (file where the corrected information has replaced the original information)
5362: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
5363:
5364: Also there is a separate hash nohist_scantrondata that contains extra
1.659 raeburn 5365: correction information that isn't representable in the bubblesheet
1.424 albertel 5366: file (see &scantron_getfile() for more information)
5367:
5368: After all scanlines are either valid, marked as valid or skipped, then
5369: foreach line foreach problem in the picked sequence, an ssi request is
5370: made that simulates a user submitting their selected letter(s) against
5371: the homework problem.
1.423 albertel 5372:
5373: =over 4
5374:
5375:
5376:
5377: =item defaultFormData
5378:
5379: Returns html hidden inputs used to hold context/default values.
5380:
5381: Arguments:
5382: $symb - $symb of the current resource
5383:
5384: =cut
1.422 foxr 5385:
1.81 albertel 5386: sub defaultFormData {
1.324 albertel 5387: my ($symb)=@_;
1.613 www 5388: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />';
1.81 albertel 5389: }
5390:
1.447 foxr 5391:
1.423 albertel 5392: =pod
5393:
5394: =item getSequenceDropDown
5395:
5396: Return html dropdown of possible sequences to grade
5397:
5398: Arguments:
1.582 raeburn 5399: $symb - $symb of the current resource
5400: $map_error - ref to scalar which will container error if
5401: $navmap object is unavailable in &getSymbMap().
1.423 albertel 5402:
5403: =cut
1.422 foxr 5404:
1.75 albertel 5405: sub getSequenceDropDown {
1.582 raeburn 5406: my ($symb,$map_error)=@_;
1.75 albertel 5407: my $result='<select name="selectpage">'."\n";
1.582 raeburn 5408: my ($titles,$symbx) = &getSymbMap($map_error);
5409: if (ref($map_error)) {
5410: return if ($$map_error);
5411: }
1.137 albertel 5412: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 5413: my $ctr=0;
5414: foreach (@$titles) {
5415: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
5416: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 5417: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 5418: '>'.$showtitle.'</option>'."\n";
5419: $ctr++;
5420: }
5421: $result.= '</select>';
5422: return $result;
5423: }
5424:
1.495 albertel 5425: my %bubble_lines_per_response; # no. bubble lines for each response.
1.554 raeburn 5426: # key is zero-based index - 0, 1, 2 ...
1.495 albertel 5427:
5428: my %first_bubble_line; # First bubble line no. for each bubble.
5429:
1.509 raeburn 5430: my %subdivided_bubble_lines; # no. bubble lines for optionresponse,
5431: # matchresponse or rankresponse, where
5432: # an individual response can have multiple
5433: # lines
1.503 raeburn 5434:
5435: my %responsetype_per_response; # responsetype for each response
5436:
1.691 raeburn 5437: my %masterseq_id_responsenum; # src_id (e.g., 12.3_0.11 etc.) for each
5438: # numbered response. Needed when randomorder
5439: # or randompick are in use. Key is ID, value
5440: # is response number.
5441:
1.495 albertel 5442: # Save and restore the bubble lines array to the form env.
5443:
5444:
5445: sub save_bubble_lines {
5446: foreach my $line (keys(%bubble_lines_per_response)) {
5447: $env{"form.scantron.bubblelines.$line"} = $bubble_lines_per_response{$line};
5448: $env{"form.scantron.first_bubble_line.$line"} =
5449: $first_bubble_line{$line};
1.503 raeburn 5450: $env{"form.scantron.sub_bubblelines.$line"} =
5451: $subdivided_bubble_lines{$line};
5452: $env{"form.scantron.responsetype.$line"} =
5453: $responsetype_per_response{$line};
1.495 albertel 5454: }
1.691 raeburn 5455: foreach my $resid (keys(%masterseq_id_responsenum)) {
5456: my $line = $masterseq_id_responsenum{$resid};
5457: $env{"form.scantron.residpart.$line"} = $resid;
5458: }
1.495 albertel 5459: }
5460:
5461:
5462: sub restore_bubble_lines {
5463: my $line = 0;
5464: %bubble_lines_per_response = ();
1.691 raeburn 5465: %masterseq_id_responsenum = ();
1.495 albertel 5466: while ($env{"form.scantron.bubblelines.$line"}) {
5467: my $value = $env{"form.scantron.bubblelines.$line"};
5468: $bubble_lines_per_response{$line} = $value;
5469: $first_bubble_line{$line} =
5470: $env{"form.scantron.first_bubble_line.$line"};
1.503 raeburn 5471: $subdivided_bubble_lines{$line} =
5472: $env{"form.scantron.sub_bubblelines.$line"};
5473: $responsetype_per_response{$line} =
5474: $env{"form.scantron.responsetype.$line"};
1.691 raeburn 5475: my $id = $env{"form.scantron.residpart.$line"};
5476: $masterseq_id_responsenum{$id} = $line;
1.495 albertel 5477: $line++;
5478: }
5479: }
5480:
1.423 albertel 5481: =pod
5482:
5483: =item scantron_filenames
5484:
5485: Returns a list of the scantron files in the current course
5486:
5487: =cut
1.422 foxr 5488:
1.202 albertel 5489: sub scantron_filenames {
1.257 albertel 5490: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5491: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517 raeburn 5492: my $getpropath = 1;
1.662 raeburn 5493: my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
5494: $cname,$getpropath);
1.202 albertel 5495: my @possiblenames;
1.662 raeburn 5496: if (ref($dirlist) eq 'ARRAY') {
5497: foreach my $filename (sort(@{$dirlist})) {
5498: ($filename)=split(/&/,$filename);
5499: if ($filename!~/^scantron_orig_/) { next ; }
5500: $filename=~s/^scantron_orig_//;
5501: push(@possiblenames,$filename);
5502: }
1.202 albertel 5503: }
5504: return @possiblenames;
5505: }
5506:
1.423 albertel 5507: =pod
5508:
5509: =item scantron_uploads
5510:
5511: Returns html drop-down list of scantron files in current course.
5512:
5513: Arguments:
5514: $file2grade - filename to set as selected in the dropdown
5515:
5516: =cut
1.422 foxr 5517:
1.202 albertel 5518: sub scantron_uploads {
1.209 ng 5519: my ($file2grade) = @_;
1.202 albertel 5520: my $result= '<select name="scantron_selectfile">';
5521: $result.="<option></option>";
5522: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 5523: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 5524: }
5525: $result.="</select>";
5526: return $result;
5527: }
5528:
1.423 albertel 5529: =pod
5530:
5531: =item scantron_scantab
5532:
5533: Returns html drop down of the scantron formats in the scantronformat.tab
5534: file.
5535:
5536: =cut
1.422 foxr 5537:
1.82 albertel 5538: sub scantron_scantab {
5539: my $result='<select name="scantron_format">'."\n";
1.191 albertel 5540: $result.='<option></option>'."\n";
1.518 raeburn 5541: my @lines = &get_scantronformat_file();
5542: if (@lines > 0) {
5543: foreach my $line (@lines) {
5544: next if (($line =~ /^\#/) || ($line eq ''));
5545: my ($name,$descrip)=split(/:/,$line);
5546: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
5547: }
1.82 albertel 5548: }
5549: $result.='</select>'."\n";
1.518 raeburn 5550: return $result;
5551: }
5552:
5553: =pod
5554:
5555: =item get_scantronformat_file
5556:
5557: Returns an array containing lines from the scantron format file for
5558: the domain of the course.
5559:
5560: If a url for a custom.tab file is listed in domain's configuration.db,
5561: lines are from this file.
5562:
5563: Otherwise, if a default.tab has been published in RES space by the
5564: domainconfig user, lines are from this file.
5565:
5566: Otherwise, fall back to getting lines from the legacy file on the
1.519 raeburn 5567: local server: /home/httpd/lonTabs/default_scantronformat.tab
1.82 albertel 5568:
1.518 raeburn 5569: =cut
5570:
5571: sub get_scantronformat_file {
5572: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5573: my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
5574: my $gottab = 0;
5575: my @lines;
5576: if (ref($domconfig{'scantron'}) eq 'HASH') {
5577: if ($domconfig{'scantron'}{'scantronformat'} ne '') {
5578: my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
5579: if ($formatfile ne '-1') {
5580: @lines = split("\n",$formatfile,-1);
5581: $gottab = 1;
5582: }
5583: }
5584: }
5585: if (!$gottab) {
5586: my $confname = $cdom.'-domainconfig';
5587: my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
5588: my $formatfile = &Apache::lonnet::getfile($default);
5589: if ($formatfile ne '-1') {
5590: @lines = split("\n",$formatfile,-1);
5591: $gottab = 1;
5592: }
5593: }
5594: if (!$gottab) {
1.519 raeburn 5595: my @domains = &Apache::lonnet::current_machine_domains();
5596: if (grep(/^\Q$cdom\E$/,@domains)) {
5597: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
5598: @lines = <$fh>;
5599: close($fh);
5600: } else {
5601: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
5602: @lines = <$fh>;
5603: close($fh);
5604: }
1.518 raeburn 5605: }
5606: return @lines;
1.82 albertel 5607: }
5608:
1.423 albertel 5609: =pod
5610:
5611: =item scantron_CODElist
5612:
5613: Returns html drop down of the saved CODE lists from current course,
5614: generated from earlier printings.
5615:
5616: =cut
1.422 foxr 5617:
1.186 albertel 5618: sub scantron_CODElist {
1.257 albertel 5619: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
5620: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 5621: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
5622: my $namechoice='<option></option>';
1.225 albertel 5623: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 5624: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 5625: if ($name =~ /^type\0/) { next; }
1.186 albertel 5626: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
5627: }
5628: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
5629: return $namechoice;
5630: }
5631:
1.423 albertel 5632: =pod
5633:
5634: =item scantron_CODEunique
5635:
5636: Returns the html for "Each CODE to be used once" radio.
5637:
5638: =cut
1.422 foxr 5639:
1.186 albertel 5640: sub scantron_CODEunique {
1.532 bisitz 5641: my $result='<span class="LC_nobreak">
1.272 albertel 5642: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5643: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 5644: </span>
1.532 bisitz 5645: <span class="LC_nobreak">
1.272 albertel 5646: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5647: value="no" />'.&mt('No').' </label>
1.381 albertel 5648: </span>';
1.186 albertel 5649: return $result;
5650: }
1.423 albertel 5651:
5652: =pod
5653:
5654: =item scantron_selectphase
5655:
1.659 raeburn 5656: Generates the initial screen to start the bubblesheet process.
1.423 albertel 5657: Allows for - starting a grading run.
1.424 albertel 5658: - downloading existing scan data (original, corrected
1.423 albertel 5659: or skipped info)
5660:
5661: - uploading new scan data
5662:
5663: Arguments:
5664: $r - The Apache request object
5665: $file2grade - name of the file that contain the scanned data to score
5666:
5667: =cut
1.186 albertel 5668:
1.75 albertel 5669: sub scantron_selectphase {
1.608 www 5670: my ($r,$file2grade,$symb) = @_;
1.75 albertel 5671: if (!$symb) {return '';}
1.582 raeburn 5672: my $map_error;
5673: my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
5674: if ($map_error) {
5675: $r->print('<br />'.&navmap_errormsg().'<br />');
5676: return;
5677: }
1.324 albertel 5678: my $default_form_data=&defaultFormData($symb);
1.209 ng 5679: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 5680: my $format_selector=&scantron_scantab();
1.186 albertel 5681: my $CODE_selector=&scantron_CODElist();
5682: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 5683: my $result;
1.422 foxr 5684:
1.513 foxr 5685: $ssi_error = 0;
5686:
1.606 wenzelju 5687: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
5688: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
5689:
5690: # Chunk of form to prompt for a scantron file upload.
5691:
5692: $r->print('
5693: <br />
5694: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5695: '.&Apache::loncommon::start_data_table_header_row().'
5696: <th>
5697: '.&mt('Specify a bubblesheet data file to upload.').'
5698: </th>
5699: '.&Apache::loncommon::end_data_table_header_row().'
5700: '.&Apache::loncommon::start_data_table_row().'
5701: <td>
5702: ');
1.608 www 5703: my $default_form_data=&defaultFormData($symb);
1.606 wenzelju 5704: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5705: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.736 damieng 5706: my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
5707: &js_escape(\$alertmsg);
1.606 wenzelju 5708: $r->print(&Apache::lonhtmlcommon::scripttag('
5709: function checkUpload(formname) {
5710: if (formname.upfile.value == "") {
1.736 damieng 5711: alert("'.$alertmsg.'");
1.606 wenzelju 5712: return false;
5713: }
5714: formname.submit();
5715: }'));
5716: $r->print('
5717: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
5718: '.$default_form_data.'
5719: <input name="courseid" type="hidden" value="'.$cnum.'" />
5720: <input name="domainid" type="hidden" value="'.$cdom.'" />
5721: <input name="command" value="scantronupload_save" type="hidden" />
5722: '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
5723: <br />
5724: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
5725: </form>
5726: ');
5727:
5728: $r->print('
5729: </td>
5730: '.&Apache::loncommon::end_data_table_row().'
5731: '.&Apache::loncommon::end_data_table().'
5732: ');
5733: }
5734:
1.422 foxr 5735: # Chunk of form to prompt for a file to grade and how:
5736:
1.489 albertel 5737: $result.= '
5738: <br />
5739: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
5740: <input type="hidden" name="command" value="scantron_warning" />
5741: '.$default_form_data.'
5742: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5743: '.&Apache::loncommon::start_data_table_header_row().'
5744: <th colspan="2">
1.492 albertel 5745: '.&mt('Specify file and which Folder/Sequence to grade').'
1.489 albertel 5746: </th>
5747: '.&Apache::loncommon::end_data_table_header_row().'
5748: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5749: <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489 albertel 5750: '.&Apache::loncommon::end_data_table_row().'
5751: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5752: <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
1.489 albertel 5753: '.&Apache::loncommon::end_data_table_row().'
5754: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5755: <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
1.489 albertel 5756: '.&Apache::loncommon::end_data_table_row().'
5757: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5758: <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489 albertel 5759: '.&Apache::loncommon::end_data_table_row().'
5760: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5761: <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489 albertel 5762: '.&Apache::loncommon::end_data_table_row().'
5763: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5764: <td> '.&mt('Options:').' </td>
1.187 albertel 5765: <td>
1.492 albertel 5766: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
5767: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
5768: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187 albertel 5769: </td>
1.489 albertel 5770: '.&Apache::loncommon::end_data_table_row().'
5771: '.&Apache::loncommon::start_data_table_row().'
1.174 albertel 5772: <td colspan="2">
1.572 www 5773: <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
1.162 albertel 5774: </td>
1.489 albertel 5775: '.&Apache::loncommon::end_data_table_row().'
5776: '.&Apache::loncommon::end_data_table().'
5777: </form>
5778: ';
1.162 albertel 5779:
5780: $r->print($result);
5781:
1.422 foxr 5782:
5783:
5784: # Chunk of the form that prompts to view a scoring office file,
5785: # corrected file, skipped records in a file.
5786:
1.489 albertel 5787: $r->print('
5788: <br />
5789: <form action="/adm/grades" name="scantron_download">
5790: '.$default_form_data.'
5791: <input type="hidden" name="command" value="scantron_download" />
5792: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5793: '.&Apache::loncommon::start_data_table_header_row().'
5794: <th>
1.492 albertel 5795: '.&mt('Download a scoring office file').'
1.489 albertel 5796: </th>
5797: '.&Apache::loncommon::end_data_table_header_row().'
5798: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5799: <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).'
1.489 albertel 5800: <br />
1.492 albertel 5801: <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489 albertel 5802: '.&Apache::loncommon::end_data_table_row().'
5803: '.&Apache::loncommon::end_data_table().'
5804: </form>
5805: <br />
5806: ');
1.162 albertel 5807:
1.457 banghart 5808: &Apache::lonpickcode::code_list($r,2);
1.523 raeburn 5809:
1.694 bisitz 5810: $r->print('<br /><form method="post" name="checkscantron" action="">'.
1.523 raeburn 5811: $default_form_data."\n".
5812: &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
5813: &Apache::loncommon::start_data_table_header_row()."\n".
5814: '<th colspan="2">
1.572 www 5815: '.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
1.523 raeburn 5816: '</th>'."\n".
5817: &Apache::loncommon::end_data_table_header_row()."\n".
5818: &Apache::loncommon::start_data_table_row()."\n".
5819: '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
5820: '<td> '.$sequence_selector.' </td>'.
5821: &Apache::loncommon::end_data_table_row()."\n".
5822: &Apache::loncommon::start_data_table_row()."\n".
5823: '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
5824: '<td> '.$file_selector.' </td>'."\n".
5825: &Apache::loncommon::end_data_table_row()."\n".
5826: &Apache::loncommon::start_data_table_row()."\n".
5827: '<td> '.&mt('Format of data file:').' </td>'."\n".
5828: '<td> '.$format_selector.' </td>'."\n".
5829: &Apache::loncommon::end_data_table_row()."\n".
5830: &Apache::loncommon::start_data_table_row()."\n".
1.557 raeburn 5831: '<td> '.&mt('Options').' </td>'."\n".
5832: '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
5833: &Apache::loncommon::end_data_table_row()."\n".
5834: &Apache::loncommon::start_data_table_row()."\n".
1.523 raeburn 5835: '<td colspan="2">'."\n".
5836: '<input type="hidden" name="command" value="checksubmissions" />'."\n".
1.575 www 5837: '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
1.523 raeburn 5838: '</td>'."\n".
5839: &Apache::loncommon::end_data_table_row()."\n".
5840: &Apache::loncommon::end_data_table()."\n".
5841: '</form><br />');
5842: return;
1.75 albertel 5843: }
5844:
1.423 albertel 5845: =pod
5846:
5847: =item get_scantron_config
5848:
1.711 bisitz 5849: Parse and return the bubblesheet configuration line selected as a
1.423 albertel 5850: hash of configuration file fields.
5851:
5852: Arguments:
5853: which - the name of the configuration to parse from the file.
5854:
5855:
5856: Returns:
5857: If the named configuration is not in the file, an empty
5858: hash is returned.
5859: a hash with the fields
5860: name - internal name for the this configuration setup
5861: description - text to display to operator that describes this config
5862: CODElocation - if 0 or the string 'none'
5863: - no CODE exists for this config
5864: if -1 || the string 'letter'
5865: - a CODE exists for this config and is
5866: a string of letters
5867: Unsupported value (but planned for future support)
5868: if a positive integer
5869: - The CODE exists as the first n items from
5870: the question section of the form
5871: if the string 'number'
5872: - The CODE exists for this config and is
5873: a string of numbers
5874: CODEstart - (only matter if a CODE exists) column in the line where
5875: the CODE starts
5876: CODElength - length of the CODE
1.573 bisitz 5877: IDstart - column where the student/employee ID starts
1.556 weissno 5878: IDlength - length of the student/employee ID info
1.423 albertel 5879: Qstart - column where the information from the bubbled
5880: 'questions' start
5881: Qlength - number of columns comprising a single bubble line from
5882: the sheet. (usually either 1 or 10)
1.424 albertel 5883: Qon - either a single character representing the character used
1.423 albertel 5884: to signal a bubble was chosen in the positional setup, or
5885: the string 'letter' if the letter of the chosen bubble is
5886: in the final, or 'number' if a number representing the
5887: chosen bubble is in the file (1->A 0->J)
1.424 albertel 5888: Qoff - the character used to represent that a bubble was
5889: left blank
1.423 albertel 5890: PaperID - if the scanning process generates a unique number for each
5891: sheet scanned the column that this ID number starts in
5892: PaperIDlength - number of columns that comprise the unique ID number
5893: for the sheet of paper
1.424 albertel 5894: FirstName - column that the first name starts in
1.423 albertel 5895: FirstNameLength - number of columns that the first name spans
5896:
5897: LastName - column that the last name starts in
5898: LastNameLength - number of columns that the last name spans
1.649 raeburn 5899: BubblesPerRow - number of bubbles available in each row used to
5900: bubble an answer. (If not specified, 10 assumed).
1.671 raeburn 5901:
1.423 albertel 5902: =cut
1.422 foxr 5903:
1.82 albertel 5904: sub get_scantron_config {
5905: my ($which) = @_;
1.518 raeburn 5906: my @lines = &get_scantronformat_file();
1.82 albertel 5907: my %config;
1.157 albertel 5908: #FIXME probably should move to XML it has already gotten a bit much now
1.518 raeburn 5909: foreach my $line (@lines) {
1.82 albertel 5910: my ($name,$descrip)=split(/:/,$line);
5911: if ($name ne $which ) { next; }
5912: chomp($line);
5913: my @config=split(/:/,$line);
5914: $config{'name'}=$config[0];
5915: $config{'description'}=$config[1];
5916: $config{'CODElocation'}=$config[2];
5917: $config{'CODEstart'}=$config[3];
5918: $config{'CODElength'}=$config[4];
5919: $config{'IDstart'}=$config[5];
5920: $config{'IDlength'}=$config[6];
5921: $config{'Qstart'}=$config[7];
1.497 foxr 5922: $config{'Qlength'}=$config[8];
1.82 albertel 5923: $config{'Qoff'}=$config[9];
5924: $config{'Qon'}=$config[10];
1.157 albertel 5925: $config{'PaperID'}=$config[11];
5926: $config{'PaperIDlength'}=$config[12];
5927: $config{'FirstName'}=$config[13];
5928: $config{'FirstNamelength'}=$config[14];
5929: $config{'LastName'}=$config[15];
5930: $config{'LastNamelength'}=$config[16];
1.649 raeburn 5931: $config{'BubblesPerRow'}=$config[17];
1.82 albertel 5932: last;
5933: }
5934: return %config;
5935: }
5936:
1.423 albertel 5937: =pod
5938:
5939: =item username_to_idmap
5940:
1.556 weissno 5941: creates a hash keyed by student/employee ID with values of the corresponding
1.731 raeburn 5942: student username:domain. If a single ID occurs for more than one student,
5943: the status of the student is checked, and if Active, the value in the hash
5944: will be set to the Active student.
1.423 albertel 5945:
5946: Arguments:
5947:
5948: $classlist - reference to the class list hash. This is a hash
5949: keyed by student name:domain whose elements are references
1.424 albertel 5950: to arrays containing various chunks of information
1.423 albertel 5951: about the student. (See loncoursedata for more info).
5952:
5953: Returns
5954: %idmap - the constructed hash
5955:
5956: =cut
5957:
1.82 albertel 5958: sub username_to_idmap {
5959: my ($classlist)= @_;
5960: my %idmap;
5961: foreach my $student (keys(%$classlist)) {
1.731 raeburn 5962: my $id = $classlist->{$student}->[&Apache::loncoursedata::CL_ID];
5963: unless ($id eq '') {
5964: if (!exists($idmap{$id})) {
5965: $idmap{$id} = $student;
5966: } else {
5967: my $status = $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS];
5968: if ($status eq 'Active') {
5969: $idmap{$id} = $student;
5970: }
5971: }
5972: }
1.82 albertel 5973: }
5974: return %idmap;
5975: }
1.423 albertel 5976:
5977: =pod
5978:
1.424 albertel 5979: =item scantron_fixup_scanline
1.423 albertel 5980:
5981: Process a requested correction to a scanline.
5982:
5983: Arguments:
5984: $scantron_config - hash from &get_scantron_config()
5985: $scan_data - hash of correction information
5986: (see &scantron_getfile())
5987: $line - existing scanline
5988: $whichline - line number of the passed in scanline
5989: $field - type of change to process
5990: (either
1.573 bisitz 5991: 'ID' -> correct the student/employee ID
1.423 albertel 5992: 'CODE' -> correct the CODE
5993: 'answer' -> fixup the submitted answers)
5994:
5995: $args - hash of additional info,
5996: - 'ID'
5997: 'newid' -> studentID to use in replacement
1.424 albertel 5998: of existing one
1.423 albertel 5999: - 'CODE'
6000: 'CODE_ignore_dup' - set to true if duplicates
6001: should be ignored.
6002: 'CODE' - is new code or 'use_unfound'
1.424 albertel 6003: if the existing unfound code should
1.423 albertel 6004: be used as is
6005: - 'answer'
6006: 'response' - new answer or 'none' if blank
6007: 'question' - the bubble line to change
1.503 raeburn 6008: 'questionnum' - the question identifier,
6009: may include subquestion.
1.423 albertel 6010:
6011: Returns:
6012: $line - the modified scanline
6013:
6014: Side effects:
6015: $scan_data - may be updated
6016:
6017: =cut
6018:
1.82 albertel 6019:
1.157 albertel 6020: sub scantron_fixup_scanline {
6021: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
6022: if ($field eq 'ID') {
6023: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 6024: return ($line,1,'New value too large');
1.157 albertel 6025: }
6026: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
6027: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
6028: $args->{'newid'});
6029: }
6030: substr($line,$$scantron_config{'IDstart'}-1,
6031: $$scantron_config{'IDlength'})=$args->{'newid'};
6032: if ($args->{'newid'}=~/^\s*$/) {
6033: &scan_data($scan_data,"$whichline.user",
6034: $args->{'username'}.':'.$args->{'domain'});
6035: }
1.186 albertel 6036: } elsif ($field eq 'CODE') {
1.192 albertel 6037: if ($args->{'CODE_ignore_dup'}) {
6038: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
6039: }
6040: &scan_data($scan_data,"$whichline.useCODE",'1');
6041: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 6042: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
6043: return ($line,1,'New CODE value too large');
6044: }
6045: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
6046: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
6047: }
6048: substr($line,$$scantron_config{'CODEstart'}-1,
6049: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 6050: }
1.157 albertel 6051: } elsif ($field eq 'answer') {
1.497 foxr 6052: my $length=$scantron_config->{'Qlength'};
1.157 albertel 6053: my $off=$scantron_config->{'Qoff'};
6054: my $on=$scantron_config->{'Qon'};
1.497 foxr 6055: my $answer=${off}x$length;
6056: if ($args->{'response'} eq 'none') {
6057: &scan_data($scan_data,
1.503 raeburn 6058: "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497 foxr 6059: } else {
6060: if ($on eq 'letter') {
6061: my @alphabet=('A'..'Z');
6062: $answer=$alphabet[$args->{'response'}];
6063: } elsif ($on eq 'number') {
6064: $answer=$args->{'response'}+1;
6065: if ($answer == 10) { $answer = '0'; }
1.274 albertel 6066: } else {
1.497 foxr 6067: substr($answer,$args->{'response'},1)=$on;
1.274 albertel 6068: }
1.497 foxr 6069: &scan_data($scan_data,
1.503 raeburn 6070: "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157 albertel 6071: }
1.497 foxr 6072: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
6073: substr($line,$where-1,$length)=$answer;
1.157 albertel 6074: }
6075: return $line;
6076: }
1.423 albertel 6077:
6078: =pod
6079:
6080: =item scan_data
6081:
6082: Edit or look up an item in the scan_data hash.
6083:
6084: Arguments:
6085: $scan_data - The hash (see scantron_getfile)
6086: $key - shorthand of the key to edit (actual key is
1.424 albertel 6087: scantronfilename_key).
1.423 albertel 6088: $data - New value of the hash entry.
6089: $delete - If true, the entry is removed from the hash.
6090:
6091: Returns:
6092: The new value of the hash table field (undefined if deleted).
6093:
6094: =cut
6095:
6096:
1.157 albertel 6097: sub scan_data {
6098: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 6099: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 6100: if (defined($value)) {
6101: $scan_data->{$filename.'_'.$key} = $value;
6102: }
6103: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
6104: return $scan_data->{$filename.'_'.$key};
6105: }
1.423 albertel 6106:
1.495 albertel 6107: # ----- These first few routines are general use routines.----
6108:
6109: # Return the number of occurences of a pattern in a string.
6110:
6111: sub occurence_count {
6112: my ($string, $pattern) = @_;
6113:
6114: my @matches = ($string =~ /$pattern/g);
6115:
6116: return scalar(@matches);
6117: }
6118:
6119:
6120: # Take a string known to have digits and convert all the
6121: # digits into letters in the range J,A..I.
6122:
6123: sub digits_to_letters {
6124: my ($input) = @_;
6125:
6126: my @alphabet = ('J', 'A'..'I');
6127:
6128: my @input = split(//, $input);
6129: my $output ='';
6130: for (my $i = 0; $i < scalar(@input); $i++) {
6131: if ($input[$i] =~ /\d/) {
6132: $output .= $alphabet[$input[$i]];
6133: } else {
6134: $output .= $input[$i];
6135: }
6136: }
6137: return $output;
6138: }
6139:
1.423 albertel 6140: =pod
6141:
6142: =item scantron_parse_scanline
6143:
1.711 bisitz 6144: Decodes a scanline from the selected bubblesheet file
1.423 albertel 6145:
6146: Arguments:
1.711 bisitz 6147: line - The text of the bubblesheet file line to process
1.423 albertel 6148: whichline - Line number
1.711 bisitz 6149: scantron_config - Hash describing the format of the bubblesheet lines.
1.423 albertel 6150: scan_data - Hash of extra information about the scanline
6151: (see scantron_getfile for more information)
6152: just_header - True if should not process question answers but only
6153: the stuff to the left of the answers.
1.691 raeburn 6154: randomorder - True if randomorder in use
6155: randompick - True if randompick in use
6156: sequence - Exam folder URL
6157: master_seq - Ref to array containing symbs in exam folder
6158: symb_to_resource - Ref to hash of symbs for resources in exam folder
6159: (corresponding values are resource objects)
6160: partids_by_symb - Ref to hash of symb -> array ref of partIDs
6161: orderedforcode - Ref to hash of arrays. keys are CODEs and values
6162: are refs to an array of resource objects, ordered
6163: according to order used for CODE, when randomorder
6164: and or randompick are in use.
6165: respnumlookup - Ref to hash mapping question numbers in bubble lines
6166: for current line to question number used for same question
6167: in "Master Sequence" (as seen by Course Coordinator).
6168: startline - Ref to hash where key is question number (0 is first)
6169: and value is number of first bubble line for current
6170: student or code-based randompick and/or randomorder.
6171: totalref - Ref of scalar used to score total number of bubble
6172: lines needed for responses in a scan line (used when
6173: randompick in use.
6174:
1.423 albertel 6175: Returns:
6176: Hash containing the result of parsing the scanline
6177:
6178: Keys are all proceeded by the string 'scantron.'
6179:
6180: CODE - the CODE in use for this scanline
6181: useCODE - 1 if the CODE is invalid but it usage has been forced
6182: by the operator
6183: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
6184: CODEs were selected, but the usage has been
6185: forced by the operator
1.556 weissno 6186: ID - student/employee ID
1.423 albertel 6187: PaperID - if used, the ID number printed on the sheet when the
6188: paper was scanned
6189: FirstName - first name from the sheet
6190: LastName - last name from the sheet
6191:
6192: if just_header was not true these key may also exist
6193:
1.447 foxr 6194: missingerror - a list of bubble ranges that are considered to be answers
6195: to a single question that don't have any bubbles filled in.
6196: Of the form questionnumber:firstbubblenumber:count.
6197: doubleerror - a list of bubble ranges that are considered to be answers
6198: to a single question that have more than one bubble filled in.
6199: Of the form questionnumber::firstbubblenumber:count
6200:
6201: In the above, count is the number of bubble responses in the
6202: input line needed to represent the possible answers to the question.
6203: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
6204: per line would have count = 2.
6205:
1.423 albertel 6206: maxquest - the number of the last bubble line that was parsed
6207:
6208: (<number> starts at 1)
6209: <number>.answer - zero or more letters representing the selected
6210: letters from the scanline for the bubble line
6211: <number>.
6212: if blank there was either no bubble or there where
6213: multiple bubbles, (consult the keys missingerror and
6214: doubleerror if this is an error condition)
6215:
6216: =cut
6217:
1.82 albertel 6218: sub scantron_parse_scanline {
1.691 raeburn 6219: my ($line,$whichline,$scantron_config,$scan_data,$just_header,$idmap,
6220: $randomorder,$randompick,$sequence,$master_seq,$symb_to_resource,
6221: $partids_by_symb,$orderedforcode,$respnumlookup,$startline,$totalref)=@_;
1.470 foxr 6222:
1.82 albertel 6223: my %record;
1.691 raeburn 6224: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # stuff before answers
1.278 albertel 6225: if (!($$scantron_config{'CODElocation'} eq 0 ||
6226: $$scantron_config{'CODElocation'} eq 'none')) {
6227: if ($$scantron_config{'CODElocation'} < 0 ||
6228: $$scantron_config{'CODElocation'} eq 'letter' ||
6229: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 6230: $record{'scantron.CODE'}=substr($data,
6231: $$scantron_config{'CODEstart'}-1,
1.83 albertel 6232: $$scantron_config{'CODElength'});
1.191 albertel 6233: if (&scan_data($scan_data,"$whichline.useCODE")) {
6234: $record{'scantron.useCODE'}=1;
6235: }
1.192 albertel 6236: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
6237: $record{'scantron.CODE_ignore_dup'}=1;
6238: }
1.82 albertel 6239: } else {
6240: #FIXME interpret first N questions
6241: }
6242: }
1.83 albertel 6243: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
6244: $$scantron_config{'IDlength'});
1.157 albertel 6245: $record{'scantron.PaperID'}=
6246: substr($data,$$scantron_config{'PaperID'}-1,
6247: $$scantron_config{'PaperIDlength'});
6248: $record{'scantron.FirstName'}=
6249: substr($data,$$scantron_config{'FirstName'}-1,
6250: $$scantron_config{'FirstNamelength'});
6251: $record{'scantron.LastName'}=
6252: substr($data,$$scantron_config{'LastName'}-1,
6253: $$scantron_config{'LastNamelength'});
1.423 albertel 6254: if ($just_header) { return \%record; }
1.194 albertel 6255:
1.82 albertel 6256: my @alphabet=('A'..'Z');
6257: my $questnum=0;
1.447 foxr 6258: my $ansnum =1; # Multiple 'answer lines'/question.
6259:
1.691 raeburn 6260: my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
6261: if ($randompick || $randomorder) {
6262: my $total = &get_respnum_lookups($sequence,$scan_data,$idmap,$line,\%record,
6263: $master_seq,$symb_to_resource,
6264: $partids_by_symb,$orderedforcode,
6265: $respnumlookup,$startline);
6266: if ($total) {
6267: $lastpos = $total*$$scantron_config{'Qlength'};
6268: }
6269: if (ref($totalref)) {
6270: $$totalref = $total;
6271: }
6272: }
6273: my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos); # Answers
1.470 foxr 6274: chomp($questions); # Get rid of any trailing \n.
6275: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
6276: while (length($questions)) {
1.691 raeburn 6277: my $answers_needed;
6278: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6279: $answers_needed = $bubble_lines_per_response{$respnumlookup->{$questnum}};
6280: } else {
6281: $answers_needed = $bubble_lines_per_response{$questnum};
6282: }
1.503 raeburn 6283: my $answer_length = ($$scantron_config{'Qlength'} * $answers_needed)
6284: || 1;
6285: $questnum++;
6286: my $quest_id = $questnum;
6287: my $currentquest = substr($questions,0,$answer_length);
6288: $questions = substr($questions,$answer_length);
6289: if (length($currentquest) < $answer_length) { next; }
6290:
1.691 raeburn 6291: my $subdivided;
6292: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6293: $subdivided = $subdivided_bubble_lines{$respnumlookup->{$questnum-1}};
6294: } else {
6295: $subdivided = $subdivided_bubble_lines{$questnum-1};
6296: }
6297: if ($subdivided =~ /,/) {
1.503 raeburn 6298: my $subquestnum = 1;
6299: my $subquestions = $currentquest;
1.691 raeburn 6300: my @subanswers_needed = split(/,/,$subdivided);
1.503 raeburn 6301: foreach my $subans (@subanswers_needed) {
6302: my $subans_length =
6303: ($$scantron_config{'Qlength'} * $subans) || 1;
6304: my $currsubquest = substr($subquestions,0,$subans_length);
6305: $subquestions = substr($subquestions,$subans_length);
6306: $quest_id = "$questnum.$subquestnum";
6307: if (($$scantron_config{'Qon'} eq 'letter') ||
6308: ($$scantron_config{'Qon'} eq 'number')) {
6309: $ansnum = &scantron_validator_lettnum($ansnum,
6310: $questnum,$quest_id,$subans,$currsubquest,$whichline,
1.691 raeburn 6311: \@alphabet,\%record,$scantron_config,$scan_data,
6312: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6313: } else {
6314: $ansnum = &scantron_validator_positional($ansnum,
1.691 raeburn 6315: $questnum,$quest_id,$subans,$currsubquest,$whichline,
6316: \@alphabet,\%record,$scantron_config,$scan_data,
6317: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6318: }
6319: $subquestnum ++;
6320: }
6321: } else {
6322: if (($$scantron_config{'Qon'} eq 'letter') ||
6323: ($$scantron_config{'Qon'} eq 'number')) {
6324: $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
6325: $quest_id,$answers_needed,$currentquest,$whichline,
1.691 raeburn 6326: \@alphabet,\%record,$scantron_config,$scan_data,
6327: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6328: } else {
6329: $ansnum = &scantron_validator_positional($ansnum,$questnum,
6330: $quest_id,$answers_needed,$currentquest,$whichline,
1.691 raeburn 6331: \@alphabet,\%record,$scantron_config,$scan_data,
6332: $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6333: }
6334: }
6335: }
6336: $record{'scantron.maxquest'}=$questnum;
6337: return \%record;
6338: }
1.447 foxr 6339:
1.691 raeburn 6340: sub get_master_seq {
6341: my ($resources,$master_seq,$symb_to_resource) = @_;
6342: return unless ((ref($resources) eq 'ARRAY') && (ref($master_seq) eq 'ARRAY') &&
6343: (ref($symb_to_resource) eq 'HASH'));
6344: my $resource_error;
6345: foreach my $resource (@{$resources}) {
6346: my $ressymb;
6347: if (ref($resource)) {
6348: $ressymb = $resource->symb();
6349: push(@{$master_seq},$ressymb);
6350: $symb_to_resource->{$ressymb} = $resource;
6351: } else {
6352: $resource_error = 1;
6353: last;
6354: }
6355: }
6356: return $resource_error;
6357: }
6358:
6359: sub get_respnum_lookups {
6360: my ($sequence,$scan_data,$idmap,$line,$record,$master_seq,$symb_to_resource,
6361: $partids_by_symb,$orderedforcode,$respnumlookup,$startline) = @_;
6362: return unless ((ref($record) eq 'HASH') && (ref($master_seq) eq 'ARRAY') &&
6363: (ref($symb_to_resource) eq 'HASH') && (ref($partids_by_symb) eq 'HASH') &&
6364: (ref($orderedforcode) eq 'HASH') && (ref($respnumlookup) eq 'HASH') &&
6365: (ref($startline) eq 'HASH'));
6366: my ($user,$scancode);
6367: if ((exists($record->{'scantron.CODE'})) &&
6368: (&Apache::lonnet::validCODE($record->{'scantron.CODE'}))) {
6369: $scancode = $record->{'scantron.CODE'};
6370: } else {
6371: $user = &scantron_find_student($record,$scan_data,$idmap,$line);
6372: }
6373: my @mapresources =
6374: &users_order($user,$scancode,$sequence,$master_seq,$symb_to_resource,
6375: $orderedforcode);
6376: my $total = 0;
6377: my $count = 0;
6378: foreach my $resource (@mapresources) {
6379: my $id = $resource->id();
6380: my $symb = $resource->symb();
6381: if (ref($partids_by_symb->{$symb}) eq 'ARRAY') {
6382: foreach my $partid (@{$partids_by_symb->{$symb}}) {
6383: my $respnum = $masterseq_id_responsenum{$id.'_'.$partid};
6384: if ($respnum ne '') {
6385: $respnumlookup->{$count} = $respnum;
6386: $startline->{$count} = $total;
6387: $total += $bubble_lines_per_response{$respnum};
6388: $count ++;
6389: }
6390: }
6391: }
6392: }
6393: return $total;
6394: }
6395:
1.503 raeburn 6396: sub scantron_validator_lettnum {
6397: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
1.691 raeburn 6398: $alphabet,$record,$scantron_config,$scan_data,$randomorder,
6399: $randompick,$respnumlookup) = @_;
1.503 raeburn 6400:
6401: # Qon 'letter' implies for each slot in currquest we have:
6402: # ? or * for doubles, a letter in A-Z for a bubble, and
6403: # about anything else (esp. a value of Qoff) for missing
6404: # bubbles.
6405: #
6406: # Qon 'number' implies each slot gives a digit that indexes the
6407: # bubbles filled, or Qoff, or a non-number for unbubbled lines,
6408: # and * or ? for double bubbles on a single line.
6409: #
1.447 foxr 6410:
1.503 raeburn 6411: my $matchon;
6412: if ($$scantron_config{'Qon'} eq 'letter') {
6413: $matchon = '[A-Z]';
6414: } elsif ($$scantron_config{'Qon'} eq 'number') {
6415: $matchon = '\d';
6416: }
6417: my $occurrences = 0;
1.691 raeburn 6418: my $responsenum = $questnum-1;
6419: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6420: $responsenum = $respnumlookup->{$questnum-1}
6421: }
6422: if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
6423: ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
6424: ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
6425: ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
6426: ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
6427: ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.503 raeburn 6428: my @singlelines = split('',$currquest);
6429: foreach my $entry (@singlelines) {
6430: $occurrences = &occurence_count($entry,$matchon);
6431: if ($occurrences > 1) {
6432: last;
6433: }
1.691 raeburn 6434: }
1.503 raeburn 6435: } else {
6436: $occurrences = &occurence_count($currquest,$matchon);
6437: }
6438: if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
6439: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6440: for (my $ans=0; $ans<$answers_needed; $ans++) {
6441: my $bubble = substr($currquest,$ans,1);
6442: if ($bubble =~ /$matchon/ ) {
6443: if ($$scantron_config{'Qon'} eq 'number') {
6444: if ($bubble == 0) {
6445: $bubble = 10;
6446: }
6447: $record->{"scantron.$ansnum.answer"} =
6448: $alphabet->[$bubble-1];
6449: } else {
6450: $record->{"scantron.$ansnum.answer"} = $bubble;
6451: }
6452: } else {
6453: $record->{"scantron.$ansnum.answer"}='';
6454: }
6455: $ansnum++;
6456: }
6457: } elsif (!defined($currquest)
6458: || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
6459: || (&occurence_count($currquest,$matchon) == 0)) {
6460: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6461: $record->{"scantron.$ansnum.answer"}='';
6462: $ansnum++;
6463: }
6464: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6465: push(@{$record->{'scantron.missingerror'}},$quest_id);
6466: }
6467: } else {
6468: if ($$scantron_config{'Qon'} eq 'number') {
6469: $currquest = &digits_to_letters($currquest);
6470: }
6471: for (my $ans=0; $ans<$answers_needed; $ans++) {
6472: my $bubble = substr($currquest,$ans,1);
6473: $record->{"scantron.$ansnum.answer"} = $bubble;
6474: $ansnum++;
6475: }
6476: }
6477: return $ansnum;
6478: }
1.447 foxr 6479:
1.503 raeburn 6480: sub scantron_validator_positional {
6481: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
1.691 raeburn 6482: $whichline,$alphabet,$record,$scantron_config,$scan_data,
6483: $randomorder,$randompick,$respnumlookup) = @_;
1.447 foxr 6484:
1.503 raeburn 6485: # Otherwise there's a positional notation;
6486: # each bubble line requires Qlength items, and there are filled in
6487: # bubbles for each case where there 'Qon' characters.
6488: #
1.447 foxr 6489:
1.503 raeburn 6490: my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447 foxr 6491:
1.503 raeburn 6492: # If the split only gives us one element.. the full length of the
6493: # answer string, no bubbles are filled in:
1.447 foxr 6494:
1.507 raeburn 6495: if ($answers_needed eq '') {
6496: return;
6497: }
6498:
1.503 raeburn 6499: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
6500: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6501: $record->{"scantron.$ansnum.answer"}='';
6502: $ansnum++;
6503: }
6504: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6505: push(@{$record->{"scantron.missingerror"}},$quest_id);
6506: }
6507: } elsif (scalar(@array) == 2) {
6508: my $location = length($array[0]);
6509: my $line_num = int($location / $$scantron_config{'Qlength'});
6510: my $bubble = $alphabet->[$location % $$scantron_config{'Qlength'}];
6511: for (my $ans=0; $ans<$answers_needed; $ans++) {
6512: if ($ans eq $line_num) {
6513: $record->{"scantron.$ansnum.answer"} = $bubble;
6514: } else {
6515: $record->{"scantron.$ansnum.answer"} = ' ';
6516: }
6517: $ansnum++;
6518: }
6519: } else {
6520: # If there's more than one instance of a bubble character
6521: # That's a double bubble; with positional notation we can
6522: # record all the bubbles filled in as well as the
6523: # fact this response consists of multiple bubbles.
6524: #
1.691 raeburn 6525: my $responsenum = $questnum-1;
6526: if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6527: $responsenum = $respnumlookup->{$questnum-1}
6528: }
6529: if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
6530: ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
6531: ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
6532: ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
6533: ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
6534: ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.503 raeburn 6535: my $doubleerror = 0;
6536: while (($currquest >= $$scantron_config{'Qlength'}) &&
6537: (!$doubleerror)) {
6538: my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
6539: $currquest = substr($currquest,$$scantron_config{'Qlength'});
6540: my @currarray = split($$scantron_config{'Qon'},$currline,-1);
6541: if (length(@currarray) > 2) {
6542: $doubleerror = 1;
6543: }
6544: }
6545: if ($doubleerror) {
6546: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6547: }
6548: } else {
6549: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6550: }
6551: my $item = $ansnum;
6552: for (my $ans=0; $ans<$answers_needed; $ans++) {
6553: $record->{"scantron.$item.answer"} = '';
6554: $item ++;
6555: }
1.447 foxr 6556:
1.503 raeburn 6557: my @ans=@array;
6558: my $i=0;
6559: my $increment = 0;
6560: while ($#ans) {
6561: $i+=length($ans[0]) + $increment;
6562: my $line = int($i/$$scantron_config{'Qlength'} + $ansnum);
6563: my $bubble = $i%$$scantron_config{'Qlength'};
6564: $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
6565: shift(@ans);
6566: $increment = 1;
6567: }
6568: $ansnum += $answers_needed;
1.82 albertel 6569: }
1.503 raeburn 6570: return $ansnum;
1.82 albertel 6571: }
6572:
1.423 albertel 6573: =pod
6574:
6575: =item scantron_add_delay
6576:
6577: Adds an error message that occurred during the grading phase to a
6578: queue of messages to be shown after grading pass is complete
6579:
6580: Arguments:
1.424 albertel 6581: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 6582: $scanline - the scanline that caused the error
6583: $errormesage - the error message
6584: $errorcode - a numeric code for the error
6585:
6586: Side Effects:
1.424 albertel 6587: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 6588:
6589: =cut
6590:
1.82 albertel 6591: sub scantron_add_delay {
1.140 albertel 6592: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
6593: push(@$delayqueue,
6594: {'line' => $scanline, 'emsg' => $errormessage,
6595: 'ecode' => $errorcode }
6596: );
1.82 albertel 6597: }
6598:
1.423 albertel 6599: =pod
6600:
6601: =item scantron_find_student
6602:
1.424 albertel 6603: Finds the username for the current scanline
6604:
6605: Arguments:
6606: $scantron_record - hash result from scantron_parse_scanline
6607: $scan_data - hash of correction information
6608: (see &scantron_getfile() form more information)
6609: $idmap - hash from &username_to_idmap()
6610: $line - number of current scanline
6611:
6612: Returns:
6613: Either 'username:domain' or undef if unknown
6614:
1.423 albertel 6615: =cut
6616:
1.82 albertel 6617: sub scantron_find_student {
1.157 albertel 6618: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 6619: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 6620: if ($scanID =~ /^\s*$/) {
6621: return &scan_data($scan_data,"$line.user");
6622: }
1.83 albertel 6623: foreach my $id (keys(%$idmap)) {
1.157 albertel 6624: if (lc($id) eq lc($scanID)) {
6625: return $$idmap{$id};
6626: }
1.83 albertel 6627: }
6628: return undef;
6629: }
6630:
1.423 albertel 6631: =pod
6632:
6633: =item scantron_filter
6634:
1.424 albertel 6635: Filter sub for lonnavmaps, filters out hidden resources if ignore
6636: hidden resources was selected
6637:
1.423 albertel 6638: =cut
6639:
1.83 albertel 6640: sub scantron_filter {
6641: my ($curres)=@_;
1.331 albertel 6642:
6643: if (ref($curres) && $curres->is_problem()) {
6644: # if the user has asked to not have either hidden
6645: # or 'randomout' controlled resources to be graded
6646: # don't include them
6647: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6648: && $curres->randomout) {
6649: return 0;
6650: }
1.83 albertel 6651: return 1;
6652: }
6653: return 0;
1.82 albertel 6654: }
6655:
1.423 albertel 6656: =pod
6657:
6658: =item scantron_process_corrections
6659:
1.424 albertel 6660: Gets correction information out of submitted form data and corrects
6661: the scanline
6662:
1.423 albertel 6663: =cut
6664:
1.157 albertel 6665: sub scantron_process_corrections {
6666: my ($r) = @_;
1.257 albertel 6667: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6668: my ($scanlines,$scan_data)=&scantron_getfile();
6669: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 6670: my $which=$env{'form.scantron_line'};
1.200 albertel 6671: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 6672: my ($skip,$err,$errmsg);
1.257 albertel 6673: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 6674: $skip=1;
1.257 albertel 6675: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
6676: my $newstudent=$env{'form.scantron_username'}.':'.
6677: $env{'form.scantron_domain'};
1.157 albertel 6678: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
6679: ($line,$err,$errmsg)=
6680: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
6681: 'ID',{'newid'=>$newid,
1.257 albertel 6682: 'username'=>$env{'form.scantron_username'},
6683: 'domain'=>$env{'form.scantron_domain'}});
6684: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
6685: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 6686: my $newCODE;
1.192 albertel 6687: my %args;
1.190 albertel 6688: if ($resolution eq 'use_unfound') {
1.191 albertel 6689: $newCODE='use_unfound';
1.190 albertel 6690: } elsif ($resolution eq 'use_found') {
1.257 albertel 6691: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 6692: } elsif ($resolution eq 'use_typed') {
1.257 albertel 6693: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 6694: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 6695: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 6696: }
1.257 albertel 6697: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 6698: $args{'CODE_ignore_dup'}=1;
6699: }
6700: $args{'CODE'}=$newCODE;
1.186 albertel 6701: ($line,$err,$errmsg)=
6702: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 6703: 'CODE',\%args);
1.257 albertel 6704: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
6705: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 6706: ($line,$err,$errmsg)=
6707: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
6708: $which,'answer',
6709: { 'question'=>$question,
1.503 raeburn 6710: 'response'=>$env{"form.scantron_correct_Q_$question"},
6711: 'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157 albertel 6712: if ($err) { last; }
6713: }
6714: }
6715: if ($err) {
1.703 bisitz 6716: $r->print(
6717: '<p class="LC_error">'
6718: .&mt('Unable to accept last correction, an error occurred: [_1]',
6719: $errmsg)
1.704 raeburn 6720: .'</p>');
1.157 albertel 6721: } else {
1.200 albertel 6722: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 6723: &scantron_putfile($scanlines,$scan_data);
6724: }
6725: }
6726:
1.423 albertel 6727: =pod
6728:
6729: =item reset_skipping_status
6730:
1.424 albertel 6731: Forgets the current set of remember skipped scanlines (and thus
6732: reverts back to considering all lines in the
6733: scantron_skipped_<filename> file)
6734:
1.423 albertel 6735: =cut
6736:
1.200 albertel 6737: sub reset_skipping_status {
6738: my ($scanlines,$scan_data)=&scantron_getfile();
6739: &scan_data($scan_data,'remember_skipping',undef,1);
6740: &scantron_putfile(undef,$scan_data);
6741: }
6742:
1.423 albertel 6743: =pod
6744:
6745: =item start_skipping
6746:
1.424 albertel 6747: Marks a scanline to be skipped.
6748:
1.423 albertel 6749: =cut
6750:
1.376 albertel 6751: sub start_skipping {
1.200 albertel 6752: my ($scan_data,$i)=@_;
6753: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6754: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
6755: $remembered{$i}=2;
6756: } else {
6757: $remembered{$i}=1;
6758: }
1.200 albertel 6759: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
6760: }
6761:
1.423 albertel 6762: =pod
6763:
6764: =item should_be_skipped
6765:
1.424 albertel 6766: Checks whether a scanline should be skipped.
6767:
1.423 albertel 6768: =cut
6769:
1.200 albertel 6770: sub should_be_skipped {
1.376 albertel 6771: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 6772: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 6773: # not redoing old skips
1.376 albertel 6774: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 6775: return 0;
6776: }
6777: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6778:
6779: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
6780: return 0;
6781: }
1.200 albertel 6782: return 1;
6783: }
6784:
1.423 albertel 6785: =pod
6786:
6787: =item remember_current_skipped
6788:
1.424 albertel 6789: Discovers what scanlines are in the scantron_skipped_<filename>
6790: file and remembers them into scan_data for later use.
6791:
1.423 albertel 6792: =cut
6793:
1.200 albertel 6794: sub remember_current_skipped {
6795: my ($scanlines,$scan_data)=&scantron_getfile();
6796: my %to_remember;
6797: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6798: if ($scanlines->{'skipped'}[$i]) {
6799: $to_remember{$i}=1;
6800: }
6801: }
1.376 albertel 6802:
1.200 albertel 6803: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
6804: &scantron_putfile(undef,$scan_data);
6805: }
6806:
1.423 albertel 6807: =pod
6808:
6809: =item check_for_error
6810:
1.424 albertel 6811: Checks if there was an error when attempting to remove a specific
1.659 raeburn 6812: scantron_.. bubblesheet data file. Prints out an error if
1.424 albertel 6813: something went wrong.
6814:
1.423 albertel 6815: =cut
6816:
1.200 albertel 6817: sub check_for_error {
6818: my ($r,$result)=@_;
6819: if ($result ne 'ok' && $result ne 'not_found' ) {
1.492 albertel 6820: $r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200 albertel 6821: }
6822: }
1.157 albertel 6823:
1.423 albertel 6824: =pod
6825:
6826: =item scantron_warning_screen
6827:
1.424 albertel 6828: Interstitial screen to make sure the operator has selected the
6829: correct options before we start the validation phase.
6830:
1.423 albertel 6831: =cut
6832:
1.203 albertel 6833: sub scantron_warning_screen {
1.650 raeburn 6834: my ($button_text,$symb)=@_;
1.257 albertel 6835: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 6836: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 6837: my $CODElist;
1.284 albertel 6838: if ($scantron_config{'CODElocation'} &&
6839: $scantron_config{'CODEstart'} &&
6840: $scantron_config{'CODElength'}) {
6841: $CODElist=$env{'form.scantron_CODElist'};
1.721 bisitz 6842: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">'.&mt('None').'</span>'; }
1.284 albertel 6843: $CODElist=
1.492 albertel 6844: '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373 albertel 6845: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 6846: }
1.663 raeburn 6847: my $lastbubblepoints;
6848: if ($env{'form.scantron_lastbubblepoints'} ne '') {
6849: $lastbubblepoints =
6850: '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
6851: $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
6852: }
1.492 albertel 6853: return ('
1.203 albertel 6854: <p>
1.492 albertel 6855: <span class="LC_warning">
1.705 raeburn 6856: '.&mt("Please double check the information below before clicking on '[_1]'",&mt($button_text)).'</span>
1.203 albertel 6857: </p>
6858: <table>
1.492 albertel 6859: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
6860: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
1.663 raeburn 6861: '.$CODElist.$lastbubblepoints.'
1.203 albertel 6862: </table>
1.680 raeburn 6863: <p> '.&mt("If this information is correct, please click on '[_1]'.",&mt($button_text)).'<br />
1.650 raeburn 6864: '.&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 6865:
6866: <br />
1.492 albertel 6867: ');
1.203 albertel 6868: }
6869:
1.423 albertel 6870: =pod
6871:
6872: =item scantron_do_warning
6873:
1.424 albertel 6874: Check if the operator has picked something for all required
6875: fields. Error out if something is missing.
6876:
1.423 albertel 6877: =cut
6878:
1.203 albertel 6879: sub scantron_do_warning {
1.608 www 6880: my ($r,$symb)=@_;
1.203 albertel 6881: if (!$symb) {return '';}
1.324 albertel 6882: my $default_form_data=&defaultFormData($symb);
1.203 albertel 6883: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 6884: if ( $env{'form.selectpage'} eq '' ||
6885: $env{'form.scantron_selectfile'} eq '' ||
6886: $env{'form.scantron_format'} eq '' ) {
1.642 raeburn 6887: $r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
1.257 albertel 6888: if ( $env{'form.selectpage'} eq '') {
1.492 albertel 6889: $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237 albertel 6890: }
1.257 albertel 6891: if ( $env{'form.scantron_selectfile'} eq '') {
1.642 raeburn 6892: $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 6893: }
1.257 albertel 6894: if ( $env{'form.scantron_format'} eq '') {
1.642 raeburn 6895: $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 6896: }
6897: } else {
1.650 raeburn 6898: my $warning=&scantron_warning_screen('Grading: Validate Records',$symb);
1.663 raeburn 6899: my $bubbledbyhand=&hand_bubble_option();
1.492 albertel 6900: $r->print('
1.663 raeburn 6901: '.$warning.$bubbledbyhand.'
1.492 albertel 6902: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203 albertel 6903: <input type="hidden" name="command" value="scantron_validate" />
1.492 albertel 6904: ');
1.237 albertel 6905: }
1.614 www 6906: $r->print("</form><br />");
1.203 albertel 6907: return '';
6908: }
6909:
1.423 albertel 6910: =pod
6911:
6912: =item scantron_form_start
6913:
1.424 albertel 6914: html hidden input for remembering all selected grading options
6915:
1.423 albertel 6916: =cut
6917:
1.203 albertel 6918: sub scantron_form_start {
6919: my ($max_bubble)=@_;
6920: my $result= <<SCANTRONFORM;
6921: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 6922: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
6923: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
6924: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 6925: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 6926: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
6927: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
6928: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
6929: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 6930: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 6931: SCANTRONFORM
1.447 foxr 6932:
6933: my $line = 0;
6934: while (defined($env{"form.scantron.bubblelines.$line"})) {
6935: my $chunk =
6936: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 6937: $chunk .=
6938: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503 raeburn 6939: $chunk .=
6940: '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504 raeburn 6941: $chunk .=
6942: '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.691 raeburn 6943: $chunk .=
6944: '<input type="hidden" name="scantron.residpart.'.$line.'" value="'.$env{"form.scantron.residpart.$line"}.'" />'."\n";
1.447 foxr 6945: $result .= $chunk;
6946: $line++;
1.691 raeburn 6947: }
1.203 albertel 6948: return $result;
6949: }
6950:
1.423 albertel 6951: =pod
6952:
6953: =item scantron_validate_file
6954:
1.659 raeburn 6955: Dispatch routine for doing validation of a bubblesheet data file.
1.424 albertel 6956:
6957: Also processes any necessary information resets that need to
6958: occur before validation begins (ignore previous corrections,
6959: restarting the skipped records processing)
6960:
1.423 albertel 6961: =cut
6962:
1.157 albertel 6963: sub scantron_validate_file {
1.608 www 6964: my ($r,$symb) = @_;
1.157 albertel 6965: if (!$symb) {return '';}
1.324 albertel 6966: my $default_form_data=&defaultFormData($symb);
1.200 albertel 6967:
1.703 bisitz 6968: # do the detection of only doing skipped records first before we delete
1.424 albertel 6969: # them when doing the corrections reset
1.257 albertel 6970: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 6971: &reset_skipping_status();
6972: }
1.257 albertel 6973: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 6974: &remember_current_skipped();
1.257 albertel 6975: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 6976: }
6977:
1.257 albertel 6978: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 6979: &check_for_error($r,&scantron_remove_file('corrected'));
6980: &check_for_error($r,&scantron_remove_file('skipped'));
6981: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 6982: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 6983: }
1.200 albertel 6984:
1.257 albertel 6985: if ($env{'form.scantron_corrections'}) {
1.157 albertel 6986: &scantron_process_corrections($r);
6987: }
1.503 raeburn 6988: $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157 albertel 6989: #get the student pick code ready
6990: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.582 raeburn 6991: my $nav_error;
1.649 raeburn 6992: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
6993: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 6994: if ($nav_error) {
6995: $r->print(&navmap_errormsg());
6996: return '';
6997: }
1.203 albertel 6998: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.663 raeburn 6999: if ($env{'form.scantron_lastbubblepoints'} ne '') {
7000: $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
7001: }
1.157 albertel 7002: $r->print($result);
7003:
1.334 albertel 7004: my @validate_phases=( 'sequence',
7005: 'ID',
1.157 albertel 7006: 'CODE',
7007: 'doublebubble',
7008: 'missingbubbles');
1.257 albertel 7009: if (!$env{'form.validatepass'}) {
7010: $env{'form.validatepass'} = 0;
1.157 albertel 7011: }
1.257 albertel 7012: my $currentphase=$env{'form.validatepass'};
1.157 albertel 7013:
1.448 foxr 7014:
1.157 albertel 7015: my $stop=0;
7016: while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503 raeburn 7017: $r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157 albertel 7018: $r->rflush();
1.691 raeburn 7019:
1.157 albertel 7020: my $which="scantron_validate_".$validate_phases[$currentphase];
7021: {
7022: no strict 'refs';
7023: ($stop,$currentphase)=&$which($r,$currentphase);
7024: }
7025: }
7026: if (!$stop) {
1.650 raeburn 7027: my $warning=&scantron_warning_screen('Start Grading',$symb);
1.542 raeburn 7028: $r->print(&mt('Validation process complete.').'<br />'.
7029: $warning.
7030: &mt('Perform verification for each student after storage of submissions?').
7031: ' <span class="LC_nobreak"><label>'.
7032: '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
7033: (' 'x3).'<label>'.
7034: '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
7035: '</label></span><br />'.
7036: &mt('Grading will take longer if you use verification.').'<br />'.
1.650 raeburn 7037: &mt('Otherwise, Grade/Manage/Review Bubblesheets [_1] Review bubblesheet data can be used once grading is complete.','»').'<br /><br />'.
1.542 raeburn 7038: '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
7039: '<input type="hidden" name="command" value="scantron_process" />'."\n");
1.157 albertel 7040: } else {
7041: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
7042: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
7043: }
7044: if ($stop) {
1.334 albertel 7045: if ($validate_phases[$currentphase] eq 'sequence') {
1.539 riegler 7046: $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' → " />');
1.492 albertel 7047: $r->print(' '.&mt('this error').' <br />');
1.334 albertel 7048:
1.650 raeburn 7049: $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 7050: } else {
1.503 raeburn 7051: if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
1.539 riegler 7052: $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' →" onclick="javascript:verify_bubble_radio(this.form)" />');
1.503 raeburn 7053: } else {
1.539 riegler 7054: $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' →" />');
1.503 raeburn 7055: }
1.492 albertel 7056: $r->print(' '.&mt('using corrected info').' <br />');
7057: $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
7058: $r->print(" ".&mt("this scanline saving it for later."));
1.334 albertel 7059: }
1.157 albertel 7060: }
1.614 www 7061: $r->print(" </form><br />");
1.157 albertel 7062: return '';
7063: }
7064:
1.423 albertel 7065:
7066: =pod
7067:
7068: =item scantron_remove_file
7069:
1.659 raeburn 7070: Removes the requested bubblesheet data file, makes sure that
1.424 albertel 7071: scantron_original_<filename> is never removed
7072:
7073:
1.423 albertel 7074: =cut
7075:
1.200 albertel 7076: sub scantron_remove_file {
1.192 albertel 7077: my ($which)=@_;
1.257 albertel 7078: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7079: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 7080: my $file='scantron_';
1.200 albertel 7081: if ($which eq 'corrected' || $which eq 'skipped') {
7082: $file.=$which.'_';
1.192 albertel 7083: } else {
7084: return 'refused';
7085: }
1.257 albertel 7086: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 7087: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
7088: }
7089:
1.423 albertel 7090:
7091: =pod
7092:
7093: =item scantron_remove_scan_data
7094:
1.659 raeburn 7095: Removes all scan_data correction for the requested bubblesheet
1.424 albertel 7096: data file. (In the case that both the are doing skipped records we need
7097: to remember the old skipped lines for the time being so that element
7098: persists for a while.)
7099:
1.423 albertel 7100: =cut
7101:
1.200 albertel 7102: sub scantron_remove_scan_data {
1.257 albertel 7103: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7104: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 7105: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
7106: my @todelete;
1.257 albertel 7107: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 7108: foreach my $key (@keys) {
7109: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 7110: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 7111: $key=~/remember_skipping/) {
7112: next;
7113: }
1.192 albertel 7114: push(@todelete,$key);
7115: }
7116: }
1.200 albertel 7117: my $result;
1.192 albertel 7118: if (@todelete) {
1.491 albertel 7119: $result = &Apache::lonnet::del('nohist_scantrondata',
7120: \@todelete,$cdom,$cname);
7121: } else {
7122: $result = 'ok';
1.192 albertel 7123: }
7124: return $result;
7125: }
7126:
1.423 albertel 7127:
7128: =pod
7129:
7130: =item scantron_getfile
7131:
1.659 raeburn 7132: Fetches the requested bubblesheet data file (all 3 versions), and
1.424 albertel 7133: the scan_data hash
7134:
7135: Arguments:
7136: None
7137:
7138: Returns:
7139: 2 hash references
7140:
7141: - first one has
7142: orig -
7143: corrected -
7144: skipped - each of which points to an array ref of the specified
7145: file broken up into individual lines
7146: count - number of scanlines
7147:
7148: - second is the scan_data hash possible keys are
1.425 albertel 7149: ($number refers to scanline numbered $number and thus the key affects
7150: only that scanline
7151: $bubline refers to the specific bubble line element and the aspects
7152: refers to that specific bubble line element)
7153:
7154: $number.user - username:domain to use
7155: $number.CODE_ignore_dup
7156: - ignore the duplicate CODE error
7157: $number.useCODE
7158: - use the CODE in the scanline as is
7159: $number.no_bubble.$bubline
7160: - it is valid that there is no bubbled in bubble
7161: at $number $bubline
7162: remember_skipping
7163: - a frozen hash containing keys of $number and values
7164: of either
7165: 1 - we are on a 'do skipped records pass' and plan
7166: on processing this line
7167: 2 - we are on a 'do skipped records pass' and this
7168: scanline has been marked to skip yet again
1.424 albertel 7169:
1.423 albertel 7170: =cut
7171:
1.157 albertel 7172: sub scantron_getfile {
1.200 albertel 7173: #FIXME really would prefer a scantron directory
1.257 albertel 7174: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7175: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 7176: my $lines;
7177: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7178: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 7179: my %scanlines;
7180: $scanlines{'orig'}=[(split("\n",$lines,-1))];
7181: my $temp=$scanlines{'orig'};
7182: $scanlines{'count'}=$#$temp;
7183:
7184: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7185: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 7186: if ($lines eq '-1') {
7187: $scanlines{'corrected'}=[];
7188: } else {
7189: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
7190: }
7191: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7192: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 7193: if ($lines eq '-1') {
7194: $scanlines{'skipped'}=[];
7195: } else {
7196: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
7197: }
1.175 albertel 7198: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 7199: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
7200: my %scan_data = @tmp;
7201: return (\%scanlines,\%scan_data);
7202: }
7203:
1.423 albertel 7204: =pod
7205:
7206: =item lonnet_putfile
7207:
1.424 albertel 7208: Wrapper routine to call &Apache::lonnet::finishuserfileupload
7209:
7210: Arguments:
7211: $contents - data to store
7212: $filename - filename to store $contents into
7213:
7214: Returns:
7215: result value from &Apache::lonnet::finishuserfileupload
7216:
1.423 albertel 7217: =cut
7218:
1.157 albertel 7219: sub lonnet_putfile {
7220: my ($contents,$filename)=@_;
1.257 albertel 7221: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
7222: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7223: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 7224: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 7225:
7226: }
7227:
1.423 albertel 7228: =pod
7229:
7230: =item scantron_putfile
7231:
1.659 raeburn 7232: Stores the current version of the bubblesheet data files, and the
1.424 albertel 7233: scan_data hash. (Does not modify the original version only the
7234: corrected and skipped versions.
7235:
7236: Arguments:
7237: $scanlines - hash ref that looks like the first return value from
7238: &scantron_getfile()
7239: $scan_data - hash ref that looks like the second return value from
7240: &scantron_getfile()
7241:
1.423 albertel 7242: =cut
7243:
1.157 albertel 7244: sub scantron_putfile {
7245: my ($scanlines,$scan_data) = @_;
1.200 albertel 7246: #FIXME really would prefer a scantron directory
1.257 albertel 7247: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7248: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 7249: if ($scanlines) {
7250: my $prefix='scantron_';
1.157 albertel 7251: # no need to update orig, shouldn't change
7252: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 7253: # $env{'form.scantron_selectfile'});
1.200 albertel 7254: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
7255: $prefix.'corrected_'.
1.257 albertel 7256: $env{'form.scantron_selectfile'});
1.200 albertel 7257: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
7258: $prefix.'skipped_'.
1.257 albertel 7259: $env{'form.scantron_selectfile'});
1.200 albertel 7260: }
1.175 albertel 7261: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 7262: }
7263:
1.423 albertel 7264: =pod
7265:
7266: =item scantron_get_line
7267:
1.424 albertel 7268: Returns the correct version of the scanline
7269:
7270: Arguments:
7271: $scanlines - hash ref that looks like the first return value from
7272: &scantron_getfile()
7273: $scan_data - hash ref that looks like the second return value from
7274: &scantron_getfile()
7275: $i - number of the requested line (starts at 0)
7276:
7277: Returns:
7278: A scanline, (either the original or the corrected one if it
7279: exists), or undef if the requested scanline should be
7280: skipped. (Either because it's an skipped scanline, or it's an
7281: unskipped scanline and we are not doing a 'do skipped scanlines'
7282: pass.
7283:
1.423 albertel 7284: =cut
7285:
1.157 albertel 7286: sub scantron_get_line {
1.200 albertel 7287: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 7288: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
7289: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 7290: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
7291: return $scanlines->{'orig'}[$i];
7292: }
7293:
1.423 albertel 7294: =pod
7295:
7296: =item scantron_todo_count
7297:
1.424 albertel 7298: Counts the number of scanlines that need processing.
7299:
7300: Arguments:
7301: $scanlines - hash ref that looks like the first return value from
7302: &scantron_getfile()
7303: $scan_data - hash ref that looks like the second return value from
7304: &scantron_getfile()
7305:
7306: Returns:
7307: $count - number of scanlines to process
7308:
1.423 albertel 7309: =cut
7310:
1.200 albertel 7311: sub get_todo_count {
7312: my ($scanlines,$scan_data)=@_;
7313: my $count=0;
7314: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
7315: my $line=&scantron_get_line($scanlines,$scan_data,$i);
7316: if ($line=~/^[\s\cz]*$/) { next; }
7317: $count++;
7318: }
7319: return $count;
7320: }
7321:
1.423 albertel 7322: =pod
7323:
7324: =item scantron_put_line
7325:
1.659 raeburn 7326: Updates the 'corrected' or 'skipped' versions of the bubblesheet
1.424 albertel 7327: data file.
7328:
7329: Arguments:
7330: $scanlines - hash ref that looks like the first return value from
7331: &scantron_getfile()
7332: $scan_data - hash ref that looks like the second return value from
7333: &scantron_getfile()
7334: $i - line number to update
7335: $newline - contents of the updated scanline
7336: $skip - if true make the line for skipping and update the
7337: 'skipped' file
7338:
1.423 albertel 7339: =cut
7340:
1.157 albertel 7341: sub scantron_put_line {
1.200 albertel 7342: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 7343: if ($skip) {
7344: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 7345: &start_skipping($scan_data,$i);
1.157 albertel 7346: return;
7347: }
7348: $scanlines->{'corrected'}[$i]=$newline;
7349: }
7350:
1.423 albertel 7351: =pod
7352:
7353: =item scantron_clear_skip
7354:
1.424 albertel 7355: Remove a line from the 'skipped' file
7356:
7357: Arguments:
7358: $scanlines - hash ref that looks like the first return value from
7359: &scantron_getfile()
7360: $scan_data - hash ref that looks like the second return value from
7361: &scantron_getfile()
7362: $i - line number to update
7363:
1.423 albertel 7364: =cut
7365:
1.376 albertel 7366: sub scantron_clear_skip {
7367: my ($scanlines,$scan_data,$i)=@_;
7368: if (exists($scanlines->{'skipped'}[$i])) {
7369: undef($scanlines->{'skipped'}[$i]);
7370: return 1;
7371: }
7372: return 0;
7373: }
7374:
1.423 albertel 7375: =pod
7376:
7377: =item scantron_filter_not_exam
7378:
1.424 albertel 7379: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
7380: filter out resources that are not marked as 'exam' mode
7381:
1.423 albertel 7382: =cut
7383:
1.334 albertel 7384: sub scantron_filter_not_exam {
7385: my ($curres)=@_;
7386:
7387: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
7388: # if the user has asked to not have either hidden
7389: # or 'randomout' controlled resources to be graded
7390: # don't include them
7391: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
7392: && $curres->randomout) {
7393: return 0;
7394: }
7395: return 1;
7396: }
7397: return 0;
7398: }
7399:
1.423 albertel 7400: =pod
7401:
7402: =item scantron_validate_sequence
7403:
1.424 albertel 7404: Validates the selected sequence, checking for resource that are
7405: not set to exam mode.
7406:
1.423 albertel 7407: =cut
7408:
1.334 albertel 7409: sub scantron_validate_sequence {
7410: my ($r,$currentphase) = @_;
7411:
7412: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7413: unless (ref($navmap)) {
7414: $r->print(&navmap_errormsg());
7415: return (1,$currentphase);
7416: }
1.334 albertel 7417: my (undef,undef,$sequence)=
7418: &Apache::lonnet::decode_symb($env{'form.selectpage'});
7419:
7420: my $map=$navmap->getResourceByUrl($sequence);
7421:
7422: $r->print('<input type="hidden" name="validate_sequence_exam"
7423: value="ignore" />');
7424: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
7425: my @resources=
7426: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
7427: if (@resources) {
1.675 bisitz 7428: $r->print(
7429: '<p class="LC_warning">'
7430: .&mt('Some resources in the sequence currently are not set to'
1.684 bisitz 7431: .' bubblesheet exam mode. Grading these resources currently may not'
1.675 bisitz 7432: .' work correctly.')
7433: .'</p>'
7434: );
1.334 albertel 7435: return (1,$currentphase);
7436: }
7437: }
7438:
7439: return (0,$currentphase+1);
7440: }
7441:
1.423 albertel 7442:
7443:
1.157 albertel 7444: sub scantron_validate_ID {
7445: my ($r,$currentphase) = @_;
7446:
7447: #get student info
7448: my $classlist=&Apache::loncoursedata::get_classlist();
7449: my %idmap=&username_to_idmap($classlist);
7450:
7451: #get scantron line setup
1.257 albertel 7452: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7453: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7454:
7455: my $nav_error;
1.649 raeburn 7456: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
1.582 raeburn 7457: if ($nav_error) {
7458: $r->print(&navmap_errormsg());
7459: return(1,$currentphase);
7460: }
1.157 albertel 7461:
7462: my %found=('ids'=>{},'usernames'=>{});
7463: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7464: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7465: if ($line=~/^[\s\cz]*$/) { next; }
7466: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7467: $scan_data);
7468: my $id=$$scan_record{'scantron.ID'};
7469: my $found;
7470: foreach my $checkid (keys(%idmap)) {
7471: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
7472: }
7473: if ($found) {
7474: my $username=$idmap{$found};
7475: if ($found{'ids'}{$found}) {
7476: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7477: $line,'duplicateID',$found);
1.194 albertel 7478: return(1,$currentphase);
1.157 albertel 7479: } elsif ($found{'usernames'}{$username}) {
7480: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7481: $line,'duplicateID',$username);
1.194 albertel 7482: return(1,$currentphase);
1.157 albertel 7483: }
1.186 albertel 7484: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 7485: $found{'ids'}{$found}++;
7486: $found{'usernames'}{$username}++;
7487: } else {
7488: if ($id =~ /^\s*$/) {
1.158 albertel 7489: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 7490: if (defined($username) && $found{'usernames'}{$username}) {
7491: &scantron_get_correction($r,$i,$scan_record,
7492: \%scantron_config,
7493: $line,'duplicateID',$username);
1.194 albertel 7494: return(1,$currentphase);
1.157 albertel 7495: } elsif (!defined($username)) {
7496: &scantron_get_correction($r,$i,$scan_record,
7497: \%scantron_config,
7498: $line,'incorrectID');
1.194 albertel 7499: return(1,$currentphase);
1.157 albertel 7500: }
7501: $found{'usernames'}{$username}++;
7502: } else {
7503: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7504: $line,'incorrectID');
1.194 albertel 7505: return(1,$currentphase);
1.157 albertel 7506: }
7507: }
7508: }
7509:
7510: return (0,$currentphase+1);
7511: }
7512:
1.423 albertel 7513:
1.157 albertel 7514: sub scantron_get_correction {
1.691 raeburn 7515: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg,
7516: $randomorder,$randompick,$respnumlookup,$startline)=@_;
1.454 banghart 7517: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 7518: #to show both the current line and the previous one and allow skipping
7519: #the previous one or the current one
7520:
1.333 albertel 7521: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.658 bisitz 7522: $r->print(
7523: '<p class="LC_warning">'
7524: .&mt('An error was detected ([_1]) for PaperID [_2]',
7525: "<b>$error</b>",
7526: '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
7527: ."</p> \n");
1.157 albertel 7528: } else {
1.658 bisitz 7529: $r->print(
7530: '<p class="LC_warning">'
7531: .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
7532: "<b>$error</b>", $i, "<pre>$line</pre>")
7533: ."</p> \n");
7534: }
7535: my $message =
7536: '<p>'
7537: .&mt('The ID on the form is [_1]',
7538: "<tt>$$scan_record{'scantron.ID'}</tt>")
7539: .'<br />'
1.665 raeburn 7540: .&mt('The name on the paper is [_1], [_2]',
1.658 bisitz 7541: $$scan_record{'scantron.LastName'},
7542: $$scan_record{'scantron.FirstName'})
7543: .'</p>';
1.242 albertel 7544:
1.157 albertel 7545: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
7546: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503 raeburn 7547: # Array populated for doublebubble or
7548: my @lines_to_correct; # missingbubble errors to build javascript
7549: # to validate radio button checking
7550:
1.157 albertel 7551: if ($error =~ /ID$/) {
1.186 albertel 7552: if ($error eq 'incorrectID') {
1.658 bisitz 7553: $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
1.492 albertel 7554: "</p>\n");
1.157 albertel 7555: } elsif ($error eq 'duplicateID') {
1.658 bisitz 7556: $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 7557: }
1.242 albertel 7558: $r->print($message);
1.492 albertel 7559: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157 albertel 7560: $r->print("\n<ul><li> ");
7561: #FIXME it would be nice if this sent back the user ID and
7562: #could do partial userID matches
7563: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
7564: 'scantron_username','scantron_domain'));
7565: $r->print(": <input type='text' name='scantron_username' value='' />");
1.685 bisitz 7566: $r->print("\n:\n".
1.257 albertel 7567: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 7568:
7569: $r->print('</li>');
1.186 albertel 7570: } elsif ($error =~ /CODE$/) {
7571: if ($error eq 'incorrectCODE') {
1.658 bisitz 7572: $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186 albertel 7573: } elsif ($error eq 'duplicateCODE') {
1.658 bisitz 7574: $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 7575: }
1.658 bisitz 7576: $r->print("<p>".&mt('The CODE on the form is [_1]',
7577: "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
7578: ."</p>\n");
1.242 albertel 7579: $r->print($message);
1.658 bisitz 7580: $r->print("<p>".&mt("How should I handle this?")."</p>\n");
1.187 albertel 7581: $r->print("\n<br /> ");
1.194 albertel 7582: my $i=0;
1.273 albertel 7583: if ($error eq 'incorrectCODE'
7584: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 7585: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 7586: if ($closest > 0) {
7587: foreach my $testcode (@{$closest}) {
7588: my $checked='';
1.569 bisitz 7589: if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7590: $r->print("
7591: <label>
1.569 bisitz 7592: <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
1.492 albertel 7593: ".&mt("Use the similar CODE [_1] instead.",
7594: "<b><tt>".$testcode."</tt></b>")."
7595: </label>
7596: <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278 albertel 7597: $r->print("\n<br />");
7598: $i++;
7599: }
1.194 albertel 7600: }
7601: }
1.273 albertel 7602: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.569 bisitz 7603: my $checked; if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7604: $r->print("
7605: <label>
1.569 bisitz 7606: <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
1.659 raeburn 7607: ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
1.492 albertel 7608: "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
7609: </label>");
1.273 albertel 7610: $r->print("\n<br />");
7611: }
1.194 albertel 7612:
1.597 wenzelju 7613: $r->print(&Apache::lonhtmlcommon::scripttag(<<ENDSCRIPT));
1.188 albertel 7614: function change_radio(field) {
1.190 albertel 7615: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 7616: var i;
7617: for (i=0;i<slct.length;i++) {
7618: if (slct[i].value==field) { slct[i].checked=true; }
7619: }
7620: }
7621: ENDSCRIPT
1.187 albertel 7622: my $href="/adm/pickcode?".
1.359 www 7623: "form=".&escape("scantronupload").
7624: "&scantron_format=".&escape($env{'form.scantron_format'}).
7625: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
7626: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
7627: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 7628: if ($env{'form.scantron_CODElist'} =~ /\S/) {
1.492 albertel 7629: $r->print("
7630: <label>
7631: <input type='radio' name='scantron_CODE_resolution' value='use_found' />
7632: ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
7633: "<a target='_blank' href='$href'>","</a>")."
7634: </label>
1.558 bisitz 7635: ".&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 7636: $r->print("\n<br />");
7637: }
1.492 albertel 7638: $r->print("
7639: <label>
7640: <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
7641: ".&mt("Use [_1] as the CODE.",
7642: "</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 7643: $r->print("\n<br /><br />");
1.157 albertel 7644: } elsif ($error eq 'doublebubble') {
1.658 bisitz 7645: $r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497 foxr 7646:
7647: # The form field scantron_questions is acutally a list of line numbers.
7648: # represented by this form so:
7649:
1.691 raeburn 7650: my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
7651: $respnumlookup,$startline);
1.497 foxr 7652:
1.157 albertel 7653: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7654: $line_list.'" />');
1.242 albertel 7655: $r->print($message);
1.492 albertel 7656: $r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157 albertel 7657: foreach my $question (@{$arg}) {
1.503 raeburn 7658: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
1.691 raeburn 7659: $scan_record, $error,
7660: $randomorder,$randompick,
7661: $respnumlookup,$startline);
1.524 raeburn 7662: push(@lines_to_correct,@linenums);
1.157 albertel 7663: }
1.503 raeburn 7664: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7665: } elsif ($error eq 'missingbubble') {
1.658 bisitz 7666: $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 7667: $r->print($message);
1.492 albertel 7668: $r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503 raeburn 7669: $r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497 foxr 7670:
1.503 raeburn 7671: # The form field scantron_questions is actually a list of line numbers not
1.497 foxr 7672: # a list of question numbers. Therefore:
7673: #
1.691 raeburn 7674:
7675: my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
7676: $respnumlookup,$startline);
1.497 foxr 7677:
1.157 albertel 7678: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7679: $line_list.'" />');
1.157 albertel 7680: foreach my $question (@{$arg}) {
1.503 raeburn 7681: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
1.691 raeburn 7682: $scan_record, $error,
7683: $randomorder,$randompick,
7684: $respnumlookup,$startline);
1.524 raeburn 7685: push(@lines_to_correct,@linenums);
1.157 albertel 7686: }
1.503 raeburn 7687: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7688: } else {
7689: $r->print("\n<ul>");
7690: }
7691: $r->print("\n</li></ul>");
1.497 foxr 7692: }
7693:
1.503 raeburn 7694: sub verify_bubbles_checked {
7695: my (@ansnums) = @_;
7696: my $ansnumstr = join('","',@ansnums);
7697: my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
1.736 damieng 7698: &js_escape(\$warning);
1.597 wenzelju 7699: my $output = &Apache::lonhtmlcommon::scripttag((<<ENDSCRIPT));
1.503 raeburn 7700: function verify_bubble_radio(form) {
7701: var ansnumArray = new Array ("$ansnumstr");
7702: var need_bubble_count = 0;
7703: for (var i=0; i<ansnumArray.length; i++) {
7704: if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
7705: var bubble_picked = 0;
7706: for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
7707: if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
7708: bubble_picked = 1;
7709: }
7710: }
7711: if (bubble_picked == 0) {
7712: need_bubble_count ++;
7713: }
7714: }
7715: }
7716: if (need_bubble_count) {
7717: alert("$warning");
7718: return;
7719: }
7720: form.submit();
7721: }
7722: ENDSCRIPT
7723: return $output;
7724: }
7725:
1.497 foxr 7726: =pod
7727:
7728: =item questions_to_line_list
1.157 albertel 7729:
1.497 foxr 7730: Converts a list of questions into a string of comma separated
7731: line numbers in the answer sheet used by the questions. This is
7732: used to fill in the scantron_questions form field.
7733:
7734: Arguments:
7735: questions - Reference to an array of questions.
1.691 raeburn 7736: randomorder - True if randomorder in use.
7737: randompick - True if randompick in use.
7738: respnumlookup - Reference to HASH mapping question numbers in bubble lines
7739: for current line to question number used for same question
7740: in "Master Seqence" (as seen by Course Coordinator).
7741: startline - Reference to hash where key is question number (0 is first)
7742: and key is number of first bubble line for current student
7743: or code-based randompick and/or randomorder.
1.693 raeburn 7744:
1.497 foxr 7745: =cut
7746:
7747:
7748: sub questions_to_line_list {
1.691 raeburn 7749: my ($questions,$randomorder,$randompick,$respnumlookup,$startline) = @_;
1.497 foxr 7750: my @lines;
7751:
1.503 raeburn 7752: foreach my $item (@{$questions}) {
7753: my $question = $item;
7754: my ($first,$count,$last);
7755: if ($item =~ /^(\d+)\.(\d+)$/) {
7756: $question = $1;
7757: my $subquestion = $2;
1.691 raeburn 7758: my $responsenum = $question-1;
7759: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7760: $responsenum = $respnumlookup->{$question-1};
7761: if (ref($startline) eq 'HASH') {
7762: $first = $startline->{$question-1} + 1;
7763: }
7764: } else {
7765: $first = $first_bubble_line{$responsenum} + 1;
7766: }
7767: my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.503 raeburn 7768: my $subcount = 1;
7769: while ($subcount<$subquestion) {
7770: $first += $subans[$subcount-1];
7771: $subcount ++;
7772: }
7773: $count = $subans[$subquestion-1];
7774: } else {
1.691 raeburn 7775: my $responsenum = $question-1;
7776: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7777: $responsenum = $respnumlookup->{$question-1};
7778: if (ref($startline) eq 'HASH') {
7779: $first = $startline->{$question-1} + 1;
7780: }
7781: } else {
7782: $first = $first_bubble_line{$responsenum} + 1;
7783: }
7784: $count = $bubble_lines_per_response{$responsenum};
1.503 raeburn 7785: }
1.506 raeburn 7786: $last = $first+$count-1;
1.503 raeburn 7787: push(@lines, ($first..$last));
1.497 foxr 7788: }
7789: return join(',', @lines);
7790: }
7791:
7792: =pod
7793:
7794: =item prompt_for_corrections
7795:
7796: Prompts for a potentially multiline correction to the
7797: user's bubbling (factors out common code from scantron_get_correction
7798: for multi and missing bubble cases).
7799:
7800: Arguments:
7801: $r - Apache request object.
7802: $question - The question number to prompt for.
7803: $scan_config - The scantron file configuration hash.
7804: $scan_record - Reference to the hash that has the the parsed scanlines.
1.503 raeburn 7805: $error - Type of error
1.691 raeburn 7806: $randomorder - True if randomorder in use.
7807: $randompick - True if randompick in use.
7808: $respnumlookup - Reference to HASH mapping question numbers in bubble lines
7809: for current line to question number used for same question
7810: in "Master Seqence" (as seen by Course Coordinator).
7811: $startline - Reference to hash where key is question number (0 is first)
7812: and value is number of first bubble line for current student
7813: or code-based randompick and/or randomorder.
7814:
1.497 foxr 7815:
7816: Implicit inputs:
7817: %bubble_lines_per_response - Starting line numbers for each question.
7818: Numbered from 0 (but question numbers are from
7819: 1.
7820: %first_bubble_line - Starting bubble line for each question.
1.509 raeburn 7821: %subdivided_bubble_lines - optionresponse, matchresponse and rankresponse
7822: type problems render as separate sub-questions,
1.503 raeburn 7823: in exam mode. This hash contains a
7824: comma-separated list of the lines per
7825: sub-question.
1.510 raeburn 7826: %responsetype_per_response - essayresponse, formularesponse,
7827: stringresponse, imageresponse, reactionresponse,
7828: and organicresponse type problem parts can have
1.503 raeburn 7829: multiple lines per response if the weight
7830: assigned exceeds 10. In this case, only
7831: one bubble per line is permitted, but more
7832: than one line might contain bubbles, e.g.
7833: bubbling of: line 1 - J, line 2 - J,
7834: line 3 - B would assign 22 points.
1.497 foxr 7835:
7836: =cut
7837:
7838: sub prompt_for_corrections {
1.691 raeburn 7839: my ($r, $question, $scan_config, $scan_record, $error, $randomorder,
7840: $randompick, $respnumlookup, $startline) = @_;
1.503 raeburn 7841: my ($current_line,$lines);
7842: my @linenums;
7843: my $questionnum = $question;
1.691 raeburn 7844: my ($first,$responsenum);
1.503 raeburn 7845: if ($question =~ /^(\d+)\.(\d+)$/) {
7846: $question = $1;
7847: my $subquestion = $2;
1.691 raeburn 7848: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7849: $responsenum = $respnumlookup->{$question-1};
7850: if (ref($startline) eq 'HASH') {
7851: $first = $startline->{$question-1};
7852: }
7853: } else {
7854: $responsenum = $question-1;
1.714 raeburn 7855: $first = $first_bubble_line{$responsenum};
1.691 raeburn 7856: }
7857: $current_line = $first + 1 ;
7858: my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.503 raeburn 7859: my $subcount = 1;
7860: while ($subcount<$subquestion) {
7861: $current_line += $subans[$subcount-1];
7862: $subcount ++;
7863: }
7864: $lines = $subans[$subquestion-1];
7865: } else {
1.691 raeburn 7866: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7867: $responsenum = $respnumlookup->{$question-1};
7868: if (ref($startline) eq 'HASH') {
7869: $first = $startline->{$question-1};
7870: }
7871: } else {
7872: $responsenum = $question-1;
7873: $first = $first_bubble_line{$responsenum};
7874: }
7875: $current_line = $first + 1;
7876: $lines = $bubble_lines_per_response{$responsenum};
1.503 raeburn 7877: }
1.497 foxr 7878: if ($lines > 1) {
1.503 raeburn 7879: $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
1.691 raeburn 7880: if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
7881: ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
7882: ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
7883: ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
7884: ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
7885: ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.684 bisitz 7886: $r->print(
7887: &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)
7888: .'<br /><br />'
7889: .&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.')
7890: .'<br />'
7891: .&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.')
7892: .'<br />'
7893: .&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.")
7894: .'<br /><br />'
7895: );
1.503 raeburn 7896: } else {
7897: $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
7898: }
1.497 foxr 7899: }
7900: for (my $i =0; $i < $lines; $i++) {
1.503 raeburn 7901: my $selected = $$scan_record{"scantron.$current_line.answer"};
1.691 raeburn 7902: &scantron_bubble_selector($r,$scan_config,$current_line,
1.503 raeburn 7903: $questionnum,$error,split('', $selected));
1.524 raeburn 7904: push(@linenums,$current_line);
1.497 foxr 7905: $current_line++;
7906: }
7907: if ($lines > 1) {
7908: $r->print("<hr /><br />");
7909: }
1.503 raeburn 7910: return @linenums;
1.157 albertel 7911: }
1.423 albertel 7912:
7913: =pod
7914:
7915: =item scantron_bubble_selector
7916:
7917: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 7918: possibly showing the existing the selected bubbles if known
1.423 albertel 7919:
7920: Arguments:
7921: $r - Apache request object
7922: $scan_config - hash from &get_scantron_config()
1.497 foxr 7923: $line - Number of the line being displayed.
1.503 raeburn 7924: $questionnum - Question number (may include subquestion)
7925: $error - Type of error.
1.497 foxr 7926: @selected - Array of bubbles picked on this line.
1.423 albertel 7927:
7928: =cut
7929:
1.157 albertel 7930: sub scantron_bubble_selector {
1.503 raeburn 7931: my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157 albertel 7932: my $max=$$scan_config{'Qlength'};
1.274 albertel 7933:
7934: my $scmode=$$scan_config{'Qon'};
1.649 raeburn 7935: if ($scmode eq 'number' || $scmode eq 'letter') {
7936: if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
7937: ($$scan_config{'BubblesPerRow'} > 0)) {
7938: $max=$$scan_config{'BubblesPerRow'};
7939: if (($scmode eq 'number') && ($max > 10)) {
7940: $max = 10;
7941: } elsif (($scmode eq 'letter') && $max > 26) {
7942: $max = 26;
7943: }
7944: } else {
7945: $max = 10;
7946: }
7947: }
1.274 albertel 7948:
1.157 albertel 7949: my @alphabet=('A'..'Z');
1.503 raeburn 7950: $r->print(&Apache::loncommon::start_data_table().
7951: &Apache::loncommon::start_data_table_row());
7952: $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497 foxr 7953: for (my $i=0;$i<$max+1;$i++) {
7954: $r->print("\n".'<td align="center">');
7955: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
7956: else { $r->print(' '); }
7957: $r->print('</td>');
7958: }
1.503 raeburn 7959: $r->print(&Apache::loncommon::end_data_table_row().
7960: &Apache::loncommon::start_data_table_row());
1.497 foxr 7961: for (my $i=0;$i<$max;$i++) {
7962: $r->print("\n".
7963: '<td><label><input type="radio" name="scantron_correct_Q_'.
7964: $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
7965: }
1.503 raeburn 7966: my $nobub_checked = ' ';
7967: if ($error eq 'missingbubble') {
7968: $nobub_checked = ' checked = "checked" ';
7969: }
7970: $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
7971: $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
7972: '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
7973: $line.'" value="'.$questionnum.'" /></td>');
7974: $r->print(&Apache::loncommon::end_data_table_row().
7975: &Apache::loncommon::end_data_table());
1.157 albertel 7976: }
7977:
1.423 albertel 7978: =pod
7979:
7980: =item num_matches
7981:
1.424 albertel 7982: Counts the number of characters that are the same between the two arguments.
7983:
7984: Arguments:
7985: $orig - CODE from the scanline
7986: $code - CODE to match against
7987:
7988: Returns:
7989: $count - integer count of the number of same characters between the
7990: two arguments
7991:
1.423 albertel 7992: =cut
7993:
1.194 albertel 7994: sub num_matches {
7995: my ($orig,$code) = @_;
7996: my @code=split(//,$code);
7997: my @orig=split(//,$orig);
7998: my $same=0;
7999: for (my $i=0;$i<scalar(@code);$i++) {
8000: if ($code[$i] eq $orig[$i]) { $same++; }
8001: }
8002: return $same;
8003: }
8004:
1.423 albertel 8005: =pod
8006:
8007: =item scantron_get_closely_matching_CODEs
8008:
1.424 albertel 8009: Cycles through all CODEs and finds the set that has the greatest
8010: number of same characters as the provided CODE
8011:
8012: Arguments:
8013: $allcodes - hash ref returned by &get_codes()
8014: $CODE - CODE from the current scanline
8015:
8016: Returns:
8017: 2 element list
8018: - first elements is number of how closely matching the best fit is
8019: (5 means best set has 5 matching characters)
8020: - second element is an arrary ref containing the set of valid CODEs
8021: that best fit the passed in CODE
8022:
1.423 albertel 8023: =cut
8024:
1.194 albertel 8025: sub scantron_get_closely_matching_CODEs {
8026: my ($allcodes,$CODE)=@_;
8027: my @CODEs;
8028: foreach my $testcode (sort(keys(%{$allcodes}))) {
8029: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
8030: }
8031:
8032: return ($#CODEs,$CODEs[-1]);
8033: }
8034:
1.423 albertel 8035: =pod
8036:
8037: =item get_codes
8038:
1.424 albertel 8039: Builds a hash which has keys of all of the valid CODEs from the selected
8040: set of remembered CODEs.
8041:
8042: Arguments:
8043: $old_name - name of the set of remembered CODEs
8044: $cdom - domain of the course
8045: $cnum - internal course name
8046:
8047: Returns:
8048: %allcodes - keys are the valid CODEs, values are all 1
8049:
1.423 albertel 8050: =cut
8051:
1.194 albertel 8052: sub get_codes {
1.280 foxr 8053: my ($old_name, $cdom, $cnum) = @_;
8054: if (!$old_name) {
8055: $old_name=$env{'form.scantron_CODElist'};
8056: }
8057: if (!$cdom) {
8058: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
8059: }
8060: if (!$cnum) {
8061: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
8062: }
1.278 albertel 8063: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
8064: $cdom,$cnum);
8065: my %allcodes;
8066: if ($result{"type\0$old_name"} eq 'number') {
8067: %allcodes=map {($_,1)} split(',',$result{$old_name});
8068: } else {
8069: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
8070: }
1.194 albertel 8071: return %allcodes;
8072: }
8073:
1.423 albertel 8074: =pod
8075:
8076: =item scantron_validate_CODE
8077:
1.424 albertel 8078: Validates all scanlines in the selected file to not have any
8079: invalid or underspecified CODEs and that none of the codes are
8080: duplicated if this was requested.
8081:
1.423 albertel 8082: =cut
8083:
1.157 albertel 8084: sub scantron_validate_CODE {
8085: my ($r,$currentphase) = @_;
1.257 albertel 8086: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 8087: if ($scantron_config{'CODElocation'} &&
8088: $scantron_config{'CODEstart'} &&
8089: $scantron_config{'CODElength'}) {
1.257 albertel 8090: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 8091: &FIXME_blow_up()
8092: }
8093: } else {
8094: return (0,$currentphase+1);
8095: }
8096:
8097: my %usedCODEs;
8098:
1.194 albertel 8099: my %allcodes=&get_codes();
1.186 albertel 8100:
1.582 raeburn 8101: my $nav_error;
1.649 raeburn 8102: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
1.582 raeburn 8103: if ($nav_error) {
8104: $r->print(&navmap_errormsg());
8105: return(1,$currentphase);
8106: }
1.447 foxr 8107:
1.186 albertel 8108: my ($scanlines,$scan_data)=&scantron_getfile();
8109: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8110: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 8111: if ($line=~/^[\s\cz]*$/) { next; }
8112: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
8113: $scan_data);
8114: my $CODE=$$scan_record{'scantron.CODE'};
8115: my $error=0;
1.224 albertel 8116: if (!&Apache::lonnet::validCODE($CODE)) {
8117: &scantron_get_correction($r,$i,$scan_record,
8118: \%scantron_config,
8119: $line,'incorrectCODE',\%allcodes);
8120: return(1,$currentphase);
8121: }
1.221 albertel 8122: if (%allcodes && !exists($allcodes{$CODE})
8123: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 8124: &scantron_get_correction($r,$i,$scan_record,
8125: \%scantron_config,
1.194 albertel 8126: $line,'incorrectCODE',\%allcodes);
8127: return(1,$currentphase);
1.186 albertel 8128: }
1.214 albertel 8129: if (exists($usedCODEs{$CODE})
1.257 albertel 8130: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 8131: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 8132: &scantron_get_correction($r,$i,$scan_record,
8133: \%scantron_config,
1.194 albertel 8134: $line,'duplicateCODE',$usedCODEs{$CODE});
8135: return(1,$currentphase);
1.186 albertel 8136: }
1.524 raeburn 8137: push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 8138: }
1.157 albertel 8139: return (0,$currentphase+1);
8140: }
8141:
1.423 albertel 8142: =pod
8143:
8144: =item scantron_validate_doublebubble
8145:
1.424 albertel 8146: Validates all scanlines in the selected file to not have any
8147: bubble lines with multiple bubbles marked.
8148:
1.423 albertel 8149: =cut
8150:
1.157 albertel 8151: sub scantron_validate_doublebubble {
8152: my ($r,$currentphase) = @_;
8153: #get student info
8154: my $classlist=&Apache::loncoursedata::get_classlist();
8155: my %idmap=&username_to_idmap($classlist);
1.691 raeburn 8156: my (undef,undef,$sequence)=
8157: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.157 albertel 8158:
8159: #get scantron line setup
1.257 albertel 8160: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 8161: my ($scanlines,$scan_data)=&scantron_getfile();
1.691 raeburn 8162:
8163: my $navmap = Apache::lonnavmaps::navmap->new();
8164: unless (ref($navmap)) {
8165: $r->print(&navmap_errormsg());
8166: return(1,$currentphase);
8167: }
8168: my $map=$navmap->getResourceByUrl($sequence);
8169: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8170: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
8171: %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
8172: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8173:
1.583 raeburn 8174: my $nav_error;
1.691 raeburn 8175: if (ref($map)) {
8176: $randomorder = $map->randomorder();
8177: $randompick = $map->randompick();
8178: if ($randomorder || $randompick) {
8179: $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8180: if ($nav_error) {
8181: $r->print(&navmap_errormsg());
8182: return(1,$currentphase);
8183: }
8184: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8185: \%grader_randomlists_by_symb,$bubbles_per_row);
8186: }
8187: } else {
8188: $r->print(&navmap_errormsg());
8189: return(1,$currentphase);
8190: }
8191:
1.649 raeburn 8192: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
1.583 raeburn 8193: if ($nav_error) {
8194: $r->print(&navmap_errormsg());
8195: return(1,$currentphase);
8196: }
1.447 foxr 8197:
1.157 albertel 8198: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8199: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8200: if ($line=~/^[\s\cz]*$/) { next; }
8201: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
1.691 raeburn 8202: $scan_data,undef,\%idmap,$randomorder,
8203: $randompick,$sequence,\@master_seq,
8204: \%symb_to_resource,\%grader_partids_by_symb,
8205: \%orderedforcode,\%respnumlookup,\%startline);
1.157 albertel 8206: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
8207: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
8208: 'doublebubble',
1.691 raeburn 8209: $$scan_record{'scantron.doubleerror'},
8210: $randomorder,$randompick,\%respnumlookup,\%startline);
1.157 albertel 8211: return (1,$currentphase);
8212: }
8213: return (0,$currentphase+1);
8214: }
8215:
1.423 albertel 8216:
1.503 raeburn 8217: sub scantron_get_maxbubble {
1.649 raeburn 8218: my ($nav_error,$scantron_config) = @_;
1.257 albertel 8219: if (defined($env{'form.scantron_maxbubble'}) &&
8220: $env{'form.scantron_maxbubble'}) {
1.447 foxr 8221: &restore_bubble_lines();
1.257 albertel 8222: return $env{'form.scantron_maxbubble'};
1.191 albertel 8223: }
1.330 albertel 8224:
1.447 foxr 8225: my (undef, undef, $sequence) =
1.257 albertel 8226: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 8227:
1.447 foxr 8228: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8229: unless (ref($navmap)) {
8230: if (ref($nav_error)) {
8231: $$nav_error = 1;
8232: }
1.591 raeburn 8233: return;
1.582 raeburn 8234: }
1.191 albertel 8235: my $map=$navmap->getResourceByUrl($sequence);
8236: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.649 raeburn 8237: my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
1.330 albertel 8238:
8239: &Apache::lonxml::clear_problem_counter();
8240:
1.557 raeburn 8241: my $uname = $env{'user.name'};
8242: my $udom = $env{'user.domain'};
1.435 foxr 8243: my $cid = $env{'request.course.id'};
8244: my $total_lines = 0;
8245: %bubble_lines_per_response = ();
1.447 foxr 8246: %first_bubble_line = ();
1.503 raeburn 8247: %subdivided_bubble_lines = ();
8248: %responsetype_per_response = ();
1.691 raeburn 8249: %masterseq_id_responsenum = ();
1.554 raeburn 8250:
1.447 foxr 8251: my $response_number = 0;
8252: my $bubble_line = 0;
1.191 albertel 8253: foreach my $resource (@resources) {
1.691 raeburn 8254: my $resid = $resource->id();
1.672 raeburn 8255: my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
8256: $udom,undef,$bubbles_per_row);
1.542 raeburn 8257: if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
8258: foreach my $part_id (@{$parts}) {
8259: my $lines;
8260:
8261: # TODO - make this a persistent hash not an array.
8262:
8263: # optionresponse, matchresponse and rankresponse type items
8264: # render as separate sub-questions in exam mode.
8265: if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
8266: ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
8267: ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
8268: my ($numbub,$numshown);
8269: if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
8270: if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
8271: $numbub = scalar(@{$analysis->{$part_id.'.options'}});
8272: }
8273: } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
8274: if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
8275: $numbub = scalar(@{$analysis->{$part_id.'.items'}});
8276: }
8277: } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
8278: if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
8279: $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
8280: }
8281: }
8282: if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
8283: $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
8284: }
1.649 raeburn 8285: my $bubbles_per_row =
8286: &bubblesheet_bubbles_per_row($scantron_config);
8287: my $inner_bubble_lines = int($numbub/$bubbles_per_row);
8288: if (($numbub % $bubbles_per_row) != 0) {
1.542 raeburn 8289: $inner_bubble_lines++;
8290: }
8291: for (my $i=0; $i<$numshown; $i++) {
8292: $subdivided_bubble_lines{$response_number} .=
8293: $inner_bubble_lines.',';
8294: }
8295: $subdivided_bubble_lines{$response_number} =~ s/,$//;
8296: $lines = $numshown * $inner_bubble_lines;
8297: } else {
8298: $lines = $analysis->{"$part_id.bubble_lines"};
1.649 raeburn 8299: }
1.542 raeburn 8300:
8301: $first_bubble_line{$response_number} = $bubble_line;
8302: $bubble_lines_per_response{$response_number} = $lines;
8303: $responsetype_per_response{$response_number} =
8304: $analysis->{$part_id.'.type'};
1.691 raeburn 8305: $masterseq_id_responsenum{$resid.'_'.$part_id} = $response_number;
1.542 raeburn 8306: $response_number++;
8307:
8308: $bubble_line += $lines;
8309: $total_lines += $lines;
8310: }
8311: }
8312: }
1.552 raeburn 8313: &Apache::lonnet::delenv('scantron.');
1.542 raeburn 8314:
8315: &save_bubble_lines();
8316: $env{'form.scantron_maxbubble'} =
8317: $total_lines;
8318: return $env{'form.scantron_maxbubble'};
8319: }
1.523 raeburn 8320:
1.649 raeburn 8321: sub bubblesheet_bubbles_per_row {
8322: my ($scantron_config) = @_;
8323: my $bubbles_per_row;
8324: if (ref($scantron_config) eq 'HASH') {
8325: $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
8326: }
8327: if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
8328: $bubbles_per_row = 10;
8329: }
8330: return $bubbles_per_row;
8331: }
8332:
1.157 albertel 8333: sub scantron_validate_missingbubbles {
8334: my ($r,$currentphase) = @_;
8335: #get student info
8336: my $classlist=&Apache::loncoursedata::get_classlist();
8337: my %idmap=&username_to_idmap($classlist);
1.691 raeburn 8338: my (undef,undef,$sequence)=
8339: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.157 albertel 8340:
8341: #get scantron line setup
1.257 albertel 8342: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 8343: my ($scanlines,$scan_data)=&scantron_getfile();
1.691 raeburn 8344:
8345: my $navmap = Apache::lonnavmaps::navmap->new();
8346: unless (ref($navmap)) {
8347: $r->print(&navmap_errormsg());
8348: return(1,$currentphase);
8349: }
8350:
8351: my $map=$navmap->getResourceByUrl($sequence);
8352: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8353: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
8354: %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
8355: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8356:
1.582 raeburn 8357: my $nav_error;
1.691 raeburn 8358: if (ref($map)) {
8359: $randomorder = $map->randomorder();
8360: $randompick = $map->randompick();
8361: if ($randomorder || $randompick) {
8362: $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8363: if ($nav_error) {
8364: $r->print(&navmap_errormsg());
8365: return(1,$currentphase);
8366: }
8367: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8368: \%grader_randomlists_by_symb,$bubbles_per_row);
8369: }
8370: } else {
8371: $r->print(&navmap_errormsg());
8372: return(1,$currentphase);
8373: }
8374:
8375:
1.649 raeburn 8376: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 8377: if ($nav_error) {
1.691 raeburn 8378: $r->print(&navmap_errormsg());
1.693 raeburn 8379: return(1,$currentphase);
1.582 raeburn 8380: }
1.691 raeburn 8381:
1.157 albertel 8382: if (!$max_bubble) { $max_bubble=2**31; }
8383: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8384: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8385: if ($line=~/^[\s\cz]*$/) { next; }
1.691 raeburn 8386: my $scan_record =
8387: &scantron_parse_scanline($line,$i,\%scantron_config,$scan_data,undef,\%idmap,
8388: $randomorder,$randompick,$sequence,\@master_seq,
8389: \%symb_to_resource,\%grader_partids_by_symb,
8390: \%orderedforcode,\%respnumlookup,\%startline);
1.157 albertel 8391: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
8392: my @to_correct;
1.470 foxr 8393:
8394: # Probably here's where the error is...
8395:
1.157 albertel 8396: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505 raeburn 8397: my $lastbubble;
8398: if ($missing =~ /^(\d+)\.(\d+)$/) {
8399: my $question = $1;
8400: my $subquestion = $2;
1.691 raeburn 8401: my ($first,$responsenum);
8402: if ($randomorder || $randompick) {
8403: $responsenum = $respnumlookup{$question-1};
8404: $first = $startline{$question-1};
8405: } else {
8406: $responsenum = $question-1;
8407: $first = $first_bubble_line{$responsenum};
8408: }
8409: if (!defined($first)) { next; }
8410: my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.505 raeburn 8411: my $subcount = 1;
8412: while ($subcount<$subquestion) {
8413: $first += $subans[$subcount-1];
8414: $subcount ++;
8415: }
8416: my $count = $subans[$subquestion-1];
8417: $lastbubble = $first + $count;
8418: } else {
1.691 raeburn 8419: my ($first,$responsenum);
8420: if ($randomorder || $randompick) {
8421: $responsenum = $respnumlookup{$missing-1};
8422: $first = $startline{$missing-1};
8423: } else {
8424: $responsenum = $missing-1;
8425: $first = $first_bubble_line{$responsenum};
8426: }
8427: if (!defined($first)) { next; }
8428: $lastbubble = $first + $bubble_lines_per_response{$responsenum};
1.505 raeburn 8429: }
8430: if ($lastbubble > $max_bubble) { next; }
1.157 albertel 8431: push(@to_correct,$missing);
8432: }
8433: if (@to_correct) {
8434: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
1.691 raeburn 8435: $line,'missingbubble',\@to_correct,
8436: $randomorder,$randompick,\%respnumlookup,
8437: \%startline);
1.157 albertel 8438: return (1,$currentphase);
8439: }
8440:
8441: }
8442: return (0,$currentphase+1);
8443: }
8444:
1.663 raeburn 8445: sub hand_bubble_option {
8446: my (undef, undef, $sequence) =
8447: &Apache::lonnet::decode_symb($env{'form.selectpage'});
8448: return if ($sequence eq '');
8449: my $navmap = Apache::lonnavmaps::navmap->new();
8450: unless (ref($navmap)) {
8451: return;
8452: }
8453: my $needs_hand_bubbles;
8454: my $map=$navmap->getResourceByUrl($sequence);
8455: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8456: foreach my $res (@resources) {
8457: if (ref($res)) {
8458: if ($res->is_problem()) {
8459: my $partlist = $res->parts();
8460: foreach my $part (@{ $partlist }) {
8461: my @types = $res->responseType($part);
8462: if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
8463: $needs_hand_bubbles = 1;
8464: last;
8465: }
8466: }
8467: }
8468: }
8469: }
8470: if ($needs_hand_bubbles) {
8471: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
8472: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8473: return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
8474: &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 />').
8475: '<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 8476: '<label><input type="radio" name="scantron_lastbubblepoints" value="0" />'.&mt('0 points').'</label></p>';
1.663 raeburn 8477: }
8478: return;
8479: }
1.423 albertel 8480:
1.82 albertel 8481: sub scantron_process_students {
1.608 www 8482: my ($r,$symb) = @_;
1.513 foxr 8483:
1.257 albertel 8484: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.513 foxr 8485: if (!$symb) {
8486: return '';
8487: }
1.324 albertel 8488: my $default_form_data=&defaultFormData($symb);
1.82 albertel 8489:
1.257 albertel 8490: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.691 raeburn 8491: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.157 albertel 8492: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 8493: my $classlist=&Apache::loncoursedata::get_classlist();
8494: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 8495: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8496: unless (ref($navmap)) {
8497: $r->print(&navmap_errormsg());
8498: return '';
1.691 raeburn 8499: }
1.83 albertel 8500: my $map=$navmap->getResourceByUrl($sequence);
1.691 raeburn 8501: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
1.693 raeburn 8502: %grader_randomlists_by_symb);
1.677 raeburn 8503: if (ref($map)) {
8504: $randomorder = $map->randomorder();
1.689 raeburn 8505: $randompick = $map->randompick();
1.691 raeburn 8506: } else {
8507: $r->print(&navmap_errormsg());
8508: return '';
1.677 raeburn 8509: }
1.691 raeburn 8510: my $nav_error;
1.83 albertel 8511: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.691 raeburn 8512: if ($randomorder || $randompick) {
8513: $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8514: if ($nav_error) {
8515: $r->print(&navmap_errormsg());
8516: return '';
8517: }
8518: }
1.557 raeburn 8519: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
1.649 raeburn 8520: \%grader_randomlists_by_symb,$bubbles_per_row);
1.557 raeburn 8521:
1.554 raeburn 8522: my ($uname,$udom);
1.82 albertel 8523: my $result= <<SCANTRONFORM;
1.81 albertel 8524: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
8525: <input type="hidden" name="command" value="scantron_configphase" />
8526: $default_form_data
8527: SCANTRONFORM
1.82 albertel 8528: $r->print($result);
8529:
8530: my @delayqueue;
1.542 raeburn 8531: my (%completedstudents,%scandata);
1.140 albertel 8532:
1.520 www 8533: my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
1.200 albertel 8534: my $count=&get_todo_count($scanlines,$scan_data);
1.667 www 8535: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
8536: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.542 raeburn 8537: $r->print('<br />');
1.140 albertel 8538: my $start=&Time::HiRes::time();
1.158 albertel 8539: my $i=-1;
1.542 raeburn 8540: my $started;
1.447 foxr 8541:
1.649 raeburn 8542: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 8543: if ($nav_error) {
8544: $r->print(&navmap_errormsg());
8545: return '';
8546: }
8547:
1.513 foxr 8548: # If an ssi failed in scantron_get_maxbubble, put an error message out to
8549: # the user and return.
8550:
8551: if ($ssi_error) {
8552: $r->print("</form>");
8553: &ssi_print_error($r);
1.520 www 8554: &Apache::lonnet::remove_lock($lock);
1.513 foxr 8555: return ''; # Dunno why the other returns return '' rather than just returning.
8556: }
1.447 foxr 8557:
1.542 raeburn 8558: my %lettdig = &letter_to_digits();
8559: my $numletts = scalar(keys(%lettdig));
1.691 raeburn 8560: my %orderedforcode;
1.542 raeburn 8561:
1.157 albertel 8562: while ($i<$scanlines->{'count'}) {
8563: ($uname,$udom)=('','');
8564: $i++;
1.200 albertel 8565: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8566: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 8567: if ($started) {
1.667 www 8568: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.200 albertel 8569: }
8570: $started=1;
1.691 raeburn 8571: my %respnumlookup = ();
8572: my %startline = ();
8573: my $total;
1.157 albertel 8574: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
1.691 raeburn 8575: $scan_data,undef,\%idmap,$randomorder,
8576: $randompick,$sequence,\@master_seq,
8577: \%symb_to_resource,\%grader_partids_by_symb,
8578: \%orderedforcode,\%respnumlookup,\%startline,
8579: \$total);
1.157 albertel 8580: unless ($uname=&scantron_find_student($scan_record,$scan_data,
8581: \%idmap,$i)) {
8582: &scantron_add_delay(\@delayqueue,$line,
8583: 'Unable to find a student that matches',1);
8584: next;
8585: }
8586: if (exists $completedstudents{$uname}) {
8587: &scantron_add_delay(\@delayqueue,$line,
8588: 'Student '.$uname.' has multiple sheets',2);
8589: next;
8590: }
1.677 raeburn 8591: my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
8592: my $user = $uname.':'.$usec;
1.157 albertel 8593: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 8594:
1.677 raeburn 8595: my $scancode;
8596: if ((exists($scan_record->{'scantron.CODE'})) &&
8597: (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8598: $scancode = $scan_record->{'scantron.CODE'};
8599: } else {
8600: $scancode = '';
8601: }
8602:
8603: my @mapresources = @resources;
1.689 raeburn 8604: if ($randomorder || $randompick) {
1.678 raeburn 8605: @mapresources =
1.691 raeburn 8606: &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
8607: \%orderedforcode);
1.677 raeburn 8608: }
1.586 raeburn 8609: my (%partids_by_symb,$res_error);
1.677 raeburn 8610: foreach my $resource (@mapresources) {
1.586 raeburn 8611: my $ressymb;
8612: if (ref($resource)) {
8613: $ressymb = $resource->symb();
8614: } else {
8615: $res_error = 1;
8616: last;
8617: }
1.557 raeburn 8618: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8619: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
1.741 raeburn 8620: my $currcode;
8621: if (exists($grader_randomlists_by_symb{$ressymb})) {
8622: $currcode = $scancode;
8623: }
1.557 raeburn 8624: my ($analysis,$parts) =
1.672 raeburn 8625: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.741 raeburn 8626: $uname,$udom,undef,$bubbles_per_row,
8627: $currcode);
1.557 raeburn 8628: $partids_by_symb{$ressymb} = $parts;
8629: } else {
8630: $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
8631: }
1.554 raeburn 8632: }
8633:
1.586 raeburn 8634: if ($res_error) {
8635: &scantron_add_delay(\@delayqueue,$line,
8636: 'An error occurred while grading student '.$uname,2);
8637: next;
8638: }
8639:
1.330 albertel 8640: &Apache::lonxml::clear_problem_counter();
1.514 raeburn 8641: &Apache::lonnet::appenv($scan_record);
1.376 albertel 8642:
8643: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
8644: &scantron_putfile($scanlines,$scan_data);
8645: }
1.161 albertel 8646:
1.542 raeburn 8647: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677 raeburn 8648: \@mapresources,\%partids_by_symb,
1.691 raeburn 8649: $bubbles_per_row,$randomorder,$randompick,
8650: \%respnumlookup,\%startline)
8651: eq 'ssi_error') {
1.542 raeburn 8652: $ssi_error = 0; # So end of handler error message does not trigger.
8653: $r->print("</form>");
8654: &ssi_print_error($r);
8655: &Apache::lonnet::remove_lock($lock);
8656: return ''; # Why return ''? Beats me.
8657: }
1.513 foxr 8658:
1.692 raeburn 8659: if (($scancode) && ($randomorder || $randompick)) {
8660: my $parmresult =
8661: &Apache::lonparmset::storeparm_by_symb($symb,
8662: '0_examcode',2,$scancode,
8663: 'string_examcode',$uname,
8664: $udom);
8665: }
1.140 albertel 8666: $completedstudents{$uname}={'line'=>$line};
1.542 raeburn 8667: if ($env{'form.verifyrecord'}) {
8668: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
1.691 raeburn 8669: if ($randompick) {
8670: if ($total) {
8671: $lastpos = $total*$scantron_config{'Qlength'};
8672: }
8673: }
8674:
1.542 raeburn 8675: my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8676: chomp($studentdata);
8677: $studentdata =~ s/\r$//;
8678: my $studentrecord = '';
8679: my $counter = -1;
1.677 raeburn 8680: foreach my $resource (@mapresources) {
1.554 raeburn 8681: my $ressymb = $resource->symb();
1.542 raeburn 8682: ($counter,my $recording) =
8683: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8684: $counter,$studentdata,$partids_by_symb{$ressymb},
1.691 raeburn 8685: \%scantron_config,\%lettdig,$numletts,$randomorder,
8686: $randompick,\%respnumlookup,\%startline);
1.542 raeburn 8687: $studentrecord .= $recording;
8688: }
8689: if ($studentrecord ne $studentdata) {
1.554 raeburn 8690: &Apache::lonxml::clear_problem_counter();
8691: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677 raeburn 8692: \@mapresources,\%partids_by_symb,
1.691 raeburn 8693: $bubbles_per_row,$randomorder,$randompick,
8694: \%respnumlookup,\%startline)
8695: eq 'ssi_error') {
1.554 raeburn 8696: $ssi_error = 0; # So end of handler error message does not trigger.
8697: $r->print("</form>");
8698: &ssi_print_error($r);
8699: &Apache::lonnet::remove_lock($lock);
8700: delete($completedstudents{$uname});
8701: return '';
8702: }
1.542 raeburn 8703: $counter = -1;
8704: $studentrecord = '';
1.677 raeburn 8705: foreach my $resource (@mapresources) {
1.554 raeburn 8706: my $ressymb = $resource->symb();
1.542 raeburn 8707: ($counter,my $recording) =
8708: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8709: $counter,$studentdata,$partids_by_symb{$ressymb},
1.691 raeburn 8710: \%scantron_config,\%lettdig,$numletts,
8711: $randomorder,$randompick,\%respnumlookup,
8712: \%startline);
1.542 raeburn 8713: $studentrecord .= $recording;
8714: }
8715: if ($studentrecord ne $studentdata) {
1.658 bisitz 8716: $r->print('<p><span class="LC_warning">');
1.542 raeburn 8717: if ($scancode eq '') {
1.658 bisitz 8718: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
1.542 raeburn 8719: $uname.':'.$udom,$scan_record->{'scantron.ID'}));
8720: } else {
1.658 bisitz 8721: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
1.542 raeburn 8722: $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
8723: }
8724: $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
8725: &Apache::loncommon::start_data_table_header_row()."\n".
8726: '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
8727: &Apache::loncommon::end_data_table_header_row()."\n".
8728: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8729: '<td>'.&mt('Bubblesheet').'</td>'.
1.707 bisitz 8730: '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentdata.'</tt></span></td>'.
1.542 raeburn 8731: &Apache::loncommon::end_data_table_row().
8732: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8733: '<td>'.&mt('Stored submissions').'</td>'.
1.707 bisitz 8734: '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentrecord.'</tt></span></td>'."\n".
1.542 raeburn 8735: &Apache::loncommon::end_data_table_row().
8736: &Apache::loncommon::end_data_table().'</p>');
8737: } else {
8738: $r->print('<br /><span class="LC_warning">'.
8739: &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 />'.
8740: &mt("As a consequence, this user's submission history records two tries.").
8741: '</span><br />');
8742: }
8743: }
8744: }
1.543 raeburn 8745: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 8746: } continue {
1.330 albertel 8747: &Apache::lonxml::clear_problem_counter();
1.552 raeburn 8748: &Apache::lonnet::delenv('scantron.');
1.82 albertel 8749: }
1.140 albertel 8750: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.520 www 8751: &Apache::lonnet::remove_lock($lock);
1.172 albertel 8752: # my $lasttime = &Time::HiRes::time()-$start;
8753: # $r->print("<p>took $lasttime</p>");
1.140 albertel 8754:
1.200 albertel 8755: $r->print("</form>");
1.157 albertel 8756: return '';
1.75 albertel 8757: }
1.157 albertel 8758:
1.557 raeburn 8759: sub graders_resources_pass {
1.649 raeburn 8760: my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
8761: $bubbles_per_row) = @_;
1.557 raeburn 8762: if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) &&
8763: (ref($grader_randomlists_by_symb) eq 'HASH')) {
8764: foreach my $resource (@{$resources}) {
8765: my $ressymb = $resource->symb();
8766: my ($analysis,$parts) =
8767: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672 raeburn 8768: $env{'user.name'},$env{'user.domain'},
8769: 1,$bubbles_per_row);
1.557 raeburn 8770: $grader_partids_by_symb->{$ressymb} = $parts;
8771: if (ref($analysis) eq 'HASH') {
8772: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
8773: $grader_randomlists_by_symb->{$ressymb} =
8774: $analysis->{'parts_withrandomlist'};
8775: }
8776: }
8777: }
8778: }
8779: return;
8780: }
8781:
1.678 raeburn 8782: =pod
8783:
8784: =item users_order
8785:
8786: Returns array of resources in current map, ordered based on either CODE,
8787: if this is a CODEd exam, or based on student's identity if this is a
8788: "NAMEd" exam.
8789:
1.691 raeburn 8790: Should be used when randomorder and/or randompick applied when the
8791: corresponding exam was printed, prior to students completing bubblesheets
8792: for the version of the exam the student received.
1.678 raeburn 8793:
8794: =cut
8795:
8796: sub users_order {
1.691 raeburn 8797: my ($user,$scancode,$mapurl,$master_seq,$symb_to_resource,$orderedforcode) = @_;
1.678 raeburn 8798: my @mapresources;
1.691 raeburn 8799: unless ((ref($master_seq) eq 'ARRAY') && (ref($symb_to_resource) eq 'HASH')) {
1.678 raeburn 8800: return @mapresources;
1.691 raeburn 8801: }
8802: if ($scancode) {
8803: if ((ref($orderedforcode) eq 'HASH') && (ref($orderedforcode->{$scancode}) eq 'ARRAY')) {
8804: @mapresources = @{$orderedforcode->{$scancode}};
8805: } else {
8806: $env{'form.CODE'} = $scancode;
8807: my $actual_seq =
8808: &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8809: $master_seq,
8810: $user,$scancode,1);
8811: if (ref($actual_seq) eq 'ARRAY') {
8812: @mapresources = map { $symb_to_resource->{$_}; } @{$actual_seq};
8813: if (ref($orderedforcode) eq 'HASH') {
8814: if (@mapresources > 0) {
8815: $orderedforcode->{$scancode} = \@mapresources;
8816: }
8817: }
8818: }
8819: delete($env{'form.CODE'});
1.678 raeburn 8820: }
8821: } else {
8822: my $actual_seq =
8823: &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8824: $master_seq,
1.688 raeburn 8825: $user,undef,1);
1.678 raeburn 8826: if (ref($actual_seq) eq 'ARRAY') {
8827: @mapresources =
8828: map { $symb_to_resource->{$_}; } @{$actual_seq};
8829: }
1.691 raeburn 8830: }
8831: return @mapresources;
1.678 raeburn 8832: }
8833:
1.542 raeburn 8834: sub grade_student_bubbles {
1.691 raeburn 8835: my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row,
8836: $randomorder,$randompick,$respnumlookup,$startline) = @_;
8837: my $uselookup = 0;
8838: if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH') &&
8839: (ref($startline) eq 'HASH')) {
8840: $uselookup = 1;
8841: }
8842:
1.554 raeburn 8843: if (ref($resources) eq 'ARRAY') {
8844: my $count = 0;
8845: foreach my $resource (@{$resources}) {
8846: my $ressymb = $resource->symb();
8847: my %form = ('submitted' => 'scantron',
8848: 'grade_target' => 'grade',
8849: 'grade_username' => $uname,
8850: 'grade_domain' => $udom,
8851: 'grade_courseid' => $env{'request.course.id'},
8852: 'grade_symb' => $ressymb,
8853: 'CODE' => $scancode
8854: );
1.649 raeburn 8855: if ($bubbles_per_row ne '') {
8856: $form{'bubbles_per_row'} = $bubbles_per_row;
8857: }
1.663 raeburn 8858: if ($env{'form.scantron_lastbubblepoints'} ne '') {
8859: $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
8860: }
1.554 raeburn 8861: if (ref($parts) eq 'HASH') {
8862: if (ref($parts->{$ressymb}) eq 'ARRAY') {
8863: foreach my $part (@{$parts->{$ressymb}}) {
1.691 raeburn 8864: if ($uselookup) {
8865: $form{'scantron_questnum_start.'.$part} = $startline->{$count} + 1;
8866: } else {
8867: $form{'scantron_questnum_start.'.$part} =
8868: 1+$env{'form.scantron.first_bubble_line.'.$count};
8869: }
1.554 raeburn 8870: $count++;
8871: }
8872: }
8873: }
8874: my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
8875: return 'ssi_error' if ($ssi_error);
8876: last if (&Apache::loncommon::connection_aborted($r));
8877: }
1.542 raeburn 8878: }
8879: return;
8880: }
8881:
1.157 albertel 8882: sub scantron_upload_scantron_data {
1.608 www 8883: my ($r,$symb)=@_;
1.565 raeburn 8884: my $dom = $env{'request.role.domain'};
8885: my $domdesc = &Apache::lonnet::domain($dom,'description');
8886: $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
1.157 albertel 8887: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 8888: 'domainid',
1.565 raeburn 8889: 'coursename',$dom);
8890: my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
8891: (' 'x2).&mt('(shows course personnel)');
1.608 www 8892: my $default_form_data=&defaultFormData($symb);
1.579 raeburn 8893: my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
1.736 damieng 8894: &js_escape(\$nofile_alert);
1.579 raeburn 8895: 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 8896: &js_escape(\$nocourseid_alert);
1.597 wenzelju 8897: $r->print(&Apache::lonhtmlcommon::scripttag('
1.157 albertel 8898: function checkUpload(formname) {
8899: if (formname.upfile.value == "") {
1.579 raeburn 8900: alert("'.$nofile_alert.'");
1.157 albertel 8901: return false;
8902: }
1.565 raeburn 8903: if (formname.courseid.value == "") {
1.579 raeburn 8904: alert("'.$nocourseid_alert.'");
1.565 raeburn 8905: return false;
8906: }
1.157 albertel 8907: formname.submit();
8908: }
1.565 raeburn 8909:
8910: function ToSyllabus() {
8911: var cdom = '."'$dom'".';
8912: var cnum = document.rules.courseid.value;
8913: if (cdom == "" || cdom == null) {
8914: return;
8915: }
8916: if (cnum == "" || cnum == null) {
8917: return;
8918: }
8919: syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
8920: "height=350,width=350,scrollbars=yes,menubar=no");
8921: return;
8922: }
8923:
1.597 wenzelju 8924: '));
8925: $r->print('
1.648 bisitz 8926: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
1.566 raeburn 8927:
1.492 albertel 8928: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
1.565 raeburn 8929: '.$default_form_data.
8930: &Apache::lonhtmlcommon::start_pick_box().
8931: &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
8932: '<input name="courseid" type="text" size="30" />'.$select_link.
8933: &Apache::lonhtmlcommon::row_closure().
8934: &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
8935: '<input name="coursename" type="text" size="30" />'.$syllabuslink.
8936: &Apache::lonhtmlcommon::row_closure().
8937: &Apache::lonhtmlcommon::row_title(&mt('Domain')).
8938: '<input name="domainid" type="hidden" />'.$domdesc.
8939: &Apache::lonhtmlcommon::row_closure().
8940: &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
8941: '<input type="file" name="upfile" size="50" />'.
8942: &Apache::lonhtmlcommon::row_closure(1).
8943: &Apache::lonhtmlcommon::end_pick_box().'<br />
8944:
1.492 albertel 8945: <input name="command" value="scantronupload_save" type="hidden" />
1.589 bisitz 8946: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
1.157 albertel 8947: </form>
1.492 albertel 8948: ');
1.157 albertel 8949: return '';
8950: }
8951:
1.423 albertel 8952:
1.157 albertel 8953: sub scantron_upload_scantron_data_save {
1.608 www 8954: my($r,$symb)=@_;
1.182 albertel 8955: my $doanotherupload=
8956: '<br /><form action="/adm/grades" method="post">'."\n".
8957: '<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492 albertel 8958: '<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182 albertel 8959: '</form>'."\n";
1.257 albertel 8960: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 8961: !&Apache::lonnet::allowed('usc',
1.257 albertel 8962: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.575 www 8963: $r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
1.614 www 8964: unless ($symb) {
1.182 albertel 8965: $r->print($doanotherupload);
8966: }
1.162 albertel 8967: return '';
8968: }
1.257 albertel 8969: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.568 raeburn 8970: my $uploadedfile;
1.710 bisitz 8971: $r->print('<p>'.&mt('Uploading file to [_1]','"'.$coursedata{'description'}.'"').'</p>');
1.257 albertel 8972: if (length($env{'form.upfile'}) < 2) {
1.710 bisitz 8973: $r->print(
8974: &Apache::lonhtmlcommon::confirm_success(
8975: &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
8976: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1));
1.183 albertel 8977: } else {
1.568 raeburn 8978: my $result =
8979: &Apache::lonnet::userfileupload('upfile','','scantron','','','',
8980: $env{'form.courseid'},$env{'form.domainid'});
1.710 bisitz 8981: if ($result =~ m{^/uploaded/}) {
8982: $r->print(
8983: &Apache::lonhtmlcommon::confirm_success(&mt('Upload successful')).'<br />'.
8984: &mt('Uploaded [_1] bytes of data into location: [_2]',
8985: (length($env{'form.upfile'})-1),
8986: '<span class="LC_filename">'.$result.'</span>'));
1.568 raeburn 8987: ($uploadedfile) = ($result =~ m{/([^/]+)$});
1.567 raeburn 8988: $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
1.568 raeburn 8989: $env{'form.courseid'},$uploadedfile));
1.710 bisitz 8990: } else {
8991: $r->print(
8992: &Apache::lonhtmlcommon::confirm_success(&mt('Upload failed'),1).'<br />'.
8993: &mt('An error ([_1]) occurred when attempting to upload the file: [_2]',
8994: $result,
1.568 raeburn 8995: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183 albertel 8996: }
8997: }
1.174 albertel 8998: if ($symb) {
1.612 www 8999: $r->print(&scantron_selectphase($r,$uploadedfile,$symb));
1.174 albertel 9000: } else {
1.182 albertel 9001: $r->print($doanotherupload);
1.174 albertel 9002: }
1.157 albertel 9003: return '';
9004: }
9005:
1.567 raeburn 9006: sub validate_uploaded_scantron_file {
9007: my ($cdom,$cname,$fname) = @_;
9008: my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
9009: my @lines;
9010: if ($scanlines ne '-1') {
9011: @lines=split("\n",$scanlines,-1);
9012: }
9013: my $output;
9014: if (@lines) {
9015: my (%counts,$max_match_format);
1.710 bisitz 9016: my ($found_match_count,$max_match_count,$max_match_pct) = (0,0,0);
1.567 raeburn 9017: my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
9018: my %idmap = &username_to_idmap($classlist);
9019: foreach my $key (keys(%idmap)) {
9020: my $lckey = lc($key);
9021: $idmap{$lckey} = $idmap{$key};
9022: }
9023: my %unique_formats;
9024: my @formatlines = &get_scantronformat_file();
9025: foreach my $line (@formatlines) {
9026: chomp($line);
9027: my @config = split(/:/,$line);
9028: my $idstart = $config[5];
9029: my $idlength = $config[6];
9030: if (($idstart ne '') && ($idlength > 0)) {
9031: if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
9032: push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]);
9033: } else {
9034: $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
9035: }
9036: }
9037: }
9038: foreach my $key (keys(%unique_formats)) {
9039: my ($idstart,$idlength) = split(':',$key);
9040: %{$counts{$key}} = (
9041: 'found' => 0,
9042: 'total' => 0,
9043: );
9044: foreach my $line (@lines) {
9045: next if ($line =~ /^#/);
9046: next if ($line =~ /^[\s\cz]*$/);
9047: my $id = substr($line,$idstart-1,$idlength);
9048: $id = lc($id);
9049: if (exists($idmap{$id})) {
9050: $counts{$key}{'found'} ++;
9051: }
9052: $counts{$key}{'total'} ++;
9053: }
9054: if ($counts{$key}{'total'}) {
9055: my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
9056: if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
9057: $max_match_pct = $percent_match;
9058: $max_match_format = $key;
1.710 bisitz 9059: $found_match_count = $counts{$key}{'found'};
1.567 raeburn 9060: $max_match_count = $counts{$key}{'total'};
9061: }
9062: }
9063: }
9064: if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
9065: my $format_descs;
9066: my $numwithformat = @{$unique_formats{$max_match_format}};
9067: for (my $i=0; $i<$numwithformat; $i++) {
9068: my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
9069: if ($i<$numwithformat-2) {
9070: $format_descs .= '"<i>'.$desc.'</i>", ';
9071: } elsif ($i==$numwithformat-2) {
9072: $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
9073: } elsif ($i==$numwithformat-1) {
9074: $format_descs .= '"<i>'.$desc.'</i>"';
9075: }
9076: }
9077: my $showpct = sprintf("%.0f",$max_match_pct).'%';
1.710 bisitz 9078: $output .= '<br />';
9079: if ($found_match_count == $max_match_count) {
9080: # 100% matching entries
9081: $output .= &Apache::lonhtmlcommon::confirm_success(
9082: &mt('Comparison of student IDs: [_1] matching ([quant,_2,entry,entries])',
9083: '<b>'.$showpct.'</b>',$found_match_count)).'<br />'.
9084: &mt('Comparison of student IDs in the uploaded file with'.
9085: ' the course roster found matches for [_1] of the [_2] entries'.
9086: ' in the file (for the format defined for [_3]).',
9087: '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs);
9088: } else {
9089: # Not all entries matching? -> Show warning and additional info
9090: $output .=
9091: &Apache::lonhtmlcommon::confirm_success(
9092: &mt('Comparison of student IDs: [_1] matching ([_2]/[quant,_3,entry,entries])',
9093: '<b>'.$showpct.'</b>',$found_match_count,$max_match_count).'<br />'.
9094: &mt('Not all entries could be matched!'),1).'<br />'.
9095: &mt('Comparison of student IDs in the uploaded file with'.
9096: ' the course roster found matches for [_1] of the [_2] entries'.
9097: ' in the file (for the format defined for [_3]).',
9098: '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs).
9099: '<p class="LC_info">'.
9100: &mt('A low percentage of matches results from one of the following:').
9101: '</p><ul>'.
9102: '<li>'.&mt('The file was uploaded to the wrong course.').'</li>'.
9103: '<li>'.&mt('The data is not in the format expected for the domain: [_1]',
9104: '<i>'.$cdom.'</i>').'</li>'.
9105: '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
9106: '<li>'.&mt('The course roster is not up to date.').'</li>'.
9107: '</ul>';
9108: }
1.567 raeburn 9109: }
9110: } else {
1.710 bisitz 9111: $output = '<p class="LC_warning">'.&mt('Uploaded file contained no data').'</p>';
1.567 raeburn 9112: }
9113: return $output;
9114: }
9115:
1.202 albertel 9116: sub valid_file {
9117: my ($requested_file)=@_;
9118: foreach my $filename (sort(&scantron_filenames())) {
9119: if ($requested_file eq $filename) { return 1; }
9120: }
9121: return 0;
9122: }
9123:
9124: sub scantron_download_scantron_data {
1.608 www 9125: my ($r,$symb)=@_;
9126: my $default_form_data=&defaultFormData($symb);
1.257 albertel 9127: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
9128: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9129: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 9130: if (! &valid_file($file)) {
1.492 albertel 9131: $r->print('
1.202 albertel 9132: <p>
1.686 bisitz 9133: '.&mt('The requested filename was invalid.').'
1.202 albertel 9134: </p>
1.492 albertel 9135: ');
1.202 albertel 9136: return;
9137: }
9138: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
9139: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
9140: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
9141: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
9142: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
9143: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492 albertel 9144: $r->print('
1.202 albertel 9145: <p>
1.723 raeburn 9146: '.&mt('[_1]Original[_2] file as uploaded by the bubblesheet scanning office.',
1.492 albertel 9147: '<a href="'.$orig.'">','</a>').'
1.202 albertel 9148: </p>
9149: <p>
1.492 albertel 9150: '.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
9151: '<a href="'.$corrected.'">','</a>').'
1.202 albertel 9152: </p>
9153: <p>
1.492 albertel 9154: '.&mt('[_1]Skipped[_2], a file of records that were skipped.',
9155: '<a href="'.$skipped.'">','</a>').'
1.202 albertel 9156: </p>
1.492 albertel 9157: ');
1.202 albertel 9158: return '';
9159: }
1.157 albertel 9160:
1.523 raeburn 9161: sub checkscantron_results {
1.608 www 9162: my ($r,$symb) = @_;
1.523 raeburn 9163: if (!$symb) {return '';}
9164: my $cid = $env{'request.course.id'};
1.542 raeburn 9165: my %lettdig = &letter_to_digits();
1.523 raeburn 9166: my $numletts = scalar(keys(%lettdig));
9167: my $cnum = $env{'course.'.$cid.'.num'};
9168: my $cdom = $env{'course.'.$cid.'.domain'};
9169: my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
9170: my %record;
9171: my %scantron_config =
9172: &Apache::grades::get_scantron_config($env{'form.scantron_format'});
1.649 raeburn 9173: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.523 raeburn 9174: my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
9175: my $classlist=&Apache::loncoursedata::get_classlist();
9176: my %idmap=&Apache::grades::username_to_idmap($classlist);
9177: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 9178: unless (ref($navmap)) {
9179: $r->print(&navmap_errormsg());
9180: return '';
9181: }
1.523 raeburn 9182: my $map=$navmap->getResourceByUrl($sequence);
1.691 raeburn 9183: my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
9184: %grader_randomlists_by_symb,%orderedforcode);
1.677 raeburn 9185: if (ref($map)) {
9186: $randomorder=$map->randomorder();
1.689 raeburn 9187: $randompick=$map->randompick();
1.677 raeburn 9188: }
1.557 raeburn 9189: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.691 raeburn 9190: my $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
9191: if ($nav_error) {
9192: $r->print(&navmap_errormsg());
9193: return '';
1.678 raeburn 9194: }
1.673 raeburn 9195: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
9196: \%grader_randomlists_by_symb,$bubbles_per_row);
1.554 raeburn 9197: my ($uname,$udom);
1.523 raeburn 9198: my (%scandata,%lastname,%bylast);
9199: $r->print('
9200: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
9201:
9202: my @delayqueue;
9203: my %completedstudents;
9204:
1.691 raeburn 9205: my $count=&get_todo_count($scanlines,$scan_data);
1.667 www 9206: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1.706 raeburn 9207: my ($username,$domain,$started);
1.649 raeburn 9208: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 9209: if ($nav_error) {
9210: $r->print(&navmap_errormsg());
9211: return '';
9212: }
1.523 raeburn 9213:
1.667 www 9214: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.523 raeburn 9215: my $start=&Time::HiRes::time();
9216: my $i=-1;
9217:
9218: while ($i<$scanlines->{'count'}) {
9219: ($username,$domain,$uname)=('','','');
9220: $i++;
9221: my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
9222: if ($line=~/^[\s\cz]*$/) { next; }
9223: if ($started) {
1.667 www 9224: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.523 raeburn 9225: }
9226: $started=1;
9227: my $scan_record=
9228: &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
9229: $scan_data);
1.693 raeburn 9230: unless ($uname=&scantron_find_student($scan_record,$scan_data,
9231: \%idmap,$i)) {
1.523 raeburn 9232: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
9233: 'Unable to find a student that matches',1);
9234: next;
9235: }
9236: if (exists $completedstudents{$uname}) {
9237: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
9238: 'Student '.$uname.' has multiple sheets',2);
9239: next;
9240: }
9241: my $pid = $scan_record->{'scantron.ID'};
9242: $lastname{$pid} = $scan_record->{'scantron.LastName'};
9243: push(@{$bylast{$lastname{$pid}}},$pid);
1.678 raeburn 9244: my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
9245: my $user = $uname.':'.$usec;
1.523 raeburn 9246: ($username,$domain)=split(/:/,$uname);
1.677 raeburn 9247:
1.678 raeburn 9248: my $scancode;
1.677 raeburn 9249: if ((exists($scan_record->{'scantron.CODE'})) &&
9250: (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
9251: $scancode = $scan_record->{'scantron.CODE'};
9252: } else {
9253: $scancode = '';
9254: }
9255:
9256: my @mapresources = @resources;
1.691 raeburn 9257: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
9258: my %respnumlookup=();
9259: my %startline=();
1.689 raeburn 9260: if ($randomorder || $randompick) {
1.678 raeburn 9261: @mapresources =
1.691 raeburn 9262: &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
9263: \%orderedforcode);
9264: my $total = &get_respnum_lookups($sequence,$scan_data,\%idmap,$line,
9265: $scan_record,\@master_seq,\%symb_to_resource,
9266: \%grader_partids_by_symb,\%orderedforcode,
9267: \%respnumlookup,\%startline);
9268: if ($randompick && $total) {
9269: $lastpos = $total*$scantron_config{'Qlength'};
9270: }
1.677 raeburn 9271: }
1.691 raeburn 9272: $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
9273: chomp($scandata{$pid});
9274: $scandata{$pid} =~ s/\r$//;
9275:
1.523 raeburn 9276: my $counter = -1;
1.677 raeburn 9277: foreach my $resource (@mapresources) {
1.557 raeburn 9278: my $parts;
1.554 raeburn 9279: my $ressymb = $resource->symb();
1.557 raeburn 9280: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
9281: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
1.741 raeburn 9282: my $currcode;
9283: if (exists($grader_randomlists_by_symb{$ressymb})) {
9284: $currcode = $scancode;
9285: }
1.557 raeburn 9286: (my $analysis,$parts) =
1.672 raeburn 9287: &scantron_partids_tograde($resource,$env{'request.course.id'},
9288: $username,$domain,undef,
1.741 raeburn 9289: $bubbles_per_row,$currcode);
1.557 raeburn 9290: } else {
9291: $parts = $grader_partids_by_symb{$ressymb};
9292: }
1.542 raeburn 9293: ($counter,my $recording) =
9294: &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
1.554 raeburn 9295: $scandata{$pid},$parts,
1.691 raeburn 9296: \%scantron_config,\%lettdig,$numletts,
9297: $randomorder,$randompick,
9298: \%respnumlookup,\%startline);
1.542 raeburn 9299: $record{$pid} .= $recording;
1.523 raeburn 9300: }
9301: }
9302: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
9303: $r->print('<br />');
9304: my ($okstudents,$badstudents,$numstudents,$passed,$failed);
9305: $passed = 0;
9306: $failed = 0;
9307: $numstudents = 0;
9308: foreach my $last (sort(keys(%bylast))) {
9309: if (ref($bylast{$last}) eq 'ARRAY') {
9310: foreach my $pid (sort(@{$bylast{$last}})) {
9311: my $showscandata = $scandata{$pid};
9312: my $showrecord = $record{$pid};
9313: $showscandata =~ s/\s/ /g;
9314: $showrecord =~ s/\s/ /g;
9315: if ($scandata{$pid} eq $record{$pid}) {
9316: my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
9317: $okstudents .= '<tr class="'.$css_class.'">'.
1.581 www 9318: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
1.523 raeburn 9319: '</tr>'."\n".
9320: '<tr class="'.$css_class.'">'."\n".
1.721 bisitz 9321: '<td>'.&mt('Submissions').'</td><td>'.$showrecord.'</td></tr>'."\n";
1.523 raeburn 9322: $passed ++;
9323: } else {
9324: my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
1.581 www 9325: $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 9326: '</tr>'."\n".
9327: '<tr class="'.$css_class.'">'."\n".
1.721 bisitz 9328: '<td>'.&mt('Submissions').'</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
1.523 raeburn 9329: '</tr>'."\n";
9330: $failed ++;
9331: }
9332: $numstudents ++;
9333: }
9334: }
9335: }
1.648 bisitz 9336: $r->print(
9337: '<p>'
9338: .&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).',
9339: '<b>',
9340: $numstudents,
9341: '</b>',
9342: $env{'form.scantron_maxbubble'})
9343: .'</p>'
9344: );
1.682 raeburn 9345: $r->print('<p>'
1.683 raeburn 9346: .&mt('Exact matches for [_1][quant,_2,student][_3].','<b>',$passed,'</b>')
1.682 raeburn 9347: .'<br />'
9348: .&mt('Discrepancies detected for [_1][quant,_2,student][_3].','<b>',$failed,'</b>')
9349: .'</p>'
9350: );
1.523 raeburn 9351: if ($passed) {
1.572 www 9352: $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 9353: $r->print(&Apache::loncommon::start_data_table()."\n".
9354: &Apache::loncommon::start_data_table_header_row()."\n".
9355: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
9356: &Apache::loncommon::end_data_table_header_row()."\n".
9357: $okstudents."\n".
9358: &Apache::loncommon::end_data_table().'<br />');
9359: }
9360: if ($failed) {
1.572 www 9361: $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 9362: $r->print(&Apache::loncommon::start_data_table()."\n".
9363: &Apache::loncommon::start_data_table_header_row()."\n".
9364: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
9365: &Apache::loncommon::end_data_table_header_row()."\n".
9366: $badstudents."\n".
9367: &Apache::loncommon::end_data_table()).'<br />'.
1.572 www 9368: &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 9369: }
1.614 www 9370: $r->print('</form><br />');
1.523 raeburn 9371: return;
9372: }
9373:
1.542 raeburn 9374: sub verify_scantron_grading {
1.554 raeburn 9375: my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
1.691 raeburn 9376: $scantron_config,$lettdig,$numletts,$randomorder,$randompick,
9377: $respnumlookup,$startline) = @_;
1.542 raeburn 9378: my ($record,%expected,%startpos);
9379: return ($counter,$record) if (!ref($resource));
9380: return ($counter,$record) if (!$resource->is_problem());
9381: my $symb = $resource->symb();
1.554 raeburn 9382: return ($counter,$record) if (ref($partids) ne 'ARRAY');
9383: foreach my $part_id (@{$partids}) {
1.542 raeburn 9384: $counter ++;
9385: $expected{$part_id} = 0;
1.691 raeburn 9386: my $respnum = $counter;
9387: if ($randomorder || $randompick) {
9388: $respnum = $respnumlookup->{$counter};
9389: $startpos{$part_id} = $startline->{$counter} + 1;
9390: } else {
9391: $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
9392: }
9393: if ($env{"form.scantron.sub_bubblelines.$respnum"}) {
9394: my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$respnum"});
1.542 raeburn 9395: foreach my $item (@sub_lines) {
9396: $expected{$part_id} += $item;
9397: }
9398: } else {
1.691 raeburn 9399: $expected{$part_id} = $env{"form.scantron.bubblelines.$respnum"};
1.542 raeburn 9400: }
9401: }
9402: if ($symb) {
9403: my %recorded;
9404: my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
9405: if ($returnhash{'version'}) {
9406: my %lasthash=();
9407: my $version;
9408: for ($version=1;$version<=$returnhash{'version'};$version++) {
9409: foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
9410: $lasthash{$key}=$returnhash{$version.':'.$key};
9411: }
9412: }
9413: foreach my $key (keys(%lasthash)) {
9414: if ($key =~ /\.scantron$/) {
9415: my $value = &unescape($lasthash{$key});
9416: my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
9417: if ($value eq '') {
9418: for (my $i=0; $i<$expected{$part_id}; $i++) {
9419: for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
9420: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9421: }
9422: }
9423: } else {
9424: my @tocheck;
9425: my @items = split(//,$value);
9426: if (($scantron_config->{'Qon'} eq 'letter') ||
9427: ($scantron_config->{'Qon'} eq 'number')) {
9428: if (@items < $expected{$part_id}) {
9429: my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
9430: my @singles = split(//,$fragment);
9431: foreach my $pos (@singles) {
9432: if ($pos eq ' ') {
9433: push(@tocheck,$pos);
9434: } else {
9435: my $next = shift(@items);
9436: push(@tocheck,$next);
9437: }
9438: }
9439: } else {
9440: @tocheck = @items;
9441: }
9442: foreach my $letter (@tocheck) {
9443: if ($scantron_config->{'Qon'} eq 'letter') {
9444: if ($letter !~ /^[A-J]$/) {
9445: $letter = $scantron_config->{'Qoff'};
9446: }
9447: $recorded{$part_id} .= $letter;
9448: } elsif ($scantron_config->{'Qon'} eq 'number') {
9449: my $digit;
9450: if ($letter !~ /^[A-J]$/) {
9451: $digit = $scantron_config->{'Qoff'};
9452: } else {
9453: $digit = $lettdig->{$letter};
9454: }
9455: $recorded{$part_id} .= $digit;
9456: }
9457: }
9458: } else {
9459: @tocheck = @items;
9460: for (my $i=0; $i<$expected{$part_id}; $i++) {
9461: my $curr_sub = shift(@tocheck);
9462: my $digit;
9463: if ($curr_sub =~ /^[A-J]$/) {
9464: $digit = $lettdig->{$curr_sub}-1;
9465: }
9466: if ($curr_sub eq 'J') {
9467: $digit += scalar($numletts);
9468: }
9469: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
9470: if ($j == $digit) {
9471: $recorded{$part_id} .= $scantron_config->{'Qon'};
9472: } else {
9473: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9474: }
9475: }
9476: }
9477: }
9478: }
9479: }
9480: }
9481: }
1.554 raeburn 9482: foreach my $part_id (@{$partids}) {
1.542 raeburn 9483: if ($recorded{$part_id} eq '') {
9484: for (my $i=0; $i<$expected{$part_id}; $i++) {
9485: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
9486: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9487: }
9488: }
9489: }
9490: $record .= $recorded{$part_id};
9491: }
9492: }
9493: return ($counter,$record);
9494: }
9495:
1.691 raeburn 9496: sub letter_to_digits {
1.542 raeburn 9497: my %lettdig = (
9498: A => 1,
9499: B => 2,
9500: C => 3,
9501: D => 4,
9502: E => 5,
9503: F => 6,
9504: G => 7,
9505: H => 8,
9506: I => 9,
9507: J => 0,
9508: );
9509: return %lettdig;
9510: }
9511:
1.423 albertel 9512:
1.75 albertel 9513: #-------- end of section for handling grading scantron forms -------
9514: #
9515: #-------------------------------------------------------------------
9516:
1.72 ng 9517: #-------------------------- Menu interface -------------------------
9518: #
1.614 www 9519: #--- Href with symb and command ---
9520:
9521: sub href_symb_cmd {
9522: my ($symb,$cmd)=@_;
1.669 raeburn 9523: return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&command='.$cmd;
1.72 ng 9524: }
9525:
1.443 banghart 9526: sub grading_menu {
1.608 www 9527: my ($request,$symb) = @_;
1.443 banghart 9528: if (!$symb) {return '';}
9529:
9530: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
1.618 www 9531: 'command'=>'individual');
1.538 schulted 9532:
1.598 www 9533: my $url1a = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9534:
9535: $fields{'command'}='ungraded';
9536: my $url1b=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9537:
9538: $fields{'command'}='table';
9539: my $url1c=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9540:
9541: $fields{'command'}='all_for_one';
9542: my $url1d=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9543:
1.621 www 9544: $fields{'command'}='downloadfilesselect';
9545: my $url1e=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
9546:
1.443 banghart 9547: $fields{'command'} = 'csvform';
1.538 schulted 9548: my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9549:
1.443 banghart 9550: $fields{'command'} = 'processclicker';
1.538 schulted 9551: my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9552:
1.443 banghart 9553: $fields{'command'} = 'scantron_selectphase';
1.538 schulted 9554: my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.602 www 9555:
9556: $fields{'command'} = 'initialverifyreceipt';
9557: my $url5 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.538 schulted 9558:
1.598 www 9559: my @menu = ({ categorytitle=>'Hand Grading',
1.538 schulted 9560: items =>[
1.598 www 9561: { linktext => 'Select individual students to grade',
9562: url => $url1a,
1.538 schulted 9563: permission => 'F',
1.636 wenzelju 9564: icon => 'grade_students.png',
1.598 www 9565: linktitle => 'Grade current resource for a selection of students.'
9566: },
9567: { linktext => 'Grade ungraded submissions.',
9568: url => $url1b,
9569: permission => 'F',
1.636 wenzelju 9570: icon => 'ungrade_sub.png',
1.598 www 9571: linktitle => 'Grade all submissions that have not been graded yet.'
1.538 schulted 9572: },
1.598 www 9573:
9574: { linktext => 'Grading table',
9575: url => $url1c,
9576: permission => 'F',
1.636 wenzelju 9577: icon => 'grading_table.png',
1.598 www 9578: linktitle => 'Grade current resource for all students.'
9579: },
1.615 www 9580: { linktext => 'Grade page/folder for one student',
1.598 www 9581: url => $url1d,
9582: permission => 'F',
1.636 wenzelju 9583: icon => 'grade_PageFolder.png',
1.598 www 9584: linktitle => 'Grade all resources in current page/sequence/folder for one student.'
1.621 www 9585: },
9586: { linktext => 'Download submissions',
9587: url => $url1e,
9588: permission => 'F',
1.636 wenzelju 9589: icon => 'download_sub.png',
1.621 www 9590: linktitle => 'Download all students submissions.'
1.598 www 9591: }]},
9592: { categorytitle=>'Automated Grading',
9593: items =>[
9594:
1.538 schulted 9595: { linktext => 'Upload Scores',
9596: url => $url2,
9597: permission => 'F',
9598: icon => 'uploadscores.png',
9599: linktitle => 'Specify a file containing the class scores for current resource.'
9600: },
9601: { linktext => 'Process Clicker',
9602: url => $url3,
9603: permission => 'F',
9604: icon => 'addClickerInfoFile.png',
9605: linktitle => 'Specify a file containing the clicker information for this resource.'
9606: },
1.587 raeburn 9607: { linktext => 'Grade/Manage/Review Bubblesheets',
1.538 schulted 9608: url => $url4,
9609: permission => 'F',
1.636 wenzelju 9610: icon => 'bubblesheet.png',
1.648 bisitz 9611: linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
1.602 www 9612: },
1.616 www 9613: { linktext => 'Verify Receipt Number',
1.602 www 9614: url => $url5,
9615: permission => 'F',
1.636 wenzelju 9616: icon => 'receipt_number.png',
1.602 www 9617: linktitle => 'Verify a system-generated receipt number for correct problem solution.'
9618: }
9619:
1.538 schulted 9620: ]
9621: });
9622:
1.443 banghart 9623: # Create the menu
9624: my $Str;
1.445 banghart 9625: $Str .= '<form method="post" action="" name="gradingMenu">';
9626: $Str .= '<input type="hidden" name="command" value="" />'.
1.618 www 9627: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.445 banghart 9628:
1.602 www 9629: $Str .= &Apache::lonhtmlcommon::generate_menu(@menu);
1.443 banghart 9630: return $Str;
9631: }
9632:
1.598 www 9633:
9634: sub ungraded {
9635: my ($request)=@_;
9636: &submit_options($request);
9637: }
9638:
1.599 www 9639: sub submit_options_sequence {
1.608 www 9640: my ($request,$symb) = @_;
1.599 www 9641: if (!$symb) {return '';}
1.600 www 9642: &commonJSfunctions($request);
9643: my $result;
1.599 www 9644:
1.600 www 9645: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 9646: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 9647: $result.=&selectfield(0).
1.601 www 9648: '<input type="hidden" name="command" value="pickStudentPage" />
1.600 www 9649: <div>
9650: <input type="submit" value="'.&mt('Next').' →" />
9651: </div>
9652: </div>
9653: </form>';
9654: return $result;
9655: }
9656:
9657: sub submit_options_table {
1.608 www 9658: my ($request,$symb) = @_;
1.600 www 9659: if (!$symb) {return '';}
1.599 www 9660: &commonJSfunctions($request);
9661: my $result;
9662:
9663: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 9664: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.599 www 9665:
1.738 raeburn 9666: $result.=&selectfield(1).
1.601 www 9667: '<input type="hidden" name="command" value="viewgrades" />
1.599 www 9668: <div>
9669: <input type="submit" value="'.&mt('Next').' →" />
9670: </div>
9671: </div>
9672: </form>';
9673: return $result;
9674: }
1.443 banghart 9675:
1.621 www 9676: sub submit_options_download {
9677: my ($request,$symb) = @_;
9678: if (!$symb) {return '';}
9679:
9680: &commonJSfunctions($request);
9681:
9682: my $result='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
9683: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
9684: $result.='
9685: <h2>
9686: '.&mt('Select Students for Which to Download Submissions').'
9687: </h2>'.&selectfield(1).'
9688: <input type="hidden" name="command" value="downloadfileslink" />
9689: <input type="submit" value="'.&mt('Next').' →" />
9690: </div>
9691: </div>
1.600 www 9692:
9693:
1.621 www 9694: </form>';
9695: return $result;
9696: }
9697:
1.443 banghart 9698: #--- Displays the submissions first page -------
9699: sub submit_options {
1.608 www 9700: my ($request,$symb) = @_;
1.72 ng 9701: if (!$symb) {return '';}
9702:
1.118 ng 9703: &commonJSfunctions($request);
1.473 albertel 9704: my $result;
1.533 bisitz 9705:
1.72 ng 9706: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 9707: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 9708: $result.=&selectfield(1).'
1.601 www 9709: <input type="hidden" name="command" value="submission" />
9710: <input type="submit" value="'.&mt('Next').' →" />
9711: </div>
9712: </div>
9713:
9714:
9715: </form>';
9716: return $result;
9717: }
1.533 bisitz 9718:
1.601 www 9719: sub selectfield {
9720: my ($full)=@_;
1.635 raeburn 9721: my %options =
1.738 raeburn 9722: (&substatus_options,
9723: 'select_form_order' => ['yes','queued','graded','incorrect','all']);
1.601 www 9724: my $result='<div class="LC_columnSection">
1.537 harmsja 9725:
1.533 bisitz 9726: <fieldset>
9727: <legend>
9728: '.&mt('Sections').'
9729: </legend>
1.601 www 9730: '.&Apache::lonstatistics::SectionSelect('section','multiple',5).'
1.533 bisitz 9731: </fieldset>
1.537 harmsja 9732:
1.533 bisitz 9733: <fieldset>
9734: <legend>
9735: '.&mt('Groups').'
9736: </legend>
9737: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
9738: </fieldset>
1.537 harmsja 9739:
1.533 bisitz 9740: <fieldset>
9741: <legend>
9742: '.&mt('Access Status').'
9743: </legend>
1.601 www 9744: '.&Apache::lonhtmlcommon::StatusOptions(undef,undef,5,undef,'mult').'
9745: </fieldset>';
9746: if ($full) {
9747: $result.='
1.533 bisitz 9748: <fieldset>
9749: <legend>
9750: '.&mt('Submission Status').'
1.601 www 9751: </legend>'.
1.635 raeburn 9752: &Apache::loncommon::select_form('all','submitonly',\%options).
1.601 www 9753: '</fieldset>';
9754: }
9755: $result.='</div><br />';
1.44 ng 9756: return $result;
1.2 albertel 9757: }
9758:
1.738 raeburn 9759: sub substatus_options {
9760: return &Apache::lonlocal::texthash(
9761: 'yes' => 'with submissions',
9762: 'queued' => 'in grading queue',
9763: 'graded' => 'with ungraded submissions',
9764: 'incorrect' => 'with incorrect submissions',
1.740 raeburn 9765: 'all' => 'with any status',
9766: );
1.738 raeburn 9767: }
9768:
1.285 albertel 9769: sub reset_perm {
9770: undef(%perm);
9771: }
9772:
9773: sub init_perm {
9774: &reset_perm();
1.300 albertel 9775: foreach my $test_perm ('vgr','mgr','opa') {
9776:
9777: my $scope = $env{'request.course.id'};
9778: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
9779:
9780: $scope .= '/'.$env{'request.course.sec'};
9781: if ( $perm{$test_perm}=
9782: &Apache::lonnet::allowed($test_perm,$scope)) {
9783: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
9784: } else {
9785: delete($perm{$test_perm});
9786: }
1.285 albertel 9787: }
9788: }
9789: }
9790:
1.674 raeburn 9791: sub init_old_essays {
9792: my ($symb,$apath,$adom,$aname) = @_;
9793: if ($symb ne '') {
9794: my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
9795: if (keys(%essays) > 0) {
9796: $old_essays{$symb} = \%essays;
9797: }
9798: }
9799: return;
9800: }
9801:
9802: sub reset_old_essays {
9803: undef(%old_essays);
9804: }
9805:
1.400 www 9806: sub gather_clicker_ids {
1.408 albertel 9807: my %clicker_ids;
1.400 www 9808:
9809: my $classlist = &Apache::loncoursedata::get_classlist();
9810:
9811: # Set up a couple variables.
1.407 albertel 9812: my $username_idx = &Apache::loncoursedata::CL_SNAME();
9813: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 9814: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 9815:
1.407 albertel 9816: foreach my $student (keys(%$classlist)) {
1.438 www 9817: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 9818: my $username = $classlist->{$student}->[$username_idx];
9819: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 9820: my $clickers =
1.408 albertel 9821: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 9822: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9823: $id=~s/^[\#0]+//;
1.421 www 9824: $id=~s/[\-\:]//g;
1.407 albertel 9825: if (exists($clicker_ids{$id})) {
1.408 albertel 9826: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 9827: } else {
1.408 albertel 9828: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 9829: }
9830: }
9831: }
1.407 albertel 9832: return %clicker_ids;
1.400 www 9833: }
9834:
1.402 www 9835: sub gather_adv_clicker_ids {
1.408 albertel 9836: my %clicker_ids;
1.402 www 9837: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
9838: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9839: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 9840: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 9841: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
9842: my ($puname,$pudom)=split(/\:/,$person);
9843: my $clickers =
1.408 albertel 9844: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 9845: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9846: $id=~s/^[\#0]+//;
1.421 www 9847: $id=~s/[\-\:]//g;
1.408 albertel 9848: if (exists($clicker_ids{$id})) {
9849: $clicker_ids{$id}.=','.$puname.':'.$pudom;
9850: } else {
9851: $clicker_ids{$id}=$puname.':'.$pudom;
9852: }
1.405 www 9853: }
1.402 www 9854: }
9855: }
1.407 albertel 9856: return %clicker_ids;
1.402 www 9857: }
9858:
1.413 www 9859: sub clicker_grading_parameters {
9860: return ('gradingmechanism' => 'scalar',
9861: 'upfiletype' => 'scalar',
9862: 'specificid' => 'scalar',
9863: 'pcorrect' => 'scalar',
9864: 'pincorrect' => 'scalar');
9865: }
9866:
1.400 www 9867: sub process_clicker {
1.608 www 9868: my ($r,$symb)=@_;
1.400 www 9869: if (!$symb) {return '';}
9870: my $result=&checkforfile_js();
1.632 www 9871: $result.=&Apache::loncommon::start_data_table().
9872: &Apache::loncommon::start_data_table_header_row().
9873: '<th>'.&mt('Specify a file containing clicker information and set grading options.').'</th>'.
9874: &Apache::loncommon::end_data_table_header_row().
9875: &Apache::loncommon::start_data_table_row()."<td>\n";
1.413 www 9876: # Attempt to restore parameters from last session, set defaults if not present
9877: my %Saveable_Parameters=&clicker_grading_parameters();
9878: &Apache::loncommon::restore_course_settings('grades_clicker',
9879: \%Saveable_Parameters);
9880: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
9881: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
9882: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
9883: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
9884:
9885: my %checked;
1.521 www 9886: foreach my $gradingmechanism ('attendance','personnel','specific','given') {
1.413 www 9887: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
1.569 bisitz 9888: $checked{$gradingmechanism}=' checked="checked"';
1.413 www 9889: }
9890: }
9891:
1.632 www 9892: my $upload=&mt("Evaluate File");
1.400 www 9893: my $type=&mt("Type");
1.402 www 9894: my $attendance=&mt("Award points just for participation");
9895: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 9896: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.521 www 9897: my $given=&mt("Correctness determined from given list of answers").' '.
9898: '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
1.402 www 9899: my $pcorrect=&mt("Percentage points for correct solution");
9900: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 9901: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.635 raeburn 9902: {'iclicker' => 'i>clicker',
1.666 www 9903: 'interwrite' => 'interwrite PRS',
9904: 'turning' => 'Turning Technologies'});
1.418 albertel 9905: $symb = &Apache::lonenc::check_encrypt($symb);
1.597 wenzelju 9906: $result.= &Apache::lonhtmlcommon::scripttag(<<ENDUPFORM);
1.402 www 9907: function sanitycheck() {
9908: // Accept only integer percentages
9909: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
9910: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
9911: // Find out grading choice
9912: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9913: if (document.forms.gradesupload.gradingmechanism[i].checked) {
9914: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
9915: }
9916: }
9917: // By default, new choice equals user selection
9918: newgradingchoice=gradingchoice;
9919: // Not good to give more points for false answers than correct ones
9920: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
9921: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
9922: }
9923: // If new choice is attendance only, and old choice was correctness-based, restore defaults
9924: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
9925: document.forms.gradesupload.pcorrect.value=100;
9926: document.forms.gradesupload.pincorrect.value=100;
9927: }
9928: // If the values are different, cannot be attendance only
9929: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
9930: (gradingchoice=='attendance')) {
9931: newgradingchoice='personnel';
9932: }
9933: // Change grading choice to new one
9934: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9935: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
9936: document.forms.gradesupload.gradingmechanism[i].checked=true;
9937: } else {
9938: document.forms.gradesupload.gradingmechanism[i].checked=false;
9939: }
9940: }
9941: // Remember the old state
9942: document.forms.gradesupload.waschecked.value=newgradingchoice;
9943: }
1.597 wenzelju 9944: ENDUPFORM
9945: $result.= <<ENDUPFORM;
1.400 www 9946: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
9947: <input type="hidden" name="symb" value="$symb" />
9948: <input type="hidden" name="command" value="processclickerfile" />
9949: <input type="file" name="upfile" size="50" />
9950: <br /><label>$type: $selectform</label>
1.632 www 9951: ENDUPFORM
9952: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9953: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDGRADINGFORM);
9954: <label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
1.589 bisitz 9955: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
9956: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
1.414 www 9957: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.589 bisitz 9958: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
1.521 www 9959: <br />
9960: <input type="text" name="givenanswer" size="50" />
1.413 www 9961: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
1.632 www 9962: ENDGRADINGFORM
9963: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9964: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDPERCFORM);
9965: <label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
1.589 bisitz 9966: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
9967: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.597 wenzelju 9968: </form>'
1.632 www 9969: ENDPERCFORM
9970: $result.='</td>'.
9971: &Apache::loncommon::end_data_table_row().
9972: &Apache::loncommon::end_data_table();
1.400 www 9973: return $result;
9974: }
9975:
9976: sub process_clicker_file {
1.608 www 9977: my ($r,$symb)=@_;
1.400 www 9978: if (!$symb) {return '';}
1.413 www 9979:
9980: my %Saveable_Parameters=&clicker_grading_parameters();
9981: &Apache::loncommon::store_course_settings('grades_clicker',
9982: \%Saveable_Parameters);
1.598 www 9983: my $result='';
1.404 www 9984: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 9985: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
1.614 www 9986: return $result;
1.404 www 9987: }
1.522 www 9988: if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
1.521 www 9989: $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
1.614 www 9990: return $result;
1.521 www 9991: }
1.522 www 9992: my $foundgiven=0;
1.521 www 9993: if ($env{'form.gradingmechanism'} eq 'given') {
9994: $env{'form.givenanswer'}=~s/^\s*//gs;
9995: $env{'form.givenanswer'}=~s/\s*$//gs;
1.644 www 9996: $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
1.521 www 9997: $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
1.522 www 9998: my @answers=split(/\,/,$env{'form.givenanswer'});
9999: $foundgiven=$#answers+1;
1.521 www 10000: }
1.407 albertel 10001: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 10002: my %correct_ids;
1.404 www 10003: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 10004: %correct_ids=&gather_adv_clicker_ids();
1.404 www 10005: }
10006: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 10007: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
10008: $correct_id=~tr/a-z/A-Z/;
10009: $correct_id=~s/\s//gs;
10010: $correct_id=~s/^[\#0]+//;
1.421 www 10011: $correct_id=~s/[\-\:]//g;
1.414 www 10012: if ($correct_id) {
10013: $correct_ids{$correct_id}='specified';
10014: }
10015: }
1.400 www 10016: }
1.404 www 10017: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 10018: $result.=&mt('Score based on attendance only');
1.521 www 10019: } elsif ($env{'form.gradingmechanism'} eq 'given') {
1.522 www 10020: $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
1.404 www 10021: } else {
1.408 albertel 10022: my $number=0;
1.411 www 10023: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 10024: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 10025: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 10026: if ($correct_ids{$id} eq 'specified') {
10027: $result.=&mt('specified');
10028: } else {
10029: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
10030: $result.=&Apache::loncommon::plainname($uname,$udom);
10031: }
10032: $number++;
10033: }
1.411 www 10034: $result.="</p>\n";
1.710 bisitz 10035: if ($number==0) {
10036: $result .=
10037: &Apache::lonhtmlcommon::confirm_success(
10038: &mt('No IDs found to determine correct answer'),1);
10039: return $result;
10040: }
1.404 www 10041: }
1.405 www 10042: if (length($env{'form.upfile'}) < 2) {
1.710 bisitz 10043: $result .=
10044: &Apache::lonhtmlcommon::confirm_success(
10045: &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
10046: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1);
1.614 www 10047: return $result;
1.405 www 10048: }
1.410 www 10049:
10050: # Were able to get all the info needed, now analyze the file
10051:
1.411 www 10052: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 10053: $symb = &Apache::lonenc::check_encrypt($symb);
1.632 www 10054: $result.=&Apache::loncommon::start_data_table().
10055: &Apache::loncommon::start_data_table_header_row().
10056: '<th>'.&mt('Evaluate clicker file').'</th>'.
10057: &Apache::loncommon::end_data_table_header_row().
10058: &Apache::loncommon::start_data_table_row().(<<ENDHEADER);
10059: <td>
1.410 www 10060: <form method="post" action="/adm/grades" name="clickeranalysis">
10061: <input type="hidden" name="symb" value="$symb" />
10062: <input type="hidden" name="command" value="assignclickergrades" />
1.411 www 10063: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
10064: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
10065: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 10066: ENDHEADER
1.522 www 10067: if ($env{'form.gradingmechanism'} eq 'given') {
10068: $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
10069: }
1.408 albertel 10070: my %responses;
10071: my @questiontitles;
1.405 www 10072: my $errormsg='';
10073: my $number=0;
10074: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 10075: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 10076: }
1.419 www 10077: if ($env{'form.upfiletype'} eq 'interwrite') {
10078: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
10079: }
1.666 www 10080: if ($env{'form.upfiletype'} eq 'turning') {
10081: ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
10082: }
1.411 www 10083: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
10084: '<input type="hidden" name="number" value="'.$number.'" />'.
10085: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
10086: $env{'form.pcorrect'},$env{'form.pincorrect'}).
10087: '<br />';
1.522 www 10088: if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
10089: $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
1.614 www 10090: return $result;
1.522 www 10091: }
1.414 www 10092: # Remember Question Titles
10093: # FIXME: Possibly need delimiter other than ":"
10094: for (my $i=0;$i<$number;$i++) {
10095: $result.='<input type="hidden" name="question:'.$i.'" value="'.
10096: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
10097: }
1.411 www 10098: my $correct_count=0;
10099: my $student_count=0;
10100: my $unknown_count=0;
1.414 www 10101: # Match answers with usernames
10102: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 10103: foreach my $id (keys(%responses)) {
1.410 www 10104: if ($correct_ids{$id}) {
1.414 www 10105: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 10106: $correct_count++;
1.410 www 10107: } elsif ($clicker_ids{$id}) {
1.437 www 10108: if ($clicker_ids{$id}=~/\,/) {
10109: # More than one user with the same clicker!
1.632 www 10110: $result.="</td>".&Apache::loncommon::end_data_table_row().
10111: &Apache::loncommon::start_data_table_row()."<td>".
10112: &mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
1.437 www 10113: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10114: "<select name='multi".$id."'>";
10115: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
10116: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
10117: }
10118: $result.='</select>';
10119: $unknown_count++;
10120: } else {
10121: # Good: found one and only one user with the right clicker
10122: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
10123: $student_count++;
10124: }
1.410 www 10125: } else {
1.632 www 10126: $result.="</td>".&Apache::loncommon::end_data_table_row().
10127: &Apache::loncommon::start_data_table_row()."<td>".
10128: &mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
1.411 www 10129: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10130: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
10131: "\n".&mt("Domain").": ".
10132: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
1.643 www 10133: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
1.411 www 10134: $unknown_count++;
1.410 www 10135: }
1.405 www 10136: }
1.412 www 10137: $result.='<hr />'.
10138: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
1.521 www 10139: if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
1.412 www 10140: if ($correct_count==0) {
1.696 bisitz 10141: $errormsg.="Found no correct answers for grading!";
1.412 www 10142: } elsif ($correct_count>1) {
1.414 www 10143: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 10144: }
10145: }
1.428 www 10146: if ($number<1) {
10147: $errormsg.="Found no questions.";
10148: }
1.412 www 10149: if ($errormsg) {
10150: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
10151: } else {
10152: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
10153: }
1.632 www 10154: $result.='</form></td>'.
10155: &Apache::loncommon::end_data_table_row().
10156: &Apache::loncommon::end_data_table();
1.614 www 10157: return $result;
1.400 www 10158: }
10159:
1.405 www 10160: sub iclicker_eval {
1.406 www 10161: my ($questiontitles,$responses)=@_;
1.405 www 10162: my $number=0;
10163: my $errormsg='';
10164: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 10165: my %components=&Apache::loncommon::record_sep($line);
10166: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 10167: if ($entries[0] eq 'Question') {
10168: for (my $i=3;$i<$#entries;$i+=6) {
10169: $$questiontitles[$number]=$entries[$i];
10170: $number++;
10171: }
10172: }
10173: if ($entries[0]=~/^\#/) {
10174: my $id=$entries[0];
10175: my @idresponses;
10176: $id=~s/^[\#0]+//;
10177: for (my $i=0;$i<$number;$i++) {
10178: my $idx=3+$i*6;
1.644 www 10179: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
1.408 albertel 10180: push(@idresponses,$entries[$idx]);
10181: }
10182: $$responses{$id}=join(',',@idresponses);
10183: }
1.405 www 10184: }
10185: return ($errormsg,$number);
10186: }
10187:
1.419 www 10188: sub interwrite_eval {
10189: my ($questiontitles,$responses)=@_;
10190: my $number=0;
10191: my $errormsg='';
1.420 www 10192: my $skipline=1;
10193: my $questionnumber=0;
10194: my %idresponses=();
1.419 www 10195: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10196: my %components=&Apache::loncommon::record_sep($line);
10197: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 10198: if ($entries[1] eq 'Time') { $skipline=0; next; }
10199: if ($entries[1] eq 'Response') { $skipline=1; }
10200: next if $skipline;
10201: if ($entries[0]!=$questionnumber) {
10202: $questionnumber=$entries[0];
10203: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
10204: $number++;
1.419 www 10205: }
1.420 www 10206: my $id=$entries[4];
10207: $id=~s/^[\#0]+//;
1.421 www 10208: $id=~s/^v\d*\://i;
10209: $id=~s/[\-\:]//g;
1.420 www 10210: $idresponses{$id}[$number]=$entries[6];
10211: }
1.524 raeburn 10212: foreach my $id (keys(%idresponses)) {
1.420 www 10213: $$responses{$id}=join(',',@{$idresponses{$id}});
10214: $$responses{$id}=~s/^\s*\,//;
1.419 www 10215: }
10216: return ($errormsg,$number);
10217: }
10218:
1.666 www 10219: sub turning_eval {
10220: my ($questiontitles,$responses)=@_;
10221: my $number=0;
10222: my $errormsg='';
10223: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10224: my %components=&Apache::loncommon::record_sep($line);
10225: my @entries=map {$components{$_}} (sort(keys(%components)));
10226: if ($#entries>$number) { $number=$#entries; }
10227: my $id=$entries[0];
10228: my @idresponses;
10229: $id=~s/^[\#0]+//;
10230: unless ($id) { next; }
10231: for (my $idx=1;$idx<=$#entries;$idx++) {
10232: $entries[$idx]=~s/\,/\;/g;
10233: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
10234: push(@idresponses,$entries[$idx]);
10235: }
10236: $$responses{$id}=join(',',@idresponses);
10237: }
10238: for (my $i=1; $i<=$number; $i++) {
10239: $$questiontitles[$i]=&mt('Question [_1]',$i);
10240: }
10241: return ($errormsg,$number);
10242: }
10243:
10244:
1.414 www 10245: sub assign_clicker_grades {
1.608 www 10246: my ($r,$symb)=@_;
1.414 www 10247: if (!$symb) {return '';}
1.416 www 10248: # See which part we are saving to
1.582 raeburn 10249: my $res_error;
10250: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
10251: if ($res_error) {
10252: return &navmap_errormsg();
10253: }
1.416 www 10254: # FIXME: This should probably look for the first handgradeable part
10255: my $part=$$partlist[0];
10256: # Start screen output
1.632 www 10257: my $result=&Apache::loncommon::start_data_table().
10258: &Apache::loncommon::start_data_table_header_row().
10259: '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
10260: &Apache::loncommon::end_data_table_header_row().
10261: &Apache::loncommon::start_data_table_row().'<td>';
1.414 www 10262: # Get correct result
10263: # FIXME: Possibly need delimiter other than ":"
10264: my @correct=();
1.415 www 10265: my $gradingmechanism=$env{'form.gradingmechanism'};
10266: my $number=$env{'form.number'};
10267: if ($gradingmechanism ne 'attendance') {
1.414 www 10268: foreach my $key (keys(%env)) {
10269: if ($key=~/^form\.correct\:/) {
10270: my @input=split(/\,/,$env{$key});
10271: for (my $i=0;$i<=$#input;$i++) {
10272: if (($correct[$i]) && ($input[$i]) &&
10273: ($correct[$i] ne $input[$i])) {
10274: $result.='<br /><span class="LC_warning">'.
10275: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
10276: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
1.644 www 10277: } elsif (($input[$i]) || ($input[$i] eq '0')) {
1.414 www 10278: $correct[$i]=$input[$i];
10279: }
10280: }
10281: }
10282: }
1.415 www 10283: for (my $i=0;$i<$number;$i++) {
1.644 www 10284: if ((!$correct[$i]) && ($correct[$i] ne '0')) {
1.414 www 10285: $result.='<br /><span class="LC_error">'.
10286: &mt('No correct result given for question "[_1]"!',
10287: $env{'form.question:'.$i}).'</span>';
10288: }
10289: }
1.644 www 10290: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
1.414 www 10291: }
10292: # Start grading
1.415 www 10293: my $pcorrect=$env{'form.pcorrect'};
10294: my $pincorrect=$env{'form.pincorrect'};
1.416 www 10295: my $storecount=0;
1.632 www 10296: my %users=();
1.415 www 10297: foreach my $key (keys(%env)) {
1.420 www 10298: my $user='';
1.415 www 10299: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 10300: $user=$1;
10301: }
10302: if ($key=~/^form\.unknown\:(.*)$/) {
10303: my $id=$1;
10304: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
10305: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 10306: } elsif ($env{'form.multi'.$id}) {
10307: $user=$env{'form.multi'.$id};
1.420 www 10308: }
10309: }
1.632 www 10310: if ($user) {
10311: if ($users{$user}) {
10312: $result.='<br /><span class="LC_warning">'.
1.696 bisitz 10313: &mt('More than one entry found for [_1]!','<tt>'.$user.'</tt>').
1.632 www 10314: '</span><br />';
10315: }
10316: $users{$user}=1;
1.415 www 10317: my @answer=split(/\,/,$env{$key});
10318: my $sum=0;
1.522 www 10319: my $realnumber=$number;
1.415 www 10320: for (my $i=0;$i<$number;$i++) {
1.576 www 10321: if ($correct[$i] eq '-') {
10322: $realnumber--;
1.644 www 10323: } elsif (($answer[$i]) || ($answer[$i]=~/^[0\.]+$/)) {
1.415 www 10324: if ($gradingmechanism eq 'attendance') {
10325: $sum+=$pcorrect;
1.576 www 10326: } elsif ($correct[$i] eq '*') {
1.522 www 10327: $sum+=$pcorrect;
1.415 www 10328: } else {
1.644 www 10329: # We actually grade if correct or not
10330: my $increment=$pincorrect;
10331: # Special case: numerical answer "0"
10332: if ($correct[$i] eq '0') {
10333: if ($answer[$i]=~/^[0\.]+$/) {
10334: $increment=$pcorrect;
10335: }
10336: # General numerical answer, both evaluate to something non-zero
10337: } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
10338: if (1.0*$correct[$i]==1.0*$answer[$i]) {
10339: $increment=$pcorrect;
10340: }
10341: # Must be just alphanumeric
10342: } elsif ($answer[$i] eq $correct[$i]) {
10343: $increment=$pcorrect;
1.415 www 10344: }
1.644 www 10345: $sum+=$increment;
1.415 www 10346: }
10347: }
10348: }
1.522 www 10349: my $ave=$sum/(100*$realnumber);
1.416 www 10350: # Store
10351: my ($username,$domain)=split(/\:/,$user);
10352: my %grades=();
10353: $grades{"resource.$part.solved"}='correct_by_override';
10354: $grades{"resource.$part.awarded"}=$ave;
10355: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
10356: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
10357: $env{'request.course.id'},
10358: $domain,$username);
10359: if ($returncode ne 'ok') {
10360: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
10361: } else {
10362: $storecount++;
10363: }
1.415 www 10364: }
10365: }
10366: # We are done
1.549 hauer 10367: $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
1.632 www 10368: '</td>'.
10369: &Apache::loncommon::end_data_table_row().
10370: &Apache::loncommon::end_data_table();
1.614 www 10371: return $result;
1.414 www 10372: }
10373:
1.582 raeburn 10374: sub navmap_errormsg {
10375: return '<div class="LC_error">'.
10376: &mt('An error occurred retrieving information about resources in the course.').'<br />'.
1.595 raeburn 10377: &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 10378: '</div>';
10379: }
1.607 droeschl 10380:
1.609 www 10381: sub startpage {
1.671 raeburn 10382: my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
10383: if ($nomenu) {
10384: $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
10385: } else {
10386: unshift(@$crumbs,{href=>&href_symb_cmd($symb,'gradingmenu'),text=>"Grading"});
10387: $r->print(&Apache::loncommon::start_page('Grading',$js,
10388: {'bread_crumbs' => $crumbs}));
10389: &Apache::lonquickgrades::startGradeScreen($r,($env{'form.symb'}?'probgrading':'grading'));
10390: }
1.613 www 10391: unless ($nodisplayflag) {
1.671 raeburn 10392: $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
1.613 www 10393: }
1.607 droeschl 10394: }
1.582 raeburn 10395:
1.622 www 10396: sub select_problem {
10397: my ($r)=@_;
1.632 www 10398: $r->print('<h3>'.&mt('Select the problem or one of the problems you want to grade').'</h3><form action="/adm/grades">');
1.622 www 10399: $r->print(&Apache::lonstathelpers::problem_selector('.',undef,1));
10400: $r->print('<input type="hidden" name="command" value="gradingmenu" />');
10401: $r->print('<input type="submit" value="'.&mt('Next').' →" /></form>');
10402: }
10403:
1.1 albertel 10404: sub handler {
1.41 ng 10405: my $request=$_[0];
1.434 albertel 10406: &reset_caches();
1.646 raeburn 10407: if ($request->header_only) {
10408: &Apache::loncommon::content_type($request,'text/html');
10409: $request->send_http_header;
10410: return OK;
10411: }
10412: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
10413:
1.664 raeburn 10414: # see what command we need to execute
10415:
10416: my @commands=&Apache::loncommon::get_env_multiple('form.command');
10417: my $command=$commands[0];
10418:
1.646 raeburn 10419: &init_perm();
10420: if (!$env{'request.course.id'}) {
1.664 raeburn 10421: unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
10422: ($command =~ /^scantronupload/)) {
10423: # Not in a course.
10424: $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
10425: return HTTP_NOT_ACCEPTABLE;
10426: }
1.646 raeburn 10427: } elsif (!%perm) {
10428: $request->internal_redirect('/adm/quickgrades');
1.687 raeburn 10429: return OK;
1.41 ng 10430: }
1.646 raeburn 10431: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 10432: $request->send_http_header;
1.646 raeburn 10433:
1.160 albertel 10434: if ($#commands > 0) {
10435: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
10436: }
1.608 www 10437:
10438: # see what the symb is
10439:
10440: my $symb=$env{'form.symb'};
10441: unless ($symb) {
10442: (my $url=$env{'form.url'}) =~ s-^https*://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
10443: $symb=&Apache::lonnet::symbread($url);
10444: }
1.646 raeburn 10445: &Apache::lonenc::check_decrypt(\$symb);
1.608 www 10446:
1.513 foxr 10447: $ssi_error = 0;
1.637 www 10448: if (($symb eq '' || $command eq '') && ($env{'request.course.id'})) {
1.601 www 10449: #
1.637 www 10450: # Not called from a resource, but inside a course
1.601 www 10451: #
1.622 www 10452: &startpage($request,undef,[],1,1);
10453: &select_problem($request);
1.41 ng 10454: } else {
1.104 albertel 10455: if ($command eq 'submission' && $perm{'vgr'}) {
1.671 raeburn 10456: my ($stuvcurrent,$stuvdisp,$versionform,$js);
10457: if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
10458: ($stuvcurrent,$stuvdisp,$versionform,$js) =
10459: &choose_task_version_form($symb,$env{'form.student'},
10460: $env{'form.userdom'});
10461: }
10462: &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
10463: if ($versionform) {
10464: $request->print($versionform);
10465: }
10466: $request->print('<br clear="all" />');
1.611 www 10467: ($env{'form.student'} eq '' ? &listStudents($request,$symb) : &submission($request,0,0,$symb));
1.671 raeburn 10468: } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
10469: my ($stuvcurrent,$stuvdisp,$versionform,$js) =
10470: &choose_task_version_form($symb,$env{'form.student'},
10471: $env{'form.userdom'},
10472: $env{'form.inhibitmenu'});
10473: &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
10474: if ($versionform) {
10475: $request->print($versionform);
10476: }
10477: $request->print('<br clear="all" />');
10478: $request->print(&show_previous_task_version($request,$symb));
1.103 albertel 10479: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.615 www 10480: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10481: {href=>'',text=>'Select student'}],1,1);
1.608 www 10482: &pickStudentPage($request,$symb);
1.103 albertel 10483: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.615 www 10484: &startpage($request,$symb,
10485: [{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10486: {href=>'',text=>'Select student'},
10487: {href=>'',text=>'Grade student'}],1,1);
1.608 www 10488: &displayPage($request,$symb);
1.104 albertel 10489: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.616 www 10490: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
10491: {href=>'',text=>'Select student'},
10492: {href=>'',text=>'Grade student'},
10493: {href=>'',text=>'Store grades'}],1,1);
1.608 www 10494: &updateGradeByPage($request,$symb);
1.104 albertel 10495: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.619 www 10496: &startpage($request,$symb,[{href=>'',text=>'...'},
10497: {href=>'',text=>'Modify grades'}]);
1.608 www 10498: &processGroup($request,$symb);
1.104 albertel 10499: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.608 www 10500: &startpage($request,$symb);
10501: $request->print(&grading_menu($request,$symb));
1.598 www 10502: } elsif ($command eq 'individual' && $perm{'vgr'}) {
1.617 www 10503: &startpage($request,$symb,[{href=>'',text=>'Select individual students to grade'}]);
1.608 www 10504: $request->print(&submit_options($request,$symb));
1.598 www 10505: } elsif ($command eq 'ungraded' && $perm{'vgr'}) {
1.617 www 10506: &startpage($request,$symb,[{href=>'',text=>'Grade ungraded submissions'}]);
10507: $request->print(&listStudents($request,$symb,'graded'));
1.598 www 10508: } elsif ($command eq 'table' && $perm{'vgr'}) {
1.614 www 10509: &startpage($request,$symb,[{href=>"", text=>"Grading table"}]);
1.611 www 10510: $request->print(&submit_options_table($request,$symb));
1.598 www 10511: } elsif ($command eq 'all_for_one' && $perm{'vgr'}) {
1.615 www 10512: &startpage($request,$symb,[{href=>'',text=>'Grade page/folder for one student'}],1,1);
1.608 www 10513: $request->print(&submit_options_sequence($request,$symb));
1.104 albertel 10514: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.614 www 10515: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},{href=>'', text=>"Modify grades"}]);
1.608 www 10516: $request->print(&viewgrades($request,$symb));
1.104 albertel 10517: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.620 www 10518: &startpage($request,$symb,[{href=>'',text=>'...'},
10519: {href=>'',text=>'Store grades'}]);
1.608 www 10520: $request->print(&processHandGrade($request,$symb));
1.106 albertel 10521: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.614 www 10522: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},
10523: {href=>&href_symb_cmd($symb,'viewgrades').'&group=all§ion=all&Status=Active',
10524: text=>"Modify grades"},
10525: {href=>'', text=>"Store grades"}]);
1.608 www 10526: $request->print(&editgrades($request,$symb));
1.602 www 10527: } elsif ($command eq 'initialverifyreceipt' && $perm{'vgr'}) {
1.616 www 10528: &startpage($request,$symb,[{href=>'',text=>'Verify Receipt Number'}]);
1.611 www 10529: $request->print(&initialverifyreceipt($request,$symb));
1.106 albertel 10530: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.616 www 10531: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"initialverifyreceipt"),text=>'Verify Receipt Number'},
10532: {href=>'',text=>'Verification Result'}]);
1.608 www 10533: $request->print(&verifyreceipt($request,$symb));
1.400 www 10534: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
1.615 www 10535: &startpage($request,$symb,[{href=>'', text=>'Process clicker'}]);
1.608 www 10536: $request->print(&process_clicker($request,$symb));
1.400 www 10537: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
1.615 www 10538: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10539: {href=>'', text=>'Process clicker file'}]);
1.608 www 10540: $request->print(&process_clicker_file($request,$symb));
1.414 www 10541: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
1.615 www 10542: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
10543: {href=>'', text=>'Process clicker file'},
10544: {href=>'', text=>'Store grades'}]);
1.608 www 10545: $request->print(&assign_clicker_grades($request,$symb));
1.106 albertel 10546: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.627 www 10547: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10548: $request->print(&upcsvScores_form($request,$symb));
1.106 albertel 10549: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.627 www 10550: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10551: $request->print(&csvupload($request,$symb));
1.106 albertel 10552: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.627 www 10553: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10554: $request->print(&csvuploadmap($request,$symb));
1.246 albertel 10555: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 10556: if ($env{'form.associate'} ne 'Reverse Association') {
1.627 www 10557: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10558: $request->print(&csvuploadoptions($request,$symb));
1.41 ng 10559: } else {
1.257 albertel 10560: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
10561: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 10562: } else {
1.257 albertel 10563: $env{'form.upfile_associate'} = 'forward';
1.41 ng 10564: }
1.627 www 10565: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10566: $request->print(&csvuploadmap($request,$symb));
1.41 ng 10567: }
1.246 albertel 10568: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
1.627 www 10569: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 10570: $request->print(&csvuploadassign($request,$symb));
1.106 albertel 10571: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.616 www 10572: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.612 www 10573: $request->print(&scantron_selectphase($request,undef,$symb));
1.203 albertel 10574: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
1.616 www 10575: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10576: $request->print(&scantron_do_warning($request,$symb));
1.142 albertel 10577: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
1.616 www 10578: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10579: $request->print(&scantron_validate_file($request,$symb));
1.106 albertel 10580: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.616 www 10581: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10582: $request->print(&scantron_process_students($request,$symb));
1.157 albertel 10583: } elsif ($command eq 'scantronupload' &&
1.257 albertel 10584: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10585: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616 www 10586: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10587: $request->print(&scantron_upload_scantron_data($request,$symb));
1.157 albertel 10588: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 10589: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
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_upload_scantron_data_save($request,$symb));
1.202 albertel 10593: } elsif ($command eq 'scantron_download' &&
1.257 albertel 10594: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.616 www 10595: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 10596: $request->print(&scantron_download_scantron_data($request,$symb));
1.523 raeburn 10597: } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
1.616 www 10598: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.621 www 10599: $request->print(&checkscantron_results($request,$symb));
10600: } elsif ($command eq 'downloadfilesselect' && $perm{'vgr'}) {
10601: &startpage($request,$symb,[{href=>'', text=>'Select which submissions to download'}]);
10602: $request->print(&submit_options_download($request,$symb));
10603: } elsif ($command eq 'downloadfileslink' && $perm{'vgr'}) {
10604: &startpage($request,$symb,
10605: [{href=>&href_symb_cmd($symb,'downloadfilesselect'), text=>'Select which submissions to download'},
10606: {href=>'', text=>'Download submissions'}]);
10607: &submit_download_link($request,$symb);
1.106 albertel 10608: } elsif ($command) {
1.620 www 10609: &startpage($request,$symb,[{href=>'', text=>'Access denied'}]);
1.562 bisitz 10610: $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
1.26 albertel 10611: }
1.2 albertel 10612: }
1.513 foxr 10613: if ($ssi_error) {
10614: &ssi_print_error($request);
10615: }
1.671 raeburn 10616: if ($env{'form.inhibitmenu'}) {
10617: $request->print(&Apache::loncommon::end_page());
10618: } else {
10619: &Apache::lonquickgrades::endGradeScreen($request);
10620: }
1.434 albertel 10621: &reset_caches();
1.646 raeburn 10622: return OK;
1.44 ng 10623: }
10624:
1.1 albertel 10625: 1;
10626:
1.13 albertel 10627: __END__;
1.531 jms 10628:
10629:
10630: =head1 NAME
10631:
10632: Apache::grades
10633:
10634: =head1 SYNOPSIS
10635:
10636: Handles the viewing of grades.
10637:
10638: This is part of the LearningOnline Network with CAPA project
10639: described at http://www.lon-capa.org.
10640:
10641: =head1 OVERVIEW
10642:
10643: Do an ssi with retries:
1.715 bisitz 10644: While I'd love to factor out this with the version in lonprintout,
1.531 jms 10645: 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
10646: I'm not quite ready to invent (e.g. an ssi_with_retry object).
10647:
10648: At least the logic that drives this has been pulled out into loncommon.
10649:
10650:
10651:
10652: ssi_with_retries - Does the server side include of a resource.
10653: if the ssi call returns an error we'll retry it up to
10654: the number of times requested by the caller.
1.715 bisitz 10655: If we still have a problem, no text is appended to the
1.531 jms 10656: output and we set some global variables.
10657: to indicate to the caller an SSI error occurred.
10658: All of this is supposed to deal with the issues described
1.715 bisitz 10659: in LON-CAPA BZ 5631 see:
1.531 jms 10660: http://bugs.lon-capa.org/show_bug.cgi?id=5631
10661: by informing the user that this happened.
10662:
10663: Parameters:
10664: resource - The resource to include. This is passed directly, without
10665: interpretation to lonnet::ssi.
10666: form - The form hash parameters that guide the interpretation of the resource
10667:
10668: retries - Number of retries allowed before giving up completely.
10669: Returns:
10670: On success, returns the rendered resource identified by the resource parameter.
10671: Side Effects:
10672: The following global variables can be set:
10673: ssi_error - If an unrecoverable error occurred this becomes true.
10674: It is up to the caller to initialize this to false
10675: if desired.
10676: ssi_error_resource - If an unrecoverable error occurred, this is the value
10677: of the resource that could not be rendered by the ssi
10678: call.
10679: ssi_error_message - The error string fetched from the ssi response
10680: in the event of an error.
10681:
10682:
10683: =head1 HANDLER SUBROUTINE
10684:
10685: ssi_with_retries()
10686:
10687: =head1 SUBROUTINES
10688:
10689: =over
10690:
1.671 raeburn 10691: =head1 Routines to display previous version of a Task for a specific student
10692:
10693: Tasks are graded pass/fail. Students who have yet to pass a particular Task
10694: can receive another opportunity. Access to tasks is slot-based. If a slot
10695: requires a proctor to check-in the student, a new version of the Task will
10696: be created when the student is checked in to the new opportunity.
10697:
10698: If a particular student has tried two or more versions of a particular task,
10699: the submission screen provides a user with vgr privileges (e.g., a Course
10700: Coordinator) the ability to display a previous version worked on by the
10701: student. By default, the current version is displayed. If a previous version
10702: has been selected for display, submission data are only shown that pertain
10703: to that particular version, and the interface to submit grades is not shown.
10704:
10705: =over 4
10706:
10707: =item show_previous_task_version()
10708:
10709: Displays a specified version of a student's Task, as the student sees it.
10710:
10711: Inputs: 2
10712: request - request object
10713: symb - unique symb for current instance of resource
10714:
10715: Output: None.
10716:
10717: Side Effects: calls &show_problem() to print version of Task, with
10718: version contained in form item: $env{'form.previousversion'}
10719:
10720: =item choose_task_version_form()
10721:
10722: Displays a web form used to select which version of a student's view of a
10723: Task should be displayed. Either launches a pop-up window, or replaces
10724: content in existing pop-up, or replaces page in main window.
10725:
10726: Inputs: 4
10727: symb - unique symb for current instance of resource
10728: uname - username of student
10729: udom - domain of student
10730: nomenu - 1 if display is in a pop-up window, and hence no menu
10731: breadcrumbs etc., are displayed
10732:
10733: Output: 4
10734: current - student's current version
10735: displayed - student's version being displayed
10736: result - scalar containing HTML for web form used to switch to
10737: a different version (or a link to close window, if pop-up).
10738: js - javascript for processing selection in versions web form
10739:
10740: Side Effects: None.
10741:
10742: =item previous_display_javascript()
10743:
10744: Inputs: 2
10745: nomenu - 1 if display is in a pop-up window, and hence no menu
10746: breadcrumbs etc., are displayed.
10747: current - student's current version number.
10748:
10749: Output: 1
10750: js - javascript for processing selection in versions web form.
10751:
10752: Side Effects: None.
10753:
10754: =back
10755:
10756: =head1 Routines to process bubblesheet data.
10757:
10758: =over 4
10759:
1.531 jms 10760: =item scantron_get_correction() :
10761:
10762: Builds the interface screen to interact with the operator to fix a
10763: specific error condition in a specific scanline
10764:
10765: Arguments:
10766: $r - Apache request object
10767: $i - number of the current scanline
10768: $scan_record - hash ref as returned from &scantron_parse_scanline()
10769: $scan_config - hash ref as returned from &get_scantron_config()
10770: $line - full contents of the current scanline
10771: $error - error condition, valid values are
10772: 'incorrectCODE', 'duplicateCODE',
10773: 'doublebubble', 'missingbubble',
10774: 'duplicateID', 'incorrectID'
10775: $arg - extra information needed
10776: For errors:
10777: - duplicateID - paper number that this studentID was seen before on
10778: - duplicateCODE - array ref of the paper numbers this CODE was
10779: seen on before
10780: - incorrectCODE - current incorrect CODE
10781: - doublebubble - array ref of the bubble lines that have double
10782: bubble errors
10783: - missingbubble - array ref of the bubble lines that have missing
10784: bubble errors
10785:
1.691 raeburn 10786: $randomorder - True if exam folder has randomorder set
10787: $randompick - True if exam folder has randompick set
10788: $respnumlookup - Reference to HASH mapping question numbers in bubble lines
10789: for current line to question number used for same question
10790: in "Master Seqence" (as seen by Course Coordinator).
10791: $startline - Reference to hash where key is question number (0 is first)
10792: and value is number of first bubble line for current student
10793: or code-based randompick and/or randomorder.
10794:
10795:
10796:
1.531 jms 10797: =item scantron_get_maxbubble() :
10798:
1.582 raeburn 10799: Arguments:
10800: $nav_error - Reference to scalar which is a flag to indicate a
10801: failure to retrieve a navmap object.
10802: if $nav_error is set to 1 by scantron_get_maxbubble(), the
10803: calling routine should trap the error condition and display the warning
10804: found in &navmap_errormsg().
10805:
1.649 raeburn 10806: $scantron_config - Reference to bubblesheet format configuration hash.
10807:
1.531 jms 10808: Returns the maximum number of bubble lines that are expected to
10809: occur. Does this by walking the selected sequence rendering the
10810: resource and then checking &Apache::lonxml::get_problem_counter()
10811: for what the current value of the problem counter is.
10812:
10813: Caches the results to $env{'form.scantron_maxbubble'},
10814: $env{'form.scantron.bubble_lines.n'},
10815: $env{'form.scantron.first_bubble_line.n'} and
10816: $env{"form.scantron.sub_bubblelines.n"}
1.691 raeburn 10817: which are the total number of bubble lines, the number of bubble
1.531 jms 10818: lines for response n and number of the first bubble line for response n,
10819: and a comma separated list of numbers of bubble lines for sub-questions
10820: (for optionresponse, matchresponse, and rankresponse items), for response n.
10821:
10822:
10823: =item scantron_validate_missingbubbles() :
10824:
10825: Validates all scanlines in the selected file to not have any
10826: answers that don't have bubbles that have not been verified
10827: to be bubble free.
10828:
10829: =item scantron_process_students() :
10830:
1.659 raeburn 10831: Routine that does the actual grading of the bubblesheet information.
1.531 jms 10832:
10833: The parsed scanline hash is added to %env
10834:
10835: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
10836: foreach resource , with the form data of
10837:
10838: 'submitted' =>'scantron'
10839: 'grade_target' =>'grade',
10840: 'grade_username'=> username of student
10841: 'grade_domain' => domain of student
10842: 'grade_courseid'=> of course
10843: 'grade_symb' => symb of resource to grade
10844:
10845: This triggers a grading pass. The problem grading code takes care
10846: of converting the bubbled letter information (now in %env) into a
10847: valid submission.
10848:
10849: =item scantron_upload_scantron_data() :
10850:
1.659 raeburn 10851: Creates the screen for adding a new bubblesheet data file to a course.
1.531 jms 10852:
10853: =item scantron_upload_scantron_data_save() :
10854:
10855: Adds a provided bubble information data file to the course if user
10856: has the correct privileges to do so.
10857:
10858: =item valid_file() :
10859:
10860: Validates that the requested bubble data file exists in the course.
10861:
10862: =item scantron_download_scantron_data() :
10863:
10864: Shows a list of the three internal files (original, corrected,
1.659 raeburn 10865: skipped) for a specific bubblesheet data file that exists in the
1.531 jms 10866: course.
10867:
10868: =item scantron_validate_ID() :
10869:
10870: Validates all scanlines in the selected file to not have any
1.556 weissno 10871: invalid or underspecified student/employee IDs
1.531 jms 10872:
1.582 raeburn 10873: =item navmap_errormsg() :
10874:
10875: Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
1.671 raeburn 10876: Should be called whenever the request to instantiate a navmap object fails.
10877:
10878: =back
1.582 raeburn 10879:
1.531 jms 10880: =back
10881:
10882: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>