Annotation of loncom/homework/grades.pm, revision 1.676
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.676 ! golterma 4: # $Id: grades.pm,v 1.675 2012/10/02 18:03:07 bisitz Exp $
1.17 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.1 albertel 28:
1.529 jms 29:
30:
1.1 albertel 31: package Apache::grades;
32: use strict;
33: use Apache::style;
34: use Apache::lonxml;
35: use Apache::lonnet;
1.3 albertel 36: use Apache::loncommon;
1.112 ng 37: use Apache::lonhtmlcommon;
1.68 ng 38: use Apache::lonnavmaps;
1.1 albertel 39: use Apache::lonhomework;
1.456 banghart 40: use Apache::lonpickcode;
1.55 matthew 41: use Apache::loncoursedata;
1.362 albertel 42: use Apache::lonmsg();
1.646 raeburn 43: use Apache::Constants qw(:common :http);
1.167 sakharuk 44: use Apache::lonlocal;
1.386 raeburn 45: use Apache::lonenc;
1.622 www 46: use Apache::lonstathelpers;
1.639 www 47: use Apache::lonquickgrades;
1.657 raeburn 48: use Apache::bridgetask();
1.170 albertel 49: use String::Similarity;
1.359 www 50: use LONCAPA;
51:
1.315 bowersj2 52: use POSIX qw(floor);
1.87 www 53:
1.435 foxr 54:
1.513 foxr 55:
1.435 foxr 56: my %perm=();
1.674 raeburn 57: my %old_essays=();
1.447 foxr 58:
1.513 foxr 59: # These variables are used to recover from ssi errors
60:
61: my $ssi_retries = 5;
62: my $ssi_error;
63: my $ssi_error_resource;
64: my $ssi_error_message;
65:
66:
67: sub ssi_with_retries {
68: my ($resource, $retries, %form) = @_;
69: my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
70: if ($response->is_error) {
71: $ssi_error = 1;
72: $ssi_error_resource = $resource;
73: $ssi_error_message = $response->code . " " . $response->message;
74: }
75:
76: return $content;
77:
78: }
79: #
80: # Prodcuces an ssi retry failure error message to the user:
81: #
82:
83: sub ssi_print_error {
84: my ($r) = @_;
1.516 raeburn 85: my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
86: $r->print('
87: <br />
88: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
89: <p>
90: '.&mt('Unable to retrieve a resource from a server:').'<br />
91: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
92: '.&mt('Error:').' '.$ssi_error_message.'
93: </p>
94: <p>'.
95: &mt('It is recommended that you try again later, as this error may mean the server was just temporarily unavailable, or is down for maintenance.').'<br />'.
96: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
97: '</p>');
98: return;
1.513 foxr 99: }
100:
1.44 ng 101: #
1.146 albertel 102: # --- Retrieve the parts from the metadata file.---
1.598 www 103: # Returns an array of everything that the resources stores away
104: #
105:
1.44 ng 106: sub getpartlist {
1.582 raeburn 107: my ($symb,$errorref) = @_;
1.439 albertel 108:
109: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 110: unless (ref($navmap)) {
111: if (ref($errorref)) {
112: $$errorref = 'navmap';
113: return;
114: }
115: }
1.439 albertel 116: my $res = $navmap->getBySymb($symb);
117: my $partlist = $res->parts();
118: my $url = $res->src();
119: my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
120:
1.146 albertel 121: my @stores;
1.439 albertel 122: foreach my $part (@{ $partlist }) {
1.146 albertel 123: foreach my $key (@metakeys) {
124: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
125: }
126: }
127: return @stores;
1.2 albertel 128: }
129:
1.129 ng 130: #--- Format fullname, username:domain if different for display
131: #--- Use anywhere where the student names are listed
132: sub nameUserString {
133: my ($type,$fullname,$uname,$udom) = @_;
134: if ($type eq 'header') {
1.485 albertel 135: return '<b> '.&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.649 raeburn 296: my ($resource,$cid,$uname,$udom,$check_for_randomlist,$bubbles_per_row) = @_;
1.554 raeburn 297: my (%analysis,@parts);
298: if (ref($resource)) {
299: my $symb = $resource->symb();
1.557 raeburn 300: my $add_to_form;
301: if ($check_for_randomlist) {
302: $add_to_form = { 'check_parts_withrandomlist' => 1,};
303: }
1.649 raeburn 304: my $analyze =
305: &get_analyze($symb,$uname,$udom,undef,$add_to_form,
306: undef,undef,undef,$bubbles_per_row);
1.554 raeburn 307: if (ref($analyze) eq 'HASH') {
308: %analysis = %{$analyze};
309: }
310: if (ref($analysis{'parts'}) eq 'ARRAY') {
311: foreach my $part (@{$analysis{'parts'}}) {
312: my ($id,$respid) = split(/\./,$part);
313: if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
314: push(@parts,$part);
315: }
316: }
317: }
318: }
319: return (\%analysis,\@parts);
320: }
321:
1.148 albertel 322: }
1.434 albertel 323:
1.118 ng 324: #--- Clean response type for display
1.335 albertel 325: #--- Currently filters option/rank/radiobutton/match/essay/Task
326: # response types only.
1.118 ng 327: sub cleanRecord {
1.336 albertel 328: my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
1.640 raeburn 329: $uname,$udom,$type,$trial,$rndseed) = @_;
1.398 albertel 330: my $grayFont = '<span class="LC_internal_info">';
1.148 albertel 331: if ($response =~ /^(option|rank)$/) {
332: my %answer=&Apache::lonnet::str2hash($answer);
333: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
334: my ($toprow,$bottomrow);
335: foreach my $foil (@$order) {
336: if ($grading{$foil} == 1) {
337: $toprow.='<td><b>'.$answer{$foil}.' </b></td>';
338: } else {
339: $toprow.='<td><i>'.$answer{$foil}.' </i></td>';
340: }
1.398 albertel 341: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 342: }
343: return '<blockquote><table border="1">'.
1.466 albertel 344: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
345: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660 raeburn 346: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 347: } elsif ($response eq 'match') {
348: my %answer=&Apache::lonnet::str2hash($answer);
349: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
350: my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
351: my ($toprow,$middlerow,$bottomrow);
352: foreach my $foil (@$order) {
353: my $item=shift(@items);
354: if ($grading{$foil} == 1) {
355: $toprow.='<td><b>'.$item.' </b></td>';
1.398 albertel 356: $middlerow.='<td><b>'.$grayFont.$answer{$foil}.' </span></b></td>';
1.148 albertel 357: } else {
358: $toprow.='<td><i>'.$item.' </i></td>';
1.398 albertel 359: $middlerow.='<td><i>'.$grayFont.$answer{$foil}.' </span></i></td>';
1.148 albertel 360: }
1.398 albertel 361: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.118 ng 362: }
1.126 ng 363: return '<blockquote><table border="1">'.
1.466 albertel 364: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
365: '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148 albertel 366: $middlerow.'</tr>'.
1.466 albertel 367: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660 raeburn 368: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 369: } elsif ($response eq 'radiobutton') {
370: my %answer=&Apache::lonnet::str2hash($answer);
371: my ($toprow,$bottomrow);
1.434 albertel 372: my $correct =
1.640 raeburn 373: &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed);
1.434 albertel 374: foreach my $foil (@$order) {
1.148 albertel 375: if (exists($answer{$foil})) {
1.434 albertel 376: if ($foil eq $correct) {
1.466 albertel 377: $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148 albertel 378: } else {
1.466 albertel 379: $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148 albertel 380: }
381: } else {
1.466 albertel 382: $toprow.='<td>'.&mt('false').'</td>';
1.148 albertel 383: }
1.398 albertel 384: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 385: }
386: return '<blockquote><table border="1">'.
1.466 albertel 387: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
388: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.660 raeburn 389: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 390: } elsif ($response eq 'essay') {
1.257 albertel 391: if (! exists ($env{'form.'.$symb})) {
1.122 ng 392: my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 393: $env{'course.'.$env{'request.course.id'}.'.domain'},
394: $env{'course.'.$env{'request.course.id'}.'.num'});
1.122 ng 395:
1.257 albertel 396: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
397: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
398: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
399: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
400: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
401: $env{'form.'.$symb} = 1; # so that we don't have to read it from disk for multiple sub of the same prob.
1.122 ng 402: }
1.166 albertel 403: $answer =~ s-\n-<br />-g;
404: return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268 albertel 405: } elsif ( $response eq 'organic') {
406: my $result='Smile representation: "<tt>'.$answer.'</tt>"';
407: my $jme=$record->{$version."resource.$partid.$respid.molecule"};
408: $result.=&Apache::chemresponse::jme_img($jme,$answer,400);
409: return $result;
1.335 albertel 410: } elsif ( $response eq 'Task') {
411: if ( $answer eq 'SUBMITTED') {
412: my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336 albertel 413: my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335 albertel 414: return $result;
415: } elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
416: my @matches = grep(/^\Q$version\E.*?\.instance$/,
417: keys(%{$record}));
418: return join('<br />',($version,@matches));
419:
420:
421: } else {
422: my $result =
423: '<p>'
424: .&mt('Overall result: [_1]',
425: $record->{$version."resource.$respid.$partid.status"})
426: .'</p>';
427:
428: $result .= '<ul>';
429: my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
430: keys(%{$record}));
431: foreach my $grade (sort(@grade)) {
432: my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
433: $result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
434: $dim, $record->{$grade}).
435: '</li>';
436: }
437: $result.='</ul>';
438: return $result;
439: }
1.440 albertel 440: } elsif ( $response =~ m/(?:numerical|formula)/) {
441: $answer =
442: &Apache::loncommon::format_previous_attempt_value('submission',
443: $answer);
1.122 ng 444: }
1.118 ng 445: return $answer;
446: }
447:
448: #-- A couple of common js functions
449: sub commonJSfunctions {
450: my $request = shift;
1.597 wenzelju 451: $request->print(&Apache::lonhtmlcommon::scripttag(<<COMMONJSFUNCTIONS));
1.118 ng 452: function radioSelection(radioButton) {
453: var selection=null;
454: if (radioButton.length > 1) {
455: for (var i=0; i<radioButton.length; i++) {
456: if (radioButton[i].checked) {
457: return radioButton[i].value;
458: }
459: }
460: } else {
461: if (radioButton.checked) return radioButton.value;
462: }
463: return selection;
464: }
465:
466: function pullDownSelection(selectOne) {
467: var selection="";
468: if (selectOne.length > 1) {
469: for (var i=0; i<selectOne.length; i++) {
470: if (selectOne[i].selected) {
471: return selectOne[i].value;
472: }
473: }
474: } else {
1.138 albertel 475: // only one value it must be the selected one
476: return selectOne.value;
1.118 ng 477: }
478: }
479: COMMONJSFUNCTIONS
480: }
481:
1.44 ng 482: #--- Dumps the class list with usernames,list of sections,
483: #--- section, ids and fullnames for each user.
484: sub getclasslist {
1.449 banghart 485: my ($getsec,$filterlist,$getgroup) = @_;
1.291 albertel 486: my @getsec;
1.450 banghart 487: my @getgroup;
1.442 banghart 488: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291 albertel 489: if (!ref($getsec)) {
490: if ($getsec ne '' && $getsec ne 'all') {
491: @getsec=($getsec);
492: }
493: } else {
494: @getsec=@{$getsec};
495: }
496: if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450 banghart 497: if (!ref($getgroup)) {
498: if ($getgroup ne '' && $getgroup ne 'all') {
499: @getgroup=($getgroup);
500: }
501: } else {
502: @getgroup=@{$getgroup};
503: }
504: if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291 albertel 505:
1.449 banghart 506: my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49 albertel 507: # Bail out if we were unable to get the classlist
1.56 matthew 508: return if (! defined($classlist));
1.449 banghart 509: &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56 matthew 510: #
511: my %sections;
512: my %fullnames;
1.205 matthew 513: foreach my $student (keys(%$classlist)) {
514: my $end =
515: $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
516: my $start =
517: $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
518: my $id =
519: $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
520: my $section =
521: $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
522: my $fullname =
523: $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
524: my $status =
525: $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449 banghart 526: my $group =
527: $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76 ng 528: # filter students according to status selected
1.442 banghart 529: if ($filterlist && (!($stu_status =~ /Any/))) {
530: if (!($stu_status =~ $status)) {
1.450 banghart 531: delete($classlist->{$student});
1.76 ng 532: next;
533: }
534: }
1.450 banghart 535: # filter students according to groups selected
1.453 banghart 536: my @stu_groups = split(/,/,$group);
1.450 banghart 537: if (@getgroup) {
538: my $exclude = 1;
1.454 banghart 539: foreach my $grp (@getgroup) {
540: foreach my $stu_group (@stu_groups) {
1.453 banghart 541: if ($stu_group eq $grp) {
542: $exclude = 0;
543: }
1.450 banghart 544: }
1.453 banghart 545: if (($grp eq 'none') && !$group) {
546: $exclude = 0;
547: }
1.450 banghart 548: }
549: if ($exclude) {
550: delete($classlist->{$student});
551: }
552: }
1.205 matthew 553: $section = ($section ne '' ? $section : 'none');
1.106 albertel 554: if (&canview($section)) {
1.291 albertel 555: if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103 albertel 556: $sections{$section}++;
1.450 banghart 557: if ($classlist->{$student}) {
558: $fullnames{$student}=$fullname;
559: }
1.103 albertel 560: } else {
1.205 matthew 561: delete($classlist->{$student});
1.103 albertel 562: }
563: } else {
1.205 matthew 564: delete($classlist->{$student});
1.103 albertel 565: }
1.44 ng 566: }
567: my %seen = ();
1.56 matthew 568: my @sections = sort(keys(%sections));
569: return ($classlist,\@sections,\%fullnames);
1.44 ng 570: }
571:
1.103 albertel 572: sub canmodify {
573: my ($sec)=@_;
574: if ($perm{'mgr'}) {
575: if (!defined($perm{'mgr_section'})) {
576: # can modify whole class
577: return 1;
578: } else {
579: if ($sec eq $perm{'mgr_section'}) {
580: #can modify the requested section
581: return 1;
582: } else {
583: # can't modify the request section
584: return 0;
585: }
586: }
587: }
588: #can't modify
589: return 0;
590: }
591:
592: sub canview {
593: my ($sec)=@_;
594: if ($perm{'vgr'}) {
595: if (!defined($perm{'vgr_section'})) {
596: # can modify whole class
597: return 1;
598: } else {
599: if ($sec eq $perm{'vgr_section'}) {
600: #can modify the requested section
601: return 1;
602: } else {
603: # can't modify the request section
604: return 0;
605: }
606: }
607: }
608: #can't modify
609: return 0;
610: }
611:
1.44 ng 612: #--- Retrieve the grade status of a student for all the parts
613: sub student_gradeStatus {
1.324 albertel 614: my ($symb,$udom,$uname,$partlist) = @_;
1.257 albertel 615: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44 ng 616: my %partstatus = ();
617: foreach (@$partlist) {
1.128 ng 618: my ($status,undef) = split(/_/,$record{"resource.$_.solved"},2);
1.44 ng 619: $status = 'nothing' if ($status eq '');
620: $partstatus{$_} = $status;
621: my $subkey = "resource.$_.submitted_by";
622: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
623: }
624: return %partstatus;
625: }
626:
1.45 ng 627: # hidden form and javascript that calls the form
628: # Use by verifyscript and viewgrades
629: # Shows a student's view of problem and submission
630: sub jscriptNform {
1.324 albertel 631: my ($symb) = @_;
1.442 banghart 632: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.597 wenzelju 633: my $jscript= &Apache::lonhtmlcommon::scripttag(
1.45 ng 634: ' function viewOneStudent(user,domain) {'."\n".
635: ' document.onestudent.student.value = user;'."\n".
636: ' document.onestudent.userdom.value = domain;'."\n".
637: ' document.onestudent.submit();'."\n".
638: ' }'."\n".
1.597 wenzelju 639: "\n");
1.45 ng 640: $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418 albertel 641: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.442 banghart 642: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.45 ng 643: '<input type="hidden" name="command" value="submission" />'."\n".
644: '<input type="hidden" name="student" value="" />'."\n".
645: '<input type="hidden" name="userdom" value="" />'."\n".
646: '</form>'."\n";
647: return $jscript;
648: }
1.39 ng 649:
1.447 foxr 650:
651:
1.315 bowersj2 652: # Given the score (as a number [0-1] and the weight) what is the final
653: # point value? This function will round to the nearest tenth, third,
654: # or quarter if one of those is within the tolerance of .00001.
1.316 albertel 655: sub compute_points {
1.315 bowersj2 656: my ($score, $weight) = @_;
657:
658: my $tolerance = .00001;
659: my $points = $score * $weight;
660:
661: # Check for nearness to 1/x.
662: my $check_for_nearness = sub {
663: my ($factor) = @_;
664: my $num = ($points * $factor) + $tolerance;
665: my $floored_num = floor($num);
1.316 albertel 666: if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315 bowersj2 667: return $floored_num / $factor;
668: }
669: return $points;
670: };
671:
672: $points = $check_for_nearness->(10);
673: $points = $check_for_nearness->(3);
674: $points = $check_for_nearness->(4);
675:
676: return $points;
677: }
678:
1.44 ng 679: #------------------ End of general use routines --------------------
1.87 www 680:
681: #
682: # Find most similar essay
683: #
684:
685: sub most_similar {
1.674 raeburn 686: my ($uname,$udom,$symb,$uessay)=@_;
687:
688: unless ($symb) { return ''; }
689:
690: unless (ref($old_essays{$symb}) eq 'HASH') { return ''; }
1.87 www 691:
692: # ignore spaces and punctuation
693:
694: $uessay=~s/\W+/ /gs;
695:
1.282 www 696: # ignore empty submissions (occuring when only files are sent)
697:
1.598 www 698: unless ($uessay=~/\w+/s) { return ''; }
1.282 www 699:
1.87 www 700: # these will be returned. Do not care if not at least 50 percent similar
1.88 www 701: my $limit=0.6;
1.87 www 702: my $sname='';
703: my $sdom='';
704: my $scrsid='';
705: my $sessay='';
706: # go through all essays ...
1.674 raeburn 707: foreach my $tkey (keys(%{$old_essays{$symb}})) {
1.426 albertel 708: my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87 www 709: # ... except the same student
1.426 albertel 710: next if (($tname eq $uname) && ($tdom eq $udom));
1.674 raeburn 711: my $tessay=$old_essays{$symb}{$tkey};
1.426 albertel 712: $tessay=~s/\W+/ /gs;
1.87 www 713: # String similarity gives up if not even limit
1.426 albertel 714: my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87 www 715: # Found one
1.426 albertel 716: if ($tsimilar>$limit) {
717: $limit=$tsimilar;
718: $sname=$tname;
719: $sdom=$tdom;
720: $scrsid=$tcrsid;
1.674 raeburn 721: $sessay=$old_essays{$symb}{$tkey};
1.426 albertel 722: }
1.87 www 723: }
1.88 www 724: if ($limit>0.6) {
1.87 www 725: return ($sname,$sdom,$scrsid,$sessay,$limit);
726: } else {
727: return ('','','','',0);
728: }
729: }
730:
1.44 ng 731: #-------------------------------------------------------------------
732:
733: #------------------------------------ Receipt Verification Routines
1.45 ng 734: #
1.602 www 735:
736: sub initialverifyreceipt {
1.608 www 737: my ($request,$symb) = @_;
1.602 www 738: &commonJSfunctions($request);
1.605 www 739: return '<form name="gradingMenu"><input type="submit" value="'.&mt('Verify Receipt Number.').'" />'.
1.602 www 740: &Apache::lonnet::recprefix($env{'request.course.id'}).
741: '-<input type="text" name="receipt" size="4" />'.
1.603 www 742: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
743: '<input type="hidden" name="command" value="verify" />'.
744: "</form>\n";
1.602 www 745: }
746:
1.44 ng 747: #--- Check whether a receipt number is valid.---
748: sub verifyreceipt {
1.608 www 749: my ($request,$symb) = @_;
1.44 ng 750:
1.257 albertel 751: my $courseid = $env{'request.course.id'};
1.184 www 752: my $receipt = &Apache::lonnet::recprefix($courseid).'-'.
1.257 albertel 753: $env{'form.receipt'};
1.44 ng 754: $receipt =~ s/[^\-\d]//g;
755:
1.487 albertel 756: my $title.=
757: '<h3><span class="LC_info">'.
1.605 www 758: &mt('Verifying Receipt Number [_1]',$receipt).
759: '</span></h3>'."\n";
1.44 ng 760:
761: my ($string,$contents,$matches) = ('','',0);
1.56 matthew 762: my (undef,undef,$fullname) = &getclasslist('all','0');
1.177 albertel 763:
764: my $receiptparts=0;
1.390 albertel 765: if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
766: $env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177 albertel 767: my $parts=['0'];
1.582 raeburn 768: if ($receiptparts) {
769: my $res_error;
770: ($parts)=&response_type($symb,\$res_error);
771: if ($res_error) {
772: return &navmap_errormsg();
773: }
774: }
1.486 albertel 775:
776: my $header =
777: &Apache::loncommon::start_data_table().
778: &Apache::loncommon::start_data_table_header_row().
1.487 albertel 779: '<th> '.&mt('Fullname').' </th>'."\n".
780: '<th> '.&mt('Username').' </th>'."\n".
781: '<th> '.&mt('Domain').' </th>';
1.486 albertel 782: if ($receiptparts) {
1.487 albertel 783: $header.='<th> '.&mt('Problem Part').' </th>';
1.486 albertel 784: }
785: $header.=
786: &Apache::loncommon::end_data_table_header_row();
787:
1.294 albertel 788: foreach (sort
789: {
790: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
791: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
792: }
793: return $a cmp $b;
794: } (keys(%$fullname))) {
1.44 ng 795: my ($uname,$udom)=split(/\:/);
1.177 albertel 796: foreach my $part (@$parts) {
797: if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
1.486 albertel 798: $contents.=
799: &Apache::loncommon::start_data_table_row().
800: '<td> '."\n".
1.177 albertel 801: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 802: '\');" target="_self">'.$$fullname{$_}.'</a> </td>'."\n".
1.177 albertel 803: '<td> '.$uname.' </td>'.
804: '<td> '.$udom.' </td>';
805: if ($receiptparts) {
806: $contents.='<td> '.$part.' </td>';
807: }
1.486 albertel 808: $contents.=
809: &Apache::loncommon::end_data_table_row()."\n";
1.177 albertel 810:
811: $matches++;
812: }
1.44 ng 813: }
814: }
815: if ($matches == 0) {
1.584 bisitz 816: $string = $title
817: .'<p class="LC_warning">'
818: .&mt('No match found for the above receipt number.')
819: .'</p>';
1.44 ng 820: } else {
1.324 albertel 821: $string = &jscriptNform($symb).$title.
1.487 albertel 822: '<p>'.
1.584 bisitz 823: &mt('The above receipt number matches the following [quant,_1,student].',$matches).
1.487 albertel 824: '</p>'.
1.486 albertel 825: $header.
826: $contents.
827: &Apache::loncommon::end_data_table()."\n";
1.44 ng 828: }
1.614 www 829: return $string;
1.44 ng 830: }
831:
832: #--- This is called by a number of programs.
833: #--- Called from the Grading Menu - View/Grade an individual student
834: #--- Also called directly when one clicks on the subm button
835: # on the problem page.
1.30 ng 836: sub listStudents {
1.617 www 837: my ($request,$symb,$submitonly) = @_;
1.49 albertel 838:
1.257 albertel 839: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
840: my $cnum = $env{"course.$env{'request.course.id'}.num"};
841: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449 banghart 842: my $getgroup = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.617 www 843: unless ($submitonly) {
844: $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
845: }
1.49 albertel 846:
1.632 www 847: my $result='';
1.623 www 848: my $res_error;
849: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
1.49 albertel 850:
1.559 raeburn 851: my %lt = &Apache::lonlocal::texthash (
852: 'multiple' => 'Please select a student or group of students before clicking on the Next button.',
853: 'single' => 'Please select the student before clicking on the Next button.',
854: );
1.597 wenzelju 855: $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
1.110 ng 856: function checkSelect(checkBox) {
857: var ctr=0;
858: var sense="";
859: if (checkBox.length > 1) {
860: for (var i=0; i<checkBox.length; i++) {
861: if (checkBox[i].checked) {
862: ctr++;
863: }
864: }
1.485 albertel 865: sense = '$lt{'multiple'}';
1.110 ng 866: } else {
867: if (checkBox.checked) {
868: ctr = 1;
869: }
1.485 albertel 870: sense = '$lt{'single'}';
1.110 ng 871: }
872: if (ctr == 0) {
1.485 albertel 873: alert(sense);
1.110 ng 874: return false;
875: }
876: document.gradesub.submit();
877: }
878:
879: function reLoadList(formname) {
1.112 ng 880: if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110 ng 881: formname.command.value = 'submission';
882: formname.submit();
883: }
1.45 ng 884: LISTJAVASCRIPT
885:
1.118 ng 886: &commonJSfunctions($request);
1.41 ng 887: $request->print($result);
1.39 ng 888:
1.154 albertel 889: my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
1.598 www 890: "\n";
1.485 albertel 891:
1.561 bisitz 892: $gradeTable .= &Apache::lonhtmlcommon::start_pick_box();
893: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
894: .'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n"
895: .'<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n"
896: .'<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label><br />'."\n"
897: .&Apache::lonhtmlcommon::row_closure();
898: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Answer'))
899: .'<label><input type="radio" name="vAns" value="no" /> '.&mt('no').' </label>'."\n"
900: .'<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n"
901: .'<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label><br />'."\n"
902: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 903:
904: my $submission_options;
1.442 banghart 905: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
906: my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257 albertel 907: $env{'form.Status'} = $saveStatus;
1.485 albertel 908: $submission_options.=
1.592 bisitz 909: '<span class="LC_nobreak">'.
1.624 www 910: '<label><input type="radio" name="lastSub" value="lastonly" /> '.
1.592 bisitz 911: &mt('last submission only').' </label></span>'."\n".
912: '<span class="LC_nobreak">'.
913: '<label><input type="radio" name="lastSub" value="last" /> '.
914: &mt('last submission & parts info').' </label></span>'."\n".
915: '<span class="LC_nobreak">'.
1.628 www 916: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.
1.592 bisitz 917: &mt('by dates and submissions').'</label></span>'."\n".
918: '<span class="LC_nobreak">'.
919: '<label><input type="radio" name="lastSub" value="all" /> '.
920: &mt('all details').'</label></span>';
1.561 bisitz 921: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Submissions'))
922: .$submission_options
923: .&Apache::lonhtmlcommon::row_closure();
924:
925: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Grading Increments'))
926: .'<select name="increment">'
927: .'<option value="1">'.&mt('Whole Points').'</option>'
928: .'<option value=".5">'.&mt('Half Points').'</option>'
929: .'<option value=".25">'.&mt('Quarter Points').'</option>'
930: .'<option value=".1">'.&mt('Tenths of a Point').'</option>'
931: .'</select>'
932: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 933:
934: $gradeTable .=
1.432 banghart 935: &build_section_inputs().
1.45 ng 936: '<input type="hidden" name="submitonly" value="'.$submitonly.'" />'."\n".
1.418 albertel 937: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110 ng 938: '<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
939:
1.618 www 940: if (exists($env{'form.Status'})) {
1.561 bisitz 941: $gradeTable .= '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
1.124 ng 942: } else {
1.561 bisitz 943: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Student Status'))
944: .&Apache::lonhtmlcommon::StatusOptions(
945: $saveStatus,undef,1,'javascript:reLoadList(this.form);')
946: .&Apache::lonhtmlcommon::row_closure();
1.124 ng 947: }
1.112 ng 948:
1.561 bisitz 949: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Check For Plagiarism'))
950: .'<input type="checkbox" name="checkPlag" checked="checked" />'
951: .&Apache::lonhtmlcommon::row_closure(1)
952: .&Apache::lonhtmlcommon::end_pick_box();
953:
954: $gradeTable .= '<p>'
1.618 www 955: .&mt("To view/grade/regrade a submission or a group of submissions, click on the check box(es) next to the student's name(s). Then click on the Next button.")."\n"
1.561 bisitz 956: .'<input type="hidden" name="command" value="processGroup" />'
957: .'</p>';
1.249 albertel 958:
959: # checkall buttons
960: $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110 ng 961: $gradeTable.='<input type="button" '."\n".
1.589 bisitz 962: 'onclick="javascript:checkSelect(this.form.stuinfo);" '."\n".
963: 'value="'.&mt('Next').' →" /> <br />'."\n";
1.249 albertel 964: $gradeTable.=&check_buttons();
1.450 banghart 965: my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.474 albertel 966: $gradeTable.= &Apache::loncommon::start_data_table().
967: &Apache::loncommon::start_data_table_header_row();
1.110 ng 968: my $loop = 0;
969: while ($loop < 2) {
1.485 albertel 970: $gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
971: '<th>'.&nameUserString('header').' '.&mt('Section/Group').'</th>';
1.618 www 972: if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.485 albertel 973: foreach my $part (sort(@$partlist)) {
974: my $display_part=
975: &get_display_part((split(/_/,$part))[0],$symb);
976: $gradeTable.=
977: '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
1.110 ng 978: }
1.301 albertel 979: } elsif ($submitonly eq 'queued') {
1.474 albertel 980: $gradeTable.='<th>'.&mt('Queue Status').' </th>';
1.110 ng 981: }
982: $loop++;
1.126 ng 983: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 984: }
1.474 albertel 985: $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
1.41 ng 986:
1.45 ng 987: my $ctr = 0;
1.294 albertel 988: foreach my $student (sort
989: {
990: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
991: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
992: }
993: return $a cmp $b;
994: }
995: (keys(%$fullname))) {
1.41 ng 996: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 997:
1.110 ng 998: my %status = ();
1.301 albertel 999:
1000: if ($submitonly eq 'queued') {
1001: my %queue_status =
1002: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
1003: $udom,$uname);
1004: next if (!defined($queue_status{'gradingqueue'}));
1005: $status{'gradingqueue'} = $queue_status{'gradingqueue'};
1006: }
1007:
1.618 www 1008: if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.324 albertel 1009: (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 1010: my $submitted = 0;
1.164 albertel 1011: my $graded = 0;
1.248 albertel 1012: my $incorrect = 0;
1.110 ng 1013: foreach (keys(%status)) {
1.145 albertel 1014: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 1015: $graded = 1 if ($status{$_} =~ /^ungraded/);
1016: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1017:
1.110 ng 1018: my ($foo,$partid,$foo1) = split(/\./,$_);
1019: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145 albertel 1020: $submitted = 0;
1.150 albertel 1021: my ($part)=split(/\./,$partid);
1.110 ng 1022: $gradeTable.='<input type="hidden" name="'.
1.150 albertel 1023: $student.':'.$part.':submitted_by" value="'.
1.110 ng 1024: $status{'resource.'.$partid.'.submitted_by'}.'" />';
1025: }
1.41 ng 1026: }
1.248 albertel 1027:
1.156 albertel 1028: next if (!$submitted && ($submitonly eq 'yes' ||
1029: $submitonly eq 'incorrect' ||
1030: $submitonly eq 'graded'));
1.248 albertel 1031: next if (!$graded && ($submitonly eq 'graded'));
1032: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 1033: }
1.34 ng 1034:
1.45 ng 1035: $ctr++;
1.249 albertel 1036: my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452 banghart 1037: my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104 albertel 1038: if ( $perm{'vgr'} eq 'F' ) {
1.474 albertel 1039: if ($ctr%2 ==1) {
1040: $gradeTable.= &Apache::loncommon::start_data_table_row();
1041: }
1.126 ng 1042: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.563 bisitz 1043: '<td align="center"><label><input type="checkbox" name="stuinfo" value="'.
1.249 albertel 1044: $student.':'.$$fullname{$student}.':::SECTION'.$section.
1045: ') " /> </label></td>'."\n".'<td>'.
1046: &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474 albertel 1047: ' '.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110 ng 1048:
1.618 www 1049: if ($submitonly ne 'all') {
1.524 raeburn 1050: foreach (sort(keys(%status))) {
1.485 albertel 1051: next if ($_ =~ /^resource.*?submitted_by$/);
1052: $gradeTable.='<td align="center"> '.&mt($status{$_}).' </td>'."\n";
1.110 ng 1053: }
1.41 ng 1054: }
1.126 ng 1055: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474 albertel 1056: if ($ctr%2 ==0) {
1057: $gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
1058: }
1.41 ng 1059: }
1060: }
1.110 ng 1061: if ($ctr%2 ==1) {
1.126 ng 1062: $gradeTable.='<td> </td><td> </td><td> </td>';
1.618 www 1063: if (($submitonly ne 'queued') && ($submitonly ne 'all')) {
1.110 ng 1064: foreach (@$partlist) {
1065: $gradeTable.='<td> </td>';
1066: }
1.301 albertel 1067: } elsif ($submitonly eq 'queued') {
1068: $gradeTable.='<td> </td>';
1.110 ng 1069: }
1.474 albertel 1070: $gradeTable.=&Apache::loncommon::end_data_table_row();
1.110 ng 1071: }
1072:
1.474 albertel 1073: $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.589 bisitz 1074: '<input type="button" '.
1075: 'onclick="javascript:checkSelect(this.form.stuinfo);" '.
1076: 'value="'.&mt('Next').' →" /></form>'."\n";
1.45 ng 1077: if ($ctr == 0) {
1.96 albertel 1078: my $num_students=(scalar(keys(%$fullname)));
1079: if ($num_students eq 0) {
1.485 albertel 1080: $gradeTable='<br /> <span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
1.96 albertel 1081: } else {
1.171 albertel 1082: my $submissions='submissions';
1083: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
1084: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 1085: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.398 albertel 1086: $gradeTable='<br /> <span class="LC_warning">'.
1.485 albertel 1087: &mt('No '.$submissions.' found for this resource for any students. ([_1] students checked for '.$submissions.')',
1088: $num_students).
1089: '</span><br />';
1.96 albertel 1090: }
1.46 ng 1091: } elsif ($ctr == 1) {
1.474 albertel 1092: $gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45 ng 1093: }
1094: $request->print($gradeTable);
1.44 ng 1095: return '';
1.10 ng 1096: }
1097:
1.44 ng 1098: #---- Called from the listStudents routine
1.249 albertel 1099:
1100: sub check_script {
1101: my ($form, $type)=@_;
1.597 wenzelju 1102: my $chkallscript= &Apache::lonhtmlcommon::scripttag('
1.249 albertel 1103: function checkall() {
1104: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1105: ele = document.forms.'.$form.'.elements[i];
1106: if (ele.name == "'.$type.'") {
1107: document.forms.'.$form.'.elements[i].checked=true;
1108: }
1109: }
1110: }
1111:
1112: function checksec() {
1113: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1114: ele = document.forms.'.$form.'.elements[i];
1115: string = document.forms.'.$form.'.chksec.value;
1116: if
1117: (ele.value.indexOf(":::SECTION"+string)>0) {
1118: document.forms.'.$form.'.elements[i].checked=true;
1119: }
1120: }
1121: }
1122:
1123:
1124: function uncheckall() {
1125: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1126: ele = document.forms.'.$form.'.elements[i];
1127: if (ele.name == "'.$type.'") {
1128: document.forms.'.$form.'.elements[i].checked=false;
1129: }
1130: }
1131: }
1132:
1.597 wenzelju 1133: '."\n");
1.249 albertel 1134: return $chkallscript;
1135: }
1136:
1137: sub check_buttons {
1.485 albertel 1138: my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
1139: $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" /> ';
1140: $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
1.249 albertel 1141: $buttons.='<input type="text" size="5" name="chksec" /> ';
1142: return $buttons;
1143: }
1144:
1.44 ng 1145: # Displays the submissions for one student or a group of students
1.34 ng 1146: sub processGroup {
1.619 www 1147: my ($request,$symb) = @_;
1.41 ng 1148: my $ctr = 0;
1.155 albertel 1149: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 1150: my $total = scalar(@stuchecked)-1;
1.45 ng 1151:
1.396 banghart 1152: foreach my $student (@stuchecked) {
1153: my ($uname,$udom,$fullname) = split(/:/,$student);
1.257 albertel 1154: $env{'form.student'} = $uname;
1155: $env{'form.userdom'} = $udom;
1156: $env{'form.fullname'} = $fullname;
1.619 www 1157: &submission($request,$ctr,$total,$symb);
1.41 ng 1158: $ctr++;
1159: }
1160: return '';
1.35 ng 1161: }
1.34 ng 1162:
1.44 ng 1163: #------------------------------------------------------------------------------------
1164: #
1165: #-------------------------- Next few routines handles grading by student, essentially
1166: # handles essay response type problem/part
1167: #
1168: #--- Javascript to handle the submission page functionality ---
1169: sub sub_page_js {
1170: my $request = shift;
1.539 riegler 1171: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.597 wenzelju 1172: $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
1.71 ng 1173: function updateRadio(formname,id,weight) {
1.125 ng 1174: var gradeBox = formname["GD_BOX"+id];
1175: var radioButton = formname["RADVAL"+id];
1176: var oldpts = formname["oldpts"+id].value;
1.72 ng 1177: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 1178: gradeBox.value = pts;
1179: var resetbox = false;
1180: if (isNaN(pts) || pts < 0) {
1.539 riegler 1181: alert("$alertmsg"+pts);
1.71 ng 1182: for (var i=0; i<radioButton.length; i++) {
1183: if (radioButton[i].checked) {
1184: gradeBox.value = i;
1185: resetbox = true;
1186: }
1187: }
1188: if (!resetbox) {
1189: formtextbox.value = "";
1190: }
1191: return;
1.44 ng 1192: }
1.71 ng 1193:
1194: if (pts > weight) {
1195: var resp = confirm("You entered a value ("+pts+
1196: ") greater than the weight for the part. Accept?");
1197: if (resp == false) {
1.125 ng 1198: gradeBox.value = oldpts;
1.71 ng 1199: return;
1200: }
1.44 ng 1201: }
1.13 albertel 1202:
1.71 ng 1203: for (var i=0; i<radioButton.length; i++) {
1204: radioButton[i].checked=false;
1205: if (pts == i && pts != "") {
1206: radioButton[i].checked=true;
1207: }
1208: }
1209: updateSelect(formname,id);
1.125 ng 1210: formname["stores"+id].value = "0";
1.41 ng 1211: }
1.5 albertel 1212:
1.72 ng 1213: function writeBox(formname,id,pts) {
1.125 ng 1214: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1215: if (checkSolved(formname,id) == 'update') {
1216: gradeBox.value = pts;
1217: } else {
1.125 ng 1218: var oldpts = formname["oldpts"+id].value;
1.72 ng 1219: gradeBox.value = oldpts;
1.125 ng 1220: var radioButton = formname["RADVAL"+id];
1.71 ng 1221: for (var i=0; i<radioButton.length; i++) {
1222: radioButton[i].checked=false;
1.72 ng 1223: if (i == oldpts) {
1.71 ng 1224: radioButton[i].checked=true;
1225: }
1226: }
1.41 ng 1227: }
1.125 ng 1228: formname["stores"+id].value = "0";
1.71 ng 1229: updateSelect(formname,id);
1230: return;
1.41 ng 1231: }
1.44 ng 1232:
1.71 ng 1233: function clearRadBox(formname,id) {
1234: if (checkSolved(formname,id) == 'noupdate') {
1235: updateSelect(formname,id);
1236: return;
1237: }
1.125 ng 1238: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1239: for (var i=0; i<gradeSelect.length; i++) {
1240: if (gradeSelect[i].selected) {
1241: var selectx=i;
1242: }
1243: }
1.125 ng 1244: var stores = formname["stores"+id];
1.71 ng 1245: if (selectx == stores.value) { return };
1.125 ng 1246: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1247: gradeBox.value = "";
1.125 ng 1248: var radioButton = formname["RADVAL"+id];
1.71 ng 1249: for (var i=0; i<radioButton.length; i++) {
1250: radioButton[i].checked=false;
1251: }
1252: stores.value = selectx;
1253: }
1.5 albertel 1254:
1.71 ng 1255: function checkSolved(formname,id) {
1.125 ng 1256: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1257: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1258: if (!reply) {return "noupdate";}
1.120 ng 1259: formname.overRideScore.value = 'yes';
1.41 ng 1260: }
1.71 ng 1261: return "update";
1.13 albertel 1262: }
1.71 ng 1263:
1264: function updateSelect(formname,id) {
1.125 ng 1265: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1266: return;
1.41 ng 1267: }
1.33 ng 1268:
1.121 ng 1269: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1270: function checksubmit(formname,val,total,parttot) {
1.121 ng 1271: formname.gradeOpt.value = val;
1.71 ng 1272: if (val == "Save & Next") {
1273: for (i=0;i<=total;i++) {
1274: for (j=0;j<parttot;j++) {
1.125 ng 1275: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1276: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1277: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1278: if (points == "") {
1.125 ng 1279: var name = formname["name"+i].value;
1.129 ng 1280: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1281: var resp = confirm("You did not assign a score for "+studentID+
1282: ", part "+partid+". Continue?");
1.71 ng 1283: if (resp == false) {
1.125 ng 1284: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1285: return false;
1286: }
1287: }
1288: }
1289:
1290: }
1291: }
1292:
1293: }
1.120 ng 1294: formname.submit();
1295: }
1296:
1.71 ng 1297: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1298: function checkSubmitPage(formname,total) {
1299: noscore = new Array(100);
1300: var ptr = 0;
1301: for (i=1;i<total;i++) {
1.125 ng 1302: var partid = formname["q_"+i].value;
1.127 ng 1303: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1304: var points = formname["GD_BOX"+i+"_"+partid].value;
1305: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1306: if (points == "" && status != "correct_by_student") {
1307: noscore[ptr] = i;
1308: ptr++;
1309: }
1310: }
1311: }
1312: if (ptr != 0) {
1313: var sense = ptr == 1 ? ": " : "s: ";
1314: var prolist = "";
1315: if (ptr == 1) {
1316: prolist = noscore[0];
1317: } else {
1318: var i = 0;
1319: while (i < ptr-1) {
1320: prolist += noscore[i]+", ";
1321: i++;
1322: }
1323: prolist += "and "+noscore[i];
1324: }
1325: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1326: if (resp == false) {
1327: return false;
1328: }
1329: }
1.45 ng 1330:
1.71 ng 1331: formname.submit();
1332: }
1333: SUBJAVASCRIPT
1334: }
1.45 ng 1335:
1.71 ng 1336: #--- javascript for essay type problem --
1337: sub sub_page_kw_js {
1338: my $request = shift;
1.80 ng 1339: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1340: &commonJSfunctions($request);
1.350 albertel 1341:
1.629 www 1342: my $inner_js_msg_central= (<<INNERJS);
1343: <script type="text/javascript">
1.350 albertel 1344: function checkInput() {
1345: opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
1346: var nmsg = opener.document.SCORE.savemsgN.value;
1347: var usrctr = document.msgcenter.usrctr.value;
1348: var newval = opener.document.SCORE["newmsg"+usrctr];
1349: newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
1350:
1351: var msgchk = "";
1352: if (document.msgcenter.subchk.checked) {
1353: msgchk = "msgsub,";
1354: }
1355: var includemsg = 0;
1356: for (var i=1; i<=nmsg; i++) {
1357: var opnmsg = opener.document.SCORE["savemsg"+i];
1358: var frmmsg = document.msgcenter["msg"+i];
1359: opnmsg.value = opener.checkEntities(frmmsg.value);
1360: var showflg = opener.document.SCORE["shownOnce"+i];
1361: showflg.value = "1";
1362: var chkbox = document.msgcenter["msgn"+i];
1363: if (chkbox.checked) {
1364: msgchk += "savemsg"+i+",";
1365: includemsg = 1;
1366: }
1367: }
1368: if (document.msgcenter.newmsgchk.checked) {
1369: msgchk += "newmsg"+usrctr;
1370: includemsg = 1;
1371: }
1372: imgformname = opener.document.SCORE["mailicon"+usrctr];
1373: imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
1374: var includemsg = opener.document.SCORE["includemsg"+usrctr];
1375: includemsg.value = msgchk;
1376:
1377: self.close()
1378:
1379: }
1.629 www 1380: </script>
1.350 albertel 1381: INNERJS
1382:
1.629 www 1383: my $inner_js_highlight_central= (<<INNERJS);
1384: <script type="text/javascript">
1.351 albertel 1385: function updateChoice(flag) {
1386: opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
1387: opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
1388: opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
1389: opener.document.SCORE.refresh.value = "on";
1390: if (opener.document.SCORE.keywords.value!=""){
1391: opener.document.SCORE.submit();
1392: }
1393: self.close()
1394: }
1.629 www 1395: </script>
1.351 albertel 1396: INNERJS
1397:
1398: my $start_page_msg_central =
1399: &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
1400: {'js_ready' => 1,
1401: 'only_body' => 1,
1402: 'bgcolor' =>'#FFFFFF',});
1403: my $end_page_msg_central =
1404: &Apache::loncommon::end_page({'js_ready' => 1});
1405:
1406:
1407: my $start_page_highlight_central =
1408: &Apache::loncommon::start_page('Highlight Central',
1409: $inner_js_highlight_central,
1.350 albertel 1410: {'js_ready' => 1,
1411: 'only_body' => 1,
1412: 'bgcolor' =>'#FFFFFF',});
1.351 albertel 1413: my $end_page_highlight_central =
1.350 albertel 1414: &Apache::loncommon::end_page({'js_ready' => 1});
1415:
1.219 www 1416: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1417: $docopen=~s/^document\.//;
1.652 raeburn 1418: my %lt = &Apache::lonlocal::texthash(
1419: keyw => 'Keywords list, separated by a space. Add/delete to list if desired.',
1420: plse => 'Please select a word or group of words from document and then click this link.',
1421: adds => 'Add selection to keyword list? Edit if desired.',
1422: comp => 'Compose Message for: ',
1423: incl => 'Include',
1.656 raeburn 1424: type => 'Type',
1.652 raeburn 1425: subj => 'Subject',
1426: mesa => 'Message',
1427: new => 'New',
1428: save => 'Save',
1429: canc => 'Cancel',
1430: kehi => 'Keyword Highlight Options',
1431: txtc => 'Text Color',
1432: font => 'Font Size',
1.656 raeburn 1433: fnst => 'Font Style',
1.652 raeburn 1434: );
1.597 wenzelju 1435: $request->print(&Apache::lonhtmlcommon::scripttag(<<SUBJAVASCRIPT));
1.45 ng 1436:
1.44 ng 1437: //===================== Show list of keywords ====================
1.122 ng 1438: function keywords(formname) {
1.652 raeburn 1439: var nret = prompt("$lt{'keyw'}",formname.keywords.value);
1.44 ng 1440: if (nret==null) return;
1.122 ng 1441: formname.keywords.value = nret;
1.44 ng 1442:
1.122 ng 1443: if (formname.keywords.value != "") {
1.128 ng 1444: formname.refresh.value = "on";
1.122 ng 1445: formname.submit();
1.44 ng 1446: }
1447: return;
1448: }
1449:
1450: //===================== Script to view submitted by ==================
1451: function viewSubmitter(submitter) {
1452: document.SCORE.refresh.value = "on";
1453: document.SCORE.NCT.value = "1";
1454: document.SCORE.unamedom0.value = submitter;
1455: document.SCORE.submit();
1456: return;
1457: }
1458:
1459: //===================== Script to add keyword(s) ==================
1460: function getSel() {
1461: if (document.getSelection) txt = document.getSelection();
1462: else if (document.selection) txt = document.selection.createRange().text;
1463: else return;
1464: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1465: if (cleantxt=="") {
1.652 raeburn 1466: alert("$lt{'plse'}");
1.44 ng 1467: return;
1468: }
1.652 raeburn 1469: var nret = prompt("$lt{'adds'}",cleantxt);
1.44 ng 1470: if (nret==null) return;
1.127 ng 1471: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1472: if (document.SCORE.keywords.value != "") {
1.127 ng 1473: document.SCORE.refresh.value = "on";
1.44 ng 1474: document.SCORE.submit();
1475: }
1476: return;
1477: }
1478:
1479: //====================== Script for composing message ==============
1.80 ng 1480: // preload images
1481: img1 = new Image();
1482: img1.src = "$iconpath/mailbkgrd.gif";
1483: img2 = new Image();
1484: img2.src = "$iconpath/mailto.gif";
1485:
1.44 ng 1486: function msgCenter(msgform,usrctr,fullname) {
1487: var Nmsg = msgform.savemsgN.value;
1488: savedMsgHeader(Nmsg,usrctr,fullname);
1489: var subject = msgform.msgsub.value;
1.127 ng 1490: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1491: re = /msgsub/;
1492: var shwsel = "";
1493: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1494: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1495: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1496: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1497: var testmsg = "savemsg"+i+",";
1498: re = new RegExp(testmsg,"g");
1.44 ng 1499: shwsel = "";
1500: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1501: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1502: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1503: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1504: //any < is already converted to <, etc. However, only once!!
1.44 ng 1505: }
1.125 ng 1506: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1507: shwsel = "";
1508: re = /newmsg/;
1509: if (re.test(msgchk)) { shwsel = "checked" }
1510: newMsg(newmsg,shwsel);
1511: msgTail();
1512: return;
1513: }
1514:
1.123 ng 1515: function checkEntities(strx) {
1516: if (strx.length == 0) return strx;
1517: var orgStr = ["&", "<", ">", '"'];
1518: var newStr = ["&", "<", ">", """];
1519: var counter = 0;
1520: while (counter < 4) {
1521: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1522: counter++;
1523: }
1524: return strx;
1525: }
1526:
1527: function strReplace(strx, orgStr, newStr) {
1528: return strx.split(orgStr).join(newStr);
1529: }
1530:
1.44 ng 1531: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1532: var height = 70*Nmsg+250;
1.44 ng 1533: if (height > 600) {
1534: height = 600;
1535: }
1.118 ng 1536: var xpos = (screen.width-600)/2;
1537: xpos = (xpos < 0) ? '0' : xpos;
1538: var ypos = (screen.height-height)/2-30;
1539: ypos = (ypos < 0) ? '0' : ypos;
1540:
1.668 www 1541: pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars=yes,screenx='+xpos+',screeny='+ypos+',width=700,height='+height);
1.76 ng 1542: pWin.focus();
1543: pDoc = pWin.document;
1.219 www 1544: pDoc.$docopen;
1.351 albertel 1545: pDoc.write('$start_page_msg_central');
1.76 ng 1546:
1547: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1548: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.676 ! golterma 1549: pDoc.write("<h1> $lt{'comp'}\"+fullname+\"<\\/h1>");
1.76 ng 1550:
1.676 ! golterma 1551: pDoc.write('<table style="border:1px solid black;"><tr>');
! 1552: pDoc.write("<td><b>$lt{'incl'}<\\/b><\\/td><td><b>$lt{'type'}<\\/b><\\/td><td><b>$lt{'mesa'}<\\/td><\\/tr>");
1.44 ng 1553: }
1554: function displaySubject(msg,shwsel) {
1.76 ng 1555: pDoc = pWin.document;
1.676 ! golterma 1556: pDoc.write("<tr>");
! 1557: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.652 raeburn 1558: pDoc.write("<td>$lt{'subj'}<\\/td>");
1.676 ! golterma 1559: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"40\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44 ng 1560: }
1561:
1.72 ng 1562: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1563: pDoc = pWin.document;
1.676 ! golterma 1564: pDoc.write("<tr>");
! 1565: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.465 albertel 1566: pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
1567: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1568: }
1569:
1570: function newMsg(newmsg,shwsel) {
1.76 ng 1571: pDoc = pWin.document;
1.676 ! golterma 1572: pDoc.write("<tr>");
! 1573: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1.652 raeburn 1574: pDoc.write("<td align=\\"center\\">$lt{'new'}<\\/td>");
1.465 albertel 1575: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1576: }
1577:
1578: function msgTail() {
1.76 ng 1579: pDoc = pWin.document;
1.676 ! golterma 1580: //pDoc.write("<\\/table>");
1.465 albertel 1581: pDoc.write("<\\/td><\\/tr><\\/table> ");
1.652 raeburn 1582: pDoc.write("<input type=\\"button\\" value=\\"$lt{'save'}\\" onclick=\\"javascript:checkInput()\\"> ");
1583: pDoc.write("<input type=\\"button\\" value=\\"$lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465 albertel 1584: pDoc.write("<\\/form>");
1.351 albertel 1585: pDoc.write('$end_page_msg_central');
1.128 ng 1586: pDoc.close();
1.44 ng 1587: }
1588:
1589: //====================== Script for keyword highlight options ==============
1590: function kwhighlight() {
1591: var kwclr = document.SCORE.kwclr.value;
1592: var kwsize = document.SCORE.kwsize.value;
1593: var kwstyle = document.SCORE.kwstyle.value;
1594: var redsel = "";
1595: var grnsel = "";
1596: var blusel = "";
1597: if (kwclr=="red") {var redsel="checked"};
1598: if (kwclr=="green") {var grnsel="checked"};
1599: if (kwclr=="blue") {var blusel="checked"};
1600: var sznsel = "";
1601: var sz1sel = "";
1602: var sz2sel = "";
1603: if (kwsize=="0") {var sznsel="checked"};
1604: if (kwsize=="+1") {var sz1sel="checked"};
1605: if (kwsize=="+2") {var sz2sel="checked"};
1606: var synsel = "";
1607: var syisel = "";
1608: var sybsel = "";
1609: if (kwstyle=="") {var synsel="checked"};
1610: if (kwstyle=="<i>") {var syisel="checked"};
1611: if (kwstyle=="<b>") {var sybsel="checked"};
1612: highlightCentral();
1613: highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
1614: highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
1615: highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
1616: highlightend();
1617: return;
1618: }
1619:
1620: function highlightCentral() {
1.76 ng 1621: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1622: var xpos = (screen.width-400)/2;
1623: xpos = (xpos < 0) ? '0' : xpos;
1624: var ypos = (screen.height-330)/2-30;
1625: ypos = (ypos < 0) ? '0' : ypos;
1626:
1.206 albertel 1627: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1628: hwdWin.focus();
1629: var hDoc = hwdWin.document;
1.219 www 1630: hDoc.$docopen;
1.351 albertel 1631: hDoc.write('$start_page_highlight_central');
1.76 ng 1632: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.652 raeburn 1633: hDoc.write("<h3><span class=\\"LC_info\\"> $lt{'kehi'}<\\/span><\\/h3><br /><br />");
1.76 ng 1634:
1.564 bisitz 1635: hDoc.write('<table border="0" width="100%"><tr><td bgcolor="#777777">');
1636: hDoc.write('<table border="0" width="100%"><tr bgcolor="#DDFFFF">');
1.656 raeburn 1637: hDoc.write("<td><b>$lt{'txtc'}<\\/b><\\/td><td><b>$lt{'font'}<\\/b><\\/td><td><b>$lt{'fnst'}<\\/td><\\/tr>");
1.44 ng 1638: }
1639:
1640: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1641: var hDoc = hwdWin.document;
1642: hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1643: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1644: hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+"> "+clrtxt+"<\\/td>");
1.76 ng 1645: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1646: hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+"> "+sztxt+"<\\/td>");
1.76 ng 1647: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1648: hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+"> "+sytxt+"<\\/td>");
1649: hDoc.write("<\\/tr>");
1.44 ng 1650: }
1651:
1652: function highlightend() {
1.76 ng 1653: var hDoc = hwdWin.document;
1.465 albertel 1654: hDoc.write("<\\/table>");
1655: hDoc.write("<\\/td><\\/tr><\\/table> ");
1.652 raeburn 1656: hDoc.write("<input type=\\"button\\" value=\\"$lt{'save'}\\" onclick=\\"javascript:updateChoice(1)\\"> ");
1657: hDoc.write("<input type=\\"button\\" value=\\"$lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465 albertel 1658: hDoc.write("<\\/form>");
1.351 albertel 1659: hDoc.write('$end_page_highlight_central');
1.128 ng 1660: hDoc.close();
1.44 ng 1661: }
1662:
1663: SUBJAVASCRIPT
1664: }
1665:
1.349 albertel 1666: sub get_increment {
1.348 bowersj2 1667: my $increment = $env{'form.increment'};
1668: if ($increment != 1 && $increment != .5 && $increment != .25 &&
1669: $increment != .1) {
1670: $increment = 1;
1671: }
1672: return $increment;
1673: }
1674:
1.585 bisitz 1675: sub gradeBox_start {
1676: return (
1677: &Apache::loncommon::start_data_table()
1678: .&Apache::loncommon::start_data_table_header_row()
1679: .'<th>'.&mt('Part').'</th>'
1680: .'<th>'.&mt('Points').'</th>'
1681: .'<th> </th>'
1682: .'<th>'.&mt('Assign Grade').'</th>'
1683: .'<th>'.&mt('Weight').'</th>'
1684: .'<th>'.&mt('Grade Status').'</th>'
1685: .&Apache::loncommon::end_data_table_header_row()
1686: );
1687: }
1688:
1689: sub gradeBox_end {
1690: return (
1691: &Apache::loncommon::end_data_table()
1692: );
1693: }
1.71 ng 1694: #--- displays the grading box, used in essay type problem and grading by page/sequence
1695: sub gradeBox {
1.322 albertel 1696: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381 albertel 1697: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 1698: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 1699: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466 albertel 1700: my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)')
1701: : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71 ng 1702: $wgt = ($wgt > 0 ? $wgt : '1');
1703: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1704: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71 ng 1705: my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466 albertel 1706: my $display_part= &get_display_part($partid,$symb);
1.270 albertel 1707: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1708: [$partid]);
1709: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1710: if ($last_resets{$partid}) {
1711: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1712: }
1.585 bisitz 1713: $result.=&Apache::loncommon::start_data_table_row();
1.71 ng 1714: my $ctr = 0;
1.348 bowersj2 1715: my $thisweight = 0;
1.349 albertel 1716: my $increment = &get_increment();
1.485 albertel 1717:
1718: my $radio.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1.348 bowersj2 1719: while ($thisweight<=$wgt) {
1.532 bisitz 1720: $radio.= '<td><span class="LC_nobreak"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1721: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348 bowersj2 1722: $thisweight.')" value="'.$thisweight.'" '.
1.401 albertel 1723: ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.485 albertel 1724: $radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348 bowersj2 1725: $thisweight += $increment;
1.71 ng 1726: $ctr++;
1727: }
1.485 albertel 1728: $radio.='</tr></table>';
1729:
1730: my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1.71 ng 1731: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1.589 bisitz 1732: 'onchange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1.71 ng 1733: $wgt.')" /></td>'."\n";
1.485 albertel 1734: $line.='<td>/'.$wgt.' '.$wgtmsg.
1.71 ng 1735: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1.585 bisitz 1736: ' </td>'."\n";
1737: $line.='<td><select name="GD_SEL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1738: 'onchange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1.71 ng 1739: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.485 albertel 1740: $line.='<option></option>'.
1741: '<option value="excused" selected="selected">'.&mt('excused').'</option>';
1.71 ng 1742: } else {
1.485 albertel 1743: $line.='<option selected="selected"></option>'.
1744: '<option value="excused" >'.&mt('excused').'</option>';
1.71 ng 1745: }
1.485 albertel 1746: $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
1747:
1748:
1749: $result .=
1.585 bisitz 1750: '<td>'.$display_part.'</td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>';
1751: $result.=&Apache::loncommon::end_data_table_row();
1.71 ng 1752: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1753: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1754: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1755: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1756: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1757: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1758: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1759: $aggtries.'" />'."\n";
1.582 raeburn 1760: my $res_error;
1761: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record,\$res_error);
1762: if ($res_error) {
1763: return &navmap_errormsg();
1764: }
1.318 banghart 1765: return $result;
1766: }
1.322 albertel 1767:
1768: sub handback_box {
1.623 www 1769: my ($symb,$uname,$udom,$counter,$partid,$record,$res_error_pointer) = @_;
1770: my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error_pointer);
1.323 banghart 1771: my (@respids);
1.652 raeburn 1772: my @part_response_id = &flatten_responseType($responseType);
1.375 albertel 1773: foreach my $part_response_id (@part_response_id) {
1774: my ($part,$resp) = @{ $part_response_id };
1.323 banghart 1775: if ($part eq $partid) {
1.375 albertel 1776: push(@respids,$resp);
1.323 banghart 1777: }
1778: }
1.318 banghart 1779: my $result;
1.323 banghart 1780: foreach my $respid (@respids) {
1.322 albertel 1781: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1782: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1783: next if (!@$files);
1.654 raeburn 1784: my $file_counter = 0;
1.313 banghart 1785: foreach my $file (@$files) {
1.368 banghart 1786: if ($file =~ /\/portfolio\//) {
1.654 raeburn 1787: $file_counter++;
1.368 banghart 1788: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
1789: my ($name,$version,$ext) = &file_name_version_ext($file_disp);
1790: $file_disp = "$name.$ext";
1791: $file = $file_path.$file_disp;
1792: $result.=&mt('Return commented version of [_1] to student.',
1793: '<span class="LC_filename">'.$file_disp.'</span>');
1794: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1.654 raeburn 1795: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />'."\n";
1.368 banghart 1796: }
1.322 albertel 1797: }
1.654 raeburn 1798: if ($file_counter) {
1799: $result .= '<input type="hidden" name="'.$prefix.'countreturndoc" value="'.$file_counter.'" />'."\n".
1800: '<span class="LC_info">'.
1801: '('.&mt('File(s) will be uploaded when you click on Save & Next below.',$file_counter).')</span><br /><br />';
1802: }
1.313 banghart 1803: }
1.318 banghart 1804: return $result;
1.71 ng 1805: }
1.44 ng 1806:
1.58 albertel 1807: sub show_problem {
1.382 albertel 1808: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144 albertel 1809: my $rendered;
1.382 albertel 1810: my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329 albertel 1811: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1812: if ($mode eq 'both' or $mode eq 'text') {
1813: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382 albertel 1814: $env{'request.course.id'},
1815: undef,\%form);
1.144 albertel 1816: }
1.58 albertel 1817: if ($removeform) {
1818: $rendered=~s|<form(.*?)>||g;
1819: $rendered=~s|</form>||g;
1.374 albertel 1820: $rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58 albertel 1821: }
1.144 albertel 1822: my $companswer;
1823: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1824: &Apache::lonxml::restore_problem_counter();
1.382 albertel 1825: $companswer=
1826: &Apache::loncommon::get_student_answers($symb,$uname,$udom,
1827: $env{'request.course.id'},
1828: %form);
1.144 albertel 1829: }
1.58 albertel 1830: if ($removeform) {
1831: $companswer=~s|<form(.*?)>||g;
1832: $companswer=~s|</form>||g;
1.144 albertel 1833: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1834: }
1.671 raeburn 1835: my $renderheading = &mt('View of the problem');
1836: my $answerheading = &mt('Correct answer');
1837: if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
1838: my $stu_fullname = $env{'form.fullname'};
1839: if ($stu_fullname eq '') {
1840: $stu_fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
1841: }
1842: my $forwhom = &nameUserString(undef,$stu_fullname,$uname,$udom);
1843: if ($forwhom ne '') {
1844: $renderheading = &mt('View of the problem for[_1]',$forwhom);
1845: $answerheading = &mt('Correct answer for[_1]',$forwhom);
1846: }
1847: }
1.468 albertel 1848: $rendered=
1.588 bisitz 1849: '<div class="LC_Box">'
1.671 raeburn 1850: .'<h3 class="LC_hcell">'.$renderheading.'</h3>'
1.588 bisitz 1851: .$rendered
1852: .'</div>';
1.468 albertel 1853: $companswer=
1.588 bisitz 1854: '<div class="LC_Box">'
1.671 raeburn 1855: .'<h3 class="LC_hcell">'.$answerheading.'</h3>'
1.588 bisitz 1856: .$companswer
1857: .'</div>';
1.468 albertel 1858: my $result;
1.144 albertel 1859: if ($mode eq 'both') {
1.588 bisitz 1860: $result=$rendered.$companswer;
1.144 albertel 1861: } elsif ($mode eq 'text') {
1.588 bisitz 1862: $result=$rendered;
1.144 albertel 1863: } elsif ($mode eq 'answer') {
1.588 bisitz 1864: $result=$companswer;
1.144 albertel 1865: }
1.71 ng 1866: return $result;
1.58 albertel 1867: }
1.397 albertel 1868:
1.396 banghart 1869: sub files_exist {
1870: my ($r, $symb) = @_;
1871: my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397 albertel 1872:
1.396 banghart 1873: foreach my $student (@students) {
1874: my ($uname,$udom,$fullname) = split(/:/,$student);
1.397 albertel 1875: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
1876: $udom,$uname);
1.396 banghart 1877: my ($string,$timestamp)= &get_last_submission(\%record);
1.397 albertel 1878: foreach my $submission (@$string) {
1879: my ($partid,$respid) =
1880: ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1881: my $files=&get_submitted_files($udom,$uname,$partid,$respid,
1882: \%record);
1883: return 1 if (@$files);
1.396 banghart 1884: }
1885: }
1.397 albertel 1886: return 0;
1.396 banghart 1887: }
1.397 albertel 1888:
1.394 banghart 1889: sub download_all_link {
1890: my ($r,$symb) = @_;
1.621 www 1891: unless (&files_exist($r, $symb)) {
1892: $r->print(&mt('There are currently no submitted documents.'));
1893: return;
1894: }
1895:
1.395 albertel 1896: my $all_students =
1897: join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
1898:
1899: my $parts =
1900: join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
1901:
1.394 banghart 1902: my $identifier = &Apache::loncommon::get_cgi_id();
1.514 raeburn 1903: &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
1904: 'cgi.'.$identifier.'.symb' => $symb,
1905: 'cgi.'.$identifier.'.parts' => $parts,});
1.395 albertel 1906: $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
1907: &mt('Download All Submitted Documents').'</a>');
1.621 www 1908: return;
1909: }
1910:
1911: sub submit_download_link {
1912: my ($request,$symb) = @_;
1913: if (!$symb) { return ''; }
1914: #FIXME: Figure out which type of problem this is and provide appropriate download
1915: &download_all_link($request,$symb);
1.394 banghart 1916: }
1.395 albertel 1917:
1.432 banghart 1918: sub build_section_inputs {
1919: my $section_inputs;
1920: if ($env{'form.section'} eq '') {
1921: $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
1922: } else {
1923: my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434 albertel 1924: foreach my $section (@sections) {
1.432 banghart 1925: $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
1926: }
1927: }
1928: return $section_inputs;
1929: }
1930:
1.44 ng 1931: # --------------------------- show submissions of a student, option to grade
1932: sub submission {
1.608 www 1933: my ($request,$counter,$total,$symb) = @_;
1.257 albertel 1934: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
1935: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
1936: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
1937: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.608 www 1938:
1.605 www 1939: my $probtitle=&Apache::lonnet::gettitle($symb);
1.324 albertel 1940: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104 albertel 1941:
1942: if (!&canview($usec)) {
1.398 albertel 1943: $request->print('<span class="LC_warning">Unable to view requested student.('.
1944: $uname.':'.$udom.' in section '.$usec.' in course id '.
1945: $env{'request.course.id'}.')</span>');
1.104 albertel 1946: return;
1947: }
1948:
1.257 albertel 1949: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
1950: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
1951: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
1952: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381 albertel 1953: my $checkIcon = '<img alt="'.&mt('Check Mark').
1954: '" src="'.$request->dir_config('lonIconsURL').
1.122 ng 1955: '/check.gif" height="16" border="0" />';
1.41 ng 1956:
1957: # header info
1958: if ($counter == 0) {
1959: &sub_page_js($request);
1.621 www 1960: &sub_page_kw_js($request);
1.118 ng 1961:
1.44 ng 1962: # option to display problem, only once else it cause problems
1963: # with the form later since the problem has a form.
1.257 albertel 1964: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 1965: my $mode;
1.257 albertel 1966: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 1967: $mode='both';
1.257 albertel 1968: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 1969: $mode='text';
1.257 albertel 1970: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 1971: $mode='answer';
1972: }
1.329 albertel 1973: &Apache::lonxml::clear_problem_counter();
1.144 albertel 1974: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 1975: }
1.441 www 1976:
1.44 ng 1977: # kwclr is the only variable that is guaranteed to be non blank
1978: # if this subroutine has been called once.
1.41 ng 1979: my %keyhash = ();
1.624 www 1980: # if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1981: if (1) {
1.41 ng 1982: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 1983: $env{'course.'.$env{'request.course.id'}.'.domain'},
1984: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 1985:
1.257 albertel 1986: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1987: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
1988: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
1989: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
1990: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
1991: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
1.605 www 1992: $keyhash{$symb.'_subject'} : $probtitle;
1.257 albertel 1993: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 1994: }
1.257 albertel 1995: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442 banghart 1996: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303 banghart 1997: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 1998: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.442 banghart 1999: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.120 ng 2000: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.41 ng 2001: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 2002: '<input type="hidden" name="studentNo" value="" />'."\n".
2003: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.418 albertel 2004: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 2005: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
2006: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
2007: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.432 banghart 2008: &build_section_inputs().
1.326 albertel 2009: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
1.41 ng 2010: '<input type="hidden" name="NCT"'.
1.257 albertel 2011: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
1.624 www 2012: # if ($env{'form.handgrade'} eq 'yes') {
2013: if (1) {
1.257 albertel 2014: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
2015: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
2016: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
2017: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
2018: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 2019: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 2020: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 2021: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
2022: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
2023: }
1.123 ng 2024: }
1.41 ng 2025:
2026: my ($cts,$prnmsg) = (1,'');
1.257 albertel 2027: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 2028: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 2029: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 2030: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 2031: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 2032: '" />'."\n".
2033: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 2034: $cts++;
2035: }
2036: $request->print($prnmsg);
1.32 ng 2037:
1.624 www 2038: # if ($env{'form.handgrade'} eq 'yes') {
2039: if (1) {
1.652 raeburn 2040:
2041: my %lt = &Apache::lonlocal::texthash(
2042: keyw => 'Keyword Options',
1.655 raeburn 2043: list => 'List',
1.652 raeburn 2044: past => 'Paste Selection to List',
1.661 www 2045: high => 'Highlight Attribute',
1.652 raeburn 2046: );
1.88 www 2047: #
2048: # Print out the keyword options line
2049: #
1.41 ng 2050: $request->print(<<KEYWORDS);
1.652 raeburn 2051: <br /><b>$lt{'keyw'}:</b>
1.655 raeburn 2052: <a href="javascript:keywords(document.SCORE);" target="_self">$lt{'list'}</a>
1.589 bisitz 2053: <a href="#" onmousedown="javascript:getSel(); return false"
1.652 raeburn 2054: CLASS="page">$lt{'past'}</a>
2055: <a href="javascript:kwhighlight();" target="_self">$lt{'high'}</a><br /><br />
1.38 ng 2056: KEYWORDS
1.88 www 2057: #
2058: # Load the other essays for similarity check
2059: #
1.324 albertel 2060: my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384 albertel 2061: my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359 www 2062: $apath=&escape($apath);
1.88 www 2063: $apath=~s/\W/\_/gs;
1.674 raeburn 2064: &init_old_essays($symb,$apath,$adom,$aname);
1.41 ng 2065: }
2066: }
1.44 ng 2067:
1.441 www 2068: # This is where output for one specific student would start
1.592 bisitz 2069: my $add_class = ($counter%2) ? ' LC_grade_show_user_odd_row' : '';
2070: $request->print(
2071: "\n\n"
2072: .'<div class="LC_grade_show_user'.$add_class.'">'
2073: .'<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</h2>'
2074: ."\n"
2075: );
1.441 www 2076:
1.592 bisitz 2077: # Show additional functions if allowed
2078: if ($perm{'vgr'}) {
2079: $request->print(
2080: &Apache::loncommon::track_student_link(
2081: &mt('View recent activity'),
2082: $uname,$udom,'check')
2083: .' '
2084: );
2085: }
2086: if ($perm{'opa'}) {
2087: $request->print(
2088: &Apache::loncommon::pprmlink(
2089: &mt('Set/Change parameters'),
2090: $uname,$udom,$symb,'check'));
2091: }
2092:
2093: # Show Problem
1.257 albertel 2094: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144 albertel 2095: my $mode;
1.257 albertel 2096: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 2097: $mode='both';
1.257 albertel 2098: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 2099: $mode='text';
1.257 albertel 2100: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 2101: $mode='answer';
2102: }
1.329 albertel 2103: &Apache::lonxml::clear_problem_counter();
1.475 albertel 2104: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58 albertel 2105: }
1.144 albertel 2106:
1.257 albertel 2107: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.582 raeburn 2108: my $res_error;
2109: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
2110: if ($res_error) {
2111: $request->print(&navmap_errormsg());
2112: return;
2113: }
1.41 ng 2114:
1.44 ng 2115: # Display student info
1.41 ng 2116: $request->print(($counter == 0 ? '' : '<br />'));
1.590 bisitz 2117:
2118: my $result='<div class="LC_Box">'
2119: .'<h3 class="LC_hcell">'.&mt('Submissions').'</h3>';
1.45 ng 2120: $result.='<input type="hidden" name="name'.$counter.
1.588 bisitz 2121: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.624 www 2122: # if ($env{'form.handgrade'} eq 'no') {
2123: if (1) {
1.588 bisitz 2124: $result.='<p class="LC_info">'
2125: .&mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)
2126: ."</p>\n";
1.469 albertel 2127: }
2128:
1.118 ng 2129: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464 albertel 2130: my $fullname;
2131: my $col_fullnames = [];
1.624 www 2132: # if ($env{'form.handgrade'} eq 'yes') {
2133: if (1) {
1.464 albertel 2134: (my $sub_result,$fullname,$col_fullnames)=
2135: &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
2136: $counter);
2137: $result.=$sub_result;
1.41 ng 2138: }
1.44 ng 2139: $request->print($result."\n");
1.588 bisitz 2140:
1.44 ng 2141: # print student answer/submission
1.588 bisitz 2142: # Options are (1) Handgraded submission only
1.44 ng 2143: # (2) Last submission, includes submission that is not handgraded
2144: # (for multi-response type part)
2145: # (3) Last submission plus the parts info
2146: # (4) The whole record for this student
1.257 albertel 2147: if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151 albertel 2148: my ($string,$timestamp)= &get_last_submission(\%record);
1.468 albertel 2149:
2150: my $lastsubonly;
2151:
1.588 bisitz 2152: if ($$timestamp eq '') {
2153: $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>';
2154: } else {
1.592 bisitz 2155: $lastsubonly =
2156: '<div class="LC_grade_submissions_body">'
2157: .'<b>'.&mt('Date Submitted:').'</b> '.$$timestamp."\n";
1.468 albertel 2158:
1.151 albertel 2159: my %seenparts;
1.375 albertel 2160: my @part_response_id = &flatten_responseType($responseType);
2161: foreach my $part (@part_response_id) {
1.393 albertel 2162: next if ($env{'form.lastSub'} eq 'hdgrade'
2163: && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
2164:
1.375 albertel 2165: my ($partid,$respid) = @{ $part };
1.324 albertel 2166: my $display_part=&get_display_part($partid,$symb);
1.257 albertel 2167: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151 albertel 2168: if (exists($seenparts{$partid})) { next; }
2169: $seenparts{$partid}=1;
1.207 albertel 2170: my $submitby='<b>Part:</b> '.$display_part.
2171: ' <b>Collaborative submission by:</b> '.
1.151 albertel 2172: '<a href="javascript:viewSubmitter(\''.
1.257 albertel 2173: $env{"form.$uname:$udom:$partid:submitted_by"}.
1.417 albertel 2174: '\');" target="_self">'.
1.257 albertel 2175: $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151 albertel 2176: $request->print($submitby);
2177: next;
2178: }
2179: my $responsetype = $responseType->{$partid}->{$respid};
2180: if (!exists($record{"resource.$partid.$respid.submission"})) {
1.577 bisitz 2181: $lastsubonly.="\n".'<div class="LC_grade_submission_part">'.
2182: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2183: ' <span class="LC_internal_info">'.
1.623 www 2184: '('.&mt('Response ID: [_1]',$respid).')'.
1.577 bisitz 2185: '</span> '.
1.539 riegler 2186: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br /><br /></div>';
1.151 albertel 2187: next;
2188: }
1.468 albertel 2189: foreach my $submission (@$string) {
2190: my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375 albertel 2191: if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.596 raeburn 2192: my ($ressub,$hide,$subval) = split(/:/,$submission,3);
1.151 albertel 2193: # Similarity check
2194: my $similar='';
1.640 raeburn 2195: my ($type,$trial,$rndseed);
2196: if ($hide eq 'rand') {
2197: $type = 'randomizetry';
2198: $trial = $record{"resource.$partid.tries"};
2199: $rndseed = $record{"resource.$partid.rndseed"};
2200: }
1.257 albertel 2201: if($env{'form.checkPlag'}){
1.151 albertel 2202: my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.674 raeburn 2203: &most_similar($uname,$udom,$symb,$subval);
1.151 albertel 2204: if ($osim) {
2205: $osim=int($osim*100.0);
1.426 albertel 2206: my %old_course_desc =
2207: &Apache::lonnet::coursedescription($ocrsid,
2208: {'one_time' => 1});
2209:
1.640 raeburn 2210: if ($hide eq 'anon') {
1.596 raeburn 2211: $similar='<hr /><span class="LC_warning">'.&mt("Essay was found to be similar to another essay submitted for this assignment.").'<br />'.
2212: &mt('As the current submission is for an anonymous survey, no other details are available.').'</span><hr />';
2213: } else {
2214: $similar="<hr /><h3><span class=\"LC_warning\">".
2215: &mt('Essay is [_1]% similar to an essay by [_2] in course [_3] (course id [_4]:[_5])',
2216: $osim,
2217: &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')',
2218: $old_course_desc{'description'},
2219: $old_course_desc{'num'},
2220: $old_course_desc{'domain'}).
2221: '</span></h3><blockquote><i>'.
2222: &keywords_highlight($oessay).
2223: '</i></blockquote><hr />';
2224: }
1.151 albertel 2225: }
1.150 albertel 2226: }
1.640 raeburn 2227: my $order=&get_order($partid,$respid,$symb,$uname,$udom,
2228: undef,$type,$trial,$rndseed);
1.257 albertel 2229: if ($env{'form.lastSub'} eq 'lastonly' ||
2230: ($env{'form.lastSub'} eq 'hdgrade' &&
1.377 albertel 2231: $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324 albertel 2232: my $display_part=&get_display_part($partid,$symb);
1.577 bisitz 2233: $lastsubonly.='<div class="LC_grade_submission_part">'.
2234: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2235: ' <span class="LC_internal_info">'.
1.623 www 2236: '('.&mt('Response ID: [_1]',$respid).')'.
1.597 wenzelju 2237: '</span> ';
1.313 banghart 2238: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
2239: if (@$files) {
1.640 raeburn 2240: if ($hide eq 'anon') {
1.596 raeburn 2241: $lastsubonly.='<br />'.&mt('[quant,_1,file] uploaded to this anonymous survey',scalar(@{$files}));
2242: } else {
2243: $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain viruses').'</span><br />';
2244: foreach my $file (@$files) {
2245: &Apache::lonnet::allowuploaded('/adm/grades',$file);
2246: $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border="0" /> '.$file.'</a>';
2247: }
2248: }
1.236 albertel 2249: $lastsubonly.='<br />';
1.41 ng 2250: }
1.640 raeburn 2251: if ($hide eq 'anon') {
1.596 raeburn 2252: $lastsubonly.='<b>'.&mt('Anonymous Survey').'</b>';
2253: } else {
2254: $lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
2255: &cleanRecord($subval,$responsetype,$symb,$partid,
1.640 raeburn 2256: $respid,\%record,$order,undef,$uname,$udom,$type,$trial,$rndseed);
1.596 raeburn 2257: }
1.151 albertel 2258: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468 albertel 2259: $lastsubonly.='</div>';
1.41 ng 2260: }
2261: }
2262: }
1.588 bisitz 2263: $lastsubonly.='</div>'."\n"; # End: LC_grade_submissions_body
1.151 albertel 2264: }
2265: $request->print($lastsubonly);
1.468 albertel 2266: } elsif ($env{'form.lastSub'} eq 'datesub') {
1.623 www 2267: my ($parts,$handgrade,$responseType) = &response_type($symb,\$res_error);
1.148 albertel 2268: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257 albertel 2269: } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41 ng 2270: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 2271: $env{'request.course.id'},
1.44 ng 2272: $last,'.submission',
2273: 'Apache::grades::keywords_highlight'));
1.41 ng 2274: }
1.121 ng 2275: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
2276: .$udom.'" />'."\n");
1.44 ng 2277: # return if view submission with no grading option
1.618 www 2278: if (!&canmodify($usec)) {
1.633 www 2279: $request->print('<p><span class="LC_warning">'.&mt('No grading privileges').'</span></p></div>');
1.41 ng 2280: return;
1.180 albertel 2281: } else {
1.468 albertel 2282: $request->print('</div>'."\n");
1.41 ng 2283: }
1.33 ng 2284:
1.121 ng 2285: # essay grading message center
1.624 www 2286: # if ($env{'form.handgrade'} eq 'yes') {
2287: if (1) {
1.468 albertel 2288: my $result='<div class="LC_grade_message_center">';
2289:
2290: $result.='<div class="LC_grade_message_center_header">'.
2291: &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257 albertel 2292: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 2293: my $msgfor = $givenn.' '.$lastname;
1.464 albertel 2294: if (scalar(@$col_fullnames) > 0) {
2295: my $lastone = pop(@$col_fullnames);
2296: $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118 ng 2297: }
2298: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468 albertel 2299: $result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121 ng 2300: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
2301: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417 albertel 2302: ',\''.$msgfor.'\');" target="_self">'.
1.464 albertel 2303: &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
1.350 albertel 2304: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.118 ng 2305: '<img src="'.$request->dir_config('lonIconsURL').
2306: '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298 www 2307: '<br /> ('.
1.468 albertel 2308: &mt('Message will be sent when you click on Save & Next below.').")\n";
2309: $result.='</div></div>';
1.121 ng 2310: $request->print($result);
1.118 ng 2311: }
1.41 ng 2312:
2313: my %seen = ();
2314: my @partlist;
1.129 ng 2315: my @gradePartRespid;
1.375 albertel 2316: my @part_response_id = &flatten_responseType($responseType);
1.585 bisitz 2317: $request->print(
1.588 bisitz 2318: '<div class="LC_Box">'
2319: .'<h3 class="LC_hcell">'.&mt('Assign Grades').'</h3>'
1.585 bisitz 2320: );
1.592 bisitz 2321: $request->print(&gradeBox_start());
1.375 albertel 2322: foreach my $part_response_id (@part_response_id) {
2323: my ($partid,$respid) = @{ $part_response_id };
2324: my $part_resp = join('_',@{ $part_response_id });
1.322 albertel 2325: next if ($seen{$partid} > 0);
1.41 ng 2326: $seen{$partid}++;
1.393 albertel 2327: next if ($$handgrade{$part_resp} ne 'yes'
2328: && $env{'form.lastSub'} eq 'hdgrade');
1.524 raeburn 2329: push(@partlist,$partid);
2330: push(@gradePartRespid,$partid.'.'.$respid);
1.322 albertel 2331: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 2332: }
1.585 bisitz 2333: $request->print(&gradeBox_end()); # </div>
2334: $request->print('</div>');
1.468 albertel 2335:
2336: $request->print('<div class="LC_grade_info_links">');
2337: $request->print('</div>');
2338:
1.45 ng 2339: $result='<input type="hidden" name="partlist'.$counter.
2340: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 2341: $result.='<input type="hidden" name="gradePartRespid'.
2342: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 2343: my $ctr = 0;
2344: while ($ctr < scalar(@partlist)) {
2345: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
2346: $partlist[$ctr].'" />'."\n";
2347: $ctr++;
2348: }
1.468 albertel 2349: $request->print($result.''."\n");
1.41 ng 2350:
1.441 www 2351: # Done with printing info for one student
2352:
1.468 albertel 2353: $request->print('</div>');#LC_grade_show_user
1.441 www 2354:
2355:
1.41 ng 2356: # print end of form
2357: if ($counter == $total) {
1.592 bisitz 2358: my $endform='<br /><hr /><table border="0"><tr><td>'."\n";
1.485 albertel 2359: $endform.='<input type="button" value="'.&mt('Save & Next').'" '.
1.589 bisitz 2360: 'onclick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417 albertel 2361: $total.','.scalar(@partlist).');" target="_self" /> '."\n";
1.119 ng 2362: my $ntstu ='<select name="NTSTU">'.
2363: '<option>1</option><option>2</option>'.
2364: '<option>3</option><option>5</option>'.
2365: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 2366: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401 albertel 2367: $ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.578 raeburn 2368: $endform.=&mt('[_1]student(s)',$ntstu);
1.485 albertel 2369: $endform.=' <input type="button" value="'.&mt('Previous').'" '.
1.589 bisitz 2370: 'onclick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> '."\n".
1.485 albertel 2371: '<input type="button" value="'.&mt('Next').'" '.
1.589 bisitz 2372: 'onclick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> ';
1.592 bisitz 2373: $endform.='<span class="LC_warning">'.
2374: &mt('(Next and Previous (student) do not save the scores.)').
2375: '</span>'."\n" ;
1.349 albertel 2376: $endform.="<input type='hidden' value='".&get_increment().
1.348 bowersj2 2377: "' name='increment' />";
1.485 albertel 2378: $endform.='</td></tr></table></form>';
1.41 ng 2379: $request->print($endform);
2380: }
2381: return '';
1.38 ng 2382: }
2383:
1.464 albertel 2384: sub check_collaborators {
2385: my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
2386: my ($result,@col_fullnames);
2387: my ($classlist,undef,$fullname) = &getclasslist('all','0');
2388: foreach my $part (keys(%$handgrade)) {
2389: my $ncol = &Apache::lonnet::EXT('resource.'.$part.
2390: '.maxcollaborators',
2391: $symb,$udom,$uname);
2392: next if ($ncol <= 0);
2393: $part =~ s/\_/\./g;
2394: next if ($record->{'resource.'.$part.'.collaborators'} eq '');
2395: my (@good_collaborators, @bad_collaborators);
2396: foreach my $possible_collaborator
1.630 www 2397: (split(/[,;\s]+/,$record->{'resource.'.$part.'.collaborators'})) {
1.464 albertel 2398: $possible_collaborator =~ s/[\$\^\(\)]//g;
2399: next if ($possible_collaborator eq '');
1.631 www 2400: my ($co_name,$co_dom) = split(/:/,$possible_collaborator);
1.464 albertel 2401: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
2402: next if ($co_name eq $uname && $co_dom eq $udom);
2403: # Doing this grep allows 'fuzzy' specification
2404: my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i,
2405: keys(%$classlist));
2406: if (! scalar(@matches)) {
2407: push(@bad_collaborators, $possible_collaborator);
2408: } else {
2409: push(@good_collaborators, @matches);
2410: }
2411: }
2412: if (scalar(@good_collaborators) != 0) {
1.630 www 2413: $result.='<br />'.&mt('Collaborators:').'<ol>';
1.464 albertel 2414: foreach my $name (@good_collaborators) {
2415: my ($lastname,$givenn) = split(/,/,$$fullname{$name});
2416: push(@col_fullnames, $givenn.' '.$lastname);
1.630 www 2417: $result.='<li>'.$fullname->{$name}.'</li>';
1.464 albertel 2418: }
1.630 www 2419: $result.='</ol><br />'."\n";
1.466 albertel 2420: my ($part)=split(/\./,$part);
1.464 albertel 2421: $result.='<input type="hidden" name="collaborator'.$counter.
2422: '" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
2423: "\n";
2424: }
2425: if (scalar(@bad_collaborators) > 0) {
1.466 albertel 2426: $result.='<div class="LC_warning">';
1.464 albertel 2427: $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
2428: $result .= '</div>';
2429: }
2430: if (scalar(@bad_collaborators > $ncol)) {
1.466 albertel 2431: $result .= '<div class="LC_warning">';
1.464 albertel 2432: $result .= &mt('This student has submitted too many '.
2433: 'collaborators. Maximum is [_1].',$ncol);
2434: $result .= '</div>';
2435: }
2436: }
2437: return ($result,$fullname,\@col_fullnames);
2438: }
2439:
1.44 ng 2440: #--- Retrieve the last submission for all the parts
1.38 ng 2441: sub get_last_submission {
1.119 ng 2442: my ($returnhash)=@_;
1.596 raeburn 2443: my (@string,$timestamp,%lasthidden);
1.119 ng 2444: if ($$returnhash{'version'}) {
1.46 ng 2445: my %lasthash=();
2446: my ($version);
1.119 ng 2447: for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397 albertel 2448: foreach my $key (sort(split(/\:/,
2449: $$returnhash{$version.':keys'}))) {
2450: $lasthash{$key}=$$returnhash{$version.':'.$key};
2451: $timestamp =
1.545 raeburn 2452: &Apache::lonlocal::locallocaltime($$returnhash{$version.':timestamp'});
1.46 ng 2453: }
2454: }
1.640 raeburn 2455: my (%typeparts,%randombytry);
1.596 raeburn 2456: my $showsurv =
2457: &Apache::lonnet::allowed('vas',$env{'request.course.id'});
2458: foreach my $key (sort(keys(%lasthash))) {
2459: if ($key =~ /\.type$/) {
2460: if (($lasthash{$key} eq 'anonsurvey') ||
1.640 raeburn 2461: ($lasthash{$key} eq 'anonsurveycred') ||
2462: ($lasthash{$key} eq 'randomizetry')) {
1.596 raeburn 2463: my ($ign,@parts) = split(/\./,$key);
2464: pop(@parts);
1.641 raeburn 2465: my $id = join('.',@parts);
1.640 raeburn 2466: if ($lasthash{$key} eq 'randomizetry') {
2467: $randombytry{$ign.'.'.$id} = $lasthash{$key};
2468: } else {
2469: unless ($showsurv) {
2470: $typeparts{$ign.'.'.$id} = $lasthash{$key};
2471: }
1.596 raeburn 2472: }
2473: delete($lasthash{$key});
2474: }
2475: }
2476: }
2477: my @hidden = keys(%typeparts);
1.640 raeburn 2478: my @randomize = keys(%randombytry);
1.397 albertel 2479: foreach my $key (keys(%lasthash)) {
2480: next if ($key !~ /\.submission$/);
1.596 raeburn 2481: my $hide;
2482: if (@hidden) {
2483: foreach my $id (@hidden) {
2484: if ($key =~ /^\Q$id\E/) {
1.640 raeburn 2485: $hide = 'anon';
1.596 raeburn 2486: last;
2487: }
2488: }
2489: }
1.640 raeburn 2490: unless ($hide) {
2491: if (@randomize) {
2492: foreach my $id (@hidden) {
2493: if ($key =~ /^\Q$id\E/) {
2494: $hide = 'rand';
2495: last;
2496: }
2497: }
2498: }
2499: }
1.397 albertel 2500: my ($partid,$foo) = split(/submission$/,$key);
2501: my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
1.398 albertel 2502: '<span class="LC_warning">Draft Copy</span> ' : '';
1.596 raeburn 2503: push(@string, join(':', $key, $hide, $draft.$lasthash{$key}));
1.41 ng 2504: }
2505: }
1.397 albertel 2506: if (!@string) {
2507: $string[0] =
1.539 riegler 2508: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span>';
1.397 albertel 2509: }
2510: return (\@string,\$timestamp);
1.38 ng 2511: }
1.35 ng 2512:
1.44 ng 2513: #--- High light keywords, with style choosen by user.
1.38 ng 2514: sub keywords_highlight {
1.44 ng 2515: my $string = shift;
1.257 albertel 2516: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2517: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2518: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2519: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.398 albertel 2520: foreach my $keyword (@keylist) {
2521: $string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41 ng 2522: }
2523: return $string;
1.38 ng 2524: }
1.36 ng 2525:
1.671 raeburn 2526: # For Tasks provide a mechanism to display previous version for one specific student
2527:
2528: sub show_previous_task_version {
2529: my ($request,$symb) = @_;
2530: if ($symb eq '') {
2531: $request->print("Unable to handle ambiguous references.");
2532:
2533: return '';
2534: }
2535: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
2536: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
2537: if (!&canview($usec)) {
2538: $request->print('<span class="LC_warning">Unable to view previous version for requested student.('.
2539: $uname.':'.$udom.' in section '.$usec.' in course id '.
2540: $env{'request.course.id'}.')</span>');
2541: return;
2542: }
2543: my $mode = 'both';
2544: my $isTask = ($symb =~/\.task$/);
2545: if ($isTask) {
2546: if ($env{'form.previousversion'} =~ /^\d+$/) {
2547: if ($env{'form.fullname'} eq '') {
2548: $env{'form.fullname'} =
2549: &Apache::loncommon::plainname($uname,$udom,'lastname');
2550: }
2551: my $probtitle=&Apache::lonnet::gettitle($symb);
2552: $request->print("\n\n".
2553: '<div class="LC_grade_show_user">'.
2554: '<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
2555: '</h2>'."\n");
2556: &Apache::lonxml::clear_problem_counter();
2557: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,
2558: {'previousversion' => $env{'form.previousversion'} }));
2559: $request->print("\n</div>");
2560: }
2561: }
2562: return;
2563: }
2564:
2565: sub choose_task_version_form {
2566: my ($symb,$uname,$udom,$nomenu) = @_;
2567: my $isTask = ($symb =~/\.task$/);
2568: my ($current,$version,$result,$js,$displayed,$rowtitle);
2569: if ($isTask) {
2570: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
2571: $udom,$uname);
2572: if (($record{'resource.0.version'} eq '') ||
2573: ($record{'resource.0.version'} < 2)) {
2574: return ($record{'resource.0.version'},
2575: $record{'resource.0.version'},$result,$js);
2576: } else {
2577: $current = $record{'resource.0.version'};
2578: }
2579: if ($env{'form.previousversion'}) {
2580: $displayed = $env{'form.previousversion'};
2581: $rowtitle = &mt('Choose another version:')
2582: } else {
2583: $displayed = $current;
2584: $rowtitle = &mt('Show earlier version:');
2585: }
2586: $result = '<div class="LC_left_float">';
2587: my $list;
2588: my $numversions = 0;
2589: for (my $i=1; $i<=$record{'resource.0.version'}; $i++) {
2590: if ($i == $current) {
2591: if (!$env{'form.previousversion'} || $nomenu) {
2592: next;
2593: } else {
2594: $list .= '<option value="'.$i.'">'.&mt('Current').'</option>'."\n";
2595: $numversions ++;
2596: }
2597: } elsif (defined($record{'resource.'.$i.'.0.status'})) {
2598: unless ($i == $env{'form.previousversion'}) {
2599: $numversions ++;
2600: }
2601: $list .= '<option value="'.$i.'">'.$i.'</option>'."\n";
2602: }
2603: }
2604: if ($numversions) {
2605: $symb = &HTML::Entities::encode($symb,'<>"&');
2606: $result .=
2607: '<form name="getprev" method="post" action=""'.
2608: ' onsubmit="return previousVersion('."'$uname','$udom','$symb','$displayed'".');">'.
2609: &Apache::loncommon::start_data_table().
2610: &Apache::loncommon::start_data_table_row().
2611: '<th align="left">'.$rowtitle.'</th>'.
2612: '<td><select name="version">'.
2613: '<option>'.&mt('Select').'</option>'.
2614: $list.
2615: '</select></td>'.
2616: &Apache::loncommon::end_data_table_row();
2617: unless ($nomenu) {
2618: $result .= &Apache::loncommon::start_data_table_row().
2619: '<th align="left">'.&mt('Open in new window').'</th>'.
2620: '<td><span class="LC_nobreak">'.
2621: '<label><input type="radio" name="prevwin" value="1" />'.
2622: &mt('Yes').'</label>'.
2623: '<label><input type="radio" name="prevwin" value="0" checked="checked" />'.&mt('No').'</label>'.
2624: '</span></td>'.
2625: &Apache::loncommon::end_data_table_row();
2626: }
2627: $result .=
2628: &Apache::loncommon::start_data_table_row().
2629: '<th align="left"> </th>'.
2630: '<td>'.
2631: '<input type="submit" name="prevsub" value="'.&mt('Display').'" />'.
2632: '</td>'.
2633: &Apache::loncommon::end_data_table_row().
2634: &Apache::loncommon::end_data_table().
2635: '</form>';
2636: $js = &previous_display_javascript($nomenu,$current);
2637: } elsif ($displayed && $nomenu) {
2638: $result .= '<a href="javascript:window.close()">'.&mt('Close window').'</a>';
2639: } else {
2640: $result .= &mt('No previous versions to show for this student');
2641: }
2642: $result .= '</div>';
2643: }
2644: return ($current,$displayed,$result,$js);
2645: }
2646:
2647: sub previous_display_javascript {
2648: my ($nomenu,$current) = @_;
2649: my $js = <<"JSONE";
2650: <script type="text/javascript">
2651: // <![CDATA[
2652: function previousVersion(uname,udom,symb) {
2653: var current = '$current';
2654: var version = document.getprev.version.options[document.getprev.version.selectedIndex].value;
2655: var prevstr = new RegExp("^\\\\d+\$");
2656: if (!prevstr.test(version)) {
2657: return false;
2658: }
2659: var url = '';
2660: if (version == current) {
2661: url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=submission';
2662: } else {
2663: url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=versionsub&previousversion='+version;
2664: }
2665: JSONE
2666: if ($nomenu) {
2667: $js .= <<"JSTWO";
2668: document.location.href = url;
2669: JSTWO
2670: } else {
2671: $js .= <<"JSTHREE";
2672: var newwin = 0;
2673: for (var i=0; i<document.getprev.prevwin.length; i++) {
2674: if (document.getprev.prevwin[i].checked == true) {
2675: newwin = document.getprev.prevwin[i].value;
2676: }
2677: }
2678: if (newwin == 1) {
2679: var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
2680: url = url+'&inhibitmenu=yes';
2681: if (typeof(previousWin) == 'undefined' || previousWin.closed) {
2682: previousWin = window.open(url,'',options,1);
2683: } else {
2684: previousWin.location.href = url;
2685: }
2686: previousWin.focus();
2687: return false;
2688: } else {
2689: document.location.href = url;
2690: return false;
2691: }
2692: JSTHREE
2693: }
2694: $js .= <<"ENDJS";
2695: return false;
2696: }
2697: // ]]>
2698: </script>
2699: ENDJS
2700:
2701: }
2702:
1.44 ng 2703: #--- Called from submission routine
1.38 ng 2704: sub processHandGrade {
1.608 www 2705: my ($request,$symb) = @_;
1.324 albertel 2706: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2707: my $button = $env{'form.gradeOpt'};
2708: my $ngrade = $env{'form.NCT'};
2709: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2710: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2711: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2712:
1.44 ng 2713: if ($button eq 'Save & Next') {
2714: my $ctr = 0;
2715: while ($ctr < $ngrade) {
1.257 albertel 2716: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324 albertel 2717: my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2718: if ($errorflag eq 'no_score') {
2719: $ctr++;
2720: next;
2721: }
1.104 albertel 2722: if ($errorflag eq 'not_allowed') {
1.398 albertel 2723: $request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
1.104 albertel 2724: $ctr++;
2725: next;
2726: }
1.257 albertel 2727: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2728: my ($subject,$message,$msgstatus) = ('','','');
1.418 albertel 2729: my $restitle = &Apache::lonnet::gettitle($symb);
2730: my ($feedurl,$showsymb) =
2731: &get_feedurl_and_symb($symb,$uname,$udom);
2732: my $messagetail;
1.62 albertel 2733: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2734: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2735: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386 raeburn 2736: $subject.=' ['.$restitle.']';
1.44 ng 2737: my (@msgnum) = split(/,/,$includemsg);
2738: foreach (@msgnum) {
1.257 albertel 2739: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2740: }
1.80 ng 2741: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2742: if ($env{'form.withgrades'.$ctr}) {
2743: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386 raeburn 2744: $messagetail = " for <a href=\"".
1.605 www 2745: $feedurl."?symb=$showsymb\">$restitle</a>";
1.386 raeburn 2746: }
2747: $msgstatus =
2748: &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
2749: $message.$messagetail,
1.418 albertel 2750: undef,$feedurl,undef,
1.386 raeburn 2751: undef,undef,$showsymb,
2752: $restitle);
1.574 bisitz 2753: $request->print('<br />'.&mt('Sending message to [_1]',$uname.':'.$udom).': '.
1.652 raeburn 2754: $msgstatus.'<br />');
1.44 ng 2755: }
1.257 albertel 2756: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2757: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2758: foreach my $collabstr (@collabstrs) {
2759: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2760: foreach my $collaborator (@collaborators) {
1.150 albertel 2761: my ($errorflag,$pts,$wgt) =
1.324 albertel 2762: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2763: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2764: if ($errorflag eq 'not_allowed') {
1.362 albertel 2765: $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150 albertel 2766: next;
1.418 albertel 2767: } elsif ($message ne '') {
2768: my ($baseurl,$showsymb) =
2769: &get_feedurl_and_symb($symb,$collaborator,
2770: $udom);
2771: if ($env{'form.withgrades'.$ctr}) {
2772: $messagetail = " for <a href=\"".
1.605 www 2773: $baseurl."?symb=$showsymb\">$restitle</a>";
1.150 albertel 2774: }
1.418 albertel 2775: $msgstatus =
2776: &Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104 albertel 2777: }
1.44 ng 2778: }
2779: }
2780: }
2781: $ctr++;
2782: }
2783: }
2784:
1.624 www 2785: # if ($env{'form.handgrade'} eq 'yes') {
2786: if (1) {
1.119 ng 2787: # Keywords sorted in alphabatical order
1.257 albertel 2788: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 2789: my %keyhash = ();
1.257 albertel 2790: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
2791: $env{'form.keywords'} =~ s/^\s+|\s+$//;
2792: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
2793: $env{'form.keywords'} = join(' ',@keywords);
2794: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
2795: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
2796: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
2797: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
2798: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 2799:
2800: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 2801: # New messages are saved in env for the next student.
1.119 ng 2802: # All messages are saved in nohist_handgrade.db
2803: my ($ctr,$idx) = (1,1);
1.257 albertel 2804: while ($ctr <= $env{'form.savemsgN'}) {
2805: if ($env{'form.savemsg'.$ctr} ne '') {
2806: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 2807: $idx++;
2808: }
2809: $ctr++;
1.41 ng 2810: }
1.119 ng 2811: $ctr = 0;
2812: while ($ctr < $ngrade) {
1.257 albertel 2813: if ($env{'form.newmsg'.$ctr} ne '') {
2814: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
2815: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 2816: $idx++;
2817: }
2818: $ctr++;
1.41 ng 2819: }
1.257 albertel 2820: $env{'form.savemsgN'} = --$idx;
2821: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 2822: my $putresult = &Apache::lonnet::put
1.301 albertel 2823: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 2824: }
1.44 ng 2825: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 2826: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
2827: if ($env{'form.refresh'} eq 'on') {
1.86 ng 2828: my ($ctr,$total) = (0,0);
2829: while ($ctr < $ngrade) {
1.257 albertel 2830: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 2831: $ctr++;
2832: }
1.257 albertel 2833: $env{'form.NTSTU'}=$ngrade;
1.86 ng 2834: $ctr = 0;
2835: while ($ctr < $total) {
1.257 albertel 2836: my $processUser = $env{'form.unamedom'.$ctr};
2837: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2838: $env{'form.fullname'} = $$fullname{$processUser};
1.625 www 2839: &submission($request,$ctr,$total-1,$symb);
1.41 ng 2840: $ctr++;
2841: }
2842: return '';
2843: }
1.36 ng 2844:
1.44 ng 2845: # Get the next/previous one or group of students
1.257 albertel 2846: my $firststu = $env{'form.unamedom0'};
2847: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 2848: my $ctr = 2;
1.41 ng 2849: while ($laststu eq '') {
1.257 albertel 2850: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 2851: $ctr++;
2852: $laststu = $firststu if ($ctr > $ngrade);
2853: }
1.44 ng 2854:
1.41 ng 2855: my (@parsedlist,@nextlist);
2856: my ($nextflg) = 0;
1.524 raeburn 2857: foreach my $item (sort
1.294 albertel 2858: {
2859: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2860: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2861: }
2862: return $a cmp $b;
2863: } (keys(%$fullname))) {
1.605 www 2864: # FIXME: this is fishy, looks like the button label
1.41 ng 2865: if ($nextflg == 1 && $button =~ /Next$/) {
1.524 raeburn 2866: push(@parsedlist,$item);
1.41 ng 2867: }
1.524 raeburn 2868: $nextflg = 1 if ($item eq $laststu);
1.41 ng 2869: if ($button eq 'Previous') {
1.524 raeburn 2870: last if ($item eq $firststu);
2871: push(@parsedlist,$item);
1.41 ng 2872: }
2873: }
2874: $ctr = 0;
1.605 www 2875: # FIXME: this is fishy, looks like the button label
1.41 ng 2876: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.582 raeburn 2877: my $res_error;
2878: my ($partlist) = &response_type($symb,\$res_error);
2879: if ($res_error) {
2880: $request->print(&navmap_errormsg());
2881: return;
2882: }
1.41 ng 2883: foreach my $student (@parsedlist) {
1.257 albertel 2884: my $submitonly=$env{'form.submitonly'};
1.41 ng 2885: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 2886:
2887: if ($submitonly eq 'queued') {
2888: my %queue_status =
2889: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
2890: $udom,$uname);
2891: next if (!defined($queue_status{'gradingqueue'}));
2892: }
2893:
1.156 albertel 2894: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 2895: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2896: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 2897: my $submitted = 0;
1.248 albertel 2898: my $ungraded = 0;
2899: my $incorrect = 0;
1.524 raeburn 2900: foreach my $item (keys(%status)) {
2901: $submitted = 1 if ($status{$item} ne 'nothing');
2902: $ungraded = 1 if ($status{$item} =~ /^ungraded/);
2903: $incorrect = 1 if ($status{$item} =~ /^incorrect/);
2904: my ($foo,$partid,$foo1) = split(/\./,$item);
1.145 albertel 2905: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
2906: $submitted = 0;
2907: }
1.41 ng 2908: }
1.156 albertel 2909: next if (!$submitted && ($submitonly eq 'yes' ||
2910: $submitonly eq 'incorrect' ||
2911: $submitonly eq 'graded'));
1.248 albertel 2912: next if (!$ungraded && ($submitonly eq 'graded'));
2913: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 2914: }
1.524 raeburn 2915: push(@nextlist,$student) if ($ctr < $ntstu);
1.129 ng 2916: last if ($ctr == $ntstu);
1.41 ng 2917: $ctr++;
2918: }
1.36 ng 2919:
1.41 ng 2920: $ctr = 0;
2921: my $total = scalar(@nextlist)-1;
1.39 ng 2922:
1.524 raeburn 2923: foreach (sort(@nextlist)) {
1.41 ng 2924: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 2925: $env{'form.student'} = $uname;
2926: $env{'form.userdom'} = $udom;
2927: $env{'form.fullname'} = $$fullname{$_};
1.625 www 2928: &submission($request,$ctr,$total,$symb);
1.41 ng 2929: $ctr++;
2930: }
2931: if ($total < 0) {
1.653 raeburn 2932: my $the_end.='<p>'.&mt('[_1]Message:[_2] No more students for this section or class.','<b>','</b>').'</p>'."\n";
1.41 ng 2933: $request->print($the_end);
2934: }
2935: return '';
1.38 ng 2936: }
1.36 ng 2937:
1.44 ng 2938: #---- Save the score and award for each student, if changed
1.38 ng 2939: sub saveHandGrade {
1.324 albertel 2940: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 2941: my @version_parts;
1.104 albertel 2942: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 2943: $env{'request.course.id'});
1.104 albertel 2944: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 2945: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 2946: my @parts_graded;
1.77 ng 2947: my %newrecord = ();
2948: my ($pts,$wgt) = ('','');
1.269 raeburn 2949: my %aggregate = ();
2950: my $aggregateflag = 0;
1.301 albertel 2951: my @parts = split(/:/,$env{'form.partlist'.$newflg});
2952: foreach my $new_part (@parts) {
1.337 banghart 2953: #collaborator ($submi may vary for different parts
1.259 banghart 2954: if ($submitter && $new_part ne $part) { next; }
2955: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 2956: if ($dropMenu eq 'excused') {
1.259 banghart 2957: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
2958: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
2959: if (exists($record{'resource.'.$new_part.'.awarded'})) {
2960: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 2961: }
1.364 banghart 2962: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 2963: }
1.125 ng 2964: } elsif ($dropMenu eq 'reset status'
1.259 banghart 2965: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.524 raeburn 2966: foreach my $key (keys(%record)) {
1.259 banghart 2967: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 2968: }
1.259 banghart 2969: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2970: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 2971: my $totaltries = $record{'resource.'.$part.'.tries'};
2972:
2973: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
2974: [$new_part]);
2975: my $aggtries =$totaltries;
1.269 raeburn 2976: if ($last_resets{$new_part}) {
1.270 albertel 2977: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
2978: $new_part);
1.269 raeburn 2979: }
1.270 albertel 2980:
2981: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 2982: if ($aggtries > 0) {
1.327 albertel 2983: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 2984: $aggregateflag = 1;
2985: }
1.125 ng 2986: } elsif ($dropMenu eq '') {
1.259 banghart 2987: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
2988: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
2989: $env{'form.RADVAL'.$newflg.'_'.$new_part});
2990: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 2991: next;
2992: }
1.259 banghart 2993: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
2994: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 2995: my $partial= $pts/$wgt;
1.259 banghart 2996: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 2997: #do not update score for part if not changed.
1.346 banghart 2998: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 2999: next;
1.251 banghart 3000: } else {
1.524 raeburn 3001: push(@parts_graded,$new_part);
1.153 albertel 3002: }
1.259 banghart 3003: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
3004: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 3005: }
1.259 banghart 3006: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 3007: if ($partial == 0) {
1.153 albertel 3008: if ($record{$reckey} ne 'incorrect_by_override') {
3009: $newrecord{$reckey} = 'incorrect_by_override';
3010: }
1.41 ng 3011: } else {
1.153 albertel 3012: if ($record{$reckey} ne 'correct_by_override') {
3013: $newrecord{$reckey} = 'correct_by_override';
3014: }
3015: }
3016: if ($submitter &&
1.259 banghart 3017: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
3018: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 3019: }
1.259 banghart 3020: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 3021: "$env{'user.name'}:$env{'user.domain'}";
1.41 ng 3022: }
1.259 banghart 3023: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 3024: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
3025: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
3026: $dropMenu eq 'reset status')
3027: {
1.524 raeburn 3028: push(@version_parts,$new_part);
1.259 banghart 3029: }
1.41 ng 3030: }
1.301 albertel 3031: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3032: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3033:
1.344 albertel 3034: if (%newrecord) {
3035: if (@version_parts) {
1.364 banghart 3036: my @changed_keys = &version_portfiles(\%record, \@parts_graded,
3037: $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 3038: @newrecord{@changed_keys} = @record{@changed_keys};
1.367 albertel 3039: foreach my $new_part (@version_parts) {
3040: &handback_files($request,$symb,$stuname,$domain,$newflg,
3041: $new_part,\%newrecord);
3042: }
1.259 banghart 3043: }
1.44 ng 3044: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 3045: $env{'request.course.id'},$domain,$stuname);
1.380 albertel 3046: &check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
3047: $cdom,$cnum,$domain,$stuname);
1.41 ng 3048: }
1.269 raeburn 3049: if ($aggregateflag) {
3050: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3051: $cdom,$cnum);
1.269 raeburn 3052: }
1.301 albertel 3053: return ('',$pts,$wgt);
1.36 ng 3054: }
1.322 albertel 3055:
1.380 albertel 3056: sub check_and_remove_from_queue {
3057: my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
3058: my @ungraded_parts;
3059: foreach my $part (@{$parts}) {
3060: if ( $record->{ 'resource.'.$part.'.awarded'} eq ''
3061: && $record->{ 'resource.'.$part.'.solved' } ne 'excused'
3062: && $newrecord->{'resource.'.$part.'.awarded'} eq ''
3063: && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
3064: ) {
3065: push(@ungraded_parts, $part);
3066: }
3067: }
3068: if ( !@ungraded_parts ) {
3069: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
3070: $cnum,$domain,$stuname);
3071: }
3072: }
3073:
1.337 banghart 3074: sub handback_files {
3075: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.517 raeburn 3076: my $portfolio_root = '/userfiles/portfolio';
1.582 raeburn 3077: my $res_error;
3078: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3079: if ($res_error) {
3080: $request->print('<br />'.&navmap_errormsg().'<br />');
3081: return;
3082: }
1.654 raeburn 3083: my @handedback;
3084: my $file_msg;
1.375 albertel 3085: my @part_response_id = &flatten_responseType($responseType);
3086: foreach my $part_response_id (@part_response_id) {
3087: my ($part_id,$resp_id) = @{ $part_response_id };
3088: my $part_resp = join('_',@{ $part_response_id });
1.654 raeburn 3089: if (($env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'} =~ /^\d+$/) & ($new_part eq $part_id)) {
3090: for (my $counter=1; $counter<=$env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'}; $counter++) {
3091: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
3092: if ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter}) {
3093: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter.'.filename'};
1.338 banghart 3094: my ($directory,$answer_file) =
1.654 raeburn 3095: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter} =~ /^(.*?)([^\/]*)$/);
1.338 banghart 3096: my ($answer_name,$answer_ver,$answer_ext) =
3097: &file_name_version_ext($answer_file);
1.355 banghart 3098: my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.517 raeburn 3099: my $getpropath = 1;
1.662 raeburn 3100: my ($dir_list,$listerror) =
3101: &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,
3102: $domain,$stuname,$getpropath);
3103: my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.355 banghart 3104: # fix file name
3105: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
3106: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
1.654 raeburn 3107: $newflg.'_'.$part_resp.'_returndoc'.$counter,
1.355 banghart 3108: $save_file_name);
1.337 banghart 3109: if ($result !~ m|^/uploaded/|) {
1.536 raeburn 3110: $request->print('<br /><span class="LC_error">'.
3111: &mt('An error occurred ([_1]) while trying to upload [_2].',
1.654 raeburn 3112: $result,$newflg.'_'.$part_resp.'_returndoc'.$counter).
1.536 raeburn 3113: '</span>');
1.356 banghart 3114: } else {
1.360 banghart 3115: # mark the file as read only
1.654 raeburn 3116: push(@handedback,$save_file_name);
1.367 albertel 3117: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
3118: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
3119: }
3120: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
1.654 raeburn 3121: $file_msg.= '<span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span> <br />";
1.337 banghart 3122: }
1.654 raeburn 3123: $request->print('<br />'.&mt('[_1] will be the uploaded file name [_2]','<span class="LC_info">'.$fname.'</span>','<span class="LC_filename">'.$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter}.'</span>'));
1.337 banghart 3124: }
3125: }
3126: }
1.654 raeburn 3127: }
3128: if (@handedback > 0) {
3129: $request->print('<br />');
3130: my @what = ($symb,$env{'request.course.id'},'handback');
3131: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@handedback,\@what);
3132: my $user_lh = &Apache::loncommon::user_lang($stuname,$domain,$env{'request.course.id'});
3133: my ($subject,$message);
3134: if (scalar(@handedback) == 1) {
3135: $subject = &mt_user($user_lh,'File Handed Back by Instructor');
3136: $message = &mt_user($user_lh,'A file has been returned that was originally submitted in response to: ');
3137: } else {
3138: $subject = &mt_user($user_lh,'Files Handed Back by Instructor');
3139: $message = &mt_user($user_lh,'Files have been returned that were originally submitted in response to: ');
3140: }
3141: $message .= "<p><strong>".&Apache::lonnet::gettitle($symb)." </strong></p>";
3142: $message .= &mt_user($user_lh,'The returned file(s) are named: [_1]',"<br />$file_msg <br />").
3143: &mt_user($user_lh,'The file(s) can be found in your [_1]portfolio[_2].','<a href="/adm/portfolio">','</a>');
3144: my ($feedurl,$showsymb) =
3145: &get_feedurl_and_symb($symb,$domain,$stuname);
3146: my $restitle = &Apache::lonnet::gettitle($symb);
3147: $subject .= ' '.&mt_user($user_lh,'(File Returned)').' ['.$restitle.']';
3148: my $msgstatus =
3149: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject,
3150: $message,undef,$feedurl,undef,undef,undef,$showsymb,
3151: $restitle);
3152: if ($msgstatus) {
3153: $request->print(&mt('Notification message status: [_1]','<span class="LC_info">'.$msgstatus.'</span>').'<br />');
3154: }
3155: }
1.338 banghart 3156: return;
1.337 banghart 3157: }
3158:
1.418 albertel 3159: sub get_feedurl_and_symb {
3160: my ($symb,$uname,$udom) = @_;
3161: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
3162: $url = &Apache::lonnet::clutter($url);
3163: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
3164: $symb,$udom,$uname);
3165: if ($encrypturl =~ /^yes$/i) {
3166: &Apache::lonenc::encrypted(\$url,1);
3167: &Apache::lonenc::encrypted(\$symb,1);
3168: }
3169: return ($url,$symb);
3170: }
3171:
1.313 banghart 3172: sub get_submitted_files {
3173: my ($udom,$uname,$partid,$respid,$record) = @_;
3174: my @files;
3175: if ($$record{"resource.$partid.$respid.portfiles"}) {
3176: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
3177: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
3178: push(@files,$file_url.$file);
3179: }
3180: }
3181: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
3182: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
3183: }
3184: return (\@files);
3185: }
1.322 albertel 3186:
1.269 raeburn 3187: # ----------- Provides number of tries since last reset.
3188: sub get_num_tries {
3189: my ($record,$last_reset,$part) = @_;
3190: my $timestamp = '';
3191: my $num_tries = 0;
3192: if ($$record{'version'}) {
3193: for (my $version=$$record{'version'};$version>=1;$version--) {
3194: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
3195: $timestamp = $$record{$version.':timestamp'};
3196: if ($timestamp > $last_reset) {
3197: $num_tries ++;
3198: } else {
3199: last;
3200: }
3201: }
3202: }
3203: }
3204: return $num_tries;
3205: }
3206:
3207: # ----------- Determine decrements required in aggregate totals
3208: sub decrement_aggs {
3209: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
3210: my %decrement = (
3211: attempts => 0,
3212: users => 0,
3213: correct => 0
3214: );
3215: $decrement{'attempts'} = $aggtries;
3216: if ($solvedstatus =~ /^correct/) {
3217: $decrement{'correct'} = 1;
3218: }
3219: if ($aggtries == $totaltries) {
3220: $decrement{'users'} = 1;
3221: }
1.524 raeburn 3222: foreach my $type (keys(%decrement)) {
1.269 raeburn 3223: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
3224: }
3225: return;
3226: }
3227:
3228: # ----------- Determine timestamps for last reset of aggregate totals for parts
3229: sub get_last_resets {
1.270 albertel 3230: my ($symb,$courseid,$partids) =@_;
3231: my %last_resets;
1.269 raeburn 3232: my $cdom = $env{'course.'.$courseid.'.domain'};
3233: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 3234: my @keys;
3235: foreach my $part (@{$partids}) {
3236: push(@keys,"$symb\0$part\0resettime");
3237: }
3238: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
3239: $cdom,$cname);
3240: foreach my $part (@{$partids}) {
3241: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 3242: }
1.270 albertel 3243: return %last_resets;
1.269 raeburn 3244: }
3245:
1.251 banghart 3246: # ----------- Handles creating versions for portfolio files as answers
3247: sub version_portfiles {
1.343 banghart 3248: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 3249: my $version_parts = join('|',@$v_flag);
1.343 banghart 3250: my @returned_keys;
1.255 banghart 3251: my $parts = join('|', @$parts_graded);
1.517 raeburn 3252: my $portfolio_root = '/userfiles/portfolio';
1.277 albertel 3253: foreach my $key (keys(%$record)) {
1.259 banghart 3254: my $new_portfiles;
1.263 banghart 3255: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 3256: my @versioned_portfiles;
1.367 albertel 3257: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252 banghart 3258: foreach my $file (@portfiles) {
1.306 banghart 3259: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 3260: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
3261: my ($answer_name,$answer_ver,$answer_ext) =
3262: &file_name_version_ext($answer_file);
1.517 raeburn 3263: my $getpropath = 1;
1.662 raeburn 3264: my ($dir_list,$listerror) =
3265: &Apache::lonnet::dirlist($portfolio_root.$directory,$domain,
3266: $stu_name,$getpropath);
3267: my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.306 banghart 3268: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
3269: if ($new_answer ne 'problem getting file') {
1.342 banghart 3270: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 3271: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367 albertel 3272: [$directory.$new_answer],
1.306 banghart 3273: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 3274: }
1.252 banghart 3275: }
1.343 banghart 3276: $$record{$key} = join(',',@versioned_portfiles);
3277: push(@returned_keys,$key);
1.251 banghart 3278: }
3279: }
1.343 banghart 3280: return (@returned_keys);
1.305 banghart 3281: }
3282:
1.307 banghart 3283: sub get_next_version {
1.341 banghart 3284: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 3285: my $version;
1.662 raeburn 3286: if (ref($dir_list) eq 'ARRAY') {
3287: foreach my $row (@{$dir_list}) {
3288: my ($file) = split(/\&/,$row,2);
3289: my ($file_name,$file_version,$file_ext) =
3290: &file_name_version_ext($file);
3291: if (($file_name eq $answer_name) &&
3292: ($file_ext eq $answer_ext)) {
3293: # gets here if filename and extension match,
3294: # regardless of version
1.307 banghart 3295: if ($file_version ne '') {
1.662 raeburn 3296: # a versioned file is found so save it for later
3297: if ($file_version > $version) {
3298: $version = $file_version;
3299: }
3300: }
1.307 banghart 3301: }
3302: }
1.662 raeburn 3303: }
1.307 banghart 3304: $version ++;
3305: return($version);
3306: }
3307:
1.305 banghart 3308: sub version_selected_portfile {
1.306 banghart 3309: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
3310: my ($answer_name,$answer_ver,$answer_ext) =
3311: &file_name_version_ext($file_name);
3312: my $new_answer;
3313: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
3314: if($env{'form.copy'} eq '-1') {
3315: $new_answer = 'problem getting file';
3316: } else {
3317: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
3318: my $copy_result = &Apache::lonnet::finishuserfileupload(
3319: $stu_name,$domain,'copy',
3320: '/portfolio'.$directory.$new_answer);
3321: }
3322: return ($new_answer);
1.251 banghart 3323: }
3324:
1.304 albertel 3325: sub file_name_version_ext {
3326: my ($file)=@_;
3327: my @file_parts = split(/\./, $file);
3328: my ($name,$version,$ext);
3329: if (@file_parts > 1) {
3330: $ext=pop(@file_parts);
3331: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
3332: $version=pop(@file_parts);
3333: }
3334: $name=join('.',@file_parts);
3335: } else {
3336: $name=join('.',@file_parts);
3337: }
3338: return($name,$version,$ext);
3339: }
3340:
1.44 ng 3341: #--------------------------------------------------------------------------------------
3342: #
3343: #-------------------------- Next few routines handles grading by section or whole class
3344: #
3345: #--- Javascript to handle grading by section or whole class
1.42 ng 3346: sub viewgrades_js {
3347: my ($request) = shift;
3348:
1.539 riegler 3349: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.597 wenzelju 3350: $request->print(&Apache::lonhtmlcommon::scripttag(<<VIEWJAVASCRIPT));
1.45 ng 3351: function writePoint(partid,weight,point) {
1.125 ng 3352: var radioButton = document.classgrade["RADVAL_"+partid];
3353: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 3354: if (point == "textval") {
1.125 ng 3355: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 3356: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3357: alert("$alertmsg"+parseFloat(point));
1.42 ng 3358: var resetbox = false;
3359: for (var i=0; i<radioButton.length; i++) {
3360: if (radioButton[i].checked) {
3361: textbox.value = i;
3362: resetbox = true;
3363: }
3364: }
3365: if (!resetbox) {
3366: textbox.value = "";
3367: }
3368: return;
3369: }
1.109 matthew 3370: if (parseFloat(point) > parseFloat(weight)) {
3371: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3372: ") greater than the weight for the part. Accept?");
3373: if (resp == false) {
3374: textbox.value = "";
3375: return;
3376: }
3377: }
1.42 ng 3378: for (var i=0; i<radioButton.length; i++) {
3379: radioButton[i].checked=false;
1.109 matthew 3380: if (parseFloat(point) == i) {
1.42 ng 3381: radioButton[i].checked=true;
3382: }
3383: }
1.41 ng 3384:
1.42 ng 3385: } else {
1.125 ng 3386: textbox.value = parseFloat(point);
1.42 ng 3387: }
1.41 ng 3388: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3389: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3390: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3391: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3392: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3393: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3394: if (saveval != "correct") {
3395: scorename.value = point;
1.43 ng 3396: if (selname[0].selected != true) {
3397: selname[0].selected = true;
3398: }
1.42 ng 3399: }
3400: }
1.125 ng 3401: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3402: }
3403:
3404: function writeRadText(partid,weight) {
1.125 ng 3405: var selval = document.classgrade["SELVAL_"+partid];
3406: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3407: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3408: var textbox = document.classgrade["TEXTVAL_"+partid];
3409: if (selval[1].selected || selval[2].selected) {
1.42 ng 3410: for (var i=0; i<radioButton.length; i++) {
3411: radioButton[i].checked=false;
3412:
3413: }
3414: textbox.value = "";
3415:
3416: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3417: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3418: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3419: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3420: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3421: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3422: if ((saveval != "correct") || override) {
1.42 ng 3423: scorename.value = "";
1.125 ng 3424: if (selval[1].selected) {
3425: selname[1].selected = true;
3426: } else {
3427: selname[2].selected = true;
3428: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3429: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3430: }
1.42 ng 3431: }
3432: }
1.43 ng 3433: } else {
3434: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3435: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3436: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3437: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3438: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3439: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3440: if ((saveval != "correct") || override) {
1.125 ng 3441: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3442: selname[0].selected = true;
3443: }
3444: }
3445: }
1.42 ng 3446: }
3447:
3448: function changeSelect(partid,user) {
1.125 ng 3449: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3450: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3451: var point = textbox.value;
1.125 ng 3452: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3453:
1.109 matthew 3454: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3455: alert("$alertmsg"+parseFloat(point));
1.44 ng 3456: textbox.value = "";
3457: return;
3458: }
1.109 matthew 3459: if (parseFloat(point) > parseFloat(weight)) {
3460: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3461: ") greater than the weight of the part. Accept?");
3462: if (resp == false) {
3463: textbox.value = "";
3464: return;
3465: }
3466: }
1.42 ng 3467: selval[0].selected = true;
3468: }
3469:
3470: function changeOneScore(partid,user) {
1.125 ng 3471: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3472: if (selval[1].selected || selval[2].selected) {
3473: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3474: if (selval[2].selected) {
3475: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3476: }
1.269 raeburn 3477: }
1.42 ng 3478: }
3479:
3480: function resetEntry(numpart) {
3481: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3482: var partid = document.classgrade["partid_"+ctpart].value;
3483: var radioButton = document.classgrade["RADVAL_"+partid];
3484: var textbox = document.classgrade["TEXTVAL_"+partid];
3485: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3486: for (var i=0; i<radioButton.length; i++) {
3487: radioButton[i].checked=false;
3488:
3489: }
3490: textbox.value = "";
3491: selval[0].selected = true;
3492:
3493: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3494: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3495: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3496: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3497: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3498: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3499: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3500: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3501: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3502: if (saveselval == "excused") {
1.43 ng 3503: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3504: } else {
1.43 ng 3505: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3506: }
3507: }
1.41 ng 3508: }
1.42 ng 3509: }
3510:
1.41 ng 3511: VIEWJAVASCRIPT
1.42 ng 3512: }
3513:
1.44 ng 3514: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3515: sub viewgrades {
1.608 www 3516: my ($request,$symb) = @_;
1.42 ng 3517: &viewgrades_js($request);
1.41 ng 3518:
1.168 albertel 3519: #need to make sure we have the correct data for later EXT calls,
3520: #thus invalidate the cache
3521: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3522: $env{'course.'.$env{'request.course.id'}.'.num'},
3523: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3524: &Apache::lonnet::clear_EXT_cache_status();
3525:
1.398 albertel 3526: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
1.41 ng 3527:
3528: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3529: $result.=&jscriptNform($symb);
1.41 ng 3530:
1.44 ng 3531: #beginning of class grading form
1.442 banghart 3532: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3533: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3534: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3535: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3536: &build_section_inputs().
1.442 banghart 3537: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.72 ng 3538:
1.560 raeburn 3539: my ($common_header,$specific_header);
1.257 albertel 3540: if ($env{'form.section'} eq 'all') {
1.560 raeburn 3541: $common_header = &mt('Assign Common Grade to Class');
3542: $specific_header = &mt('Assign Grade to Specific Students in Class');
1.257 albertel 3543: } elsif ($env{'form.section'} eq 'none') {
1.560 raeburn 3544: $common_header = &mt('Assign Common Grade to Students in no Section');
3545: $specific_header = &mt('Assign Grade to Specific Students in no Section');
1.52 albertel 3546: } else {
1.560 raeburn 3547: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
3548: $common_header = &mt('Assign Common Grade to Students in Section(s) [_1]',$section_display);
3549: $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1]',$section_display);
1.52 albertel 3550: }
1.560 raeburn 3551: $result.= '<h3>'.$common_header.'</h3>'.&Apache::loncommon::start_data_table();
1.44 ng 3552: #radio buttons/text box for assigning points for a section or class.
3553: #handles different parts of a problem
1.582 raeburn 3554: my $res_error;
3555: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3556: if ($res_error) {
3557: return &navmap_errormsg();
3558: }
1.42 ng 3559: my %weight = ();
3560: my $ctsparts = 0;
1.45 ng 3561: my %seen = ();
1.375 albertel 3562: my @part_response_id = &flatten_responseType($responseType);
3563: foreach my $part_response_id (@part_response_id) {
3564: my ($partid,$respid) = @{ $part_response_id };
3565: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3566: next if $seen{$partid};
3567: $seen{$partid}++;
1.375 albertel 3568: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3569: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3570: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3571:
1.324 albertel 3572: my $display_part=&get_display_part($partid,$symb);
1.485 albertel 3573: my $radio.='<table border="0"><tr>';
1.41 ng 3574: my $ctr = 0;
1.42 ng 3575: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.485 albertel 3576: $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3577: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3578: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3579: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3580: $ctr++;
3581: }
1.485 albertel 3582: $radio.='</tr></table>';
3583: my $line = '<input type="text" name="TEXTVAL_'.
1.589 bisitz 3584: $partid.'" size="4" '.'onchange="javascript:writePoint(\''.
1.54 albertel 3585: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.539 riegler 3586: $weight{$partid}.' '.&mt('(problem weight)').'</td>'."\n";
3587: $line.= '<td><b>'.&mt('Grade Status').':</b><select name="SELVAL_'.$partid.'"'.
1.589 bisitz 3588: 'onchange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 3589: $weight{$partid}.')"> '.
1.401 albertel 3590: '<option selected="selected"> </option>'.
1.485 albertel 3591: '<option value="excused">'.&mt('excused').'</option>'.
3592: '<option value="reset status">'.&mt('reset status').'</option>'.
3593: '</select></td>'.
3594: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
3595: $line.='<input type="hidden" name="partid_'.
3596: $ctsparts.'" value="'.$partid.'" />'."\n";
3597: $line.='<input type="hidden" name="weight_'.
3598: $partid.'" value="'.$weight{$partid}.'" />'."\n";
3599:
3600: $result.=
3601: &Apache::loncommon::start_data_table_row()."\n".
1.577 bisitz 3602: '<td><b>'.&mt('Part:').'</b></td><td>'.$display_part.'</td><td><b>'.&mt('Points:').'</b></td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>'.
1.485 albertel 3603: &Apache::loncommon::end_data_table_row()."\n";
1.42 ng 3604: $ctsparts++;
1.41 ng 3605: }
1.474 albertel 3606: $result.=&Apache::loncommon::end_data_table()."\n".
1.52 albertel 3607: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.485 albertel 3608: $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
1.589 bisitz 3609: 'onclick="javascript:resetEntry('.$ctsparts.');" />';
1.41 ng 3610:
1.44 ng 3611: #table listing all the students in a section/class
3612: #header of table
1.560 raeburn 3613: $result.= '<h3>'.$specific_header.'</h3>'.
3614: &Apache::loncommon::start_data_table().
3615: &Apache::loncommon::start_data_table_header_row().
3616: '<th>'.&mt('No.').'</th>'.
3617: '<th>'.&nameUserString('header')."</th>\n";
1.582 raeburn 3618: my $partserror;
3619: my (@parts) = sort(&getpartlist($symb,\$partserror));
3620: if ($partserror) {
3621: return &navmap_errormsg();
3622: }
1.324 albertel 3623: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3624: my @partids = ();
1.41 ng 3625: foreach my $part (@parts) {
3626: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.539 riegler 3627: my $narrowtext = &mt('Tries');
3628: $display =~ s|^Number of Attempts|$narrowtext <br />|; # makes the column narrower
1.41 ng 3629: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3630: my ($partid) = &split_part_type($part);
1.524 raeburn 3631: push(@partids,$partid);
1.628 www 3632: #
3633: # FIXME: Looks like $display looks at English text
3634: #
1.324 albertel 3635: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3636: if ($display =~ /^Partial Credit Factor/) {
1.485 albertel 3637: $result.='<th>'.
3638: &mt('Score Part: [_1]<br /> (weight = [_2])',
3639: $display_part,$weight{$partid}).'</th>'."\n";
1.41 ng 3640: next;
1.485 albertel 3641:
1.207 albertel 3642: } else {
1.485 albertel 3643: if ($display =~ /Problem Status/) {
3644: my $grade_status_mt = &mt('Grade Status');
3645: $display =~ s{Problem Status}{$grade_status_mt<br />};
3646: }
3647: my $part_mt = &mt('Part:');
3648: $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
1.41 ng 3649: }
1.485 albertel 3650:
1.474 albertel 3651: $result.='<th>'.$display.'</th>'."\n";
1.41 ng 3652: }
1.474 albertel 3653: $result.=&Apache::loncommon::end_data_table_header_row();
1.44 ng 3654:
1.270 albertel 3655: my %last_resets =
3656: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3657:
1.41 ng 3658: #get info for each student
1.44 ng 3659: #list all the students - with points and grade status
1.257 albertel 3660: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41 ng 3661: my $ctr = 0;
1.294 albertel 3662: foreach (sort
3663: {
3664: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3665: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3666: }
3667: return $a cmp $b;
3668: } (keys(%$fullname))) {
1.126 ng 3669: $ctr++;
1.324 albertel 3670: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269 raeburn 3671: $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41 ng 3672: }
1.474 albertel 3673: $result.=&Apache::loncommon::end_data_table();
1.41 ng 3674: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.485 albertel 3675: $result.='<input type="button" value="'.&mt('Save').'" '.
1.589 bisitz 3676: 'onclick="javascript:submit();" target="_self" /></form>'."\n";
1.96 albertel 3677: if (scalar(%$fullname) eq 0) {
3678: my $colspan=3+scalar(@parts);
1.433 banghart 3679: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442 banghart 3680: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433 banghart 3681: $result='<span class="LC_warning">'.
1.485 albertel 3682: &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
1.442 banghart 3683: $section_display, $stu_status).
1.433 banghart 3684: '</span>';
1.96 albertel 3685: }
1.41 ng 3686: return $result;
3687: }
3688:
1.44 ng 3689: #--- call by previous routine to display each student
1.41 ng 3690: sub viewstudentgrade {
1.324 albertel 3691: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 3692: my ($uname,$udom) = split(/:/,$student);
3693: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269 raeburn 3694: my %aggregates = ();
1.474 albertel 3695: my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.233 albertel 3696: '<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
3697: "\n".$ctr.' </td><td> '.
1.44 ng 3698: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 3699: '\');" target="_self">'.$fullname.'</a> '.
1.398 albertel 3700: '<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281 albertel 3701: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 3702: foreach my $apart (@$parts) {
3703: my ($part,$type) = &split_part_type($apart);
1.41 ng 3704: my $score=$record{"resource.$part.$type"};
1.276 albertel 3705: $result.='<td align="center">';
1.269 raeburn 3706: my ($aggtries,$totaltries);
3707: unless (exists($aggregates{$part})) {
1.270 albertel 3708: $totaltries = $record{'resource.'.$part.'.tries'};
3709:
3710: $aggtries = $totaltries;
1.269 raeburn 3711: if ($$last_resets{$part}) {
1.270 albertel 3712: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
3713: $part);
3714: }
1.269 raeburn 3715: $result.='<input type="hidden" name="'.
3716: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
3717: $result.='<input type="hidden" name="'.
3718: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
3719: $aggregates{$part} = 1;
3720: }
1.41 ng 3721: if ($type eq 'awarded') {
1.320 albertel 3722: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 3723: $result.='<input type="hidden" name="'.
1.89 albertel 3724: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 3725: $result.='<input type="text" name="'.
1.89 albertel 3726: 'GD_'.$student.'_'.$part.'_awarded" '.
1.589 bisitz 3727: 'onchange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 3728: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 3729: } elsif ($type eq 'solved') {
3730: my ($status,$foo)=split(/_/,$score,2);
3731: $status = 'nothing' if ($status eq '');
1.89 albertel 3732: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 3733: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 3734: $result.=' <select name="'.
1.89 albertel 3735: 'GD_'.$student.'_'.$part.'_solved" '.
1.589 bisitz 3736: 'onchange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.485 albertel 3737: $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>'
3738: : '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
3739: $result.='<option value="reset status">'.&mt('reset status').'</option>';
1.126 ng 3740: $result.="</select> </td>\n";
1.122 ng 3741: } else {
3742: $result.='<input type="hidden" name="'.
3743: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
3744: "\n";
1.233 albertel 3745: $result.='<input type="text" name="'.
1.122 ng 3746: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
3747: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 3748: }
3749: }
1.474 albertel 3750: $result.=&Apache::loncommon::end_data_table_row();
1.41 ng 3751: return $result;
1.38 ng 3752: }
3753:
1.44 ng 3754: #--- change scores for all the students in a section/class
3755: # record does not get update if unchanged
1.38 ng 3756: sub editgrades {
1.608 www 3757: my ($request,$symb) = @_;
1.41 ng 3758:
1.433 banghart 3759: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477 albertel 3760: my $title='<h2>'.&mt('Current Grade Status').'</h2>';
1.433 banghart 3761: $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126 ng 3762:
1.477 albertel 3763: my $result= &Apache::loncommon::start_data_table().
3764: &Apache::loncommon::start_data_table_header_row().
3765: '<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
3766: '<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43 ng 3767: my %scoreptr = (
3768: 'correct' =>'correct_by_override',
3769: 'incorrect'=>'incorrect_by_override',
3770: 'excused' =>'excused',
3771: 'ungraded' =>'ungraded_attempted',
1.596 raeburn 3772: 'credited' =>'credit_attempted',
1.43 ng 3773: 'nothing' => '',
3774: );
1.257 albertel 3775: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 3776:
1.44 ng 3777: my (@partid);
3778: my %weight = ();
1.54 albertel 3779: my %columns = ();
1.44 ng 3780: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 3781:
1.582 raeburn 3782: my $partserror;
3783: my (@parts) = sort(&getpartlist($symb,\$partserror));
3784: if ($partserror) {
3785: return &navmap_errormsg();
3786: }
1.54 albertel 3787: my $header;
1.257 albertel 3788: while ($ctr < $env{'form.totalparts'}) {
3789: my $partid = $env{'form.partid_'.$ctr};
1.524 raeburn 3790: push(@partid,$partid);
1.257 albertel 3791: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 3792: $ctr++;
1.54 albertel 3793: }
1.324 albertel 3794: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54 albertel 3795: foreach my $partid (@partid) {
1.478 albertel 3796: $header .= '<th align="center">'.&mt('Old Score').'</th>'.
3797: '<th align="center">'.&mt('New Score').'</th>';
1.54 albertel 3798: $columns{$partid}=2;
3799: foreach my $stores (@parts) {
3800: my ($part,$type) = &split_part_type($stores);
3801: if ($part !~ m/^\Q$partid\E/) { next;}
3802: if ($type eq 'awarded' || $type eq 'solved') { next; }
3803: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
1.551 raeburn 3804: $display =~ s/\[Part: \Q$part\E\]//;
1.539 riegler 3805: my $narrowtext = &mt('Tries');
3806: $display =~ s/Number of Attempts/$narrowtext/;
3807: $header .= '<th align="center">'.&mt('Old').' '.$display.'</th>'.
3808: '<th align="center">'.&mt('New').' '.$display.'</th>';
1.54 albertel 3809: $columns{$partid}+=2;
3810: }
3811: }
3812: foreach my $partid (@partid) {
1.324 albertel 3813: my $display_part=&get_display_part($partid,$symb);
1.478 albertel 3814: $result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
3815: &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
3816: '</th>';
1.54 albertel 3817:
1.44 ng 3818: }
1.477 albertel 3819: $result .= &Apache::loncommon::end_data_table_header_row().
3820: &Apache::loncommon::start_data_table_header_row().
3821: $header.
3822: &Apache::loncommon::end_data_table_header_row();
3823: my @noupdate;
1.126 ng 3824: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 3825: for ($i=0; $i<$env{'form.total'}; $i++) {
1.93 albertel 3826: my $line;
1.257 albertel 3827: my $user = $env{'form.ctr'.$i};
1.281 albertel 3828: my ($uname,$udom)=split(/:/,$user);
1.44 ng 3829: my %newrecord;
3830: my $updateflag = 0;
1.281 albertel 3831: $line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108 albertel 3832: my $usec=$classlist->{"$uname:$udom"}[5];
1.105 albertel 3833: if (!&canmodify($usec)) {
1.126 ng 3834: my $numcols=scalar(@partid)*4+2;
1.477 albertel 3835: push(@noupdate,
1.478 albertel 3836: $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
3837: &mt('Not allowed to modify student')."</span></td></tr>");
1.105 albertel 3838: next;
3839: }
1.269 raeburn 3840: my %aggregate = ();
3841: my $aggregateflag = 0;
1.281 albertel 3842: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 3843: foreach (@partid) {
1.257 albertel 3844: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 3845: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
3846: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 3847: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
3848: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 3849: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
3850: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 3851: my $score;
3852: if ($partial eq '') {
1.257 albertel 3853: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 3854: } elsif ($partial > 0) {
3855: $score = 'correct_by_override';
3856: } elsif ($partial == 0) {
3857: $score = 'incorrect_by_override';
3858: }
1.257 albertel 3859: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 3860: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
3861:
1.292 albertel 3862: $newrecord{'resource.'.$_.'.regrader'}=
3863: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 3864: if ($dropMenu eq 'reset status' &&
3865: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 3866: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 3867: $newrecord{'resource.'.$_.'.solved'} = '';
3868: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 3869: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 3870: $updateflag = 1;
1.269 raeburn 3871: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
3872: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
3873: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
3874: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
3875: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
3876: $aggregateflag = 1;
3877: }
1.139 albertel 3878: } elsif (!($old_part eq $partial && $old_score eq $score)) {
3879: $updateflag = 1;
3880: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
3881: $newrecord{'resource.'.$_.'.solved'} = $score;
3882: $rec_update++;
1.125 ng 3883: }
3884:
1.93 albertel 3885: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 3886: '<td align="center">'.$awarded.
3887: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 3888:
1.54 albertel 3889:
3890: my $partid=$_;
3891: foreach my $stores (@parts) {
3892: my ($part,$type) = &split_part_type($stores);
3893: if ($part !~ m/^\Q$partid\E/) { next;}
3894: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 3895: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
3896: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 3897: if ($awarded ne '' && $awarded ne $old_aw) {
3898: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 3899: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 3900: $updateflag=1;
3901: }
1.93 albertel 3902: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 3903: '<td align="center">'.$awarded.' </td>';
3904: }
1.44 ng 3905: }
1.477 albertel 3906: $line.="\n";
1.301 albertel 3907:
3908: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3909: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3910:
1.44 ng 3911: if ($updateflag) {
3912: $count++;
1.257 albertel 3913: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 3914: $udom,$uname);
1.301 albertel 3915:
3916: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
3917: $cnum,$udom,$uname)) {
3918: # need to figure out if should be in queue.
3919: my %record =
3920: &Apache::lonnet::restore($symb,$env{'request.course.id'},
3921: $udom,$uname);
3922: my $all_graded = 1;
3923: my $none_graded = 1;
3924: foreach my $part (@parts) {
3925: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
3926: $all_graded = 0;
3927: } else {
3928: $none_graded = 0;
3929: }
3930: }
3931:
3932: if ($all_graded || $none_graded) {
3933: &Apache::bridgetask::remove_from_queue('gradingqueue',
3934: $symb,$cdom,$cnum,
3935: $udom,$uname);
3936: }
3937: }
3938:
1.477 albertel 3939: $result.=&Apache::loncommon::start_data_table_row().
3940: '<td align="right"> '.$updateCtr.' </td>'.$line.
3941: &Apache::loncommon::end_data_table_row();
1.126 ng 3942: $updateCtr++;
1.93 albertel 3943: } else {
1.477 albertel 3944: push(@noupdate,
3945: '<td align="right"> '.$noupdateCtr.' </td>'.$line);
1.126 ng 3946: $noupdateCtr++;
1.44 ng 3947: }
1.269 raeburn 3948: if ($aggregateflag) {
3949: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3950: $cdom,$cnum);
1.269 raeburn 3951: }
1.93 albertel 3952: }
1.477 albertel 3953: if (@noupdate) {
1.126 ng 3954: # my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
3955: my $numcols=scalar(@partid)*4+2;
1.477 albertel 3956: $result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478 albertel 3957: '<td align="center" colspan="'.$numcols.'">'.
3958: &mt('No Changes Occurred For the Students Below').
3959: '</td>'.
1.477 albertel 3960: &Apache::loncommon::end_data_table_row();
3961: foreach my $line (@noupdate) {
3962: $result.=
3963: &Apache::loncommon::start_data_table_row().
3964: $line.
3965: &Apache::loncommon::end_data_table_row();
3966: }
1.44 ng 3967: }
1.614 www 3968: $result .= &Apache::loncommon::end_data_table();
1.478 albertel 3969: my $msg = '<p><b>'.
3970: &mt('Number of records updated = [_1] for [quant,_2,student].',
3971: $rec_update,$count).'</b><br />'.
3972: '<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
3973: '</b></p>';
1.44 ng 3974: return $title.$msg.$result;
1.5 albertel 3975: }
1.54 albertel 3976:
3977: sub split_part_type {
3978: my ($partstr) = @_;
3979: my ($temp,@allparts)=split(/_/,$partstr);
3980: my $type=pop(@allparts);
1.439 albertel 3981: my $part=join('_',@allparts);
1.54 albertel 3982: return ($part,$type);
3983: }
3984:
1.44 ng 3985: #------------- end of section for handling grading by section/class ---------
3986: #
3987: #----------------------------------------------------------------------------
3988:
1.5 albertel 3989:
1.44 ng 3990: #----------------------------------------------------------------------------
3991: #
3992: #-------------------------- Next few routines handles grading by csv upload
3993: #
3994: #--- Javascript to handle csv upload
1.27 albertel 3995: sub csvupload_javascript_reverse_associate {
1.573 bisitz 3996: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 3997: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3998: return(<<ENDPICK);
3999: function verify(vf) {
4000: var foundsomething=0;
4001: var founduname=0;
1.243 albertel 4002: var foundID=0;
1.27 albertel 4003: for (i=0;i<=vf.nfields.value;i++) {
4004: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4005: if (i==0 && tw!=0) { foundID=1; }
4006: if (i==1 && tw!=0) { founduname=1; }
4007: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 4008: }
1.246 albertel 4009: if (founduname==0 && foundID==0) {
4010: alert('$error1');
4011: return;
1.27 albertel 4012: }
4013: if (foundsomething==0) {
1.246 albertel 4014: alert('$error2');
4015: return;
1.27 albertel 4016: }
4017: vf.submit();
4018: }
4019: function flip(vf,tf) {
4020: var nw=eval('vf.f'+tf+'.selectedIndex');
4021: var i;
4022: for (i=0;i<=vf.nfields.value;i++) {
4023: //can not pick the same destination field for both name and domain
4024: if (((i ==0)||(i ==1)) &&
4025: ((tf==0)||(tf==1)) &&
4026: (i!=tf) &&
4027: (eval('vf.f'+i+'.selectedIndex')==nw)) {
4028: eval('vf.f'+i+'.selectedIndex=0;')
4029: }
4030: }
4031: }
4032: ENDPICK
4033: }
4034:
4035: sub csvupload_javascript_forward_associate {
1.573 bisitz 4036: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 4037: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 4038: return(<<ENDPICK);
4039: function verify(vf) {
4040: var foundsomething=0;
4041: var founduname=0;
1.243 albertel 4042: var foundID=0;
1.27 albertel 4043: for (i=0;i<=vf.nfields.value;i++) {
4044: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4045: if (tw==1) { foundID=1; }
4046: if (tw==2) { founduname=1; }
4047: if (tw>3) { foundsomething=1; }
1.27 albertel 4048: }
1.246 albertel 4049: if (founduname==0 && foundID==0) {
4050: alert('$error1');
4051: return;
1.27 albertel 4052: }
4053: if (foundsomething==0) {
1.246 albertel 4054: alert('$error2');
4055: return;
1.27 albertel 4056: }
4057: vf.submit();
4058: }
4059: function flip(vf,tf) {
4060: var nw=eval('vf.f'+tf+'.selectedIndex');
4061: var i;
4062: //can not pick the same destination field twice
4063: for (i=0;i<=vf.nfields.value;i++) {
4064: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
4065: eval('vf.f'+i+'.selectedIndex=0;')
4066: }
4067: }
4068: }
4069: ENDPICK
4070: }
4071:
1.26 albertel 4072: sub csvuploadmap_header {
1.324 albertel 4073: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 4074: my $javascript;
1.257 albertel 4075: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4076: $javascript=&csvupload_javascript_reverse_associate();
4077: } else {
4078: $javascript=&csvupload_javascript_forward_associate();
4079: }
1.45 ng 4080:
1.418 albertel 4081: $symb = &Apache::lonenc::check_encrypt($symb);
1.632 www 4082: $request->print('<form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">'.
4083: &mt('Total number of records found in file: [_1]',$distotal).'<hr />'.
4084: &mt('Associate entries from the uploaded file with as many fields as you can.'));
4085: my $reverse=&mt("Reverse Association");
1.41 ng 4086: $request->print(<<ENDPICK);
1.632 www 4087: <br />
4088: <input type="button" value="$reverse" onclick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.26 albertel 4089: <input type="hidden" name="associate" value="" />
4090: <input type="hidden" name="phase" value="three" />
4091: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 4092: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
4093: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 4094: <input type="hidden" name="upfile_associate"
1.257 albertel 4095: value="$env{'form.upfile_associate'}" />
1.26 albertel 4096: <input type="hidden" name="symb" value="$symb" />
1.246 albertel 4097: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 4098: <hr />
4099: ENDPICK
1.597 wenzelju 4100: $request->print(&Apache::lonhtmlcommon::scripttag($javascript));
1.118 ng 4101: return '';
1.26 albertel 4102:
4103: }
4104:
4105: sub csvupload_fields {
1.582 raeburn 4106: my ($symb,$errorref) = @_;
4107: my (@parts) = &getpartlist($symb,$errorref);
4108: if (ref($errorref)) {
4109: if ($$errorref) {
4110: return;
4111: }
4112: }
4113:
1.556 weissno 4114: my @fields=(['ID','Student/Employee ID'],
1.243 albertel 4115: ['username','Student Username'],
4116: ['domain','Student Domain']);
1.324 albertel 4117: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 4118: foreach my $part (sort(@parts)) {
4119: my @datum;
4120: my $display=&Apache::lonnet::metadata($url,$part.'.display');
4121: my $name=$part;
4122: if (!$display) { $display = $name; }
4123: @datum=($name,$display);
1.244 albertel 4124: if ($name=~/^stores_(.*)_awarded/) {
4125: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
4126: }
1.41 ng 4127: push(@fields,\@datum);
4128: }
4129: return (@fields);
1.26 albertel 4130: }
4131:
4132: sub csvuploadmap_footer {
1.41 ng 4133: my ($request,$i,$keyfields) =@_;
4134: $request->print(<<ENDPICK);
1.26 albertel 4135: </table>
4136: <input type="hidden" name="nfields" value="$i" />
4137: <input type="hidden" name="keyfields" value="$keyfields" />
1.589 bisitz 4138: <input type="button" onclick="javascript:verify(this.form)" value="Assign Grades" /><br />
1.26 albertel 4139: </form>
4140: ENDPICK
4141: }
4142:
1.283 albertel 4143: sub checkforfile_js {
1.638 www 4144: my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
1.597 wenzelju 4145: my $result = &Apache::lonhtmlcommon::scripttag(<<CSVFORMJS);
1.86 ng 4146: function checkUpload(formname) {
4147: if (formname.upfile.value == "") {
1.539 riegler 4148: alert("$alertmsg");
1.86 ng 4149: return false;
4150: }
4151: formname.submit();
4152: }
4153: CSVFORMJS
1.283 albertel 4154: return $result;
4155: }
4156:
4157: sub upcsvScores_form {
1.608 www 4158: my ($request,$symb) = @_;
1.283 albertel 4159: if (!$symb) {return '';}
4160: my $result=&checkforfile_js();
1.632 www 4161: $result.=&Apache::loncommon::start_data_table().
4162: &Apache::loncommon::start_data_table_header_row().
4163: '<th>'.&mt('Specify a file containing the class scores for current resource.').'</th>'.
4164: &Apache::loncommon::end_data_table_header_row().
4165: &Apache::loncommon::start_data_table_row().'<td>';
1.370 www 4166: my $upload=&mt("Upload Scores");
1.86 ng 4167: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 4168: my $ignore=&mt('Ignore First Line');
1.418 albertel 4169: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 4170: $result.=<<ENDUPFORM;
1.106 albertel 4171: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 4172: <input type="hidden" name="symb" value="$symb" />
4173: <input type="hidden" name="command" value="csvuploadmap" />
4174: $upfile_select
1.589 bisitz 4175: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.86 ng 4176: </form>
4177: ENDUPFORM
1.370 www 4178: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
1.632 www 4179: &mt("How do I create a CSV file from a spreadsheet")).
4180: '</td>'.
4181: &Apache::loncommon::end_data_table_row().
4182: &Apache::loncommon::end_data_table();
1.86 ng 4183: return $result;
4184: }
4185:
4186:
1.26 albertel 4187: sub csvuploadmap {
1.608 www 4188: my ($request,$symb)= @_;
1.41 ng 4189: if (!$symb) {return '';}
1.72 ng 4190:
1.41 ng 4191: my $datatoken;
1.257 albertel 4192: if (!$env{'form.datatoken'}) {
1.41 ng 4193: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 4194: } else {
1.257 albertel 4195: $datatoken=$env{'form.datatoken'};
1.41 ng 4196: &Apache::loncommon::load_tmp_file($request);
1.26 albertel 4197: }
1.41 ng 4198: my @records=&Apache::loncommon::upfile_record_sep();
1.324 albertel 4199: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 4200: my ($i,$keyfields);
4201: if (@records) {
1.582 raeburn 4202: my $fieldserror;
4203: my @fields=&csvupload_fields($symb,\$fieldserror);
4204: if ($fieldserror) {
4205: $request->print(&navmap_errormsg());
4206: return;
4207: }
1.257 albertel 4208: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4209: &Apache::loncommon::csv_print_samples($request,\@records);
4210: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
4211: \@fields);
4212: foreach (@fields) { $keyfields.=$_->[0].','; }
4213: chop($keyfields);
4214: } else {
4215: unshift(@fields,['none','']);
4216: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
4217: \@fields);
1.311 banghart 4218: foreach my $rec (@records) {
4219: my %temp = &Apache::loncommon::record_sep($rec);
4220: if (%temp) {
4221: $keyfields=join(',',sort(keys(%temp)));
4222: last;
4223: }
4224: }
1.41 ng 4225: }
4226: }
4227: &csvuploadmap_footer($request,$i,$keyfields);
1.72 ng 4228:
1.41 ng 4229: return '';
1.27 albertel 4230: }
4231:
1.246 albertel 4232: sub csvuploadoptions {
1.608 www 4233: my ($request,$symb)= @_;
1.632 www 4234: my $overwrite=&mt('Overwrite any existing score');
1.246 albertel 4235: $request->print(<<ENDPICK);
4236: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
4237: <input type="hidden" name="command" value="csvuploadassign" />
4238: <p>
4239: <label>
4240: <input type="checkbox" name="overwite_scores" checked="checked" />
1.632 www 4241: $overwrite
1.246 albertel 4242: </label>
4243: </p>
4244: ENDPICK
4245: my %fields=&get_fields();
4246: if (!defined($fields{'domain'})) {
1.257 albertel 4247: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.632 www 4248: $request->print("\n<p>".&mt('Users are in domain: [_1]',$domform)."</p>\n");
1.246 albertel 4249: }
1.257 albertel 4250: foreach my $key (sort(keys(%env))) {
1.246 albertel 4251: if ($key !~ /^form\.(.*)$/) { next; }
4252: my $cleankey=$1;
4253: if ($cleankey eq 'command') { next; }
4254: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 4255: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 4256: }
4257: # FIXME do a check for any duplicated user ids...
4258: # FIXME do a check for any invalid user ids?...
1.290 albertel 4259: $request->print('<input type="submit" value="Assign Grades" /><br />
4260: <hr /></form>'."\n");
1.246 albertel 4261: return '';
4262: }
4263:
4264: sub get_fields {
4265: my %fields;
1.257 albertel 4266: my @keyfields = split(/\,/,$env{'form.keyfields'});
4267: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
4268: if ($env{'form.upfile_associate'} eq 'reverse') {
4269: if ($env{'form.f'.$i} ne 'none') {
4270: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 4271: }
4272: } else {
1.257 albertel 4273: if ($env{'form.f'.$i} ne 'none') {
4274: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 4275: }
4276: }
1.27 albertel 4277: }
1.246 albertel 4278: return %fields;
4279: }
4280:
4281: sub csvuploadassign {
1.608 www 4282: my ($request,$symb)= @_;
1.246 albertel 4283: if (!$symb) {return '';}
1.345 bowersj2 4284: my $error_msg = '';
1.246 albertel 4285: &Apache::loncommon::load_tmp_file($request);
4286: my @gradedata = &Apache::loncommon::upfile_record_sep();
4287: my %fields=&get_fields();
1.257 albertel 4288: my $courseid=$env{'request.course.id'};
1.97 albertel 4289: my ($classlist) = &getclasslist('all',0);
1.106 albertel 4290: my @notallowed;
1.41 ng 4291: my @skipped;
1.657 raeburn 4292: my @warnings;
1.41 ng 4293: my $countdone=0;
4294: foreach my $grade (@gradedata) {
4295: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 4296: my $domain;
4297: if ($entries{$fields{'domain'}}) {
4298: $domain=$entries{$fields{'domain'}};
4299: } else {
1.257 albertel 4300: $domain=$env{'form.default_domain'};
1.246 albertel 4301: }
1.243 albertel 4302: $domain=~s/\s//g;
1.41 ng 4303: my $username=$entries{$fields{'username'}};
1.160 albertel 4304: $username=~s/\s//g;
1.243 albertel 4305: if (!$username) {
4306: my $id=$entries{$fields{'ID'}};
1.247 albertel 4307: $id=~s/\s//g;
1.243 albertel 4308: my %ids=&Apache::lonnet::idget($domain,$id);
4309: $username=$ids{$id};
4310: }
1.41 ng 4311: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 4312: my $id=$entries{$fields{'ID'}};
4313: $id=~s/\s//g;
4314: if ($id) {
4315: push(@skipped,"$id:$domain");
4316: } else {
4317: push(@skipped,"$username:$domain");
4318: }
1.41 ng 4319: next;
4320: }
1.108 albertel 4321: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 4322: if (!&canmodify($usec)) {
4323: push(@notallowed,"$username:$domain");
4324: next;
4325: }
1.244 albertel 4326: my %points;
1.41 ng 4327: my %grades;
4328: foreach my $dest (keys(%fields)) {
1.244 albertel 4329: if ($dest eq 'ID' || $dest eq 'username' ||
4330: $dest eq 'domain') { next; }
4331: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
4332: if ($dest=~/stores_(.*)_points/) {
4333: my $part=$1;
4334: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
4335: $symb,$domain,$username);
1.345 bowersj2 4336: if ($wgt) {
4337: $entries{$fields{$dest}}=~s/\s//g;
4338: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 4339: my $award=($pcr == 0) ? 'incorrect_by_override'
4340: : 'correct_by_override';
1.638 www 4341: if ($pcr>1) {
1.657 raeburn 4342: push(@warnings,&mt("[_1]: point value larger than weight","$username:$domain"));
1.638 www 4343: }
1.345 bowersj2 4344: $grades{"resource.$part.awarded"}=$pcr;
4345: $grades{"resource.$part.solved"}=$award;
4346: $points{$part}=1;
4347: } else {
4348: $error_msg = "<br />" .
4349: &mt("Some point values were assigned"
4350: ." for problems with a weight "
4351: ."of zero. These values were "
4352: ."ignored.");
4353: }
1.244 albertel 4354: } else {
4355: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
4356: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
4357: my $store_key=$dest;
4358: $store_key=~s/^stores/resource/;
4359: $store_key=~s/_/\./g;
4360: $grades{$store_key}=$entries{$fields{$dest}};
4361: }
1.41 ng 4362: }
1.508 www 4363: if (! %grades) {
4364: push(@skipped,&mt("[_1]: no data to save","$username:$domain"));
4365: } else {
4366: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
4367: my $result=&Apache::lonnet::cstore(\%grades,$symb,
1.302 albertel 4368: $env{'request.course.id'},
4369: $domain,$username);
1.508 www 4370: if ($result eq 'ok') {
1.627 www 4371: # Successfully stored
1.508 www 4372: $request->print('.');
1.627 www 4373: # Remove from grading queue
4374: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,
4375: $env{'course.'.$env{'request.course.id'}.'.domain'},
4376: $env{'course.'.$env{'request.course.id'}.'.num'},
4377: $domain,$username);
4378: $countdone++;
4379: } else {
1.508 www 4380: $request->print("<p><span class=\"LC_error\">".
4381: &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
4382: "$username:$domain",$result)."</span></p>");
4383: }
4384: $request->rflush();
4385: }
1.41 ng 4386: }
1.570 www 4387: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt("Saved scores for [quant,_1,student]",$countdone),$countdone==0));
1.657 raeburn 4388: if (@warnings) {
4389: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Warnings generated for the following saved scores:'),1).'<br />');
4390: $request->print(join(', ',@warnings));
4391: }
1.41 ng 4392: if (@skipped) {
1.571 www 4393: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('No scores stored for the following username(s):'),1).'<br />');
4394: $request->print(join(', ',@skipped));
1.106 albertel 4395: }
4396: if (@notallowed) {
1.571 www 4397: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Modification of scores not allowed for the following username(s):'),1).'<br />');
4398: $request->print(join(', ',@notallowed));
1.41 ng 4399: }
1.106 albertel 4400: $request->print("<br />\n");
1.345 bowersj2 4401: return $error_msg;
1.26 albertel 4402: }
1.44 ng 4403: #------------- end of section for handling csv file upload ---------
4404: #
4405: #-------------------------------------------------------------------
4406: #
1.122 ng 4407: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4408: #
4409: #--- Select a page/sequence and a student to grade
1.68 ng 4410: sub pickStudentPage {
1.608 www 4411: my ($request,$symb) = @_;
1.68 ng 4412:
1.539 riegler 4413: my $alertmsg = &mt('Please select the student you wish to grade.');
1.597 wenzelju 4414: $request->print(&Apache::lonhtmlcommon::scripttag(<<LISTJAVASCRIPT));
1.68 ng 4415:
4416: function checkPickOne(formname) {
1.76 ng 4417: if (radioSelection(formname.student) == null) {
1.539 riegler 4418: alert("$alertmsg");
1.68 ng 4419: return;
4420: }
1.125 ng 4421: ptr = pullDownSelection(formname.selectpage);
4422: formname.page.value = formname["page"+ptr].value;
4423: formname.title.value = formname["title"+ptr].value;
1.68 ng 4424: formname.submit();
4425: }
4426:
4427: LISTJAVASCRIPT
1.118 ng 4428: &commonJSfunctions($request);
1.608 www 4429:
1.257 albertel 4430: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4431: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4432: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4433:
1.398 albertel 4434: my $result='<h3><span class="LC_info"> '.
1.485 albertel 4435: &mt('Manual Grading by Page or Sequence').'</span></h3>';
1.68 ng 4436:
1.80 ng 4437: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.582 raeburn 4438: my $map_error;
4439: my ($titles,$symbx) = &getSymbMap($map_error);
4440: if ($map_error) {
4441: $request->print(&navmap_errormsg());
4442: return;
4443: }
1.137 albertel 4444: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4445: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4446: # my $type=($curpage =~ /\.(page|sequence)/);
1.485 albertel 4447: my $select = '<select name="selectpage">'."\n";
1.70 ng 4448: my $ctr=0;
1.68 ng 4449: foreach (@$titles) {
4450: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.485 albertel 4451: $select.='<option value="'.$ctr.'" '.
1.401 albertel 4452: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71 ng 4453: '>'.$showtitle.'</option>'."\n";
1.70 ng 4454: $ctr++;
1.68 ng 4455: }
1.485 albertel 4456: $select.= '</select>';
1.539 riegler 4457: $result.=' <b>'.&mt('Problems from').':</b> '.$select."<br />\n";
1.485 albertel 4458:
1.70 ng 4459: $ctr=0;
4460: foreach (@$titles) {
4461: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4462: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4463: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4464: $ctr++;
4465: }
1.72 ng 4466: $result.='<input type="hidden" name="page" />'."\n".
4467: '<input type="hidden" name="title" />'."\n";
1.68 ng 4468:
1.485 albertel 4469: my $options =
4470: '<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
4471: '<label><input type="radio" name="vProb" value="yes" /> '.&mt('yes').' </label>'."<br />\n";
1.539 riegler 4472: $result.=' <b>'.&mt('View Problem Text').': </b>'.$options;
1.485 albertel 4473:
4474: $options =
4475: '<label><input type="radio" name="lastSub" value="none" /> '.&mt('none').' </label>'."\n".
4476: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.&mt('by dates and submissions').'</label>'."\n".
4477: '<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').' </label>'."\n";
1.539 riegler 4478: $result.=' <b>'.&mt('Submissions').': </b>'.$options;
1.432 banghart 4479:
4480: $result.=&build_section_inputs();
1.442 banghart 4481: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4482: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.72 ng 4483: '<input type="hidden" name="command" value="displayPage" />'."\n".
1.613 www 4484: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."<br />\n";
1.72 ng 4485:
1.539 riegler 4486: $result.=' <b>'.&mt('Use CODE').': </b> <input type="text" name="CODE" value="" /> <br />'."\n";
1.382 albertel 4487:
1.80 ng 4488: $result.=' <input type="button" '.
1.589 bisitz 4489: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /><br />'."\n";
1.72 ng 4490:
1.68 ng 4491: $request->print($result);
4492:
1.485 albertel 4493: my $studentTable.=' <b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
1.484 albertel 4494: &Apache::loncommon::start_data_table().
4495: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4496: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4497: '<th>'.&nameUserString('header').'</th>'.
1.485 albertel 4498: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4499: '<th>'.&nameUserString('header').'</th>'.
4500: &Apache::loncommon::end_data_table_header_row();
1.68 ng 4501:
1.76 ng 4502: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4503: my $ptr = 1;
1.294 albertel 4504: foreach my $student (sort
4505: {
4506: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4507: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4508: }
4509: return $a cmp $b;
4510: } (keys(%$fullname))) {
1.68 ng 4511: my ($uname,$udom) = split(/:/,$student);
1.484 albertel 4512: $studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
4513: : '</td>');
1.126 ng 4514: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4515: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4516: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.484 albertel 4517: $studentTable.=
4518: ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row()
4519: : '');
1.68 ng 4520: $ptr++;
4521: }
1.484 albertel 4522: if ($ptr%2 == 0) {
4523: $studentTable.='</td><td> </td><td> </td>'.
4524: &Apache::loncommon::end_data_table_row();
4525: }
4526: $studentTable.=&Apache::loncommon::end_data_table()."\n";
1.126 ng 4527: $studentTable.='<input type="button" '.
1.589 bisitz 4528: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /></form>'."\n";
1.68 ng 4529:
4530: $request->print($studentTable);
4531:
4532: return '';
4533: }
4534:
4535: sub getSymbMap {
1.582 raeburn 4536: my ($map_error) = @_;
1.132 bowersj2 4537: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4538: unless (ref($navmap)) {
4539: if (ref($map_error)) {
4540: $$map_error = 'navmap';
4541: }
4542: return;
4543: }
1.68 ng 4544: my %symbx = ();
4545: my @titles = ();
1.117 bowersj2 4546: my $minder = 0;
4547:
4548: # Gather every sequence that has problems.
1.240 albertel 4549: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
4550: 1,0,1);
1.117 bowersj2 4551: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 4552: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 4553: my $title = $minder.'.'.
4554: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
4555: push(@titles, $title); # minder in case two titles are identical
4556: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 4557: $minder++;
1.241 albertel 4558: }
1.68 ng 4559: }
4560: return \@titles,\%symbx;
4561: }
4562:
1.72 ng 4563: #
4564: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 4565: sub displayPage {
1.608 www 4566: my ($request,$symb) = @_;
1.257 albertel 4567: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4568: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4569: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4570: my $pageTitle = $env{'form.page'};
1.103 albertel 4571: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4572: my ($uname,$udom) = split(/:/,$env{'form.student'});
4573: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 4574:
4575: #need to make sure we have the correct data for later EXT calls,
4576: #thus invalidate the cache
4577: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 4578: $env{'course.'.$env{'request.course.id'}.'.num'},
4579: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 4580: &Apache::lonnet::clear_EXT_cache_status();
4581:
1.103 albertel 4582: if (!&canview($usec)) {
1.485 albertel 4583: $request->print('<span class="LC_warning">'.&mt('Unable to view requested student. ([_1])',$env{'form.student'}).'</span>');
1.103 albertel 4584: return;
4585: }
1.398 albertel 4586: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.485 albertel 4587: $result.='<h3> '.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
1.129 ng 4588: '</h3>'."\n";
1.500 albertel 4589: $env{'form.CODE'} = uc($env{'form.CODE'});
1.501 foxr 4590: if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
1.485 albertel 4591: $result.='<h3> '.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
1.382 albertel 4592: } else {
4593: delete($env{'form.CODE'});
4594: }
1.71 ng 4595: &sub_page_js($request);
4596: $request->print($result);
4597:
1.132 bowersj2 4598: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4599: unless (ref($navmap)) {
4600: $request->print(&navmap_errormsg());
4601: return;
4602: }
1.257 albertel 4603: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 4604: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4605: if (!$map) {
1.485 albertel 4606: $request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
1.288 albertel 4607: return;
4608: }
1.68 ng 4609: my $iterator = $navmap->getIterator($map->map_start(),
4610: $map->map_finish());
4611:
1.71 ng 4612: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 4613: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 4614: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
4615: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 4616: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 4617: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 4618: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.613 www 4619: '<input type="hidden" name="overRideScore" value="no" />'."\n";
1.71 ng 4620:
1.382 albertel 4621: if (defined($env{'form.CODE'})) {
4622: $studentTable.=
4623: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
4624: }
1.381 albertel 4625: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 4626: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 4627:
1.594 bisitz 4628: $studentTable.=' <span class="LC_info">'.
4629: &mt('Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon).
4630: '</span>'."\n".
1.484 albertel 4631: &Apache::loncommon::start_data_table().
4632: &Apache::loncommon::start_data_table_header_row().
4633: '<th align="center"> Prob. </th>'.
1.485 albertel 4634: '<th> '.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
1.484 albertel 4635: &Apache::loncommon::end_data_table_header_row();
1.71 ng 4636:
1.329 albertel 4637: &Apache::lonxml::clear_problem_counter();
1.196 albertel 4638: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 4639: $iterator->next(); # skip the first BEGIN_MAP
4640: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 4641: while ($depth > 0) {
1.68 ng 4642: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4643: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 4644:
1.385 albertel 4645: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4646: my $parts = $curRes->parts();
1.68 ng 4647: my $title = $curRes->compTitle();
1.71 ng 4648: my $symbx = $curRes->symb();
1.484 albertel 4649: $studentTable.=
4650: &Apache::loncommon::start_data_table_row().
4651: '<td align="center" valign="top" >'.$prob.
1.485 albertel 4652: (scalar(@{$parts}) == 1 ? ''
1.640 raeburn 4653: : '<br />('.&mt('[_1]parts)',
4654: scalar(@{$parts}).' ')
1.485 albertel 4655: ).
4656: '</td>';
1.71 ng 4657: $studentTable.='<td valign="top">';
1.382 albertel 4658: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 4659: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 4660: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 4661: undef,'both',\%form);
1.71 ng 4662: } else {
1.382 albertel 4663: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 4664: $companswer =~ s|<form(.*?)>||g;
4665: $companswer =~ s|</form>||g;
1.71 ng 4666: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 4667: # $companswer =~ s/$1/ /ms;
1.326 albertel 4668: # $request->print('match='.$1."<br />\n");
1.71 ng 4669: # }
1.116 ng 4670: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.539 riegler 4671: $studentTable.=' <b>'.$title.'</b> <br /> <b>'.&mt('Correct answer').':</b><br />'.$companswer;
1.71 ng 4672: }
4673:
1.257 albertel 4674: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 4675:
1.257 albertel 4676: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 4677: if ($record{'version'} eq '') {
1.485 albertel 4678: $studentTable.='<br /> <span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
1.71 ng 4679: } else {
1.116 ng 4680: my %responseType = ();
4681: foreach my $partid (@{$parts}) {
1.147 albertel 4682: my @responseIds =$curRes->responseIds($partid);
4683: my @responseType =$curRes->responseType($partid);
4684: my %responseIds;
4685: for (my $i=0;$i<=$#responseIds;$i++) {
4686: $responseIds{$responseIds[$i]}=$responseType[$i];
4687: }
4688: $responseType{$partid} = \%responseIds;
1.116 ng 4689: }
1.148 albertel 4690: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 4691:
1.71 ng 4692: }
1.257 albertel 4693: } elsif ($env{'form.lastSub'} eq 'all') {
4694: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71 ng 4695: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 4696: $env{'request.course.id'},
1.71 ng 4697: '','.submission');
4698:
4699: }
1.103 albertel 4700: if (&canmodify($usec)) {
1.585 bisitz 4701: $studentTable.=&gradeBox_start();
1.103 albertel 4702: foreach my $partid (@{$parts}) {
4703: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
4704: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
4705: $question++;
4706: }
1.585 bisitz 4707: $studentTable.=&gradeBox_end();
1.196 albertel 4708: $prob++;
1.71 ng 4709: }
4710: $studentTable.='</td></tr>';
1.68 ng 4711:
1.103 albertel 4712: }
1.68 ng 4713: $curRes = $iterator->next();
4714: }
4715:
1.589 bisitz 4716: $studentTable.=
4717: '</table>'."\n".
4718: '<input type="button" value="'.&mt('Save').'" '.
4719: 'onclick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
4720: '</form>'."\n";
1.71 ng 4721: $request->print($studentTable);
4722:
4723: return '';
1.119 ng 4724: }
4725:
4726: sub displaySubByDates {
1.148 albertel 4727: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 4728: my $isCODE=0;
1.335 albertel 4729: my $isTask = ($symb =~/\.task$/);
1.224 albertel 4730: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 4731: my $studentTable=&Apache::loncommon::start_data_table().
4732: &Apache::loncommon::start_data_table_header_row().
4733: '<th>'.&mt('Date/Time').'</th>'.
4734: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
1.671 raeburn 4735: ($isTask?'<th>'.&mt('Version').'</th>':'').
1.467 albertel 4736: '<th>'.&mt('Submission').'</th>'.
4737: '<th>'.&mt('Status').'</th>'.
4738: &Apache::loncommon::end_data_table_header_row();
1.119 ng 4739: my ($version);
4740: my %mark;
1.148 albertel 4741: my %orders;
1.119 ng 4742: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 4743: if (!exists($$record{'1:timestamp'})) {
1.539 riegler 4744: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br />';
1.147 albertel 4745: }
1.335 albertel 4746:
4747: my $interaction;
1.525 raeburn 4748: my $no_increment = 1;
1.640 raeburn 4749: my %lastrndseed;
1.119 ng 4750: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 4751: my $timestamp =
4752: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 4753: if (exists($$record{$version.':resource.0.version'})) {
4754: $interaction = $$record{$version.':resource.0.version'};
4755: }
1.671 raeburn 4756: if ($isTask && $env{'form.previousversion'}) {
4757: next unless ($interaction == $env{'form.previousversion'});
4758: }
1.335 albertel 4759: my $where = ($isTask ? "$version:resource.$interaction"
4760: : "$version:resource");
1.467 albertel 4761: $studentTable.=&Apache::loncommon::start_data_table_row().
4762: '<td>'.$timestamp.'</td>';
1.224 albertel 4763: if ($isCODE) {
4764: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
4765: }
1.671 raeburn 4766: if ($isTask) {
4767: $studentTable.='<td>'.$interaction.'</td>';
4768: }
1.119 ng 4769: my @versionKeys = split(/\:/,$$record{$version.':keys'});
4770: my @displaySub = ();
4771: foreach my $partid (@{$parts}) {
1.640 raeburn 4772: my ($hidden,$type);
4773: $type = $$record{$version.':resource.'.$partid.'.type'};
4774: if (($type eq 'anonsurvey') || ($type eq 'anonsurveycred')) {
1.596 raeburn 4775: $hidden = 1;
4776: }
1.335 albertel 4777: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
4778: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
4779:
1.122 ng 4780: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 4781: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 4782: foreach my $matchKey (@matchKey) {
1.198 albertel 4783: if (exists($$record{$version.':'.$matchKey}) &&
4784: $$record{$version.':'.$matchKey} ne '') {
1.596 raeburn 4785:
1.335 albertel 4786: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
4787: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.670 raeburn 4788: $displaySub[0].='<span class="LC_nobreak">';
1.577 bisitz 4789: $displaySub[0].='<b>'.&mt('Part: [_1]',$display_part).'</b>'
4790: .' <span class="LC_internal_info">'
1.625 www 4791: .'('.&mt('Response ID: [_1]',$responseId).')'
1.577 bisitz 4792: .'</span>'
4793: .' <b>';
1.596 raeburn 4794: if ($hidden) {
4795: $displaySub[0].= &mt('Anonymous Survey').'</b>';
4796: } else {
1.640 raeburn 4797: my ($trial,$rndseed,$newvariation);
4798: if ($type eq 'randomizetry') {
4799: $trial = $$record{"$where.$partid.tries"};
4800: $rndseed = $$record{"$where.$partid.rndseed"};
4801: }
1.596 raeburn 4802: if ($$record{"$where.$partid.tries"} eq '') {
4803: $displaySub[0].=&mt('Trial not counted');
4804: } else {
4805: $displaySub[0].=&mt('Trial: [_1]',
1.467 albertel 4806: $$record{"$where.$partid.tries"});
1.640 raeburn 4807: if ($rndseed || $lastrndseed{$partid}) {
4808: if ($rndseed ne $lastrndseed{$partid}) {
4809: $newvariation = ' ('.&mt('New variation this try').')';
4810: }
4811: }
4812: $lastrndseed{$partid} = $rndseed;
1.596 raeburn 4813: }
4814: my $responseType=($isTask ? 'Task'
1.335 albertel 4815: : $responseType->{$partid}->{$responseId});
1.596 raeburn 4816: if (!exists($orders{$partid})) { $orders{$partid}={}; }
1.640 raeburn 4817: if ((!exists($orders{$partid}->{$responseId})) || ($trial)) {
1.596 raeburn 4818: $orders{$partid}->{$responseId}=
4819: &get_order($partid,$responseId,$symb,$uname,$udom,
1.640 raeburn 4820: $no_increment,$type,$trial,$rndseed);
1.596 raeburn 4821: }
1.640 raeburn 4822: $displaySub[0].='</b>'.$newvariation.'</span>'; # /nobreak
1.596 raeburn 4823: $displaySub[0].=' '.
1.640 raeburn 4824: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom,$type,$trial,$rndseed).'<br />';
1.596 raeburn 4825: }
1.147 albertel 4826: }
4827: }
1.335 albertel 4828: if (exists($$record{"$where.$partid.checkedin"})) {
1.485 albertel 4829: $displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
4830: $$record{"$where.$partid.checkedin"},
4831: $$record{"$where.$partid.checkedin.slot"}).
4832: '<br />';
1.335 albertel 4833: }
4834: if (exists $$record{"$where.$partid.award"}) {
1.485 albertel 4835: $displaySub[1].='<b>'.&mt('Part:').'</b> '.$display_part.' '.
1.335 albertel 4836: lc($$record{"$where.$partid.award"}).' '.
4837: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 4838: '<br />';
4839: }
1.335 albertel 4840: if (exists $$record{"$where.$partid.regrader"}) {
4841: $displaySub[2].=$$record{"$where.$partid.regrader"}.
4842: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
4843: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
4844: $displaySub[2].=
4845: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 4846: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 4847: }
4848: }
4849: # needed because old essay regrader has not parts info
4850: if (exists $$record{"$version:resource.regrader"}) {
4851: $displaySub[2].=$$record{"$version:resource.regrader"};
4852: }
4853: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
4854: if ($displaySub[2]) {
1.467 albertel 4855: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 4856: }
1.467 albertel 4857: $studentTable.=' </td>'.
4858: &Apache::loncommon::end_data_table_row();
1.119 ng 4859: }
1.467 albertel 4860: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 4861: return $studentTable;
1.71 ng 4862: }
4863:
4864: sub updateGradeByPage {
1.608 www 4865: my ($request,$symb) = @_;
1.71 ng 4866:
1.257 albertel 4867: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4868: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4869: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4870: my $pageTitle = $env{'form.page'};
1.103 albertel 4871: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4872: my ($uname,$udom) = split(/:/,$env{'form.student'});
4873: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 4874: if (!&canmodify($usec)) {
1.526 raeburn 4875: $request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
1.103 albertel 4876: return;
4877: }
1.398 albertel 4878: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.526 raeburn 4879: $result.='<h3> '.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 4880: '</h3>'."\n";
1.70 ng 4881:
1.68 ng 4882: $request->print($result);
4883:
1.582 raeburn 4884:
1.132 bowersj2 4885: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 4886: unless (ref($navmap)) {
4887: $request->print(&navmap_errormsg());
4888: return;
4889: }
1.257 albertel 4890: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 4891: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4892: if (!$map) {
1.527 raeburn 4893: $request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
1.288 albertel 4894: return;
4895: }
1.71 ng 4896: my $iterator = $navmap->getIterator($map->map_start(),
4897: $map->map_finish());
1.70 ng 4898:
1.484 albertel 4899: my $studentTable=
4900: &Apache::loncommon::start_data_table().
4901: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4902: '<th align="center"> '.&mt('Prob.').' </th>'.
4903: '<th> '.&mt('Title').' </th>'.
4904: '<th> '.&mt('Previous Score').' </th>'.
4905: '<th> '.&mt('New Score').' </th>'.
1.484 albertel 4906: &Apache::loncommon::end_data_table_header_row();
1.71 ng 4907:
4908: $iterator->next(); # skip the first BEGIN_MAP
4909: my $curRes = $iterator->next(); # for "current resource"
1.196 albertel 4910: my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101 albertel 4911: while ($depth > 0) {
1.71 ng 4912: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4913: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 4914:
1.385 albertel 4915: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4916: my $parts = $curRes->parts();
1.71 ng 4917: my $title = $curRes->compTitle();
4918: my $symbx = $curRes->symb();
1.484 albertel 4919: $studentTable.=
4920: &Apache::loncommon::start_data_table_row().
4921: '<td align="center" valign="top" >'.$prob.
1.485 albertel 4922: (scalar(@{$parts}) == 1 ? ''
1.640 raeburn 4923: : '<br />('.&mt('[quant,_1,part]',scalar(@{$parts}))
1.526 raeburn 4924: .')').'</td>';
1.71 ng 4925: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
4926:
4927: my %newrecord=();
4928: my @displayPts=();
1.269 raeburn 4929: my %aggregate = ();
4930: my $aggregateflag = 0;
1.71 ng 4931: foreach my $partid (@{$parts}) {
1.257 albertel 4932: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
4933: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 4934:
1.257 albertel 4935: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
4936: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 4937: my $partial = $newpts/$wgt;
4938: my $score;
4939: if ($partial > 0) {
4940: $score = 'correct_by_override';
1.125 ng 4941: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 4942: $score = 'incorrect_by_override';
4943: }
1.257 albertel 4944: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 4945: if ($dropMenu eq 'excused') {
1.71 ng 4946: $partial = '';
4947: $score = 'excused';
1.125 ng 4948: } elsif ($dropMenu eq 'reset status'
1.257 albertel 4949: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 4950: $newrecord{'resource.'.$partid.'.tries'} = 0;
4951: $newrecord{'resource.'.$partid.'.solved'} = '';
4952: $newrecord{'resource.'.$partid.'.award'} = '';
4953: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 4954: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 4955: $changeflag++;
4956: $newpts = '';
1.269 raeburn 4957:
4958: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
4959: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
4960: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
4961: if ($aggtries > 0) {
4962: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
4963: $aggregateflag = 1;
4964: }
1.71 ng 4965: }
1.324 albertel 4966: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 4967: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.526 raeburn 4968: $displayPts[0].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.71 ng 4969: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 4970: ' <br />';
1.526 raeburn 4971: $displayPts[1].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.125 ng 4972: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 4973: ' <br />';
1.71 ng 4974: $question++;
1.380 albertel 4975: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 4976:
1.71 ng 4977: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 4978: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 4979: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 4980: if (scalar(keys(%newrecord)) > 0);
1.71 ng 4981:
4982: $changeflag++;
4983: }
4984: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 4985: my %record =
4986: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
4987: $udom,$uname);
4988:
4989: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
4990: $newrecord{'resource.CODE'} = $env{'form.CODE'};
4991: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
4992: $newrecord{'resource.CODE'} = '';
4993: }
1.257 albertel 4994: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 4995: $udom,$uname);
1.382 albertel 4996: %record = &Apache::lonnet::restore($symbx,
4997: $env{'request.course.id'},
4998: $udom,$uname);
1.380 albertel 4999: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
5000: $cdom,$cnum,$udom,$uname);
1.71 ng 5001: }
1.380 albertel 5002:
1.269 raeburn 5003: if ($aggregateflag) {
5004: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
5005: $env{'course.'.$env{'request.course.id'}.'.domain'},
5006: $env{'course.'.$env{'request.course.id'}.'.num'});
5007: }
1.125 ng 5008:
1.71 ng 5009: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
5010: '<td valign="top">'.$displayPts[1].'</td>'.
1.484 albertel 5011: &Apache::loncommon::end_data_table_row();
1.68 ng 5012:
1.196 albertel 5013: $prob++;
1.68 ng 5014: }
1.71 ng 5015: $curRes = $iterator->next();
1.68 ng 5016: }
1.98 albertel 5017:
1.484 albertel 5018: $studentTable.=&Apache::loncommon::end_data_table();
1.526 raeburn 5019: my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
5020: &mt('The scores were changed for [quant,_1,problem].',
5021: $changeflag));
1.76 ng 5022: $request->print($grademsg.$studentTable);
1.68 ng 5023:
1.70 ng 5024: return '';
5025: }
5026:
1.72 ng 5027: #-------- end of section for handling grading by page/sequence ---------
5028: #
5029: #-------------------------------------------------------------------
5030:
1.581 www 5031: #-------------------- Bubblesheet (Scantron) Grading -------------------
1.75 albertel 5032: #
5033: #------ start of section for handling grading by page/sequence ---------
5034:
1.423 albertel 5035: =pod
5036:
5037: =head1 Bubble sheet grading routines
5038:
1.424 albertel 5039: For this documentation:
5040:
5041: 'scanline' refers to the full line of characters
5042: from the file that we are parsing that represents one entire sheet
5043:
5044: 'bubble line' refers to the data
1.659 raeburn 5045: representing the line of bubbles that are on the physical bubblesheet
1.424 albertel 5046:
5047:
1.659 raeburn 5048: The overall process is that a scanned in bubblesheet data is uploaded
1.424 albertel 5049: into a course. When a user wants to grade, they select a
1.659 raeburn 5050: sequence/folder of resources, a file of bubblesheet info, and pick
1.424 albertel 5051: one of the predefined configurations for what each scanline looks
5052: like.
5053:
5054: Next each scanline is checked for any errors of either 'missing
1.435 foxr 5055: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 5056: because too light bubbling), 'double bubble' (each bubble line should
5057: have no more that one letter picked), invalid or duplicated CODE,
1.556 weissno 5058: invalid student/employee ID
1.424 albertel 5059:
5060: If the CODE option is used that determines the randomization of the
1.556 weissno 5061: homework problems, either way the student/employee ID is looked up into a
1.424 albertel 5062: username:domain.
5063:
5064: During the validation phase the instructor can choose to skip scanlines.
5065:
1.659 raeburn 5066: After the validation phase, there are now 3 bubblesheet files
1.424 albertel 5067:
5068: scantron_original_filename (unmodified original file)
5069: scantron_corrected_filename (file where the corrected information has replaced the original information)
5070: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
5071:
5072: Also there is a separate hash nohist_scantrondata that contains extra
1.659 raeburn 5073: correction information that isn't representable in the bubblesheet
1.424 albertel 5074: file (see &scantron_getfile() for more information)
5075:
5076: After all scanlines are either valid, marked as valid or skipped, then
5077: foreach line foreach problem in the picked sequence, an ssi request is
5078: made that simulates a user submitting their selected letter(s) against
5079: the homework problem.
1.423 albertel 5080:
5081: =over 4
5082:
5083:
5084:
5085: =item defaultFormData
5086:
5087: Returns html hidden inputs used to hold context/default values.
5088:
5089: Arguments:
5090: $symb - $symb of the current resource
5091:
5092: =cut
1.422 foxr 5093:
1.81 albertel 5094: sub defaultFormData {
1.324 albertel 5095: my ($symb)=@_;
1.613 www 5096: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />';
1.81 albertel 5097: }
5098:
1.447 foxr 5099:
1.423 albertel 5100: =pod
5101:
5102: =item getSequenceDropDown
5103:
5104: Return html dropdown of possible sequences to grade
5105:
5106: Arguments:
1.582 raeburn 5107: $symb - $symb of the current resource
5108: $map_error - ref to scalar which will container error if
5109: $navmap object is unavailable in &getSymbMap().
1.423 albertel 5110:
5111: =cut
1.422 foxr 5112:
1.75 albertel 5113: sub getSequenceDropDown {
1.582 raeburn 5114: my ($symb,$map_error)=@_;
1.75 albertel 5115: my $result='<select name="selectpage">'."\n";
1.582 raeburn 5116: my ($titles,$symbx) = &getSymbMap($map_error);
5117: if (ref($map_error)) {
5118: return if ($$map_error);
5119: }
1.137 albertel 5120: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 5121: my $ctr=0;
5122: foreach (@$titles) {
5123: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
5124: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 5125: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 5126: '>'.$showtitle.'</option>'."\n";
5127: $ctr++;
5128: }
5129: $result.= '</select>';
5130: return $result;
5131: }
5132:
1.495 albertel 5133: my %bubble_lines_per_response; # no. bubble lines for each response.
1.554 raeburn 5134: # key is zero-based index - 0, 1, 2 ...
1.495 albertel 5135:
5136: my %first_bubble_line; # First bubble line no. for each bubble.
5137:
1.509 raeburn 5138: my %subdivided_bubble_lines; # no. bubble lines for optionresponse,
5139: # matchresponse or rankresponse, where
5140: # an individual response can have multiple
5141: # lines
1.503 raeburn 5142:
5143: my %responsetype_per_response; # responsetype for each response
5144:
1.495 albertel 5145: # Save and restore the bubble lines array to the form env.
5146:
5147:
5148: sub save_bubble_lines {
5149: foreach my $line (keys(%bubble_lines_per_response)) {
5150: $env{"form.scantron.bubblelines.$line"} = $bubble_lines_per_response{$line};
5151: $env{"form.scantron.first_bubble_line.$line"} =
5152: $first_bubble_line{$line};
1.503 raeburn 5153: $env{"form.scantron.sub_bubblelines.$line"} =
5154: $subdivided_bubble_lines{$line};
5155: $env{"form.scantron.responsetype.$line"} =
5156: $responsetype_per_response{$line};
1.495 albertel 5157: }
5158: }
5159:
5160:
5161: sub restore_bubble_lines {
5162: my $line = 0;
5163: %bubble_lines_per_response = ();
5164: while ($env{"form.scantron.bubblelines.$line"}) {
5165: my $value = $env{"form.scantron.bubblelines.$line"};
5166: $bubble_lines_per_response{$line} = $value;
5167: $first_bubble_line{$line} =
5168: $env{"form.scantron.first_bubble_line.$line"};
1.503 raeburn 5169: $subdivided_bubble_lines{$line} =
5170: $env{"form.scantron.sub_bubblelines.$line"};
5171: $responsetype_per_response{$line} =
5172: $env{"form.scantron.responsetype.$line"};
1.495 albertel 5173: $line++;
5174: }
5175: }
5176:
5177: # Given the parsed scanline, get the response for
5178: # 'answer' number n:
5179:
5180: sub get_response_bubbles {
5181: my ($parsed_line, $response) = @_;
5182:
5183: my $bubble_line = $first_bubble_line{$response-1} +1;
5184: my $bubble_lines= $bubble_lines_per_response{$response-1};
5185:
5186: my $selected = "";
5187:
5188: for (my $bline = 0; $bline < $bubble_lines; $bline++) {
5189: $selected .= $$parsed_line{"scantron.$bubble_line.answer"}.":";
5190: $bubble_line++;
5191: }
5192: return $selected;
5193: }
1.423 albertel 5194:
5195: =pod
5196:
5197: =item scantron_filenames
5198:
5199: Returns a list of the scantron files in the current course
5200:
5201: =cut
1.422 foxr 5202:
1.202 albertel 5203: sub scantron_filenames {
1.257 albertel 5204: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5205: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517 raeburn 5206: my $getpropath = 1;
1.662 raeburn 5207: my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
5208: $cname,$getpropath);
1.202 albertel 5209: my @possiblenames;
1.662 raeburn 5210: if (ref($dirlist) eq 'ARRAY') {
5211: foreach my $filename (sort(@{$dirlist})) {
5212: ($filename)=split(/&/,$filename);
5213: if ($filename!~/^scantron_orig_/) { next ; }
5214: $filename=~s/^scantron_orig_//;
5215: push(@possiblenames,$filename);
5216: }
1.202 albertel 5217: }
5218: return @possiblenames;
5219: }
5220:
1.423 albertel 5221: =pod
5222:
5223: =item scantron_uploads
5224:
5225: Returns html drop-down list of scantron files in current course.
5226:
5227: Arguments:
5228: $file2grade - filename to set as selected in the dropdown
5229:
5230: =cut
1.422 foxr 5231:
1.202 albertel 5232: sub scantron_uploads {
1.209 ng 5233: my ($file2grade) = @_;
1.202 albertel 5234: my $result= '<select name="scantron_selectfile">';
5235: $result.="<option></option>";
5236: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 5237: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 5238: }
5239: $result.="</select>";
5240: return $result;
5241: }
5242:
1.423 albertel 5243: =pod
5244:
5245: =item scantron_scantab
5246:
5247: Returns html drop down of the scantron formats in the scantronformat.tab
5248: file.
5249:
5250: =cut
1.422 foxr 5251:
1.82 albertel 5252: sub scantron_scantab {
5253: my $result='<select name="scantron_format">'."\n";
1.191 albertel 5254: $result.='<option></option>'."\n";
1.518 raeburn 5255: my @lines = &get_scantronformat_file();
5256: if (@lines > 0) {
5257: foreach my $line (@lines) {
5258: next if (($line =~ /^\#/) || ($line eq ''));
5259: my ($name,$descrip)=split(/:/,$line);
5260: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
5261: }
1.82 albertel 5262: }
5263: $result.='</select>'."\n";
1.518 raeburn 5264: return $result;
5265: }
5266:
5267: =pod
5268:
5269: =item get_scantronformat_file
5270:
5271: Returns an array containing lines from the scantron format file for
5272: the domain of the course.
5273:
5274: If a url for a custom.tab file is listed in domain's configuration.db,
5275: lines are from this file.
5276:
5277: Otherwise, if a default.tab has been published in RES space by the
5278: domainconfig user, lines are from this file.
5279:
5280: Otherwise, fall back to getting lines from the legacy file on the
1.519 raeburn 5281: local server: /home/httpd/lonTabs/default_scantronformat.tab
1.82 albertel 5282:
1.518 raeburn 5283: =cut
5284:
5285: sub get_scantronformat_file {
5286: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5287: my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
5288: my $gottab = 0;
5289: my @lines;
5290: if (ref($domconfig{'scantron'}) eq 'HASH') {
5291: if ($domconfig{'scantron'}{'scantronformat'} ne '') {
5292: my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
5293: if ($formatfile ne '-1') {
5294: @lines = split("\n",$formatfile,-1);
5295: $gottab = 1;
5296: }
5297: }
5298: }
5299: if (!$gottab) {
5300: my $confname = $cdom.'-domainconfig';
5301: my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
5302: my $formatfile = &Apache::lonnet::getfile($default);
5303: if ($formatfile ne '-1') {
5304: @lines = split("\n",$formatfile,-1);
5305: $gottab = 1;
5306: }
5307: }
5308: if (!$gottab) {
1.519 raeburn 5309: my @domains = &Apache::lonnet::current_machine_domains();
5310: if (grep(/^\Q$cdom\E$/,@domains)) {
5311: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
5312: @lines = <$fh>;
5313: close($fh);
5314: } else {
5315: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
5316: @lines = <$fh>;
5317: close($fh);
5318: }
1.518 raeburn 5319: }
5320: return @lines;
1.82 albertel 5321: }
5322:
1.423 albertel 5323: =pod
5324:
5325: =item scantron_CODElist
5326:
5327: Returns html drop down of the saved CODE lists from current course,
5328: generated from earlier printings.
5329:
5330: =cut
1.422 foxr 5331:
1.186 albertel 5332: sub scantron_CODElist {
1.257 albertel 5333: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
5334: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 5335: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
5336: my $namechoice='<option></option>';
1.225 albertel 5337: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 5338: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 5339: if ($name =~ /^type\0/) { next; }
1.186 albertel 5340: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
5341: }
5342: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
5343: return $namechoice;
5344: }
5345:
1.423 albertel 5346: =pod
5347:
5348: =item scantron_CODEunique
5349:
5350: Returns the html for "Each CODE to be used once" radio.
5351:
5352: =cut
1.422 foxr 5353:
1.186 albertel 5354: sub scantron_CODEunique {
1.532 bisitz 5355: my $result='<span class="LC_nobreak">
1.272 albertel 5356: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5357: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 5358: </span>
1.532 bisitz 5359: <span class="LC_nobreak">
1.272 albertel 5360: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5361: value="no" />'.&mt('No').' </label>
1.381 albertel 5362: </span>';
1.186 albertel 5363: return $result;
5364: }
1.423 albertel 5365:
5366: =pod
5367:
5368: =item scantron_selectphase
5369:
1.659 raeburn 5370: Generates the initial screen to start the bubblesheet process.
1.423 albertel 5371: Allows for - starting a grading run.
1.424 albertel 5372: - downloading existing scan data (original, corrected
1.423 albertel 5373: or skipped info)
5374:
5375: - uploading new scan data
5376:
5377: Arguments:
5378: $r - The Apache request object
5379: $file2grade - name of the file that contain the scanned data to score
5380:
5381: =cut
1.186 albertel 5382:
1.75 albertel 5383: sub scantron_selectphase {
1.608 www 5384: my ($r,$file2grade,$symb) = @_;
1.75 albertel 5385: if (!$symb) {return '';}
1.582 raeburn 5386: my $map_error;
5387: my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
5388: if ($map_error) {
5389: $r->print('<br />'.&navmap_errormsg().'<br />');
5390: return;
5391: }
1.324 albertel 5392: my $default_form_data=&defaultFormData($symb);
1.209 ng 5393: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 5394: my $format_selector=&scantron_scantab();
1.186 albertel 5395: my $CODE_selector=&scantron_CODElist();
5396: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 5397: my $result;
1.422 foxr 5398:
1.513 foxr 5399: $ssi_error = 0;
5400:
1.606 wenzelju 5401: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
5402: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
5403:
5404: # Chunk of form to prompt for a scantron file upload.
5405:
5406: $r->print('
5407: <br />
5408: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5409: '.&Apache::loncommon::start_data_table_header_row().'
5410: <th>
5411: '.&mt('Specify a bubblesheet data file to upload.').'
5412: </th>
5413: '.&Apache::loncommon::end_data_table_header_row().'
5414: '.&Apache::loncommon::start_data_table_row().'
5415: <td>
5416: ');
1.608 www 5417: my $default_form_data=&defaultFormData($symb);
1.606 wenzelju 5418: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5419: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
5420: $r->print(&Apache::lonhtmlcommon::scripttag('
5421: function checkUpload(formname) {
5422: if (formname.upfile.value == "") {
5423: alert("'.&mt('Please use the browse button to select a file from your local directory.').'");
5424: return false;
5425: }
5426: formname.submit();
5427: }'));
5428: $r->print('
5429: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
5430: '.$default_form_data.'
5431: <input name="courseid" type="hidden" value="'.$cnum.'" />
5432: <input name="domainid" type="hidden" value="'.$cdom.'" />
5433: <input name="command" value="scantronupload_save" type="hidden" />
5434: '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
5435: <br />
5436: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
5437: </form>
5438: ');
5439:
5440: $r->print('
5441: </td>
5442: '.&Apache::loncommon::end_data_table_row().'
5443: '.&Apache::loncommon::end_data_table().'
5444: ');
5445: }
5446:
1.422 foxr 5447: # Chunk of form to prompt for a file to grade and how:
5448:
1.489 albertel 5449: $result.= '
5450: <br />
5451: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
5452: <input type="hidden" name="command" value="scantron_warning" />
5453: '.$default_form_data.'
5454: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5455: '.&Apache::loncommon::start_data_table_header_row().'
5456: <th colspan="2">
1.492 albertel 5457: '.&mt('Specify file and which Folder/Sequence to grade').'
1.489 albertel 5458: </th>
5459: '.&Apache::loncommon::end_data_table_header_row().'
5460: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5461: <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489 albertel 5462: '.&Apache::loncommon::end_data_table_row().'
5463: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5464: <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
1.489 albertel 5465: '.&Apache::loncommon::end_data_table_row().'
5466: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5467: <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
1.489 albertel 5468: '.&Apache::loncommon::end_data_table_row().'
5469: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5470: <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489 albertel 5471: '.&Apache::loncommon::end_data_table_row().'
5472: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5473: <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489 albertel 5474: '.&Apache::loncommon::end_data_table_row().'
5475: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5476: <td> '.&mt('Options:').' </td>
1.187 albertel 5477: <td>
1.492 albertel 5478: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
5479: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
5480: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187 albertel 5481: </td>
1.489 albertel 5482: '.&Apache::loncommon::end_data_table_row().'
5483: '.&Apache::loncommon::start_data_table_row().'
1.174 albertel 5484: <td colspan="2">
1.572 www 5485: <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
1.162 albertel 5486: </td>
1.489 albertel 5487: '.&Apache::loncommon::end_data_table_row().'
5488: '.&Apache::loncommon::end_data_table().'
5489: </form>
5490: ';
1.162 albertel 5491:
5492: $r->print($result);
5493:
1.422 foxr 5494:
5495:
5496: # Chunk of the form that prompts to view a scoring office file,
5497: # corrected file, skipped records in a file.
5498:
1.489 albertel 5499: $r->print('
5500: <br />
5501: <form action="/adm/grades" name="scantron_download">
5502: '.$default_form_data.'
5503: <input type="hidden" name="command" value="scantron_download" />
5504: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5505: '.&Apache::loncommon::start_data_table_header_row().'
5506: <th>
1.492 albertel 5507: '.&mt('Download a scoring office file').'
1.489 albertel 5508: </th>
5509: '.&Apache::loncommon::end_data_table_header_row().'
5510: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5511: <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).'
1.489 albertel 5512: <br />
1.492 albertel 5513: <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489 albertel 5514: '.&Apache::loncommon::end_data_table_row().'
5515: '.&Apache::loncommon::end_data_table().'
5516: </form>
5517: <br />
5518: ');
1.162 albertel 5519:
1.457 banghart 5520: &Apache::lonpickcode::code_list($r,2);
1.523 raeburn 5521:
1.528 raeburn 5522: $r->print('<br /><form method="post" name="checkscantron">'.
1.523 raeburn 5523: $default_form_data."\n".
5524: &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
5525: &Apache::loncommon::start_data_table_header_row()."\n".
5526: '<th colspan="2">
1.572 www 5527: '.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
1.523 raeburn 5528: '</th>'."\n".
5529: &Apache::loncommon::end_data_table_header_row()."\n".
5530: &Apache::loncommon::start_data_table_row()."\n".
5531: '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
5532: '<td> '.$sequence_selector.' </td>'.
5533: &Apache::loncommon::end_data_table_row()."\n".
5534: &Apache::loncommon::start_data_table_row()."\n".
5535: '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
5536: '<td> '.$file_selector.' </td>'."\n".
5537: &Apache::loncommon::end_data_table_row()."\n".
5538: &Apache::loncommon::start_data_table_row()."\n".
5539: '<td> '.&mt('Format of data file:').' </td>'."\n".
5540: '<td> '.$format_selector.' </td>'."\n".
5541: &Apache::loncommon::end_data_table_row()."\n".
5542: &Apache::loncommon::start_data_table_row()."\n".
1.557 raeburn 5543: '<td> '.&mt('Options').' </td>'."\n".
5544: '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
5545: &Apache::loncommon::end_data_table_row()."\n".
5546: &Apache::loncommon::start_data_table_row()."\n".
1.523 raeburn 5547: '<td colspan="2">'."\n".
5548: '<input type="hidden" name="command" value="checksubmissions" />'."\n".
1.575 www 5549: '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
1.523 raeburn 5550: '</td>'."\n".
5551: &Apache::loncommon::end_data_table_row()."\n".
5552: &Apache::loncommon::end_data_table()."\n".
5553: '</form><br />');
5554: return;
1.75 albertel 5555: }
5556:
1.423 albertel 5557: =pod
5558:
5559: =item get_scantron_config
5560:
5561: Parse and return the scantron configuration line selected as a
5562: hash of configuration file fields.
5563:
5564: Arguments:
5565: which - the name of the configuration to parse from the file.
5566:
5567:
5568: Returns:
5569: If the named configuration is not in the file, an empty
5570: hash is returned.
5571: a hash with the fields
5572: name - internal name for the this configuration setup
5573: description - text to display to operator that describes this config
5574: CODElocation - if 0 or the string 'none'
5575: - no CODE exists for this config
5576: if -1 || the string 'letter'
5577: - a CODE exists for this config and is
5578: a string of letters
5579: Unsupported value (but planned for future support)
5580: if a positive integer
5581: - The CODE exists as the first n items from
5582: the question section of the form
5583: if the string 'number'
5584: - The CODE exists for this config and is
5585: a string of numbers
5586: CODEstart - (only matter if a CODE exists) column in the line where
5587: the CODE starts
5588: CODElength - length of the CODE
1.573 bisitz 5589: IDstart - column where the student/employee ID starts
1.556 weissno 5590: IDlength - length of the student/employee ID info
1.423 albertel 5591: Qstart - column where the information from the bubbled
5592: 'questions' start
5593: Qlength - number of columns comprising a single bubble line from
5594: the sheet. (usually either 1 or 10)
1.424 albertel 5595: Qon - either a single character representing the character used
1.423 albertel 5596: to signal a bubble was chosen in the positional setup, or
5597: the string 'letter' if the letter of the chosen bubble is
5598: in the final, or 'number' if a number representing the
5599: chosen bubble is in the file (1->A 0->J)
1.424 albertel 5600: Qoff - the character used to represent that a bubble was
5601: left blank
1.423 albertel 5602: PaperID - if the scanning process generates a unique number for each
5603: sheet scanned the column that this ID number starts in
5604: PaperIDlength - number of columns that comprise the unique ID number
5605: for the sheet of paper
1.424 albertel 5606: FirstName - column that the first name starts in
1.423 albertel 5607: FirstNameLength - number of columns that the first name spans
5608:
5609: LastName - column that the last name starts in
5610: LastNameLength - number of columns that the last name spans
1.649 raeburn 5611: BubblesPerRow - number of bubbles available in each row used to
5612: bubble an answer. (If not specified, 10 assumed).
1.671 raeburn 5613:
1.423 albertel 5614: =cut
1.422 foxr 5615:
1.82 albertel 5616: sub get_scantron_config {
5617: my ($which) = @_;
1.518 raeburn 5618: my @lines = &get_scantronformat_file();
1.82 albertel 5619: my %config;
1.157 albertel 5620: #FIXME probably should move to XML it has already gotten a bit much now
1.518 raeburn 5621: foreach my $line (@lines) {
1.82 albertel 5622: my ($name,$descrip)=split(/:/,$line);
5623: if ($name ne $which ) { next; }
5624: chomp($line);
5625: my @config=split(/:/,$line);
5626: $config{'name'}=$config[0];
5627: $config{'description'}=$config[1];
5628: $config{'CODElocation'}=$config[2];
5629: $config{'CODEstart'}=$config[3];
5630: $config{'CODElength'}=$config[4];
5631: $config{'IDstart'}=$config[5];
5632: $config{'IDlength'}=$config[6];
5633: $config{'Qstart'}=$config[7];
1.497 foxr 5634: $config{'Qlength'}=$config[8];
1.82 albertel 5635: $config{'Qoff'}=$config[9];
5636: $config{'Qon'}=$config[10];
1.157 albertel 5637: $config{'PaperID'}=$config[11];
5638: $config{'PaperIDlength'}=$config[12];
5639: $config{'FirstName'}=$config[13];
5640: $config{'FirstNamelength'}=$config[14];
5641: $config{'LastName'}=$config[15];
5642: $config{'LastNamelength'}=$config[16];
1.649 raeburn 5643: $config{'BubblesPerRow'}=$config[17];
1.82 albertel 5644: last;
5645: }
5646: return %config;
5647: }
5648:
1.423 albertel 5649: =pod
5650:
5651: =item username_to_idmap
5652:
1.556 weissno 5653: creates a hash keyed by student/employee ID with values of the corresponding
1.423 albertel 5654: student username:domain.
5655:
5656: Arguments:
5657:
5658: $classlist - reference to the class list hash. This is a hash
5659: keyed by student name:domain whose elements are references
1.424 albertel 5660: to arrays containing various chunks of information
1.423 albertel 5661: about the student. (See loncoursedata for more info).
5662:
5663: Returns
5664: %idmap - the constructed hash
5665:
5666: =cut
5667:
1.82 albertel 5668: sub username_to_idmap {
5669: my ($classlist)= @_;
5670: my %idmap;
5671: foreach my $student (keys(%$classlist)) {
5672: $idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
5673: $student;
5674: }
5675: return %idmap;
5676: }
1.423 albertel 5677:
5678: =pod
5679:
1.424 albertel 5680: =item scantron_fixup_scanline
1.423 albertel 5681:
5682: Process a requested correction to a scanline.
5683:
5684: Arguments:
5685: $scantron_config - hash from &get_scantron_config()
5686: $scan_data - hash of correction information
5687: (see &scantron_getfile())
5688: $line - existing scanline
5689: $whichline - line number of the passed in scanline
5690: $field - type of change to process
5691: (either
1.573 bisitz 5692: 'ID' -> correct the student/employee ID
1.423 albertel 5693: 'CODE' -> correct the CODE
5694: 'answer' -> fixup the submitted answers)
5695:
5696: $args - hash of additional info,
5697: - 'ID'
5698: 'newid' -> studentID to use in replacement
1.424 albertel 5699: of existing one
1.423 albertel 5700: - 'CODE'
5701: 'CODE_ignore_dup' - set to true if duplicates
5702: should be ignored.
5703: 'CODE' - is new code or 'use_unfound'
1.424 albertel 5704: if the existing unfound code should
1.423 albertel 5705: be used as is
5706: - 'answer'
5707: 'response' - new answer or 'none' if blank
5708: 'question' - the bubble line to change
1.503 raeburn 5709: 'questionnum' - the question identifier,
5710: may include subquestion.
1.423 albertel 5711:
5712: Returns:
5713: $line - the modified scanline
5714:
5715: Side effects:
5716: $scan_data - may be updated
5717:
5718: =cut
5719:
1.82 albertel 5720:
1.157 albertel 5721: sub scantron_fixup_scanline {
5722: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
5723: if ($field eq 'ID') {
5724: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 5725: return ($line,1,'New value too large');
1.157 albertel 5726: }
5727: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
5728: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
5729: $args->{'newid'});
5730: }
5731: substr($line,$$scantron_config{'IDstart'}-1,
5732: $$scantron_config{'IDlength'})=$args->{'newid'};
5733: if ($args->{'newid'}=~/^\s*$/) {
5734: &scan_data($scan_data,"$whichline.user",
5735: $args->{'username'}.':'.$args->{'domain'});
5736: }
1.186 albertel 5737: } elsif ($field eq 'CODE') {
1.192 albertel 5738: if ($args->{'CODE_ignore_dup'}) {
5739: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
5740: }
5741: &scan_data($scan_data,"$whichline.useCODE",'1');
5742: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 5743: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
5744: return ($line,1,'New CODE value too large');
5745: }
5746: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
5747: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
5748: }
5749: substr($line,$$scantron_config{'CODEstart'}-1,
5750: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 5751: }
1.157 albertel 5752: } elsif ($field eq 'answer') {
1.497 foxr 5753: my $length=$scantron_config->{'Qlength'};
1.157 albertel 5754: my $off=$scantron_config->{'Qoff'};
5755: my $on=$scantron_config->{'Qon'};
1.497 foxr 5756: my $answer=${off}x$length;
5757: if ($args->{'response'} eq 'none') {
5758: &scan_data($scan_data,
1.503 raeburn 5759: "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497 foxr 5760: } else {
5761: if ($on eq 'letter') {
5762: my @alphabet=('A'..'Z');
5763: $answer=$alphabet[$args->{'response'}];
5764: } elsif ($on eq 'number') {
5765: $answer=$args->{'response'}+1;
5766: if ($answer == 10) { $answer = '0'; }
1.274 albertel 5767: } else {
1.497 foxr 5768: substr($answer,$args->{'response'},1)=$on;
1.274 albertel 5769: }
1.497 foxr 5770: &scan_data($scan_data,
1.503 raeburn 5771: "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157 albertel 5772: }
1.497 foxr 5773: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
5774: substr($line,$where-1,$length)=$answer;
1.157 albertel 5775: }
5776: return $line;
5777: }
1.423 albertel 5778:
5779: =pod
5780:
5781: =item scan_data
5782:
5783: Edit or look up an item in the scan_data hash.
5784:
5785: Arguments:
5786: $scan_data - The hash (see scantron_getfile)
5787: $key - shorthand of the key to edit (actual key is
1.424 albertel 5788: scantronfilename_key).
1.423 albertel 5789: $data - New value of the hash entry.
5790: $delete - If true, the entry is removed from the hash.
5791:
5792: Returns:
5793: The new value of the hash table field (undefined if deleted).
5794:
5795: =cut
5796:
5797:
1.157 albertel 5798: sub scan_data {
5799: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 5800: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 5801: if (defined($value)) {
5802: $scan_data->{$filename.'_'.$key} = $value;
5803: }
5804: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
5805: return $scan_data->{$filename.'_'.$key};
5806: }
1.423 albertel 5807:
1.495 albertel 5808: # ----- These first few routines are general use routines.----
5809:
5810: # Return the number of occurences of a pattern in a string.
5811:
5812: sub occurence_count {
5813: my ($string, $pattern) = @_;
5814:
5815: my @matches = ($string =~ /$pattern/g);
5816:
5817: return scalar(@matches);
5818: }
5819:
5820:
5821: # Take a string known to have digits and convert all the
5822: # digits into letters in the range J,A..I.
5823:
5824: sub digits_to_letters {
5825: my ($input) = @_;
5826:
5827: my @alphabet = ('J', 'A'..'I');
5828:
5829: my @input = split(//, $input);
5830: my $output ='';
5831: for (my $i = 0; $i < scalar(@input); $i++) {
5832: if ($input[$i] =~ /\d/) {
5833: $output .= $alphabet[$input[$i]];
5834: } else {
5835: $output .= $input[$i];
5836: }
5837: }
5838: return $output;
5839: }
5840:
1.423 albertel 5841: =pod
5842:
5843: =item scantron_parse_scanline
5844:
5845: Decodes a scanline from the selected scantron file
5846:
5847: Arguments:
5848: line - The text of the scantron file line to process
5849: whichline - Line number
5850: scantron_config - Hash describing the format of the scantron lines.
5851: scan_data - Hash of extra information about the scanline
5852: (see scantron_getfile for more information)
5853: just_header - True if should not process question answers but only
5854: the stuff to the left of the answers.
5855: Returns:
5856: Hash containing the result of parsing the scanline
5857:
5858: Keys are all proceeded by the string 'scantron.'
5859:
5860: CODE - the CODE in use for this scanline
5861: useCODE - 1 if the CODE is invalid but it usage has been forced
5862: by the operator
5863: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
5864: CODEs were selected, but the usage has been
5865: forced by the operator
1.556 weissno 5866: ID - student/employee ID
1.423 albertel 5867: PaperID - if used, the ID number printed on the sheet when the
5868: paper was scanned
5869: FirstName - first name from the sheet
5870: LastName - last name from the sheet
5871:
5872: if just_header was not true these key may also exist
5873:
1.447 foxr 5874: missingerror - a list of bubble ranges that are considered to be answers
5875: to a single question that don't have any bubbles filled in.
5876: Of the form questionnumber:firstbubblenumber:count.
5877: doubleerror - a list of bubble ranges that are considered to be answers
5878: to a single question that have more than one bubble filled in.
5879: Of the form questionnumber::firstbubblenumber:count
5880:
5881: In the above, count is the number of bubble responses in the
5882: input line needed to represent the possible answers to the question.
5883: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
5884: per line would have count = 2.
5885:
1.423 albertel 5886: maxquest - the number of the last bubble line that was parsed
5887:
5888: (<number> starts at 1)
5889: <number>.answer - zero or more letters representing the selected
5890: letters from the scanline for the bubble line
5891: <number>.
5892: if blank there was either no bubble or there where
5893: multiple bubbles, (consult the keys missingerror and
5894: doubleerror if this is an error condition)
5895:
5896: =cut
5897:
1.82 albertel 5898: sub scantron_parse_scanline {
1.423 albertel 5899: my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470 foxr 5900:
1.82 albertel 5901: my %record;
1.550 raeburn 5902: my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
5903: my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos); # Answers
1.422 foxr 5904: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # earlier stuff
1.278 albertel 5905: if (!($$scantron_config{'CODElocation'} eq 0 ||
5906: $$scantron_config{'CODElocation'} eq 'none')) {
5907: if ($$scantron_config{'CODElocation'} < 0 ||
5908: $$scantron_config{'CODElocation'} eq 'letter' ||
5909: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 5910: $record{'scantron.CODE'}=substr($data,
5911: $$scantron_config{'CODEstart'}-1,
1.83 albertel 5912: $$scantron_config{'CODElength'});
1.191 albertel 5913: if (&scan_data($scan_data,"$whichline.useCODE")) {
5914: $record{'scantron.useCODE'}=1;
5915: }
1.192 albertel 5916: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
5917: $record{'scantron.CODE_ignore_dup'}=1;
5918: }
1.82 albertel 5919: } else {
5920: #FIXME interpret first N questions
5921: }
5922: }
1.83 albertel 5923: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
5924: $$scantron_config{'IDlength'});
1.157 albertel 5925: $record{'scantron.PaperID'}=
5926: substr($data,$$scantron_config{'PaperID'}-1,
5927: $$scantron_config{'PaperIDlength'});
5928: $record{'scantron.FirstName'}=
5929: substr($data,$$scantron_config{'FirstName'}-1,
5930: $$scantron_config{'FirstNamelength'});
5931: $record{'scantron.LastName'}=
5932: substr($data,$$scantron_config{'LastName'}-1,
5933: $$scantron_config{'LastNamelength'});
1.423 albertel 5934: if ($just_header) { return \%record; }
1.194 albertel 5935:
1.82 albertel 5936: my @alphabet=('A'..'Z');
5937: my $questnum=0;
1.447 foxr 5938: my $ansnum =1; # Multiple 'answer lines'/question.
5939:
1.470 foxr 5940: chomp($questions); # Get rid of any trailing \n.
5941: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
5942: while (length($questions)) {
1.447 foxr 5943: my $answers_needed = $bubble_lines_per_response{$questnum};
1.503 raeburn 5944: my $answer_length = ($$scantron_config{'Qlength'} * $answers_needed)
5945: || 1;
5946: $questnum++;
5947: my $quest_id = $questnum;
5948: my $currentquest = substr($questions,0,$answer_length);
5949: $questions = substr($questions,$answer_length);
5950: if (length($currentquest) < $answer_length) { next; }
5951:
5952: if ($subdivided_bubble_lines{$questnum-1} =~ /,/) {
5953: my $subquestnum = 1;
5954: my $subquestions = $currentquest;
5955: my @subanswers_needed =
5956: split(/,/,$subdivided_bubble_lines{$questnum-1});
5957: foreach my $subans (@subanswers_needed) {
5958: my $subans_length =
5959: ($$scantron_config{'Qlength'} * $subans) || 1;
5960: my $currsubquest = substr($subquestions,0,$subans_length);
5961: $subquestions = substr($subquestions,$subans_length);
5962: $quest_id = "$questnum.$subquestnum";
5963: if (($$scantron_config{'Qon'} eq 'letter') ||
5964: ($$scantron_config{'Qon'} eq 'number')) {
5965: $ansnum = &scantron_validator_lettnum($ansnum,
5966: $questnum,$quest_id,$subans,$currsubquest,$whichline,
5967: \@alphabet,\%record,$scantron_config,$scan_data);
5968: } else {
5969: $ansnum = &scantron_validator_positional($ansnum,
5970: $questnum,$quest_id,$subans,$currsubquest,$whichline, \@alphabet,\%record,$scantron_config,$scan_data);
5971: }
5972: $subquestnum ++;
5973: }
5974: } else {
5975: if (($$scantron_config{'Qon'} eq 'letter') ||
5976: ($$scantron_config{'Qon'} eq 'number')) {
5977: $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
5978: $quest_id,$answers_needed,$currentquest,$whichline,
5979: \@alphabet,\%record,$scantron_config,$scan_data);
5980: } else {
5981: $ansnum = &scantron_validator_positional($ansnum,$questnum,
5982: $quest_id,$answers_needed,$currentquest,$whichline,
5983: \@alphabet,\%record,$scantron_config,$scan_data);
5984: }
5985: }
5986: }
5987: $record{'scantron.maxquest'}=$questnum;
5988: return \%record;
5989: }
1.447 foxr 5990:
1.503 raeburn 5991: sub scantron_validator_lettnum {
5992: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
5993: $alphabet,$record,$scantron_config,$scan_data) = @_;
5994:
5995: # Qon 'letter' implies for each slot in currquest we have:
5996: # ? or * for doubles, a letter in A-Z for a bubble, and
5997: # about anything else (esp. a value of Qoff) for missing
5998: # bubbles.
5999: #
6000: # Qon 'number' implies each slot gives a digit that indexes the
6001: # bubbles filled, or Qoff, or a non-number for unbubbled lines,
6002: # and * or ? for double bubbles on a single line.
6003: #
1.447 foxr 6004:
1.503 raeburn 6005: my $matchon;
6006: if ($$scantron_config{'Qon'} eq 'letter') {
6007: $matchon = '[A-Z]';
6008: } elsif ($$scantron_config{'Qon'} eq 'number') {
6009: $matchon = '\d';
6010: }
6011: my $occurrences = 0;
6012: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
6013: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 6014: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
6015: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
6016: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
6017: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 6018: my @singlelines = split('',$currquest);
6019: foreach my $entry (@singlelines) {
6020: $occurrences = &occurence_count($entry,$matchon);
6021: if ($occurrences > 1) {
6022: last;
6023: }
6024: }
6025: } else {
6026: $occurrences = &occurence_count($currquest,$matchon);
6027: }
6028: if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
6029: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6030: for (my $ans=0; $ans<$answers_needed; $ans++) {
6031: my $bubble = substr($currquest,$ans,1);
6032: if ($bubble =~ /$matchon/ ) {
6033: if ($$scantron_config{'Qon'} eq 'number') {
6034: if ($bubble == 0) {
6035: $bubble = 10;
6036: }
6037: $record->{"scantron.$ansnum.answer"} =
6038: $alphabet->[$bubble-1];
6039: } else {
6040: $record->{"scantron.$ansnum.answer"} = $bubble;
6041: }
6042: } else {
6043: $record->{"scantron.$ansnum.answer"}='';
6044: }
6045: $ansnum++;
6046: }
6047: } elsif (!defined($currquest)
6048: || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
6049: || (&occurence_count($currquest,$matchon) == 0)) {
6050: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6051: $record->{"scantron.$ansnum.answer"}='';
6052: $ansnum++;
6053: }
6054: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6055: push(@{$record->{'scantron.missingerror'}},$quest_id);
6056: }
6057: } else {
6058: if ($$scantron_config{'Qon'} eq 'number') {
6059: $currquest = &digits_to_letters($currquest);
6060: }
6061: for (my $ans=0; $ans<$answers_needed; $ans++) {
6062: my $bubble = substr($currquest,$ans,1);
6063: $record->{"scantron.$ansnum.answer"} = $bubble;
6064: $ansnum++;
6065: }
6066: }
6067: return $ansnum;
6068: }
1.447 foxr 6069:
1.503 raeburn 6070: sub scantron_validator_positional {
6071: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
6072: $whichline,$alphabet,$record,$scantron_config,$scan_data) = @_;
1.447 foxr 6073:
1.503 raeburn 6074: # Otherwise there's a positional notation;
6075: # each bubble line requires Qlength items, and there are filled in
6076: # bubbles for each case where there 'Qon' characters.
6077: #
1.447 foxr 6078:
1.503 raeburn 6079: my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447 foxr 6080:
1.503 raeburn 6081: # If the split only gives us one element.. the full length of the
6082: # answer string, no bubbles are filled in:
1.447 foxr 6083:
1.507 raeburn 6084: if ($answers_needed eq '') {
6085: return;
6086: }
6087:
1.503 raeburn 6088: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
6089: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6090: $record->{"scantron.$ansnum.answer"}='';
6091: $ansnum++;
6092: }
6093: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6094: push(@{$record->{"scantron.missingerror"}},$quest_id);
6095: }
6096: } elsif (scalar(@array) == 2) {
6097: my $location = length($array[0]);
6098: my $line_num = int($location / $$scantron_config{'Qlength'});
6099: my $bubble = $alphabet->[$location % $$scantron_config{'Qlength'}];
6100: for (my $ans=0; $ans<$answers_needed; $ans++) {
6101: if ($ans eq $line_num) {
6102: $record->{"scantron.$ansnum.answer"} = $bubble;
6103: } else {
6104: $record->{"scantron.$ansnum.answer"} = ' ';
6105: }
6106: $ansnum++;
6107: }
6108: } else {
6109: # If there's more than one instance of a bubble character
6110: # That's a double bubble; with positional notation we can
6111: # record all the bubbles filled in as well as the
6112: # fact this response consists of multiple bubbles.
6113: #
6114: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
6115: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 6116: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
6117: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
6118: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
6119: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 6120: my $doubleerror = 0;
6121: while (($currquest >= $$scantron_config{'Qlength'}) &&
6122: (!$doubleerror)) {
6123: my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
6124: $currquest = substr($currquest,$$scantron_config{'Qlength'});
6125: my @currarray = split($$scantron_config{'Qon'},$currline,-1);
6126: if (length(@currarray) > 2) {
6127: $doubleerror = 1;
6128: }
6129: }
6130: if ($doubleerror) {
6131: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6132: }
6133: } else {
6134: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6135: }
6136: my $item = $ansnum;
6137: for (my $ans=0; $ans<$answers_needed; $ans++) {
6138: $record->{"scantron.$item.answer"} = '';
6139: $item ++;
6140: }
1.447 foxr 6141:
1.503 raeburn 6142: my @ans=@array;
6143: my $i=0;
6144: my $increment = 0;
6145: while ($#ans) {
6146: $i+=length($ans[0]) + $increment;
6147: my $line = int($i/$$scantron_config{'Qlength'} + $ansnum);
6148: my $bubble = $i%$$scantron_config{'Qlength'};
6149: $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
6150: shift(@ans);
6151: $increment = 1;
6152: }
6153: $ansnum += $answers_needed;
1.82 albertel 6154: }
1.503 raeburn 6155: return $ansnum;
1.82 albertel 6156: }
6157:
1.423 albertel 6158: =pod
6159:
6160: =item scantron_add_delay
6161:
6162: Adds an error message that occurred during the grading phase to a
6163: queue of messages to be shown after grading pass is complete
6164:
6165: Arguments:
1.424 albertel 6166: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 6167: $scanline - the scanline that caused the error
6168: $errormesage - the error message
6169: $errorcode - a numeric code for the error
6170:
6171: Side Effects:
1.424 albertel 6172: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 6173:
6174: =cut
6175:
1.82 albertel 6176: sub scantron_add_delay {
1.140 albertel 6177: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
6178: push(@$delayqueue,
6179: {'line' => $scanline, 'emsg' => $errormessage,
6180: 'ecode' => $errorcode }
6181: );
1.82 albertel 6182: }
6183:
1.423 albertel 6184: =pod
6185:
6186: =item scantron_find_student
6187:
1.424 albertel 6188: Finds the username for the current scanline
6189:
6190: Arguments:
6191: $scantron_record - hash result from scantron_parse_scanline
6192: $scan_data - hash of correction information
6193: (see &scantron_getfile() form more information)
6194: $idmap - hash from &username_to_idmap()
6195: $line - number of current scanline
6196:
6197: Returns:
6198: Either 'username:domain' or undef if unknown
6199:
1.423 albertel 6200: =cut
6201:
1.82 albertel 6202: sub scantron_find_student {
1.157 albertel 6203: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 6204: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 6205: if ($scanID =~ /^\s*$/) {
6206: return &scan_data($scan_data,"$line.user");
6207: }
1.83 albertel 6208: foreach my $id (keys(%$idmap)) {
1.157 albertel 6209: if (lc($id) eq lc($scanID)) {
6210: return $$idmap{$id};
6211: }
1.83 albertel 6212: }
6213: return undef;
6214: }
6215:
1.423 albertel 6216: =pod
6217:
6218: =item scantron_filter
6219:
1.424 albertel 6220: Filter sub for lonnavmaps, filters out hidden resources if ignore
6221: hidden resources was selected
6222:
1.423 albertel 6223: =cut
6224:
1.83 albertel 6225: sub scantron_filter {
6226: my ($curres)=@_;
1.331 albertel 6227:
6228: if (ref($curres) && $curres->is_problem()) {
6229: # if the user has asked to not have either hidden
6230: # or 'randomout' controlled resources to be graded
6231: # don't include them
6232: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6233: && $curres->randomout) {
6234: return 0;
6235: }
1.83 albertel 6236: return 1;
6237: }
6238: return 0;
1.82 albertel 6239: }
6240:
1.423 albertel 6241: =pod
6242:
6243: =item scantron_process_corrections
6244:
1.424 albertel 6245: Gets correction information out of submitted form data and corrects
6246: the scanline
6247:
1.423 albertel 6248: =cut
6249:
1.157 albertel 6250: sub scantron_process_corrections {
6251: my ($r) = @_;
1.257 albertel 6252: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6253: my ($scanlines,$scan_data)=&scantron_getfile();
6254: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 6255: my $which=$env{'form.scantron_line'};
1.200 albertel 6256: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 6257: my ($skip,$err,$errmsg);
1.257 albertel 6258: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 6259: $skip=1;
1.257 albertel 6260: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
6261: my $newstudent=$env{'form.scantron_username'}.':'.
6262: $env{'form.scantron_domain'};
1.157 albertel 6263: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
6264: ($line,$err,$errmsg)=
6265: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
6266: 'ID',{'newid'=>$newid,
1.257 albertel 6267: 'username'=>$env{'form.scantron_username'},
6268: 'domain'=>$env{'form.scantron_domain'}});
6269: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
6270: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 6271: my $newCODE;
1.192 albertel 6272: my %args;
1.190 albertel 6273: if ($resolution eq 'use_unfound') {
1.191 albertel 6274: $newCODE='use_unfound';
1.190 albertel 6275: } elsif ($resolution eq 'use_found') {
1.257 albertel 6276: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 6277: } elsif ($resolution eq 'use_typed') {
1.257 albertel 6278: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 6279: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 6280: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 6281: }
1.257 albertel 6282: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 6283: $args{'CODE_ignore_dup'}=1;
6284: }
6285: $args{'CODE'}=$newCODE;
1.186 albertel 6286: ($line,$err,$errmsg)=
6287: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 6288: 'CODE',\%args);
1.257 albertel 6289: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
6290: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 6291: ($line,$err,$errmsg)=
6292: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
6293: $which,'answer',
6294: { 'question'=>$question,
1.503 raeburn 6295: 'response'=>$env{"form.scantron_correct_Q_$question"},
6296: 'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157 albertel 6297: if ($err) { last; }
6298: }
6299: }
6300: if ($err) {
1.398 albertel 6301: $r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157 albertel 6302: } else {
1.200 albertel 6303: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 6304: &scantron_putfile($scanlines,$scan_data);
6305: }
6306: }
6307:
1.423 albertel 6308: =pod
6309:
6310: =item reset_skipping_status
6311:
1.424 albertel 6312: Forgets the current set of remember skipped scanlines (and thus
6313: reverts back to considering all lines in the
6314: scantron_skipped_<filename> file)
6315:
1.423 albertel 6316: =cut
6317:
1.200 albertel 6318: sub reset_skipping_status {
6319: my ($scanlines,$scan_data)=&scantron_getfile();
6320: &scan_data($scan_data,'remember_skipping',undef,1);
6321: &scantron_putfile(undef,$scan_data);
6322: }
6323:
1.423 albertel 6324: =pod
6325:
6326: =item start_skipping
6327:
1.424 albertel 6328: Marks a scanline to be skipped.
6329:
1.423 albertel 6330: =cut
6331:
1.376 albertel 6332: sub start_skipping {
1.200 albertel 6333: my ($scan_data,$i)=@_;
6334: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6335: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
6336: $remembered{$i}=2;
6337: } else {
6338: $remembered{$i}=1;
6339: }
1.200 albertel 6340: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
6341: }
6342:
1.423 albertel 6343: =pod
6344:
6345: =item should_be_skipped
6346:
1.424 albertel 6347: Checks whether a scanline should be skipped.
6348:
1.423 albertel 6349: =cut
6350:
1.200 albertel 6351: sub should_be_skipped {
1.376 albertel 6352: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 6353: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 6354: # not redoing old skips
1.376 albertel 6355: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 6356: return 0;
6357: }
6358: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6359:
6360: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
6361: return 0;
6362: }
1.200 albertel 6363: return 1;
6364: }
6365:
1.423 albertel 6366: =pod
6367:
6368: =item remember_current_skipped
6369:
1.424 albertel 6370: Discovers what scanlines are in the scantron_skipped_<filename>
6371: file and remembers them into scan_data for later use.
6372:
1.423 albertel 6373: =cut
6374:
1.200 albertel 6375: sub remember_current_skipped {
6376: my ($scanlines,$scan_data)=&scantron_getfile();
6377: my %to_remember;
6378: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6379: if ($scanlines->{'skipped'}[$i]) {
6380: $to_remember{$i}=1;
6381: }
6382: }
1.376 albertel 6383:
1.200 albertel 6384: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
6385: &scantron_putfile(undef,$scan_data);
6386: }
6387:
1.423 albertel 6388: =pod
6389:
6390: =item check_for_error
6391:
1.424 albertel 6392: Checks if there was an error when attempting to remove a specific
1.659 raeburn 6393: scantron_.. bubblesheet data file. Prints out an error if
1.424 albertel 6394: something went wrong.
6395:
1.423 albertel 6396: =cut
6397:
1.200 albertel 6398: sub check_for_error {
6399: my ($r,$result)=@_;
6400: if ($result ne 'ok' && $result ne 'not_found' ) {
1.492 albertel 6401: $r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200 albertel 6402: }
6403: }
1.157 albertel 6404:
1.423 albertel 6405: =pod
6406:
6407: =item scantron_warning_screen
6408:
1.424 albertel 6409: Interstitial screen to make sure the operator has selected the
6410: correct options before we start the validation phase.
6411:
1.423 albertel 6412: =cut
6413:
1.203 albertel 6414: sub scantron_warning_screen {
1.650 raeburn 6415: my ($button_text,$symb)=@_;
1.257 albertel 6416: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 6417: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 6418: my $CODElist;
1.284 albertel 6419: if ($scantron_config{'CODElocation'} &&
6420: $scantron_config{'CODEstart'} &&
6421: $scantron_config{'CODElength'}) {
6422: $CODElist=$env{'form.scantron_CODElist'};
1.398 albertel 6423: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284 albertel 6424: $CODElist=
1.492 albertel 6425: '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373 albertel 6426: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 6427: }
1.663 raeburn 6428: my $lastbubblepoints;
6429: if ($env{'form.scantron_lastbubblepoints'} ne '') {
6430: $lastbubblepoints =
6431: '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
6432: $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
6433: }
1.492 albertel 6434: return ('
1.203 albertel 6435: <p>
1.492 albertel 6436: <span class="LC_warning">
6437: '.&mt('Please double check the information below before clicking on \'[_1]\'',&mt($button_text)).'</span>
1.203 albertel 6438: </p>
6439: <table>
1.492 albertel 6440: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
6441: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
1.663 raeburn 6442: '.$CODElist.$lastbubblepoints.'
1.203 albertel 6443: </table>
1.650 raeburn 6444: <p> '.&mt('If this information is correct, please click on \'[_1]\'.',&mt($button_text)).'<br />
6445: '.&mt('If something is incorrect, please return to [_1]Grade/Manage/Review Bubblesheets[_2] to start over.','<a href="/adm/grades?symb='.$symb.'&command=scantron_selectphase" class="LC_info">','</a>').'</p>
1.203 albertel 6446:
6447: <br />
1.492 albertel 6448: ');
1.203 albertel 6449: }
6450:
1.423 albertel 6451: =pod
6452:
6453: =item scantron_do_warning
6454:
1.424 albertel 6455: Check if the operator has picked something for all required
6456: fields. Error out if something is missing.
6457:
1.423 albertel 6458: =cut
6459:
1.203 albertel 6460: sub scantron_do_warning {
1.608 www 6461: my ($r,$symb)=@_;
1.203 albertel 6462: if (!$symb) {return '';}
1.324 albertel 6463: my $default_form_data=&defaultFormData($symb);
1.203 albertel 6464: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 6465: if ( $env{'form.selectpage'} eq '' ||
6466: $env{'form.scantron_selectfile'} eq '' ||
6467: $env{'form.scantron_format'} eq '' ) {
1.642 raeburn 6468: $r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
1.257 albertel 6469: if ( $env{'form.selectpage'} eq '') {
1.492 albertel 6470: $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237 albertel 6471: }
1.257 albertel 6472: if ( $env{'form.scantron_selectfile'} eq '') {
1.642 raeburn 6473: $r->print('<p><span class="LC_error">'.&mt("You have not selected a file that contains the student's response data.").'</span></p>');
1.237 albertel 6474: }
1.257 albertel 6475: if ( $env{'form.scantron_format'} eq '') {
1.642 raeburn 6476: $r->print('<p><span class="LC_error">'.&mt("You have not selected the format of the student's response data.").'</span></p>');
1.237 albertel 6477: }
6478: } else {
1.650 raeburn 6479: my $warning=&scantron_warning_screen('Grading: Validate Records',$symb);
1.663 raeburn 6480: my $bubbledbyhand=&hand_bubble_option();
1.492 albertel 6481: $r->print('
1.663 raeburn 6482: '.$warning.$bubbledbyhand.'
1.492 albertel 6483: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203 albertel 6484: <input type="hidden" name="command" value="scantron_validate" />
1.492 albertel 6485: ');
1.237 albertel 6486: }
1.614 www 6487: $r->print("</form><br />");
1.203 albertel 6488: return '';
6489: }
6490:
1.423 albertel 6491: =pod
6492:
6493: =item scantron_form_start
6494:
1.424 albertel 6495: html hidden input for remembering all selected grading options
6496:
1.423 albertel 6497: =cut
6498:
1.203 albertel 6499: sub scantron_form_start {
6500: my ($max_bubble)=@_;
6501: my $result= <<SCANTRONFORM;
6502: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 6503: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
6504: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
6505: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 6506: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 6507: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
6508: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
6509: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
6510: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 6511: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 6512: SCANTRONFORM
1.447 foxr 6513:
6514: my $line = 0;
6515: while (defined($env{"form.scantron.bubblelines.$line"})) {
6516: my $chunk =
6517: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 6518: $chunk .=
6519: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503 raeburn 6520: $chunk .=
6521: '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504 raeburn 6522: $chunk .=
6523: '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.447 foxr 6524: $result .= $chunk;
6525: $line++;
6526: }
1.203 albertel 6527: return $result;
6528: }
6529:
1.423 albertel 6530: =pod
6531:
6532: =item scantron_validate_file
6533:
1.659 raeburn 6534: Dispatch routine for doing validation of a bubblesheet data file.
1.424 albertel 6535:
6536: Also processes any necessary information resets that need to
6537: occur before validation begins (ignore previous corrections,
6538: restarting the skipped records processing)
6539:
1.423 albertel 6540: =cut
6541:
1.157 albertel 6542: sub scantron_validate_file {
1.608 www 6543: my ($r,$symb) = @_;
1.157 albertel 6544: if (!$symb) {return '';}
1.324 albertel 6545: my $default_form_data=&defaultFormData($symb);
1.200 albertel 6546:
6547: # do the detection of only doing skipped records first befroe we delete
1.424 albertel 6548: # them when doing the corrections reset
1.257 albertel 6549: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 6550: &reset_skipping_status();
6551: }
1.257 albertel 6552: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 6553: &remember_current_skipped();
1.257 albertel 6554: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 6555: }
6556:
1.257 albertel 6557: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 6558: &check_for_error($r,&scantron_remove_file('corrected'));
6559: &check_for_error($r,&scantron_remove_file('skipped'));
6560: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 6561: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 6562: }
1.200 albertel 6563:
1.257 albertel 6564: if ($env{'form.scantron_corrections'}) {
1.157 albertel 6565: &scantron_process_corrections($r);
6566: }
1.503 raeburn 6567: $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157 albertel 6568: #get the student pick code ready
6569: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.582 raeburn 6570: my $nav_error;
1.649 raeburn 6571: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
6572: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 6573: if ($nav_error) {
6574: $r->print(&navmap_errormsg());
6575: return '';
6576: }
1.203 albertel 6577: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.663 raeburn 6578: if ($env{'form.scantron_lastbubblepoints'} ne '') {
6579: $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
6580: }
1.157 albertel 6581: $r->print($result);
6582:
1.334 albertel 6583: my @validate_phases=( 'sequence',
6584: 'ID',
1.157 albertel 6585: 'CODE',
6586: 'doublebubble',
6587: 'missingbubbles');
1.257 albertel 6588: if (!$env{'form.validatepass'}) {
6589: $env{'form.validatepass'} = 0;
1.157 albertel 6590: }
1.257 albertel 6591: my $currentphase=$env{'form.validatepass'};
1.157 albertel 6592:
1.448 foxr 6593:
1.157 albertel 6594: my $stop=0;
6595: while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503 raeburn 6596: $r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157 albertel 6597: $r->rflush();
6598: my $which="scantron_validate_".$validate_phases[$currentphase];
6599: {
6600: no strict 'refs';
6601: ($stop,$currentphase)=&$which($r,$currentphase);
6602: }
6603: }
6604: if (!$stop) {
1.650 raeburn 6605: my $warning=&scantron_warning_screen('Start Grading',$symb);
1.542 raeburn 6606: $r->print(&mt('Validation process complete.').'<br />'.
6607: $warning.
6608: &mt('Perform verification for each student after storage of submissions?').
6609: ' <span class="LC_nobreak"><label>'.
6610: '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
6611: (' 'x3).'<label>'.
6612: '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
6613: '</label></span><br />'.
6614: &mt('Grading will take longer if you use verification.').'<br />'.
1.650 raeburn 6615: &mt('Otherwise, Grade/Manage/Review Bubblesheets [_1] Review bubblesheet data can be used once grading is complete.','»').'<br /><br />'.
1.542 raeburn 6616: '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
6617: '<input type="hidden" name="command" value="scantron_process" />'."\n");
1.157 albertel 6618: } else {
6619: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
6620: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
6621: }
6622: if ($stop) {
1.334 albertel 6623: if ($validate_phases[$currentphase] eq 'sequence') {
1.539 riegler 6624: $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' → " />');
1.492 albertel 6625: $r->print(' '.&mt('this error').' <br />');
1.334 albertel 6626:
1.650 raeburn 6627: $r->print('<p>'.&mt('Or return to [_1]Grade/Manage/Review Bubblesheets[_2] to start over.','<a href="/adm/grades?symb='.$symb.'&command=scantron_selectphase" class="LC_info">','</a>').'</p>');
1.334 albertel 6628: } else {
1.503 raeburn 6629: if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
1.539 riegler 6630: $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' →" onclick="javascript:verify_bubble_radio(this.form)" />');
1.503 raeburn 6631: } else {
1.539 riegler 6632: $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' →" />');
1.503 raeburn 6633: }
1.492 albertel 6634: $r->print(' '.&mt('using corrected info').' <br />');
6635: $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
6636: $r->print(" ".&mt("this scanline saving it for later."));
1.334 albertel 6637: }
1.157 albertel 6638: }
1.614 www 6639: $r->print(" </form><br />");
1.157 albertel 6640: return '';
6641: }
6642:
1.423 albertel 6643:
6644: =pod
6645:
6646: =item scantron_remove_file
6647:
1.659 raeburn 6648: Removes the requested bubblesheet data file, makes sure that
1.424 albertel 6649: scantron_original_<filename> is never removed
6650:
6651:
1.423 albertel 6652: =cut
6653:
1.200 albertel 6654: sub scantron_remove_file {
1.192 albertel 6655: my ($which)=@_;
1.257 albertel 6656: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6657: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6658: my $file='scantron_';
1.200 albertel 6659: if ($which eq 'corrected' || $which eq 'skipped') {
6660: $file.=$which.'_';
1.192 albertel 6661: } else {
6662: return 'refused';
6663: }
1.257 albertel 6664: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 6665: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
6666: }
6667:
1.423 albertel 6668:
6669: =pod
6670:
6671: =item scantron_remove_scan_data
6672:
1.659 raeburn 6673: Removes all scan_data correction for the requested bubblesheet
1.424 albertel 6674: data file. (In the case that both the are doing skipped records we need
6675: to remember the old skipped lines for the time being so that element
6676: persists for a while.)
6677:
1.423 albertel 6678: =cut
6679:
1.200 albertel 6680: sub scantron_remove_scan_data {
1.257 albertel 6681: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6682: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6683: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
6684: my @todelete;
1.257 albertel 6685: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 6686: foreach my $key (@keys) {
6687: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 6688: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 6689: $key=~/remember_skipping/) {
6690: next;
6691: }
1.192 albertel 6692: push(@todelete,$key);
6693: }
6694: }
1.200 albertel 6695: my $result;
1.192 albertel 6696: if (@todelete) {
1.491 albertel 6697: $result = &Apache::lonnet::del('nohist_scantrondata',
6698: \@todelete,$cdom,$cname);
6699: } else {
6700: $result = 'ok';
1.192 albertel 6701: }
6702: return $result;
6703: }
6704:
1.423 albertel 6705:
6706: =pod
6707:
6708: =item scantron_getfile
6709:
1.659 raeburn 6710: Fetches the requested bubblesheet data file (all 3 versions), and
1.424 albertel 6711: the scan_data hash
6712:
6713: Arguments:
6714: None
6715:
6716: Returns:
6717: 2 hash references
6718:
6719: - first one has
6720: orig -
6721: corrected -
6722: skipped - each of which points to an array ref of the specified
6723: file broken up into individual lines
6724: count - number of scanlines
6725:
6726: - second is the scan_data hash possible keys are
1.425 albertel 6727: ($number refers to scanline numbered $number and thus the key affects
6728: only that scanline
6729: $bubline refers to the specific bubble line element and the aspects
6730: refers to that specific bubble line element)
6731:
6732: $number.user - username:domain to use
6733: $number.CODE_ignore_dup
6734: - ignore the duplicate CODE error
6735: $number.useCODE
6736: - use the CODE in the scanline as is
6737: $number.no_bubble.$bubline
6738: - it is valid that there is no bubbled in bubble
6739: at $number $bubline
6740: remember_skipping
6741: - a frozen hash containing keys of $number and values
6742: of either
6743: 1 - we are on a 'do skipped records pass' and plan
6744: on processing this line
6745: 2 - we are on a 'do skipped records pass' and this
6746: scanline has been marked to skip yet again
1.424 albertel 6747:
1.423 albertel 6748: =cut
6749:
1.157 albertel 6750: sub scantron_getfile {
1.200 albertel 6751: #FIXME really would prefer a scantron directory
1.257 albertel 6752: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6753: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 6754: my $lines;
6755: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6756: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 6757: my %scanlines;
6758: $scanlines{'orig'}=[(split("\n",$lines,-1))];
6759: my $temp=$scanlines{'orig'};
6760: $scanlines{'count'}=$#$temp;
6761:
6762: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6763: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 6764: if ($lines eq '-1') {
6765: $scanlines{'corrected'}=[];
6766: } else {
6767: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
6768: }
6769: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6770: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 6771: if ($lines eq '-1') {
6772: $scanlines{'skipped'}=[];
6773: } else {
6774: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
6775: }
1.175 albertel 6776: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 6777: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
6778: my %scan_data = @tmp;
6779: return (\%scanlines,\%scan_data);
6780: }
6781:
1.423 albertel 6782: =pod
6783:
6784: =item lonnet_putfile
6785:
1.424 albertel 6786: Wrapper routine to call &Apache::lonnet::finishuserfileupload
6787:
6788: Arguments:
6789: $contents - data to store
6790: $filename - filename to store $contents into
6791:
6792: Returns:
6793: result value from &Apache::lonnet::finishuserfileupload
6794:
1.423 albertel 6795: =cut
6796:
1.157 albertel 6797: sub lonnet_putfile {
6798: my ($contents,$filename)=@_;
1.257 albertel 6799: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
6800: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
6801: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 6802: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 6803:
6804: }
6805:
1.423 albertel 6806: =pod
6807:
6808: =item scantron_putfile
6809:
1.659 raeburn 6810: Stores the current version of the bubblesheet data files, and the
1.424 albertel 6811: scan_data hash. (Does not modify the original version only the
6812: corrected and skipped versions.
6813:
6814: Arguments:
6815: $scanlines - hash ref that looks like the first return value from
6816: &scantron_getfile()
6817: $scan_data - hash ref that looks like the second return value from
6818: &scantron_getfile()
6819:
1.423 albertel 6820: =cut
6821:
1.157 albertel 6822: sub scantron_putfile {
6823: my ($scanlines,$scan_data) = @_;
1.200 albertel 6824: #FIXME really would prefer a scantron directory
1.257 albertel 6825: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6826: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 6827: if ($scanlines) {
6828: my $prefix='scantron_';
1.157 albertel 6829: # no need to update orig, shouldn't change
6830: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 6831: # $env{'form.scantron_selectfile'});
1.200 albertel 6832: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
6833: $prefix.'corrected_'.
1.257 albertel 6834: $env{'form.scantron_selectfile'});
1.200 albertel 6835: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
6836: $prefix.'skipped_'.
1.257 albertel 6837: $env{'form.scantron_selectfile'});
1.200 albertel 6838: }
1.175 albertel 6839: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 6840: }
6841:
1.423 albertel 6842: =pod
6843:
6844: =item scantron_get_line
6845:
1.424 albertel 6846: Returns the correct version of the scanline
6847:
6848: Arguments:
6849: $scanlines - hash ref that looks like the first return value from
6850: &scantron_getfile()
6851: $scan_data - hash ref that looks like the second return value from
6852: &scantron_getfile()
6853: $i - number of the requested line (starts at 0)
6854:
6855: Returns:
6856: A scanline, (either the original or the corrected one if it
6857: exists), or undef if the requested scanline should be
6858: skipped. (Either because it's an skipped scanline, or it's an
6859: unskipped scanline and we are not doing a 'do skipped scanlines'
6860: pass.
6861:
1.423 albertel 6862: =cut
6863:
1.157 albertel 6864: sub scantron_get_line {
1.200 albertel 6865: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 6866: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
6867: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 6868: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
6869: return $scanlines->{'orig'}[$i];
6870: }
6871:
1.423 albertel 6872: =pod
6873:
6874: =item scantron_todo_count
6875:
1.424 albertel 6876: Counts the number of scanlines that need processing.
6877:
6878: Arguments:
6879: $scanlines - hash ref that looks like the first return value from
6880: &scantron_getfile()
6881: $scan_data - hash ref that looks like the second return value from
6882: &scantron_getfile()
6883:
6884: Returns:
6885: $count - number of scanlines to process
6886:
1.423 albertel 6887: =cut
6888:
1.200 albertel 6889: sub get_todo_count {
6890: my ($scanlines,$scan_data)=@_;
6891: my $count=0;
6892: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6893: my $line=&scantron_get_line($scanlines,$scan_data,$i);
6894: if ($line=~/^[\s\cz]*$/) { next; }
6895: $count++;
6896: }
6897: return $count;
6898: }
6899:
1.423 albertel 6900: =pod
6901:
6902: =item scantron_put_line
6903:
1.659 raeburn 6904: Updates the 'corrected' or 'skipped' versions of the bubblesheet
1.424 albertel 6905: data file.
6906:
6907: Arguments:
6908: $scanlines - hash ref that looks like the first return value from
6909: &scantron_getfile()
6910: $scan_data - hash ref that looks like the second return value from
6911: &scantron_getfile()
6912: $i - line number to update
6913: $newline - contents of the updated scanline
6914: $skip - if true make the line for skipping and update the
6915: 'skipped' file
6916:
1.423 albertel 6917: =cut
6918:
1.157 albertel 6919: sub scantron_put_line {
1.200 albertel 6920: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 6921: if ($skip) {
6922: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 6923: &start_skipping($scan_data,$i);
1.157 albertel 6924: return;
6925: }
6926: $scanlines->{'corrected'}[$i]=$newline;
6927: }
6928:
1.423 albertel 6929: =pod
6930:
6931: =item scantron_clear_skip
6932:
1.424 albertel 6933: Remove a line from the 'skipped' file
6934:
6935: Arguments:
6936: $scanlines - hash ref that looks like the first return value from
6937: &scantron_getfile()
6938: $scan_data - hash ref that looks like the second return value from
6939: &scantron_getfile()
6940: $i - line number to update
6941:
1.423 albertel 6942: =cut
6943:
1.376 albertel 6944: sub scantron_clear_skip {
6945: my ($scanlines,$scan_data,$i)=@_;
6946: if (exists($scanlines->{'skipped'}[$i])) {
6947: undef($scanlines->{'skipped'}[$i]);
6948: return 1;
6949: }
6950: return 0;
6951: }
6952:
1.423 albertel 6953: =pod
6954:
6955: =item scantron_filter_not_exam
6956:
1.424 albertel 6957: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
6958: filter out resources that are not marked as 'exam' mode
6959:
1.423 albertel 6960: =cut
6961:
1.334 albertel 6962: sub scantron_filter_not_exam {
6963: my ($curres)=@_;
6964:
6965: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
6966: # if the user has asked to not have either hidden
6967: # or 'randomout' controlled resources to be graded
6968: # don't include them
6969: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6970: && $curres->randomout) {
6971: return 0;
6972: }
6973: return 1;
6974: }
6975: return 0;
6976: }
6977:
1.423 albertel 6978: =pod
6979:
6980: =item scantron_validate_sequence
6981:
1.424 albertel 6982: Validates the selected sequence, checking for resource that are
6983: not set to exam mode.
6984:
1.423 albertel 6985: =cut
6986:
1.334 albertel 6987: sub scantron_validate_sequence {
6988: my ($r,$currentphase) = @_;
6989:
6990: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 6991: unless (ref($navmap)) {
6992: $r->print(&navmap_errormsg());
6993: return (1,$currentphase);
6994: }
1.334 albertel 6995: my (undef,undef,$sequence)=
6996: &Apache::lonnet::decode_symb($env{'form.selectpage'});
6997:
6998: my $map=$navmap->getResourceByUrl($sequence);
6999:
7000: $r->print('<input type="hidden" name="validate_sequence_exam"
7001: value="ignore" />');
7002: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
7003: my @resources=
7004: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
7005: if (@resources) {
1.675 bisitz 7006: $r->print(
7007: '<p class="LC_warning">'
7008: .&mt('Some resources in the sequence currently are not set to'
7009: .' exam mode. Grading these resources currently may not'
7010: .' work correctly.')
7011: .'</p>'
7012: );
1.334 albertel 7013: return (1,$currentphase);
7014: }
7015: }
7016:
7017: return (0,$currentphase+1);
7018: }
7019:
1.423 albertel 7020:
7021:
1.157 albertel 7022: sub scantron_validate_ID {
7023: my ($r,$currentphase) = @_;
7024:
7025: #get student info
7026: my $classlist=&Apache::loncoursedata::get_classlist();
7027: my %idmap=&username_to_idmap($classlist);
7028:
7029: #get scantron line setup
1.257 albertel 7030: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7031: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7032:
7033: my $nav_error;
1.649 raeburn 7034: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
1.582 raeburn 7035: if ($nav_error) {
7036: $r->print(&navmap_errormsg());
7037: return(1,$currentphase);
7038: }
1.157 albertel 7039:
7040: my %found=('ids'=>{},'usernames'=>{});
7041: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7042: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7043: if ($line=~/^[\s\cz]*$/) { next; }
7044: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7045: $scan_data);
7046: my $id=$$scan_record{'scantron.ID'};
7047: my $found;
7048: foreach my $checkid (keys(%idmap)) {
7049: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
7050: }
7051: if ($found) {
7052: my $username=$idmap{$found};
7053: if ($found{'ids'}{$found}) {
7054: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7055: $line,'duplicateID',$found);
1.194 albertel 7056: return(1,$currentphase);
1.157 albertel 7057: } elsif ($found{'usernames'}{$username}) {
7058: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7059: $line,'duplicateID',$username);
1.194 albertel 7060: return(1,$currentphase);
1.157 albertel 7061: }
1.186 albertel 7062: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 7063: $found{'ids'}{$found}++;
7064: $found{'usernames'}{$username}++;
7065: } else {
7066: if ($id =~ /^\s*$/) {
1.158 albertel 7067: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 7068: if (defined($username) && $found{'usernames'}{$username}) {
7069: &scantron_get_correction($r,$i,$scan_record,
7070: \%scantron_config,
7071: $line,'duplicateID',$username);
1.194 albertel 7072: return(1,$currentphase);
1.157 albertel 7073: } elsif (!defined($username)) {
7074: &scantron_get_correction($r,$i,$scan_record,
7075: \%scantron_config,
7076: $line,'incorrectID');
1.194 albertel 7077: return(1,$currentphase);
1.157 albertel 7078: }
7079: $found{'usernames'}{$username}++;
7080: } else {
7081: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7082: $line,'incorrectID');
1.194 albertel 7083: return(1,$currentphase);
1.157 albertel 7084: }
7085: }
7086: }
7087:
7088: return (0,$currentphase+1);
7089: }
7090:
1.423 albertel 7091:
1.157 albertel 7092: sub scantron_get_correction {
7093: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
1.454 banghart 7094: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 7095: #to show both the current line and the previous one and allow skipping
7096: #the previous one or the current one
7097:
1.333 albertel 7098: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.658 bisitz 7099: $r->print(
7100: '<p class="LC_warning">'
7101: .&mt('An error was detected ([_1]) for PaperID [_2]',
7102: "<b>$error</b>",
7103: '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
7104: ."</p> \n");
1.157 albertel 7105: } else {
1.658 bisitz 7106: $r->print(
7107: '<p class="LC_warning">'
7108: .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
7109: "<b>$error</b>", $i, "<pre>$line</pre>")
7110: ."</p> \n");
7111: }
7112: my $message =
7113: '<p>'
7114: .&mt('The ID on the form is [_1]',
7115: "<tt>$$scan_record{'scantron.ID'}</tt>")
7116: .'<br />'
1.665 raeburn 7117: .&mt('The name on the paper is [_1], [_2]',
1.658 bisitz 7118: $$scan_record{'scantron.LastName'},
7119: $$scan_record{'scantron.FirstName'})
7120: .'</p>';
1.242 albertel 7121:
1.157 albertel 7122: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
7123: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503 raeburn 7124: # Array populated for doublebubble or
7125: my @lines_to_correct; # missingbubble errors to build javascript
7126: # to validate radio button checking
7127:
1.157 albertel 7128: if ($error =~ /ID$/) {
1.186 albertel 7129: if ($error eq 'incorrectID') {
1.658 bisitz 7130: $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
1.492 albertel 7131: "</p>\n");
1.157 albertel 7132: } elsif ($error eq 'duplicateID') {
1.658 bisitz 7133: $r->print('<p class="LC_warning">'.&mt("The encoded ID has also been used by a previous paper [_1]",$arg)."</p>\n");
1.157 albertel 7134: }
1.242 albertel 7135: $r->print($message);
1.492 albertel 7136: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157 albertel 7137: $r->print("\n<ul><li> ");
7138: #FIXME it would be nice if this sent back the user ID and
7139: #could do partial userID matches
7140: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
7141: 'scantron_username','scantron_domain'));
7142: $r->print(": <input type='text' name='scantron_username' value='' />");
7143: $r->print("\n@".
1.257 albertel 7144: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 7145:
7146: $r->print('</li>');
1.186 albertel 7147: } elsif ($error =~ /CODE$/) {
7148: if ($error eq 'incorrectCODE') {
1.658 bisitz 7149: $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186 albertel 7150: } elsif ($error eq 'duplicateCODE') {
1.658 bisitz 7151: $r->print('<p class="LC_warning">'.&mt("The encoded CODE has also been used by a previous paper [_1], and CODEs are supposed to be unique.",join(', ',@{$arg}))."</p>\n");
1.186 albertel 7152: }
1.658 bisitz 7153: $r->print("<p>".&mt('The CODE on the form is [_1]',
7154: "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
7155: ."</p>\n");
1.242 albertel 7156: $r->print($message);
1.658 bisitz 7157: $r->print("<p>".&mt("How should I handle this?")."</p>\n");
1.187 albertel 7158: $r->print("\n<br /> ");
1.194 albertel 7159: my $i=0;
1.273 albertel 7160: if ($error eq 'incorrectCODE'
7161: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 7162: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 7163: if ($closest > 0) {
7164: foreach my $testcode (@{$closest}) {
7165: my $checked='';
1.569 bisitz 7166: if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7167: $r->print("
7168: <label>
1.569 bisitz 7169: <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
1.492 albertel 7170: ".&mt("Use the similar CODE [_1] instead.",
7171: "<b><tt>".$testcode."</tt></b>")."
7172: </label>
7173: <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278 albertel 7174: $r->print("\n<br />");
7175: $i++;
7176: }
1.194 albertel 7177: }
7178: }
1.273 albertel 7179: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.569 bisitz 7180: my $checked; if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7181: $r->print("
7182: <label>
1.569 bisitz 7183: <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
1.659 raeburn 7184: ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
1.492 albertel 7185: "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
7186: </label>");
1.273 albertel 7187: $r->print("\n<br />");
7188: }
1.194 albertel 7189:
1.597 wenzelju 7190: $r->print(&Apache::lonhtmlcommon::scripttag(<<ENDSCRIPT));
1.188 albertel 7191: function change_radio(field) {
1.190 albertel 7192: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 7193: var i;
7194: for (i=0;i<slct.length;i++) {
7195: if (slct[i].value==field) { slct[i].checked=true; }
7196: }
7197: }
7198: ENDSCRIPT
1.187 albertel 7199: my $href="/adm/pickcode?".
1.359 www 7200: "form=".&escape("scantronupload").
7201: "&scantron_format=".&escape($env{'form.scantron_format'}).
7202: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
7203: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
7204: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 7205: if ($env{'form.scantron_CODElist'} =~ /\S/) {
1.492 albertel 7206: $r->print("
7207: <label>
7208: <input type='radio' name='scantron_CODE_resolution' value='use_found' />
7209: ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
7210: "<a target='_blank' href='$href'>","</a>")."
7211: </label>
1.558 bisitz 7212: ".&mt("Selected CODE is [_1]",'<input readonly="readonly" type="text" size="8" name="scantron_CODE_selectedvalue" onfocus="javascript:change_radio(\'use_found\')" onchange="javascript:change_radio(\'use_found\')" />'));
1.332 albertel 7213: $r->print("\n<br />");
7214: }
1.492 albertel 7215: $r->print("
7216: <label>
7217: <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
7218: ".&mt("Use [_1] as the CODE.",
7219: "</label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" />"));
1.187 albertel 7220: $r->print("\n<br /><br />");
1.157 albertel 7221: } elsif ($error eq 'doublebubble') {
1.658 bisitz 7222: $r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497 foxr 7223:
7224: # The form field scantron_questions is acutally a list of line numbers.
7225: # represented by this form so:
7226:
7227: my $line_list = &questions_to_line_list($arg);
7228:
1.157 albertel 7229: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7230: $line_list.'" />');
1.242 albertel 7231: $r->print($message);
1.492 albertel 7232: $r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157 albertel 7233: foreach my $question (@{$arg}) {
1.503 raeburn 7234: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
7235: $scan_record, $error);
1.524 raeburn 7236: push(@lines_to_correct,@linenums);
1.157 albertel 7237: }
1.503 raeburn 7238: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7239: } elsif ($error eq 'missingbubble') {
1.658 bisitz 7240: $r->print('<p class="LC_warning">'.&mt("There have been [_1]no[_2] bubbles scanned for some question(s)",'<b>','</b>')."</p>\n");
1.242 albertel 7241: $r->print($message);
1.492 albertel 7242: $r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503 raeburn 7243: $r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497 foxr 7244:
1.503 raeburn 7245: # The form field scantron_questions is actually a list of line numbers not
1.497 foxr 7246: # a list of question numbers. Therefore:
7247: #
7248:
7249: my $line_list = &questions_to_line_list($arg);
7250:
1.157 albertel 7251: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7252: $line_list.'" />');
1.157 albertel 7253: foreach my $question (@{$arg}) {
1.503 raeburn 7254: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
7255: $scan_record, $error);
1.524 raeburn 7256: push(@lines_to_correct,@linenums);
1.157 albertel 7257: }
1.503 raeburn 7258: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7259: } else {
7260: $r->print("\n<ul>");
7261: }
7262: $r->print("\n</li></ul>");
1.497 foxr 7263: }
7264:
1.503 raeburn 7265: sub verify_bubbles_checked {
7266: my (@ansnums) = @_;
7267: my $ansnumstr = join('","',@ansnums);
7268: my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
1.597 wenzelju 7269: my $output = &Apache::lonhtmlcommon::scripttag((<<ENDSCRIPT));
1.503 raeburn 7270: function verify_bubble_radio(form) {
7271: var ansnumArray = new Array ("$ansnumstr");
7272: var need_bubble_count = 0;
7273: for (var i=0; i<ansnumArray.length; i++) {
7274: if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
7275: var bubble_picked = 0;
7276: for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
7277: if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
7278: bubble_picked = 1;
7279: }
7280: }
7281: if (bubble_picked == 0) {
7282: need_bubble_count ++;
7283: }
7284: }
7285: }
7286: if (need_bubble_count) {
7287: alert("$warning");
7288: return;
7289: }
7290: form.submit();
7291: }
7292: ENDSCRIPT
7293: return $output;
7294: }
7295:
1.497 foxr 7296: =pod
7297:
7298: =item questions_to_line_list
1.157 albertel 7299:
1.497 foxr 7300: Converts a list of questions into a string of comma separated
7301: line numbers in the answer sheet used by the questions. This is
7302: used to fill in the scantron_questions form field.
7303:
7304: Arguments:
7305: questions - Reference to an array of questions.
7306:
7307: =cut
7308:
7309:
7310: sub questions_to_line_list {
7311: my ($questions) = @_;
7312: my @lines;
7313:
1.503 raeburn 7314: foreach my $item (@{$questions}) {
7315: my $question = $item;
7316: my ($first,$count,$last);
7317: if ($item =~ /^(\d+)\.(\d+)$/) {
7318: $question = $1;
7319: my $subquestion = $2;
7320: $first = $first_bubble_line{$question-1} + 1;
7321: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7322: my $subcount = 1;
7323: while ($subcount<$subquestion) {
7324: $first += $subans[$subcount-1];
7325: $subcount ++;
7326: }
7327: $count = $subans[$subquestion-1];
7328: } else {
7329: $first = $first_bubble_line{$question-1} + 1;
7330: $count = $bubble_lines_per_response{$question-1};
7331: }
1.506 raeburn 7332: $last = $first+$count-1;
1.503 raeburn 7333: push(@lines, ($first..$last));
1.497 foxr 7334: }
7335: return join(',', @lines);
7336: }
7337:
7338: =pod
7339:
7340: =item prompt_for_corrections
7341:
7342: Prompts for a potentially multiline correction to the
7343: user's bubbling (factors out common code from scantron_get_correction
7344: for multi and missing bubble cases).
7345:
7346: Arguments:
7347: $r - Apache request object.
7348: $question - The question number to prompt for.
7349: $scan_config - The scantron file configuration hash.
7350: $scan_record - Reference to the hash that has the the parsed scanlines.
1.503 raeburn 7351: $error - Type of error
1.497 foxr 7352:
7353: Implicit inputs:
7354: %bubble_lines_per_response - Starting line numbers for each question.
7355: Numbered from 0 (but question numbers are from
7356: 1.
7357: %first_bubble_line - Starting bubble line for each question.
1.509 raeburn 7358: %subdivided_bubble_lines - optionresponse, matchresponse and rankresponse
7359: type problems render as separate sub-questions,
1.503 raeburn 7360: in exam mode. This hash contains a
7361: comma-separated list of the lines per
7362: sub-question.
1.510 raeburn 7363: %responsetype_per_response - essayresponse, formularesponse,
7364: stringresponse, imageresponse, reactionresponse,
7365: and organicresponse type problem parts can have
1.503 raeburn 7366: multiple lines per response if the weight
7367: assigned exceeds 10. In this case, only
7368: one bubble per line is permitted, but more
7369: than one line might contain bubbles, e.g.
7370: bubbling of: line 1 - J, line 2 - J,
7371: line 3 - B would assign 22 points.
1.497 foxr 7372:
7373: =cut
7374:
7375: sub prompt_for_corrections {
1.503 raeburn 7376: my ($r, $question, $scan_config, $scan_record, $error) = @_;
7377: my ($current_line,$lines);
7378: my @linenums;
7379: my $questionnum = $question;
7380: if ($question =~ /^(\d+)\.(\d+)$/) {
7381: $question = $1;
7382: $current_line = $first_bubble_line{$question-1} + 1 ;
7383: my $subquestion = $2;
7384: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7385: my $subcount = 1;
7386: while ($subcount<$subquestion) {
7387: $current_line += $subans[$subcount-1];
7388: $subcount ++;
7389: }
7390: $lines = $subans[$subquestion-1];
7391: } else {
7392: $current_line = $first_bubble_line{$question-1} + 1 ;
7393: $lines = $bubble_lines_per_response{$question-1};
7394: }
1.497 foxr 7395: if ($lines > 1) {
1.503 raeburn 7396: $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
7397: if (($responsetype_per_response{$question-1} eq 'essayresponse') ||
7398: ($responsetype_per_response{$question-1} eq 'formularesponse') ||
1.510 raeburn 7399: ($responsetype_per_response{$question-1} eq 'stringresponse') ||
7400: ($responsetype_per_response{$question-1} eq 'imageresponse') ||
7401: ($responsetype_per_response{$question-1} eq 'reactionresponse') ||
7402: ($responsetype_per_response{$question-1} eq 'organicresponse')) {
1.572 www 7403: $r->print(&mt("Although this particular question type requires handgrading, the instructions for this question in the exam directed students to leave [quant,_1,line] blank on their bubblesheets.",$lines).'<br /><br />'.&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.').'<br />'.&mt('The score for this question will be a sum of the numeric values for the selected bubbles from each line, where A=1 point, B=2 points etc.').'<br />'.&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.").'<br /><br />');
1.503 raeburn 7404: } else {
7405: $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
7406: }
1.497 foxr 7407: }
7408: for (my $i =0; $i < $lines; $i++) {
1.503 raeburn 7409: my $selected = $$scan_record{"scantron.$current_line.answer"};
7410: &scantron_bubble_selector($r,$scan_config,$current_line,
7411: $questionnum,$error,split('', $selected));
1.524 raeburn 7412: push(@linenums,$current_line);
1.497 foxr 7413: $current_line++;
7414: }
7415: if ($lines > 1) {
7416: $r->print("<hr /><br />");
7417: }
1.503 raeburn 7418: return @linenums;
1.157 albertel 7419: }
1.423 albertel 7420:
7421: =pod
7422:
7423: =item scantron_bubble_selector
7424:
7425: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 7426: possibly showing the existing the selected bubbles if known
1.423 albertel 7427:
7428: Arguments:
7429: $r - Apache request object
7430: $scan_config - hash from &get_scantron_config()
1.497 foxr 7431: $line - Number of the line being displayed.
1.503 raeburn 7432: $questionnum - Question number (may include subquestion)
7433: $error - Type of error.
1.497 foxr 7434: @selected - Array of bubbles picked on this line.
1.423 albertel 7435:
7436: =cut
7437:
1.157 albertel 7438: sub scantron_bubble_selector {
1.503 raeburn 7439: my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157 albertel 7440: my $max=$$scan_config{'Qlength'};
1.274 albertel 7441:
7442: my $scmode=$$scan_config{'Qon'};
1.649 raeburn 7443: if ($scmode eq 'number' || $scmode eq 'letter') {
7444: if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
7445: ($$scan_config{'BubblesPerRow'} > 0)) {
7446: $max=$$scan_config{'BubblesPerRow'};
7447: if (($scmode eq 'number') && ($max > 10)) {
7448: $max = 10;
7449: } elsif (($scmode eq 'letter') && $max > 26) {
7450: $max = 26;
7451: }
7452: } else {
7453: $max = 10;
7454: }
7455: }
1.274 albertel 7456:
1.157 albertel 7457: my @alphabet=('A'..'Z');
1.503 raeburn 7458: $r->print(&Apache::loncommon::start_data_table().
7459: &Apache::loncommon::start_data_table_row());
7460: $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497 foxr 7461: for (my $i=0;$i<$max+1;$i++) {
7462: $r->print("\n".'<td align="center">');
7463: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
7464: else { $r->print(' '); }
7465: $r->print('</td>');
7466: }
1.503 raeburn 7467: $r->print(&Apache::loncommon::end_data_table_row().
7468: &Apache::loncommon::start_data_table_row());
1.497 foxr 7469: for (my $i=0;$i<$max;$i++) {
7470: $r->print("\n".
7471: '<td><label><input type="radio" name="scantron_correct_Q_'.
7472: $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
7473: }
1.503 raeburn 7474: my $nobub_checked = ' ';
7475: if ($error eq 'missingbubble') {
7476: $nobub_checked = ' checked = "checked" ';
7477: }
7478: $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
7479: $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
7480: '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
7481: $line.'" value="'.$questionnum.'" /></td>');
7482: $r->print(&Apache::loncommon::end_data_table_row().
7483: &Apache::loncommon::end_data_table());
1.157 albertel 7484: }
7485:
1.423 albertel 7486: =pod
7487:
7488: =item num_matches
7489:
1.424 albertel 7490: Counts the number of characters that are the same between the two arguments.
7491:
7492: Arguments:
7493: $orig - CODE from the scanline
7494: $code - CODE to match against
7495:
7496: Returns:
7497: $count - integer count of the number of same characters between the
7498: two arguments
7499:
1.423 albertel 7500: =cut
7501:
1.194 albertel 7502: sub num_matches {
7503: my ($orig,$code) = @_;
7504: my @code=split(//,$code);
7505: my @orig=split(//,$orig);
7506: my $same=0;
7507: for (my $i=0;$i<scalar(@code);$i++) {
7508: if ($code[$i] eq $orig[$i]) { $same++; }
7509: }
7510: return $same;
7511: }
7512:
1.423 albertel 7513: =pod
7514:
7515: =item scantron_get_closely_matching_CODEs
7516:
1.424 albertel 7517: Cycles through all CODEs and finds the set that has the greatest
7518: number of same characters as the provided CODE
7519:
7520: Arguments:
7521: $allcodes - hash ref returned by &get_codes()
7522: $CODE - CODE from the current scanline
7523:
7524: Returns:
7525: 2 element list
7526: - first elements is number of how closely matching the best fit is
7527: (5 means best set has 5 matching characters)
7528: - second element is an arrary ref containing the set of valid CODEs
7529: that best fit the passed in CODE
7530:
1.423 albertel 7531: =cut
7532:
1.194 albertel 7533: sub scantron_get_closely_matching_CODEs {
7534: my ($allcodes,$CODE)=@_;
7535: my @CODEs;
7536: foreach my $testcode (sort(keys(%{$allcodes}))) {
7537: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
7538: }
7539:
7540: return ($#CODEs,$CODEs[-1]);
7541: }
7542:
1.423 albertel 7543: =pod
7544:
7545: =item get_codes
7546:
1.424 albertel 7547: Builds a hash which has keys of all of the valid CODEs from the selected
7548: set of remembered CODEs.
7549:
7550: Arguments:
7551: $old_name - name of the set of remembered CODEs
7552: $cdom - domain of the course
7553: $cnum - internal course name
7554:
7555: Returns:
7556: %allcodes - keys are the valid CODEs, values are all 1
7557:
1.423 albertel 7558: =cut
7559:
1.194 albertel 7560: sub get_codes {
1.280 foxr 7561: my ($old_name, $cdom, $cnum) = @_;
7562: if (!$old_name) {
7563: $old_name=$env{'form.scantron_CODElist'};
7564: }
7565: if (!$cdom) {
7566: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
7567: }
7568: if (!$cnum) {
7569: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
7570: }
1.278 albertel 7571: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
7572: $cdom,$cnum);
7573: my %allcodes;
7574: if ($result{"type\0$old_name"} eq 'number') {
7575: %allcodes=map {($_,1)} split(',',$result{$old_name});
7576: } else {
7577: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
7578: }
1.194 albertel 7579: return %allcodes;
7580: }
7581:
1.423 albertel 7582: =pod
7583:
7584: =item scantron_validate_CODE
7585:
1.424 albertel 7586: Validates all scanlines in the selected file to not have any
7587: invalid or underspecified CODEs and that none of the codes are
7588: duplicated if this was requested.
7589:
1.423 albertel 7590: =cut
7591:
1.157 albertel 7592: sub scantron_validate_CODE {
7593: my ($r,$currentphase) = @_;
1.257 albertel 7594: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 7595: if ($scantron_config{'CODElocation'} &&
7596: $scantron_config{'CODEstart'} &&
7597: $scantron_config{'CODElength'}) {
1.257 albertel 7598: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 7599: &FIXME_blow_up()
7600: }
7601: } else {
7602: return (0,$currentphase+1);
7603: }
7604:
7605: my %usedCODEs;
7606:
1.194 albertel 7607: my %allcodes=&get_codes();
1.186 albertel 7608:
1.582 raeburn 7609: my $nav_error;
1.649 raeburn 7610: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
1.582 raeburn 7611: if ($nav_error) {
7612: $r->print(&navmap_errormsg());
7613: return(1,$currentphase);
7614: }
1.447 foxr 7615:
1.186 albertel 7616: my ($scanlines,$scan_data)=&scantron_getfile();
7617: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7618: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 7619: if ($line=~/^[\s\cz]*$/) { next; }
7620: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7621: $scan_data);
7622: my $CODE=$$scan_record{'scantron.CODE'};
7623: my $error=0;
1.224 albertel 7624: if (!&Apache::lonnet::validCODE($CODE)) {
7625: &scantron_get_correction($r,$i,$scan_record,
7626: \%scantron_config,
7627: $line,'incorrectCODE',\%allcodes);
7628: return(1,$currentphase);
7629: }
1.221 albertel 7630: if (%allcodes && !exists($allcodes{$CODE})
7631: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 7632: &scantron_get_correction($r,$i,$scan_record,
7633: \%scantron_config,
1.194 albertel 7634: $line,'incorrectCODE',\%allcodes);
7635: return(1,$currentphase);
1.186 albertel 7636: }
1.214 albertel 7637: if (exists($usedCODEs{$CODE})
1.257 albertel 7638: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 7639: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 7640: &scantron_get_correction($r,$i,$scan_record,
7641: \%scantron_config,
1.194 albertel 7642: $line,'duplicateCODE',$usedCODEs{$CODE});
7643: return(1,$currentphase);
1.186 albertel 7644: }
1.524 raeburn 7645: push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 7646: }
1.157 albertel 7647: return (0,$currentphase+1);
7648: }
7649:
1.423 albertel 7650: =pod
7651:
7652: =item scantron_validate_doublebubble
7653:
1.424 albertel 7654: Validates all scanlines in the selected file to not have any
7655: bubble lines with multiple bubbles marked.
7656:
1.423 albertel 7657: =cut
7658:
1.157 albertel 7659: sub scantron_validate_doublebubble {
7660: my ($r,$currentphase) = @_;
7661: #get student info
7662: my $classlist=&Apache::loncoursedata::get_classlist();
7663: my %idmap=&username_to_idmap($classlist);
7664:
7665: #get scantron line setup
1.257 albertel 7666: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7667: my ($scanlines,$scan_data)=&scantron_getfile();
1.583 raeburn 7668: my $nav_error;
1.649 raeburn 7669: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
1.583 raeburn 7670: if ($nav_error) {
7671: $r->print(&navmap_errormsg());
7672: return(1,$currentphase);
7673: }
1.447 foxr 7674:
1.157 albertel 7675: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7676: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7677: if ($line=~/^[\s\cz]*$/) { next; }
7678: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7679: $scan_data);
7680: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
7681: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
7682: 'doublebubble',
7683: $$scan_record{'scantron.doubleerror'});
7684: return (1,$currentphase);
7685: }
7686: return (0,$currentphase+1);
7687: }
7688:
1.423 albertel 7689:
1.503 raeburn 7690: sub scantron_get_maxbubble {
1.649 raeburn 7691: my ($nav_error,$scantron_config) = @_;
1.257 albertel 7692: if (defined($env{'form.scantron_maxbubble'}) &&
7693: $env{'form.scantron_maxbubble'}) {
1.447 foxr 7694: &restore_bubble_lines();
1.257 albertel 7695: return $env{'form.scantron_maxbubble'};
1.191 albertel 7696: }
1.330 albertel 7697:
1.447 foxr 7698: my (undef, undef, $sequence) =
1.257 albertel 7699: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 7700:
1.447 foxr 7701: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7702: unless (ref($navmap)) {
7703: if (ref($nav_error)) {
7704: $$nav_error = 1;
7705: }
1.591 raeburn 7706: return;
1.582 raeburn 7707: }
1.191 albertel 7708: my $map=$navmap->getResourceByUrl($sequence);
7709: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.649 raeburn 7710: my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
1.330 albertel 7711:
7712: &Apache::lonxml::clear_problem_counter();
7713:
1.557 raeburn 7714: my $uname = $env{'user.name'};
7715: my $udom = $env{'user.domain'};
1.435 foxr 7716: my $cid = $env{'request.course.id'};
7717: my $total_lines = 0;
7718: %bubble_lines_per_response = ();
1.447 foxr 7719: %first_bubble_line = ();
1.503 raeburn 7720: %subdivided_bubble_lines = ();
7721: %responsetype_per_response = ();
1.554 raeburn 7722:
1.447 foxr 7723: my $response_number = 0;
7724: my $bubble_line = 0;
1.191 albertel 7725: foreach my $resource (@resources) {
1.672 raeburn 7726: my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
7727: $udom,undef,$bubbles_per_row);
1.542 raeburn 7728: if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
7729: foreach my $part_id (@{$parts}) {
7730: my $lines;
7731:
7732: # TODO - make this a persistent hash not an array.
7733:
7734: # optionresponse, matchresponse and rankresponse type items
7735: # render as separate sub-questions in exam mode.
7736: if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
7737: ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
7738: ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
7739: my ($numbub,$numshown);
7740: if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
7741: if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
7742: $numbub = scalar(@{$analysis->{$part_id.'.options'}});
7743: }
7744: } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
7745: if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
7746: $numbub = scalar(@{$analysis->{$part_id.'.items'}});
7747: }
7748: } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
7749: if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
7750: $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
7751: }
7752: }
7753: if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
7754: $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
7755: }
1.649 raeburn 7756: my $bubbles_per_row =
7757: &bubblesheet_bubbles_per_row($scantron_config);
7758: my $inner_bubble_lines = int($numbub/$bubbles_per_row);
7759: if (($numbub % $bubbles_per_row) != 0) {
1.542 raeburn 7760: $inner_bubble_lines++;
7761: }
7762: for (my $i=0; $i<$numshown; $i++) {
7763: $subdivided_bubble_lines{$response_number} .=
7764: $inner_bubble_lines.',';
7765: }
7766: $subdivided_bubble_lines{$response_number} =~ s/,$//;
7767: $lines = $numshown * $inner_bubble_lines;
7768: } else {
7769: $lines = $analysis->{"$part_id.bubble_lines"};
1.649 raeburn 7770: }
1.542 raeburn 7771:
7772: $first_bubble_line{$response_number} = $bubble_line;
7773: $bubble_lines_per_response{$response_number} = $lines;
7774: $responsetype_per_response{$response_number} =
7775: $analysis->{$part_id.'.type'};
7776: $response_number++;
7777:
7778: $bubble_line += $lines;
7779: $total_lines += $lines;
7780: }
7781: }
7782: }
1.552 raeburn 7783: &Apache::lonnet::delenv('scantron.');
1.542 raeburn 7784:
7785: &save_bubble_lines();
7786: $env{'form.scantron_maxbubble'} =
7787: $total_lines;
7788: return $env{'form.scantron_maxbubble'};
7789: }
1.523 raeburn 7790:
1.649 raeburn 7791: sub bubblesheet_bubbles_per_row {
7792: my ($scantron_config) = @_;
7793: my $bubbles_per_row;
7794: if (ref($scantron_config) eq 'HASH') {
7795: $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
7796: }
7797: if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
7798: $bubbles_per_row = 10;
7799: }
7800: return $bubbles_per_row;
7801: }
7802:
1.157 albertel 7803: sub scantron_validate_missingbubbles {
7804: my ($r,$currentphase) = @_;
7805: #get student info
7806: my $classlist=&Apache::loncoursedata::get_classlist();
7807: my %idmap=&username_to_idmap($classlist);
7808:
7809: #get scantron line setup
1.257 albertel 7810: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7811: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7812: my $nav_error;
1.649 raeburn 7813: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 7814: if ($nav_error) {
7815: return(1,$currentphase);
7816: }
1.157 albertel 7817: if (!$max_bubble) { $max_bubble=2**31; }
7818: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7819: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7820: if ($line=~/^[\s\cz]*$/) { next; }
7821: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7822: $scan_data);
7823: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
7824: my @to_correct;
1.470 foxr 7825:
7826: # Probably here's where the error is...
7827:
1.157 albertel 7828: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505 raeburn 7829: my $lastbubble;
7830: if ($missing =~ /^(\d+)\.(\d+)$/) {
7831: my $question = $1;
7832: my $subquestion = $2;
7833: if (!defined($first_bubble_line{$question -1})) { next; }
7834: my $first = $first_bubble_line{$question-1};
7835: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7836: my $subcount = 1;
7837: while ($subcount<$subquestion) {
7838: $first += $subans[$subcount-1];
7839: $subcount ++;
7840: }
7841: my $count = $subans[$subquestion-1];
7842: $lastbubble = $first + $count;
7843: } else {
7844: if (!defined($first_bubble_line{$missing - 1})) { next; }
7845: $lastbubble = $first_bubble_line{$missing - 1} + $bubble_lines_per_response{$missing - 1};
7846: }
7847: if ($lastbubble > $max_bubble) { next; }
1.157 albertel 7848: push(@to_correct,$missing);
7849: }
7850: if (@to_correct) {
7851: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7852: $line,'missingbubble',\@to_correct);
7853: return (1,$currentphase);
7854: }
7855:
7856: }
7857: return (0,$currentphase+1);
7858: }
7859:
1.663 raeburn 7860: sub hand_bubble_option {
7861: my (undef, undef, $sequence) =
7862: &Apache::lonnet::decode_symb($env{'form.selectpage'});
7863: return if ($sequence eq '');
7864: my $navmap = Apache::lonnavmaps::navmap->new();
7865: unless (ref($navmap)) {
7866: return;
7867: }
7868: my $needs_hand_bubbles;
7869: my $map=$navmap->getResourceByUrl($sequence);
7870: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
7871: foreach my $res (@resources) {
7872: if (ref($res)) {
7873: if ($res->is_problem()) {
7874: my $partlist = $res->parts();
7875: foreach my $part (@{ $partlist }) {
7876: my @types = $res->responseType($part);
7877: if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
7878: $needs_hand_bubbles = 1;
7879: last;
7880: }
7881: }
7882: }
7883: }
7884: }
7885: if ($needs_hand_bubbles) {
7886: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
7887: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
7888: return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
7889: &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 />').
7890: '<label><input type="radio" name="scantron_lastbubblepoints" value="'.$bubbles_per_row.'" checked="checked" />'.&mt('[quant,_1,point]',$bubbles_per_row).'</label> '.&mt('or').' '.
7891: '<label><input type="radio" name="scantron_lastbubblepoints" value="0"/>0 points</label></p>';
7892: }
7893: return;
7894: }
1.423 albertel 7895:
1.82 albertel 7896: sub scantron_process_students {
1.608 www 7897: my ($r,$symb) = @_;
1.513 foxr 7898:
1.257 albertel 7899: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.513 foxr 7900: if (!$symb) {
7901: return '';
7902: }
1.324 albertel 7903: my $default_form_data=&defaultFormData($symb);
1.82 albertel 7904:
1.257 albertel 7905: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.649 raeburn 7906: my $bubbles_per_row =
7907: &bubblesheet_bubbles_per_row(\%scantron_config);
1.157 albertel 7908: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 7909: my $classlist=&Apache::loncoursedata::get_classlist();
7910: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 7911: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7912: unless (ref($navmap)) {
7913: $r->print(&navmap_errormsg());
7914: return '';
7915: }
1.83 albertel 7916: my $map=$navmap->getResourceByUrl($sequence);
7917: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.557 raeburn 7918: my (%grader_partids_by_symb,%grader_randomlists_by_symb);
7919: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
1.649 raeburn 7920: \%grader_randomlists_by_symb,$bubbles_per_row);
1.586 raeburn 7921: my $resource_error;
1.557 raeburn 7922: foreach my $resource (@resources) {
1.586 raeburn 7923: my $ressymb;
7924: if (ref($resource)) {
7925: $ressymb = $resource->symb();
7926: } else {
7927: $resource_error = 1;
7928: last;
7929: }
1.557 raeburn 7930: my ($analysis,$parts) =
7931: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672 raeburn 7932: $env{'user.name'},$env{'user.domain'},
7933: 1,$bubbles_per_row);
1.557 raeburn 7934: $grader_partids_by_symb{$ressymb} = $parts;
7935: if (ref($analysis) eq 'HASH') {
7936: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
7937: $grader_randomlists_by_symb{$ressymb} =
7938: $analysis->{'parts_withrandomlist'};
7939: }
7940: }
7941: }
1.586 raeburn 7942: if ($resource_error) {
7943: $r->print(&navmap_errormsg());
7944: return '';
7945: }
1.557 raeburn 7946:
1.554 raeburn 7947: my ($uname,$udom);
1.82 albertel 7948: my $result= <<SCANTRONFORM;
1.81 albertel 7949: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
7950: <input type="hidden" name="command" value="scantron_configphase" />
7951: $default_form_data
7952: SCANTRONFORM
1.82 albertel 7953: $r->print($result);
7954:
7955: my @delayqueue;
1.542 raeburn 7956: my (%completedstudents,%scandata);
1.140 albertel 7957:
1.520 www 7958: my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
1.200 albertel 7959: my $count=&get_todo_count($scanlines,$scan_data);
1.667 www 7960: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
7961: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.542 raeburn 7962: $r->print('<br />');
1.140 albertel 7963: my $start=&Time::HiRes::time();
1.158 albertel 7964: my $i=-1;
1.542 raeburn 7965: my $started;
1.447 foxr 7966:
1.582 raeburn 7967: my $nav_error;
1.649 raeburn 7968: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 7969: if ($nav_error) {
7970: $r->print(&navmap_errormsg());
7971: return '';
7972: }
7973:
1.513 foxr 7974: # If an ssi failed in scantron_get_maxbubble, put an error message out to
7975: # the user and return.
7976:
7977: if ($ssi_error) {
7978: $r->print("</form>");
7979: &ssi_print_error($r);
1.520 www 7980: &Apache::lonnet::remove_lock($lock);
1.513 foxr 7981: return ''; # Dunno why the other returns return '' rather than just returning.
7982: }
1.447 foxr 7983:
1.542 raeburn 7984: my %lettdig = &letter_to_digits();
7985: my $numletts = scalar(keys(%lettdig));
7986:
1.157 albertel 7987: while ($i<$scanlines->{'count'}) {
7988: ($uname,$udom)=('','');
7989: $i++;
1.200 albertel 7990: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7991: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 7992: if ($started) {
1.667 www 7993: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.200 albertel 7994: }
7995: $started=1;
1.157 albertel 7996: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7997: $scan_data);
7998: unless ($uname=&scantron_find_student($scan_record,$scan_data,
7999: \%idmap,$i)) {
8000: &scantron_add_delay(\@delayqueue,$line,
8001: 'Unable to find a student that matches',1);
8002: next;
8003: }
8004: if (exists $completedstudents{$uname}) {
8005: &scantron_add_delay(\@delayqueue,$line,
8006: 'Student '.$uname.' has multiple sheets',2);
8007: next;
8008: }
8009: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 8010:
1.586 raeburn 8011: my (%partids_by_symb,$res_error);
1.554 raeburn 8012: foreach my $resource (@resources) {
1.586 raeburn 8013: my $ressymb;
8014: if (ref($resource)) {
8015: $ressymb = $resource->symb();
8016: } else {
8017: $res_error = 1;
8018: last;
8019: }
1.557 raeburn 8020: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8021: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
8022: my ($analysis,$parts) =
1.672 raeburn 8023: &scantron_partids_tograde($resource,$env{'request.course.id'},
8024: $uname,$udom,undef,$bubbles_per_row);
1.557 raeburn 8025: $partids_by_symb{$ressymb} = $parts;
8026: } else {
8027: $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
8028: }
1.554 raeburn 8029: }
8030:
1.586 raeburn 8031: if ($res_error) {
8032: &scantron_add_delay(\@delayqueue,$line,
8033: 'An error occurred while grading student '.$uname,2);
8034: next;
8035: }
8036:
1.330 albertel 8037: &Apache::lonxml::clear_problem_counter();
1.514 raeburn 8038: &Apache::lonnet::appenv($scan_record);
1.376 albertel 8039:
8040: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
8041: &scantron_putfile($scanlines,$scan_data);
8042: }
1.161 albertel 8043:
1.542 raeburn 8044: my $scancode;
8045: if ((exists($scan_record->{'scantron.CODE'})) &&
8046: (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8047: $scancode = $scan_record->{'scantron.CODE'};
8048: } else {
8049: $scancode = '';
8050: }
8051:
8052: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.649 raeburn 8053: \@resources,\%partids_by_symb,
8054: $bubbles_per_row) eq 'ssi_error') {
1.542 raeburn 8055: $ssi_error = 0; # So end of handler error message does not trigger.
8056: $r->print("</form>");
8057: &ssi_print_error($r);
8058: &Apache::lonnet::remove_lock($lock);
8059: return ''; # Why return ''? Beats me.
8060: }
1.513 foxr 8061:
1.140 albertel 8062: $completedstudents{$uname}={'line'=>$line};
1.542 raeburn 8063: if ($env{'form.verifyrecord'}) {
8064: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
8065: my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8066: chomp($studentdata);
8067: $studentdata =~ s/\r$//;
8068: my $studentrecord = '';
8069: my $counter = -1;
8070: foreach my $resource (@resources) {
1.554 raeburn 8071: my $ressymb = $resource->symb();
1.542 raeburn 8072: ($counter,my $recording) =
8073: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8074: $counter,$studentdata,$partids_by_symb{$ressymb},
1.542 raeburn 8075: \%scantron_config,\%lettdig,$numletts);
8076: $studentrecord .= $recording;
8077: }
8078: if ($studentrecord ne $studentdata) {
1.554 raeburn 8079: &Apache::lonxml::clear_problem_counter();
8080: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.649 raeburn 8081: \@resources,\%partids_by_symb,
8082: $bubbles_per_row) eq 'ssi_error') {
1.554 raeburn 8083: $ssi_error = 0; # So end of handler error message does not trigger.
8084: $r->print("</form>");
8085: &ssi_print_error($r);
8086: &Apache::lonnet::remove_lock($lock);
8087: delete($completedstudents{$uname});
8088: return '';
8089: }
1.542 raeburn 8090: $counter = -1;
8091: $studentrecord = '';
8092: foreach my $resource (@resources) {
1.554 raeburn 8093: my $ressymb = $resource->symb();
1.542 raeburn 8094: ($counter,my $recording) =
8095: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8096: $counter,$studentdata,$partids_by_symb{$ressymb},
1.542 raeburn 8097: \%scantron_config,\%lettdig,$numletts);
8098: $studentrecord .= $recording;
8099: }
8100: if ($studentrecord ne $studentdata) {
1.658 bisitz 8101: $r->print('<p><span class="LC_warning">');
1.542 raeburn 8102: if ($scancode eq '') {
1.658 bisitz 8103: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
1.542 raeburn 8104: $uname.':'.$udom,$scan_record->{'scantron.ID'}));
8105: } else {
1.658 bisitz 8106: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
1.542 raeburn 8107: $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
8108: }
8109: $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
8110: &Apache::loncommon::start_data_table_header_row()."\n".
8111: '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
8112: &Apache::loncommon::end_data_table_header_row()."\n".
8113: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8114: '<td>'.&mt('Bubblesheet').'</td>'.
8115: '<td><span class="LC_nobreak"><tt>'.$studentdata.'</tt></span></td>'.
1.542 raeburn 8116: &Apache::loncommon::end_data_table_row().
8117: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8118: '<td>'.&mt('Stored submissions').'</td>'.
8119: '<td><span class="LC_nobreak"><tt>'.$studentrecord.'</tt></span></td>'."\n".
1.542 raeburn 8120: &Apache::loncommon::end_data_table_row().
8121: &Apache::loncommon::end_data_table().'</p>');
8122: } else {
8123: $r->print('<br /><span class="LC_warning">'.
8124: &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 />'.
8125: &mt("As a consequence, this user's submission history records two tries.").
8126: '</span><br />');
8127: }
8128: }
8129: }
1.543 raeburn 8130: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 8131: } continue {
1.330 albertel 8132: &Apache::lonxml::clear_problem_counter();
1.552 raeburn 8133: &Apache::lonnet::delenv('scantron.');
1.82 albertel 8134: }
1.140 albertel 8135: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.520 www 8136: &Apache::lonnet::remove_lock($lock);
1.172 albertel 8137: # my $lasttime = &Time::HiRes::time()-$start;
8138: # $r->print("<p>took $lasttime</p>");
1.140 albertel 8139:
1.200 albertel 8140: $r->print("</form>");
1.157 albertel 8141: return '';
1.75 albertel 8142: }
1.157 albertel 8143:
1.557 raeburn 8144: sub graders_resources_pass {
1.649 raeburn 8145: my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
8146: $bubbles_per_row) = @_;
1.557 raeburn 8147: if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) &&
8148: (ref($grader_randomlists_by_symb) eq 'HASH')) {
8149: foreach my $resource (@{$resources}) {
8150: my $ressymb = $resource->symb();
8151: my ($analysis,$parts) =
8152: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672 raeburn 8153: $env{'user.name'},$env{'user.domain'},
8154: 1,$bubbles_per_row);
1.557 raeburn 8155: $grader_partids_by_symb->{$ressymb} = $parts;
8156: if (ref($analysis) eq 'HASH') {
8157: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
8158: $grader_randomlists_by_symb->{$ressymb} =
8159: $analysis->{'parts_withrandomlist'};
8160: }
8161: }
8162: }
8163: }
8164: return;
8165: }
8166:
1.542 raeburn 8167: sub grade_student_bubbles {
1.649 raeburn 8168: my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row) = @_;
8169: # Walk folder as student here to get resources in order student sees.
1.554 raeburn 8170: if (ref($resources) eq 'ARRAY') {
8171: my $count = 0;
8172: foreach my $resource (@{$resources}) {
8173: my $ressymb = $resource->symb();
8174: my %form = ('submitted' => 'scantron',
8175: 'grade_target' => 'grade',
8176: 'grade_username' => $uname,
8177: 'grade_domain' => $udom,
8178: 'grade_courseid' => $env{'request.course.id'},
8179: 'grade_symb' => $ressymb,
8180: 'CODE' => $scancode
8181: );
1.649 raeburn 8182: if ($bubbles_per_row ne '') {
8183: $form{'bubbles_per_row'} = $bubbles_per_row;
8184: }
1.663 raeburn 8185: if ($env{'form.scantron_lastbubblepoints'} ne '') {
8186: $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
8187: }
1.554 raeburn 8188: if (ref($parts) eq 'HASH') {
8189: if (ref($parts->{$ressymb}) eq 'ARRAY') {
8190: foreach my $part (@{$parts->{$ressymb}}) {
8191: $form{'scantron_questnum_start.'.$part} =
8192: 1+$env{'form.scantron.first_bubble_line.'.$count};
8193: $count++;
8194: }
8195: }
8196: }
8197: my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
8198: return 'ssi_error' if ($ssi_error);
8199: last if (&Apache::loncommon::connection_aborted($r));
8200: }
1.542 raeburn 8201: }
8202: return;
8203: }
8204:
1.157 albertel 8205: sub scantron_upload_scantron_data {
1.608 www 8206: my ($r,$symb)=@_;
1.565 raeburn 8207: my $dom = $env{'request.role.domain'};
8208: my $domdesc = &Apache::lonnet::domain($dom,'description');
8209: $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
1.157 albertel 8210: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 8211: 'domainid',
1.565 raeburn 8212: 'coursename',$dom);
8213: my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
8214: (' 'x2).&mt('(shows course personnel)');
1.608 www 8215: my $default_form_data=&defaultFormData($symb);
1.579 raeburn 8216: my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
8217: my $nocourseid_alert = &mt("Please use the 'Select Course' link to open a separate window where you can search for a course to which a file can be uploaded.");
1.597 wenzelju 8218: $r->print(&Apache::lonhtmlcommon::scripttag('
1.157 albertel 8219: function checkUpload(formname) {
8220: if (formname.upfile.value == "") {
1.579 raeburn 8221: alert("'.$nofile_alert.'");
1.157 albertel 8222: return false;
8223: }
1.565 raeburn 8224: if (formname.courseid.value == "") {
1.579 raeburn 8225: alert("'.$nocourseid_alert.'");
1.565 raeburn 8226: return false;
8227: }
1.157 albertel 8228: formname.submit();
8229: }
1.565 raeburn 8230:
8231: function ToSyllabus() {
8232: var cdom = '."'$dom'".';
8233: var cnum = document.rules.courseid.value;
8234: if (cdom == "" || cdom == null) {
8235: return;
8236: }
8237: if (cnum == "" || cnum == null) {
8238: return;
8239: }
8240: syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
8241: "height=350,width=350,scrollbars=yes,menubar=no");
8242: return;
8243: }
8244:
1.597 wenzelju 8245: '));
8246: $r->print('
1.648 bisitz 8247: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
1.566 raeburn 8248:
1.492 albertel 8249: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
1.565 raeburn 8250: '.$default_form_data.
8251: &Apache::lonhtmlcommon::start_pick_box().
8252: &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
8253: '<input name="courseid" type="text" size="30" />'.$select_link.
8254: &Apache::lonhtmlcommon::row_closure().
8255: &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
8256: '<input name="coursename" type="text" size="30" />'.$syllabuslink.
8257: &Apache::lonhtmlcommon::row_closure().
8258: &Apache::lonhtmlcommon::row_title(&mt('Domain')).
8259: '<input name="domainid" type="hidden" />'.$domdesc.
8260: &Apache::lonhtmlcommon::row_closure().
8261: &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
8262: '<input type="file" name="upfile" size="50" />'.
8263: &Apache::lonhtmlcommon::row_closure(1).
8264: &Apache::lonhtmlcommon::end_pick_box().'<br />
8265:
1.492 albertel 8266: <input name="command" value="scantronupload_save" type="hidden" />
1.589 bisitz 8267: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
1.157 albertel 8268: </form>
1.492 albertel 8269: ');
1.157 albertel 8270: return '';
8271: }
8272:
1.423 albertel 8273:
1.157 albertel 8274: sub scantron_upload_scantron_data_save {
1.608 www 8275: my($r,$symb)=@_;
1.182 albertel 8276: my $doanotherupload=
8277: '<br /><form action="/adm/grades" method="post">'."\n".
8278: '<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492 albertel 8279: '<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182 albertel 8280: '</form>'."\n";
1.257 albertel 8281: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 8282: !&Apache::lonnet::allowed('usc',
1.257 albertel 8283: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.575 www 8284: $r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
1.614 www 8285: unless ($symb) {
1.182 albertel 8286: $r->print($doanotherupload);
8287: }
1.162 albertel 8288: return '';
8289: }
1.257 albertel 8290: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.568 raeburn 8291: my $uploadedfile;
1.567 raeburn 8292: $r->print('<h3>'.&mt("Uploading file to [_1]",$coursedata{'description'}).'</h3>');
1.257 albertel 8293: if (length($env{'form.upfile'}) < 2) {
1.568 raeburn 8294: $r->print(&mt('[_1]Error:[_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.','<span class="LC_error">','</span>','<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183 albertel 8295: } else {
1.568 raeburn 8296: my $result =
8297: &Apache::lonnet::userfileupload('upfile','','scantron','','','',
8298: $env{'form.courseid'},$env{'form.domainid'});
8299: if ($result =~ m{^/uploaded/}) {
1.567 raeburn 8300: $r->print(&mt('[_1]Success:[_2] Successfully uploaded [_3] bytes of data into location: [_4]',
8301: '<span class="LC_success">','</span>',(length($env{'form.upfile'})-1),
8302: '<span class="LC_filename">'.$result.'</span>'));
1.568 raeburn 8303: ($uploadedfile) = ($result =~ m{/([^/]+)$});
1.567 raeburn 8304: $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
1.568 raeburn 8305: $env{'form.courseid'},$uploadedfile));
1.210 albertel 8306: } else {
1.567 raeburn 8307: $r->print(&mt('[_1]Error:[_2] An error ([_3]) occurred when attempting to upload the file, [_4]',
8308: '<span class="LC_error">','</span>',$result,
1.568 raeburn 8309: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183 albertel 8310: }
8311: }
1.174 albertel 8312: if ($symb) {
1.612 www 8313: $r->print(&scantron_selectphase($r,$uploadedfile,$symb));
1.174 albertel 8314: } else {
1.182 albertel 8315: $r->print($doanotherupload);
1.174 albertel 8316: }
1.157 albertel 8317: return '';
8318: }
8319:
1.567 raeburn 8320: sub validate_uploaded_scantron_file {
8321: my ($cdom,$cname,$fname) = @_;
8322: my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
8323: my @lines;
8324: if ($scanlines ne '-1') {
8325: @lines=split("\n",$scanlines,-1);
8326: }
8327: my $output;
8328: if (@lines) {
8329: my (%counts,$max_match_format);
8330: my ($max_match_count,$max_match_pct) = (0,0);
8331: my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
8332: my %idmap = &username_to_idmap($classlist);
8333: foreach my $key (keys(%idmap)) {
8334: my $lckey = lc($key);
8335: $idmap{$lckey} = $idmap{$key};
8336: }
8337: my %unique_formats;
8338: my @formatlines = &get_scantronformat_file();
8339: foreach my $line (@formatlines) {
8340: chomp($line);
8341: my @config = split(/:/,$line);
8342: my $idstart = $config[5];
8343: my $idlength = $config[6];
8344: if (($idstart ne '') && ($idlength > 0)) {
8345: if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
8346: push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]);
8347: } else {
8348: $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
8349: }
8350: }
8351: }
8352: foreach my $key (keys(%unique_formats)) {
8353: my ($idstart,$idlength) = split(':',$key);
8354: %{$counts{$key}} = (
8355: 'found' => 0,
8356: 'total' => 0,
8357: );
8358: foreach my $line (@lines) {
8359: next if ($line =~ /^#/);
8360: next if ($line =~ /^[\s\cz]*$/);
8361: my $id = substr($line,$idstart-1,$idlength);
8362: $id = lc($id);
8363: if (exists($idmap{$id})) {
8364: $counts{$key}{'found'} ++;
8365: }
8366: $counts{$key}{'total'} ++;
8367: }
8368: if ($counts{$key}{'total'}) {
8369: my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
8370: if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
8371: $max_match_pct = $percent_match;
8372: $max_match_format = $key;
8373: $max_match_count = $counts{$key}{'total'};
8374: }
8375: }
8376: }
8377: if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
8378: my $format_descs;
8379: my $numwithformat = @{$unique_formats{$max_match_format}};
8380: for (my $i=0; $i<$numwithformat; $i++) {
8381: my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
8382: if ($i<$numwithformat-2) {
8383: $format_descs .= '"<i>'.$desc.'</i>", ';
8384: } elsif ($i==$numwithformat-2) {
8385: $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
8386: } elsif ($i==$numwithformat-1) {
8387: $format_descs .= '"<i>'.$desc.'</i>"';
8388: }
8389: }
8390: my $showpct = sprintf("%.0f",$max_match_pct).'%';
8391: $output .= '<br />'.&mt('Comparison of student IDs in the uploaded file with the course roster found matches for [_1] of the [_2] entries in the file (for the format defined for [_3]).','<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs).
8392: '<br />'.&mt('A low percentage of matches results from one of the following:').'<ul>'.
8393: '<li>'.&mt('The file was uploaded to the wrong course').'</li>'.
8394: '<li>'.&mt('The data are not in the format expected for the domain: [_1]',
8395: '<i>'.$cdom.'</i>').'</li>'.
8396: '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
8397: '<li>'.&mt('The course roster is not up to date').'</li>'.
8398: '</ul>';
8399: }
8400: } else {
8401: $output = '<span class="LC_warning">'.&mt('Uploaded file contained no data').'</span>';
8402: }
8403: return $output;
8404: }
8405:
1.202 albertel 8406: sub valid_file {
8407: my ($requested_file)=@_;
8408: foreach my $filename (sort(&scantron_filenames())) {
8409: if ($requested_file eq $filename) { return 1; }
8410: }
8411: return 0;
8412: }
8413:
8414: sub scantron_download_scantron_data {
1.608 www 8415: my ($r,$symb)=@_;
8416: my $default_form_data=&defaultFormData($symb);
1.257 albertel 8417: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
8418: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
8419: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 8420: if (! &valid_file($file)) {
1.492 albertel 8421: $r->print('
1.202 albertel 8422: <p>
1.492 albertel 8423: '.&mt('The requested file name was invalid.').'
1.202 albertel 8424: </p>
1.492 albertel 8425: ');
1.202 albertel 8426: return;
8427: }
8428: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
8429: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
8430: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
8431: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
8432: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
8433: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492 albertel 8434: $r->print('
1.202 albertel 8435: <p>
1.492 albertel 8436: '.&mt('[_1]Original[_2] file as uploaded by the scantron office.',
8437: '<a href="'.$orig.'">','</a>').'
1.202 albertel 8438: </p>
8439: <p>
1.492 albertel 8440: '.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
8441: '<a href="'.$corrected.'">','</a>').'
1.202 albertel 8442: </p>
8443: <p>
1.492 albertel 8444: '.&mt('[_1]Skipped[_2], a file of records that were skipped.',
8445: '<a href="'.$skipped.'">','</a>').'
1.202 albertel 8446: </p>
1.492 albertel 8447: ');
1.202 albertel 8448: return '';
8449: }
1.157 albertel 8450:
1.523 raeburn 8451: sub checkscantron_results {
1.608 www 8452: my ($r,$symb) = @_;
1.523 raeburn 8453: if (!$symb) {return '';}
8454: my $cid = $env{'request.course.id'};
1.542 raeburn 8455: my %lettdig = &letter_to_digits();
1.523 raeburn 8456: my $numletts = scalar(keys(%lettdig));
8457: my $cnum = $env{'course.'.$cid.'.num'};
8458: my $cdom = $env{'course.'.$cid.'.domain'};
8459: my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
8460: my %record;
8461: my %scantron_config =
8462: &Apache::grades::get_scantron_config($env{'form.scantron_format'});
1.649 raeburn 8463: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.523 raeburn 8464: my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
8465: my $classlist=&Apache::loncoursedata::get_classlist();
8466: my %idmap=&Apache::grades::username_to_idmap($classlist);
8467: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8468: unless (ref($navmap)) {
8469: $r->print(&navmap_errormsg());
8470: return '';
8471: }
1.523 raeburn 8472: my $map=$navmap->getResourceByUrl($sequence);
1.557 raeburn 8473: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8474: my (%grader_partids_by_symb,%grader_randomlists_by_symb);
1.673 raeburn 8475: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8476: \%grader_randomlists_by_symb,$bubbles_per_row);
1.557 raeburn 8477:
1.554 raeburn 8478: my ($uname,$udom);
1.523 raeburn 8479: my (%scandata,%lastname,%bylast);
8480: $r->print('
8481: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
8482:
8483: my @delayqueue;
8484: my %completedstudents;
8485:
8486: my $count=&Apache::grades::get_todo_count($scanlines,$scan_data);
1.667 www 8487: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1.546 raeburn 8488: my ($username,$domain,$started);
1.582 raeburn 8489: my $nav_error;
1.649 raeburn 8490: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 8491: if ($nav_error) {
8492: $r->print(&navmap_errormsg());
8493: return '';
8494: }
1.523 raeburn 8495:
1.667 www 8496: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.523 raeburn 8497: my $start=&Time::HiRes::time();
8498: my $i=-1;
8499:
8500: while ($i<$scanlines->{'count'}) {
8501: ($username,$domain,$uname)=('','','');
8502: $i++;
8503: my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
8504: if ($line=~/^[\s\cz]*$/) { next; }
8505: if ($started) {
1.667 www 8506: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.523 raeburn 8507: }
8508: $started=1;
8509: my $scan_record=
8510: &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
8511: $scan_data);
8512: unless ($uname=&Apache::grades::scantron_find_student($scan_record,$scan_data,
8513: \%idmap,$i)) {
8514: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
8515: 'Unable to find a student that matches',1);
8516: next;
8517: }
8518: if (exists $completedstudents{$uname}) {
8519: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
8520: 'Student '.$uname.' has multiple sheets',2);
8521: next;
8522: }
8523: my $pid = $scan_record->{'scantron.ID'};
8524: $lastname{$pid} = $scan_record->{'scantron.LastName'};
8525: push(@{$bylast{$lastname{$pid}}},$pid);
8526: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
8527: $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8528: chomp($scandata{$pid});
8529: $scandata{$pid} =~ s/\r$//;
8530: ($username,$domain)=split(/:/,$uname);
8531: my $counter = -1;
8532: foreach my $resource (@resources) {
1.557 raeburn 8533: my $parts;
1.554 raeburn 8534: my $ressymb = $resource->symb();
1.557 raeburn 8535: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8536: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
8537: (my $analysis,$parts) =
1.672 raeburn 8538: &scantron_partids_tograde($resource,$env{'request.course.id'},
8539: $username,$domain,undef,
8540: $bubbles_per_row);
1.557 raeburn 8541: } else {
8542: $parts = $grader_partids_by_symb{$ressymb};
8543: }
1.542 raeburn 8544: ($counter,my $recording) =
8545: &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
1.554 raeburn 8546: $scandata{$pid},$parts,
1.542 raeburn 8547: \%scantron_config,\%lettdig,$numletts);
8548: $record{$pid} .= $recording;
1.523 raeburn 8549: }
8550: }
8551: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
8552: $r->print('<br />');
8553: my ($okstudents,$badstudents,$numstudents,$passed,$failed);
8554: $passed = 0;
8555: $failed = 0;
8556: $numstudents = 0;
8557: foreach my $last (sort(keys(%bylast))) {
8558: if (ref($bylast{$last}) eq 'ARRAY') {
8559: foreach my $pid (sort(@{$bylast{$last}})) {
8560: my $showscandata = $scandata{$pid};
8561: my $showrecord = $record{$pid};
8562: $showscandata =~ s/\s/ /g;
8563: $showrecord =~ s/\s/ /g;
8564: if ($scandata{$pid} eq $record{$pid}) {
8565: my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
8566: $okstudents .= '<tr class="'.$css_class.'">'.
1.581 www 8567: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
1.523 raeburn 8568: '</tr>'."\n".
8569: '<tr class="'.$css_class.'">'."\n".
8570: '<td>Submissions</td><td>'.$showrecord.'</td></tr>'."\n";
8571: $passed ++;
8572: } else {
8573: my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
1.581 www 8574: $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 8575: '</tr>'."\n".
8576: '<tr class="'.$css_class.'">'."\n".
8577: '<td>Submissions</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
8578: '</tr>'."\n";
8579: $failed ++;
8580: }
8581: $numstudents ++;
8582: }
8583: }
8584: }
1.648 bisitz 8585: $r->print(
8586: '<p>'
8587: .&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).',
8588: '<b>',
8589: $numstudents,
8590: '</b>',
8591: $env{'form.scantron_maxbubble'})
8592: .'</p>'
8593: );
1.523 raeburn 8594: $r->print('<p>'.&mt('Exact matches for <b>[quant,_1,student]</b>.',$passed).'<br />'.&mt('Discrepancies detected for <b>[quant,_1,student]</b>.',$failed).'</p>');
8595: if ($passed) {
1.572 www 8596: $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 8597: $r->print(&Apache::loncommon::start_data_table()."\n".
8598: &Apache::loncommon::start_data_table_header_row()."\n".
8599: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
8600: &Apache::loncommon::end_data_table_header_row()."\n".
8601: $okstudents."\n".
8602: &Apache::loncommon::end_data_table().'<br />');
8603: }
8604: if ($failed) {
1.572 www 8605: $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 8606: $r->print(&Apache::loncommon::start_data_table()."\n".
8607: &Apache::loncommon::start_data_table_header_row()."\n".
8608: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
8609: &Apache::loncommon::end_data_table_header_row()."\n".
8610: $badstudents."\n".
8611: &Apache::loncommon::end_data_table()).'<br />'.
1.572 www 8612: &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 8613: }
1.614 www 8614: $r->print('</form><br />');
1.523 raeburn 8615: return;
8616: }
8617:
1.542 raeburn 8618: sub verify_scantron_grading {
1.554 raeburn 8619: my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
1.542 raeburn 8620: $scantron_config,$lettdig,$numletts) = @_;
8621: my ($record,%expected,%startpos);
8622: return ($counter,$record) if (!ref($resource));
8623: return ($counter,$record) if (!$resource->is_problem());
8624: my $symb = $resource->symb();
1.554 raeburn 8625: return ($counter,$record) if (ref($partids) ne 'ARRAY');
8626: foreach my $part_id (@{$partids}) {
1.542 raeburn 8627: $counter ++;
8628: $expected{$part_id} = 0;
8629: if ($env{"form.scantron.sub_bubblelines.$counter"}) {
8630: my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$counter"});
8631: foreach my $item (@sub_lines) {
8632: $expected{$part_id} += $item;
8633: }
8634: } else {
8635: $expected{$part_id} = $env{"form.scantron.bubblelines.$counter"};
8636: }
8637: $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
8638: }
8639: if ($symb) {
8640: my %recorded;
8641: my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
8642: if ($returnhash{'version'}) {
8643: my %lasthash=();
8644: my $version;
8645: for ($version=1;$version<=$returnhash{'version'};$version++) {
8646: foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
8647: $lasthash{$key}=$returnhash{$version.':'.$key};
8648: }
8649: }
8650: foreach my $key (keys(%lasthash)) {
8651: if ($key =~ /\.scantron$/) {
8652: my $value = &unescape($lasthash{$key});
8653: my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
8654: if ($value eq '') {
8655: for (my $i=0; $i<$expected{$part_id}; $i++) {
8656: for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
8657: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8658: }
8659: }
8660: } else {
8661: my @tocheck;
8662: my @items = split(//,$value);
8663: if (($scantron_config->{'Qon'} eq 'letter') ||
8664: ($scantron_config->{'Qon'} eq 'number')) {
8665: if (@items < $expected{$part_id}) {
8666: my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
8667: my @singles = split(//,$fragment);
8668: foreach my $pos (@singles) {
8669: if ($pos eq ' ') {
8670: push(@tocheck,$pos);
8671: } else {
8672: my $next = shift(@items);
8673: push(@tocheck,$next);
8674: }
8675: }
8676: } else {
8677: @tocheck = @items;
8678: }
8679: foreach my $letter (@tocheck) {
8680: if ($scantron_config->{'Qon'} eq 'letter') {
8681: if ($letter !~ /^[A-J]$/) {
8682: $letter = $scantron_config->{'Qoff'};
8683: }
8684: $recorded{$part_id} .= $letter;
8685: } elsif ($scantron_config->{'Qon'} eq 'number') {
8686: my $digit;
8687: if ($letter !~ /^[A-J]$/) {
8688: $digit = $scantron_config->{'Qoff'};
8689: } else {
8690: $digit = $lettdig->{$letter};
8691: }
8692: $recorded{$part_id} .= $digit;
8693: }
8694: }
8695: } else {
8696: @tocheck = @items;
8697: for (my $i=0; $i<$expected{$part_id}; $i++) {
8698: my $curr_sub = shift(@tocheck);
8699: my $digit;
8700: if ($curr_sub =~ /^[A-J]$/) {
8701: $digit = $lettdig->{$curr_sub}-1;
8702: }
8703: if ($curr_sub eq 'J') {
8704: $digit += scalar($numletts);
8705: }
8706: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
8707: if ($j == $digit) {
8708: $recorded{$part_id} .= $scantron_config->{'Qon'};
8709: } else {
8710: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8711: }
8712: }
8713: }
8714: }
8715: }
8716: }
8717: }
8718: }
1.554 raeburn 8719: foreach my $part_id (@{$partids}) {
1.542 raeburn 8720: if ($recorded{$part_id} eq '') {
8721: for (my $i=0; $i<$expected{$part_id}; $i++) {
8722: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
8723: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8724: }
8725: }
8726: }
8727: $record .= $recorded{$part_id};
8728: }
8729: }
8730: return ($counter,$record);
8731: }
8732:
8733: sub letter_to_digits {
8734: my %lettdig = (
8735: A => 1,
8736: B => 2,
8737: C => 3,
8738: D => 4,
8739: E => 5,
8740: F => 6,
8741: G => 7,
8742: H => 8,
8743: I => 9,
8744: J => 0,
8745: );
8746: return %lettdig;
8747: }
8748:
1.423 albertel 8749:
1.75 albertel 8750: #-------- end of section for handling grading scantron forms -------
8751: #
8752: #-------------------------------------------------------------------
8753:
1.72 ng 8754: #-------------------------- Menu interface -------------------------
8755: #
1.614 www 8756: #--- Href with symb and command ---
8757:
8758: sub href_symb_cmd {
8759: my ($symb,$cmd)=@_;
1.669 raeburn 8760: return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&command='.$cmd;
1.72 ng 8761: }
8762:
1.443 banghart 8763: sub grading_menu {
1.608 www 8764: my ($request,$symb) = @_;
1.443 banghart 8765: if (!$symb) {return '';}
8766:
8767: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
1.618 www 8768: 'command'=>'individual');
1.538 schulted 8769:
1.598 www 8770: my $url1a = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
8771:
8772: $fields{'command'}='ungraded';
8773: my $url1b=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8774:
8775: $fields{'command'}='table';
8776: my $url1c=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8777:
8778: $fields{'command'}='all_for_one';
8779: my $url1d=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8780:
1.621 www 8781: $fields{'command'}='downloadfilesselect';
8782: my $url1e=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8783:
1.443 banghart 8784: $fields{'command'} = 'csvform';
1.538 schulted 8785: my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
8786:
1.443 banghart 8787: $fields{'command'} = 'processclicker';
1.538 schulted 8788: my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
8789:
1.443 banghart 8790: $fields{'command'} = 'scantron_selectphase';
1.538 schulted 8791: my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.602 www 8792:
8793: $fields{'command'} = 'initialverifyreceipt';
8794: my $url5 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.538 schulted 8795:
1.598 www 8796: my @menu = ({ categorytitle=>'Hand Grading',
1.538 schulted 8797: items =>[
1.598 www 8798: { linktext => 'Select individual students to grade',
8799: url => $url1a,
1.538 schulted 8800: permission => 'F',
1.636 wenzelju 8801: icon => 'grade_students.png',
1.598 www 8802: linktitle => 'Grade current resource for a selection of students.'
8803: },
8804: { linktext => 'Grade ungraded submissions.',
8805: url => $url1b,
8806: permission => 'F',
1.636 wenzelju 8807: icon => 'ungrade_sub.png',
1.598 www 8808: linktitle => 'Grade all submissions that have not been graded yet.'
1.538 schulted 8809: },
1.598 www 8810:
8811: { linktext => 'Grading table',
8812: url => $url1c,
8813: permission => 'F',
1.636 wenzelju 8814: icon => 'grading_table.png',
1.598 www 8815: linktitle => 'Grade current resource for all students.'
8816: },
1.615 www 8817: { linktext => 'Grade page/folder for one student',
1.598 www 8818: url => $url1d,
8819: permission => 'F',
1.636 wenzelju 8820: icon => 'grade_PageFolder.png',
1.598 www 8821: linktitle => 'Grade all resources in current page/sequence/folder for one student.'
1.621 www 8822: },
8823: { linktext => 'Download submissions',
8824: url => $url1e,
8825: permission => 'F',
1.636 wenzelju 8826: icon => 'download_sub.png',
1.621 www 8827: linktitle => 'Download all students submissions.'
1.598 www 8828: }]},
8829: { categorytitle=>'Automated Grading',
8830: items =>[
8831:
1.538 schulted 8832: { linktext => 'Upload Scores',
8833: url => $url2,
8834: permission => 'F',
8835: icon => 'uploadscores.png',
8836: linktitle => 'Specify a file containing the class scores for current resource.'
8837: },
8838: { linktext => 'Process Clicker',
8839: url => $url3,
8840: permission => 'F',
8841: icon => 'addClickerInfoFile.png',
8842: linktitle => 'Specify a file containing the clicker information for this resource.'
8843: },
1.587 raeburn 8844: { linktext => 'Grade/Manage/Review Bubblesheets',
1.538 schulted 8845: url => $url4,
8846: permission => 'F',
1.636 wenzelju 8847: icon => 'bubblesheet.png',
1.648 bisitz 8848: linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
1.602 www 8849: },
1.616 www 8850: { linktext => 'Verify Receipt Number',
1.602 www 8851: url => $url5,
8852: permission => 'F',
1.636 wenzelju 8853: icon => 'receipt_number.png',
1.602 www 8854: linktitle => 'Verify a system-generated receipt number for correct problem solution.'
8855: }
8856:
1.538 schulted 8857: ]
8858: });
8859:
1.443 banghart 8860: # Create the menu
8861: my $Str;
1.445 banghart 8862: $Str .= '<form method="post" action="" name="gradingMenu">';
8863: $Str .= '<input type="hidden" name="command" value="" />'.
1.618 www 8864: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.445 banghart 8865:
1.602 www 8866: $Str .= &Apache::lonhtmlcommon::generate_menu(@menu);
1.443 banghart 8867: return $Str;
8868: }
8869:
1.598 www 8870:
8871: sub ungraded {
8872: my ($request)=@_;
8873: &submit_options($request);
8874: }
8875:
1.599 www 8876: sub submit_options_sequence {
1.608 www 8877: my ($request,$symb) = @_;
1.599 www 8878: if (!$symb) {return '';}
1.600 www 8879: &commonJSfunctions($request);
8880: my $result;
1.599 www 8881:
1.600 www 8882: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 8883: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 8884: $result.=&selectfield(0).
1.601 www 8885: '<input type="hidden" name="command" value="pickStudentPage" />
1.600 www 8886: <div>
8887: <input type="submit" value="'.&mt('Next').' →" />
8888: </div>
8889: </div>
8890: </form>';
8891: return $result;
8892: }
8893:
8894: sub submit_options_table {
1.608 www 8895: my ($request,$symb) = @_;
1.600 www 8896: if (!$symb) {return '';}
1.599 www 8897: &commonJSfunctions($request);
8898: my $result;
8899:
8900: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 8901: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.599 www 8902:
1.632 www 8903: $result.=&selectfield(0).
1.601 www 8904: '<input type="hidden" name="command" value="viewgrades" />
1.599 www 8905: <div>
8906: <input type="submit" value="'.&mt('Next').' →" />
8907: </div>
8908: </div>
8909: </form>';
8910: return $result;
8911: }
1.443 banghart 8912:
1.621 www 8913: sub submit_options_download {
8914: my ($request,$symb) = @_;
8915: if (!$symb) {return '';}
8916:
8917: &commonJSfunctions($request);
8918:
8919: my $result='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
8920: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
8921: $result.='
8922: <h2>
8923: '.&mt('Select Students for Which to Download Submissions').'
8924: </h2>'.&selectfield(1).'
8925: <input type="hidden" name="command" value="downloadfileslink" />
8926: <input type="submit" value="'.&mt('Next').' →" />
8927: </div>
8928: </div>
1.600 www 8929:
8930:
1.621 www 8931: </form>';
8932: return $result;
8933: }
8934:
1.443 banghart 8935: #--- Displays the submissions first page -------
8936: sub submit_options {
1.608 www 8937: my ($request,$symb) = @_;
1.72 ng 8938: if (!$symb) {return '';}
8939:
1.118 ng 8940: &commonJSfunctions($request);
1.473 albertel 8941: my $result;
1.533 bisitz 8942:
1.72 ng 8943: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 8944: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 8945: $result.=&selectfield(1).'
1.601 www 8946: <input type="hidden" name="command" value="submission" />
8947: <input type="submit" value="'.&mt('Next').' →" />
8948: </div>
8949: </div>
8950:
8951:
8952: </form>';
8953: return $result;
8954: }
1.533 bisitz 8955:
1.601 www 8956: sub selectfield {
8957: my ($full)=@_;
1.635 raeburn 8958: my %options =
8959: (&Apache::lonlocal::texthash(
8960: 'yes' => 'with submissions',
8961: 'queued' => 'in grading queue',
8962: 'graded' => 'with ungraded submissions',
8963: 'incorrect' => 'with incorrect submissions',
8964: 'all' => 'with any status'),
8965: 'select_form_order' => ['yes','queued','graded','incorrect','all']);
1.601 www 8966: my $result='<div class="LC_columnSection">
1.537 harmsja 8967:
1.533 bisitz 8968: <fieldset>
8969: <legend>
8970: '.&mt('Sections').'
8971: </legend>
1.601 www 8972: '.&Apache::lonstatistics::SectionSelect('section','multiple',5).'
1.533 bisitz 8973: </fieldset>
1.537 harmsja 8974:
1.533 bisitz 8975: <fieldset>
8976: <legend>
8977: '.&mt('Groups').'
8978: </legend>
8979: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
8980: </fieldset>
1.537 harmsja 8981:
1.533 bisitz 8982: <fieldset>
8983: <legend>
8984: '.&mt('Access Status').'
8985: </legend>
1.601 www 8986: '.&Apache::lonhtmlcommon::StatusOptions(undef,undef,5,undef,'mult').'
8987: </fieldset>';
8988: if ($full) {
8989: $result.='
1.533 bisitz 8990: <fieldset>
8991: <legend>
8992: '.&mt('Submission Status').'
1.601 www 8993: </legend>'.
1.635 raeburn 8994: &Apache::loncommon::select_form('all','submitonly',\%options).
1.601 www 8995: '</fieldset>';
8996: }
8997: $result.='</div><br />';
1.44 ng 8998: return $result;
1.2 albertel 8999: }
9000:
1.285 albertel 9001: sub reset_perm {
9002: undef(%perm);
9003: }
9004:
9005: sub init_perm {
9006: &reset_perm();
1.300 albertel 9007: foreach my $test_perm ('vgr','mgr','opa') {
9008:
9009: my $scope = $env{'request.course.id'};
9010: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
9011:
9012: $scope .= '/'.$env{'request.course.sec'};
9013: if ( $perm{$test_perm}=
9014: &Apache::lonnet::allowed($test_perm,$scope)) {
9015: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
9016: } else {
9017: delete($perm{$test_perm});
9018: }
1.285 albertel 9019: }
9020: }
9021: }
9022:
1.674 raeburn 9023: sub init_old_essays {
9024: my ($symb,$apath,$adom,$aname) = @_;
9025: if ($symb ne '') {
9026: my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
9027: if (keys(%essays) > 0) {
9028: $old_essays{$symb} = \%essays;
9029: }
9030: }
9031: return;
9032: }
9033:
9034: sub reset_old_essays {
9035: undef(%old_essays);
9036: }
9037:
1.400 www 9038: sub gather_clicker_ids {
1.408 albertel 9039: my %clicker_ids;
1.400 www 9040:
9041: my $classlist = &Apache::loncoursedata::get_classlist();
9042:
9043: # Set up a couple variables.
1.407 albertel 9044: my $username_idx = &Apache::loncoursedata::CL_SNAME();
9045: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 9046: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 9047:
1.407 albertel 9048: foreach my $student (keys(%$classlist)) {
1.438 www 9049: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 9050: my $username = $classlist->{$student}->[$username_idx];
9051: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 9052: my $clickers =
1.408 albertel 9053: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 9054: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9055: $id=~s/^[\#0]+//;
1.421 www 9056: $id=~s/[\-\:]//g;
1.407 albertel 9057: if (exists($clicker_ids{$id})) {
1.408 albertel 9058: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 9059: } else {
1.408 albertel 9060: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 9061: }
9062: }
9063: }
1.407 albertel 9064: return %clicker_ids;
1.400 www 9065: }
9066:
1.402 www 9067: sub gather_adv_clicker_ids {
1.408 albertel 9068: my %clicker_ids;
1.402 www 9069: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
9070: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9071: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 9072: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 9073: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
9074: my ($puname,$pudom)=split(/\:/,$person);
9075: my $clickers =
1.408 albertel 9076: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 9077: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9078: $id=~s/^[\#0]+//;
1.421 www 9079: $id=~s/[\-\:]//g;
1.408 albertel 9080: if (exists($clicker_ids{$id})) {
9081: $clicker_ids{$id}.=','.$puname.':'.$pudom;
9082: } else {
9083: $clicker_ids{$id}=$puname.':'.$pudom;
9084: }
1.405 www 9085: }
1.402 www 9086: }
9087: }
1.407 albertel 9088: return %clicker_ids;
1.402 www 9089: }
9090:
1.413 www 9091: sub clicker_grading_parameters {
9092: return ('gradingmechanism' => 'scalar',
9093: 'upfiletype' => 'scalar',
9094: 'specificid' => 'scalar',
9095: 'pcorrect' => 'scalar',
9096: 'pincorrect' => 'scalar');
9097: }
9098:
1.400 www 9099: sub process_clicker {
1.608 www 9100: my ($r,$symb)=@_;
1.400 www 9101: if (!$symb) {return '';}
9102: my $result=&checkforfile_js();
1.632 www 9103: $result.=&Apache::loncommon::start_data_table().
9104: &Apache::loncommon::start_data_table_header_row().
9105: '<th>'.&mt('Specify a file containing clicker information and set grading options.').'</th>'.
9106: &Apache::loncommon::end_data_table_header_row().
9107: &Apache::loncommon::start_data_table_row()."<td>\n";
1.413 www 9108: # Attempt to restore parameters from last session, set defaults if not present
9109: my %Saveable_Parameters=&clicker_grading_parameters();
9110: &Apache::loncommon::restore_course_settings('grades_clicker',
9111: \%Saveable_Parameters);
9112: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
9113: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
9114: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
9115: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
9116:
9117: my %checked;
1.521 www 9118: foreach my $gradingmechanism ('attendance','personnel','specific','given') {
1.413 www 9119: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
1.569 bisitz 9120: $checked{$gradingmechanism}=' checked="checked"';
1.413 www 9121: }
9122: }
9123:
1.632 www 9124: my $upload=&mt("Evaluate File");
1.400 www 9125: my $type=&mt("Type");
1.402 www 9126: my $attendance=&mt("Award points just for participation");
9127: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 9128: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.521 www 9129: my $given=&mt("Correctness determined from given list of answers").' '.
9130: '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
1.402 www 9131: my $pcorrect=&mt("Percentage points for correct solution");
9132: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 9133: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.635 raeburn 9134: {'iclicker' => 'i>clicker',
1.666 www 9135: 'interwrite' => 'interwrite PRS',
9136: 'turning' => 'Turning Technologies'});
1.418 albertel 9137: $symb = &Apache::lonenc::check_encrypt($symb);
1.597 wenzelju 9138: $result.= &Apache::lonhtmlcommon::scripttag(<<ENDUPFORM);
1.402 www 9139: function sanitycheck() {
9140: // Accept only integer percentages
9141: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
9142: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
9143: // Find out grading choice
9144: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9145: if (document.forms.gradesupload.gradingmechanism[i].checked) {
9146: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
9147: }
9148: }
9149: // By default, new choice equals user selection
9150: newgradingchoice=gradingchoice;
9151: // Not good to give more points for false answers than correct ones
9152: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
9153: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
9154: }
9155: // If new choice is attendance only, and old choice was correctness-based, restore defaults
9156: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
9157: document.forms.gradesupload.pcorrect.value=100;
9158: document.forms.gradesupload.pincorrect.value=100;
9159: }
9160: // If the values are different, cannot be attendance only
9161: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
9162: (gradingchoice=='attendance')) {
9163: newgradingchoice='personnel';
9164: }
9165: // Change grading choice to new one
9166: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9167: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
9168: document.forms.gradesupload.gradingmechanism[i].checked=true;
9169: } else {
9170: document.forms.gradesupload.gradingmechanism[i].checked=false;
9171: }
9172: }
9173: // Remember the old state
9174: document.forms.gradesupload.waschecked.value=newgradingchoice;
9175: }
1.597 wenzelju 9176: ENDUPFORM
9177: $result.= <<ENDUPFORM;
1.400 www 9178: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
9179: <input type="hidden" name="symb" value="$symb" />
9180: <input type="hidden" name="command" value="processclickerfile" />
9181: <input type="file" name="upfile" size="50" />
9182: <br /><label>$type: $selectform</label>
1.632 www 9183: ENDUPFORM
9184: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9185: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDGRADINGFORM);
9186: <label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
1.589 bisitz 9187: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
9188: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
1.414 www 9189: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.589 bisitz 9190: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
1.521 www 9191: <br />
9192: <input type="text" name="givenanswer" size="50" />
1.413 www 9193: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
1.632 www 9194: ENDGRADINGFORM
9195: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9196: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDPERCFORM);
9197: <label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
1.589 bisitz 9198: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
9199: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.597 wenzelju 9200: </form>'
1.632 www 9201: ENDPERCFORM
9202: $result.='</td>'.
9203: &Apache::loncommon::end_data_table_row().
9204: &Apache::loncommon::end_data_table();
1.400 www 9205: return $result;
9206: }
9207:
9208: sub process_clicker_file {
1.608 www 9209: my ($r,$symb)=@_;
1.400 www 9210: if (!$symb) {return '';}
1.413 www 9211:
9212: my %Saveable_Parameters=&clicker_grading_parameters();
9213: &Apache::loncommon::store_course_settings('grades_clicker',
9214: \%Saveable_Parameters);
1.598 www 9215: my $result='';
1.404 www 9216: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 9217: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
1.614 www 9218: return $result;
1.404 www 9219: }
1.522 www 9220: if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
1.521 www 9221: $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
1.614 www 9222: return $result;
1.521 www 9223: }
1.522 www 9224: my $foundgiven=0;
1.521 www 9225: if ($env{'form.gradingmechanism'} eq 'given') {
9226: $env{'form.givenanswer'}=~s/^\s*//gs;
9227: $env{'form.givenanswer'}=~s/\s*$//gs;
1.644 www 9228: $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
1.521 www 9229: $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
1.522 www 9230: my @answers=split(/\,/,$env{'form.givenanswer'});
9231: $foundgiven=$#answers+1;
1.521 www 9232: }
1.407 albertel 9233: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 9234: my %correct_ids;
1.404 www 9235: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 9236: %correct_ids=&gather_adv_clicker_ids();
1.404 www 9237: }
9238: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 9239: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
9240: $correct_id=~tr/a-z/A-Z/;
9241: $correct_id=~s/\s//gs;
9242: $correct_id=~s/^[\#0]+//;
1.421 www 9243: $correct_id=~s/[\-\:]//g;
1.414 www 9244: if ($correct_id) {
9245: $correct_ids{$correct_id}='specified';
9246: }
9247: }
1.400 www 9248: }
1.404 www 9249: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 9250: $result.=&mt('Score based on attendance only');
1.521 www 9251: } elsif ($env{'form.gradingmechanism'} eq 'given') {
1.522 www 9252: $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
1.404 www 9253: } else {
1.408 albertel 9254: my $number=0;
1.411 www 9255: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 9256: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 9257: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 9258: if ($correct_ids{$id} eq 'specified') {
9259: $result.=&mt('specified');
9260: } else {
9261: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
9262: $result.=&Apache::loncommon::plainname($uname,$udom);
9263: }
9264: $number++;
9265: }
1.411 www 9266: $result.="</p>\n";
1.408 albertel 9267: if ($number==0) {
9268: $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
1.614 www 9269: return $result;
1.408 albertel 9270: }
1.404 www 9271: }
1.405 www 9272: if (length($env{'form.upfile'}) < 2) {
1.407 albertel 9273: $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
9274: '<span class="LC_error">',
9275: '</span>',
9276: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.614 www 9277: return $result;
1.405 www 9278: }
1.410 www 9279:
9280: # Were able to get all the info needed, now analyze the file
9281:
1.411 www 9282: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 9283: $symb = &Apache::lonenc::check_encrypt($symb);
1.632 www 9284: $result.=&Apache::loncommon::start_data_table().
9285: &Apache::loncommon::start_data_table_header_row().
9286: '<th>'.&mt('Evaluate clicker file').'</th>'.
9287: &Apache::loncommon::end_data_table_header_row().
9288: &Apache::loncommon::start_data_table_row().(<<ENDHEADER);
9289: <td>
1.410 www 9290: <form method="post" action="/adm/grades" name="clickeranalysis">
9291: <input type="hidden" name="symb" value="$symb" />
9292: <input type="hidden" name="command" value="assignclickergrades" />
1.411 www 9293: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
9294: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
9295: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 9296: ENDHEADER
1.522 www 9297: if ($env{'form.gradingmechanism'} eq 'given') {
9298: $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
9299: }
1.408 albertel 9300: my %responses;
9301: my @questiontitles;
1.405 www 9302: my $errormsg='';
9303: my $number=0;
9304: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 9305: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 9306: }
1.419 www 9307: if ($env{'form.upfiletype'} eq 'interwrite') {
9308: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
9309: }
1.666 www 9310: if ($env{'form.upfiletype'} eq 'turning') {
9311: ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
9312: }
1.411 www 9313: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
9314: '<input type="hidden" name="number" value="'.$number.'" />'.
9315: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
9316: $env{'form.pcorrect'},$env{'form.pincorrect'}).
9317: '<br />';
1.522 www 9318: if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
9319: $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
1.614 www 9320: return $result;
1.522 www 9321: }
1.414 www 9322: # Remember Question Titles
9323: # FIXME: Possibly need delimiter other than ":"
9324: for (my $i=0;$i<$number;$i++) {
9325: $result.='<input type="hidden" name="question:'.$i.'" value="'.
9326: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
9327: }
1.411 www 9328: my $correct_count=0;
9329: my $student_count=0;
9330: my $unknown_count=0;
1.414 www 9331: # Match answers with usernames
9332: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 9333: foreach my $id (keys(%responses)) {
1.410 www 9334: if ($correct_ids{$id}) {
1.414 www 9335: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 9336: $correct_count++;
1.410 www 9337: } elsif ($clicker_ids{$id}) {
1.437 www 9338: if ($clicker_ids{$id}=~/\,/) {
9339: # More than one user with the same clicker!
1.632 www 9340: $result.="</td>".&Apache::loncommon::end_data_table_row().
9341: &Apache::loncommon::start_data_table_row()."<td>".
9342: &mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
1.437 www 9343: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
9344: "<select name='multi".$id."'>";
9345: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
9346: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
9347: }
9348: $result.='</select>';
9349: $unknown_count++;
9350: } else {
9351: # Good: found one and only one user with the right clicker
9352: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
9353: $student_count++;
9354: }
1.410 www 9355: } else {
1.632 www 9356: $result.="</td>".&Apache::loncommon::end_data_table_row().
9357: &Apache::loncommon::start_data_table_row()."<td>".
9358: &mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
1.411 www 9359: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
9360: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
9361: "\n".&mt("Domain").": ".
9362: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
1.643 www 9363: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
1.411 www 9364: $unknown_count++;
1.410 www 9365: }
1.405 www 9366: }
1.412 www 9367: $result.='<hr />'.
9368: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
1.521 www 9369: if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
1.412 www 9370: if ($correct_count==0) {
9371: $errormsg.="Found no correct answers answers for grading!";
9372: } elsif ($correct_count>1) {
1.414 www 9373: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 9374: }
9375: }
1.428 www 9376: if ($number<1) {
9377: $errormsg.="Found no questions.";
9378: }
1.412 www 9379: if ($errormsg) {
9380: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
9381: } else {
9382: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
9383: }
1.632 www 9384: $result.='</form></td>'.
9385: &Apache::loncommon::end_data_table_row().
9386: &Apache::loncommon::end_data_table();
1.614 www 9387: return $result;
1.400 www 9388: }
9389:
1.405 www 9390: sub iclicker_eval {
1.406 www 9391: my ($questiontitles,$responses)=@_;
1.405 www 9392: my $number=0;
9393: my $errormsg='';
9394: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 9395: my %components=&Apache::loncommon::record_sep($line);
9396: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 9397: if ($entries[0] eq 'Question') {
9398: for (my $i=3;$i<$#entries;$i+=6) {
9399: $$questiontitles[$number]=$entries[$i];
9400: $number++;
9401: }
9402: }
9403: if ($entries[0]=~/^\#/) {
9404: my $id=$entries[0];
9405: my @idresponses;
9406: $id=~s/^[\#0]+//;
9407: for (my $i=0;$i<$number;$i++) {
9408: my $idx=3+$i*6;
1.644 www 9409: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
1.408 albertel 9410: push(@idresponses,$entries[$idx]);
9411: }
9412: $$responses{$id}=join(',',@idresponses);
9413: }
1.405 www 9414: }
9415: return ($errormsg,$number);
9416: }
9417:
1.419 www 9418: sub interwrite_eval {
9419: my ($questiontitles,$responses)=@_;
9420: my $number=0;
9421: my $errormsg='';
1.420 www 9422: my $skipline=1;
9423: my $questionnumber=0;
9424: my %idresponses=();
1.419 www 9425: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
9426: my %components=&Apache::loncommon::record_sep($line);
9427: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 9428: if ($entries[1] eq 'Time') { $skipline=0; next; }
9429: if ($entries[1] eq 'Response') { $skipline=1; }
9430: next if $skipline;
9431: if ($entries[0]!=$questionnumber) {
9432: $questionnumber=$entries[0];
9433: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
9434: $number++;
1.419 www 9435: }
1.420 www 9436: my $id=$entries[4];
9437: $id=~s/^[\#0]+//;
1.421 www 9438: $id=~s/^v\d*\://i;
9439: $id=~s/[\-\:]//g;
1.420 www 9440: $idresponses{$id}[$number]=$entries[6];
9441: }
1.524 raeburn 9442: foreach my $id (keys(%idresponses)) {
1.420 www 9443: $$responses{$id}=join(',',@{$idresponses{$id}});
9444: $$responses{$id}=~s/^\s*\,//;
1.419 www 9445: }
9446: return ($errormsg,$number);
9447: }
9448:
1.666 www 9449: sub turning_eval {
9450: my ($questiontitles,$responses)=@_;
9451: my $number=0;
9452: my $errormsg='';
9453: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
9454: my %components=&Apache::loncommon::record_sep($line);
9455: my @entries=map {$components{$_}} (sort(keys(%components)));
9456: if ($#entries>$number) { $number=$#entries; }
9457: my $id=$entries[0];
9458: my @idresponses;
9459: $id=~s/^[\#0]+//;
9460: unless ($id) { next; }
9461: for (my $idx=1;$idx<=$#entries;$idx++) {
9462: $entries[$idx]=~s/\,/\;/g;
9463: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
9464: push(@idresponses,$entries[$idx]);
9465: }
9466: $$responses{$id}=join(',',@idresponses);
9467: }
9468: for (my $i=1; $i<=$number; $i++) {
9469: $$questiontitles[$i]=&mt('Question [_1]',$i);
9470: }
9471: return ($errormsg,$number);
9472: }
9473:
9474:
1.414 www 9475: sub assign_clicker_grades {
1.608 www 9476: my ($r,$symb)=@_;
1.414 www 9477: if (!$symb) {return '';}
1.416 www 9478: # See which part we are saving to
1.582 raeburn 9479: my $res_error;
9480: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
9481: if ($res_error) {
9482: return &navmap_errormsg();
9483: }
1.416 www 9484: # FIXME: This should probably look for the first handgradeable part
9485: my $part=$$partlist[0];
9486: # Start screen output
1.632 www 9487: my $result=&Apache::loncommon::start_data_table().
9488: &Apache::loncommon::start_data_table_header_row().
9489: '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
9490: &Apache::loncommon::end_data_table_header_row().
9491: &Apache::loncommon::start_data_table_row().'<td>';
1.414 www 9492: # Get correct result
9493: # FIXME: Possibly need delimiter other than ":"
9494: my @correct=();
1.415 www 9495: my $gradingmechanism=$env{'form.gradingmechanism'};
9496: my $number=$env{'form.number'};
9497: if ($gradingmechanism ne 'attendance') {
1.414 www 9498: foreach my $key (keys(%env)) {
9499: if ($key=~/^form\.correct\:/) {
9500: my @input=split(/\,/,$env{$key});
9501: for (my $i=0;$i<=$#input;$i++) {
9502: if (($correct[$i]) && ($input[$i]) &&
9503: ($correct[$i] ne $input[$i])) {
9504: $result.='<br /><span class="LC_warning">'.
9505: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
9506: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
1.644 www 9507: } elsif (($input[$i]) || ($input[$i] eq '0')) {
1.414 www 9508: $correct[$i]=$input[$i];
9509: }
9510: }
9511: }
9512: }
1.415 www 9513: for (my $i=0;$i<$number;$i++) {
1.644 www 9514: if ((!$correct[$i]) && ($correct[$i] ne '0')) {
1.414 www 9515: $result.='<br /><span class="LC_error">'.
9516: &mt('No correct result given for question "[_1]"!',
9517: $env{'form.question:'.$i}).'</span>';
9518: }
9519: }
1.644 www 9520: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
1.414 www 9521: }
9522: # Start grading
1.415 www 9523: my $pcorrect=$env{'form.pcorrect'};
9524: my $pincorrect=$env{'form.pincorrect'};
1.416 www 9525: my $storecount=0;
1.632 www 9526: my %users=();
1.415 www 9527: foreach my $key (keys(%env)) {
1.420 www 9528: my $user='';
1.415 www 9529: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 9530: $user=$1;
9531: }
9532: if ($key=~/^form\.unknown\:(.*)$/) {
9533: my $id=$1;
9534: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
9535: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 9536: } elsif ($env{'form.multi'.$id}) {
9537: $user=$env{'form.multi'.$id};
1.420 www 9538: }
9539: }
1.632 www 9540: if ($user) {
9541: if ($users{$user}) {
9542: $result.='<br /><span class="LC_warning">'.
9543: &mt("More than one entry found for <tt>[_1]</tt>!",$user).
9544: '</span><br />';
9545: }
9546: $users{$user}=1;
1.415 www 9547: my @answer=split(/\,/,$env{$key});
9548: my $sum=0;
1.522 www 9549: my $realnumber=$number;
1.415 www 9550: for (my $i=0;$i<$number;$i++) {
1.576 www 9551: if ($correct[$i] eq '-') {
9552: $realnumber--;
1.644 www 9553: } elsif (($answer[$i]) || ($answer[$i]=~/^[0\.]+$/)) {
1.415 www 9554: if ($gradingmechanism eq 'attendance') {
9555: $sum+=$pcorrect;
1.576 www 9556: } elsif ($correct[$i] eq '*') {
1.522 www 9557: $sum+=$pcorrect;
1.415 www 9558: } else {
1.644 www 9559: # We actually grade if correct or not
9560: my $increment=$pincorrect;
9561: # Special case: numerical answer "0"
9562: if ($correct[$i] eq '0') {
9563: if ($answer[$i]=~/^[0\.]+$/) {
9564: $increment=$pcorrect;
9565: }
9566: # General numerical answer, both evaluate to something non-zero
9567: } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
9568: if (1.0*$correct[$i]==1.0*$answer[$i]) {
9569: $increment=$pcorrect;
9570: }
9571: # Must be just alphanumeric
9572: } elsif ($answer[$i] eq $correct[$i]) {
9573: $increment=$pcorrect;
1.415 www 9574: }
1.644 www 9575: $sum+=$increment;
1.415 www 9576: }
9577: }
9578: }
1.522 www 9579: my $ave=$sum/(100*$realnumber);
1.416 www 9580: # Store
9581: my ($username,$domain)=split(/\:/,$user);
9582: my %grades=();
9583: $grades{"resource.$part.solved"}='correct_by_override';
9584: $grades{"resource.$part.awarded"}=$ave;
9585: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
9586: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
9587: $env{'request.course.id'},
9588: $domain,$username);
9589: if ($returncode ne 'ok') {
9590: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
9591: } else {
9592: $storecount++;
9593: }
1.415 www 9594: }
9595: }
9596: # We are done
1.549 hauer 9597: $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
1.632 www 9598: '</td>'.
9599: &Apache::loncommon::end_data_table_row().
9600: &Apache::loncommon::end_data_table();
1.614 www 9601: return $result;
1.414 www 9602: }
9603:
1.582 raeburn 9604: sub navmap_errormsg {
9605: return '<div class="LC_error">'.
9606: &mt('An error occurred retrieving information about resources in the course.').'<br />'.
1.595 raeburn 9607: &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 9608: '</div>';
9609: }
1.607 droeschl 9610:
1.609 www 9611: sub startpage {
1.671 raeburn 9612: my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
9613: if ($nomenu) {
9614: $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
9615: } else {
9616: unshift(@$crumbs,{href=>&href_symb_cmd($symb,'gradingmenu'),text=>"Grading"});
9617: $r->print(&Apache::loncommon::start_page('Grading',$js,
9618: {'bread_crumbs' => $crumbs}));
9619: &Apache::lonquickgrades::startGradeScreen($r,($env{'form.symb'}?'probgrading':'grading'));
9620: }
1.613 www 9621: unless ($nodisplayflag) {
1.671 raeburn 9622: $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
1.613 www 9623: }
1.607 droeschl 9624: }
1.582 raeburn 9625:
1.622 www 9626: sub select_problem {
9627: my ($r)=@_;
1.632 www 9628: $r->print('<h3>'.&mt('Select the problem or one of the problems you want to grade').'</h3><form action="/adm/grades">');
1.622 www 9629: $r->print(&Apache::lonstathelpers::problem_selector('.',undef,1));
9630: $r->print('<input type="hidden" name="command" value="gradingmenu" />');
9631: $r->print('<input type="submit" value="'.&mt('Next').' →" /></form>');
9632: }
9633:
1.1 albertel 9634: sub handler {
1.41 ng 9635: my $request=$_[0];
1.434 albertel 9636: &reset_caches();
1.646 raeburn 9637: if ($request->header_only) {
9638: &Apache::loncommon::content_type($request,'text/html');
9639: $request->send_http_header;
9640: return OK;
9641: }
9642: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
9643:
1.664 raeburn 9644: # see what command we need to execute
9645:
9646: my @commands=&Apache::loncommon::get_env_multiple('form.command');
9647: my $command=$commands[0];
9648:
1.646 raeburn 9649: &init_perm();
9650: if (!$env{'request.course.id'}) {
1.664 raeburn 9651: unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
9652: ($command =~ /^scantronupload/)) {
9653: # Not in a course.
9654: $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
9655: return HTTP_NOT_ACCEPTABLE;
9656: }
1.646 raeburn 9657: } elsif (!%perm) {
9658: $request->internal_redirect('/adm/quickgrades');
1.41 ng 9659: }
1.646 raeburn 9660: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 9661: $request->send_http_header;
1.646 raeburn 9662:
1.160 albertel 9663: if ($#commands > 0) {
9664: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
9665: }
1.608 www 9666:
9667: # see what the symb is
9668:
9669: my $symb=$env{'form.symb'};
9670: unless ($symb) {
9671: (my $url=$env{'form.url'}) =~ s-^https*://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
9672: $symb=&Apache::lonnet::symbread($url);
9673: }
1.646 raeburn 9674: &Apache::lonenc::check_decrypt(\$symb);
1.608 www 9675:
1.513 foxr 9676: $ssi_error = 0;
1.637 www 9677: if (($symb eq '' || $command eq '') && ($env{'request.course.id'})) {
1.601 www 9678: #
1.637 www 9679: # Not called from a resource, but inside a course
1.601 www 9680: #
1.622 www 9681: &startpage($request,undef,[],1,1);
9682: &select_problem($request);
1.41 ng 9683: } else {
1.104 albertel 9684: if ($command eq 'submission' && $perm{'vgr'}) {
1.671 raeburn 9685: my ($stuvcurrent,$stuvdisp,$versionform,$js);
9686: if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
9687: ($stuvcurrent,$stuvdisp,$versionform,$js) =
9688: &choose_task_version_form($symb,$env{'form.student'},
9689: $env{'form.userdom'});
9690: }
9691: &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
9692: if ($versionform) {
9693: $request->print($versionform);
9694: }
9695: $request->print('<br clear="all" />');
1.611 www 9696: ($env{'form.student'} eq '' ? &listStudents($request,$symb) : &submission($request,0,0,$symb));
1.671 raeburn 9697: } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
9698: my ($stuvcurrent,$stuvdisp,$versionform,$js) =
9699: &choose_task_version_form($symb,$env{'form.student'},
9700: $env{'form.userdom'},
9701: $env{'form.inhibitmenu'});
9702: &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
9703: if ($versionform) {
9704: $request->print($versionform);
9705: }
9706: $request->print('<br clear="all" />');
9707: $request->print(&show_previous_task_version($request,$symb));
1.103 albertel 9708: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.615 www 9709: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
9710: {href=>'',text=>'Select student'}],1,1);
1.608 www 9711: &pickStudentPage($request,$symb);
1.103 albertel 9712: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.615 www 9713: &startpage($request,$symb,
9714: [{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
9715: {href=>'',text=>'Select student'},
9716: {href=>'',text=>'Grade student'}],1,1);
1.608 www 9717: &displayPage($request,$symb);
1.104 albertel 9718: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.616 www 9719: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
9720: {href=>'',text=>'Select student'},
9721: {href=>'',text=>'Grade student'},
9722: {href=>'',text=>'Store grades'}],1,1);
1.608 www 9723: &updateGradeByPage($request,$symb);
1.104 albertel 9724: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.619 www 9725: &startpage($request,$symb,[{href=>'',text=>'...'},
9726: {href=>'',text=>'Modify grades'}]);
1.608 www 9727: &processGroup($request,$symb);
1.104 albertel 9728: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.608 www 9729: &startpage($request,$symb);
9730: $request->print(&grading_menu($request,$symb));
1.598 www 9731: } elsif ($command eq 'individual' && $perm{'vgr'}) {
1.617 www 9732: &startpage($request,$symb,[{href=>'',text=>'Select individual students to grade'}]);
1.608 www 9733: $request->print(&submit_options($request,$symb));
1.598 www 9734: } elsif ($command eq 'ungraded' && $perm{'vgr'}) {
1.617 www 9735: &startpage($request,$symb,[{href=>'',text=>'Grade ungraded submissions'}]);
9736: $request->print(&listStudents($request,$symb,'graded'));
1.598 www 9737: } elsif ($command eq 'table' && $perm{'vgr'}) {
1.614 www 9738: &startpage($request,$symb,[{href=>"", text=>"Grading table"}]);
1.611 www 9739: $request->print(&submit_options_table($request,$symb));
1.598 www 9740: } elsif ($command eq 'all_for_one' && $perm{'vgr'}) {
1.615 www 9741: &startpage($request,$symb,[{href=>'',text=>'Grade page/folder for one student'}],1,1);
1.608 www 9742: $request->print(&submit_options_sequence($request,$symb));
1.104 albertel 9743: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.614 www 9744: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},{href=>'', text=>"Modify grades"}]);
1.608 www 9745: $request->print(&viewgrades($request,$symb));
1.104 albertel 9746: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.620 www 9747: &startpage($request,$symb,[{href=>'',text=>'...'},
9748: {href=>'',text=>'Store grades'}]);
1.608 www 9749: $request->print(&processHandGrade($request,$symb));
1.106 albertel 9750: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.614 www 9751: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},
9752: {href=>&href_symb_cmd($symb,'viewgrades').'&group=all§ion=all&Status=Active',
9753: text=>"Modify grades"},
9754: {href=>'', text=>"Store grades"}]);
1.608 www 9755: $request->print(&editgrades($request,$symb));
1.602 www 9756: } elsif ($command eq 'initialverifyreceipt' && $perm{'vgr'}) {
1.616 www 9757: &startpage($request,$symb,[{href=>'',text=>'Verify Receipt Number'}]);
1.611 www 9758: $request->print(&initialverifyreceipt($request,$symb));
1.106 albertel 9759: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.616 www 9760: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"initialverifyreceipt"),text=>'Verify Receipt Number'},
9761: {href=>'',text=>'Verification Result'}]);
1.608 www 9762: $request->print(&verifyreceipt($request,$symb));
1.400 www 9763: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
1.615 www 9764: &startpage($request,$symb,[{href=>'', text=>'Process clicker'}]);
1.608 www 9765: $request->print(&process_clicker($request,$symb));
1.400 www 9766: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
1.615 www 9767: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
9768: {href=>'', text=>'Process clicker file'}]);
1.608 www 9769: $request->print(&process_clicker_file($request,$symb));
1.414 www 9770: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
1.615 www 9771: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
9772: {href=>'', text=>'Process clicker file'},
9773: {href=>'', text=>'Store grades'}]);
1.608 www 9774: $request->print(&assign_clicker_grades($request,$symb));
1.106 albertel 9775: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.627 www 9776: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9777: $request->print(&upcsvScores_form($request,$symb));
1.106 albertel 9778: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.627 www 9779: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9780: $request->print(&csvupload($request,$symb));
1.106 albertel 9781: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.627 www 9782: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9783: $request->print(&csvuploadmap($request,$symb));
1.246 albertel 9784: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 9785: if ($env{'form.associate'} ne 'Reverse Association') {
1.627 www 9786: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9787: $request->print(&csvuploadoptions($request,$symb));
1.41 ng 9788: } else {
1.257 albertel 9789: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
9790: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 9791: } else {
1.257 albertel 9792: $env{'form.upfile_associate'} = 'forward';
1.41 ng 9793: }
1.627 www 9794: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9795: $request->print(&csvuploadmap($request,$symb));
1.41 ng 9796: }
1.246 albertel 9797: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
1.627 www 9798: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9799: $request->print(&csvuploadassign($request,$symb));
1.106 albertel 9800: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.616 www 9801: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.612 www 9802: $request->print(&scantron_selectphase($request,undef,$symb));
1.203 albertel 9803: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
1.616 www 9804: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9805: $request->print(&scantron_do_warning($request,$symb));
1.142 albertel 9806: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
1.616 www 9807: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9808: $request->print(&scantron_validate_file($request,$symb));
1.106 albertel 9809: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.616 www 9810: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9811: $request->print(&scantron_process_students($request,$symb));
1.157 albertel 9812: } elsif ($command eq 'scantronupload' &&
1.257 albertel 9813: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
9814: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616 www 9815: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9816: $request->print(&scantron_upload_scantron_data($request,$symb));
1.157 albertel 9817: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 9818: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
9819: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616 www 9820: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9821: $request->print(&scantron_upload_scantron_data_save($request,$symb));
1.202 albertel 9822: } elsif ($command eq 'scantron_download' &&
1.257 albertel 9823: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.616 www 9824: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9825: $request->print(&scantron_download_scantron_data($request,$symb));
1.523 raeburn 9826: } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
1.616 www 9827: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.621 www 9828: $request->print(&checkscantron_results($request,$symb));
9829: } elsif ($command eq 'downloadfilesselect' && $perm{'vgr'}) {
9830: &startpage($request,$symb,[{href=>'', text=>'Select which submissions to download'}]);
9831: $request->print(&submit_options_download($request,$symb));
9832: } elsif ($command eq 'downloadfileslink' && $perm{'vgr'}) {
9833: &startpage($request,$symb,
9834: [{href=>&href_symb_cmd($symb,'downloadfilesselect'), text=>'Select which submissions to download'},
9835: {href=>'', text=>'Download submissions'}]);
9836: &submit_download_link($request,$symb);
1.106 albertel 9837: } elsif ($command) {
1.620 www 9838: &startpage($request,$symb,[{href=>'', text=>'Access denied'}]);
1.562 bisitz 9839: $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
1.26 albertel 9840: }
1.2 albertel 9841: }
1.513 foxr 9842: if ($ssi_error) {
9843: &ssi_print_error($request);
9844: }
1.671 raeburn 9845: if ($env{'form.inhibitmenu'}) {
9846: $request->print(&Apache::loncommon::end_page());
9847: } else {
9848: &Apache::lonquickgrades::endGradeScreen($request);
9849: }
1.434 albertel 9850: &reset_caches();
1.646 raeburn 9851: return OK;
1.44 ng 9852: }
9853:
1.1 albertel 9854: 1;
9855:
1.13 albertel 9856: __END__;
1.531 jms 9857:
9858:
9859: =head1 NAME
9860:
9861: Apache::grades
9862:
9863: =head1 SYNOPSIS
9864:
9865: Handles the viewing of grades.
9866:
9867: This is part of the LearningOnline Network with CAPA project
9868: described at http://www.lon-capa.org.
9869:
9870: =head1 OVERVIEW
9871:
9872: Do an ssi with retries:
9873: While I'd love to factor out this with the vesrion in lonprintout,
9874: 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
9875: I'm not quite ready to invent (e.g. an ssi_with_retry object).
9876:
9877: At least the logic that drives this has been pulled out into loncommon.
9878:
9879:
9880:
9881: ssi_with_retries - Does the server side include of a resource.
9882: if the ssi call returns an error we'll retry it up to
9883: the number of times requested by the caller.
9884: If we still have a proble, no text is appended to the
9885: output and we set some global variables.
9886: to indicate to the caller an SSI error occurred.
9887: All of this is supposed to deal with the issues described
9888: in LonCAPA BZ 5631 see:
9889: http://bugs.lon-capa.org/show_bug.cgi?id=5631
9890: by informing the user that this happened.
9891:
9892: Parameters:
9893: resource - The resource to include. This is passed directly, without
9894: interpretation to lonnet::ssi.
9895: form - The form hash parameters that guide the interpretation of the resource
9896:
9897: retries - Number of retries allowed before giving up completely.
9898: Returns:
9899: On success, returns the rendered resource identified by the resource parameter.
9900: Side Effects:
9901: The following global variables can be set:
9902: ssi_error - If an unrecoverable error occurred this becomes true.
9903: It is up to the caller to initialize this to false
9904: if desired.
9905: ssi_error_resource - If an unrecoverable error occurred, this is the value
9906: of the resource that could not be rendered by the ssi
9907: call.
9908: ssi_error_message - The error string fetched from the ssi response
9909: in the event of an error.
9910:
9911:
9912: =head1 HANDLER SUBROUTINE
9913:
9914: ssi_with_retries()
9915:
9916: =head1 SUBROUTINES
9917:
9918: =over
9919:
1.671 raeburn 9920: =head1 Routines to display previous version of a Task for a specific student
9921:
9922: Tasks are graded pass/fail. Students who have yet to pass a particular Task
9923: can receive another opportunity. Access to tasks is slot-based. If a slot
9924: requires a proctor to check-in the student, a new version of the Task will
9925: be created when the student is checked in to the new opportunity.
9926:
9927: If a particular student has tried two or more versions of a particular task,
9928: the submission screen provides a user with vgr privileges (e.g., a Course
9929: Coordinator) the ability to display a previous version worked on by the
9930: student. By default, the current version is displayed. If a previous version
9931: has been selected for display, submission data are only shown that pertain
9932: to that particular version, and the interface to submit grades is not shown.
9933:
9934: =over 4
9935:
9936: =item show_previous_task_version()
9937:
9938: Displays a specified version of a student's Task, as the student sees it.
9939:
9940: Inputs: 2
9941: request - request object
9942: symb - unique symb for current instance of resource
9943:
9944: Output: None.
9945:
9946: Side Effects: calls &show_problem() to print version of Task, with
9947: version contained in form item: $env{'form.previousversion'}
9948:
9949: =item choose_task_version_form()
9950:
9951: Displays a web form used to select which version of a student's view of a
9952: Task should be displayed. Either launches a pop-up window, or replaces
9953: content in existing pop-up, or replaces page in main window.
9954:
9955: Inputs: 4
9956: symb - unique symb for current instance of resource
9957: uname - username of student
9958: udom - domain of student
9959: nomenu - 1 if display is in a pop-up window, and hence no menu
9960: breadcrumbs etc., are displayed
9961:
9962: Output: 4
9963: current - student's current version
9964: displayed - student's version being displayed
9965: result - scalar containing HTML for web form used to switch to
9966: a different version (or a link to close window, if pop-up).
9967: js - javascript for processing selection in versions web form
9968:
9969: Side Effects: None.
9970:
9971: =item previous_display_javascript()
9972:
9973: Inputs: 2
9974: nomenu - 1 if display is in a pop-up window, and hence no menu
9975: breadcrumbs etc., are displayed.
9976: current - student's current version number.
9977:
9978: Output: 1
9979: js - javascript for processing selection in versions web form.
9980:
9981: Side Effects: None.
9982:
9983: =back
9984:
9985: =head1 Routines to process bubblesheet data.
9986:
9987: =over 4
9988:
1.531 jms 9989: =item scantron_get_correction() :
9990:
9991: Builds the interface screen to interact with the operator to fix a
9992: specific error condition in a specific scanline
9993:
9994: Arguments:
9995: $r - Apache request object
9996: $i - number of the current scanline
9997: $scan_record - hash ref as returned from &scantron_parse_scanline()
9998: $scan_config - hash ref as returned from &get_scantron_config()
9999: $line - full contents of the current scanline
10000: $error - error condition, valid values are
10001: 'incorrectCODE', 'duplicateCODE',
10002: 'doublebubble', 'missingbubble',
10003: 'duplicateID', 'incorrectID'
10004: $arg - extra information needed
10005: For errors:
10006: - duplicateID - paper number that this studentID was seen before on
10007: - duplicateCODE - array ref of the paper numbers this CODE was
10008: seen on before
10009: - incorrectCODE - current incorrect CODE
10010: - doublebubble - array ref of the bubble lines that have double
10011: bubble errors
10012: - missingbubble - array ref of the bubble lines that have missing
10013: bubble errors
10014:
10015: =item scantron_get_maxbubble() :
10016:
1.582 raeburn 10017: Arguments:
10018: $nav_error - Reference to scalar which is a flag to indicate a
10019: failure to retrieve a navmap object.
10020: if $nav_error is set to 1 by scantron_get_maxbubble(), the
10021: calling routine should trap the error condition and display the warning
10022: found in &navmap_errormsg().
10023:
1.649 raeburn 10024: $scantron_config - Reference to bubblesheet format configuration hash.
10025:
1.531 jms 10026: Returns the maximum number of bubble lines that are expected to
10027: occur. Does this by walking the selected sequence rendering the
10028: resource and then checking &Apache::lonxml::get_problem_counter()
10029: for what the current value of the problem counter is.
10030:
10031: Caches the results to $env{'form.scantron_maxbubble'},
10032: $env{'form.scantron.bubble_lines.n'},
10033: $env{'form.scantron.first_bubble_line.n'} and
10034: $env{"form.scantron.sub_bubblelines.n"}
10035: which are the total number of bubble, lines, the number of bubble
10036: lines for response n and number of the first bubble line for response n,
10037: and a comma separated list of numbers of bubble lines for sub-questions
10038: (for optionresponse, matchresponse, and rankresponse items), for response n.
10039:
10040:
10041: =item scantron_validate_missingbubbles() :
10042:
10043: Validates all scanlines in the selected file to not have any
10044: answers that don't have bubbles that have not been verified
10045: to be bubble free.
10046:
10047: =item scantron_process_students() :
10048:
1.659 raeburn 10049: Routine that does the actual grading of the bubblesheet information.
1.531 jms 10050:
10051: The parsed scanline hash is added to %env
10052:
10053: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
10054: foreach resource , with the form data of
10055:
10056: 'submitted' =>'scantron'
10057: 'grade_target' =>'grade',
10058: 'grade_username'=> username of student
10059: 'grade_domain' => domain of student
10060: 'grade_courseid'=> of course
10061: 'grade_symb' => symb of resource to grade
10062:
10063: This triggers a grading pass. The problem grading code takes care
10064: of converting the bubbled letter information (now in %env) into a
10065: valid submission.
10066:
10067: =item scantron_upload_scantron_data() :
10068:
1.659 raeburn 10069: Creates the screen for adding a new bubblesheet data file to a course.
1.531 jms 10070:
10071: =item scantron_upload_scantron_data_save() :
10072:
10073: Adds a provided bubble information data file to the course if user
10074: has the correct privileges to do so.
10075:
10076: =item valid_file() :
10077:
10078: Validates that the requested bubble data file exists in the course.
10079:
10080: =item scantron_download_scantron_data() :
10081:
10082: Shows a list of the three internal files (original, corrected,
1.659 raeburn 10083: skipped) for a specific bubblesheet data file that exists in the
1.531 jms 10084: course.
10085:
10086: =item scantron_validate_ID() :
10087:
10088: Validates all scanlines in the selected file to not have any
1.556 weissno 10089: invalid or underspecified student/employee IDs
1.531 jms 10090:
1.582 raeburn 10091: =item navmap_errormsg() :
10092:
10093: Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
1.671 raeburn 10094: Should be called whenever the request to instantiate a navmap object fails.
10095:
10096: =back
1.582 raeburn 10097:
1.531 jms 10098: =back
10099:
10100: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>