Annotation of loncom/homework/grades.pm, revision 1.690
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.690 ! raeburn 4: # $Id: grades.pm,v 1.689 2013/06/01 00:22:42 raeburn Exp $
1.17 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.1 albertel 28:
1.529 jms 29:
30:
1.1 albertel 31: package Apache::grades;
32: use strict;
33: use Apache::style;
34: use Apache::lonxml;
35: use Apache::lonnet;
1.3 albertel 36: use Apache::loncommon;
1.112 ng 37: use Apache::lonhtmlcommon;
1.68 ng 38: use Apache::lonnavmaps;
1.1 albertel 39: use Apache::lonhomework;
1.456 banghart 40: use Apache::lonpickcode;
1.55 matthew 41: use Apache::loncoursedata;
1.362 albertel 42: use Apache::lonmsg();
1.646 raeburn 43: use Apache::Constants qw(:common :http);
1.167 sakharuk 44: use Apache::lonlocal;
1.386 raeburn 45: use Apache::lonenc;
1.622 www 46: use Apache::lonstathelpers;
1.639 www 47: use Apache::lonquickgrades;
1.657 raeburn 48: use Apache::bridgetask();
1.170 albertel 49: use String::Similarity;
1.359 www 50: use LONCAPA;
51:
1.315 bowersj2 52: use POSIX qw(floor);
1.87 www 53:
1.435 foxr 54:
1.513 foxr 55:
1.435 foxr 56: my %perm=();
1.674 raeburn 57: my %old_essays=();
1.447 foxr 58:
1.513 foxr 59: # These variables are used to recover from ssi errors
60:
61: my $ssi_retries = 5;
62: my $ssi_error;
63: my $ssi_error_resource;
64: my $ssi_error_message;
65:
66:
67: sub ssi_with_retries {
68: my ($resource, $retries, %form) = @_;
69: my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
70: if ($response->is_error) {
71: $ssi_error = 1;
72: $ssi_error_resource = $resource;
73: $ssi_error_message = $response->code . " " . $response->message;
74: }
75:
76: return $content;
77:
78: }
79: #
80: # Prodcuces an ssi retry failure error message to the user:
81: #
82:
83: sub ssi_print_error {
84: my ($r) = @_;
1.516 raeburn 85: my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
86: $r->print('
87: <br />
88: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
89: <p>
90: '.&mt('Unable to retrieve a resource from a server:').'<br />
91: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
92: '.&mt('Error:').' '.$ssi_error_message.'
93: </p>
94: <p>'.
95: &mt('It is recommended that you try again later, as this error may mean the server was just temporarily unavailable, or is down for maintenance.').'<br />'.
96: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
97: '</p>');
98: return;
1.513 foxr 99: }
100:
1.44 ng 101: #
1.146 albertel 102: # --- Retrieve the parts from the metadata file.---
1.598 www 103: # Returns an array of everything that the resources stores away
104: #
105:
1.44 ng 106: sub getpartlist {
1.582 raeburn 107: my ($symb,$errorref) = @_;
1.439 albertel 108:
109: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 110: unless (ref($navmap)) {
111: if (ref($errorref)) {
112: $$errorref = 'navmap';
113: return;
114: }
115: }
1.439 albertel 116: my $res = $navmap->getBySymb($symb);
117: my $partlist = $res->parts();
118: my $url = $res->src();
119: my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
120:
1.146 albertel 121: my @stores;
1.439 albertel 122: foreach my $part (@{ $partlist }) {
1.146 albertel 123: foreach my $key (@metakeys) {
124: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
125: }
126: }
127: return @stores;
1.2 albertel 128: }
129:
1.129 ng 130: #--- Format fullname, username:domain if different for display
131: #--- Use anywhere where the student names are listed
132: sub nameUserString {
133: my ($type,$fullname,$uname,$udom) = @_;
134: if ($type eq 'header') {
1.485 albertel 135: return '<b> '.&mt('Fullname').' </b><span class="LC_internal_info">('.&mt('Username').')</span>';
1.129 ng 136: } else {
1.398 albertel 137: return ' '.$fullname.'<span class="LC_internal_info"> ('.$uname.
138: ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129 ng 139: }
140: }
141:
1.44 ng 142: #--- Get the partlist and the response type for a given problem. ---
143: #--- Indicate if a response type is coded handgraded or not. ---
1.623 www 144: #--- Sets response_error pointer to "1" if navmaps object broken ---
1.39 ng 145: sub response_type {
1.582 raeburn 146: my ($symb,$response_error) = @_;
1.377 albertel 147:
148: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 149: unless (ref($navmap)) {
150: if (ref($response_error)) {
151: $$response_error = 1;
152: }
153: return;
154: }
1.377 albertel 155: my $res = $navmap->getBySymb($symb);
1.593 raeburn 156: unless (ref($res)) {
157: $$response_error = 1;
158: return;
159: }
1.377 albertel 160: my $partlist = $res->parts();
1.392 albertel 161: my %vPart =
162: map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377 albertel 163: my (%response_types,%handgrade);
164: foreach my $part (@{ $partlist }) {
1.392 albertel 165: next if (%vPart && !exists($vPart{$part}));
166:
1.377 albertel 167: my @types = $res->responseType($part);
168: my @ids = $res->responseIds($part);
169: for (my $i=0; $i < scalar(@ids); $i++) {
170: $response_types{$part}{$ids[$i]} = $types[$i];
171: $handgrade{$part.'_'.$ids[$i]} =
172: &Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
173: '.handgrade',$symb);
1.41 ng 174: }
175: }
1.377 albertel 176: return ($partlist,\%handgrade,\%response_types);
1.39 ng 177: }
178:
1.375 albertel 179: sub flatten_responseType {
180: my ($responseType) = @_;
181: my @part_response_id =
182: map {
183: my $part = $_;
184: map {
185: [$part,$_]
186: } sort(keys(%{ $responseType->{$part} }));
187: } sort(keys(%$responseType));
188: return @part_response_id;
189: }
190:
1.207 albertel 191: sub get_display_part {
1.324 albertel 192: my ($partID,$symb)=@_;
1.207 albertel 193: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
194: if (defined($display) and $display ne '') {
1.577 bisitz 195: $display.= ' (<span class="LC_internal_info">'
196: .&mt('Part ID: [_1]',$partID).'</span>)';
1.207 albertel 197: } else {
198: $display=$partID;
199: }
200: return $display;
201: }
1.269 raeburn 202:
1.434 albertel 203: sub reset_caches {
204: &reset_analyze_cache();
205: &reset_perm();
1.674 raeburn 206: &reset_old_essays();
1.434 albertel 207: }
208:
209: {
210: my %analyze_cache;
1.557 raeburn 211: my %analyze_cache_formkeys;
1.148 albertel 212:
1.434 albertel 213: sub reset_analyze_cache {
214: undef(%analyze_cache);
1.557 raeburn 215: undef(%analyze_cache_formkeys);
1.434 albertel 216: }
217:
218: sub get_analyze {
1.649 raeburn 219: my ($symb,$uname,$udom,$no_increment,$add_to_hash,$type,$trial,$rndseed,$bubbles_per_row)=@_;
1.434 albertel 220: my $key = "$symb\0$uname\0$udom";
1.640 raeburn 221: if ($type eq 'randomizetry') {
222: if ($trial ne '') {
223: $key .= "\0".$trial;
224: }
225: }
1.557 raeburn 226: if (exists($analyze_cache{$key})) {
227: my $getupdate = 0;
228: if (ref($add_to_hash) eq 'HASH') {
229: foreach my $item (keys(%{$add_to_hash})) {
230: if (ref($analyze_cache_formkeys{$key}) eq 'HASH') {
231: if (!exists($analyze_cache_formkeys{$key}{$item})) {
232: $getupdate = 1;
233: last;
234: }
235: } else {
236: $getupdate = 1;
237: }
238: }
239: }
240: if (!$getupdate) {
241: return $analyze_cache{$key};
242: }
243: }
1.434 albertel 244:
245: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
246: $url=&Apache::lonnet::clutter($url);
1.557 raeburn 247: my %form = ('grade_target' => 'analyze',
248: 'grade_domain' => $udom,
249: 'grade_symb' => $symb,
250: 'grade_courseid' => $env{'request.course.id'},
251: 'grade_username' => $uname,
252: 'grade_noincrement' => $no_increment);
1.649 raeburn 253: if ($bubbles_per_row ne '') {
254: $form{'bubbles_per_row'} = $bubbles_per_row;
255: }
1.640 raeburn 256: if ($type eq 'randomizetry') {
257: $form{'grade_questiontype'} = $type;
258: if ($rndseed ne '') {
259: $form{'grade_rndseed'} = $rndseed;
260: }
261: }
1.557 raeburn 262: if (ref($add_to_hash)) {
263: %form = (%form,%{$add_to_hash});
1.640 raeburn 264: }
1.557 raeburn 265: my $subresult=&ssi_with_retries($url, $ssi_retries,%form);
1.434 albertel 266: (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
267: my %analyze=&Apache::lonnet::str2hash($subresult);
1.557 raeburn 268: if (ref($add_to_hash) eq 'HASH') {
269: $analyze_cache_formkeys{$key} = $add_to_hash;
270: } else {
271: $analyze_cache_formkeys{$key} = {};
272: }
1.434 albertel 273: return $analyze_cache{$key} = \%analyze;
274: }
275:
276: sub get_order {
1.640 raeburn 277: my ($partid,$respid,$symb,$uname,$udom,$no_increment,$type,$trial,$rndseed)=@_;
278: my $analyze = &get_analyze($symb,$uname,$udom,$no_increment,undef,$type,$trial,$rndseed);
1.434 albertel 279: return $analyze->{"$partid.$respid.shown"};
280: }
281:
282: sub get_radiobutton_correct_foil {
1.640 raeburn 283: my ($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed)=@_;
284: my $analyze = &get_analyze($symb,$uname,$udom,undef,undef,$type,$trial,$rndseed);
285: my $foils = &get_order($partid,$respid,$symb,$uname,$udom,undef,$type,$trial,$rndseed);
1.555 raeburn 286: if (ref($foils) eq 'ARRAY') {
287: foreach my $foil (@{$foils}) {
288: if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
289: return $foil;
290: }
1.434 albertel 291: }
292: }
293: }
1.554 raeburn 294:
295: sub scantron_partids_tograde {
1.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.686 bisitz 3104: # fix filename
1.355 banghart 3105: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
3106: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
1.654 raeburn 3107: $newflg.'_'.$part_resp.'_returndoc'.$counter,
1.355 banghart 3108: $save_file_name);
1.337 banghart 3109: if ($result !~ m|^/uploaded/|) {
1.536 raeburn 3110: $request->print('<br /><span class="LC_error">'.
3111: &mt('An error occurred ([_1]) while trying to upload [_2].',
1.654 raeburn 3112: $result,$newflg.'_'.$part_resp.'_returndoc'.$counter).
1.536 raeburn 3113: '</span>');
1.356 banghart 3114: } else {
1.360 banghart 3115: # mark the file as read only
1.654 raeburn 3116: push(@handedback,$save_file_name);
1.367 albertel 3117: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
3118: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
3119: }
3120: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
1.654 raeburn 3121: $file_msg.= '<span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span> <br />";
1.337 banghart 3122: }
1.686 bisitz 3123: $request->print('<br />'.&mt('[_1] will be the uploaded filename [_2]','<span class="LC_info">'.$fname.'</span>','<span class="LC_filename">'.$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter}.'</span>'));
1.337 banghart 3124: }
3125: }
3126: }
1.654 raeburn 3127: }
3128: if (@handedback > 0) {
3129: $request->print('<br />');
3130: my @what = ($symb,$env{'request.course.id'},'handback');
3131: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@handedback,\@what);
3132: my $user_lh = &Apache::loncommon::user_lang($stuname,$domain,$env{'request.course.id'});
3133: my ($subject,$message);
3134: if (scalar(@handedback) == 1) {
3135: $subject = &mt_user($user_lh,'File Handed Back by Instructor');
3136: $message = &mt_user($user_lh,'A file has been returned that was originally submitted in response to: ');
3137: } else {
3138: $subject = &mt_user($user_lh,'Files Handed Back by Instructor');
3139: $message = &mt_user($user_lh,'Files have been returned that were originally submitted in response to: ');
3140: }
3141: $message .= "<p><strong>".&Apache::lonnet::gettitle($symb)." </strong></p>";
3142: $message .= &mt_user($user_lh,'The returned file(s) are named: [_1]',"<br />$file_msg <br />").
3143: &mt_user($user_lh,'The file(s) can be found in your [_1]portfolio[_2].','<a href="/adm/portfolio">','</a>');
3144: my ($feedurl,$showsymb) =
3145: &get_feedurl_and_symb($symb,$domain,$stuname);
3146: my $restitle = &Apache::lonnet::gettitle($symb);
3147: $subject .= ' '.&mt_user($user_lh,'(File Returned)').' ['.$restitle.']';
3148: my $msgstatus =
3149: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject,
3150: $message,undef,$feedurl,undef,undef,undef,$showsymb,
3151: $restitle);
3152: if ($msgstatus) {
3153: $request->print(&mt('Notification message status: [_1]','<span class="LC_info">'.$msgstatus.'</span>').'<br />');
3154: }
3155: }
1.338 banghart 3156: return;
1.337 banghart 3157: }
3158:
1.418 albertel 3159: sub get_feedurl_and_symb {
3160: my ($symb,$uname,$udom) = @_;
3161: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
3162: $url = &Apache::lonnet::clutter($url);
3163: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
3164: $symb,$udom,$uname);
3165: if ($encrypturl =~ /^yes$/i) {
3166: &Apache::lonenc::encrypted(\$url,1);
3167: &Apache::lonenc::encrypted(\$symb,1);
3168: }
3169: return ($url,$symb);
3170: }
3171:
1.313 banghart 3172: sub get_submitted_files {
3173: my ($udom,$uname,$partid,$respid,$record) = @_;
3174: my @files;
3175: if ($$record{"resource.$partid.$respid.portfiles"}) {
3176: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
3177: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
3178: push(@files,$file_url.$file);
3179: }
3180: }
3181: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
3182: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
3183: }
3184: return (\@files);
3185: }
1.322 albertel 3186:
1.269 raeburn 3187: # ----------- Provides number of tries since last reset.
3188: sub get_num_tries {
3189: my ($record,$last_reset,$part) = @_;
3190: my $timestamp = '';
3191: my $num_tries = 0;
3192: if ($$record{'version'}) {
3193: for (my $version=$$record{'version'};$version>=1;$version--) {
3194: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
3195: $timestamp = $$record{$version.':timestamp'};
3196: if ($timestamp > $last_reset) {
3197: $num_tries ++;
3198: } else {
3199: last;
3200: }
3201: }
3202: }
3203: }
3204: return $num_tries;
3205: }
3206:
3207: # ----------- Determine decrements required in aggregate totals
3208: sub decrement_aggs {
3209: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
3210: my %decrement = (
3211: attempts => 0,
3212: users => 0,
3213: correct => 0
3214: );
3215: $decrement{'attempts'} = $aggtries;
3216: if ($solvedstatus =~ /^correct/) {
3217: $decrement{'correct'} = 1;
3218: }
3219: if ($aggtries == $totaltries) {
3220: $decrement{'users'} = 1;
3221: }
1.524 raeburn 3222: foreach my $type (keys(%decrement)) {
1.269 raeburn 3223: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
3224: }
3225: return;
3226: }
3227:
3228: # ----------- Determine timestamps for last reset of aggregate totals for parts
3229: sub get_last_resets {
1.270 albertel 3230: my ($symb,$courseid,$partids) =@_;
3231: my %last_resets;
1.269 raeburn 3232: my $cdom = $env{'course.'.$courseid.'.domain'};
3233: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 3234: my @keys;
3235: foreach my $part (@{$partids}) {
3236: push(@keys,"$symb\0$part\0resettime");
3237: }
3238: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
3239: $cdom,$cname);
3240: foreach my $part (@{$partids}) {
3241: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 3242: }
1.270 albertel 3243: return %last_resets;
1.269 raeburn 3244: }
3245:
1.251 banghart 3246: # ----------- Handles creating versions for portfolio files as answers
3247: sub version_portfiles {
1.343 banghart 3248: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 3249: my $version_parts = join('|',@$v_flag);
1.343 banghart 3250: my @returned_keys;
1.255 banghart 3251: my $parts = join('|', @$parts_graded);
1.517 raeburn 3252: my $portfolio_root = '/userfiles/portfolio';
1.277 albertel 3253: foreach my $key (keys(%$record)) {
1.259 banghart 3254: my $new_portfiles;
1.263 banghart 3255: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 3256: my @versioned_portfiles;
1.367 albertel 3257: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252 banghart 3258: foreach my $file (@portfiles) {
1.306 banghart 3259: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 3260: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
3261: my ($answer_name,$answer_ver,$answer_ext) =
3262: &file_name_version_ext($answer_file);
1.517 raeburn 3263: my $getpropath = 1;
1.662 raeburn 3264: my ($dir_list,$listerror) =
3265: &Apache::lonnet::dirlist($portfolio_root.$directory,$domain,
3266: $stu_name,$getpropath);
3267: my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.306 banghart 3268: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
3269: if ($new_answer ne 'problem getting file') {
1.342 banghart 3270: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 3271: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367 albertel 3272: [$directory.$new_answer],
1.306 banghart 3273: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 3274: }
1.252 banghart 3275: }
1.343 banghart 3276: $$record{$key} = join(',',@versioned_portfiles);
3277: push(@returned_keys,$key);
1.251 banghart 3278: }
3279: }
1.343 banghart 3280: return (@returned_keys);
1.305 banghart 3281: }
3282:
1.307 banghart 3283: sub get_next_version {
1.341 banghart 3284: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 3285: my $version;
1.662 raeburn 3286: if (ref($dir_list) eq 'ARRAY') {
3287: foreach my $row (@{$dir_list}) {
3288: my ($file) = split(/\&/,$row,2);
3289: my ($file_name,$file_version,$file_ext) =
3290: &file_name_version_ext($file);
3291: if (($file_name eq $answer_name) &&
3292: ($file_ext eq $answer_ext)) {
3293: # gets here if filename and extension match,
3294: # regardless of version
1.307 banghart 3295: if ($file_version ne '') {
1.662 raeburn 3296: # a versioned file is found so save it for later
3297: if ($file_version > $version) {
3298: $version = $file_version;
3299: }
3300: }
1.307 banghart 3301: }
3302: }
1.662 raeburn 3303: }
1.307 banghart 3304: $version ++;
3305: return($version);
3306: }
3307:
1.305 banghart 3308: sub version_selected_portfile {
1.306 banghart 3309: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
3310: my ($answer_name,$answer_ver,$answer_ext) =
3311: &file_name_version_ext($file_name);
3312: my $new_answer;
3313: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
3314: if($env{'form.copy'} eq '-1') {
3315: $new_answer = 'problem getting file';
3316: } else {
3317: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
3318: my $copy_result = &Apache::lonnet::finishuserfileupload(
3319: $stu_name,$domain,'copy',
3320: '/portfolio'.$directory.$new_answer);
3321: }
3322: return ($new_answer);
1.251 banghart 3323: }
3324:
1.304 albertel 3325: sub file_name_version_ext {
3326: my ($file)=@_;
3327: my @file_parts = split(/\./, $file);
3328: my ($name,$version,$ext);
3329: if (@file_parts > 1) {
3330: $ext=pop(@file_parts);
3331: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
3332: $version=pop(@file_parts);
3333: }
3334: $name=join('.',@file_parts);
3335: } else {
3336: $name=join('.',@file_parts);
3337: }
3338: return($name,$version,$ext);
3339: }
3340:
1.44 ng 3341: #--------------------------------------------------------------------------------------
3342: #
3343: #-------------------------- Next few routines handles grading by section or whole class
3344: #
3345: #--- Javascript to handle grading by section or whole class
1.42 ng 3346: sub viewgrades_js {
3347: my ($request) = shift;
3348:
1.539 riegler 3349: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.597 wenzelju 3350: $request->print(&Apache::lonhtmlcommon::scripttag(<<VIEWJAVASCRIPT));
1.45 ng 3351: function writePoint(partid,weight,point) {
1.125 ng 3352: var radioButton = document.classgrade["RADVAL_"+partid];
3353: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 3354: if (point == "textval") {
1.125 ng 3355: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 3356: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3357: alert("$alertmsg"+parseFloat(point));
1.42 ng 3358: var resetbox = false;
3359: for (var i=0; i<radioButton.length; i++) {
3360: if (radioButton[i].checked) {
3361: textbox.value = i;
3362: resetbox = true;
3363: }
3364: }
3365: if (!resetbox) {
3366: textbox.value = "";
3367: }
3368: return;
3369: }
1.109 matthew 3370: if (parseFloat(point) > parseFloat(weight)) {
3371: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3372: ") greater than the weight for the part. Accept?");
3373: if (resp == false) {
3374: textbox.value = "";
3375: return;
3376: }
3377: }
1.42 ng 3378: for (var i=0; i<radioButton.length; i++) {
3379: radioButton[i].checked=false;
1.109 matthew 3380: if (parseFloat(point) == i) {
1.42 ng 3381: radioButton[i].checked=true;
3382: }
3383: }
1.41 ng 3384:
1.42 ng 3385: } else {
1.125 ng 3386: textbox.value = parseFloat(point);
1.42 ng 3387: }
1.41 ng 3388: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3389: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3390: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3391: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3392: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3393: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3394: if (saveval != "correct") {
3395: scorename.value = point;
1.43 ng 3396: if (selname[0].selected != true) {
3397: selname[0].selected = true;
3398: }
1.42 ng 3399: }
3400: }
1.125 ng 3401: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3402: }
3403:
3404: function writeRadText(partid,weight) {
1.125 ng 3405: var selval = document.classgrade["SELVAL_"+partid];
3406: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3407: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3408: var textbox = document.classgrade["TEXTVAL_"+partid];
3409: if (selval[1].selected || selval[2].selected) {
1.42 ng 3410: for (var i=0; i<radioButton.length; i++) {
3411: radioButton[i].checked=false;
3412:
3413: }
3414: textbox.value = "";
3415:
3416: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3417: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3418: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3419: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3420: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3421: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3422: if ((saveval != "correct") || override) {
1.42 ng 3423: scorename.value = "";
1.125 ng 3424: if (selval[1].selected) {
3425: selname[1].selected = true;
3426: } else {
3427: selname[2].selected = true;
3428: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3429: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3430: }
1.42 ng 3431: }
3432: }
1.43 ng 3433: } else {
3434: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3435: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3436: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3437: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3438: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3439: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3440: if ((saveval != "correct") || override) {
1.125 ng 3441: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3442: selname[0].selected = true;
3443: }
3444: }
3445: }
1.42 ng 3446: }
3447:
3448: function changeSelect(partid,user) {
1.125 ng 3449: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3450: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3451: var point = textbox.value;
1.125 ng 3452: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3453:
1.109 matthew 3454: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3455: alert("$alertmsg"+parseFloat(point));
1.44 ng 3456: textbox.value = "";
3457: return;
3458: }
1.109 matthew 3459: if (parseFloat(point) > parseFloat(weight)) {
3460: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3461: ") greater than the weight of the part. Accept?");
3462: if (resp == false) {
3463: textbox.value = "";
3464: return;
3465: }
3466: }
1.42 ng 3467: selval[0].selected = true;
3468: }
3469:
3470: function changeOneScore(partid,user) {
1.125 ng 3471: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3472: if (selval[1].selected || selval[2].selected) {
3473: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3474: if (selval[2].selected) {
3475: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3476: }
1.269 raeburn 3477: }
1.42 ng 3478: }
3479:
3480: function resetEntry(numpart) {
3481: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3482: var partid = document.classgrade["partid_"+ctpart].value;
3483: var radioButton = document.classgrade["RADVAL_"+partid];
3484: var textbox = document.classgrade["TEXTVAL_"+partid];
3485: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3486: for (var i=0; i<radioButton.length; i++) {
3487: radioButton[i].checked=false;
3488:
3489: }
3490: textbox.value = "";
3491: selval[0].selected = true;
3492:
3493: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3494: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3495: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3496: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3497: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3498: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3499: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3500: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3501: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3502: if (saveselval == "excused") {
1.43 ng 3503: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3504: } else {
1.43 ng 3505: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3506: }
3507: }
1.41 ng 3508: }
1.42 ng 3509: }
3510:
1.41 ng 3511: VIEWJAVASCRIPT
1.42 ng 3512: }
3513:
1.44 ng 3514: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3515: sub viewgrades {
1.608 www 3516: my ($request,$symb) = @_;
1.42 ng 3517: &viewgrades_js($request);
1.41 ng 3518:
1.168 albertel 3519: #need to make sure we have the correct data for later EXT calls,
3520: #thus invalidate the cache
3521: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3522: $env{'course.'.$env{'request.course.id'}.'.num'},
3523: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3524: &Apache::lonnet::clear_EXT_cache_status();
3525:
1.398 albertel 3526: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
1.41 ng 3527:
3528: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3529: $result.=&jscriptNform($symb);
1.41 ng 3530:
1.44 ng 3531: #beginning of class grading form
1.442 banghart 3532: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3533: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3534: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3535: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3536: &build_section_inputs().
1.442 banghart 3537: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.72 ng 3538:
1.560 raeburn 3539: my ($common_header,$specific_header);
1.257 albertel 3540: if ($env{'form.section'} eq 'all') {
1.560 raeburn 3541: $common_header = &mt('Assign Common Grade to Class');
3542: $specific_header = &mt('Assign Grade to Specific Students in Class');
1.257 albertel 3543: } elsif ($env{'form.section'} eq 'none') {
1.560 raeburn 3544: $common_header = &mt('Assign Common Grade to Students in no Section');
3545: $specific_header = &mt('Assign Grade to Specific Students in no Section');
1.52 albertel 3546: } else {
1.560 raeburn 3547: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
3548: $common_header = &mt('Assign Common Grade to Students in Section(s) [_1]',$section_display);
3549: $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1]',$section_display);
1.52 albertel 3550: }
1.560 raeburn 3551: $result.= '<h3>'.$common_header.'</h3>'.&Apache::loncommon::start_data_table();
1.44 ng 3552: #radio buttons/text box for assigning points for a section or class.
3553: #handles different parts of a problem
1.582 raeburn 3554: my $res_error;
3555: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3556: if ($res_error) {
3557: return &navmap_errormsg();
3558: }
1.42 ng 3559: my %weight = ();
3560: my $ctsparts = 0;
1.45 ng 3561: my %seen = ();
1.375 albertel 3562: my @part_response_id = &flatten_responseType($responseType);
3563: foreach my $part_response_id (@part_response_id) {
3564: my ($partid,$respid) = @{ $part_response_id };
3565: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3566: next if $seen{$partid};
3567: $seen{$partid}++;
1.375 albertel 3568: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3569: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3570: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3571:
1.324 albertel 3572: my $display_part=&get_display_part($partid,$symb);
1.485 albertel 3573: my $radio.='<table border="0"><tr>';
1.41 ng 3574: my $ctr = 0;
1.42 ng 3575: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.485 albertel 3576: $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3577: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3578: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3579: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3580: $ctr++;
3581: }
1.485 albertel 3582: $radio.='</tr></table>';
3583: my $line = '<input type="text" name="TEXTVAL_'.
1.589 bisitz 3584: $partid.'" size="4" '.'onchange="javascript:writePoint(\''.
1.54 albertel 3585: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.539 riegler 3586: $weight{$partid}.' '.&mt('(problem weight)').'</td>'."\n";
3587: $line.= '<td><b>'.&mt('Grade Status').':</b><select name="SELVAL_'.$partid.'"'.
1.589 bisitz 3588: 'onchange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 3589: $weight{$partid}.')"> '.
1.401 albertel 3590: '<option selected="selected"> </option>'.
1.485 albertel 3591: '<option value="excused">'.&mt('excused').'</option>'.
3592: '<option value="reset status">'.&mt('reset status').'</option>'.
3593: '</select></td>'.
3594: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
3595: $line.='<input type="hidden" name="partid_'.
3596: $ctsparts.'" value="'.$partid.'" />'."\n";
3597: $line.='<input type="hidden" name="weight_'.
3598: $partid.'" value="'.$weight{$partid}.'" />'."\n";
3599:
3600: $result.=
3601: &Apache::loncommon::start_data_table_row()."\n".
1.577 bisitz 3602: '<td><b>'.&mt('Part:').'</b></td><td>'.$display_part.'</td><td><b>'.&mt('Points:').'</b></td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>'.
1.485 albertel 3603: &Apache::loncommon::end_data_table_row()."\n";
1.42 ng 3604: $ctsparts++;
1.41 ng 3605: }
1.474 albertel 3606: $result.=&Apache::loncommon::end_data_table()."\n".
1.52 albertel 3607: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.485 albertel 3608: $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
1.589 bisitz 3609: 'onclick="javascript:resetEntry('.$ctsparts.');" />';
1.41 ng 3610:
1.44 ng 3611: #table listing all the students in a section/class
3612: #header of table
1.560 raeburn 3613: $result.= '<h3>'.$specific_header.'</h3>'.
3614: &Apache::loncommon::start_data_table().
3615: &Apache::loncommon::start_data_table_header_row().
3616: '<th>'.&mt('No.').'</th>'.
3617: '<th>'.&nameUserString('header')."</th>\n";
1.582 raeburn 3618: my $partserror;
3619: my (@parts) = sort(&getpartlist($symb,\$partserror));
3620: if ($partserror) {
3621: return &navmap_errormsg();
3622: }
1.324 albertel 3623: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3624: my @partids = ();
1.41 ng 3625: foreach my $part (@parts) {
3626: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.539 riegler 3627: my $narrowtext = &mt('Tries');
3628: $display =~ s|^Number of Attempts|$narrowtext <br />|; # makes the column narrower
1.41 ng 3629: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3630: my ($partid) = &split_part_type($part);
1.524 raeburn 3631: push(@partids,$partid);
1.628 www 3632: #
3633: # FIXME: Looks like $display looks at English text
3634: #
1.324 albertel 3635: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3636: if ($display =~ /^Partial Credit Factor/) {
1.485 albertel 3637: $result.='<th>'.
3638: &mt('Score Part: [_1]<br /> (weight = [_2])',
3639: $display_part,$weight{$partid}).'</th>'."\n";
1.41 ng 3640: next;
1.485 albertel 3641:
1.207 albertel 3642: } else {
1.485 albertel 3643: if ($display =~ /Problem Status/) {
3644: my $grade_status_mt = &mt('Grade Status');
3645: $display =~ s{Problem Status}{$grade_status_mt<br />};
3646: }
3647: my $part_mt = &mt('Part:');
3648: $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
1.41 ng 3649: }
1.485 albertel 3650:
1.474 albertel 3651: $result.='<th>'.$display.'</th>'."\n";
1.41 ng 3652: }
1.474 albertel 3653: $result.=&Apache::loncommon::end_data_table_header_row();
1.44 ng 3654:
1.270 albertel 3655: my %last_resets =
3656: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3657:
1.41 ng 3658: #get info for each student
1.44 ng 3659: #list all the students - with points and grade status
1.257 albertel 3660: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41 ng 3661: my $ctr = 0;
1.294 albertel 3662: foreach (sort
3663: {
3664: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3665: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3666: }
3667: return $a cmp $b;
3668: } (keys(%$fullname))) {
1.126 ng 3669: $ctr++;
1.324 albertel 3670: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269 raeburn 3671: $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41 ng 3672: }
1.474 albertel 3673: $result.=&Apache::loncommon::end_data_table();
1.41 ng 3674: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.485 albertel 3675: $result.='<input type="button" value="'.&mt('Save').'" '.
1.589 bisitz 3676: 'onclick="javascript:submit();" target="_self" /></form>'."\n";
1.96 albertel 3677: if (scalar(%$fullname) eq 0) {
3678: my $colspan=3+scalar(@parts);
1.433 banghart 3679: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442 banghart 3680: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433 banghart 3681: $result='<span class="LC_warning">'.
1.485 albertel 3682: &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
1.442 banghart 3683: $section_display, $stu_status).
1.433 banghart 3684: '</span>';
1.96 albertel 3685: }
1.41 ng 3686: return $result;
3687: }
3688:
1.44 ng 3689: #--- call by previous routine to display each student
1.41 ng 3690: sub viewstudentgrade {
1.324 albertel 3691: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 3692: my ($uname,$udom) = split(/:/,$student);
3693: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269 raeburn 3694: my %aggregates = ();
1.474 albertel 3695: my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.233 albertel 3696: '<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
3697: "\n".$ctr.' </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.681 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:
1.423 albertel 5177: =pod
5178:
5179: =item scantron_filenames
5180:
5181: Returns a list of the scantron files in the current course
5182:
5183: =cut
1.422 foxr 5184:
1.202 albertel 5185: sub scantron_filenames {
1.257 albertel 5186: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5187: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517 raeburn 5188: my $getpropath = 1;
1.662 raeburn 5189: my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
5190: $cname,$getpropath);
1.202 albertel 5191: my @possiblenames;
1.662 raeburn 5192: if (ref($dirlist) eq 'ARRAY') {
5193: foreach my $filename (sort(@{$dirlist})) {
5194: ($filename)=split(/&/,$filename);
5195: if ($filename!~/^scantron_orig_/) { next ; }
5196: $filename=~s/^scantron_orig_//;
5197: push(@possiblenames,$filename);
5198: }
1.202 albertel 5199: }
5200: return @possiblenames;
5201: }
5202:
1.423 albertel 5203: =pod
5204:
5205: =item scantron_uploads
5206:
5207: Returns html drop-down list of scantron files in current course.
5208:
5209: Arguments:
5210: $file2grade - filename to set as selected in the dropdown
5211:
5212: =cut
1.422 foxr 5213:
1.202 albertel 5214: sub scantron_uploads {
1.209 ng 5215: my ($file2grade) = @_;
1.202 albertel 5216: my $result= '<select name="scantron_selectfile">';
5217: $result.="<option></option>";
5218: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 5219: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 5220: }
5221: $result.="</select>";
5222: return $result;
5223: }
5224:
1.423 albertel 5225: =pod
5226:
5227: =item scantron_scantab
5228:
5229: Returns html drop down of the scantron formats in the scantronformat.tab
5230: file.
5231:
5232: =cut
1.422 foxr 5233:
1.82 albertel 5234: sub scantron_scantab {
5235: my $result='<select name="scantron_format">'."\n";
1.191 albertel 5236: $result.='<option></option>'."\n";
1.518 raeburn 5237: my @lines = &get_scantronformat_file();
5238: if (@lines > 0) {
5239: foreach my $line (@lines) {
5240: next if (($line =~ /^\#/) || ($line eq ''));
5241: my ($name,$descrip)=split(/:/,$line);
5242: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
5243: }
1.82 albertel 5244: }
5245: $result.='</select>'."\n";
1.518 raeburn 5246: return $result;
5247: }
5248:
5249: =pod
5250:
5251: =item get_scantronformat_file
5252:
5253: Returns an array containing lines from the scantron format file for
5254: the domain of the course.
5255:
5256: If a url for a custom.tab file is listed in domain's configuration.db,
5257: lines are from this file.
5258:
5259: Otherwise, if a default.tab has been published in RES space by the
5260: domainconfig user, lines are from this file.
5261:
5262: Otherwise, fall back to getting lines from the legacy file on the
1.519 raeburn 5263: local server: /home/httpd/lonTabs/default_scantronformat.tab
1.82 albertel 5264:
1.518 raeburn 5265: =cut
5266:
5267: sub get_scantronformat_file {
5268: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5269: my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
5270: my $gottab = 0;
5271: my @lines;
5272: if (ref($domconfig{'scantron'}) eq 'HASH') {
5273: if ($domconfig{'scantron'}{'scantronformat'} ne '') {
5274: my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
5275: if ($formatfile ne '-1') {
5276: @lines = split("\n",$formatfile,-1);
5277: $gottab = 1;
5278: }
5279: }
5280: }
5281: if (!$gottab) {
5282: my $confname = $cdom.'-domainconfig';
5283: my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
5284: my $formatfile = &Apache::lonnet::getfile($default);
5285: if ($formatfile ne '-1') {
5286: @lines = split("\n",$formatfile,-1);
5287: $gottab = 1;
5288: }
5289: }
5290: if (!$gottab) {
1.519 raeburn 5291: my @domains = &Apache::lonnet::current_machine_domains();
5292: if (grep(/^\Q$cdom\E$/,@domains)) {
5293: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
5294: @lines = <$fh>;
5295: close($fh);
5296: } else {
5297: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
5298: @lines = <$fh>;
5299: close($fh);
5300: }
1.518 raeburn 5301: }
5302: return @lines;
1.82 albertel 5303: }
5304:
1.423 albertel 5305: =pod
5306:
5307: =item scantron_CODElist
5308:
5309: Returns html drop down of the saved CODE lists from current course,
5310: generated from earlier printings.
5311:
5312: =cut
1.422 foxr 5313:
1.186 albertel 5314: sub scantron_CODElist {
1.257 albertel 5315: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
5316: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 5317: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
5318: my $namechoice='<option></option>';
1.225 albertel 5319: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 5320: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 5321: if ($name =~ /^type\0/) { next; }
1.186 albertel 5322: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
5323: }
5324: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
5325: return $namechoice;
5326: }
5327:
1.423 albertel 5328: =pod
5329:
5330: =item scantron_CODEunique
5331:
5332: Returns the html for "Each CODE to be used once" radio.
5333:
5334: =cut
1.422 foxr 5335:
1.186 albertel 5336: sub scantron_CODEunique {
1.532 bisitz 5337: my $result='<span class="LC_nobreak">
1.272 albertel 5338: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5339: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 5340: </span>
1.532 bisitz 5341: <span class="LC_nobreak">
1.272 albertel 5342: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5343: value="no" />'.&mt('No').' </label>
1.381 albertel 5344: </span>';
1.186 albertel 5345: return $result;
5346: }
1.423 albertel 5347:
5348: =pod
5349:
5350: =item scantron_selectphase
5351:
1.659 raeburn 5352: Generates the initial screen to start the bubblesheet process.
1.423 albertel 5353: Allows for - starting a grading run.
1.424 albertel 5354: - downloading existing scan data (original, corrected
1.423 albertel 5355: or skipped info)
5356:
5357: - uploading new scan data
5358:
5359: Arguments:
5360: $r - The Apache request object
5361: $file2grade - name of the file that contain the scanned data to score
5362:
5363: =cut
1.186 albertel 5364:
1.75 albertel 5365: sub scantron_selectphase {
1.608 www 5366: my ($r,$file2grade,$symb) = @_;
1.75 albertel 5367: if (!$symb) {return '';}
1.582 raeburn 5368: my $map_error;
5369: my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
5370: if ($map_error) {
5371: $r->print('<br />'.&navmap_errormsg().'<br />');
5372: return;
5373: }
1.324 albertel 5374: my $default_form_data=&defaultFormData($symb);
1.209 ng 5375: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 5376: my $format_selector=&scantron_scantab();
1.186 albertel 5377: my $CODE_selector=&scantron_CODElist();
5378: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 5379: my $result;
1.422 foxr 5380:
1.513 foxr 5381: $ssi_error = 0;
5382:
1.606 wenzelju 5383: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
5384: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
5385:
5386: # Chunk of form to prompt for a scantron file upload.
5387:
5388: $r->print('
5389: <br />
5390: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5391: '.&Apache::loncommon::start_data_table_header_row().'
5392: <th>
5393: '.&mt('Specify a bubblesheet data file to upload.').'
5394: </th>
5395: '.&Apache::loncommon::end_data_table_header_row().'
5396: '.&Apache::loncommon::start_data_table_row().'
5397: <td>
5398: ');
1.608 www 5399: my $default_form_data=&defaultFormData($symb);
1.606 wenzelju 5400: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5401: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
5402: $r->print(&Apache::lonhtmlcommon::scripttag('
5403: function checkUpload(formname) {
5404: if (formname.upfile.value == "") {
5405: alert("'.&mt('Please use the browse button to select a file from your local directory.').'");
5406: return false;
5407: }
5408: formname.submit();
5409: }'));
5410: $r->print('
5411: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
5412: '.$default_form_data.'
5413: <input name="courseid" type="hidden" value="'.$cnum.'" />
5414: <input name="domainid" type="hidden" value="'.$cdom.'" />
5415: <input name="command" value="scantronupload_save" type="hidden" />
5416: '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
5417: <br />
5418: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
5419: </form>
5420: ');
5421:
5422: $r->print('
5423: </td>
5424: '.&Apache::loncommon::end_data_table_row().'
5425: '.&Apache::loncommon::end_data_table().'
5426: ');
5427: }
5428:
1.422 foxr 5429: # Chunk of form to prompt for a file to grade and how:
5430:
1.489 albertel 5431: $result.= '
5432: <br />
5433: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
5434: <input type="hidden" name="command" value="scantron_warning" />
5435: '.$default_form_data.'
5436: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5437: '.&Apache::loncommon::start_data_table_header_row().'
5438: <th colspan="2">
1.492 albertel 5439: '.&mt('Specify file and which Folder/Sequence to grade').'
1.489 albertel 5440: </th>
5441: '.&Apache::loncommon::end_data_table_header_row().'
5442: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5443: <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489 albertel 5444: '.&Apache::loncommon::end_data_table_row().'
5445: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5446: <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
1.489 albertel 5447: '.&Apache::loncommon::end_data_table_row().'
5448: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5449: <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
1.489 albertel 5450: '.&Apache::loncommon::end_data_table_row().'
5451: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5452: <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489 albertel 5453: '.&Apache::loncommon::end_data_table_row().'
5454: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5455: <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489 albertel 5456: '.&Apache::loncommon::end_data_table_row().'
5457: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5458: <td> '.&mt('Options:').' </td>
1.187 albertel 5459: <td>
1.492 albertel 5460: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
5461: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
5462: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187 albertel 5463: </td>
1.489 albertel 5464: '.&Apache::loncommon::end_data_table_row().'
5465: '.&Apache::loncommon::start_data_table_row().'
1.174 albertel 5466: <td colspan="2">
1.572 www 5467: <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
1.162 albertel 5468: </td>
1.489 albertel 5469: '.&Apache::loncommon::end_data_table_row().'
5470: '.&Apache::loncommon::end_data_table().'
5471: </form>
5472: ';
1.162 albertel 5473:
5474: $r->print($result);
5475:
1.422 foxr 5476:
5477:
5478: # Chunk of the form that prompts to view a scoring office file,
5479: # corrected file, skipped records in a file.
5480:
1.489 albertel 5481: $r->print('
5482: <br />
5483: <form action="/adm/grades" name="scantron_download">
5484: '.$default_form_data.'
5485: <input type="hidden" name="command" value="scantron_download" />
5486: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5487: '.&Apache::loncommon::start_data_table_header_row().'
5488: <th>
1.492 albertel 5489: '.&mt('Download a scoring office file').'
1.489 albertel 5490: </th>
5491: '.&Apache::loncommon::end_data_table_header_row().'
5492: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5493: <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).'
1.489 albertel 5494: <br />
1.492 albertel 5495: <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489 albertel 5496: '.&Apache::loncommon::end_data_table_row().'
5497: '.&Apache::loncommon::end_data_table().'
5498: </form>
5499: <br />
5500: ');
1.162 albertel 5501:
1.457 banghart 5502: &Apache::lonpickcode::code_list($r,2);
1.523 raeburn 5503:
1.528 raeburn 5504: $r->print('<br /><form method="post" name="checkscantron">'.
1.523 raeburn 5505: $default_form_data."\n".
5506: &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
5507: &Apache::loncommon::start_data_table_header_row()."\n".
5508: '<th colspan="2">
1.572 www 5509: '.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
1.523 raeburn 5510: '</th>'."\n".
5511: &Apache::loncommon::end_data_table_header_row()."\n".
5512: &Apache::loncommon::start_data_table_row()."\n".
5513: '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
5514: '<td> '.$sequence_selector.' </td>'.
5515: &Apache::loncommon::end_data_table_row()."\n".
5516: &Apache::loncommon::start_data_table_row()."\n".
5517: '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
5518: '<td> '.$file_selector.' </td>'."\n".
5519: &Apache::loncommon::end_data_table_row()."\n".
5520: &Apache::loncommon::start_data_table_row()."\n".
5521: '<td> '.&mt('Format of data file:').' </td>'."\n".
5522: '<td> '.$format_selector.' </td>'."\n".
5523: &Apache::loncommon::end_data_table_row()."\n".
5524: &Apache::loncommon::start_data_table_row()."\n".
1.557 raeburn 5525: '<td> '.&mt('Options').' </td>'."\n".
5526: '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
5527: &Apache::loncommon::end_data_table_row()."\n".
5528: &Apache::loncommon::start_data_table_row()."\n".
1.523 raeburn 5529: '<td colspan="2">'."\n".
5530: '<input type="hidden" name="command" value="checksubmissions" />'."\n".
1.575 www 5531: '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
1.523 raeburn 5532: '</td>'."\n".
5533: &Apache::loncommon::end_data_table_row()."\n".
5534: &Apache::loncommon::end_data_table()."\n".
5535: '</form><br />');
5536: return;
1.75 albertel 5537: }
5538:
1.423 albertel 5539: =pod
5540:
5541: =item get_scantron_config
5542:
5543: Parse and return the scantron configuration line selected as a
5544: hash of configuration file fields.
5545:
5546: Arguments:
5547: which - the name of the configuration to parse from the file.
5548:
5549:
5550: Returns:
5551: If the named configuration is not in the file, an empty
5552: hash is returned.
5553: a hash with the fields
5554: name - internal name for the this configuration setup
5555: description - text to display to operator that describes this config
5556: CODElocation - if 0 or the string 'none'
5557: - no CODE exists for this config
5558: if -1 || the string 'letter'
5559: - a CODE exists for this config and is
5560: a string of letters
5561: Unsupported value (but planned for future support)
5562: if a positive integer
5563: - The CODE exists as the first n items from
5564: the question section of the form
5565: if the string 'number'
5566: - The CODE exists for this config and is
5567: a string of numbers
5568: CODEstart - (only matter if a CODE exists) column in the line where
5569: the CODE starts
5570: CODElength - length of the CODE
1.573 bisitz 5571: IDstart - column where the student/employee ID starts
1.556 weissno 5572: IDlength - length of the student/employee ID info
1.423 albertel 5573: Qstart - column where the information from the bubbled
5574: 'questions' start
5575: Qlength - number of columns comprising a single bubble line from
5576: the sheet. (usually either 1 or 10)
1.424 albertel 5577: Qon - either a single character representing the character used
1.423 albertel 5578: to signal a bubble was chosen in the positional setup, or
5579: the string 'letter' if the letter of the chosen bubble is
5580: in the final, or 'number' if a number representing the
5581: chosen bubble is in the file (1->A 0->J)
1.424 albertel 5582: Qoff - the character used to represent that a bubble was
5583: left blank
1.423 albertel 5584: PaperID - if the scanning process generates a unique number for each
5585: sheet scanned the column that this ID number starts in
5586: PaperIDlength - number of columns that comprise the unique ID number
5587: for the sheet of paper
1.424 albertel 5588: FirstName - column that the first name starts in
1.423 albertel 5589: FirstNameLength - number of columns that the first name spans
5590:
5591: LastName - column that the last name starts in
5592: LastNameLength - number of columns that the last name spans
1.649 raeburn 5593: BubblesPerRow - number of bubbles available in each row used to
5594: bubble an answer. (If not specified, 10 assumed).
1.671 raeburn 5595:
1.423 albertel 5596: =cut
1.422 foxr 5597:
1.82 albertel 5598: sub get_scantron_config {
5599: my ($which) = @_;
1.518 raeburn 5600: my @lines = &get_scantronformat_file();
1.82 albertel 5601: my %config;
1.157 albertel 5602: #FIXME probably should move to XML it has already gotten a bit much now
1.518 raeburn 5603: foreach my $line (@lines) {
1.82 albertel 5604: my ($name,$descrip)=split(/:/,$line);
5605: if ($name ne $which ) { next; }
5606: chomp($line);
5607: my @config=split(/:/,$line);
5608: $config{'name'}=$config[0];
5609: $config{'description'}=$config[1];
5610: $config{'CODElocation'}=$config[2];
5611: $config{'CODEstart'}=$config[3];
5612: $config{'CODElength'}=$config[4];
5613: $config{'IDstart'}=$config[5];
5614: $config{'IDlength'}=$config[6];
5615: $config{'Qstart'}=$config[7];
1.497 foxr 5616: $config{'Qlength'}=$config[8];
1.82 albertel 5617: $config{'Qoff'}=$config[9];
5618: $config{'Qon'}=$config[10];
1.157 albertel 5619: $config{'PaperID'}=$config[11];
5620: $config{'PaperIDlength'}=$config[12];
5621: $config{'FirstName'}=$config[13];
5622: $config{'FirstNamelength'}=$config[14];
5623: $config{'LastName'}=$config[15];
5624: $config{'LastNamelength'}=$config[16];
1.649 raeburn 5625: $config{'BubblesPerRow'}=$config[17];
1.82 albertel 5626: last;
5627: }
5628: return %config;
5629: }
5630:
1.423 albertel 5631: =pod
5632:
5633: =item username_to_idmap
5634:
1.556 weissno 5635: creates a hash keyed by student/employee ID with values of the corresponding
1.423 albertel 5636: student username:domain.
5637:
5638: Arguments:
5639:
5640: $classlist - reference to the class list hash. This is a hash
5641: keyed by student name:domain whose elements are references
1.424 albertel 5642: to arrays containing various chunks of information
1.423 albertel 5643: about the student. (See loncoursedata for more info).
5644:
5645: Returns
5646: %idmap - the constructed hash
5647:
5648: =cut
5649:
1.82 albertel 5650: sub username_to_idmap {
5651: my ($classlist)= @_;
5652: my %idmap;
5653: foreach my $student (keys(%$classlist)) {
5654: $idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
5655: $student;
5656: }
5657: return %idmap;
5658: }
1.423 albertel 5659:
5660: =pod
5661:
1.424 albertel 5662: =item scantron_fixup_scanline
1.423 albertel 5663:
5664: Process a requested correction to a scanline.
5665:
5666: Arguments:
5667: $scantron_config - hash from &get_scantron_config()
5668: $scan_data - hash of correction information
5669: (see &scantron_getfile())
5670: $line - existing scanline
5671: $whichline - line number of the passed in scanline
5672: $field - type of change to process
5673: (either
1.573 bisitz 5674: 'ID' -> correct the student/employee ID
1.423 albertel 5675: 'CODE' -> correct the CODE
5676: 'answer' -> fixup the submitted answers)
5677:
5678: $args - hash of additional info,
5679: - 'ID'
5680: 'newid' -> studentID to use in replacement
1.424 albertel 5681: of existing one
1.423 albertel 5682: - 'CODE'
5683: 'CODE_ignore_dup' - set to true if duplicates
5684: should be ignored.
5685: 'CODE' - is new code or 'use_unfound'
1.424 albertel 5686: if the existing unfound code should
1.423 albertel 5687: be used as is
5688: - 'answer'
5689: 'response' - new answer or 'none' if blank
5690: 'question' - the bubble line to change
1.503 raeburn 5691: 'questionnum' - the question identifier,
5692: may include subquestion.
1.423 albertel 5693:
5694: Returns:
5695: $line - the modified scanline
5696:
5697: Side effects:
5698: $scan_data - may be updated
5699:
5700: =cut
5701:
1.82 albertel 5702:
1.157 albertel 5703: sub scantron_fixup_scanline {
5704: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
5705: if ($field eq 'ID') {
5706: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 5707: return ($line,1,'New value too large');
1.157 albertel 5708: }
5709: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
5710: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
5711: $args->{'newid'});
5712: }
5713: substr($line,$$scantron_config{'IDstart'}-1,
5714: $$scantron_config{'IDlength'})=$args->{'newid'};
5715: if ($args->{'newid'}=~/^\s*$/) {
5716: &scan_data($scan_data,"$whichline.user",
5717: $args->{'username'}.':'.$args->{'domain'});
5718: }
1.186 albertel 5719: } elsif ($field eq 'CODE') {
1.192 albertel 5720: if ($args->{'CODE_ignore_dup'}) {
5721: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
5722: }
5723: &scan_data($scan_data,"$whichline.useCODE",'1');
5724: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 5725: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
5726: return ($line,1,'New CODE value too large');
5727: }
5728: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
5729: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
5730: }
5731: substr($line,$$scantron_config{'CODEstart'}-1,
5732: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 5733: }
1.157 albertel 5734: } elsif ($field eq 'answer') {
1.497 foxr 5735: my $length=$scantron_config->{'Qlength'};
1.157 albertel 5736: my $off=$scantron_config->{'Qoff'};
5737: my $on=$scantron_config->{'Qon'};
1.497 foxr 5738: my $answer=${off}x$length;
5739: if ($args->{'response'} eq 'none') {
5740: &scan_data($scan_data,
1.503 raeburn 5741: "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497 foxr 5742: } else {
5743: if ($on eq 'letter') {
5744: my @alphabet=('A'..'Z');
5745: $answer=$alphabet[$args->{'response'}];
5746: } elsif ($on eq 'number') {
5747: $answer=$args->{'response'}+1;
5748: if ($answer == 10) { $answer = '0'; }
1.274 albertel 5749: } else {
1.497 foxr 5750: substr($answer,$args->{'response'},1)=$on;
1.274 albertel 5751: }
1.497 foxr 5752: &scan_data($scan_data,
1.503 raeburn 5753: "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157 albertel 5754: }
1.497 foxr 5755: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
5756: substr($line,$where-1,$length)=$answer;
1.157 albertel 5757: }
5758: return $line;
5759: }
1.423 albertel 5760:
5761: =pod
5762:
5763: =item scan_data
5764:
5765: Edit or look up an item in the scan_data hash.
5766:
5767: Arguments:
5768: $scan_data - The hash (see scantron_getfile)
5769: $key - shorthand of the key to edit (actual key is
1.424 albertel 5770: scantronfilename_key).
1.423 albertel 5771: $data - New value of the hash entry.
5772: $delete - If true, the entry is removed from the hash.
5773:
5774: Returns:
5775: The new value of the hash table field (undefined if deleted).
5776:
5777: =cut
5778:
5779:
1.157 albertel 5780: sub scan_data {
5781: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 5782: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 5783: if (defined($value)) {
5784: $scan_data->{$filename.'_'.$key} = $value;
5785: }
5786: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
5787: return $scan_data->{$filename.'_'.$key};
5788: }
1.423 albertel 5789:
1.495 albertel 5790: # ----- These first few routines are general use routines.----
5791:
5792: # Return the number of occurences of a pattern in a string.
5793:
5794: sub occurence_count {
5795: my ($string, $pattern) = @_;
5796:
5797: my @matches = ($string =~ /$pattern/g);
5798:
5799: return scalar(@matches);
5800: }
5801:
5802:
5803: # Take a string known to have digits and convert all the
5804: # digits into letters in the range J,A..I.
5805:
5806: sub digits_to_letters {
5807: my ($input) = @_;
5808:
5809: my @alphabet = ('J', 'A'..'I');
5810:
5811: my @input = split(//, $input);
5812: my $output ='';
5813: for (my $i = 0; $i < scalar(@input); $i++) {
5814: if ($input[$i] =~ /\d/) {
5815: $output .= $alphabet[$input[$i]];
5816: } else {
5817: $output .= $input[$i];
5818: }
5819: }
5820: return $output;
5821: }
5822:
1.423 albertel 5823: =pod
5824:
5825: =item scantron_parse_scanline
5826:
5827: Decodes a scanline from the selected scantron file
5828:
5829: Arguments:
5830: line - The text of the scantron file line to process
5831: whichline - Line number
5832: scantron_config - Hash describing the format of the scantron lines.
5833: scan_data - Hash of extra information about the scanline
5834: (see scantron_getfile for more information)
5835: just_header - True if should not process question answers but only
5836: the stuff to the left of the answers.
5837: Returns:
5838: Hash containing the result of parsing the scanline
5839:
5840: Keys are all proceeded by the string 'scantron.'
5841:
5842: CODE - the CODE in use for this scanline
5843: useCODE - 1 if the CODE is invalid but it usage has been forced
5844: by the operator
5845: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
5846: CODEs were selected, but the usage has been
5847: forced by the operator
1.556 weissno 5848: ID - student/employee ID
1.423 albertel 5849: PaperID - if used, the ID number printed on the sheet when the
5850: paper was scanned
5851: FirstName - first name from the sheet
5852: LastName - last name from the sheet
5853:
5854: if just_header was not true these key may also exist
5855:
1.447 foxr 5856: missingerror - a list of bubble ranges that are considered to be answers
5857: to a single question that don't have any bubbles filled in.
5858: Of the form questionnumber:firstbubblenumber:count.
5859: doubleerror - a list of bubble ranges that are considered to be answers
5860: to a single question that have more than one bubble filled in.
5861: Of the form questionnumber::firstbubblenumber:count
5862:
5863: In the above, count is the number of bubble responses in the
5864: input line needed to represent the possible answers to the question.
5865: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
5866: per line would have count = 2.
5867:
1.423 albertel 5868: maxquest - the number of the last bubble line that was parsed
5869:
5870: (<number> starts at 1)
5871: <number>.answer - zero or more letters representing the selected
5872: letters from the scanline for the bubble line
5873: <number>.
5874: if blank there was either no bubble or there where
5875: multiple bubbles, (consult the keys missingerror and
5876: doubleerror if this is an error condition)
5877:
5878: =cut
5879:
1.82 albertel 5880: sub scantron_parse_scanline {
1.423 albertel 5881: my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470 foxr 5882:
1.82 albertel 5883: my %record;
1.550 raeburn 5884: my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
5885: my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos); # Answers
1.422 foxr 5886: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # earlier stuff
1.278 albertel 5887: if (!($$scantron_config{'CODElocation'} eq 0 ||
5888: $$scantron_config{'CODElocation'} eq 'none')) {
5889: if ($$scantron_config{'CODElocation'} < 0 ||
5890: $$scantron_config{'CODElocation'} eq 'letter' ||
5891: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 5892: $record{'scantron.CODE'}=substr($data,
5893: $$scantron_config{'CODEstart'}-1,
1.83 albertel 5894: $$scantron_config{'CODElength'});
1.191 albertel 5895: if (&scan_data($scan_data,"$whichline.useCODE")) {
5896: $record{'scantron.useCODE'}=1;
5897: }
1.192 albertel 5898: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
5899: $record{'scantron.CODE_ignore_dup'}=1;
5900: }
1.82 albertel 5901: } else {
5902: #FIXME interpret first N questions
5903: }
5904: }
1.83 albertel 5905: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
5906: $$scantron_config{'IDlength'});
1.157 albertel 5907: $record{'scantron.PaperID'}=
5908: substr($data,$$scantron_config{'PaperID'}-1,
5909: $$scantron_config{'PaperIDlength'});
5910: $record{'scantron.FirstName'}=
5911: substr($data,$$scantron_config{'FirstName'}-1,
5912: $$scantron_config{'FirstNamelength'});
5913: $record{'scantron.LastName'}=
5914: substr($data,$$scantron_config{'LastName'}-1,
5915: $$scantron_config{'LastNamelength'});
1.423 albertel 5916: if ($just_header) { return \%record; }
1.194 albertel 5917:
1.82 albertel 5918: my @alphabet=('A'..'Z');
5919: my $questnum=0;
1.447 foxr 5920: my $ansnum =1; # Multiple 'answer lines'/question.
5921:
1.470 foxr 5922: chomp($questions); # Get rid of any trailing \n.
5923: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
5924: while (length($questions)) {
1.447 foxr 5925: my $answers_needed = $bubble_lines_per_response{$questnum};
1.503 raeburn 5926: my $answer_length = ($$scantron_config{'Qlength'} * $answers_needed)
5927: || 1;
5928: $questnum++;
5929: my $quest_id = $questnum;
5930: my $currentquest = substr($questions,0,$answer_length);
5931: $questions = substr($questions,$answer_length);
5932: if (length($currentquest) < $answer_length) { next; }
5933:
5934: if ($subdivided_bubble_lines{$questnum-1} =~ /,/) {
5935: my $subquestnum = 1;
5936: my $subquestions = $currentquest;
5937: my @subanswers_needed =
5938: split(/,/,$subdivided_bubble_lines{$questnum-1});
5939: foreach my $subans (@subanswers_needed) {
5940: my $subans_length =
5941: ($$scantron_config{'Qlength'} * $subans) || 1;
5942: my $currsubquest = substr($subquestions,0,$subans_length);
5943: $subquestions = substr($subquestions,$subans_length);
5944: $quest_id = "$questnum.$subquestnum";
5945: if (($$scantron_config{'Qon'} eq 'letter') ||
5946: ($$scantron_config{'Qon'} eq 'number')) {
5947: $ansnum = &scantron_validator_lettnum($ansnum,
5948: $questnum,$quest_id,$subans,$currsubquest,$whichline,
5949: \@alphabet,\%record,$scantron_config,$scan_data);
5950: } else {
5951: $ansnum = &scantron_validator_positional($ansnum,
5952: $questnum,$quest_id,$subans,$currsubquest,$whichline, \@alphabet,\%record,$scantron_config,$scan_data);
5953: }
5954: $subquestnum ++;
5955: }
5956: } else {
5957: if (($$scantron_config{'Qon'} eq 'letter') ||
5958: ($$scantron_config{'Qon'} eq 'number')) {
5959: $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
5960: $quest_id,$answers_needed,$currentquest,$whichline,
5961: \@alphabet,\%record,$scantron_config,$scan_data);
5962: } else {
5963: $ansnum = &scantron_validator_positional($ansnum,$questnum,
5964: $quest_id,$answers_needed,$currentquest,$whichline,
5965: \@alphabet,\%record,$scantron_config,$scan_data);
5966: }
5967: }
5968: }
5969: $record{'scantron.maxquest'}=$questnum;
5970: return \%record;
5971: }
1.447 foxr 5972:
1.503 raeburn 5973: sub scantron_validator_lettnum {
5974: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
5975: $alphabet,$record,$scantron_config,$scan_data) = @_;
5976:
5977: # Qon 'letter' implies for each slot in currquest we have:
5978: # ? or * for doubles, a letter in A-Z for a bubble, and
5979: # about anything else (esp. a value of Qoff) for missing
5980: # bubbles.
5981: #
5982: # Qon 'number' implies each slot gives a digit that indexes the
5983: # bubbles filled, or Qoff, or a non-number for unbubbled lines,
5984: # and * or ? for double bubbles on a single line.
5985: #
1.447 foxr 5986:
1.503 raeburn 5987: my $matchon;
5988: if ($$scantron_config{'Qon'} eq 'letter') {
5989: $matchon = '[A-Z]';
5990: } elsif ($$scantron_config{'Qon'} eq 'number') {
5991: $matchon = '\d';
5992: }
5993: my $occurrences = 0;
5994: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
5995: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 5996: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
5997: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
5998: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
5999: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 6000: my @singlelines = split('',$currquest);
6001: foreach my $entry (@singlelines) {
6002: $occurrences = &occurence_count($entry,$matchon);
6003: if ($occurrences > 1) {
6004: last;
6005: }
6006: }
6007: } else {
6008: $occurrences = &occurence_count($currquest,$matchon);
6009: }
6010: if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
6011: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6012: for (my $ans=0; $ans<$answers_needed; $ans++) {
6013: my $bubble = substr($currquest,$ans,1);
6014: if ($bubble =~ /$matchon/ ) {
6015: if ($$scantron_config{'Qon'} eq 'number') {
6016: if ($bubble == 0) {
6017: $bubble = 10;
6018: }
6019: $record->{"scantron.$ansnum.answer"} =
6020: $alphabet->[$bubble-1];
6021: } else {
6022: $record->{"scantron.$ansnum.answer"} = $bubble;
6023: }
6024: } else {
6025: $record->{"scantron.$ansnum.answer"}='';
6026: }
6027: $ansnum++;
6028: }
6029: } elsif (!defined($currquest)
6030: || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
6031: || (&occurence_count($currquest,$matchon) == 0)) {
6032: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6033: $record->{"scantron.$ansnum.answer"}='';
6034: $ansnum++;
6035: }
6036: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6037: push(@{$record->{'scantron.missingerror'}},$quest_id);
6038: }
6039: } else {
6040: if ($$scantron_config{'Qon'} eq 'number') {
6041: $currquest = &digits_to_letters($currquest);
6042: }
6043: for (my $ans=0; $ans<$answers_needed; $ans++) {
6044: my $bubble = substr($currquest,$ans,1);
6045: $record->{"scantron.$ansnum.answer"} = $bubble;
6046: $ansnum++;
6047: }
6048: }
6049: return $ansnum;
6050: }
1.447 foxr 6051:
1.503 raeburn 6052: sub scantron_validator_positional {
6053: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
6054: $whichline,$alphabet,$record,$scantron_config,$scan_data) = @_;
1.447 foxr 6055:
1.503 raeburn 6056: # Otherwise there's a positional notation;
6057: # each bubble line requires Qlength items, and there are filled in
6058: # bubbles for each case where there 'Qon' characters.
6059: #
1.447 foxr 6060:
1.503 raeburn 6061: my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447 foxr 6062:
1.503 raeburn 6063: # If the split only gives us one element.. the full length of the
6064: # answer string, no bubbles are filled in:
1.447 foxr 6065:
1.507 raeburn 6066: if ($answers_needed eq '') {
6067: return;
6068: }
6069:
1.503 raeburn 6070: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
6071: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6072: $record->{"scantron.$ansnum.answer"}='';
6073: $ansnum++;
6074: }
6075: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6076: push(@{$record->{"scantron.missingerror"}},$quest_id);
6077: }
6078: } elsif (scalar(@array) == 2) {
6079: my $location = length($array[0]);
6080: my $line_num = int($location / $$scantron_config{'Qlength'});
6081: my $bubble = $alphabet->[$location % $$scantron_config{'Qlength'}];
6082: for (my $ans=0; $ans<$answers_needed; $ans++) {
6083: if ($ans eq $line_num) {
6084: $record->{"scantron.$ansnum.answer"} = $bubble;
6085: } else {
6086: $record->{"scantron.$ansnum.answer"} = ' ';
6087: }
6088: $ansnum++;
6089: }
6090: } else {
6091: # If there's more than one instance of a bubble character
6092: # That's a double bubble; with positional notation we can
6093: # record all the bubbles filled in as well as the
6094: # fact this response consists of multiple bubbles.
6095: #
6096: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
6097: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 6098: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
6099: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
6100: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
6101: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 6102: my $doubleerror = 0;
6103: while (($currquest >= $$scantron_config{'Qlength'}) &&
6104: (!$doubleerror)) {
6105: my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
6106: $currquest = substr($currquest,$$scantron_config{'Qlength'});
6107: my @currarray = split($$scantron_config{'Qon'},$currline,-1);
6108: if (length(@currarray) > 2) {
6109: $doubleerror = 1;
6110: }
6111: }
6112: if ($doubleerror) {
6113: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6114: }
6115: } else {
6116: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6117: }
6118: my $item = $ansnum;
6119: for (my $ans=0; $ans<$answers_needed; $ans++) {
6120: $record->{"scantron.$item.answer"} = '';
6121: $item ++;
6122: }
1.447 foxr 6123:
1.503 raeburn 6124: my @ans=@array;
6125: my $i=0;
6126: my $increment = 0;
6127: while ($#ans) {
6128: $i+=length($ans[0]) + $increment;
6129: my $line = int($i/$$scantron_config{'Qlength'} + $ansnum);
6130: my $bubble = $i%$$scantron_config{'Qlength'};
6131: $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
6132: shift(@ans);
6133: $increment = 1;
6134: }
6135: $ansnum += $answers_needed;
1.82 albertel 6136: }
1.503 raeburn 6137: return $ansnum;
1.82 albertel 6138: }
6139:
1.423 albertel 6140: =pod
6141:
6142: =item scantron_add_delay
6143:
6144: Adds an error message that occurred during the grading phase to a
6145: queue of messages to be shown after grading pass is complete
6146:
6147: Arguments:
1.424 albertel 6148: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 6149: $scanline - the scanline that caused the error
6150: $errormesage - the error message
6151: $errorcode - a numeric code for the error
6152:
6153: Side Effects:
1.424 albertel 6154: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 6155:
6156: =cut
6157:
1.82 albertel 6158: sub scantron_add_delay {
1.140 albertel 6159: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
6160: push(@$delayqueue,
6161: {'line' => $scanline, 'emsg' => $errormessage,
6162: 'ecode' => $errorcode }
6163: );
1.82 albertel 6164: }
6165:
1.423 albertel 6166: =pod
6167:
6168: =item scantron_find_student
6169:
1.424 albertel 6170: Finds the username for the current scanline
6171:
6172: Arguments:
6173: $scantron_record - hash result from scantron_parse_scanline
6174: $scan_data - hash of correction information
6175: (see &scantron_getfile() form more information)
6176: $idmap - hash from &username_to_idmap()
6177: $line - number of current scanline
6178:
6179: Returns:
6180: Either 'username:domain' or undef if unknown
6181:
1.423 albertel 6182: =cut
6183:
1.82 albertel 6184: sub scantron_find_student {
1.157 albertel 6185: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 6186: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 6187: if ($scanID =~ /^\s*$/) {
6188: return &scan_data($scan_data,"$line.user");
6189: }
1.83 albertel 6190: foreach my $id (keys(%$idmap)) {
1.157 albertel 6191: if (lc($id) eq lc($scanID)) {
6192: return $$idmap{$id};
6193: }
1.83 albertel 6194: }
6195: return undef;
6196: }
6197:
1.423 albertel 6198: =pod
6199:
6200: =item scantron_filter
6201:
1.424 albertel 6202: Filter sub for lonnavmaps, filters out hidden resources if ignore
6203: hidden resources was selected
6204:
1.423 albertel 6205: =cut
6206:
1.83 albertel 6207: sub scantron_filter {
6208: my ($curres)=@_;
1.331 albertel 6209:
6210: if (ref($curres) && $curres->is_problem()) {
6211: # if the user has asked to not have either hidden
6212: # or 'randomout' controlled resources to be graded
6213: # don't include them
6214: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6215: && $curres->randomout) {
6216: return 0;
6217: }
1.83 albertel 6218: return 1;
6219: }
6220: return 0;
1.82 albertel 6221: }
6222:
1.423 albertel 6223: =pod
6224:
6225: =item scantron_process_corrections
6226:
1.424 albertel 6227: Gets correction information out of submitted form data and corrects
6228: the scanline
6229:
1.423 albertel 6230: =cut
6231:
1.157 albertel 6232: sub scantron_process_corrections {
6233: my ($r) = @_;
1.257 albertel 6234: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6235: my ($scanlines,$scan_data)=&scantron_getfile();
6236: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 6237: my $which=$env{'form.scantron_line'};
1.200 albertel 6238: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 6239: my ($skip,$err,$errmsg);
1.257 albertel 6240: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 6241: $skip=1;
1.257 albertel 6242: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
6243: my $newstudent=$env{'form.scantron_username'}.':'.
6244: $env{'form.scantron_domain'};
1.157 albertel 6245: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
6246: ($line,$err,$errmsg)=
6247: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
6248: 'ID',{'newid'=>$newid,
1.257 albertel 6249: 'username'=>$env{'form.scantron_username'},
6250: 'domain'=>$env{'form.scantron_domain'}});
6251: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
6252: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 6253: my $newCODE;
1.192 albertel 6254: my %args;
1.190 albertel 6255: if ($resolution eq 'use_unfound') {
1.191 albertel 6256: $newCODE='use_unfound';
1.190 albertel 6257: } elsif ($resolution eq 'use_found') {
1.257 albertel 6258: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 6259: } elsif ($resolution eq 'use_typed') {
1.257 albertel 6260: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 6261: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 6262: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 6263: }
1.257 albertel 6264: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 6265: $args{'CODE_ignore_dup'}=1;
6266: }
6267: $args{'CODE'}=$newCODE;
1.186 albertel 6268: ($line,$err,$errmsg)=
6269: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 6270: 'CODE',\%args);
1.257 albertel 6271: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
6272: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 6273: ($line,$err,$errmsg)=
6274: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
6275: $which,'answer',
6276: { 'question'=>$question,
1.503 raeburn 6277: 'response'=>$env{"form.scantron_correct_Q_$question"},
6278: 'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157 albertel 6279: if ($err) { last; }
6280: }
6281: }
6282: if ($err) {
1.398 albertel 6283: $r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157 albertel 6284: } else {
1.200 albertel 6285: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 6286: &scantron_putfile($scanlines,$scan_data);
6287: }
6288: }
6289:
1.423 albertel 6290: =pod
6291:
6292: =item reset_skipping_status
6293:
1.424 albertel 6294: Forgets the current set of remember skipped scanlines (and thus
6295: reverts back to considering all lines in the
6296: scantron_skipped_<filename> file)
6297:
1.423 albertel 6298: =cut
6299:
1.200 albertel 6300: sub reset_skipping_status {
6301: my ($scanlines,$scan_data)=&scantron_getfile();
6302: &scan_data($scan_data,'remember_skipping',undef,1);
6303: &scantron_putfile(undef,$scan_data);
6304: }
6305:
1.423 albertel 6306: =pod
6307:
6308: =item start_skipping
6309:
1.424 albertel 6310: Marks a scanline to be skipped.
6311:
1.423 albertel 6312: =cut
6313:
1.376 albertel 6314: sub start_skipping {
1.200 albertel 6315: my ($scan_data,$i)=@_;
6316: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6317: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
6318: $remembered{$i}=2;
6319: } else {
6320: $remembered{$i}=1;
6321: }
1.200 albertel 6322: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
6323: }
6324:
1.423 albertel 6325: =pod
6326:
6327: =item should_be_skipped
6328:
1.424 albertel 6329: Checks whether a scanline should be skipped.
6330:
1.423 albertel 6331: =cut
6332:
1.200 albertel 6333: sub should_be_skipped {
1.376 albertel 6334: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 6335: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 6336: # not redoing old skips
1.376 albertel 6337: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 6338: return 0;
6339: }
6340: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6341:
6342: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
6343: return 0;
6344: }
1.200 albertel 6345: return 1;
6346: }
6347:
1.423 albertel 6348: =pod
6349:
6350: =item remember_current_skipped
6351:
1.424 albertel 6352: Discovers what scanlines are in the scantron_skipped_<filename>
6353: file and remembers them into scan_data for later use.
6354:
1.423 albertel 6355: =cut
6356:
1.200 albertel 6357: sub remember_current_skipped {
6358: my ($scanlines,$scan_data)=&scantron_getfile();
6359: my %to_remember;
6360: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6361: if ($scanlines->{'skipped'}[$i]) {
6362: $to_remember{$i}=1;
6363: }
6364: }
1.376 albertel 6365:
1.200 albertel 6366: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
6367: &scantron_putfile(undef,$scan_data);
6368: }
6369:
1.423 albertel 6370: =pod
6371:
6372: =item check_for_error
6373:
1.424 albertel 6374: Checks if there was an error when attempting to remove a specific
1.659 raeburn 6375: scantron_.. bubblesheet data file. Prints out an error if
1.424 albertel 6376: something went wrong.
6377:
1.423 albertel 6378: =cut
6379:
1.200 albertel 6380: sub check_for_error {
6381: my ($r,$result)=@_;
6382: if ($result ne 'ok' && $result ne 'not_found' ) {
1.492 albertel 6383: $r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200 albertel 6384: }
6385: }
1.157 albertel 6386:
1.423 albertel 6387: =pod
6388:
6389: =item scantron_warning_screen
6390:
1.424 albertel 6391: Interstitial screen to make sure the operator has selected the
6392: correct options before we start the validation phase.
6393:
1.423 albertel 6394: =cut
6395:
1.203 albertel 6396: sub scantron_warning_screen {
1.650 raeburn 6397: my ($button_text,$symb)=@_;
1.257 albertel 6398: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 6399: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 6400: my $CODElist;
1.284 albertel 6401: if ($scantron_config{'CODElocation'} &&
6402: $scantron_config{'CODEstart'} &&
6403: $scantron_config{'CODElength'}) {
6404: $CODElist=$env{'form.scantron_CODElist'};
1.398 albertel 6405: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284 albertel 6406: $CODElist=
1.492 albertel 6407: '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373 albertel 6408: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 6409: }
1.663 raeburn 6410: my $lastbubblepoints;
6411: if ($env{'form.scantron_lastbubblepoints'} ne '') {
6412: $lastbubblepoints =
6413: '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
6414: $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
6415: }
1.492 albertel 6416: return ('
1.203 albertel 6417: <p>
1.492 albertel 6418: <span class="LC_warning">
6419: '.&mt('Please double check the information below before clicking on \'[_1]\'',&mt($button_text)).'</span>
1.203 albertel 6420: </p>
6421: <table>
1.492 albertel 6422: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
6423: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
1.663 raeburn 6424: '.$CODElist.$lastbubblepoints.'
1.203 albertel 6425: </table>
1.680 raeburn 6426: <p> '.&mt("If this information is correct, please click on '[_1]'.",&mt($button_text)).'<br />
1.650 raeburn 6427: '.&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 6428:
6429: <br />
1.492 albertel 6430: ');
1.203 albertel 6431: }
6432:
1.423 albertel 6433: =pod
6434:
6435: =item scantron_do_warning
6436:
1.424 albertel 6437: Check if the operator has picked something for all required
6438: fields. Error out if something is missing.
6439:
1.423 albertel 6440: =cut
6441:
1.203 albertel 6442: sub scantron_do_warning {
1.608 www 6443: my ($r,$symb)=@_;
1.203 albertel 6444: if (!$symb) {return '';}
1.324 albertel 6445: my $default_form_data=&defaultFormData($symb);
1.203 albertel 6446: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 6447: if ( $env{'form.selectpage'} eq '' ||
6448: $env{'form.scantron_selectfile'} eq '' ||
6449: $env{'form.scantron_format'} eq '' ) {
1.642 raeburn 6450: $r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
1.257 albertel 6451: if ( $env{'form.selectpage'} eq '') {
1.492 albertel 6452: $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237 albertel 6453: }
1.257 albertel 6454: if ( $env{'form.scantron_selectfile'} eq '') {
1.642 raeburn 6455: $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 6456: }
1.257 albertel 6457: if ( $env{'form.scantron_format'} eq '') {
1.642 raeburn 6458: $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 6459: }
6460: } else {
1.650 raeburn 6461: my $warning=&scantron_warning_screen('Grading: Validate Records',$symb);
1.663 raeburn 6462: my $bubbledbyhand=&hand_bubble_option();
1.492 albertel 6463: $r->print('
1.663 raeburn 6464: '.$warning.$bubbledbyhand.'
1.492 albertel 6465: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203 albertel 6466: <input type="hidden" name="command" value="scantron_validate" />
1.492 albertel 6467: ');
1.237 albertel 6468: }
1.614 www 6469: $r->print("</form><br />");
1.203 albertel 6470: return '';
6471: }
6472:
1.423 albertel 6473: =pod
6474:
6475: =item scantron_form_start
6476:
1.424 albertel 6477: html hidden input for remembering all selected grading options
6478:
1.423 albertel 6479: =cut
6480:
1.203 albertel 6481: sub scantron_form_start {
6482: my ($max_bubble)=@_;
6483: my $result= <<SCANTRONFORM;
6484: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 6485: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
6486: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
6487: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 6488: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 6489: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
6490: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
6491: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
6492: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 6493: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 6494: SCANTRONFORM
1.447 foxr 6495:
6496: my $line = 0;
6497: while (defined($env{"form.scantron.bubblelines.$line"})) {
6498: my $chunk =
6499: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 6500: $chunk .=
6501: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503 raeburn 6502: $chunk .=
6503: '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504 raeburn 6504: $chunk .=
6505: '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.447 foxr 6506: $result .= $chunk;
6507: $line++;
6508: }
1.203 albertel 6509: return $result;
6510: }
6511:
1.423 albertel 6512: =pod
6513:
6514: =item scantron_validate_file
6515:
1.659 raeburn 6516: Dispatch routine for doing validation of a bubblesheet data file.
1.424 albertel 6517:
6518: Also processes any necessary information resets that need to
6519: occur before validation begins (ignore previous corrections,
6520: restarting the skipped records processing)
6521:
1.423 albertel 6522: =cut
6523:
1.157 albertel 6524: sub scantron_validate_file {
1.608 www 6525: my ($r,$symb) = @_;
1.157 albertel 6526: if (!$symb) {return '';}
1.324 albertel 6527: my $default_form_data=&defaultFormData($symb);
1.200 albertel 6528:
6529: # do the detection of only doing skipped records first befroe we delete
1.424 albertel 6530: # them when doing the corrections reset
1.257 albertel 6531: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 6532: &reset_skipping_status();
6533: }
1.257 albertel 6534: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 6535: &remember_current_skipped();
1.257 albertel 6536: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 6537: }
6538:
1.257 albertel 6539: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 6540: &check_for_error($r,&scantron_remove_file('corrected'));
6541: &check_for_error($r,&scantron_remove_file('skipped'));
6542: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 6543: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 6544: }
1.200 albertel 6545:
1.257 albertel 6546: if ($env{'form.scantron_corrections'}) {
1.157 albertel 6547: &scantron_process_corrections($r);
6548: }
1.503 raeburn 6549: $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157 albertel 6550: #get the student pick code ready
6551: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.582 raeburn 6552: my $nav_error;
1.649 raeburn 6553: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
6554: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 6555: if ($nav_error) {
6556: $r->print(&navmap_errormsg());
6557: return '';
6558: }
1.203 albertel 6559: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.663 raeburn 6560: if ($env{'form.scantron_lastbubblepoints'} ne '') {
6561: $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
6562: }
1.157 albertel 6563: $r->print($result);
6564:
1.334 albertel 6565: my @validate_phases=( 'sequence',
6566: 'ID',
1.157 albertel 6567: 'CODE',
6568: 'doublebubble',
6569: 'missingbubbles');
1.257 albertel 6570: if (!$env{'form.validatepass'}) {
6571: $env{'form.validatepass'} = 0;
1.157 albertel 6572: }
1.257 albertel 6573: my $currentphase=$env{'form.validatepass'};
1.157 albertel 6574:
1.448 foxr 6575:
1.157 albertel 6576: my $stop=0;
6577: while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503 raeburn 6578: $r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157 albertel 6579: $r->rflush();
6580: my $which="scantron_validate_".$validate_phases[$currentphase];
6581: {
6582: no strict 'refs';
6583: ($stop,$currentphase)=&$which($r,$currentphase);
6584: }
6585: }
6586: if (!$stop) {
1.650 raeburn 6587: my $warning=&scantron_warning_screen('Start Grading',$symb);
1.542 raeburn 6588: $r->print(&mt('Validation process complete.').'<br />'.
6589: $warning.
6590: &mt('Perform verification for each student after storage of submissions?').
6591: ' <span class="LC_nobreak"><label>'.
6592: '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
6593: (' 'x3).'<label>'.
6594: '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
6595: '</label></span><br />'.
6596: &mt('Grading will take longer if you use verification.').'<br />'.
1.650 raeburn 6597: &mt('Otherwise, Grade/Manage/Review Bubblesheets [_1] Review bubblesheet data can be used once grading is complete.','»').'<br /><br />'.
1.542 raeburn 6598: '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
6599: '<input type="hidden" name="command" value="scantron_process" />'."\n");
1.157 albertel 6600: } else {
6601: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
6602: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
6603: }
6604: if ($stop) {
1.334 albertel 6605: if ($validate_phases[$currentphase] eq 'sequence') {
1.539 riegler 6606: $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' → " />');
1.492 albertel 6607: $r->print(' '.&mt('this error').' <br />');
1.334 albertel 6608:
1.650 raeburn 6609: $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 6610: } else {
1.503 raeburn 6611: if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
1.539 riegler 6612: $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' →" onclick="javascript:verify_bubble_radio(this.form)" />');
1.503 raeburn 6613: } else {
1.539 riegler 6614: $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' →" />');
1.503 raeburn 6615: }
1.492 albertel 6616: $r->print(' '.&mt('using corrected info').' <br />');
6617: $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
6618: $r->print(" ".&mt("this scanline saving it for later."));
1.334 albertel 6619: }
1.157 albertel 6620: }
1.614 www 6621: $r->print(" </form><br />");
1.157 albertel 6622: return '';
6623: }
6624:
1.423 albertel 6625:
6626: =pod
6627:
6628: =item scantron_remove_file
6629:
1.659 raeburn 6630: Removes the requested bubblesheet data file, makes sure that
1.424 albertel 6631: scantron_original_<filename> is never removed
6632:
6633:
1.423 albertel 6634: =cut
6635:
1.200 albertel 6636: sub scantron_remove_file {
1.192 albertel 6637: my ($which)=@_;
1.257 albertel 6638: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6639: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6640: my $file='scantron_';
1.200 albertel 6641: if ($which eq 'corrected' || $which eq 'skipped') {
6642: $file.=$which.'_';
1.192 albertel 6643: } else {
6644: return 'refused';
6645: }
1.257 albertel 6646: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 6647: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
6648: }
6649:
1.423 albertel 6650:
6651: =pod
6652:
6653: =item scantron_remove_scan_data
6654:
1.659 raeburn 6655: Removes all scan_data correction for the requested bubblesheet
1.424 albertel 6656: data file. (In the case that both the are doing skipped records we need
6657: to remember the old skipped lines for the time being so that element
6658: persists for a while.)
6659:
1.423 albertel 6660: =cut
6661:
1.200 albertel 6662: sub scantron_remove_scan_data {
1.257 albertel 6663: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6664: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6665: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
6666: my @todelete;
1.257 albertel 6667: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 6668: foreach my $key (@keys) {
6669: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 6670: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 6671: $key=~/remember_skipping/) {
6672: next;
6673: }
1.192 albertel 6674: push(@todelete,$key);
6675: }
6676: }
1.200 albertel 6677: my $result;
1.192 albertel 6678: if (@todelete) {
1.491 albertel 6679: $result = &Apache::lonnet::del('nohist_scantrondata',
6680: \@todelete,$cdom,$cname);
6681: } else {
6682: $result = 'ok';
1.192 albertel 6683: }
6684: return $result;
6685: }
6686:
1.423 albertel 6687:
6688: =pod
6689:
6690: =item scantron_getfile
6691:
1.659 raeburn 6692: Fetches the requested bubblesheet data file (all 3 versions), and
1.424 albertel 6693: the scan_data hash
6694:
6695: Arguments:
6696: None
6697:
6698: Returns:
6699: 2 hash references
6700:
6701: - first one has
6702: orig -
6703: corrected -
6704: skipped - each of which points to an array ref of the specified
6705: file broken up into individual lines
6706: count - number of scanlines
6707:
6708: - second is the scan_data hash possible keys are
1.425 albertel 6709: ($number refers to scanline numbered $number and thus the key affects
6710: only that scanline
6711: $bubline refers to the specific bubble line element and the aspects
6712: refers to that specific bubble line element)
6713:
6714: $number.user - username:domain to use
6715: $number.CODE_ignore_dup
6716: - ignore the duplicate CODE error
6717: $number.useCODE
6718: - use the CODE in the scanline as is
6719: $number.no_bubble.$bubline
6720: - it is valid that there is no bubbled in bubble
6721: at $number $bubline
6722: remember_skipping
6723: - a frozen hash containing keys of $number and values
6724: of either
6725: 1 - we are on a 'do skipped records pass' and plan
6726: on processing this line
6727: 2 - we are on a 'do skipped records pass' and this
6728: scanline has been marked to skip yet again
1.424 albertel 6729:
1.423 albertel 6730: =cut
6731:
1.157 albertel 6732: sub scantron_getfile {
1.200 albertel 6733: #FIXME really would prefer a scantron directory
1.257 albertel 6734: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6735: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 6736: my $lines;
6737: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6738: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 6739: my %scanlines;
6740: $scanlines{'orig'}=[(split("\n",$lines,-1))];
6741: my $temp=$scanlines{'orig'};
6742: $scanlines{'count'}=$#$temp;
6743:
6744: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6745: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 6746: if ($lines eq '-1') {
6747: $scanlines{'corrected'}=[];
6748: } else {
6749: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
6750: }
6751: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6752: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 6753: if ($lines eq '-1') {
6754: $scanlines{'skipped'}=[];
6755: } else {
6756: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
6757: }
1.175 albertel 6758: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 6759: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
6760: my %scan_data = @tmp;
6761: return (\%scanlines,\%scan_data);
6762: }
6763:
1.423 albertel 6764: =pod
6765:
6766: =item lonnet_putfile
6767:
1.424 albertel 6768: Wrapper routine to call &Apache::lonnet::finishuserfileupload
6769:
6770: Arguments:
6771: $contents - data to store
6772: $filename - filename to store $contents into
6773:
6774: Returns:
6775: result value from &Apache::lonnet::finishuserfileupload
6776:
1.423 albertel 6777: =cut
6778:
1.157 albertel 6779: sub lonnet_putfile {
6780: my ($contents,$filename)=@_;
1.257 albertel 6781: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
6782: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
6783: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 6784: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 6785:
6786: }
6787:
1.423 albertel 6788: =pod
6789:
6790: =item scantron_putfile
6791:
1.659 raeburn 6792: Stores the current version of the bubblesheet data files, and the
1.424 albertel 6793: scan_data hash. (Does not modify the original version only the
6794: corrected and skipped versions.
6795:
6796: Arguments:
6797: $scanlines - hash ref that looks like the first return value from
6798: &scantron_getfile()
6799: $scan_data - hash ref that looks like the second return value from
6800: &scantron_getfile()
6801:
1.423 albertel 6802: =cut
6803:
1.157 albertel 6804: sub scantron_putfile {
6805: my ($scanlines,$scan_data) = @_;
1.200 albertel 6806: #FIXME really would prefer a scantron directory
1.257 albertel 6807: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6808: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 6809: if ($scanlines) {
6810: my $prefix='scantron_';
1.157 albertel 6811: # no need to update orig, shouldn't change
6812: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 6813: # $env{'form.scantron_selectfile'});
1.200 albertel 6814: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
6815: $prefix.'corrected_'.
1.257 albertel 6816: $env{'form.scantron_selectfile'});
1.200 albertel 6817: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
6818: $prefix.'skipped_'.
1.257 albertel 6819: $env{'form.scantron_selectfile'});
1.200 albertel 6820: }
1.175 albertel 6821: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 6822: }
6823:
1.423 albertel 6824: =pod
6825:
6826: =item scantron_get_line
6827:
1.424 albertel 6828: Returns the correct version of the scanline
6829:
6830: Arguments:
6831: $scanlines - hash ref that looks like the first return value from
6832: &scantron_getfile()
6833: $scan_data - hash ref that looks like the second return value from
6834: &scantron_getfile()
6835: $i - number of the requested line (starts at 0)
6836:
6837: Returns:
6838: A scanline, (either the original or the corrected one if it
6839: exists), or undef if the requested scanline should be
6840: skipped. (Either because it's an skipped scanline, or it's an
6841: unskipped scanline and we are not doing a 'do skipped scanlines'
6842: pass.
6843:
1.423 albertel 6844: =cut
6845:
1.157 albertel 6846: sub scantron_get_line {
1.200 albertel 6847: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 6848: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
6849: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 6850: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
6851: return $scanlines->{'orig'}[$i];
6852: }
6853:
1.423 albertel 6854: =pod
6855:
6856: =item scantron_todo_count
6857:
1.424 albertel 6858: Counts the number of scanlines that need processing.
6859:
6860: Arguments:
6861: $scanlines - hash ref that looks like the first return value from
6862: &scantron_getfile()
6863: $scan_data - hash ref that looks like the second return value from
6864: &scantron_getfile()
6865:
6866: Returns:
6867: $count - number of scanlines to process
6868:
1.423 albertel 6869: =cut
6870:
1.200 albertel 6871: sub get_todo_count {
6872: my ($scanlines,$scan_data)=@_;
6873: my $count=0;
6874: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6875: my $line=&scantron_get_line($scanlines,$scan_data,$i);
6876: if ($line=~/^[\s\cz]*$/) { next; }
6877: $count++;
6878: }
6879: return $count;
6880: }
6881:
1.423 albertel 6882: =pod
6883:
6884: =item scantron_put_line
6885:
1.659 raeburn 6886: Updates the 'corrected' or 'skipped' versions of the bubblesheet
1.424 albertel 6887: data file.
6888:
6889: Arguments:
6890: $scanlines - hash ref that looks like the first return value from
6891: &scantron_getfile()
6892: $scan_data - hash ref that looks like the second return value from
6893: &scantron_getfile()
6894: $i - line number to update
6895: $newline - contents of the updated scanline
6896: $skip - if true make the line for skipping and update the
6897: 'skipped' file
6898:
1.423 albertel 6899: =cut
6900:
1.157 albertel 6901: sub scantron_put_line {
1.200 albertel 6902: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 6903: if ($skip) {
6904: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 6905: &start_skipping($scan_data,$i);
1.157 albertel 6906: return;
6907: }
6908: $scanlines->{'corrected'}[$i]=$newline;
6909: }
6910:
1.423 albertel 6911: =pod
6912:
6913: =item scantron_clear_skip
6914:
1.424 albertel 6915: Remove a line from the 'skipped' file
6916:
6917: Arguments:
6918: $scanlines - hash ref that looks like the first return value from
6919: &scantron_getfile()
6920: $scan_data - hash ref that looks like the second return value from
6921: &scantron_getfile()
6922: $i - line number to update
6923:
1.423 albertel 6924: =cut
6925:
1.376 albertel 6926: sub scantron_clear_skip {
6927: my ($scanlines,$scan_data,$i)=@_;
6928: if (exists($scanlines->{'skipped'}[$i])) {
6929: undef($scanlines->{'skipped'}[$i]);
6930: return 1;
6931: }
6932: return 0;
6933: }
6934:
1.423 albertel 6935: =pod
6936:
6937: =item scantron_filter_not_exam
6938:
1.424 albertel 6939: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
6940: filter out resources that are not marked as 'exam' mode
6941:
1.423 albertel 6942: =cut
6943:
1.334 albertel 6944: sub scantron_filter_not_exam {
6945: my ($curres)=@_;
6946:
6947: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
6948: # if the user has asked to not have either hidden
6949: # or 'randomout' controlled resources to be graded
6950: # don't include them
6951: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6952: && $curres->randomout) {
6953: return 0;
6954: }
6955: return 1;
6956: }
6957: return 0;
6958: }
6959:
1.423 albertel 6960: =pod
6961:
6962: =item scantron_validate_sequence
6963:
1.424 albertel 6964: Validates the selected sequence, checking for resource that are
6965: not set to exam mode.
6966:
1.423 albertel 6967: =cut
6968:
1.334 albertel 6969: sub scantron_validate_sequence {
6970: my ($r,$currentphase) = @_;
6971:
6972: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 6973: unless (ref($navmap)) {
6974: $r->print(&navmap_errormsg());
6975: return (1,$currentphase);
6976: }
1.334 albertel 6977: my (undef,undef,$sequence)=
6978: &Apache::lonnet::decode_symb($env{'form.selectpage'});
6979:
6980: my $map=$navmap->getResourceByUrl($sequence);
6981:
6982: $r->print('<input type="hidden" name="validate_sequence_exam"
6983: value="ignore" />');
6984: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
6985: my @resources=
6986: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
6987: if (@resources) {
1.675 bisitz 6988: $r->print(
6989: '<p class="LC_warning">'
6990: .&mt('Some resources in the sequence currently are not set to'
1.684 bisitz 6991: .' bubblesheet exam mode. Grading these resources currently may not'
1.675 bisitz 6992: .' work correctly.')
6993: .'</p>'
6994: );
1.334 albertel 6995: return (1,$currentphase);
6996: }
6997: }
6998:
6999: return (0,$currentphase+1);
7000: }
7001:
1.423 albertel 7002:
7003:
1.157 albertel 7004: sub scantron_validate_ID {
7005: my ($r,$currentphase) = @_;
7006:
7007: #get student info
7008: my $classlist=&Apache::loncoursedata::get_classlist();
7009: my %idmap=&username_to_idmap($classlist);
7010:
7011: #get scantron line setup
1.257 albertel 7012: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7013: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7014:
7015: my $nav_error;
1.649 raeburn 7016: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
1.582 raeburn 7017: if ($nav_error) {
7018: $r->print(&navmap_errormsg());
7019: return(1,$currentphase);
7020: }
1.157 albertel 7021:
7022: my %found=('ids'=>{},'usernames'=>{});
7023: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7024: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7025: if ($line=~/^[\s\cz]*$/) { next; }
7026: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7027: $scan_data);
7028: my $id=$$scan_record{'scantron.ID'};
7029: my $found;
7030: foreach my $checkid (keys(%idmap)) {
7031: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
7032: }
7033: if ($found) {
7034: my $username=$idmap{$found};
7035: if ($found{'ids'}{$found}) {
7036: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7037: $line,'duplicateID',$found);
1.194 albertel 7038: return(1,$currentphase);
1.157 albertel 7039: } elsif ($found{'usernames'}{$username}) {
7040: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7041: $line,'duplicateID',$username);
1.194 albertel 7042: return(1,$currentphase);
1.157 albertel 7043: }
1.186 albertel 7044: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 7045: $found{'ids'}{$found}++;
7046: $found{'usernames'}{$username}++;
7047: } else {
7048: if ($id =~ /^\s*$/) {
1.158 albertel 7049: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 7050: if (defined($username) && $found{'usernames'}{$username}) {
7051: &scantron_get_correction($r,$i,$scan_record,
7052: \%scantron_config,
7053: $line,'duplicateID',$username);
1.194 albertel 7054: return(1,$currentphase);
1.157 albertel 7055: } elsif (!defined($username)) {
7056: &scantron_get_correction($r,$i,$scan_record,
7057: \%scantron_config,
7058: $line,'incorrectID');
1.194 albertel 7059: return(1,$currentphase);
1.157 albertel 7060: }
7061: $found{'usernames'}{$username}++;
7062: } else {
7063: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7064: $line,'incorrectID');
1.194 albertel 7065: return(1,$currentphase);
1.157 albertel 7066: }
7067: }
7068: }
7069:
7070: return (0,$currentphase+1);
7071: }
7072:
1.423 albertel 7073:
1.157 albertel 7074: sub scantron_get_correction {
7075: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
1.454 banghart 7076: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 7077: #to show both the current line and the previous one and allow skipping
7078: #the previous one or the current one
7079:
1.333 albertel 7080: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.658 bisitz 7081: $r->print(
7082: '<p class="LC_warning">'
7083: .&mt('An error was detected ([_1]) for PaperID [_2]',
7084: "<b>$error</b>",
7085: '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
7086: ."</p> \n");
1.157 albertel 7087: } else {
1.658 bisitz 7088: $r->print(
7089: '<p class="LC_warning">'
7090: .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
7091: "<b>$error</b>", $i, "<pre>$line</pre>")
7092: ."</p> \n");
7093: }
7094: my $message =
7095: '<p>'
7096: .&mt('The ID on the form is [_1]',
7097: "<tt>$$scan_record{'scantron.ID'}</tt>")
7098: .'<br />'
1.665 raeburn 7099: .&mt('The name on the paper is [_1], [_2]',
1.658 bisitz 7100: $$scan_record{'scantron.LastName'},
7101: $$scan_record{'scantron.FirstName'})
7102: .'</p>';
1.242 albertel 7103:
1.157 albertel 7104: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
7105: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503 raeburn 7106: # Array populated for doublebubble or
7107: my @lines_to_correct; # missingbubble errors to build javascript
7108: # to validate radio button checking
7109:
1.157 albertel 7110: if ($error =~ /ID$/) {
1.186 albertel 7111: if ($error eq 'incorrectID') {
1.658 bisitz 7112: $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
1.492 albertel 7113: "</p>\n");
1.157 albertel 7114: } elsif ($error eq 'duplicateID') {
1.658 bisitz 7115: $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 7116: }
1.242 albertel 7117: $r->print($message);
1.492 albertel 7118: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157 albertel 7119: $r->print("\n<ul><li> ");
7120: #FIXME it would be nice if this sent back the user ID and
7121: #could do partial userID matches
7122: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
7123: 'scantron_username','scantron_domain'));
7124: $r->print(": <input type='text' name='scantron_username' value='' />");
1.685 bisitz 7125: $r->print("\n:\n".
1.257 albertel 7126: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 7127:
7128: $r->print('</li>');
1.186 albertel 7129: } elsif ($error =~ /CODE$/) {
7130: if ($error eq 'incorrectCODE') {
1.658 bisitz 7131: $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186 albertel 7132: } elsif ($error eq 'duplicateCODE') {
1.658 bisitz 7133: $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 7134: }
1.658 bisitz 7135: $r->print("<p>".&mt('The CODE on the form is [_1]',
7136: "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
7137: ."</p>\n");
1.242 albertel 7138: $r->print($message);
1.658 bisitz 7139: $r->print("<p>".&mt("How should I handle this?")."</p>\n");
1.187 albertel 7140: $r->print("\n<br /> ");
1.194 albertel 7141: my $i=0;
1.273 albertel 7142: if ($error eq 'incorrectCODE'
7143: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 7144: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 7145: if ($closest > 0) {
7146: foreach my $testcode (@{$closest}) {
7147: my $checked='';
1.569 bisitz 7148: if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7149: $r->print("
7150: <label>
1.569 bisitz 7151: <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
1.492 albertel 7152: ".&mt("Use the similar CODE [_1] instead.",
7153: "<b><tt>".$testcode."</tt></b>")."
7154: </label>
7155: <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278 albertel 7156: $r->print("\n<br />");
7157: $i++;
7158: }
1.194 albertel 7159: }
7160: }
1.273 albertel 7161: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.569 bisitz 7162: my $checked; if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7163: $r->print("
7164: <label>
1.569 bisitz 7165: <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
1.659 raeburn 7166: ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
1.492 albertel 7167: "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
7168: </label>");
1.273 albertel 7169: $r->print("\n<br />");
7170: }
1.194 albertel 7171:
1.597 wenzelju 7172: $r->print(&Apache::lonhtmlcommon::scripttag(<<ENDSCRIPT));
1.188 albertel 7173: function change_radio(field) {
1.190 albertel 7174: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 7175: var i;
7176: for (i=0;i<slct.length;i++) {
7177: if (slct[i].value==field) { slct[i].checked=true; }
7178: }
7179: }
7180: ENDSCRIPT
1.187 albertel 7181: my $href="/adm/pickcode?".
1.359 www 7182: "form=".&escape("scantronupload").
7183: "&scantron_format=".&escape($env{'form.scantron_format'}).
7184: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
7185: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
7186: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 7187: if ($env{'form.scantron_CODElist'} =~ /\S/) {
1.492 albertel 7188: $r->print("
7189: <label>
7190: <input type='radio' name='scantron_CODE_resolution' value='use_found' />
7191: ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
7192: "<a target='_blank' href='$href'>","</a>")."
7193: </label>
1.558 bisitz 7194: ".&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 7195: $r->print("\n<br />");
7196: }
1.492 albertel 7197: $r->print("
7198: <label>
7199: <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
7200: ".&mt("Use [_1] as the CODE.",
7201: "</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 7202: $r->print("\n<br /><br />");
1.157 albertel 7203: } elsif ($error eq 'doublebubble') {
1.658 bisitz 7204: $r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497 foxr 7205:
7206: # The form field scantron_questions is acutally a list of line numbers.
7207: # represented by this form so:
7208:
7209: my $line_list = &questions_to_line_list($arg);
7210:
1.157 albertel 7211: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7212: $line_list.'" />');
1.242 albertel 7213: $r->print($message);
1.492 albertel 7214: $r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157 albertel 7215: foreach my $question (@{$arg}) {
1.503 raeburn 7216: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
7217: $scan_record, $error);
1.524 raeburn 7218: push(@lines_to_correct,@linenums);
1.157 albertel 7219: }
1.503 raeburn 7220: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7221: } elsif ($error eq 'missingbubble') {
1.658 bisitz 7222: $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 7223: $r->print($message);
1.492 albertel 7224: $r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503 raeburn 7225: $r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497 foxr 7226:
1.503 raeburn 7227: # The form field scantron_questions is actually a list of line numbers not
1.497 foxr 7228: # a list of question numbers. Therefore:
7229: #
7230:
7231: my $line_list = &questions_to_line_list($arg);
7232:
1.157 albertel 7233: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7234: $line_list.'" />');
1.157 albertel 7235: foreach my $question (@{$arg}) {
1.503 raeburn 7236: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
7237: $scan_record, $error);
1.524 raeburn 7238: push(@lines_to_correct,@linenums);
1.157 albertel 7239: }
1.503 raeburn 7240: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7241: } else {
7242: $r->print("\n<ul>");
7243: }
7244: $r->print("\n</li></ul>");
1.497 foxr 7245: }
7246:
1.503 raeburn 7247: sub verify_bubbles_checked {
7248: my (@ansnums) = @_;
7249: my $ansnumstr = join('","',@ansnums);
7250: my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
1.597 wenzelju 7251: my $output = &Apache::lonhtmlcommon::scripttag((<<ENDSCRIPT));
1.503 raeburn 7252: function verify_bubble_radio(form) {
7253: var ansnumArray = new Array ("$ansnumstr");
7254: var need_bubble_count = 0;
7255: for (var i=0; i<ansnumArray.length; i++) {
7256: if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
7257: var bubble_picked = 0;
7258: for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
7259: if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
7260: bubble_picked = 1;
7261: }
7262: }
7263: if (bubble_picked == 0) {
7264: need_bubble_count ++;
7265: }
7266: }
7267: }
7268: if (need_bubble_count) {
7269: alert("$warning");
7270: return;
7271: }
7272: form.submit();
7273: }
7274: ENDSCRIPT
7275: return $output;
7276: }
7277:
1.497 foxr 7278: =pod
7279:
7280: =item questions_to_line_list
1.157 albertel 7281:
1.497 foxr 7282: Converts a list of questions into a string of comma separated
7283: line numbers in the answer sheet used by the questions. This is
7284: used to fill in the scantron_questions form field.
7285:
7286: Arguments:
7287: questions - Reference to an array of questions.
7288:
7289: =cut
7290:
7291:
7292: sub questions_to_line_list {
7293: my ($questions) = @_;
7294: my @lines;
7295:
1.503 raeburn 7296: foreach my $item (@{$questions}) {
7297: my $question = $item;
7298: my ($first,$count,$last);
7299: if ($item =~ /^(\d+)\.(\d+)$/) {
7300: $question = $1;
7301: my $subquestion = $2;
7302: $first = $first_bubble_line{$question-1} + 1;
7303: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7304: my $subcount = 1;
7305: while ($subcount<$subquestion) {
7306: $first += $subans[$subcount-1];
7307: $subcount ++;
7308: }
7309: $count = $subans[$subquestion-1];
7310: } else {
7311: $first = $first_bubble_line{$question-1} + 1;
7312: $count = $bubble_lines_per_response{$question-1};
7313: }
1.506 raeburn 7314: $last = $first+$count-1;
1.503 raeburn 7315: push(@lines, ($first..$last));
1.497 foxr 7316: }
7317: return join(',', @lines);
7318: }
7319:
7320: =pod
7321:
7322: =item prompt_for_corrections
7323:
7324: Prompts for a potentially multiline correction to the
7325: user's bubbling (factors out common code from scantron_get_correction
7326: for multi and missing bubble cases).
7327:
7328: Arguments:
7329: $r - Apache request object.
7330: $question - The question number to prompt for.
7331: $scan_config - The scantron file configuration hash.
7332: $scan_record - Reference to the hash that has the the parsed scanlines.
1.503 raeburn 7333: $error - Type of error
1.497 foxr 7334:
7335: Implicit inputs:
7336: %bubble_lines_per_response - Starting line numbers for each question.
7337: Numbered from 0 (but question numbers are from
7338: 1.
7339: %first_bubble_line - Starting bubble line for each question.
1.509 raeburn 7340: %subdivided_bubble_lines - optionresponse, matchresponse and rankresponse
7341: type problems render as separate sub-questions,
1.503 raeburn 7342: in exam mode. This hash contains a
7343: comma-separated list of the lines per
7344: sub-question.
1.510 raeburn 7345: %responsetype_per_response - essayresponse, formularesponse,
7346: stringresponse, imageresponse, reactionresponse,
7347: and organicresponse type problem parts can have
1.503 raeburn 7348: multiple lines per response if the weight
7349: assigned exceeds 10. In this case, only
7350: one bubble per line is permitted, but more
7351: than one line might contain bubbles, e.g.
7352: bubbling of: line 1 - J, line 2 - J,
7353: line 3 - B would assign 22 points.
1.497 foxr 7354:
7355: =cut
7356:
7357: sub prompt_for_corrections {
1.503 raeburn 7358: my ($r, $question, $scan_config, $scan_record, $error) = @_;
7359: my ($current_line,$lines);
7360: my @linenums;
7361: my $questionnum = $question;
7362: if ($question =~ /^(\d+)\.(\d+)$/) {
7363: $question = $1;
7364: $current_line = $first_bubble_line{$question-1} + 1 ;
7365: my $subquestion = $2;
7366: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7367: my $subcount = 1;
7368: while ($subcount<$subquestion) {
7369: $current_line += $subans[$subcount-1];
7370: $subcount ++;
7371: }
7372: $lines = $subans[$subquestion-1];
7373: } else {
7374: $current_line = $first_bubble_line{$question-1} + 1 ;
7375: $lines = $bubble_lines_per_response{$question-1};
7376: }
1.497 foxr 7377: if ($lines > 1) {
1.503 raeburn 7378: $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
7379: if (($responsetype_per_response{$question-1} eq 'essayresponse') ||
7380: ($responsetype_per_response{$question-1} eq 'formularesponse') ||
1.510 raeburn 7381: ($responsetype_per_response{$question-1} eq 'stringresponse') ||
7382: ($responsetype_per_response{$question-1} eq 'imageresponse') ||
7383: ($responsetype_per_response{$question-1} eq 'reactionresponse') ||
7384: ($responsetype_per_response{$question-1} eq 'organicresponse')) {
1.684 bisitz 7385: $r->print(
7386: &mt("Although this particular question type requires handgrading, the instructions for this question in the bubblesheet exam directed students to leave [quant,_1,line] blank on their bubblesheets.",$lines)
7387: .'<br /><br />'
7388: .&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.')
7389: .'<br />'
7390: .&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.')
7391: .'<br />'
7392: .&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.")
7393: .'<br /><br />'
7394: );
1.503 raeburn 7395: } else {
7396: $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
7397: }
1.497 foxr 7398: }
7399: for (my $i =0; $i < $lines; $i++) {
1.503 raeburn 7400: my $selected = $$scan_record{"scantron.$current_line.answer"};
7401: &scantron_bubble_selector($r,$scan_config,$current_line,
7402: $questionnum,$error,split('', $selected));
1.524 raeburn 7403: push(@linenums,$current_line);
1.497 foxr 7404: $current_line++;
7405: }
7406: if ($lines > 1) {
7407: $r->print("<hr /><br />");
7408: }
1.503 raeburn 7409: return @linenums;
1.157 albertel 7410: }
1.423 albertel 7411:
7412: =pod
7413:
7414: =item scantron_bubble_selector
7415:
7416: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 7417: possibly showing the existing the selected bubbles if known
1.423 albertel 7418:
7419: Arguments:
7420: $r - Apache request object
7421: $scan_config - hash from &get_scantron_config()
1.497 foxr 7422: $line - Number of the line being displayed.
1.503 raeburn 7423: $questionnum - Question number (may include subquestion)
7424: $error - Type of error.
1.497 foxr 7425: @selected - Array of bubbles picked on this line.
1.423 albertel 7426:
7427: =cut
7428:
1.157 albertel 7429: sub scantron_bubble_selector {
1.503 raeburn 7430: my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157 albertel 7431: my $max=$$scan_config{'Qlength'};
1.274 albertel 7432:
7433: my $scmode=$$scan_config{'Qon'};
1.649 raeburn 7434: if ($scmode eq 'number' || $scmode eq 'letter') {
7435: if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
7436: ($$scan_config{'BubblesPerRow'} > 0)) {
7437: $max=$$scan_config{'BubblesPerRow'};
7438: if (($scmode eq 'number') && ($max > 10)) {
7439: $max = 10;
7440: } elsif (($scmode eq 'letter') && $max > 26) {
7441: $max = 26;
7442: }
7443: } else {
7444: $max = 10;
7445: }
7446: }
1.274 albertel 7447:
1.157 albertel 7448: my @alphabet=('A'..'Z');
1.503 raeburn 7449: $r->print(&Apache::loncommon::start_data_table().
7450: &Apache::loncommon::start_data_table_row());
7451: $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497 foxr 7452: for (my $i=0;$i<$max+1;$i++) {
7453: $r->print("\n".'<td align="center">');
7454: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
7455: else { $r->print(' '); }
7456: $r->print('</td>');
7457: }
1.503 raeburn 7458: $r->print(&Apache::loncommon::end_data_table_row().
7459: &Apache::loncommon::start_data_table_row());
1.497 foxr 7460: for (my $i=0;$i<$max;$i++) {
7461: $r->print("\n".
7462: '<td><label><input type="radio" name="scantron_correct_Q_'.
7463: $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
7464: }
1.503 raeburn 7465: my $nobub_checked = ' ';
7466: if ($error eq 'missingbubble') {
7467: $nobub_checked = ' checked = "checked" ';
7468: }
7469: $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
7470: $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
7471: '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
7472: $line.'" value="'.$questionnum.'" /></td>');
7473: $r->print(&Apache::loncommon::end_data_table_row().
7474: &Apache::loncommon::end_data_table());
1.157 albertel 7475: }
7476:
1.423 albertel 7477: =pod
7478:
7479: =item num_matches
7480:
1.424 albertel 7481: Counts the number of characters that are the same between the two arguments.
7482:
7483: Arguments:
7484: $orig - CODE from the scanline
7485: $code - CODE to match against
7486:
7487: Returns:
7488: $count - integer count of the number of same characters between the
7489: two arguments
7490:
1.423 albertel 7491: =cut
7492:
1.194 albertel 7493: sub num_matches {
7494: my ($orig,$code) = @_;
7495: my @code=split(//,$code);
7496: my @orig=split(//,$orig);
7497: my $same=0;
7498: for (my $i=0;$i<scalar(@code);$i++) {
7499: if ($code[$i] eq $orig[$i]) { $same++; }
7500: }
7501: return $same;
7502: }
7503:
1.423 albertel 7504: =pod
7505:
7506: =item scantron_get_closely_matching_CODEs
7507:
1.424 albertel 7508: Cycles through all CODEs and finds the set that has the greatest
7509: number of same characters as the provided CODE
7510:
7511: Arguments:
7512: $allcodes - hash ref returned by &get_codes()
7513: $CODE - CODE from the current scanline
7514:
7515: Returns:
7516: 2 element list
7517: - first elements is number of how closely matching the best fit is
7518: (5 means best set has 5 matching characters)
7519: - second element is an arrary ref containing the set of valid CODEs
7520: that best fit the passed in CODE
7521:
1.423 albertel 7522: =cut
7523:
1.194 albertel 7524: sub scantron_get_closely_matching_CODEs {
7525: my ($allcodes,$CODE)=@_;
7526: my @CODEs;
7527: foreach my $testcode (sort(keys(%{$allcodes}))) {
7528: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
7529: }
7530:
7531: return ($#CODEs,$CODEs[-1]);
7532: }
7533:
1.423 albertel 7534: =pod
7535:
7536: =item get_codes
7537:
1.424 albertel 7538: Builds a hash which has keys of all of the valid CODEs from the selected
7539: set of remembered CODEs.
7540:
7541: Arguments:
7542: $old_name - name of the set of remembered CODEs
7543: $cdom - domain of the course
7544: $cnum - internal course name
7545:
7546: Returns:
7547: %allcodes - keys are the valid CODEs, values are all 1
7548:
1.423 albertel 7549: =cut
7550:
1.194 albertel 7551: sub get_codes {
1.280 foxr 7552: my ($old_name, $cdom, $cnum) = @_;
7553: if (!$old_name) {
7554: $old_name=$env{'form.scantron_CODElist'};
7555: }
7556: if (!$cdom) {
7557: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
7558: }
7559: if (!$cnum) {
7560: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
7561: }
1.278 albertel 7562: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
7563: $cdom,$cnum);
7564: my %allcodes;
7565: if ($result{"type\0$old_name"} eq 'number') {
7566: %allcodes=map {($_,1)} split(',',$result{$old_name});
7567: } else {
7568: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
7569: }
1.194 albertel 7570: return %allcodes;
7571: }
7572:
1.423 albertel 7573: =pod
7574:
7575: =item scantron_validate_CODE
7576:
1.424 albertel 7577: Validates all scanlines in the selected file to not have any
7578: invalid or underspecified CODEs and that none of the codes are
7579: duplicated if this was requested.
7580:
1.423 albertel 7581: =cut
7582:
1.157 albertel 7583: sub scantron_validate_CODE {
7584: my ($r,$currentphase) = @_;
1.257 albertel 7585: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 7586: if ($scantron_config{'CODElocation'} &&
7587: $scantron_config{'CODEstart'} &&
7588: $scantron_config{'CODElength'}) {
1.257 albertel 7589: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 7590: &FIXME_blow_up()
7591: }
7592: } else {
7593: return (0,$currentphase+1);
7594: }
7595:
7596: my %usedCODEs;
7597:
1.194 albertel 7598: my %allcodes=&get_codes();
1.186 albertel 7599:
1.582 raeburn 7600: my $nav_error;
1.649 raeburn 7601: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
1.582 raeburn 7602: if ($nav_error) {
7603: $r->print(&navmap_errormsg());
7604: return(1,$currentphase);
7605: }
1.447 foxr 7606:
1.186 albertel 7607: my ($scanlines,$scan_data)=&scantron_getfile();
7608: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7609: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 7610: if ($line=~/^[\s\cz]*$/) { next; }
7611: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7612: $scan_data);
7613: my $CODE=$$scan_record{'scantron.CODE'};
7614: my $error=0;
1.224 albertel 7615: if (!&Apache::lonnet::validCODE($CODE)) {
7616: &scantron_get_correction($r,$i,$scan_record,
7617: \%scantron_config,
7618: $line,'incorrectCODE',\%allcodes);
7619: return(1,$currentphase);
7620: }
1.221 albertel 7621: if (%allcodes && !exists($allcodes{$CODE})
7622: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 7623: &scantron_get_correction($r,$i,$scan_record,
7624: \%scantron_config,
1.194 albertel 7625: $line,'incorrectCODE',\%allcodes);
7626: return(1,$currentphase);
1.186 albertel 7627: }
1.214 albertel 7628: if (exists($usedCODEs{$CODE})
1.257 albertel 7629: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 7630: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 7631: &scantron_get_correction($r,$i,$scan_record,
7632: \%scantron_config,
1.194 albertel 7633: $line,'duplicateCODE',$usedCODEs{$CODE});
7634: return(1,$currentphase);
1.186 albertel 7635: }
1.524 raeburn 7636: push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 7637: }
1.157 albertel 7638: return (0,$currentphase+1);
7639: }
7640:
1.423 albertel 7641: =pod
7642:
7643: =item scantron_validate_doublebubble
7644:
1.424 albertel 7645: Validates all scanlines in the selected file to not have any
7646: bubble lines with multiple bubbles marked.
7647:
1.423 albertel 7648: =cut
7649:
1.157 albertel 7650: sub scantron_validate_doublebubble {
7651: my ($r,$currentphase) = @_;
7652: #get student info
7653: my $classlist=&Apache::loncoursedata::get_classlist();
7654: my %idmap=&username_to_idmap($classlist);
7655:
7656: #get scantron line setup
1.257 albertel 7657: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7658: my ($scanlines,$scan_data)=&scantron_getfile();
1.583 raeburn 7659: my $nav_error;
1.649 raeburn 7660: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
1.583 raeburn 7661: if ($nav_error) {
7662: $r->print(&navmap_errormsg());
7663: return(1,$currentphase);
7664: }
1.447 foxr 7665:
1.157 albertel 7666: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7667: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7668: if ($line=~/^[\s\cz]*$/) { next; }
7669: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7670: $scan_data);
7671: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
7672: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
7673: 'doublebubble',
7674: $$scan_record{'scantron.doubleerror'});
7675: return (1,$currentphase);
7676: }
7677: return (0,$currentphase+1);
7678: }
7679:
1.423 albertel 7680:
1.503 raeburn 7681: sub scantron_get_maxbubble {
1.649 raeburn 7682: my ($nav_error,$scantron_config) = @_;
1.257 albertel 7683: if (defined($env{'form.scantron_maxbubble'}) &&
7684: $env{'form.scantron_maxbubble'}) {
1.447 foxr 7685: &restore_bubble_lines();
1.257 albertel 7686: return $env{'form.scantron_maxbubble'};
1.191 albertel 7687: }
1.330 albertel 7688:
1.447 foxr 7689: my (undef, undef, $sequence) =
1.257 albertel 7690: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 7691:
1.447 foxr 7692: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7693: unless (ref($navmap)) {
7694: if (ref($nav_error)) {
7695: $$nav_error = 1;
7696: }
1.591 raeburn 7697: return;
1.582 raeburn 7698: }
1.191 albertel 7699: my $map=$navmap->getResourceByUrl($sequence);
7700: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.649 raeburn 7701: my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
1.330 albertel 7702:
7703: &Apache::lonxml::clear_problem_counter();
7704:
1.557 raeburn 7705: my $uname = $env{'user.name'};
7706: my $udom = $env{'user.domain'};
1.435 foxr 7707: my $cid = $env{'request.course.id'};
7708: my $total_lines = 0;
7709: %bubble_lines_per_response = ();
1.447 foxr 7710: %first_bubble_line = ();
1.503 raeburn 7711: %subdivided_bubble_lines = ();
7712: %responsetype_per_response = ();
1.554 raeburn 7713:
1.447 foxr 7714: my $response_number = 0;
7715: my $bubble_line = 0;
1.191 albertel 7716: foreach my $resource (@resources) {
1.672 raeburn 7717: my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
7718: $udom,undef,$bubbles_per_row);
1.542 raeburn 7719: if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
7720: foreach my $part_id (@{$parts}) {
7721: my $lines;
7722:
7723: # TODO - make this a persistent hash not an array.
7724:
7725: # optionresponse, matchresponse and rankresponse type items
7726: # render as separate sub-questions in exam mode.
7727: if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
7728: ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
7729: ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
7730: my ($numbub,$numshown);
7731: if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
7732: if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
7733: $numbub = scalar(@{$analysis->{$part_id.'.options'}});
7734: }
7735: } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
7736: if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
7737: $numbub = scalar(@{$analysis->{$part_id.'.items'}});
7738: }
7739: } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
7740: if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
7741: $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
7742: }
7743: }
7744: if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
7745: $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
7746: }
1.649 raeburn 7747: my $bubbles_per_row =
7748: &bubblesheet_bubbles_per_row($scantron_config);
7749: my $inner_bubble_lines = int($numbub/$bubbles_per_row);
7750: if (($numbub % $bubbles_per_row) != 0) {
1.542 raeburn 7751: $inner_bubble_lines++;
7752: }
7753: for (my $i=0; $i<$numshown; $i++) {
7754: $subdivided_bubble_lines{$response_number} .=
7755: $inner_bubble_lines.',';
7756: }
7757: $subdivided_bubble_lines{$response_number} =~ s/,$//;
7758: $lines = $numshown * $inner_bubble_lines;
7759: } else {
7760: $lines = $analysis->{"$part_id.bubble_lines"};
1.649 raeburn 7761: }
1.542 raeburn 7762:
7763: $first_bubble_line{$response_number} = $bubble_line;
7764: $bubble_lines_per_response{$response_number} = $lines;
7765: $responsetype_per_response{$response_number} =
7766: $analysis->{$part_id.'.type'};
7767: $response_number++;
7768:
7769: $bubble_line += $lines;
7770: $total_lines += $lines;
7771: }
7772: }
7773: }
1.552 raeburn 7774: &Apache::lonnet::delenv('scantron.');
1.542 raeburn 7775:
7776: &save_bubble_lines();
7777: $env{'form.scantron_maxbubble'} =
7778: $total_lines;
7779: return $env{'form.scantron_maxbubble'};
7780: }
1.523 raeburn 7781:
1.649 raeburn 7782: sub bubblesheet_bubbles_per_row {
7783: my ($scantron_config) = @_;
7784: my $bubbles_per_row;
7785: if (ref($scantron_config) eq 'HASH') {
7786: $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
7787: }
7788: if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
7789: $bubbles_per_row = 10;
7790: }
7791: return $bubbles_per_row;
7792: }
7793:
1.157 albertel 7794: sub scantron_validate_missingbubbles {
7795: my ($r,$currentphase) = @_;
7796: #get student info
7797: my $classlist=&Apache::loncoursedata::get_classlist();
7798: my %idmap=&username_to_idmap($classlist);
7799:
7800: #get scantron line setup
1.257 albertel 7801: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7802: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7803: my $nav_error;
1.649 raeburn 7804: my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 7805: if ($nav_error) {
7806: return(1,$currentphase);
7807: }
1.157 albertel 7808: if (!$max_bubble) { $max_bubble=2**31; }
7809: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7810: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7811: if ($line=~/^[\s\cz]*$/) { next; }
7812: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7813: $scan_data);
7814: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
7815: my @to_correct;
1.470 foxr 7816:
7817: # Probably here's where the error is...
7818:
1.157 albertel 7819: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505 raeburn 7820: my $lastbubble;
7821: if ($missing =~ /^(\d+)\.(\d+)$/) {
7822: my $question = $1;
7823: my $subquestion = $2;
7824: if (!defined($first_bubble_line{$question -1})) { next; }
7825: my $first = $first_bubble_line{$question-1};
7826: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7827: my $subcount = 1;
7828: while ($subcount<$subquestion) {
7829: $first += $subans[$subcount-1];
7830: $subcount ++;
7831: }
7832: my $count = $subans[$subquestion-1];
7833: $lastbubble = $first + $count;
7834: } else {
7835: if (!defined($first_bubble_line{$missing - 1})) { next; }
7836: $lastbubble = $first_bubble_line{$missing - 1} + $bubble_lines_per_response{$missing - 1};
7837: }
7838: if ($lastbubble > $max_bubble) { next; }
1.157 albertel 7839: push(@to_correct,$missing);
7840: }
7841: if (@to_correct) {
7842: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7843: $line,'missingbubble',\@to_correct);
7844: return (1,$currentphase);
7845: }
7846:
7847: }
7848: return (0,$currentphase+1);
7849: }
7850:
1.663 raeburn 7851: sub hand_bubble_option {
7852: my (undef, undef, $sequence) =
7853: &Apache::lonnet::decode_symb($env{'form.selectpage'});
7854: return if ($sequence eq '');
7855: my $navmap = Apache::lonnavmaps::navmap->new();
7856: unless (ref($navmap)) {
7857: return;
7858: }
7859: my $needs_hand_bubbles;
7860: my $map=$navmap->getResourceByUrl($sequence);
7861: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
7862: foreach my $res (@resources) {
7863: if (ref($res)) {
7864: if ($res->is_problem()) {
7865: my $partlist = $res->parts();
7866: foreach my $part (@{ $partlist }) {
7867: my @types = $res->responseType($part);
7868: if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
7869: $needs_hand_bubbles = 1;
7870: last;
7871: }
7872: }
7873: }
7874: }
7875: }
7876: if ($needs_hand_bubbles) {
7877: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
7878: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
7879: return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
7880: &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 />').
7881: '<label><input type="radio" name="scantron_lastbubblepoints" value="'.$bubbles_per_row.'" checked="checked" />'.&mt('[quant,_1,point]',$bubbles_per_row).'</label> '.&mt('or').' '.
7882: '<label><input type="radio" name="scantron_lastbubblepoints" value="0"/>0 points</label></p>';
7883: }
7884: return;
7885: }
1.423 albertel 7886:
1.82 albertel 7887: sub scantron_process_students {
1.608 www 7888: my ($r,$symb) = @_;
1.513 foxr 7889:
1.257 albertel 7890: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.513 foxr 7891: if (!$symb) {
7892: return '';
7893: }
1.324 albertel 7894: my $default_form_data=&defaultFormData($symb);
1.82 albertel 7895:
1.257 albertel 7896: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.649 raeburn 7897: my $bubbles_per_row =
7898: &bubblesheet_bubbles_per_row(\%scantron_config);
1.157 albertel 7899: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 7900: my $classlist=&Apache::loncoursedata::get_classlist();
7901: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 7902: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7903: unless (ref($navmap)) {
7904: $r->print(&navmap_errormsg());
7905: return '';
7906: }
1.83 albertel 7907: my $map=$navmap->getResourceByUrl($sequence);
1.689 raeburn 7908: my ($randomorder,$randompick);
1.677 raeburn 7909: if (ref($map)) {
7910: $randomorder = $map->randomorder();
1.689 raeburn 7911: $randompick = $map->randompick();
1.677 raeburn 7912: }
1.83 albertel 7913: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.677 raeburn 7914: my (%grader_partids_by_symb,%grader_randomlists_by_symb,%ordered);
1.557 raeburn 7915: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
1.649 raeburn 7916: \%grader_randomlists_by_symb,$bubbles_per_row);
1.677 raeburn 7917: my ($resource_error,%symb_to_resource,@master_seq);
1.557 raeburn 7918: foreach my $resource (@resources) {
1.586 raeburn 7919: my $ressymb;
7920: if (ref($resource)) {
7921: $ressymb = $resource->symb();
1.677 raeburn 7922: push(@master_seq,$ressymb);
7923: $symb_to_resource{$ressymb} = $resource;
1.586 raeburn 7924: } else {
7925: $resource_error = 1;
7926: last;
7927: }
1.557 raeburn 7928: my ($analysis,$parts) =
7929: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672 raeburn 7930: $env{'user.name'},$env{'user.domain'},
7931: 1,$bubbles_per_row);
1.557 raeburn 7932: $grader_partids_by_symb{$ressymb} = $parts;
7933: if (ref($analysis) eq 'HASH') {
7934: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
7935: $grader_randomlists_by_symb{$ressymb} =
7936: $analysis->{'parts_withrandomlist'};
7937: }
7938: }
7939: }
1.586 raeburn 7940: if ($resource_error) {
7941: $r->print(&navmap_errormsg());
7942: return '';
7943: }
1.557 raeburn 7944:
1.554 raeburn 7945: my ($uname,$udom);
1.82 albertel 7946: my $result= <<SCANTRONFORM;
1.81 albertel 7947: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
7948: <input type="hidden" name="command" value="scantron_configphase" />
7949: $default_form_data
7950: SCANTRONFORM
1.82 albertel 7951: $r->print($result);
7952:
7953: my @delayqueue;
1.542 raeburn 7954: my (%completedstudents,%scandata);
1.140 albertel 7955:
1.520 www 7956: my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
1.200 albertel 7957: my $count=&get_todo_count($scanlines,$scan_data);
1.667 www 7958: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
7959: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.542 raeburn 7960: $r->print('<br />');
1.140 albertel 7961: my $start=&Time::HiRes::time();
1.158 albertel 7962: my $i=-1;
1.542 raeburn 7963: my $started;
1.447 foxr 7964:
1.582 raeburn 7965: my $nav_error;
1.649 raeburn 7966: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 7967: if ($nav_error) {
7968: $r->print(&navmap_errormsg());
7969: return '';
7970: }
7971:
1.513 foxr 7972: # If an ssi failed in scantron_get_maxbubble, put an error message out to
7973: # the user and return.
7974:
7975: if ($ssi_error) {
7976: $r->print("</form>");
7977: &ssi_print_error($r);
1.520 www 7978: &Apache::lonnet::remove_lock($lock);
1.513 foxr 7979: return ''; # Dunno why the other returns return '' rather than just returning.
7980: }
1.447 foxr 7981:
1.542 raeburn 7982: my %lettdig = &letter_to_digits();
7983: my $numletts = scalar(keys(%lettdig));
7984:
1.157 albertel 7985: while ($i<$scanlines->{'count'}) {
7986: ($uname,$udom)=('','');
7987: $i++;
1.200 albertel 7988: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7989: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 7990: if ($started) {
1.667 www 7991: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.200 albertel 7992: }
7993: $started=1;
1.157 albertel 7994: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7995: $scan_data);
7996: unless ($uname=&scantron_find_student($scan_record,$scan_data,
7997: \%idmap,$i)) {
7998: &scantron_add_delay(\@delayqueue,$line,
7999: 'Unable to find a student that matches',1);
8000: next;
8001: }
8002: if (exists $completedstudents{$uname}) {
8003: &scantron_add_delay(\@delayqueue,$line,
8004: 'Student '.$uname.' has multiple sheets',2);
8005: next;
8006: }
1.677 raeburn 8007: my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
8008: my $user = $uname.':'.$usec;
1.157 albertel 8009: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 8010:
1.677 raeburn 8011: my $scancode;
8012: if ((exists($scan_record->{'scantron.CODE'})) &&
8013: (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8014: $scancode = $scan_record->{'scantron.CODE'};
8015: } else {
8016: $scancode = '';
8017: }
8018:
8019: my @mapresources = @resources;
1.689 raeburn 8020: if ($randomorder || $randompick) {
1.678 raeburn 8021: @mapresources =
8022: &users_order($user,$scancode,$sequence,\@master_seq,\%ordered,
8023: \%symb_to_resource);
1.677 raeburn 8024: }
1.586 raeburn 8025: my (%partids_by_symb,$res_error);
1.677 raeburn 8026: foreach my $resource (@mapresources) {
1.586 raeburn 8027: my $ressymb;
8028: if (ref($resource)) {
8029: $ressymb = $resource->symb();
8030: } else {
8031: $res_error = 1;
8032: last;
8033: }
1.557 raeburn 8034: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8035: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
8036: my ($analysis,$parts) =
1.672 raeburn 8037: &scantron_partids_tograde($resource,$env{'request.course.id'},
8038: $uname,$udom,undef,$bubbles_per_row);
1.557 raeburn 8039: $partids_by_symb{$ressymb} = $parts;
8040: } else {
8041: $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
8042: }
1.554 raeburn 8043: }
8044:
1.586 raeburn 8045: if ($res_error) {
8046: &scantron_add_delay(\@delayqueue,$line,
8047: 'An error occurred while grading student '.$uname,2);
8048: next;
8049: }
8050:
1.330 albertel 8051: &Apache::lonxml::clear_problem_counter();
1.514 raeburn 8052: &Apache::lonnet::appenv($scan_record);
1.376 albertel 8053:
8054: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
8055: &scantron_putfile($scanlines,$scan_data);
8056: }
1.161 albertel 8057:
1.542 raeburn 8058: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677 raeburn 8059: \@mapresources,\%partids_by_symb,
1.649 raeburn 8060: $bubbles_per_row) eq 'ssi_error') {
1.542 raeburn 8061: $ssi_error = 0; # So end of handler error message does not trigger.
8062: $r->print("</form>");
8063: &ssi_print_error($r);
8064: &Apache::lonnet::remove_lock($lock);
8065: return ''; # Why return ''? Beats me.
8066: }
1.513 foxr 8067:
1.140 albertel 8068: $completedstudents{$uname}={'line'=>$line};
1.542 raeburn 8069: if ($env{'form.verifyrecord'}) {
8070: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
8071: my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8072: chomp($studentdata);
8073: $studentdata =~ s/\r$//;
8074: my $studentrecord = '';
8075: my $counter = -1;
1.677 raeburn 8076: foreach my $resource (@mapresources) {
1.554 raeburn 8077: my $ressymb = $resource->symb();
1.542 raeburn 8078: ($counter,my $recording) =
8079: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8080: $counter,$studentdata,$partids_by_symb{$ressymb},
1.542 raeburn 8081: \%scantron_config,\%lettdig,$numletts);
8082: $studentrecord .= $recording;
8083: }
8084: if ($studentrecord ne $studentdata) {
1.554 raeburn 8085: &Apache::lonxml::clear_problem_counter();
8086: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.677 raeburn 8087: \@mapresources,\%partids_by_symb,
1.649 raeburn 8088: $bubbles_per_row) eq 'ssi_error') {
1.554 raeburn 8089: $ssi_error = 0; # So end of handler error message does not trigger.
8090: $r->print("</form>");
8091: &ssi_print_error($r);
8092: &Apache::lonnet::remove_lock($lock);
8093: delete($completedstudents{$uname});
8094: return '';
8095: }
1.542 raeburn 8096: $counter = -1;
8097: $studentrecord = '';
1.677 raeburn 8098: foreach my $resource (@mapresources) {
1.554 raeburn 8099: my $ressymb = $resource->symb();
1.542 raeburn 8100: ($counter,my $recording) =
8101: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8102: $counter,$studentdata,$partids_by_symb{$ressymb},
1.542 raeburn 8103: \%scantron_config,\%lettdig,$numletts);
8104: $studentrecord .= $recording;
8105: }
8106: if ($studentrecord ne $studentdata) {
1.658 bisitz 8107: $r->print('<p><span class="LC_warning">');
1.542 raeburn 8108: if ($scancode eq '') {
1.658 bisitz 8109: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
1.542 raeburn 8110: $uname.':'.$udom,$scan_record->{'scantron.ID'}));
8111: } else {
1.658 bisitz 8112: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
1.542 raeburn 8113: $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
8114: }
8115: $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
8116: &Apache::loncommon::start_data_table_header_row()."\n".
8117: '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
8118: &Apache::loncommon::end_data_table_header_row()."\n".
8119: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8120: '<td>'.&mt('Bubblesheet').'</td>'.
8121: '<td><span class="LC_nobreak"><tt>'.$studentdata.'</tt></span></td>'.
1.542 raeburn 8122: &Apache::loncommon::end_data_table_row().
8123: &Apache::loncommon::start_data_table_row().
1.658 bisitz 8124: '<td>'.&mt('Stored submissions').'</td>'.
8125: '<td><span class="LC_nobreak"><tt>'.$studentrecord.'</tt></span></td>'."\n".
1.542 raeburn 8126: &Apache::loncommon::end_data_table_row().
8127: &Apache::loncommon::end_data_table().'</p>');
8128: } else {
8129: $r->print('<br /><span class="LC_warning">'.
8130: &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 />'.
8131: &mt("As a consequence, this user's submission history records two tries.").
8132: '</span><br />');
8133: }
8134: }
8135: }
1.543 raeburn 8136: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 8137: } continue {
1.330 albertel 8138: &Apache::lonxml::clear_problem_counter();
1.552 raeburn 8139: &Apache::lonnet::delenv('scantron.');
1.82 albertel 8140: }
1.140 albertel 8141: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.520 www 8142: &Apache::lonnet::remove_lock($lock);
1.172 albertel 8143: # my $lasttime = &Time::HiRes::time()-$start;
8144: # $r->print("<p>took $lasttime</p>");
1.140 albertel 8145:
1.200 albertel 8146: $r->print("</form>");
1.157 albertel 8147: return '';
1.75 albertel 8148: }
1.157 albertel 8149:
1.557 raeburn 8150: sub graders_resources_pass {
1.649 raeburn 8151: my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
8152: $bubbles_per_row) = @_;
1.557 raeburn 8153: if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) &&
8154: (ref($grader_randomlists_by_symb) eq 'HASH')) {
8155: foreach my $resource (@{$resources}) {
8156: my $ressymb = $resource->symb();
8157: my ($analysis,$parts) =
8158: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.672 raeburn 8159: $env{'user.name'},$env{'user.domain'},
8160: 1,$bubbles_per_row);
1.557 raeburn 8161: $grader_partids_by_symb->{$ressymb} = $parts;
8162: if (ref($analysis) eq 'HASH') {
8163: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
8164: $grader_randomlists_by_symb->{$ressymb} =
8165: $analysis->{'parts_withrandomlist'};
8166: }
8167: }
8168: }
8169: }
8170: return;
8171: }
8172:
1.678 raeburn 8173: =pod
8174:
8175: =item users_order
8176:
8177: Returns array of resources in current map, ordered based on either CODE,
8178: if this is a CODEd exam, or based on student's identity if this is a
8179: "NAMEd" exam.
8180:
8181: Should be used when randomorder applied when the corresponding exam was
8182: printed, prior to students completing bubblesheets for the version of the
8183: exam the student received.
8184:
8185: =cut
8186:
8187: sub users_order {
8188: my ($user,$scancode,$mapurl,$master_seq,$ordered,$symb_to_resource) = @_;
8189: my @mapresources;
8190: unless ((ref($ordered) eq 'HASH') && (ref($symb_to_resource) eq 'HASH')) {
8191: return @mapresources;
8192: }
8193: if (($scancode) && (ref($ordered->{$scancode}) eq 'ARRAY')) {
8194: @mapresources = @{$ordered->{$scancode}};
8195: } elsif ($scancode) {
8196: $env{'form.CODE'} = $scancode;
8197: my $actual_seq =
8198: &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8199: $master_seq,
1.688 raeburn 8200: $user,$scancode,1);
1.678 raeburn 8201: if (ref($actual_seq) eq 'ARRAY') {
8202: @{$ordered->{$scancode}} =
8203: map { $symb_to_resource->{$_}; } @{$actual_seq};
8204: @mapresources = @{$ordered->{$scancode}};
8205: }
8206: delete($env{'form.CODE'});
8207: } else {
8208: my $actual_seq =
8209: &Apache::lonprintout::master_seq_to_person_seq($mapurl,
8210: $master_seq,
1.688 raeburn 8211: $user,undef,1);
1.678 raeburn 8212: if (ref($actual_seq) eq 'ARRAY') {
8213: @mapresources =
8214: map { $symb_to_resource->{$_}; } @{$actual_seq};
8215: }
8216: }
8217: return @mapresources;
8218: }
8219:
1.542 raeburn 8220: sub grade_student_bubbles {
1.677 raeburn 8221: my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row) = @_;
1.554 raeburn 8222: if (ref($resources) eq 'ARRAY') {
8223: my $count = 0;
8224: foreach my $resource (@{$resources}) {
8225: my $ressymb = $resource->symb();
8226: my %form = ('submitted' => 'scantron',
8227: 'grade_target' => 'grade',
8228: 'grade_username' => $uname,
8229: 'grade_domain' => $udom,
8230: 'grade_courseid' => $env{'request.course.id'},
8231: 'grade_symb' => $ressymb,
8232: 'CODE' => $scancode
8233: );
1.649 raeburn 8234: if ($bubbles_per_row ne '') {
8235: $form{'bubbles_per_row'} = $bubbles_per_row;
8236: }
1.663 raeburn 8237: if ($env{'form.scantron_lastbubblepoints'} ne '') {
8238: $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
8239: }
1.554 raeburn 8240: if (ref($parts) eq 'HASH') {
8241: if (ref($parts->{$ressymb}) eq 'ARRAY') {
8242: foreach my $part (@{$parts->{$ressymb}}) {
8243: $form{'scantron_questnum_start.'.$part} =
8244: 1+$env{'form.scantron.first_bubble_line.'.$count};
8245: $count++;
8246: }
8247: }
8248: }
8249: my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
8250: return 'ssi_error' if ($ssi_error);
8251: last if (&Apache::loncommon::connection_aborted($r));
8252: }
1.542 raeburn 8253: }
8254: return;
8255: }
8256:
1.157 albertel 8257: sub scantron_upload_scantron_data {
1.608 www 8258: my ($r,$symb)=@_;
1.565 raeburn 8259: my $dom = $env{'request.role.domain'};
8260: my $domdesc = &Apache::lonnet::domain($dom,'description');
8261: $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
1.157 albertel 8262: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 8263: 'domainid',
1.565 raeburn 8264: 'coursename',$dom);
8265: my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
8266: (' 'x2).&mt('(shows course personnel)');
1.608 www 8267: my $default_form_data=&defaultFormData($symb);
1.579 raeburn 8268: my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
8269: 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 8270: $r->print(&Apache::lonhtmlcommon::scripttag('
1.157 albertel 8271: function checkUpload(formname) {
8272: if (formname.upfile.value == "") {
1.579 raeburn 8273: alert("'.$nofile_alert.'");
1.157 albertel 8274: return false;
8275: }
1.565 raeburn 8276: if (formname.courseid.value == "") {
1.579 raeburn 8277: alert("'.$nocourseid_alert.'");
1.565 raeburn 8278: return false;
8279: }
1.157 albertel 8280: formname.submit();
8281: }
1.565 raeburn 8282:
8283: function ToSyllabus() {
8284: var cdom = '."'$dom'".';
8285: var cnum = document.rules.courseid.value;
8286: if (cdom == "" || cdom == null) {
8287: return;
8288: }
8289: if (cnum == "" || cnum == null) {
8290: return;
8291: }
8292: syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
8293: "height=350,width=350,scrollbars=yes,menubar=no");
8294: return;
8295: }
8296:
1.597 wenzelju 8297: '));
8298: $r->print('
1.648 bisitz 8299: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
1.566 raeburn 8300:
1.492 albertel 8301: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
1.565 raeburn 8302: '.$default_form_data.
8303: &Apache::lonhtmlcommon::start_pick_box().
8304: &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
8305: '<input name="courseid" type="text" size="30" />'.$select_link.
8306: &Apache::lonhtmlcommon::row_closure().
8307: &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
8308: '<input name="coursename" type="text" size="30" />'.$syllabuslink.
8309: &Apache::lonhtmlcommon::row_closure().
8310: &Apache::lonhtmlcommon::row_title(&mt('Domain')).
8311: '<input name="domainid" type="hidden" />'.$domdesc.
8312: &Apache::lonhtmlcommon::row_closure().
8313: &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
8314: '<input type="file" name="upfile" size="50" />'.
8315: &Apache::lonhtmlcommon::row_closure(1).
8316: &Apache::lonhtmlcommon::end_pick_box().'<br />
8317:
1.492 albertel 8318: <input name="command" value="scantronupload_save" type="hidden" />
1.589 bisitz 8319: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
1.157 albertel 8320: </form>
1.492 albertel 8321: ');
1.157 albertel 8322: return '';
8323: }
8324:
1.423 albertel 8325:
1.157 albertel 8326: sub scantron_upload_scantron_data_save {
1.608 www 8327: my($r,$symb)=@_;
1.182 albertel 8328: my $doanotherupload=
8329: '<br /><form action="/adm/grades" method="post">'."\n".
8330: '<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492 albertel 8331: '<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182 albertel 8332: '</form>'."\n";
1.257 albertel 8333: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 8334: !&Apache::lonnet::allowed('usc',
1.257 albertel 8335: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.575 www 8336: $r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
1.614 www 8337: unless ($symb) {
1.182 albertel 8338: $r->print($doanotherupload);
8339: }
1.162 albertel 8340: return '';
8341: }
1.257 albertel 8342: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.568 raeburn 8343: my $uploadedfile;
1.567 raeburn 8344: $r->print('<h3>'.&mt("Uploading file to [_1]",$coursedata{'description'}).'</h3>');
1.257 albertel 8345: if (length($env{'form.upfile'}) < 2) {
1.568 raeburn 8346: $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 8347: } else {
1.568 raeburn 8348: my $result =
8349: &Apache::lonnet::userfileupload('upfile','','scantron','','','',
8350: $env{'form.courseid'},$env{'form.domainid'});
8351: if ($result =~ m{^/uploaded/}) {
1.567 raeburn 8352: $r->print(&mt('[_1]Success:[_2] Successfully uploaded [_3] bytes of data into location: [_4]',
8353: '<span class="LC_success">','</span>',(length($env{'form.upfile'})-1),
8354: '<span class="LC_filename">'.$result.'</span>'));
1.568 raeburn 8355: ($uploadedfile) = ($result =~ m{/([^/]+)$});
1.567 raeburn 8356: $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
1.568 raeburn 8357: $env{'form.courseid'},$uploadedfile));
1.210 albertel 8358: } else {
1.567 raeburn 8359: $r->print(&mt('[_1]Error:[_2] An error ([_3]) occurred when attempting to upload the file, [_4]',
8360: '<span class="LC_error">','</span>',$result,
1.568 raeburn 8361: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183 albertel 8362: }
8363: }
1.174 albertel 8364: if ($symb) {
1.612 www 8365: $r->print(&scantron_selectphase($r,$uploadedfile,$symb));
1.174 albertel 8366: } else {
1.182 albertel 8367: $r->print($doanotherupload);
1.174 albertel 8368: }
1.157 albertel 8369: return '';
8370: }
8371:
1.567 raeburn 8372: sub validate_uploaded_scantron_file {
8373: my ($cdom,$cname,$fname) = @_;
8374: my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
8375: my @lines;
8376: if ($scanlines ne '-1') {
8377: @lines=split("\n",$scanlines,-1);
8378: }
8379: my $output;
8380: if (@lines) {
8381: my (%counts,$max_match_format);
8382: my ($max_match_count,$max_match_pct) = (0,0);
8383: my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
8384: my %idmap = &username_to_idmap($classlist);
8385: foreach my $key (keys(%idmap)) {
8386: my $lckey = lc($key);
8387: $idmap{$lckey} = $idmap{$key};
8388: }
8389: my %unique_formats;
8390: my @formatlines = &get_scantronformat_file();
8391: foreach my $line (@formatlines) {
8392: chomp($line);
8393: my @config = split(/:/,$line);
8394: my $idstart = $config[5];
8395: my $idlength = $config[6];
8396: if (($idstart ne '') && ($idlength > 0)) {
8397: if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
8398: push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]);
8399: } else {
8400: $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
8401: }
8402: }
8403: }
8404: foreach my $key (keys(%unique_formats)) {
8405: my ($idstart,$idlength) = split(':',$key);
8406: %{$counts{$key}} = (
8407: 'found' => 0,
8408: 'total' => 0,
8409: );
8410: foreach my $line (@lines) {
8411: next if ($line =~ /^#/);
8412: next if ($line =~ /^[\s\cz]*$/);
8413: my $id = substr($line,$idstart-1,$idlength);
8414: $id = lc($id);
8415: if (exists($idmap{$id})) {
8416: $counts{$key}{'found'} ++;
8417: }
8418: $counts{$key}{'total'} ++;
8419: }
8420: if ($counts{$key}{'total'}) {
8421: my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
8422: if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
8423: $max_match_pct = $percent_match;
8424: $max_match_format = $key;
8425: $max_match_count = $counts{$key}{'total'};
8426: }
8427: }
8428: }
8429: if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
8430: my $format_descs;
8431: my $numwithformat = @{$unique_formats{$max_match_format}};
8432: for (my $i=0; $i<$numwithformat; $i++) {
8433: my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
8434: if ($i<$numwithformat-2) {
8435: $format_descs .= '"<i>'.$desc.'</i>", ';
8436: } elsif ($i==$numwithformat-2) {
8437: $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
8438: } elsif ($i==$numwithformat-1) {
8439: $format_descs .= '"<i>'.$desc.'</i>"';
8440: }
8441: }
8442: my $showpct = sprintf("%.0f",$max_match_pct).'%';
8443: $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).
8444: '<br />'.&mt('A low percentage of matches results from one of the following:').'<ul>'.
8445: '<li>'.&mt('The file was uploaded to the wrong course').'</li>'.
8446: '<li>'.&mt('The data are not in the format expected for the domain: [_1]',
8447: '<i>'.$cdom.'</i>').'</li>'.
8448: '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
8449: '<li>'.&mt('The course roster is not up to date').'</li>'.
8450: '</ul>';
8451: }
8452: } else {
8453: $output = '<span class="LC_warning">'.&mt('Uploaded file contained no data').'</span>';
8454: }
8455: return $output;
8456: }
8457:
1.202 albertel 8458: sub valid_file {
8459: my ($requested_file)=@_;
8460: foreach my $filename (sort(&scantron_filenames())) {
8461: if ($requested_file eq $filename) { return 1; }
8462: }
8463: return 0;
8464: }
8465:
8466: sub scantron_download_scantron_data {
1.608 www 8467: my ($r,$symb)=@_;
8468: my $default_form_data=&defaultFormData($symb);
1.257 albertel 8469: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
8470: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
8471: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 8472: if (! &valid_file($file)) {
1.492 albertel 8473: $r->print('
1.202 albertel 8474: <p>
1.686 bisitz 8475: '.&mt('The requested filename was invalid.').'
1.202 albertel 8476: </p>
1.492 albertel 8477: ');
1.202 albertel 8478: return;
8479: }
8480: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
8481: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
8482: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
8483: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
8484: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
8485: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492 albertel 8486: $r->print('
1.202 albertel 8487: <p>
1.492 albertel 8488: '.&mt('[_1]Original[_2] file as uploaded by the scantron office.',
8489: '<a href="'.$orig.'">','</a>').'
1.202 albertel 8490: </p>
8491: <p>
1.492 albertel 8492: '.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
8493: '<a href="'.$corrected.'">','</a>').'
1.202 albertel 8494: </p>
8495: <p>
1.492 albertel 8496: '.&mt('[_1]Skipped[_2], a file of records that were skipped.',
8497: '<a href="'.$skipped.'">','</a>').'
1.202 albertel 8498: </p>
1.492 albertel 8499: ');
1.202 albertel 8500: return '';
8501: }
1.157 albertel 8502:
1.523 raeburn 8503: sub checkscantron_results {
1.608 www 8504: my ($r,$symb) = @_;
1.523 raeburn 8505: if (!$symb) {return '';}
8506: my $cid = $env{'request.course.id'};
1.542 raeburn 8507: my %lettdig = &letter_to_digits();
1.523 raeburn 8508: my $numletts = scalar(keys(%lettdig));
8509: my $cnum = $env{'course.'.$cid.'.num'};
8510: my $cdom = $env{'course.'.$cid.'.domain'};
8511: my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
8512: my %record;
8513: my %scantron_config =
8514: &Apache::grades::get_scantron_config($env{'form.scantron_format'});
1.649 raeburn 8515: my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.523 raeburn 8516: my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
8517: my $classlist=&Apache::loncoursedata::get_classlist();
8518: my %idmap=&Apache::grades::username_to_idmap($classlist);
8519: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8520: unless (ref($navmap)) {
8521: $r->print(&navmap_errormsg());
8522: return '';
8523: }
1.523 raeburn 8524: my $map=$navmap->getResourceByUrl($sequence);
1.689 raeburn 8525: my ($randomorder,$randompick,@master_seq,%symb_to_resource);
1.677 raeburn 8526: if (ref($map)) {
8527: $randomorder=$map->randomorder();
1.689 raeburn 8528: $randompick=$map->randompick();
1.677 raeburn 8529: }
1.557 raeburn 8530: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.678 raeburn 8531: foreach my $resource (@resources) {
8532: if (ref($resource)) {
8533: my $ressymb = $resource->symb();
8534: push(@master_seq,$ressymb);
8535: $symb_to_resource{$ressymb} = $resource;
8536: }
8537: }
1.557 raeburn 8538: my (%grader_partids_by_symb,%grader_randomlists_by_symb);
1.673 raeburn 8539: &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8540: \%grader_randomlists_by_symb,$bubbles_per_row);
1.554 raeburn 8541: my ($uname,$udom);
1.523 raeburn 8542: my (%scandata,%lastname,%bylast);
8543: $r->print('
8544: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
8545:
8546: my @delayqueue;
8547: my %completedstudents;
8548:
8549: my $count=&Apache::grades::get_todo_count($scanlines,$scan_data);
1.667 www 8550: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1.678 raeburn 8551: my ($username,$domain,$started,%ordered);
1.582 raeburn 8552: my $nav_error;
1.649 raeburn 8553: &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 8554: if ($nav_error) {
8555: $r->print(&navmap_errormsg());
8556: return '';
8557: }
1.523 raeburn 8558:
1.667 www 8559: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,'Processing first student');
1.523 raeburn 8560: my $start=&Time::HiRes::time();
8561: my $i=-1;
8562:
8563: while ($i<$scanlines->{'count'}) {
8564: ($username,$domain,$uname)=('','','');
8565: $i++;
8566: my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
8567: if ($line=~/^[\s\cz]*$/) { next; }
8568: if ($started) {
1.667 www 8569: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,'last student');
1.523 raeburn 8570: }
8571: $started=1;
8572: my $scan_record=
8573: &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
8574: $scan_data);
8575: unless ($uname=&Apache::grades::scantron_find_student($scan_record,$scan_data,
8576: \%idmap,$i)) {
8577: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
8578: 'Unable to find a student that matches',1);
8579: next;
8580: }
8581: if (exists $completedstudents{$uname}) {
8582: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
8583: 'Student '.$uname.' has multiple sheets',2);
8584: next;
8585: }
8586: my $pid = $scan_record->{'scantron.ID'};
8587: $lastname{$pid} = $scan_record->{'scantron.LastName'};
8588: push(@{$bylast{$lastname{$pid}}},$pid);
8589: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
8590: $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8591: chomp($scandata{$pid});
8592: $scandata{$pid} =~ s/\r$//;
1.678 raeburn 8593: my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
8594: my $user = $uname.':'.$usec;
1.523 raeburn 8595: ($username,$domain)=split(/:/,$uname);
1.677 raeburn 8596:
1.678 raeburn 8597: my $scancode;
1.677 raeburn 8598: if ((exists($scan_record->{'scantron.CODE'})) &&
8599: (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8600: $scancode = $scan_record->{'scantron.CODE'};
8601: } else {
8602: $scancode = '';
8603: }
8604:
8605: my @mapresources = @resources;
1.689 raeburn 8606: if ($randomorder || $randompick) {
1.678 raeburn 8607: @mapresources =
8608: &users_order($user,$scancode,$sequence,\@master_seq,\%ordered,
8609: \%symb_to_resource);
1.677 raeburn 8610: }
1.523 raeburn 8611: my $counter = -1;
1.677 raeburn 8612: foreach my $resource (@mapresources) {
1.557 raeburn 8613: my $parts;
1.554 raeburn 8614: my $ressymb = $resource->symb();
1.557 raeburn 8615: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8616: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
8617: (my $analysis,$parts) =
1.672 raeburn 8618: &scantron_partids_tograde($resource,$env{'request.course.id'},
8619: $username,$domain,undef,
8620: $bubbles_per_row);
1.557 raeburn 8621: } else {
8622: $parts = $grader_partids_by_symb{$ressymb};
8623: }
1.542 raeburn 8624: ($counter,my $recording) =
8625: &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
1.554 raeburn 8626: $scandata{$pid},$parts,
1.542 raeburn 8627: \%scantron_config,\%lettdig,$numletts);
8628: $record{$pid} .= $recording;
1.523 raeburn 8629: }
8630: }
8631: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
8632: $r->print('<br />');
8633: my ($okstudents,$badstudents,$numstudents,$passed,$failed);
8634: $passed = 0;
8635: $failed = 0;
8636: $numstudents = 0;
8637: foreach my $last (sort(keys(%bylast))) {
8638: if (ref($bylast{$last}) eq 'ARRAY') {
8639: foreach my $pid (sort(@{$bylast{$last}})) {
8640: my $showscandata = $scandata{$pid};
8641: my $showrecord = $record{$pid};
8642: $showscandata =~ s/\s/ /g;
8643: $showrecord =~ s/\s/ /g;
8644: if ($scandata{$pid} eq $record{$pid}) {
8645: my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
8646: $okstudents .= '<tr class="'.$css_class.'">'.
1.581 www 8647: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
1.523 raeburn 8648: '</tr>'."\n".
8649: '<tr class="'.$css_class.'">'."\n".
8650: '<td>Submissions</td><td>'.$showrecord.'</td></tr>'."\n";
8651: $passed ++;
8652: } else {
8653: my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
1.581 www 8654: $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 8655: '</tr>'."\n".
8656: '<tr class="'.$css_class.'">'."\n".
8657: '<td>Submissions</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
8658: '</tr>'."\n";
8659: $failed ++;
8660: }
8661: $numstudents ++;
8662: }
8663: }
8664: }
1.648 bisitz 8665: $r->print(
8666: '<p>'
8667: .&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).',
8668: '<b>',
8669: $numstudents,
8670: '</b>',
8671: $env{'form.scantron_maxbubble'})
8672: .'</p>'
8673: );
1.682 raeburn 8674: $r->print('<p>'
1.683 raeburn 8675: .&mt('Exact matches for [_1][quant,_2,student][_3].','<b>',$passed,'</b>')
1.682 raeburn 8676: .'<br />'
8677: .&mt('Discrepancies detected for [_1][quant,_2,student][_3].','<b>',$failed,'</b>')
8678: .'</p>'
8679: );
1.523 raeburn 8680: if ($passed) {
1.572 www 8681: $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 8682: $r->print(&Apache::loncommon::start_data_table()."\n".
8683: &Apache::loncommon::start_data_table_header_row()."\n".
8684: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
8685: &Apache::loncommon::end_data_table_header_row()."\n".
8686: $okstudents."\n".
8687: &Apache::loncommon::end_data_table().'<br />');
8688: }
8689: if ($failed) {
1.572 www 8690: $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 8691: $r->print(&Apache::loncommon::start_data_table()."\n".
8692: &Apache::loncommon::start_data_table_header_row()."\n".
8693: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
8694: &Apache::loncommon::end_data_table_header_row()."\n".
8695: $badstudents."\n".
8696: &Apache::loncommon::end_data_table()).'<br />'.
1.572 www 8697: &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 8698: }
1.614 www 8699: $r->print('</form><br />');
1.523 raeburn 8700: return;
8701: }
8702:
1.542 raeburn 8703: sub verify_scantron_grading {
1.554 raeburn 8704: my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
1.542 raeburn 8705: $scantron_config,$lettdig,$numletts) = @_;
8706: my ($record,%expected,%startpos);
8707: return ($counter,$record) if (!ref($resource));
8708: return ($counter,$record) if (!$resource->is_problem());
8709: my $symb = $resource->symb();
1.554 raeburn 8710: return ($counter,$record) if (ref($partids) ne 'ARRAY');
8711: foreach my $part_id (@{$partids}) {
1.542 raeburn 8712: $counter ++;
8713: $expected{$part_id} = 0;
8714: if ($env{"form.scantron.sub_bubblelines.$counter"}) {
8715: my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$counter"});
8716: foreach my $item (@sub_lines) {
8717: $expected{$part_id} += $item;
8718: }
8719: } else {
8720: $expected{$part_id} = $env{"form.scantron.bubblelines.$counter"};
8721: }
8722: $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
8723: }
8724: if ($symb) {
8725: my %recorded;
8726: my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
8727: if ($returnhash{'version'}) {
8728: my %lasthash=();
8729: my $version;
8730: for ($version=1;$version<=$returnhash{'version'};$version++) {
8731: foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
8732: $lasthash{$key}=$returnhash{$version.':'.$key};
8733: }
8734: }
8735: foreach my $key (keys(%lasthash)) {
8736: if ($key =~ /\.scantron$/) {
8737: my $value = &unescape($lasthash{$key});
8738: my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
8739: if ($value eq '') {
8740: for (my $i=0; $i<$expected{$part_id}; $i++) {
8741: for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
8742: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8743: }
8744: }
8745: } else {
8746: my @tocheck;
8747: my @items = split(//,$value);
8748: if (($scantron_config->{'Qon'} eq 'letter') ||
8749: ($scantron_config->{'Qon'} eq 'number')) {
8750: if (@items < $expected{$part_id}) {
8751: my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
8752: my @singles = split(//,$fragment);
8753: foreach my $pos (@singles) {
8754: if ($pos eq ' ') {
8755: push(@tocheck,$pos);
8756: } else {
8757: my $next = shift(@items);
8758: push(@tocheck,$next);
8759: }
8760: }
8761: } else {
8762: @tocheck = @items;
8763: }
8764: foreach my $letter (@tocheck) {
8765: if ($scantron_config->{'Qon'} eq 'letter') {
8766: if ($letter !~ /^[A-J]$/) {
8767: $letter = $scantron_config->{'Qoff'};
8768: }
8769: $recorded{$part_id} .= $letter;
8770: } elsif ($scantron_config->{'Qon'} eq 'number') {
8771: my $digit;
8772: if ($letter !~ /^[A-J]$/) {
8773: $digit = $scantron_config->{'Qoff'};
8774: } else {
8775: $digit = $lettdig->{$letter};
8776: }
8777: $recorded{$part_id} .= $digit;
8778: }
8779: }
8780: } else {
8781: @tocheck = @items;
8782: for (my $i=0; $i<$expected{$part_id}; $i++) {
8783: my $curr_sub = shift(@tocheck);
8784: my $digit;
8785: if ($curr_sub =~ /^[A-J]$/) {
8786: $digit = $lettdig->{$curr_sub}-1;
8787: }
8788: if ($curr_sub eq 'J') {
8789: $digit += scalar($numletts);
8790: }
8791: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
8792: if ($j == $digit) {
8793: $recorded{$part_id} .= $scantron_config->{'Qon'};
8794: } else {
8795: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8796: }
8797: }
8798: }
8799: }
8800: }
8801: }
8802: }
8803: }
1.554 raeburn 8804: foreach my $part_id (@{$partids}) {
1.542 raeburn 8805: if ($recorded{$part_id} eq '') {
8806: for (my $i=0; $i<$expected{$part_id}; $i++) {
8807: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
8808: $recorded{$part_id} .= $scantron_config->{'Qoff'};
8809: }
8810: }
8811: }
8812: $record .= $recorded{$part_id};
8813: }
8814: }
8815: return ($counter,$record);
8816: }
8817:
8818: sub letter_to_digits {
8819: my %lettdig = (
8820: A => 1,
8821: B => 2,
8822: C => 3,
8823: D => 4,
8824: E => 5,
8825: F => 6,
8826: G => 7,
8827: H => 8,
8828: I => 9,
8829: J => 0,
8830: );
8831: return %lettdig;
8832: }
8833:
1.423 albertel 8834:
1.75 albertel 8835: #-------- end of section for handling grading scantron forms -------
8836: #
8837: #-------------------------------------------------------------------
8838:
1.72 ng 8839: #-------------------------- Menu interface -------------------------
8840: #
1.614 www 8841: #--- Href with symb and command ---
8842:
8843: sub href_symb_cmd {
8844: my ($symb,$cmd)=@_;
1.669 raeburn 8845: return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&command='.$cmd;
1.72 ng 8846: }
8847:
1.443 banghart 8848: sub grading_menu {
1.608 www 8849: my ($request,$symb) = @_;
1.443 banghart 8850: if (!$symb) {return '';}
8851:
8852: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
1.618 www 8853: 'command'=>'individual');
1.538 schulted 8854:
1.598 www 8855: my $url1a = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
8856:
8857: $fields{'command'}='ungraded';
8858: my $url1b=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8859:
8860: $fields{'command'}='table';
8861: my $url1c=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8862:
8863: $fields{'command'}='all_for_one';
8864: my $url1d=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8865:
1.621 www 8866: $fields{'command'}='downloadfilesselect';
8867: my $url1e=&Apache::lonhtmlcommon::build_url('grades/',\%fields);
8868:
1.443 banghart 8869: $fields{'command'} = 'csvform';
1.538 schulted 8870: my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
8871:
1.443 banghart 8872: $fields{'command'} = 'processclicker';
1.538 schulted 8873: my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
8874:
1.443 banghart 8875: $fields{'command'} = 'scantron_selectphase';
1.538 schulted 8876: my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.602 www 8877:
8878: $fields{'command'} = 'initialverifyreceipt';
8879: my $url5 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.538 schulted 8880:
1.598 www 8881: my @menu = ({ categorytitle=>'Hand Grading',
1.538 schulted 8882: items =>[
1.598 www 8883: { linktext => 'Select individual students to grade',
8884: url => $url1a,
1.538 schulted 8885: permission => 'F',
1.636 wenzelju 8886: icon => 'grade_students.png',
1.598 www 8887: linktitle => 'Grade current resource for a selection of students.'
8888: },
8889: { linktext => 'Grade ungraded submissions.',
8890: url => $url1b,
8891: permission => 'F',
1.636 wenzelju 8892: icon => 'ungrade_sub.png',
1.598 www 8893: linktitle => 'Grade all submissions that have not been graded yet.'
1.538 schulted 8894: },
1.598 www 8895:
8896: { linktext => 'Grading table',
8897: url => $url1c,
8898: permission => 'F',
1.636 wenzelju 8899: icon => 'grading_table.png',
1.598 www 8900: linktitle => 'Grade current resource for all students.'
8901: },
1.615 www 8902: { linktext => 'Grade page/folder for one student',
1.598 www 8903: url => $url1d,
8904: permission => 'F',
1.636 wenzelju 8905: icon => 'grade_PageFolder.png',
1.598 www 8906: linktitle => 'Grade all resources in current page/sequence/folder for one student.'
1.621 www 8907: },
8908: { linktext => 'Download submissions',
8909: url => $url1e,
8910: permission => 'F',
1.636 wenzelju 8911: icon => 'download_sub.png',
1.621 www 8912: linktitle => 'Download all students submissions.'
1.598 www 8913: }]},
8914: { categorytitle=>'Automated Grading',
8915: items =>[
8916:
1.538 schulted 8917: { linktext => 'Upload Scores',
8918: url => $url2,
8919: permission => 'F',
8920: icon => 'uploadscores.png',
8921: linktitle => 'Specify a file containing the class scores for current resource.'
8922: },
8923: { linktext => 'Process Clicker',
8924: url => $url3,
8925: permission => 'F',
8926: icon => 'addClickerInfoFile.png',
8927: linktitle => 'Specify a file containing the clicker information for this resource.'
8928: },
1.587 raeburn 8929: { linktext => 'Grade/Manage/Review Bubblesheets',
1.538 schulted 8930: url => $url4,
8931: permission => 'F',
1.636 wenzelju 8932: icon => 'bubblesheet.png',
1.648 bisitz 8933: linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
1.602 www 8934: },
1.616 www 8935: { linktext => 'Verify Receipt Number',
1.602 www 8936: url => $url5,
8937: permission => 'F',
1.636 wenzelju 8938: icon => 'receipt_number.png',
1.602 www 8939: linktitle => 'Verify a system-generated receipt number for correct problem solution.'
8940: }
8941:
1.538 schulted 8942: ]
8943: });
8944:
1.443 banghart 8945: # Create the menu
8946: my $Str;
1.445 banghart 8947: $Str .= '<form method="post" action="" name="gradingMenu">';
8948: $Str .= '<input type="hidden" name="command" value="" />'.
1.618 www 8949: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.445 banghart 8950:
1.602 www 8951: $Str .= &Apache::lonhtmlcommon::generate_menu(@menu);
1.443 banghart 8952: return $Str;
8953: }
8954:
1.598 www 8955:
8956: sub ungraded {
8957: my ($request)=@_;
8958: &submit_options($request);
8959: }
8960:
1.599 www 8961: sub submit_options_sequence {
1.608 www 8962: my ($request,$symb) = @_;
1.599 www 8963: if (!$symb) {return '';}
1.600 www 8964: &commonJSfunctions($request);
8965: my $result;
1.599 www 8966:
1.600 www 8967: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 8968: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 8969: $result.=&selectfield(0).
1.601 www 8970: '<input type="hidden" name="command" value="pickStudentPage" />
1.600 www 8971: <div>
8972: <input type="submit" value="'.&mt('Next').' →" />
8973: </div>
8974: </div>
8975: </form>';
8976: return $result;
8977: }
8978:
8979: sub submit_options_table {
1.608 www 8980: my ($request,$symb) = @_;
1.600 www 8981: if (!$symb) {return '';}
1.599 www 8982: &commonJSfunctions($request);
8983: my $result;
8984:
8985: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 8986: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.599 www 8987:
1.632 www 8988: $result.=&selectfield(0).
1.601 www 8989: '<input type="hidden" name="command" value="viewgrades" />
1.599 www 8990: <div>
8991: <input type="submit" value="'.&mt('Next').' →" />
8992: </div>
8993: </div>
8994: </form>';
8995: return $result;
8996: }
1.443 banghart 8997:
1.621 www 8998: sub submit_options_download {
8999: my ($request,$symb) = @_;
9000: if (!$symb) {return '';}
9001:
9002: &commonJSfunctions($request);
9003:
9004: my $result='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
9005: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
9006: $result.='
9007: <h2>
9008: '.&mt('Select Students for Which to Download Submissions').'
9009: </h2>'.&selectfield(1).'
9010: <input type="hidden" name="command" value="downloadfileslink" />
9011: <input type="submit" value="'.&mt('Next').' →" />
9012: </div>
9013: </div>
1.600 www 9014:
9015:
1.621 www 9016: </form>';
9017: return $result;
9018: }
9019:
1.443 banghart 9020: #--- Displays the submissions first page -------
9021: sub submit_options {
1.608 www 9022: my ($request,$symb) = @_;
1.72 ng 9023: if (!$symb) {return '';}
9024:
1.118 ng 9025: &commonJSfunctions($request);
1.473 albertel 9026: my $result;
1.533 bisitz 9027:
1.72 ng 9028: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.618 www 9029: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n";
1.632 www 9030: $result.=&selectfield(1).'
1.601 www 9031: <input type="hidden" name="command" value="submission" />
9032: <input type="submit" value="'.&mt('Next').' →" />
9033: </div>
9034: </div>
9035:
9036:
9037: </form>';
9038: return $result;
9039: }
1.533 bisitz 9040:
1.601 www 9041: sub selectfield {
9042: my ($full)=@_;
1.635 raeburn 9043: my %options =
9044: (&Apache::lonlocal::texthash(
9045: 'yes' => 'with submissions',
9046: 'queued' => 'in grading queue',
9047: 'graded' => 'with ungraded submissions',
9048: 'incorrect' => 'with incorrect submissions',
9049: 'all' => 'with any status'),
9050: 'select_form_order' => ['yes','queued','graded','incorrect','all']);
1.601 www 9051: my $result='<div class="LC_columnSection">
1.537 harmsja 9052:
1.533 bisitz 9053: <fieldset>
9054: <legend>
9055: '.&mt('Sections').'
9056: </legend>
1.601 www 9057: '.&Apache::lonstatistics::SectionSelect('section','multiple',5).'
1.533 bisitz 9058: </fieldset>
1.537 harmsja 9059:
1.533 bisitz 9060: <fieldset>
9061: <legend>
9062: '.&mt('Groups').'
9063: </legend>
9064: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
9065: </fieldset>
1.537 harmsja 9066:
1.533 bisitz 9067: <fieldset>
9068: <legend>
9069: '.&mt('Access Status').'
9070: </legend>
1.601 www 9071: '.&Apache::lonhtmlcommon::StatusOptions(undef,undef,5,undef,'mult').'
9072: </fieldset>';
9073: if ($full) {
9074: $result.='
1.533 bisitz 9075: <fieldset>
9076: <legend>
9077: '.&mt('Submission Status').'
1.601 www 9078: </legend>'.
1.635 raeburn 9079: &Apache::loncommon::select_form('all','submitonly',\%options).
1.601 www 9080: '</fieldset>';
9081: }
9082: $result.='</div><br />';
1.44 ng 9083: return $result;
1.2 albertel 9084: }
9085:
1.285 albertel 9086: sub reset_perm {
9087: undef(%perm);
9088: }
9089:
9090: sub init_perm {
9091: &reset_perm();
1.300 albertel 9092: foreach my $test_perm ('vgr','mgr','opa') {
9093:
9094: my $scope = $env{'request.course.id'};
9095: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
9096:
9097: $scope .= '/'.$env{'request.course.sec'};
9098: if ( $perm{$test_perm}=
9099: &Apache::lonnet::allowed($test_perm,$scope)) {
9100: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
9101: } else {
9102: delete($perm{$test_perm});
9103: }
1.285 albertel 9104: }
9105: }
9106: }
9107:
1.674 raeburn 9108: sub init_old_essays {
9109: my ($symb,$apath,$adom,$aname) = @_;
9110: if ($symb ne '') {
9111: my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
9112: if (keys(%essays) > 0) {
9113: $old_essays{$symb} = \%essays;
9114: }
9115: }
9116: return;
9117: }
9118:
9119: sub reset_old_essays {
9120: undef(%old_essays);
9121: }
9122:
1.400 www 9123: sub gather_clicker_ids {
1.408 albertel 9124: my %clicker_ids;
1.400 www 9125:
9126: my $classlist = &Apache::loncoursedata::get_classlist();
9127:
9128: # Set up a couple variables.
1.407 albertel 9129: my $username_idx = &Apache::loncoursedata::CL_SNAME();
9130: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 9131: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 9132:
1.407 albertel 9133: foreach my $student (keys(%$classlist)) {
1.438 www 9134: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 9135: my $username = $classlist->{$student}->[$username_idx];
9136: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 9137: my $clickers =
1.408 albertel 9138: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 9139: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9140: $id=~s/^[\#0]+//;
1.421 www 9141: $id=~s/[\-\:]//g;
1.407 albertel 9142: if (exists($clicker_ids{$id})) {
1.408 albertel 9143: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 9144: } else {
1.408 albertel 9145: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 9146: }
9147: }
9148: }
1.407 albertel 9149: return %clicker_ids;
1.400 www 9150: }
9151:
1.402 www 9152: sub gather_adv_clicker_ids {
1.408 albertel 9153: my %clicker_ids;
1.402 www 9154: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
9155: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9156: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 9157: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 9158: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
9159: my ($puname,$pudom)=split(/\:/,$person);
9160: my $clickers =
1.408 albertel 9161: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 9162: foreach my $id (split(/\,/,$clickers)) {
1.414 www 9163: $id=~s/^[\#0]+//;
1.421 www 9164: $id=~s/[\-\:]//g;
1.408 albertel 9165: if (exists($clicker_ids{$id})) {
9166: $clicker_ids{$id}.=','.$puname.':'.$pudom;
9167: } else {
9168: $clicker_ids{$id}=$puname.':'.$pudom;
9169: }
1.405 www 9170: }
1.402 www 9171: }
9172: }
1.407 albertel 9173: return %clicker_ids;
1.402 www 9174: }
9175:
1.413 www 9176: sub clicker_grading_parameters {
9177: return ('gradingmechanism' => 'scalar',
9178: 'upfiletype' => 'scalar',
9179: 'specificid' => 'scalar',
9180: 'pcorrect' => 'scalar',
9181: 'pincorrect' => 'scalar');
9182: }
9183:
1.400 www 9184: sub process_clicker {
1.608 www 9185: my ($r,$symb)=@_;
1.400 www 9186: if (!$symb) {return '';}
9187: my $result=&checkforfile_js();
1.632 www 9188: $result.=&Apache::loncommon::start_data_table().
9189: &Apache::loncommon::start_data_table_header_row().
9190: '<th>'.&mt('Specify a file containing clicker information and set grading options.').'</th>'.
9191: &Apache::loncommon::end_data_table_header_row().
9192: &Apache::loncommon::start_data_table_row()."<td>\n";
1.413 www 9193: # Attempt to restore parameters from last session, set defaults if not present
9194: my %Saveable_Parameters=&clicker_grading_parameters();
9195: &Apache::loncommon::restore_course_settings('grades_clicker',
9196: \%Saveable_Parameters);
9197: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
9198: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
9199: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
9200: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
9201:
9202: my %checked;
1.521 www 9203: foreach my $gradingmechanism ('attendance','personnel','specific','given') {
1.413 www 9204: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
1.569 bisitz 9205: $checked{$gradingmechanism}=' checked="checked"';
1.413 www 9206: }
9207: }
9208:
1.632 www 9209: my $upload=&mt("Evaluate File");
1.400 www 9210: my $type=&mt("Type");
1.402 www 9211: my $attendance=&mt("Award points just for participation");
9212: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 9213: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.521 www 9214: my $given=&mt("Correctness determined from given list of answers").' '.
9215: '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
1.402 www 9216: my $pcorrect=&mt("Percentage points for correct solution");
9217: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 9218: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.635 raeburn 9219: {'iclicker' => 'i>clicker',
1.666 www 9220: 'interwrite' => 'interwrite PRS',
9221: 'turning' => 'Turning Technologies'});
1.418 albertel 9222: $symb = &Apache::lonenc::check_encrypt($symb);
1.597 wenzelju 9223: $result.= &Apache::lonhtmlcommon::scripttag(<<ENDUPFORM);
1.402 www 9224: function sanitycheck() {
9225: // Accept only integer percentages
9226: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
9227: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
9228: // Find out grading choice
9229: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9230: if (document.forms.gradesupload.gradingmechanism[i].checked) {
9231: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
9232: }
9233: }
9234: // By default, new choice equals user selection
9235: newgradingchoice=gradingchoice;
9236: // Not good to give more points for false answers than correct ones
9237: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
9238: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
9239: }
9240: // If new choice is attendance only, and old choice was correctness-based, restore defaults
9241: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
9242: document.forms.gradesupload.pcorrect.value=100;
9243: document.forms.gradesupload.pincorrect.value=100;
9244: }
9245: // If the values are different, cannot be attendance only
9246: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
9247: (gradingchoice=='attendance')) {
9248: newgradingchoice='personnel';
9249: }
9250: // Change grading choice to new one
9251: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
9252: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
9253: document.forms.gradesupload.gradingmechanism[i].checked=true;
9254: } else {
9255: document.forms.gradesupload.gradingmechanism[i].checked=false;
9256: }
9257: }
9258: // Remember the old state
9259: document.forms.gradesupload.waschecked.value=newgradingchoice;
9260: }
1.597 wenzelju 9261: ENDUPFORM
9262: $result.= <<ENDUPFORM;
1.400 www 9263: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
9264: <input type="hidden" name="symb" value="$symb" />
9265: <input type="hidden" name="command" value="processclickerfile" />
9266: <input type="file" name="upfile" size="50" />
9267: <br /><label>$type: $selectform</label>
1.632 www 9268: ENDUPFORM
9269: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9270: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDGRADINGFORM);
9271: <label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
1.589 bisitz 9272: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
9273: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
1.414 www 9274: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.589 bisitz 9275: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
1.521 www 9276: <br />
9277: <input type="text" name="givenanswer" size="50" />
1.413 www 9278: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
1.632 www 9279: ENDGRADINGFORM
9280: $result.='</td>'.&Apache::loncommon::end_data_table_row().
9281: &Apache::loncommon::start_data_table_row().'<td>'.(<<ENDPERCFORM);
9282: <label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
1.589 bisitz 9283: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
9284: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.597 wenzelju 9285: </form>'
1.632 www 9286: ENDPERCFORM
9287: $result.='</td>'.
9288: &Apache::loncommon::end_data_table_row().
9289: &Apache::loncommon::end_data_table();
1.400 www 9290: return $result;
9291: }
9292:
9293: sub process_clicker_file {
1.608 www 9294: my ($r,$symb)=@_;
1.400 www 9295: if (!$symb) {return '';}
1.413 www 9296:
9297: my %Saveable_Parameters=&clicker_grading_parameters();
9298: &Apache::loncommon::store_course_settings('grades_clicker',
9299: \%Saveable_Parameters);
1.598 www 9300: my $result='';
1.404 www 9301: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 9302: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
1.614 www 9303: return $result;
1.404 www 9304: }
1.522 www 9305: if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
1.521 www 9306: $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
1.614 www 9307: return $result;
1.521 www 9308: }
1.522 www 9309: my $foundgiven=0;
1.521 www 9310: if ($env{'form.gradingmechanism'} eq 'given') {
9311: $env{'form.givenanswer'}=~s/^\s*//gs;
9312: $env{'form.givenanswer'}=~s/\s*$//gs;
1.644 www 9313: $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
1.521 www 9314: $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
1.522 www 9315: my @answers=split(/\,/,$env{'form.givenanswer'});
9316: $foundgiven=$#answers+1;
1.521 www 9317: }
1.407 albertel 9318: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 9319: my %correct_ids;
1.404 www 9320: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 9321: %correct_ids=&gather_adv_clicker_ids();
1.404 www 9322: }
9323: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 9324: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
9325: $correct_id=~tr/a-z/A-Z/;
9326: $correct_id=~s/\s//gs;
9327: $correct_id=~s/^[\#0]+//;
1.421 www 9328: $correct_id=~s/[\-\:]//g;
1.414 www 9329: if ($correct_id) {
9330: $correct_ids{$correct_id}='specified';
9331: }
9332: }
1.400 www 9333: }
1.404 www 9334: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 9335: $result.=&mt('Score based on attendance only');
1.521 www 9336: } elsif ($env{'form.gradingmechanism'} eq 'given') {
1.522 www 9337: $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
1.404 www 9338: } else {
1.408 albertel 9339: my $number=0;
1.411 www 9340: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 9341: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 9342: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 9343: if ($correct_ids{$id} eq 'specified') {
9344: $result.=&mt('specified');
9345: } else {
9346: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
9347: $result.=&Apache::loncommon::plainname($uname,$udom);
9348: }
9349: $number++;
9350: }
1.411 www 9351: $result.="</p>\n";
1.408 albertel 9352: if ($number==0) {
9353: $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
1.614 www 9354: return $result;
1.408 albertel 9355: }
1.404 www 9356: }
1.405 www 9357: if (length($env{'form.upfile'}) < 2) {
1.407 albertel 9358: $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
9359: '<span class="LC_error">',
9360: '</span>',
9361: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.614 www 9362: return $result;
1.405 www 9363: }
1.410 www 9364:
9365: # Were able to get all the info needed, now analyze the file
9366:
1.411 www 9367: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 9368: $symb = &Apache::lonenc::check_encrypt($symb);
1.632 www 9369: $result.=&Apache::loncommon::start_data_table().
9370: &Apache::loncommon::start_data_table_header_row().
9371: '<th>'.&mt('Evaluate clicker file').'</th>'.
9372: &Apache::loncommon::end_data_table_header_row().
9373: &Apache::loncommon::start_data_table_row().(<<ENDHEADER);
9374: <td>
1.410 www 9375: <form method="post" action="/adm/grades" name="clickeranalysis">
9376: <input type="hidden" name="symb" value="$symb" />
9377: <input type="hidden" name="command" value="assignclickergrades" />
1.411 www 9378: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
9379: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
9380: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 9381: ENDHEADER
1.522 www 9382: if ($env{'form.gradingmechanism'} eq 'given') {
9383: $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
9384: }
1.408 albertel 9385: my %responses;
9386: my @questiontitles;
1.405 www 9387: my $errormsg='';
9388: my $number=0;
9389: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 9390: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 9391: }
1.419 www 9392: if ($env{'form.upfiletype'} eq 'interwrite') {
9393: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
9394: }
1.666 www 9395: if ($env{'form.upfiletype'} eq 'turning') {
9396: ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
9397: }
1.411 www 9398: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
9399: '<input type="hidden" name="number" value="'.$number.'" />'.
9400: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
9401: $env{'form.pcorrect'},$env{'form.pincorrect'}).
9402: '<br />';
1.522 www 9403: if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
9404: $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
1.614 www 9405: return $result;
1.522 www 9406: }
1.414 www 9407: # Remember Question Titles
9408: # FIXME: Possibly need delimiter other than ":"
9409: for (my $i=0;$i<$number;$i++) {
9410: $result.='<input type="hidden" name="question:'.$i.'" value="'.
9411: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
9412: }
1.411 www 9413: my $correct_count=0;
9414: my $student_count=0;
9415: my $unknown_count=0;
1.414 www 9416: # Match answers with usernames
9417: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 9418: foreach my $id (keys(%responses)) {
1.410 www 9419: if ($correct_ids{$id}) {
1.414 www 9420: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 9421: $correct_count++;
1.410 www 9422: } elsif ($clicker_ids{$id}) {
1.437 www 9423: if ($clicker_ids{$id}=~/\,/) {
9424: # More than one user with the same clicker!
1.632 www 9425: $result.="</td>".&Apache::loncommon::end_data_table_row().
9426: &Apache::loncommon::start_data_table_row()."<td>".
9427: &mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
1.437 www 9428: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
9429: "<select name='multi".$id."'>";
9430: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
9431: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
9432: }
9433: $result.='</select>';
9434: $unknown_count++;
9435: } else {
9436: # Good: found one and only one user with the right clicker
9437: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
9438: $student_count++;
9439: }
1.410 www 9440: } else {
1.632 www 9441: $result.="</td>".&Apache::loncommon::end_data_table_row().
9442: &Apache::loncommon::start_data_table_row()."<td>".
9443: &mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
1.411 www 9444: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
9445: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
9446: "\n".&mt("Domain").": ".
9447: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
1.643 www 9448: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
1.411 www 9449: $unknown_count++;
1.410 www 9450: }
1.405 www 9451: }
1.412 www 9452: $result.='<hr />'.
9453: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
1.521 www 9454: if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
1.412 www 9455: if ($correct_count==0) {
9456: $errormsg.="Found no correct answers answers for grading!";
9457: } elsif ($correct_count>1) {
1.414 www 9458: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 9459: }
9460: }
1.428 www 9461: if ($number<1) {
9462: $errormsg.="Found no questions.";
9463: }
1.412 www 9464: if ($errormsg) {
9465: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
9466: } else {
9467: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
9468: }
1.632 www 9469: $result.='</form></td>'.
9470: &Apache::loncommon::end_data_table_row().
9471: &Apache::loncommon::end_data_table();
1.614 www 9472: return $result;
1.400 www 9473: }
9474:
1.405 www 9475: sub iclicker_eval {
1.406 www 9476: my ($questiontitles,$responses)=@_;
1.405 www 9477: my $number=0;
9478: my $errormsg='';
9479: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 9480: my %components=&Apache::loncommon::record_sep($line);
9481: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 9482: if ($entries[0] eq 'Question') {
9483: for (my $i=3;$i<$#entries;$i+=6) {
9484: $$questiontitles[$number]=$entries[$i];
9485: $number++;
9486: }
9487: }
9488: if ($entries[0]=~/^\#/) {
9489: my $id=$entries[0];
9490: my @idresponses;
9491: $id=~s/^[\#0]+//;
9492: for (my $i=0;$i<$number;$i++) {
9493: my $idx=3+$i*6;
1.644 www 9494: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
1.408 albertel 9495: push(@idresponses,$entries[$idx]);
9496: }
9497: $$responses{$id}=join(',',@idresponses);
9498: }
1.405 www 9499: }
9500: return ($errormsg,$number);
9501: }
9502:
1.419 www 9503: sub interwrite_eval {
9504: my ($questiontitles,$responses)=@_;
9505: my $number=0;
9506: my $errormsg='';
1.420 www 9507: my $skipline=1;
9508: my $questionnumber=0;
9509: my %idresponses=();
1.419 www 9510: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
9511: my %components=&Apache::loncommon::record_sep($line);
9512: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 9513: if ($entries[1] eq 'Time') { $skipline=0; next; }
9514: if ($entries[1] eq 'Response') { $skipline=1; }
9515: next if $skipline;
9516: if ($entries[0]!=$questionnumber) {
9517: $questionnumber=$entries[0];
9518: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
9519: $number++;
1.419 www 9520: }
1.420 www 9521: my $id=$entries[4];
9522: $id=~s/^[\#0]+//;
1.421 www 9523: $id=~s/^v\d*\://i;
9524: $id=~s/[\-\:]//g;
1.420 www 9525: $idresponses{$id}[$number]=$entries[6];
9526: }
1.524 raeburn 9527: foreach my $id (keys(%idresponses)) {
1.420 www 9528: $$responses{$id}=join(',',@{$idresponses{$id}});
9529: $$responses{$id}=~s/^\s*\,//;
1.419 www 9530: }
9531: return ($errormsg,$number);
9532: }
9533:
1.666 www 9534: sub turning_eval {
9535: my ($questiontitles,$responses)=@_;
9536: my $number=0;
9537: my $errormsg='';
9538: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
9539: my %components=&Apache::loncommon::record_sep($line);
9540: my @entries=map {$components{$_}} (sort(keys(%components)));
9541: if ($#entries>$number) { $number=$#entries; }
9542: my $id=$entries[0];
9543: my @idresponses;
9544: $id=~s/^[\#0]+//;
9545: unless ($id) { next; }
9546: for (my $idx=1;$idx<=$#entries;$idx++) {
9547: $entries[$idx]=~s/\,/\;/g;
9548: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
9549: push(@idresponses,$entries[$idx]);
9550: }
9551: $$responses{$id}=join(',',@idresponses);
9552: }
9553: for (my $i=1; $i<=$number; $i++) {
9554: $$questiontitles[$i]=&mt('Question [_1]',$i);
9555: }
9556: return ($errormsg,$number);
9557: }
9558:
9559:
1.414 www 9560: sub assign_clicker_grades {
1.608 www 9561: my ($r,$symb)=@_;
1.414 www 9562: if (!$symb) {return '';}
1.416 www 9563: # See which part we are saving to
1.582 raeburn 9564: my $res_error;
9565: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
9566: if ($res_error) {
9567: return &navmap_errormsg();
9568: }
1.416 www 9569: # FIXME: This should probably look for the first handgradeable part
9570: my $part=$$partlist[0];
9571: # Start screen output
1.632 www 9572: my $result=&Apache::loncommon::start_data_table().
9573: &Apache::loncommon::start_data_table_header_row().
9574: '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
9575: &Apache::loncommon::end_data_table_header_row().
9576: &Apache::loncommon::start_data_table_row().'<td>';
1.414 www 9577: # Get correct result
9578: # FIXME: Possibly need delimiter other than ":"
9579: my @correct=();
1.415 www 9580: my $gradingmechanism=$env{'form.gradingmechanism'};
9581: my $number=$env{'form.number'};
9582: if ($gradingmechanism ne 'attendance') {
1.414 www 9583: foreach my $key (keys(%env)) {
9584: if ($key=~/^form\.correct\:/) {
9585: my @input=split(/\,/,$env{$key});
9586: for (my $i=0;$i<=$#input;$i++) {
9587: if (($correct[$i]) && ($input[$i]) &&
9588: ($correct[$i] ne $input[$i])) {
9589: $result.='<br /><span class="LC_warning">'.
9590: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
9591: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
1.644 www 9592: } elsif (($input[$i]) || ($input[$i] eq '0')) {
1.414 www 9593: $correct[$i]=$input[$i];
9594: }
9595: }
9596: }
9597: }
1.415 www 9598: for (my $i=0;$i<$number;$i++) {
1.644 www 9599: if ((!$correct[$i]) && ($correct[$i] ne '0')) {
1.414 www 9600: $result.='<br /><span class="LC_error">'.
9601: &mt('No correct result given for question "[_1]"!',
9602: $env{'form.question:'.$i}).'</span>';
9603: }
9604: }
1.644 www 9605: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
1.414 www 9606: }
9607: # Start grading
1.415 www 9608: my $pcorrect=$env{'form.pcorrect'};
9609: my $pincorrect=$env{'form.pincorrect'};
1.416 www 9610: my $storecount=0;
1.632 www 9611: my %users=();
1.415 www 9612: foreach my $key (keys(%env)) {
1.420 www 9613: my $user='';
1.415 www 9614: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 9615: $user=$1;
9616: }
9617: if ($key=~/^form\.unknown\:(.*)$/) {
9618: my $id=$1;
9619: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
9620: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 9621: } elsif ($env{'form.multi'.$id}) {
9622: $user=$env{'form.multi'.$id};
1.420 www 9623: }
9624: }
1.632 www 9625: if ($user) {
9626: if ($users{$user}) {
9627: $result.='<br /><span class="LC_warning">'.
9628: &mt("More than one entry found for <tt>[_1]</tt>!",$user).
9629: '</span><br />';
9630: }
9631: $users{$user}=1;
1.415 www 9632: my @answer=split(/\,/,$env{$key});
9633: my $sum=0;
1.522 www 9634: my $realnumber=$number;
1.415 www 9635: for (my $i=0;$i<$number;$i++) {
1.576 www 9636: if ($correct[$i] eq '-') {
9637: $realnumber--;
1.644 www 9638: } elsif (($answer[$i]) || ($answer[$i]=~/^[0\.]+$/)) {
1.415 www 9639: if ($gradingmechanism eq 'attendance') {
9640: $sum+=$pcorrect;
1.576 www 9641: } elsif ($correct[$i] eq '*') {
1.522 www 9642: $sum+=$pcorrect;
1.415 www 9643: } else {
1.644 www 9644: # We actually grade if correct or not
9645: my $increment=$pincorrect;
9646: # Special case: numerical answer "0"
9647: if ($correct[$i] eq '0') {
9648: if ($answer[$i]=~/^[0\.]+$/) {
9649: $increment=$pcorrect;
9650: }
9651: # General numerical answer, both evaluate to something non-zero
9652: } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
9653: if (1.0*$correct[$i]==1.0*$answer[$i]) {
9654: $increment=$pcorrect;
9655: }
9656: # Must be just alphanumeric
9657: } elsif ($answer[$i] eq $correct[$i]) {
9658: $increment=$pcorrect;
1.415 www 9659: }
1.644 www 9660: $sum+=$increment;
1.415 www 9661: }
9662: }
9663: }
1.522 www 9664: my $ave=$sum/(100*$realnumber);
1.416 www 9665: # Store
9666: my ($username,$domain)=split(/\:/,$user);
9667: my %grades=();
9668: $grades{"resource.$part.solved"}='correct_by_override';
9669: $grades{"resource.$part.awarded"}=$ave;
9670: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
9671: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
9672: $env{'request.course.id'},
9673: $domain,$username);
9674: if ($returncode ne 'ok') {
9675: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
9676: } else {
9677: $storecount++;
9678: }
1.415 www 9679: }
9680: }
9681: # We are done
1.549 hauer 9682: $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
1.632 www 9683: '</td>'.
9684: &Apache::loncommon::end_data_table_row().
9685: &Apache::loncommon::end_data_table();
1.614 www 9686: return $result;
1.414 www 9687: }
9688:
1.582 raeburn 9689: sub navmap_errormsg {
9690: return '<div class="LC_error">'.
9691: &mt('An error occurred retrieving information about resources in the course.').'<br />'.
1.595 raeburn 9692: &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 9693: '</div>';
9694: }
1.607 droeschl 9695:
1.609 www 9696: sub startpage {
1.671 raeburn 9697: my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
9698: if ($nomenu) {
9699: $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
9700: } else {
9701: unshift(@$crumbs,{href=>&href_symb_cmd($symb,'gradingmenu'),text=>"Grading"});
9702: $r->print(&Apache::loncommon::start_page('Grading',$js,
9703: {'bread_crumbs' => $crumbs}));
9704: &Apache::lonquickgrades::startGradeScreen($r,($env{'form.symb'}?'probgrading':'grading'));
9705: }
1.613 www 9706: unless ($nodisplayflag) {
1.671 raeburn 9707: $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
1.613 www 9708: }
1.607 droeschl 9709: }
1.582 raeburn 9710:
1.622 www 9711: sub select_problem {
9712: my ($r)=@_;
1.632 www 9713: $r->print('<h3>'.&mt('Select the problem or one of the problems you want to grade').'</h3><form action="/adm/grades">');
1.622 www 9714: $r->print(&Apache::lonstathelpers::problem_selector('.',undef,1));
9715: $r->print('<input type="hidden" name="command" value="gradingmenu" />');
9716: $r->print('<input type="submit" value="'.&mt('Next').' →" /></form>');
9717: }
9718:
1.1 albertel 9719: sub handler {
1.41 ng 9720: my $request=$_[0];
1.434 albertel 9721: &reset_caches();
1.646 raeburn 9722: if ($request->header_only) {
9723: &Apache::loncommon::content_type($request,'text/html');
9724: $request->send_http_header;
9725: return OK;
9726: }
9727: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
9728:
1.664 raeburn 9729: # see what command we need to execute
9730:
9731: my @commands=&Apache::loncommon::get_env_multiple('form.command');
9732: my $command=$commands[0];
9733:
1.646 raeburn 9734: &init_perm();
9735: if (!$env{'request.course.id'}) {
1.664 raeburn 9736: unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
9737: ($command =~ /^scantronupload/)) {
9738: # Not in a course.
9739: $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
9740: return HTTP_NOT_ACCEPTABLE;
9741: }
1.646 raeburn 9742: } elsif (!%perm) {
9743: $request->internal_redirect('/adm/quickgrades');
1.687 raeburn 9744: return OK;
1.41 ng 9745: }
1.646 raeburn 9746: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 9747: $request->send_http_header;
1.646 raeburn 9748:
1.160 albertel 9749: if ($#commands > 0) {
9750: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
9751: }
1.608 www 9752:
9753: # see what the symb is
9754:
9755: my $symb=$env{'form.symb'};
9756: unless ($symb) {
9757: (my $url=$env{'form.url'}) =~ s-^https*://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
9758: $symb=&Apache::lonnet::symbread($url);
9759: }
1.646 raeburn 9760: &Apache::lonenc::check_decrypt(\$symb);
1.608 www 9761:
1.513 foxr 9762: $ssi_error = 0;
1.637 www 9763: if (($symb eq '' || $command eq '') && ($env{'request.course.id'})) {
1.601 www 9764: #
1.637 www 9765: # Not called from a resource, but inside a course
1.601 www 9766: #
1.622 www 9767: &startpage($request,undef,[],1,1);
9768: &select_problem($request);
1.41 ng 9769: } else {
1.104 albertel 9770: if ($command eq 'submission' && $perm{'vgr'}) {
1.671 raeburn 9771: my ($stuvcurrent,$stuvdisp,$versionform,$js);
9772: if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
9773: ($stuvcurrent,$stuvdisp,$versionform,$js) =
9774: &choose_task_version_form($symb,$env{'form.student'},
9775: $env{'form.userdom'});
9776: }
9777: &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
9778: if ($versionform) {
9779: $request->print($versionform);
9780: }
9781: $request->print('<br clear="all" />');
1.611 www 9782: ($env{'form.student'} eq '' ? &listStudents($request,$symb) : &submission($request,0,0,$symb));
1.671 raeburn 9783: } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
9784: my ($stuvcurrent,$stuvdisp,$versionform,$js) =
9785: &choose_task_version_form($symb,$env{'form.student'},
9786: $env{'form.userdom'},
9787: $env{'form.inhibitmenu'});
9788: &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
9789: if ($versionform) {
9790: $request->print($versionform);
9791: }
9792: $request->print('<br clear="all" />');
9793: $request->print(&show_previous_task_version($request,$symb));
1.103 albertel 9794: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.615 www 9795: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
9796: {href=>'',text=>'Select student'}],1,1);
1.608 www 9797: &pickStudentPage($request,$symb);
1.103 albertel 9798: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.615 www 9799: &startpage($request,$symb,
9800: [{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
9801: {href=>'',text=>'Select student'},
9802: {href=>'',text=>'Grade student'}],1,1);
1.608 www 9803: &displayPage($request,$symb);
1.104 albertel 9804: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.616 www 9805: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'all_for_one'),text=>'Grade page/folder for one student'},
9806: {href=>'',text=>'Select student'},
9807: {href=>'',text=>'Grade student'},
9808: {href=>'',text=>'Store grades'}],1,1);
1.608 www 9809: &updateGradeByPage($request,$symb);
1.104 albertel 9810: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.619 www 9811: &startpage($request,$symb,[{href=>'',text=>'...'},
9812: {href=>'',text=>'Modify grades'}]);
1.608 www 9813: &processGroup($request,$symb);
1.104 albertel 9814: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.608 www 9815: &startpage($request,$symb);
9816: $request->print(&grading_menu($request,$symb));
1.598 www 9817: } elsif ($command eq 'individual' && $perm{'vgr'}) {
1.617 www 9818: &startpage($request,$symb,[{href=>'',text=>'Select individual students to grade'}]);
1.608 www 9819: $request->print(&submit_options($request,$symb));
1.598 www 9820: } elsif ($command eq 'ungraded' && $perm{'vgr'}) {
1.617 www 9821: &startpage($request,$symb,[{href=>'',text=>'Grade ungraded submissions'}]);
9822: $request->print(&listStudents($request,$symb,'graded'));
1.598 www 9823: } elsif ($command eq 'table' && $perm{'vgr'}) {
1.614 www 9824: &startpage($request,$symb,[{href=>"", text=>"Grading table"}]);
1.611 www 9825: $request->print(&submit_options_table($request,$symb));
1.598 www 9826: } elsif ($command eq 'all_for_one' && $perm{'vgr'}) {
1.615 www 9827: &startpage($request,$symb,[{href=>'',text=>'Grade page/folder for one student'}],1,1);
1.608 www 9828: $request->print(&submit_options_sequence($request,$symb));
1.104 albertel 9829: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.614 www 9830: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},{href=>'', text=>"Modify grades"}]);
1.608 www 9831: $request->print(&viewgrades($request,$symb));
1.104 albertel 9832: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.620 www 9833: &startpage($request,$symb,[{href=>'',text=>'...'},
9834: {href=>'',text=>'Store grades'}]);
1.608 www 9835: $request->print(&processHandGrade($request,$symb));
1.106 albertel 9836: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.614 www 9837: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"table"), text=>"Grading table"},
9838: {href=>&href_symb_cmd($symb,'viewgrades').'&group=all§ion=all&Status=Active',
9839: text=>"Modify grades"},
9840: {href=>'', text=>"Store grades"}]);
1.608 www 9841: $request->print(&editgrades($request,$symb));
1.602 www 9842: } elsif ($command eq 'initialverifyreceipt' && $perm{'vgr'}) {
1.616 www 9843: &startpage($request,$symb,[{href=>'',text=>'Verify Receipt Number'}]);
1.611 www 9844: $request->print(&initialverifyreceipt($request,$symb));
1.106 albertel 9845: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.616 www 9846: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,"initialverifyreceipt"),text=>'Verify Receipt Number'},
9847: {href=>'',text=>'Verification Result'}]);
1.608 www 9848: $request->print(&verifyreceipt($request,$symb));
1.400 www 9849: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
1.615 www 9850: &startpage($request,$symb,[{href=>'', text=>'Process clicker'}]);
1.608 www 9851: $request->print(&process_clicker($request,$symb));
1.400 www 9852: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
1.615 www 9853: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
9854: {href=>'', text=>'Process clicker file'}]);
1.608 www 9855: $request->print(&process_clicker_file($request,$symb));
1.414 www 9856: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
1.615 www 9857: &startpage($request,$symb,[{href=>&href_symb_cmd($symb,'processclicker'), text=>'Process clicker'},
9858: {href=>'', text=>'Process clicker file'},
9859: {href=>'', text=>'Store grades'}]);
1.608 www 9860: $request->print(&assign_clicker_grades($request,$symb));
1.106 albertel 9861: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.627 www 9862: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9863: $request->print(&upcsvScores_form($request,$symb));
1.106 albertel 9864: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.627 www 9865: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9866: $request->print(&csvupload($request,$symb));
1.106 albertel 9867: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.627 www 9868: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9869: $request->print(&csvuploadmap($request,$symb));
1.246 albertel 9870: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 9871: if ($env{'form.associate'} ne 'Reverse Association') {
1.627 www 9872: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9873: $request->print(&csvuploadoptions($request,$symb));
1.41 ng 9874: } else {
1.257 albertel 9875: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
9876: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 9877: } else {
1.257 albertel 9878: $env{'form.upfile_associate'} = 'forward';
1.41 ng 9879: }
1.627 www 9880: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9881: $request->print(&csvuploadmap($request,$symb));
1.41 ng 9882: }
1.246 albertel 9883: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
1.627 www 9884: &startpage($request,$symb,[{href=>'', text=>'Upload Scores'}],1,1);
1.608 www 9885: $request->print(&csvuploadassign($request,$symb));
1.106 albertel 9886: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.616 www 9887: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.612 www 9888: $request->print(&scantron_selectphase($request,undef,$symb));
1.203 albertel 9889: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
1.616 www 9890: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9891: $request->print(&scantron_do_warning($request,$symb));
1.142 albertel 9892: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
1.616 www 9893: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9894: $request->print(&scantron_validate_file($request,$symb));
1.106 albertel 9895: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.616 www 9896: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9897: $request->print(&scantron_process_students($request,$symb));
1.157 albertel 9898: } elsif ($command eq 'scantronupload' &&
1.257 albertel 9899: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
9900: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616 www 9901: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9902: $request->print(&scantron_upload_scantron_data($request,$symb));
1.157 albertel 9903: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 9904: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
9905: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.616 www 9906: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9907: $request->print(&scantron_upload_scantron_data_save($request,$symb));
1.202 albertel 9908: } elsif ($command eq 'scantron_download' &&
1.257 albertel 9909: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.616 www 9910: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.608 www 9911: $request->print(&scantron_download_scantron_data($request,$symb));
1.523 raeburn 9912: } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
1.616 www 9913: &startpage($request,$symb,[{href=>'', text=>'Grade/Manage/Review Bubblesheets'}],1,1);
1.621 www 9914: $request->print(&checkscantron_results($request,$symb));
9915: } elsif ($command eq 'downloadfilesselect' && $perm{'vgr'}) {
9916: &startpage($request,$symb,[{href=>'', text=>'Select which submissions to download'}]);
9917: $request->print(&submit_options_download($request,$symb));
9918: } elsif ($command eq 'downloadfileslink' && $perm{'vgr'}) {
9919: &startpage($request,$symb,
9920: [{href=>&href_symb_cmd($symb,'downloadfilesselect'), text=>'Select which submissions to download'},
9921: {href=>'', text=>'Download submissions'}]);
9922: &submit_download_link($request,$symb);
1.106 albertel 9923: } elsif ($command) {
1.620 www 9924: &startpage($request,$symb,[{href=>'', text=>'Access denied'}]);
1.562 bisitz 9925: $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
1.26 albertel 9926: }
1.2 albertel 9927: }
1.513 foxr 9928: if ($ssi_error) {
9929: &ssi_print_error($request);
9930: }
1.671 raeburn 9931: if ($env{'form.inhibitmenu'}) {
9932: $request->print(&Apache::loncommon::end_page());
9933: } else {
9934: &Apache::lonquickgrades::endGradeScreen($request);
9935: }
1.434 albertel 9936: &reset_caches();
1.646 raeburn 9937: return OK;
1.44 ng 9938: }
9939:
1.1 albertel 9940: 1;
9941:
1.13 albertel 9942: __END__;
1.531 jms 9943:
9944:
9945: =head1 NAME
9946:
9947: Apache::grades
9948:
9949: =head1 SYNOPSIS
9950:
9951: Handles the viewing of grades.
9952:
9953: This is part of the LearningOnline Network with CAPA project
9954: described at http://www.lon-capa.org.
9955:
9956: =head1 OVERVIEW
9957:
9958: Do an ssi with retries:
9959: While I'd love to factor out this with the vesrion in lonprintout,
9960: 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
9961: I'm not quite ready to invent (e.g. an ssi_with_retry object).
9962:
9963: At least the logic that drives this has been pulled out into loncommon.
9964:
9965:
9966:
9967: ssi_with_retries - Does the server side include of a resource.
9968: if the ssi call returns an error we'll retry it up to
9969: the number of times requested by the caller.
9970: If we still have a proble, no text is appended to the
9971: output and we set some global variables.
9972: to indicate to the caller an SSI error occurred.
9973: All of this is supposed to deal with the issues described
9974: in LonCAPA BZ 5631 see:
9975: http://bugs.lon-capa.org/show_bug.cgi?id=5631
9976: by informing the user that this happened.
9977:
9978: Parameters:
9979: resource - The resource to include. This is passed directly, without
9980: interpretation to lonnet::ssi.
9981: form - The form hash parameters that guide the interpretation of the resource
9982:
9983: retries - Number of retries allowed before giving up completely.
9984: Returns:
9985: On success, returns the rendered resource identified by the resource parameter.
9986: Side Effects:
9987: The following global variables can be set:
9988: ssi_error - If an unrecoverable error occurred this becomes true.
9989: It is up to the caller to initialize this to false
9990: if desired.
9991: ssi_error_resource - If an unrecoverable error occurred, this is the value
9992: of the resource that could not be rendered by the ssi
9993: call.
9994: ssi_error_message - The error string fetched from the ssi response
9995: in the event of an error.
9996:
9997:
9998: =head1 HANDLER SUBROUTINE
9999:
10000: ssi_with_retries()
10001:
10002: =head1 SUBROUTINES
10003:
10004: =over
10005:
1.671 raeburn 10006: =head1 Routines to display previous version of a Task for a specific student
10007:
10008: Tasks are graded pass/fail. Students who have yet to pass a particular Task
10009: can receive another opportunity. Access to tasks is slot-based. If a slot
10010: requires a proctor to check-in the student, a new version of the Task will
10011: be created when the student is checked in to the new opportunity.
10012:
10013: If a particular student has tried two or more versions of a particular task,
10014: the submission screen provides a user with vgr privileges (e.g., a Course
10015: Coordinator) the ability to display a previous version worked on by the
10016: student. By default, the current version is displayed. If a previous version
10017: has been selected for display, submission data are only shown that pertain
10018: to that particular version, and the interface to submit grades is not shown.
10019:
10020: =over 4
10021:
10022: =item show_previous_task_version()
10023:
10024: Displays a specified version of a student's Task, as the student sees it.
10025:
10026: Inputs: 2
10027: request - request object
10028: symb - unique symb for current instance of resource
10029:
10030: Output: None.
10031:
10032: Side Effects: calls &show_problem() to print version of Task, with
10033: version contained in form item: $env{'form.previousversion'}
10034:
10035: =item choose_task_version_form()
10036:
10037: Displays a web form used to select which version of a student's view of a
10038: Task should be displayed. Either launches a pop-up window, or replaces
10039: content in existing pop-up, or replaces page in main window.
10040:
10041: Inputs: 4
10042: symb - unique symb for current instance of resource
10043: uname - username of student
10044: udom - domain of student
10045: nomenu - 1 if display is in a pop-up window, and hence no menu
10046: breadcrumbs etc., are displayed
10047:
10048: Output: 4
10049: current - student's current version
10050: displayed - student's version being displayed
10051: result - scalar containing HTML for web form used to switch to
10052: a different version (or a link to close window, if pop-up).
10053: js - javascript for processing selection in versions web form
10054:
10055: Side Effects: None.
10056:
10057: =item previous_display_javascript()
10058:
10059: Inputs: 2
10060: nomenu - 1 if display is in a pop-up window, and hence no menu
10061: breadcrumbs etc., are displayed.
10062: current - student's current version number.
10063:
10064: Output: 1
10065: js - javascript for processing selection in versions web form.
10066:
10067: Side Effects: None.
10068:
10069: =back
10070:
10071: =head1 Routines to process bubblesheet data.
10072:
10073: =over 4
10074:
1.531 jms 10075: =item scantron_get_correction() :
10076:
10077: Builds the interface screen to interact with the operator to fix a
10078: specific error condition in a specific scanline
10079:
10080: Arguments:
10081: $r - Apache request object
10082: $i - number of the current scanline
10083: $scan_record - hash ref as returned from &scantron_parse_scanline()
10084: $scan_config - hash ref as returned from &get_scantron_config()
10085: $line - full contents of the current scanline
10086: $error - error condition, valid values are
10087: 'incorrectCODE', 'duplicateCODE',
10088: 'doublebubble', 'missingbubble',
10089: 'duplicateID', 'incorrectID'
10090: $arg - extra information needed
10091: For errors:
10092: - duplicateID - paper number that this studentID was seen before on
10093: - duplicateCODE - array ref of the paper numbers this CODE was
10094: seen on before
10095: - incorrectCODE - current incorrect CODE
10096: - doublebubble - array ref of the bubble lines that have double
10097: bubble errors
10098: - missingbubble - array ref of the bubble lines that have missing
10099: bubble errors
10100:
10101: =item scantron_get_maxbubble() :
10102:
1.582 raeburn 10103: Arguments:
10104: $nav_error - Reference to scalar which is a flag to indicate a
10105: failure to retrieve a navmap object.
10106: if $nav_error is set to 1 by scantron_get_maxbubble(), the
10107: calling routine should trap the error condition and display the warning
10108: found in &navmap_errormsg().
10109:
1.649 raeburn 10110: $scantron_config - Reference to bubblesheet format configuration hash.
10111:
1.531 jms 10112: Returns the maximum number of bubble lines that are expected to
10113: occur. Does this by walking the selected sequence rendering the
10114: resource and then checking &Apache::lonxml::get_problem_counter()
10115: for what the current value of the problem counter is.
10116:
10117: Caches the results to $env{'form.scantron_maxbubble'},
10118: $env{'form.scantron.bubble_lines.n'},
10119: $env{'form.scantron.first_bubble_line.n'} and
10120: $env{"form.scantron.sub_bubblelines.n"}
10121: which are the total number of bubble, lines, the number of bubble
10122: lines for response n and number of the first bubble line for response n,
10123: and a comma separated list of numbers of bubble lines for sub-questions
10124: (for optionresponse, matchresponse, and rankresponse items), for response n.
10125:
10126:
10127: =item scantron_validate_missingbubbles() :
10128:
10129: Validates all scanlines in the selected file to not have any
10130: answers that don't have bubbles that have not been verified
10131: to be bubble free.
10132:
10133: =item scantron_process_students() :
10134:
1.659 raeburn 10135: Routine that does the actual grading of the bubblesheet information.
1.531 jms 10136:
10137: The parsed scanline hash is added to %env
10138:
10139: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
10140: foreach resource , with the form data of
10141:
10142: 'submitted' =>'scantron'
10143: 'grade_target' =>'grade',
10144: 'grade_username'=> username of student
10145: 'grade_domain' => domain of student
10146: 'grade_courseid'=> of course
10147: 'grade_symb' => symb of resource to grade
10148:
10149: This triggers a grading pass. The problem grading code takes care
10150: of converting the bubbled letter information (now in %env) into a
10151: valid submission.
10152:
10153: =item scantron_upload_scantron_data() :
10154:
1.659 raeburn 10155: Creates the screen for adding a new bubblesheet data file to a course.
1.531 jms 10156:
10157: =item scantron_upload_scantron_data_save() :
10158:
10159: Adds a provided bubble information data file to the course if user
10160: has the correct privileges to do so.
10161:
10162: =item valid_file() :
10163:
10164: Validates that the requested bubble data file exists in the course.
10165:
10166: =item scantron_download_scantron_data() :
10167:
10168: Shows a list of the three internal files (original, corrected,
1.659 raeburn 10169: skipped) for a specific bubblesheet data file that exists in the
1.531 jms 10170: course.
10171:
10172: =item scantron_validate_ID() :
10173:
10174: Validates all scanlines in the selected file to not have any
1.556 weissno 10175: invalid or underspecified student/employee IDs
1.531 jms 10176:
1.582 raeburn 10177: =item navmap_errormsg() :
10178:
10179: Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
1.671 raeburn 10180: Should be called whenever the request to instantiate a navmap object fails.
10181:
10182: =back
1.582 raeburn 10183:
1.531 jms 10184: =back
10185:
10186: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>