Annotation of loncom/homework/grades.pm, revision 1.596.2.12.2.47
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.596.2.12.2. 7(raebur 4:9): # $Id: grades.pm,v 1.596.2.12.2.46 2019/02/19 21:27:46 raeburn Exp $
1.17 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.1 albertel 28:
1.529 jms 29:
30:
1.1 albertel 31: package Apache::grades;
32: use strict;
33: use Apache::style;
34: use Apache::lonxml;
35: use Apache::lonnet;
1.3 albertel 36: use Apache::loncommon;
1.112 ng 37: use Apache::lonhtmlcommon;
1.68 ng 38: use Apache::lonnavmaps;
1.1 albertel 39: use Apache::lonhomework;
1.456 banghart 40: use Apache::lonpickcode;
1.55 matthew 41: use Apache::loncoursedata;
1.362 albertel 42: use Apache::lonmsg();
1.596.2.4 raeburn 43: use Apache::Constants qw(:common :http);
1.167 sakharuk 44: use Apache::lonlocal;
1.386 raeburn 45: use Apache::lonenc;
1.596.2.4 raeburn 46: use Apache::bridgetask();
1.596.2.12.2. 4(raebur 47:8): use Apache::lontexconvert();
7(raebur 48:9): use HTML::Parser();
49:9): use File::MMagic;
1.170 albertel 50: use String::Similarity;
1.359 www 51: use LONCAPA;
52:
1.315 bowersj2 53: use POSIX qw(floor);
1.87 www 54:
1.435 foxr 55:
1.513 foxr 56:
1.435 foxr 57: my %perm=();
1.596.2.12.2. (raeburn 58:): my %old_essays=();
1.447 foxr 59:
1.513 foxr 60: # These variables are used to recover from ssi errors
61:
62: my $ssi_retries = 5;
63: my $ssi_error;
64: my $ssi_error_resource;
65: my $ssi_error_message;
66:
67:
68: sub ssi_with_retries {
69: my ($resource, $retries, %form) = @_;
70: my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
71: if ($response->is_error) {
72: $ssi_error = 1;
73: $ssi_error_resource = $resource;
74: $ssi_error_message = $response->code . " " . $response->message;
75: }
76:
77: return $content;
78:
79: }
80: #
81: # Prodcuces an ssi retry failure error message to the user:
82: #
83:
84: sub ssi_print_error {
85: my ($r) = @_;
1.516 raeburn 86: my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
87: $r->print('
88: <br />
89: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
90: <p>
91: '.&mt('Unable to retrieve a resource from a server:').'<br />
92: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
93: '.&mt('Error:').' '.$ssi_error_message.'
94: </p>
95: <p>'.
96: &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 />'.
97: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
98: '</p>');
99: return;
1.513 foxr 100: }
101:
1.44 ng 102: #
1.146 albertel 103: # --- Retrieve the parts from the metadata file.---
1.44 ng 104: sub getpartlist {
1.582 raeburn 105: my ($symb,$errorref) = @_;
1.439 albertel 106:
107: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 108: unless (ref($navmap)) {
109: if (ref($errorref)) {
110: $$errorref = 'navmap';
111: return;
112: }
113: }
1.439 albertel 114: my $res = $navmap->getBySymb($symb);
115: my $partlist = $res->parts();
116: my $url = $res->src();
117: my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
118:
1.146 albertel 119: my @stores;
1.439 albertel 120: foreach my $part (@{ $partlist }) {
1.146 albertel 121: foreach my $key (@metakeys) {
122: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
123: }
124: }
125: return @stores;
1.2 albertel 126: }
127:
1.44 ng 128: # --- Get the symbolic name of a problem and the url
1.324 albertel 129: sub get_symb {
1.173 albertel 130: my ($request,$silent) = @_;
1.596.2.12.2. (raeburn 131:): my $symb=$env{'form.symb'};
132:): unless ($symb) {
133:): (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
134:): $symb = &Apache::lonnet::symbread($url);
135:): if ($symb eq '') {
136:): if (!$silent) {
137:): $request->print(&mt("Unable to handle ambiguous references: [_1].",$url));
138:): return ();
139:): }
140:): }
1.173 albertel 141: }
1.418 albertel 142: &Apache::lonenc::check_decrypt(\$symb);
1.324 albertel 143: return ($symb);
1.32 ng 144: }
145:
1.129 ng 146: #--- Format fullname, username:domain if different for display
147: #--- Use anywhere where the student names are listed
148: sub nameUserString {
149: my ($type,$fullname,$uname,$udom) = @_;
150: if ($type eq 'header') {
1.485 albertel 151: return '<b> '.&mt('Fullname').' </b><span class="LC_internal_info">('.&mt('Username').')</span>';
1.129 ng 152: } else {
1.398 albertel 153: return ' '.$fullname.'<span class="LC_internal_info"> ('.$uname.
154: ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129 ng 155: }
156: }
157:
1.44 ng 158: #--- Get the partlist and the response type for a given problem. ---
159: #--- Indicate if a response type is coded handgraded or not. ---
1.39 ng 160: sub response_type {
1.582 raeburn 161: my ($symb,$response_error) = @_;
1.377 albertel 162:
163: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 164: unless (ref($navmap)) {
165: if (ref($response_error)) {
166: $$response_error = 1;
167: }
168: return;
169: }
1.377 albertel 170: my $res = $navmap->getBySymb($symb);
1.593 raeburn 171: unless (ref($res)) {
172: $$response_error = 1;
173: return;
174: }
1.377 albertel 175: my $partlist = $res->parts();
1.392 albertel 176: my %vPart =
177: map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377 albertel 178: my (%response_types,%handgrade);
179: foreach my $part (@{ $partlist }) {
1.392 albertel 180: next if (%vPart && !exists($vPart{$part}));
181:
1.377 albertel 182: my @types = $res->responseType($part);
183: my @ids = $res->responseIds($part);
184: for (my $i=0; $i < scalar(@ids); $i++) {
185: $response_types{$part}{$ids[$i]} = $types[$i];
186: $handgrade{$part.'_'.$ids[$i]} =
187: &Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
188: '.handgrade',$symb);
1.41 ng 189: }
190: }
1.377 albertel 191: return ($partlist,\%handgrade,\%response_types);
1.39 ng 192: }
193:
1.375 albertel 194: sub flatten_responseType {
195: my ($responseType) = @_;
196: my @part_response_id =
197: map {
198: my $part = $_;
199: map {
200: [$part,$_]
201: } sort(keys(%{ $responseType->{$part} }));
202: } sort(keys(%$responseType));
203: return @part_response_id;
204: }
205:
1.207 albertel 206: sub get_display_part {
1.324 albertel 207: my ($partID,$symb)=@_;
1.207 albertel 208: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
209: if (defined($display) and $display ne '') {
1.577 bisitz 210: $display.= ' (<span class="LC_internal_info">'
211: .&mt('Part ID: [_1]',$partID).'</span>)';
1.207 albertel 212: } else {
213: $display=$partID;
214: }
215: return $display;
216: }
1.269 raeburn 217:
1.118 ng 218: #--- Show resource title
219: #--- and parts and response type
220: sub showResourceInfo {
1.582 raeburn 221: my ($symb,$probTitle,$checkboxes,$res_error) = @_;
1.398 albertel 222: my $result = '<h3>'.&mt('Current Resource').': '.$probTitle.'</h3>'."\n";
1.582 raeburn 223: my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error);
224: if (ref($res_error)) {
225: if ($$res_error) {
226: return;
227: }
228: }
1.584 bisitz 229: $result.=&Apache::loncommon::start_data_table()
230: .&Apache::loncommon::start_data_table_header_row();
231: if ($checkboxes) {
232: $result.='<th> </th>';
233: }
234: $result.='<th>'.&mt('Problem Part').'</th>'
235: .'<th>'.&mt('Res. ID').'</th>'
236: .'<th>'.&mt('Type').'</th>'
237: .&Apache::loncommon::end_data_table_header_row();
1.126 ng 238: my %resptype = ();
1.122 ng 239: my $hdgrade='no';
1.154 albertel 240: my %partsseen;
1.524 raeburn 241: foreach my $partID (sort(keys(%$responseType))) {
1.584 bisitz 242: foreach my $resID (sort(keys(%{ $responseType->{$partID} }))) {
243: my $handgrade=$$handgrade{$partID.'_'.$resID};
244: my $responsetype = $responseType->{$partID}->{$resID};
245: $hdgrade = $handgrade if ($handgrade eq 'yes');
246: $result.=&Apache::loncommon::start_data_table_row();
247: if ($checkboxes) {
248: if (exists($partsseen{$partID})) {
249: $result.="<td> </td>";
250: } else {
251: $result.="<td><input type='checkbox' name='vPart' value='$partID' checked='checked' /></td>";
252: }
253: $partsseen{$partID}=1;
254: }
255: my $display_part=&get_display_part($partID,$symb);
256: $result.='<td>'.$display_part.'</td>'
257: .'<td>'.'<span class="LC_internal_info">'.$resID.'</span></td>'
258: .'<td>'.&mt($responsetype).'</td>'
1.596.2.12.2. 2(raebur 259:2): # .'<td><b>'.&mt('Handgrade: [_1]',$handgrade).'</b></td>'
1.584 bisitz 260: .&Apache::loncommon::end_data_table_row();
261: }
1.118 ng 262: }
1.584 bisitz 263: $result.=&Apache::loncommon::end_data_table();
1.147 albertel 264: return $result,$responseType,$hdgrade,$partlist,$handgrade;
1.118 ng 265: }
266:
1.434 albertel 267: sub reset_caches {
268: &reset_analyze_cache();
269: &reset_perm();
1.596.2.12.2. (raeburn 270:): &reset_old_essays();
1.434 albertel 271: }
272:
273: {
274: my %analyze_cache;
1.557 raeburn 275: my %analyze_cache_formkeys;
1.148 albertel 276:
1.434 albertel 277: sub reset_analyze_cache {
278: undef(%analyze_cache);
1.557 raeburn 279: undef(%analyze_cache_formkeys);
1.434 albertel 280: }
281:
282: sub get_analyze {
1.596.2.12.2. (raeburn 283:): my ($symb,$uname,$udom,$no_increment,$add_to_hash,$type,$trial,$rndseed,$bubbles_per_row)=@_;
1.434 albertel 284: my $key = "$symb\0$uname\0$udom";
1.596.2.2 raeburn 285: if ($type eq 'randomizetry') {
286: if ($trial ne '') {
287: $key .= "\0".$trial;
288: }
289: }
1.557 raeburn 290: if (exists($analyze_cache{$key})) {
291: my $getupdate = 0;
292: if (ref($add_to_hash) eq 'HASH') {
293: foreach my $item (keys(%{$add_to_hash})) {
294: if (ref($analyze_cache_formkeys{$key}) eq 'HASH') {
295: if (!exists($analyze_cache_formkeys{$key}{$item})) {
296: $getupdate = 1;
297: last;
298: }
299: } else {
300: $getupdate = 1;
301: }
302: }
303: }
304: if (!$getupdate) {
305: return $analyze_cache{$key};
306: }
307: }
1.434 albertel 308:
309: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
310: $url=&Apache::lonnet::clutter($url);
1.557 raeburn 311: my %form = ('grade_target' => 'analyze',
312: 'grade_domain' => $udom,
313: 'grade_symb' => $symb,
314: 'grade_courseid' => $env{'request.course.id'},
315: 'grade_username' => $uname,
316: 'grade_noincrement' => $no_increment);
1.596.2.12.2. (raeburn 317:): if ($bubbles_per_row ne '') {
318:): $form{'bubbles_per_row'} = $bubbles_per_row;
319:): }
1.596.2.2 raeburn 320: if ($type eq 'randomizetry') {
321: $form{'grade_questiontype'} = $type;
322: if ($rndseed ne '') {
323: $form{'grade_rndseed'} = $rndseed;
324: }
325: }
1.557 raeburn 326: if (ref($add_to_hash)) {
327: %form = (%form,%{$add_to_hash});
1.596.2.2 raeburn 328: }
1.557 raeburn 329: my $subresult=&ssi_with_retries($url, $ssi_retries,%form);
1.434 albertel 330: (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
331: my %analyze=&Apache::lonnet::str2hash($subresult);
1.557 raeburn 332: if (ref($add_to_hash) eq 'HASH') {
333: $analyze_cache_formkeys{$key} = $add_to_hash;
334: } else {
335: $analyze_cache_formkeys{$key} = {};
336: }
1.434 albertel 337: return $analyze_cache{$key} = \%analyze;
338: }
339:
340: sub get_order {
1.596.2.2 raeburn 341: my ($partid,$respid,$symb,$uname,$udom,$no_increment,$type,$trial,$rndseed)=@_;
342: my $analyze = &get_analyze($symb,$uname,$udom,$no_increment,undef,$type,$trial,$rndseed);
1.434 albertel 343: return $analyze->{"$partid.$respid.shown"};
344: }
345:
346: sub get_radiobutton_correct_foil {
1.596.2.2 raeburn 347: my ($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed)=@_;
348: my $analyze = &get_analyze($symb,$uname,$udom,undef,undef,$type,$trial,$rndseed);
349: my $foils = &get_order($partid,$respid,$symb,$uname,$udom,undef,$type,$trial,$rndseed);
1.555 raeburn 350: if (ref($foils) eq 'ARRAY') {
351: foreach my $foil (@{$foils}) {
352: if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
353: return $foil;
354: }
1.434 albertel 355: }
356: }
357: }
1.554 raeburn 358:
359: sub scantron_partids_tograde {
1.596.2.12.2. 1(raebur 360:7): my ($resource,$cid,$uname,$udom,$check_for_randomlist,$bubbles_per_row,$scancode) = @_;
1.554 raeburn 361: my (%analysis,@parts);
362: if (ref($resource)) {
363: my $symb = $resource->symb();
1.557 raeburn 364: my $add_to_form;
365: if ($check_for_randomlist) {
366: $add_to_form = { 'check_parts_withrandomlist' => 1,};
367: }
1.596.2.12.2. 1(raebur 368:7): if ($scancode) {
369:7): if (ref($add_to_form) eq 'HASH') {
370:7): $add_to_form->{'code_for_randomlist'} = $scancode;
371:7): } else {
372:7): $add_to_form = { 'code_for_randomlist' => $scancode,};
373:7): }
374:7): }
(raeburn 375:): my $analyze =
376:): &get_analyze($symb,$uname,$udom,undef,$add_to_form,
377:): undef,undef,undef,$bubbles_per_row);
1.554 raeburn 378: if (ref($analyze) eq 'HASH') {
379: %analysis = %{$analyze};
380: }
381: if (ref($analysis{'parts'}) eq 'ARRAY') {
382: foreach my $part (@{$analysis{'parts'}}) {
383: my ($id,$respid) = split(/\./,$part);
384: if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
385: push(@parts,$part);
386: }
387: }
388: }
389: }
390: return (\%analysis,\@parts);
391: }
392:
1.148 albertel 393: }
1.434 albertel 394:
1.118 ng 395: #--- Clean response type for display
1.335 albertel 396: #--- Currently filters option/rank/radiobutton/match/essay/Task
397: # response types only.
1.118 ng 398: sub cleanRecord {
1.336 albertel 399: my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
1.596.2.2 raeburn 400: $uname,$udom,$type,$trial,$rndseed) = @_;
1.398 albertel 401: my $grayFont = '<span class="LC_internal_info">';
1.148 albertel 402: if ($response =~ /^(option|rank)$/) {
403: my %answer=&Apache::lonnet::str2hash($answer);
1.596.2.12.2. 8(raebur 404:4): my @answer = %answer;
405:4): %answer = map {&HTML::Entities::encode($_, '"<>&')} @answer;
1.148 albertel 406: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
407: my ($toprow,$bottomrow);
408: foreach my $foil (@$order) {
409: if ($grading{$foil} == 1) {
410: $toprow.='<td><b>'.$answer{$foil}.' </b></td>';
411: } else {
412: $toprow.='<td><i>'.$answer{$foil}.' </i></td>';
413: }
1.398 albertel 414: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 415: }
416: return '<blockquote><table border="1">'.
1.466 albertel 417: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
418: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.596.2.1 raeburn 419: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 420: } elsif ($response eq 'match') {
421: my %answer=&Apache::lonnet::str2hash($answer);
1.596.2.12.2. 8(raebur 422:4): my @answer = %answer;
423:4): %answer = map {&HTML::Entities::encode($_, '"<>&')} @answer;
1.148 albertel 424: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
425: my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
426: my ($toprow,$middlerow,$bottomrow);
427: foreach my $foil (@$order) {
428: my $item=shift(@items);
429: if ($grading{$foil} == 1) {
430: $toprow.='<td><b>'.$item.' </b></td>';
1.398 albertel 431: $middlerow.='<td><b>'.$grayFont.$answer{$foil}.' </span></b></td>';
1.148 albertel 432: } else {
433: $toprow.='<td><i>'.$item.' </i></td>';
1.398 albertel 434: $middlerow.='<td><i>'.$grayFont.$answer{$foil}.' </span></i></td>';
1.148 albertel 435: }
1.398 albertel 436: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.118 ng 437: }
1.126 ng 438: return '<blockquote><table border="1">'.
1.466 albertel 439: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
440: '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148 albertel 441: $middlerow.'</tr>'.
1.466 albertel 442: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.596.2.8 raeburn 443: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 444: } elsif ($response eq 'radiobutton') {
445: my %answer=&Apache::lonnet::str2hash($answer);
446: my ($toprow,$bottomrow);
1.434 albertel 447: my $correct =
1.596.2.2 raeburn 448: &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom,$type,$trial,$rndseed);
1.434 albertel 449: foreach my $foil (@$order) {
1.148 albertel 450: if (exists($answer{$foil})) {
1.434 albertel 451: if ($foil eq $correct) {
1.466 albertel 452: $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148 albertel 453: } else {
1.466 albertel 454: $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148 albertel 455: }
456: } else {
1.466 albertel 457: $toprow.='<td>'.&mt('false').'</td>';
1.148 albertel 458: }
1.398 albertel 459: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 460: }
461: return '<blockquote><table border="1">'.
1.466 albertel 462: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
463: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.596.2.4 raeburn 464: $bottomrow.'</tr></table></blockquote>';
1.148 albertel 465: } elsif ($response eq 'essay') {
1.257 albertel 466: if (! exists ($env{'form.'.$symb})) {
1.122 ng 467: my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 468: $env{'course.'.$env{'request.course.id'}.'.domain'},
469: $env{'course.'.$env{'request.course.id'}.'.num'});
1.122 ng 470:
1.257 albertel 471: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
472: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
473: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
474: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
475: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
476: $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 477: }
1.596.2.12.2. 4(raebur 478:8): $answer = &Apache::lontexconvert::msgtexconverted($answer);
2(raebur 479:5): return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268 albertel 480: } elsif ( $response eq 'organic') {
1.596.2.12.2. 8(raebur 481:4): my $result=&mt('Smile representation: [_1]',
482:4): '"<tt>'.&HTML::Entities::encode($answer, '"<>&').'</tt>"');
1.268 albertel 483: my $jme=$record->{$version."resource.$partid.$respid.molecule"};
484: $result.=&Apache::chemresponse::jme_img($jme,$answer,400);
485: return $result;
1.335 albertel 486: } elsif ( $response eq 'Task') {
487: if ( $answer eq 'SUBMITTED') {
488: my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336 albertel 489: my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335 albertel 490: return $result;
491: } elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
492: my @matches = grep(/^\Q$version\E.*?\.instance$/,
493: keys(%{$record}));
494: return join('<br />',($version,@matches));
495:
496:
497: } else {
498: my $result =
499: '<p>'
500: .&mt('Overall result: [_1]',
501: $record->{$version."resource.$respid.$partid.status"})
502: .'</p>';
503:
504: $result .= '<ul>';
505: my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
506: keys(%{$record}));
507: foreach my $grade (sort(@grade)) {
508: my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
509: $result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
510: $dim, $record->{$grade}).
511: '</li>';
512: }
513: $result.='</ul>';
514: return $result;
515: }
1.596.2.12.2. 8(raebur 516:4): } elsif ( $response =~ m/(?:numerical|formula|custom)/) {
517:4): # Respect multiple input fields, see Bug #5409
1.440 albertel 518: $answer =
519: &Apache::loncommon::format_previous_attempt_value('submission',
520: $answer);
1.596.2.12.2. 8(raebur 521:4): return $answer;
1.122 ng 522: }
1.596.2.12.2. 8(raebur 523:4): return &HTML::Entities::encode($answer, '"<>&');
1.118 ng 524: }
525:
526: #-- A couple of common js functions
527: sub commonJSfunctions {
528: my $request = shift;
529: $request->print(<<COMMONJSFUNCTIONS);
530: <script type="text/javascript" language="javascript">
531: function radioSelection(radioButton) {
532: var selection=null;
533: if (radioButton.length > 1) {
534: for (var i=0; i<radioButton.length; i++) {
535: if (radioButton[i].checked) {
536: return radioButton[i].value;
537: }
538: }
539: } else {
540: if (radioButton.checked) return radioButton.value;
541: }
542: return selection;
543: }
544:
545: function pullDownSelection(selectOne) {
546: var selection="";
547: if (selectOne.length > 1) {
548: for (var i=0; i<selectOne.length; i++) {
549: if (selectOne[i].selected) {
550: return selectOne[i].value;
551: }
552: }
553: } else {
1.138 albertel 554: // only one value it must be the selected one
555: return selectOne.value;
1.118 ng 556: }
557: }
558: </script>
559: COMMONJSFUNCTIONS
560: }
561:
1.44 ng 562: #--- Dumps the class list with usernames,list of sections,
563: #--- section, ids and fullnames for each user.
564: sub getclasslist {
1.449 banghart 565: my ($getsec,$filterlist,$getgroup) = @_;
1.291 albertel 566: my @getsec;
1.450 banghart 567: my @getgroup;
1.442 banghart 568: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291 albertel 569: if (!ref($getsec)) {
570: if ($getsec ne '' && $getsec ne 'all') {
571: @getsec=($getsec);
572: }
573: } else {
574: @getsec=@{$getsec};
575: }
576: if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450 banghart 577: if (!ref($getgroup)) {
578: if ($getgroup ne '' && $getgroup ne 'all') {
579: @getgroup=($getgroup);
580: }
581: } else {
582: @getgroup=@{$getgroup};
583: }
584: if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291 albertel 585:
1.449 banghart 586: my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49 albertel 587: # Bail out if we were unable to get the classlist
1.56 matthew 588: return if (! defined($classlist));
1.449 banghart 589: &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56 matthew 590: #
591: my %sections;
592: my %fullnames;
1.205 matthew 593: foreach my $student (keys(%$classlist)) {
594: my $end =
595: $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
596: my $start =
597: $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
598: my $id =
599: $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
600: my $section =
601: $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
602: my $fullname =
603: $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
604: my $status =
605: $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449 banghart 606: my $group =
607: $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76 ng 608: # filter students according to status selected
1.442 banghart 609: if ($filterlist && (!($stu_status =~ /Any/))) {
610: if (!($stu_status =~ $status)) {
1.450 banghart 611: delete($classlist->{$student});
1.76 ng 612: next;
613: }
614: }
1.450 banghart 615: # filter students according to groups selected
1.453 banghart 616: my @stu_groups = split(/,/,$group);
1.450 banghart 617: if (@getgroup) {
618: my $exclude = 1;
1.454 banghart 619: foreach my $grp (@getgroup) {
620: foreach my $stu_group (@stu_groups) {
1.453 banghart 621: if ($stu_group eq $grp) {
622: $exclude = 0;
623: }
1.450 banghart 624: }
1.453 banghart 625: if (($grp eq 'none') && !$group) {
626: $exclude = 0;
627: }
1.450 banghart 628: }
629: if ($exclude) {
630: delete($classlist->{$student});
631: }
632: }
1.205 matthew 633: $section = ($section ne '' ? $section : 'none');
1.106 albertel 634: if (&canview($section)) {
1.291 albertel 635: if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103 albertel 636: $sections{$section}++;
1.450 banghart 637: if ($classlist->{$student}) {
638: $fullnames{$student}=$fullname;
639: }
1.103 albertel 640: } else {
1.205 matthew 641: delete($classlist->{$student});
1.103 albertel 642: }
643: } else {
1.205 matthew 644: delete($classlist->{$student});
1.103 albertel 645: }
1.44 ng 646: }
647: my %seen = ();
1.56 matthew 648: my @sections = sort(keys(%sections));
649: return ($classlist,\@sections,\%fullnames);
1.44 ng 650: }
651:
1.103 albertel 652: sub canmodify {
653: my ($sec)=@_;
654: if ($perm{'mgr'}) {
655: if (!defined($perm{'mgr_section'})) {
656: # can modify whole class
657: return 1;
658: } else {
659: if ($sec eq $perm{'mgr_section'}) {
660: #can modify the requested section
661: return 1;
662: } else {
663: # can't modify the request section
664: return 0;
665: }
666: }
667: }
668: #can't modify
669: return 0;
670: }
671:
672: sub canview {
673: my ($sec)=@_;
674: if ($perm{'vgr'}) {
675: if (!defined($perm{'vgr_section'})) {
676: # can modify whole class
677: return 1;
678: } else {
679: if ($sec eq $perm{'vgr_section'}) {
680: #can modify the requested section
681: return 1;
682: } else {
683: # can't modify the request section
684: return 0;
685: }
686: }
687: }
688: #can't modify
689: return 0;
690: }
691:
1.44 ng 692: #--- Retrieve the grade status of a student for all the parts
693: sub student_gradeStatus {
1.324 albertel 694: my ($symb,$udom,$uname,$partlist) = @_;
1.257 albertel 695: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44 ng 696: my %partstatus = ();
697: foreach (@$partlist) {
1.128 ng 698: my ($status,undef) = split(/_/,$record{"resource.$_.solved"},2);
1.44 ng 699: $status = 'nothing' if ($status eq '');
700: $partstatus{$_} = $status;
701: my $subkey = "resource.$_.submitted_by";
702: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
703: }
704: return %partstatus;
705: }
706:
1.45 ng 707: # hidden form and javascript that calls the form
708: # Use by verifyscript and viewgrades
709: # Shows a student's view of problem and submission
710: sub jscriptNform {
1.324 albertel 711: my ($symb) = @_;
1.442 banghart 712: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.45 ng 713: my $jscript='<script type="text/javascript" language="javascript">'."\n".
714: ' function viewOneStudent(user,domain) {'."\n".
715: ' document.onestudent.student.value = user;'."\n".
716: ' document.onestudent.userdom.value = domain;'."\n".
717: ' document.onestudent.submit();'."\n".
718: ' }'."\n".
719: '</script>'."\n";
720: $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418 albertel 721: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 722: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
723: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.442 banghart 724: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.45 ng 725: '<input type="hidden" name="command" value="submission" />'."\n".
726: '<input type="hidden" name="student" value="" />'."\n".
727: '<input type="hidden" name="userdom" value="" />'."\n".
728: '</form>'."\n";
729: return $jscript;
730: }
1.39 ng 731:
1.447 foxr 732:
733:
1.315 bowersj2 734: # Given the score (as a number [0-1] and the weight) what is the final
735: # point value? This function will round to the nearest tenth, third,
736: # or quarter if one of those is within the tolerance of .00001.
1.316 albertel 737: sub compute_points {
1.315 bowersj2 738: my ($score, $weight) = @_;
739:
740: my $tolerance = .00001;
741: my $points = $score * $weight;
742:
743: # Check for nearness to 1/x.
744: my $check_for_nearness = sub {
745: my ($factor) = @_;
746: my $num = ($points * $factor) + $tolerance;
747: my $floored_num = floor($num);
1.316 albertel 748: if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315 bowersj2 749: return $floored_num / $factor;
750: }
751: return $points;
752: };
753:
754: $points = $check_for_nearness->(10);
755: $points = $check_for_nearness->(3);
756: $points = $check_for_nearness->(4);
757:
758: return $points;
759: }
760:
1.44 ng 761: #------------------ End of general use routines --------------------
1.87 www 762:
763: #
764: # Find most similar essay
765: #
766:
767: sub most_similar {
1.596.2.12.2. (raeburn 768:): my ($uname,$udom,$symb,$uessay)=@_;
769:):
770:): unless ($symb) { return ''; }
771:):
772:): unless (ref($old_essays{$symb}) eq 'HASH') { return ''; }
1.87 www 773:
774: # ignore spaces and punctuation
775:
776: $uessay=~s/\W+/ /gs;
777:
1.282 www 778: # ignore empty submissions (occuring when only files are sent)
779:
1.596.2.4 raeburn 780: unless ($uessay=~/\w+/s) { return ''; }
1.282 www 781:
1.87 www 782: # these will be returned. Do not care if not at least 50 percent similar
1.88 www 783: my $limit=0.6;
1.87 www 784: my $sname='';
785: my $sdom='';
786: my $scrsid='';
787: my $sessay='';
788: # go through all essays ...
1.596.2.12.2. (raeburn 789:): foreach my $tkey (keys(%{$old_essays{$symb}})) {
1.426 albertel 790: my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87 www 791: # ... except the same student
1.426 albertel 792: next if (($tname eq $uname) && ($tdom eq $udom));
1.596.2.12.2. (raeburn 793:): my $tessay=$old_essays{$symb}{$tkey};
1.426 albertel 794: $tessay=~s/\W+/ /gs;
1.87 www 795: # String similarity gives up if not even limit
1.426 albertel 796: my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87 www 797: # Found one
1.426 albertel 798: if ($tsimilar>$limit) {
799: $limit=$tsimilar;
800: $sname=$tname;
801: $sdom=$tdom;
802: $scrsid=$tcrsid;
1.596.2.12.2. (raeburn 803:): $sessay=$old_essays{$symb}{$tkey};
1.426 albertel 804: }
1.87 www 805: }
1.88 www 806: if ($limit>0.6) {
1.87 www 807: return ($sname,$sdom,$scrsid,$sessay,$limit);
808: } else {
809: return ('','','','',0);
810: }
811: }
812:
1.44 ng 813: #-------------------------------------------------------------------
814:
815: #------------------------------------ Receipt Verification Routines
1.45 ng 816: #
1.44 ng 817: #--- Check whether a receipt number is valid.---
818: sub verifyreceipt {
819: my $request = shift;
820:
1.257 albertel 821: my $courseid = $env{'request.course.id'};
1.184 www 822: my $receipt = &Apache::lonnet::recprefix($courseid).'-'.
1.257 albertel 823: $env{'form.receipt'};
1.44 ng 824: $receipt =~ s/[^\-\d]//g;
1.378 albertel 825: my ($symb) = &get_symb($request);
1.44 ng 826:
1.487 albertel 827: my $title.=
828: '<h3><span class="LC_info">'.
1.584 bisitz 829: &mt('Verifying Receipt No. [_1]',$receipt).
1.487 albertel 830: '</span></h3>'."\n".
1.596.2.12.2. 2(raebur 831:3): '<h4>'.&mt('[_1]Resource: [_2]','<b>','</b>'.$env{'form.probTitle'}).
1.487 albertel 832: '</h4>'."\n";
1.44 ng 833:
834: my ($string,$contents,$matches) = ('','',0);
1.56 matthew 835: my (undef,undef,$fullname) = &getclasslist('all','0');
1.177 albertel 836:
837: my $receiptparts=0;
1.390 albertel 838: if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
839: $env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177 albertel 840: my $parts=['0'];
1.582 raeburn 841: if ($receiptparts) {
842: my $res_error;
843: ($parts)=&response_type($symb,\$res_error);
844: if ($res_error) {
845: return &navmap_errormsg();
846: }
847: }
1.486 albertel 848:
849: my $header =
850: &Apache::loncommon::start_data_table().
851: &Apache::loncommon::start_data_table_header_row().
1.487 albertel 852: '<th> '.&mt('Fullname').' </th>'."\n".
853: '<th> '.&mt('Username').' </th>'."\n".
854: '<th> '.&mt('Domain').' </th>';
1.486 albertel 855: if ($receiptparts) {
1.487 albertel 856: $header.='<th> '.&mt('Problem Part').' </th>';
1.486 albertel 857: }
858: $header.=
859: &Apache::loncommon::end_data_table_header_row();
860:
1.294 albertel 861: foreach (sort
862: {
863: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
864: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
865: }
866: return $a cmp $b;
867: } (keys(%$fullname))) {
1.44 ng 868: my ($uname,$udom)=split(/\:/);
1.177 albertel 869: foreach my $part (@$parts) {
870: if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
1.486 albertel 871: $contents.=
872: &Apache::loncommon::start_data_table_row().
873: '<td> '."\n".
1.177 albertel 874: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 875: '\');" target="_self">'.$$fullname{$_}.'</a> </td>'."\n".
1.177 albertel 876: '<td> '.$uname.' </td>'.
877: '<td> '.$udom.' </td>';
878: if ($receiptparts) {
879: $contents.='<td> '.$part.' </td>';
880: }
1.486 albertel 881: $contents.=
882: &Apache::loncommon::end_data_table_row()."\n";
1.177 albertel 883:
884: $matches++;
885: }
1.44 ng 886: }
887: }
888: if ($matches == 0) {
1.584 bisitz 889: $string = $title
890: .'<p class="LC_warning">'
891: .&mt('No match found for the above receipt number.')
892: .'</p>';
1.44 ng 893: } else {
1.324 albertel 894: $string = &jscriptNform($symb).$title.
1.487 albertel 895: '<p>'.
1.584 bisitz 896: &mt('The above receipt number matches the following [quant,_1,student].',$matches).
1.487 albertel 897: '</p>'.
1.486 albertel 898: $header.
899: $contents.
900: &Apache::loncommon::end_data_table()."\n";
1.44 ng 901: }
1.324 albertel 902: return $string.&show_grading_menu_form($symb);
1.44 ng 903: }
904:
905: #--- This is called by a number of programs.
906: #--- Called from the Grading Menu - View/Grade an individual student
907: #--- Also called directly when one clicks on the subm button
908: # on the problem page.
1.30 ng 909: sub listStudents {
1.41 ng 910: my ($request) = shift;
1.49 albertel 911:
1.324 albertel 912: my ($symb) = &get_symb($request);
1.257 albertel 913: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
914: my $cnum = $env{"course.$env{'request.course.id'}.num"};
915: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449 banghart 916: my $getgroup = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.257 albertel 917: my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
1.548 bisitz 918: my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
1.257 albertel 919: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
920: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.49 albertel 921:
1.548 bisitz 922: my $result='<h3><span class="LC_info"> '
923: .&mt("$viewgrade Submissions for a Student or a Group of Students")
1.485 albertel 924: .'</span></h3>';
1.118 ng 925:
1.324 albertel 926: my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($symb,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
1.49 albertel 927:
1.596.2.12.2. 6(raebur 928:6): my %js_lt = &Apache::lonlocal::texthash (
1.559 raeburn 929: 'multiple' => 'Please select a student or group of students before clicking on the Next button.',
930: 'single' => 'Please select the student before clicking on the Next button.',
931: );
1.596.2.12.2. 6(raebur 932:6): &js_escape(\%js_lt);
1.45 ng 933: $request->print(<<LISTJAVASCRIPT);
934: <script type="text/javascript" language="javascript">
1.110 ng 935: function checkSelect(checkBox) {
936: var ctr=0;
937: var sense="";
938: if (checkBox.length > 1) {
939: for (var i=0; i<checkBox.length; i++) {
940: if (checkBox[i].checked) {
941: ctr++;
942: }
943: }
1.596.2.12.2. 6(raebur 944:6): sense = '$js_lt{'multiple'}';
1.110 ng 945: } else {
946: if (checkBox.checked) {
947: ctr = 1;
948: }
1.596.2.12.2. 6(raebur 949:6): sense = '$js_lt{'single'}';
1.110 ng 950: }
951: if (ctr == 0) {
1.485 albertel 952: alert(sense);
1.110 ng 953: return false;
954: }
955: document.gradesub.submit();
956: }
957:
958: function reLoadList(formname) {
1.112 ng 959: if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110 ng 960: formname.command.value = 'submission';
961: formname.submit();
962: }
1.45 ng 963: </script>
964: LISTJAVASCRIPT
965:
1.118 ng 966: &commonJSfunctions($request);
1.41 ng 967: $request->print($result);
1.39 ng 968:
1.401 albertel 969: my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked="checked"' : '';
970: my $checklastsub = $checkhdgrade eq '' ? 'checked="checked"' : '';
1.154 albertel 971: my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
1.485 albertel 972: "\n".$table;
973:
1.561 bisitz 974: $gradeTable .= &Apache::lonhtmlcommon::start_pick_box();
975: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Problem Text'))
976: .'<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n"
977: .'<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n"
978: .'<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label><br />'."\n"
979: .&Apache::lonhtmlcommon::row_closure();
980: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('View Answer'))
981: .'<label><input type="radio" name="vAns" value="no" /> '.&mt('no').' </label>'."\n"
982: .'<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n"
983: .'<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label><br />'."\n"
984: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 985:
986: my $submission_options;
1.257 albertel 987: if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
1.485 albertel 988: $submission_options.=
989: '<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> '.&mt('essay part only').' </label>'."\n";
1.49 albertel 990: }
1.442 banghart 991: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
992: my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257 albertel 993: $env{'form.Status'} = $saveStatus;
1.485 albertel 994: $submission_options.=
1.592 bisitz 995: '<span class="LC_nobreak">'.
996: '<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> '.
997: &mt('last submission only').' </label></span>'."\n".
998: '<span class="LC_nobreak">'.
999: '<label><input type="radio" name="lastSub" value="last" /> '.
1000: &mt('last submission & parts info').' </label></span>'."\n".
1001: '<span class="LC_nobreak">'.
1002: '<label><input type="radio" name="lastSub" value="datesub" /> '.
1003: &mt('by dates and submissions').'</label></span>'."\n".
1004: '<span class="LC_nobreak">'.
1005: '<label><input type="radio" name="lastSub" value="all" /> '.
1006: &mt('all details').'</label></span>';
1.561 bisitz 1007: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Submissions'))
1008: .$submission_options
1009: .&Apache::lonhtmlcommon::row_closure();
1010:
1011: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Grading Increments'))
1012: .'<select name="increment">'
1013: .'<option value="1">'.&mt('Whole Points').'</option>'
1014: .'<option value=".5">'.&mt('Half Points').'</option>'
1015: .'<option value=".25">'.&mt('Quarter Points').'</option>'
1016: .'<option value=".1">'.&mt('Tenths of a Point').'</option>'
1017: .'</select>'
1018: .&Apache::lonhtmlcommon::row_closure();
1.485 albertel 1019:
1020: $gradeTable .=
1.432 banghart 1021: &build_section_inputs().
1.45 ng 1022: '<input type="hidden" name="submitonly" value="'.$submitonly.'" />'."\n".
1.257 albertel 1023: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" /><br />'."\n".
1024: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
1025: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1026: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.418 albertel 1027: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110 ng 1028: '<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
1029:
1.257 albertel 1030: if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
1.561 bisitz 1031: $gradeTable .= '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
1.124 ng 1032: } else {
1.561 bisitz 1033: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Student Status'))
1034: .&Apache::lonhtmlcommon::StatusOptions(
1035: $saveStatus,undef,1,'javascript:reLoadList(this.form);')
1036: .&Apache::lonhtmlcommon::row_closure();
1.124 ng 1037: }
1.112 ng 1038:
1.561 bisitz 1039: $gradeTable .= &Apache::lonhtmlcommon::row_title(&mt('Check For Plagiarism'))
1040: .'<input type="checkbox" name="checkPlag" checked="checked" />'
1041: .&Apache::lonhtmlcommon::row_closure(1)
1042: .&Apache::lonhtmlcommon::end_pick_box();
1043:
1044: $gradeTable .= '<p>'
1045: .&mt('To '.lc($viewgrade)." a submission or a group of submissions, click on the check box(es) next to the student's name(s). Then click on the Next button.")."\n"
1046: .'<input type="hidden" name="command" value="processGroup" />'
1047: .'</p>';
1.249 albertel 1048:
1049: # checkall buttons
1050: $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110 ng 1051: $gradeTable.='<input type="button" '."\n".
1.589 bisitz 1052: 'onclick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1053: 'value="'.&mt('Next').' →" /> <br />'."\n";
1.249 albertel 1054: $gradeTable.=&check_buttons();
1.450 banghart 1055: my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.474 albertel 1056: $gradeTable.= &Apache::loncommon::start_data_table().
1057: &Apache::loncommon::start_data_table_header_row();
1.110 ng 1058: my $loop = 0;
1059: while ($loop < 2) {
1.485 albertel 1060: $gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
1061: '<th>'.&nameUserString('header').' '.&mt('Section/Group').'</th>';
1.301 albertel 1062: if ($env{'form.showgrading'} eq 'yes'
1063: && $submitonly ne 'queued'
1064: && $submitonly ne 'all') {
1.485 albertel 1065: foreach my $part (sort(@$partlist)) {
1066: my $display_part=
1067: &get_display_part((split(/_/,$part))[0],$symb);
1068: $gradeTable.=
1069: '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
1.110 ng 1070: }
1.301 albertel 1071: } elsif ($submitonly eq 'queued') {
1.474 albertel 1072: $gradeTable.='<th>'.&mt('Queue Status').' </th>';
1.110 ng 1073: }
1074: $loop++;
1.126 ng 1075: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 1076: }
1.474 albertel 1077: $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
1.41 ng 1078:
1.45 ng 1079: my $ctr = 0;
1.294 albertel 1080: foreach my $student (sort
1081: {
1082: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
1083: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
1084: }
1085: return $a cmp $b;
1086: }
1087: (keys(%$fullname))) {
1.41 ng 1088: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 1089:
1.110 ng 1090: my %status = ();
1.301 albertel 1091:
1092: if ($submitonly eq 'queued') {
1093: my %queue_status =
1094: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
1095: $udom,$uname);
1096: next if (!defined($queue_status{'gradingqueue'}));
1097: $status{'gradingqueue'} = $queue_status{'gradingqueue'};
1098: }
1099:
1100: if ($env{'form.showgrading'} eq 'yes'
1101: && $submitonly ne 'queued'
1102: && $submitonly ne 'all') {
1.324 albertel 1103: (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 1104: my $submitted = 0;
1.164 albertel 1105: my $graded = 0;
1.248 albertel 1106: my $incorrect = 0;
1.110 ng 1107: foreach (keys(%status)) {
1.145 albertel 1108: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 1109: $graded = 1 if ($status{$_} =~ /^ungraded/);
1110: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1111:
1.110 ng 1112: my ($foo,$partid,$foo1) = split(/\./,$_);
1113: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145 albertel 1114: $submitted = 0;
1.150 albertel 1115: my ($part)=split(/\./,$partid);
1.110 ng 1116: $gradeTable.='<input type="hidden" name="'.
1.150 albertel 1117: $student.':'.$part.':submitted_by" value="'.
1.110 ng 1118: $status{'resource.'.$partid.'.submitted_by'}.'" />';
1119: }
1.41 ng 1120: }
1.248 albertel 1121:
1.156 albertel 1122: next if (!$submitted && ($submitonly eq 'yes' ||
1123: $submitonly eq 'incorrect' ||
1124: $submitonly eq 'graded'));
1.248 albertel 1125: next if (!$graded && ($submitonly eq 'graded'));
1126: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 1127: }
1.34 ng 1128:
1.45 ng 1129: $ctr++;
1.249 albertel 1130: my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452 banghart 1131: my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104 albertel 1132: if ( $perm{'vgr'} eq 'F' ) {
1.474 albertel 1133: if ($ctr%2 ==1) {
1134: $gradeTable.= &Apache::loncommon::start_data_table_row();
1135: }
1.126 ng 1136: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.563 bisitz 1137: '<td align="center"><label><input type="checkbox" name="stuinfo" value="'.
1.249 albertel 1138: $student.':'.$$fullname{$student}.':::SECTION'.$section.
1139: ') " /> </label></td>'."\n".'<td>'.
1140: &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474 albertel 1141: ' '.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110 ng 1142:
1.257 albertel 1143: if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.524 raeburn 1144: foreach (sort(keys(%status))) {
1.485 albertel 1145: next if ($_ =~ /^resource.*?submitted_by$/);
1146: $gradeTable.='<td align="center"> '.&mt($status{$_}).' </td>'."\n";
1.110 ng 1147: }
1.41 ng 1148: }
1.126 ng 1149: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474 albertel 1150: if ($ctr%2 ==0) {
1151: $gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
1152: }
1.41 ng 1153: }
1154: }
1.110 ng 1155: if ($ctr%2 ==1) {
1.126 ng 1156: $gradeTable.='<td> </td><td> </td><td> </td>';
1.301 albertel 1157: if ($env{'form.showgrading'} eq 'yes'
1158: && $submitonly ne 'queued'
1159: && $submitonly ne 'all') {
1.110 ng 1160: foreach (@$partlist) {
1161: $gradeTable.='<td> </td>';
1162: }
1.301 albertel 1163: } elsif ($submitonly eq 'queued') {
1164: $gradeTable.='<td> </td>';
1.110 ng 1165: }
1.474 albertel 1166: $gradeTable.=&Apache::loncommon::end_data_table_row();
1.110 ng 1167: }
1168:
1.474 albertel 1169: $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.589 bisitz 1170: '<input type="button" '.
1171: 'onclick="javascript:checkSelect(this.form.stuinfo);" '.
1172: 'value="'.&mt('Next').' →" /></form>'."\n";
1.45 ng 1173: if ($ctr == 0) {
1.96 albertel 1174: my $num_students=(scalar(keys(%$fullname)));
1175: if ($num_students eq 0) {
1.485 albertel 1176: $gradeTable='<br /> <span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
1.96 albertel 1177: } else {
1.171 albertel 1178: my $submissions='submissions';
1179: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
1180: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 1181: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.398 albertel 1182: $gradeTable='<br /> <span class="LC_warning">'.
1.596.2.12.2. 4(raebur 1183:3): &mt('No '.$submissions.' found for this resource for any students. ([quant,_1,student] checked for '.$submissions.')',
1.485 albertel 1184: $num_students).
1185: '</span><br />';
1.96 albertel 1186: }
1.46 ng 1187: } elsif ($ctr == 1) {
1.474 albertel 1188: $gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45 ng 1189: }
1.324 albertel 1190: $gradeTable.=&show_grading_menu_form($symb);
1.45 ng 1191: $request->print($gradeTable);
1.44 ng 1192: return '';
1.10 ng 1193: }
1194:
1.44 ng 1195: #---- Called from the listStudents routine
1.249 albertel 1196:
1197: sub check_script {
1198: my ($form, $type)=@_;
1199: my $chkallscript='<script type="text/javascript">
1200: function checkall() {
1201: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1202: ele = document.forms.'.$form.'.elements[i];
1203: if (ele.name == "'.$type.'") {
1204: document.forms.'.$form.'.elements[i].checked=true;
1205: }
1206: }
1207: }
1208:
1209: function checksec() {
1210: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1211: ele = document.forms.'.$form.'.elements[i];
1212: string = document.forms.'.$form.'.chksec.value;
1213: if
1214: (ele.value.indexOf(":::SECTION"+string)>0) {
1215: document.forms.'.$form.'.elements[i].checked=true;
1216: }
1217: }
1218: }
1219:
1220:
1221: function uncheckall() {
1222: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1223: ele = document.forms.'.$form.'.elements[i];
1224: if (ele.name == "'.$type.'") {
1225: document.forms.'.$form.'.elements[i].checked=false;
1226: }
1227: }
1228: }
1229:
1230: </script>'."\n";
1231: return $chkallscript;
1232: }
1233:
1234: sub check_buttons {
1.485 albertel 1235: my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
1236: $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" /> ';
1237: $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
1.249 albertel 1238: $buttons.='<input type="text" size="5" name="chksec" /> ';
1239: return $buttons;
1240: }
1241:
1.44 ng 1242: # Displays the submissions for one student or a group of students
1.34 ng 1243: sub processGroup {
1.41 ng 1244: my ($request) = shift;
1245: my $ctr = 0;
1.155 albertel 1246: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 1247: my $total = scalar(@stuchecked)-1;
1.45 ng 1248:
1.396 banghart 1249: foreach my $student (@stuchecked) {
1250: my ($uname,$udom,$fullname) = split(/:/,$student);
1.257 albertel 1251: $env{'form.student'} = $uname;
1252: $env{'form.userdom'} = $udom;
1253: $env{'form.fullname'} = $fullname;
1.41 ng 1254: &submission($request,$ctr,$total);
1255: $ctr++;
1256: }
1257: return '';
1.35 ng 1258: }
1.34 ng 1259:
1.44 ng 1260: #------------------------------------------------------------------------------------
1261: #
1262: #-------------------------- Next few routines handles grading by student, essentially
1263: # handles essay response type problem/part
1264: #
1265: #--- Javascript to handle the submission page functionality ---
1266: sub sub_page_js {
1267: my $request = shift;
1.596.2.12.2. 6(raebur 1268:6): my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
7(raebur 1269:6): &js_escape(\$alertmsg);
1.44 ng 1270: $request->print(<<SUBJAVASCRIPT);
1271: <script type="text/javascript" language="javascript">
1.71 ng 1272: function updateRadio(formname,id,weight) {
1.125 ng 1273: var gradeBox = formname["GD_BOX"+id];
1274: var radioButton = formname["RADVAL"+id];
1275: var oldpts = formname["oldpts"+id].value;
1.72 ng 1276: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 1277: gradeBox.value = pts;
1278: var resetbox = false;
1279: if (isNaN(pts) || pts < 0) {
1.539 riegler 1280: alert("$alertmsg"+pts);
1.71 ng 1281: for (var i=0; i<radioButton.length; i++) {
1282: if (radioButton[i].checked) {
1283: gradeBox.value = i;
1284: resetbox = true;
1285: }
1286: }
1287: if (!resetbox) {
1288: formtextbox.value = "";
1289: }
1290: return;
1.44 ng 1291: }
1.71 ng 1292:
1293: if (pts > weight) {
1294: var resp = confirm("You entered a value ("+pts+
1295: ") greater than the weight for the part. Accept?");
1296: if (resp == false) {
1.125 ng 1297: gradeBox.value = oldpts;
1.71 ng 1298: return;
1299: }
1.44 ng 1300: }
1.13 albertel 1301:
1.71 ng 1302: for (var i=0; i<radioButton.length; i++) {
1303: radioButton[i].checked=false;
1304: if (pts == i && pts != "") {
1305: radioButton[i].checked=true;
1306: }
1307: }
1308: updateSelect(formname,id);
1.125 ng 1309: formname["stores"+id].value = "0";
1.41 ng 1310: }
1.5 albertel 1311:
1.72 ng 1312: function writeBox(formname,id,pts) {
1.125 ng 1313: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1314: if (checkSolved(formname,id) == 'update') {
1315: gradeBox.value = pts;
1316: } else {
1.125 ng 1317: var oldpts = formname["oldpts"+id].value;
1.72 ng 1318: gradeBox.value = oldpts;
1.125 ng 1319: var radioButton = formname["RADVAL"+id];
1.71 ng 1320: for (var i=0; i<radioButton.length; i++) {
1321: radioButton[i].checked=false;
1.72 ng 1322: if (i == oldpts) {
1.71 ng 1323: radioButton[i].checked=true;
1324: }
1325: }
1.41 ng 1326: }
1.125 ng 1327: formname["stores"+id].value = "0";
1.71 ng 1328: updateSelect(formname,id);
1329: return;
1.41 ng 1330: }
1.44 ng 1331:
1.71 ng 1332: function clearRadBox(formname,id) {
1333: if (checkSolved(formname,id) == 'noupdate') {
1334: updateSelect(formname,id);
1335: return;
1336: }
1.125 ng 1337: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1338: for (var i=0; i<gradeSelect.length; i++) {
1339: if (gradeSelect[i].selected) {
1340: var selectx=i;
1341: }
1342: }
1.125 ng 1343: var stores = formname["stores"+id];
1.71 ng 1344: if (selectx == stores.value) { return };
1.125 ng 1345: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1346: gradeBox.value = "";
1.125 ng 1347: var radioButton = formname["RADVAL"+id];
1.71 ng 1348: for (var i=0; i<radioButton.length; i++) {
1349: radioButton[i].checked=false;
1350: }
1351: stores.value = selectx;
1352: }
1.5 albertel 1353:
1.71 ng 1354: function checkSolved(formname,id) {
1.125 ng 1355: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1356: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1357: if (!reply) {return "noupdate";}
1.120 ng 1358: formname.overRideScore.value = 'yes';
1.41 ng 1359: }
1.71 ng 1360: return "update";
1.13 albertel 1361: }
1.71 ng 1362:
1363: function updateSelect(formname,id) {
1.125 ng 1364: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1365: return;
1.41 ng 1366: }
1.33 ng 1367:
1.121 ng 1368: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1369: function checksubmit(formname,val,total,parttot) {
1.121 ng 1370: formname.gradeOpt.value = val;
1.71 ng 1371: if (val == "Save & Next") {
1372: for (i=0;i<=total;i++) {
1373: for (j=0;j<parttot;j++) {
1.125 ng 1374: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1375: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1376: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1377: if (points == "") {
1.125 ng 1378: var name = formname["name"+i].value;
1.129 ng 1379: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1380: var resp = confirm("You did not assign a score for "+studentID+
1381: ", part "+partid+". Continue?");
1.71 ng 1382: if (resp == false) {
1.125 ng 1383: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1384: return false;
1385: }
1386: }
1387: }
1388: }
1389: }
1390: }
1.121 ng 1391: if (val == "Grade Student") {
1392: formname.showgrading.value = "yes";
1393: if (formname.Status.value == "") {
1394: formname.Status.value = "Active";
1395: }
1396: formname.studentNo.value = total;
1397: }
1.120 ng 1398: formname.submit();
1399: }
1400:
1.71 ng 1401: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1402: function checkSubmitPage(formname,total) {
1403: noscore = new Array(100);
1404: var ptr = 0;
1405: for (i=1;i<total;i++) {
1.125 ng 1406: var partid = formname["q_"+i].value;
1.127 ng 1407: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1408: var points = formname["GD_BOX"+i+"_"+partid].value;
1409: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1410: if (points == "" && status != "correct_by_student") {
1411: noscore[ptr] = i;
1412: ptr++;
1413: }
1414: }
1415: }
1416: if (ptr != 0) {
1417: var sense = ptr == 1 ? ": " : "s: ";
1418: var prolist = "";
1419: if (ptr == 1) {
1420: prolist = noscore[0];
1421: } else {
1422: var i = 0;
1423: while (i < ptr-1) {
1424: prolist += noscore[i]+", ";
1425: i++;
1426: }
1427: prolist += "and "+noscore[i];
1428: }
1429: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1430: if (resp == false) {
1431: return false;
1432: }
1433: }
1.45 ng 1434:
1.71 ng 1435: formname.submit();
1436: }
1437: </script>
1438: SUBJAVASCRIPT
1439: }
1.45 ng 1440:
1.71 ng 1441: #--- javascript for essay type problem --
1442: sub sub_page_kw_js {
1443: my $request = shift;
1.80 ng 1444: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1445: &commonJSfunctions($request);
1.350 albertel 1446:
1.351 albertel 1447: my $inner_js_msg_central=<<INNERJS;
1.350 albertel 1448: <script text="text/javascript">
1449: function checkInput() {
1450: opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
1451: var nmsg = opener.document.SCORE.savemsgN.value;
1452: var usrctr = document.msgcenter.usrctr.value;
1453: var newval = opener.document.SCORE["newmsg"+usrctr];
1454: newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
1455:
1456: var msgchk = "";
1457: if (document.msgcenter.subchk.checked) {
1458: msgchk = "msgsub,";
1459: }
1460: var includemsg = 0;
1461: for (var i=1; i<=nmsg; i++) {
1462: var opnmsg = opener.document.SCORE["savemsg"+i];
1463: var frmmsg = document.msgcenter["msg"+i];
1464: opnmsg.value = opener.checkEntities(frmmsg.value);
1465: var showflg = opener.document.SCORE["shownOnce"+i];
1466: showflg.value = "1";
1467: var chkbox = document.msgcenter["msgn"+i];
1468: if (chkbox.checked) {
1469: msgchk += "savemsg"+i+",";
1470: includemsg = 1;
1471: }
1472: }
1473: if (document.msgcenter.newmsgchk.checked) {
1474: msgchk += "newmsg"+usrctr;
1475: includemsg = 1;
1476: }
1477: imgformname = opener.document.SCORE["mailicon"+usrctr];
1478: imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
1479: var includemsg = opener.document.SCORE["includemsg"+usrctr];
1480: includemsg.value = msgchk;
1481:
1482: self.close()
1483:
1484: }
1485: </script>
1486: INNERJS
1487:
1.351 albertel 1488: my $inner_js_highlight_central=<<INNERJS;
1489: <script type="text/javascript">
1490: function updateChoice(flag) {
1491: opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
1492: opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
1493: opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
1494: opener.document.SCORE.refresh.value = "on";
1495: if (opener.document.SCORE.keywords.value!=""){
1496: opener.document.SCORE.submit();
1497: }
1498: self.close()
1499: }
1500: </script>
1501: INNERJS
1502:
1503: my $start_page_msg_central =
1504: &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
1505: {'js_ready' => 1,
1506: 'only_body' => 1,
1507: 'bgcolor' =>'#FFFFFF',});
1508: my $end_page_msg_central =
1509: &Apache::loncommon::end_page({'js_ready' => 1});
1510:
1511:
1512: my $start_page_highlight_central =
1513: &Apache::loncommon::start_page('Highlight Central',
1514: $inner_js_highlight_central,
1.350 albertel 1515: {'js_ready' => 1,
1516: 'only_body' => 1,
1517: 'bgcolor' =>'#FFFFFF',});
1.351 albertel 1518: my $end_page_highlight_central =
1.350 albertel 1519: &Apache::loncommon::end_page({'js_ready' => 1});
1520:
1.219 www 1521: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1522: $docopen=~s/^document\.//;
1.596.2.12.2. 6(raebur 1523:6): my %js_lt = &Apache::lonlocal::texthash(
1.596.2.4 raeburn 1524: keyw => 'Keywords list, separated by a space. Add/delete to list if desired.',
1525: plse => 'Please select a word or group of words from document and then click this link.',
1526: adds => 'Add selection to keyword list? Edit if desired.',
1.596.2.12.2. 6(raebur 1527:6): col1 => 'red',
1528:6): col2 => 'green',
1529:6): col3 => 'blue',
1530:6): siz1 => 'normal',
1531:6): siz2 => '+1',
1532:6): siz3 => '+2',
1533:6): sty1 => 'normal',
1534:6): sty2 => 'italic',
1535:6): sty3 => 'bold',
1536:6): );
1537:6): my %html_js_lt = &Apache::lonlocal::texthash(
1.596.2.4 raeburn 1538: comp => 'Compose Message for: ',
1539: incl => 'Include',
1540: type => 'Type',
1541: subj => 'Subject',
1542: mesa => 'Message',
1543: new => 'New',
1544: save => 'Save',
1545: canc => 'Cancel',
1546: kehi => 'Keyword Highlight Options',
1547: txtc => 'Text Color',
1548: font => 'Font Size',
1549: fnst => 'Font Style',
1550: );
1.596.2.12.2. 6(raebur 1551:6): &js_escape(\%js_lt);
1552:6): &html_escape(\%html_js_lt);
1553:6): &js_escape(\%html_js_lt);
1.71 ng 1554: $request->print(<<SUBJAVASCRIPT);
1555: <script type="text/javascript" language="javascript">
1.45 ng 1556:
1.44 ng 1557: //===================== Show list of keywords ====================
1.122 ng 1558: function keywords(formname) {
1.596.2.12.2. 6(raebur 1559:6): var nret = prompt("$js_lt{'keyw'}",formname.keywords.value);
1.44 ng 1560: if (nret==null) return;
1.122 ng 1561: formname.keywords.value = nret;
1.44 ng 1562:
1.122 ng 1563: if (formname.keywords.value != "") {
1.128 ng 1564: formname.refresh.value = "on";
1.122 ng 1565: formname.submit();
1.44 ng 1566: }
1567: return;
1568: }
1569:
1570: //===================== Script to view submitted by ==================
1571: function viewSubmitter(submitter) {
1572: document.SCORE.refresh.value = "on";
1573: document.SCORE.NCT.value = "1";
1574: document.SCORE.unamedom0.value = submitter;
1575: document.SCORE.submit();
1576: return;
1577: }
1578:
1579: //===================== Script to add keyword(s) ==================
1580: function getSel() {
1581: if (document.getSelection) txt = document.getSelection();
1582: else if (document.selection) txt = document.selection.createRange().text;
1583: else return;
1584: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1585: if (cleantxt=="") {
1.596.2.12.2. 6(raebur 1586:6): alert("$js_lt{'plse'}");
1.44 ng 1587: return;
1588: }
1.596.2.12.2. 6(raebur 1589:6): var nret = prompt("$js_lt{'adds'}",cleantxt);
1.44 ng 1590: if (nret==null) return;
1.127 ng 1591: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1592: if (document.SCORE.keywords.value != "") {
1.127 ng 1593: document.SCORE.refresh.value = "on";
1.44 ng 1594: document.SCORE.submit();
1595: }
1596: return;
1597: }
1598:
1599: //====================== Script for composing message ==============
1.80 ng 1600: // preload images
1601: img1 = new Image();
1602: img1.src = "$iconpath/mailbkgrd.gif";
1603: img2 = new Image();
1604: img2.src = "$iconpath/mailto.gif";
1605:
1.44 ng 1606: function msgCenter(msgform,usrctr,fullname) {
1607: var Nmsg = msgform.savemsgN.value;
1608: savedMsgHeader(Nmsg,usrctr,fullname);
1609: var subject = msgform.msgsub.value;
1.127 ng 1610: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1611: re = /msgsub/;
1612: var shwsel = "";
1613: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1614: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1615: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1616: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1617: var testmsg = "savemsg"+i+",";
1618: re = new RegExp(testmsg,"g");
1.44 ng 1619: shwsel = "";
1620: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1621: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1622: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1623: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1624: //any < is already converted to <, etc. However, only once!!
1.44 ng 1625: }
1.125 ng 1626: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1627: shwsel = "";
1628: re = /newmsg/;
1629: if (re.test(msgchk)) { shwsel = "checked" }
1630: newMsg(newmsg,shwsel);
1631: msgTail();
1632: return;
1633: }
1634:
1.123 ng 1635: function checkEntities(strx) {
1636: if (strx.length == 0) return strx;
1637: var orgStr = ["&", "<", ">", '"'];
1638: var newStr = ["&", "<", ">", """];
1639: var counter = 0;
1640: while (counter < 4) {
1641: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1642: counter++;
1643: }
1644: return strx;
1645: }
1646:
1647: function strReplace(strx, orgStr, newStr) {
1648: return strx.split(orgStr).join(newStr);
1649: }
1650:
1.44 ng 1651: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1652: var height = 70*Nmsg+250;
1.44 ng 1653: if (height > 600) {
1654: height = 600;
1655: }
1.118 ng 1656: var xpos = (screen.width-600)/2;
1657: xpos = (xpos < 0) ? '0' : xpos;
1658: var ypos = (screen.height-height)/2-30;
1659: ypos = (ypos < 0) ? '0' : ypos;
1660:
1.596.2.12.2. (raeburn 1661:): pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars=yes,screenx='+xpos+',screeny='+ypos+',width=700,height='+height);
1.76 ng 1662: pWin.focus();
1663: pDoc = pWin.document;
1.219 www 1664: pDoc.$docopen;
1.351 albertel 1665: pDoc.write('$start_page_msg_central');
1.76 ng 1666:
1667: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1668: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.596.2.12.2. 6(raebur 1669:6): pDoc.write("<h3><span class=\\"LC_info\\"> $html_js_lt{'comp'}\"+fullname+\"<\\/span><\\/h3><br /><br />");
1.76 ng 1670:
1.564 bisitz 1671: pDoc.write('<table border="0" width="100%"><tr><td bgcolor="#777777">');
1672: pDoc.write('<table border="0" width="100%"><tr bgcolor="#DDFFFF">');
1.596.2.12.2. 6(raebur 1673:6): pDoc.write("<td><b>$html_js_lt{'type'}<\\/b><\\/td><td><b>$html_js_lt{'incl'}<\\/b><\\/td><td><b>$html_js_lt{'mesa'}<\\/td><\\/tr>");
1.44 ng 1674: }
1675: function displaySubject(msg,shwsel) {
1.76 ng 1676: pDoc = pWin.document;
1677: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.596.2.12.2. 6(raebur 1678:6): pDoc.write("<td>$html_js_lt{'subj'}<\\/td>");
1.465 albertel 1679: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1680: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44 ng 1681: }
1682:
1.72 ng 1683: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1684: pDoc = pWin.document;
1685: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1686: pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
1687: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1688: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1689: }
1690:
1691: function newMsg(newmsg,shwsel) {
1.76 ng 1692: pDoc = pWin.document;
1693: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.596.2.12.2. 6(raebur 1694:6): pDoc.write("<td align=\\"center\\">$html_js_lt{'new'}<\\/td>");
1.465 albertel 1695: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1696: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1697: }
1698:
1699: function msgTail() {
1.76 ng 1700: pDoc = pWin.document;
1.465 albertel 1701: pDoc.write("<\\/table>");
1702: pDoc.write("<\\/td><\\/tr><\\/table> ");
1.596.2.12.2. 6(raebur 1703:6): pDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'save'}\\" onclick=\\"javascript:checkInput()\\"> ");
1704:6): pDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'canc'}\\" onclick=\\"self.close()\\"><br /><br />");
1.465 albertel 1705: pDoc.write("<\\/form>");
1.351 albertel 1706: pDoc.write('$end_page_msg_central');
1.128 ng 1707: pDoc.close();
1.44 ng 1708: }
1709:
1710: //====================== Script for keyword highlight options ==============
1711: function kwhighlight() {
1712: var kwclr = document.SCORE.kwclr.value;
1713: var kwsize = document.SCORE.kwsize.value;
1714: var kwstyle = document.SCORE.kwstyle.value;
1715: var redsel = "";
1716: var grnsel = "";
1717: var blusel = "";
1.596.2.12.2. 6(raebur 1718:6): var txtcol1 = "$js_lt{'col1'}";
1719:6): var txtcol2 = "$js_lt{'col2'}";
1720:6): var txtcol3 = "$js_lt{'col3'}";
1721:6): var txtsiz1 = "$js_lt{'siz1'}";
1722:6): var txtsiz2 = "$js_lt{'siz2'}";
1723:6): var txtsiz3 = "$js_lt{'siz3'}";
1724:6): var txtsty1 = "$js_lt{'sty1'}";
1725:6): var txtsty2 = "$js_lt{'sty2'}";
1726:6): var txtsty3 = "$js_lt{'sty3'}";
8(raebur 1727:4): if (kwclr=="red") {var redsel="checked='checked'"};
1728:4): if (kwclr=="green") {var grnsel="checked='checked'"};
1729:4): if (kwclr=="blue") {var blusel="checked='checked'"};
1.44 ng 1730: var sznsel = "";
1731: var sz1sel = "";
1732: var sz2sel = "";
1.596.2.12.2. 8(raebur 1733:4): if (kwsize=="0") {var sznsel="checked='checked'"};
1734:4): if (kwsize=="+1") {var sz1sel="checked='checked'"};
1735:4): if (kwsize=="+2") {var sz2sel="checked='checked'"};
1.44 ng 1736: var synsel = "";
1737: var syisel = "";
1738: var sybsel = "";
1.596.2.12.2. 8(raebur 1739:4): if (kwstyle=="") {var synsel="checked='checked'"};
1740:4): if (kwstyle=="<i>") {var syisel="checked='checked'"};
1741:4): if (kwstyle=="<b>") {var sybsel="checked='checked'"};
1.44 ng 1742: highlightCentral();
1.596.2.12.2. 8(raebur 1743:4): highlightbody('red',txtcol1,redsel,'0',txtsiz1,sznsel,'',txtsty1,synsel);
1744:4): highlightbody('green',txtcol2,grnsel,'+1',txtsiz2,sz1sel,'<i>',txtsty2,syisel);
1745:4): highlightbody('blue',txtcol3,blusel,'+2',txtsiz3,sz2sel,'<b>',txtsty3,sybsel);
1.44 ng 1746: highlightend();
1747: return;
1748: }
1749:
1750: function highlightCentral() {
1.76 ng 1751: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1752: var xpos = (screen.width-400)/2;
1753: xpos = (xpos < 0) ? '0' : xpos;
1754: var ypos = (screen.height-330)/2-30;
1755: ypos = (ypos < 0) ? '0' : ypos;
1756:
1.206 albertel 1757: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1758: hwdWin.focus();
1759: var hDoc = hwdWin.document;
1.219 www 1760: hDoc.$docopen;
1.351 albertel 1761: hDoc.write('$start_page_highlight_central');
1.76 ng 1762: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.596.2.12.2. 6(raebur 1763:6): hDoc.write("<h1>$html_js_lt{'kehi'}<\\/h1>");
1.76 ng 1764:
1.596.2.12.2. 8(raebur 1765:4): hDoc.write('<table border="0" width="100%"><tr style="background-color:#A1D676">');
6(raebur 1766:6): hDoc.write("<th>$html_js_lt{'txtc'}<\\/th><th>$html_js_lt{'font'}<\\/th><th>$html_js_lt{'fnst'}<\\/th><\\/tr>");
1.44 ng 1767: }
1768:
1769: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1770: var hDoc = hwdWin.document;
1.596.2.12.2. 8(raebur 1771:4): hDoc.write("<tr>");
1.76 ng 1772: hDoc.write("<td align=\\"left\\">");
1.596.2.12.2. 8(raebur 1773:4): hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+" \\/> "+clrtxt+"<\\/td>");
1.76 ng 1774: hDoc.write("<td align=\\"left\\">");
1.596.2.12.2. 8(raebur 1775:4): hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+" \\/> "+sztxt+"<\\/td>");
1.76 ng 1776: hDoc.write("<td align=\\"left\\">");
1.596.2.12.2. 8(raebur 1777:4): hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+" \\/> "+sytxt+"<\\/td>");
1.465 albertel 1778: hDoc.write("<\\/tr>");
1.44 ng 1779: }
1780:
1781: function highlightend() {
1.76 ng 1782: var hDoc = hwdWin.document;
1.596.2.12.2. 8(raebur 1783:4): hDoc.write("<\\/table><br \\/>");
6(raebur 1784:6): hDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'save'}\\" onclick=\\"javascript:updateChoice(1)\\" \\/> ");
1785:6): hDoc.write("<input type=\\"button\\" value=\\"$html_js_lt{'canc'}\\" onclick=\\"self.close()\\" \\/><br /><br />");
1.465 albertel 1786: hDoc.write("<\\/form>");
1.351 albertel 1787: hDoc.write('$end_page_highlight_central');
1.128 ng 1788: hDoc.close();
1.44 ng 1789: }
1790:
1791: </script>
1792: SUBJAVASCRIPT
1793: }
1794:
1.349 albertel 1795: sub get_increment {
1.348 bowersj2 1796: my $increment = $env{'form.increment'};
1797: if ($increment != 1 && $increment != .5 && $increment != .25 &&
1798: $increment != .1) {
1799: $increment = 1;
1800: }
1801: return $increment;
1802: }
1803:
1.585 bisitz 1804: sub gradeBox_start {
1805: return (
1806: &Apache::loncommon::start_data_table()
1807: .&Apache::loncommon::start_data_table_header_row()
1808: .'<th>'.&mt('Part').'</th>'
1809: .'<th>'.&mt('Points').'</th>'
1810: .'<th> </th>'
1811: .'<th>'.&mt('Assign Grade').'</th>'
1812: .'<th>'.&mt('Weight').'</th>'
1813: .'<th>'.&mt('Grade Status').'</th>'
1814: .&Apache::loncommon::end_data_table_header_row()
1815: );
1816: }
1817:
1818: sub gradeBox_end {
1819: return (
1820: &Apache::loncommon::end_data_table()
1821: );
1822: }
1.71 ng 1823: #--- displays the grading box, used in essay type problem and grading by page/sequence
1824: sub gradeBox {
1.322 albertel 1825: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381 albertel 1826: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 1827: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 1828: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466 albertel 1829: my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)')
1830: : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71 ng 1831: $wgt = ($wgt > 0 ? $wgt : '1');
1832: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1833: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.596.2.12.2. 8(raebur 1834:3): my $data_WGT='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466 albertel 1835: my $display_part= &get_display_part($partid,$symb);
1.270 albertel 1836: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1837: [$partid]);
1838: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1839: if ($last_resets{$partid}) {
1840: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1841: }
1.596.2.12.2. 8(raebur 1842:3): my $result=&Apache::loncommon::start_data_table_row();
1.71 ng 1843: my $ctr = 0;
1.348 bowersj2 1844: my $thisweight = 0;
1.349 albertel 1845: my $increment = &get_increment();
1.485 albertel 1846:
1847: my $radio.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1.348 bowersj2 1848: while ($thisweight<=$wgt) {
1.532 bisitz 1849: $radio.= '<td><span class="LC_nobreak"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1850: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348 bowersj2 1851: $thisweight.')" value="'.$thisweight.'" '.
1.401 albertel 1852: ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.485 albertel 1853: $radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348 bowersj2 1854: $thisweight += $increment;
1.71 ng 1855: $ctr++;
1856: }
1.485 albertel 1857: $radio.='</tr></table>';
1858:
1859: my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1.71 ng 1860: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1.589 bisitz 1861: 'onchange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1.71 ng 1862: $wgt.')" /></td>'."\n";
1.485 albertel 1863: $line.='<td>/'.$wgt.' '.$wgtmsg.
1.71 ng 1864: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1.585 bisitz 1865: ' </td>'."\n";
1866: $line.='<td><select name="GD_SEL'.$counter.'_'.$partid.'" '.
1.589 bisitz 1867: 'onchange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1.71 ng 1868: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.485 albertel 1869: $line.='<option></option>'.
1870: '<option value="excused" selected="selected">'.&mt('excused').'</option>';
1.71 ng 1871: } else {
1.485 albertel 1872: $line.='<option selected="selected"></option>'.
1873: '<option value="excused" >'.&mt('excused').'</option>';
1.71 ng 1874: }
1.485 albertel 1875: $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
1876:
1877:
1878: $result .=
1.596.2.12.2. 8(raebur 1879:3): '<td>'.$data_WGT.$display_part.'</td><td>'.$radio.'</td><td>'.&mt('or').'</td><td>'.$line.'</td>';
1880:3): $result.=&Apache::loncommon::end_data_table_row().'<td colspan="6">';
1.71 ng 1881: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1882: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1883: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1884: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1885: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1886: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1887: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1888: $aggtries.'" />'."\n";
1.582 raeburn 1889: my $res_error;
1890: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record,\$res_error);
1.596.2.12.2. 8(raebur 1891:3): $result.='</td>'.&Apache::loncommon::end_data_table_row();
1.582 raeburn 1892: if ($res_error) {
1893: return &navmap_errormsg();
1894: }
1.318 banghart 1895: return $result;
1896: }
1.322 albertel 1897:
1898: sub handback_box {
1.582 raeburn 1899: my ($symb,$uname,$udom,$counter,$partid,$record,$res_error) = @_;
1900: my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error);
1.323 banghart 1901: my (@respids);
1.596.2.4 raeburn 1902: my @part_response_id = &flatten_responseType($responseType);
1.375 albertel 1903: foreach my $part_response_id (@part_response_id) {
1904: my ($part,$resp) = @{ $part_response_id };
1.323 banghart 1905: if ($part eq $partid) {
1.375 albertel 1906: push(@respids,$resp);
1.323 banghart 1907: }
1908: }
1.318 banghart 1909: my $result;
1.323 banghart 1910: foreach my $respid (@respids) {
1.322 albertel 1911: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1912: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1913: next if (!@$files);
1.596.2.4 raeburn 1914: my $file_counter = 0;
1.313 banghart 1915: foreach my $file (@$files) {
1.368 banghart 1916: if ($file =~ /\/portfolio\//) {
1.596.2.4 raeburn 1917: $file_counter++;
1.368 banghart 1918: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
1919: my ($name,$version,$ext) = &file_name_version_ext($file_disp);
1920: $file_disp = "$name.$ext";
1921: $file = $file_path.$file_disp;
1922: $result.=&mt('Return commented version of [_1] to student.',
1923: '<span class="LC_filename">'.$file_disp.'</span>');
1924: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1.596.2.4 raeburn 1925: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />'."\n";
1.368 banghart 1926: }
1.322 albertel 1927: }
1.596.2.4 raeburn 1928: if ($file_counter) {
1929: $result .= '<input type="hidden" name="'.$prefix.'countreturndoc" value="'.$file_counter.'" />'."\n".
1930: '<span class="LC_info">'.
1931: '('.&mt('File(s) will be uploaded when you click on Save & Next below.',$file_counter).')</span><br /><br />';
1932: }
1.313 banghart 1933: }
1.318 banghart 1934: return $result;
1.71 ng 1935: }
1.44 ng 1936:
1.58 albertel 1937: sub show_problem {
1.382 albertel 1938: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144 albertel 1939: my $rendered;
1.382 albertel 1940: my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329 albertel 1941: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1942: if ($mode eq 'both' or $mode eq 'text') {
1943: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382 albertel 1944: $env{'request.course.id'},
1945: undef,\%form);
1.144 albertel 1946: }
1.58 albertel 1947: if ($removeform) {
1948: $rendered=~s|<form(.*?)>||g;
1949: $rendered=~s|</form>||g;
1.374 albertel 1950: $rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58 albertel 1951: }
1.144 albertel 1952: my $companswer;
1953: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1954: &Apache::lonxml::restore_problem_counter();
1.382 albertel 1955: $companswer=
1956: &Apache::loncommon::get_student_answers($symb,$uname,$udom,
1957: $env{'request.course.id'},
1958: %form);
1.144 albertel 1959: }
1.58 albertel 1960: if ($removeform) {
1961: $companswer=~s|<form(.*?)>||g;
1962: $companswer=~s|</form>||g;
1.144 albertel 1963: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1964: }
1.596.2.12.2. (raeburn 1965:): my $renderheading = &mt('View of the problem');
1966:): my $answerheading = &mt('Correct answer');
1967:): if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
1968:): my $stu_fullname = $env{'form.fullname'};
1969:): if ($stu_fullname eq '') {
1970:): $stu_fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
1971:): }
1972:): my $forwhom = &nameUserString(undef,$stu_fullname,$uname,$udom);
1973:): if ($forwhom ne '') {
1974:): $renderheading = &mt('View of the problem for[_1]',$forwhom);
1975:): $answerheading = &mt('Correct answer for[_1]',$forwhom);
1976:): }
1977:): }
1.468 albertel 1978: $rendered=
1.588 bisitz 1979: '<div class="LC_Box">'
1.596.2.12.2. (raeburn 1980:): .'<h3 class="LC_hcell">'.$renderheading.'</h3>'
1.588 bisitz 1981: .$rendered
1982: .'</div>';
1.468 albertel 1983: $companswer=
1.588 bisitz 1984: '<div class="LC_Box">'
1.596.2.12.2. (raeburn 1985:): .'<h3 class="LC_hcell">'.$answerheading.'</h3>'
1.588 bisitz 1986: .$companswer
1987: .'</div>';
1.468 albertel 1988: my $result;
1.144 albertel 1989: if ($mode eq 'both') {
1.588 bisitz 1990: $result=$rendered.$companswer;
1.144 albertel 1991: } elsif ($mode eq 'text') {
1.588 bisitz 1992: $result=$rendered;
1.144 albertel 1993: } elsif ($mode eq 'answer') {
1.588 bisitz 1994: $result=$companswer;
1.144 albertel 1995: }
1.71 ng 1996: return $result;
1.58 albertel 1997: }
1.397 albertel 1998:
1.396 banghart 1999: sub files_exist {
2000: my ($r, $symb) = @_;
2001: my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397 albertel 2002:
1.396 banghart 2003: foreach my $student (@students) {
2004: my ($uname,$udom,$fullname) = split(/:/,$student);
1.397 albertel 2005: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
2006: $udom,$uname);
1.396 banghart 2007: my ($string,$timestamp)= &get_last_submission(\%record);
1.397 albertel 2008: foreach my $submission (@$string) {
2009: my ($partid,$respid) =
2010: ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
2011: my $files=&get_submitted_files($udom,$uname,$partid,$respid,
2012: \%record);
2013: return 1 if (@$files);
1.396 banghart 2014: }
2015: }
1.397 albertel 2016: return 0;
1.396 banghart 2017: }
1.397 albertel 2018:
1.394 banghart 2019: sub download_all_link {
2020: my ($r,$symb) = @_;
1.395 albertel 2021: my $all_students =
2022: join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
2023:
2024: my $parts =
2025: join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
2026:
1.394 banghart 2027: my $identifier = &Apache::loncommon::get_cgi_id();
1.514 raeburn 2028: &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
2029: 'cgi.'.$identifier.'.symb' => $symb,
2030: 'cgi.'.$identifier.'.parts' => $parts,});
1.395 albertel 2031: $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
2032: &mt('Download All Submitted Documents').'</a>');
1.394 banghart 2033: return
2034: }
1.395 albertel 2035:
1.432 banghart 2036: sub build_section_inputs {
2037: my $section_inputs;
2038: if ($env{'form.section'} eq '') {
2039: $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
2040: } else {
2041: my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434 albertel 2042: foreach my $section (@sections) {
1.432 banghart 2043: $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
2044: }
2045: }
2046: return $section_inputs;
2047: }
2048:
1.44 ng 2049: # --------------------------- show submissions of a student, option to grade
2050: sub submission {
2051: my ($request,$counter,$total) = @_;
1.257 albertel 2052: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
2053: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
2054: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
2055: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.596.2.12.2. (raeburn 2056:): my ($symb) = &get_symb($request);
1.324 albertel 2057: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.596.2.12.2. 5(raebur 2058:9): my ($essayurl,%coursedesc_by_cid);
1.104 albertel 2059:
2060: if (!&canview($usec)) {
1.596.2.12.2. 8(raebur 2061:4): $request->print(
2062:4): '<span class="LC_warning">'.
2063:4): &mt('Unable to view requested student.').
2064:4): ' '.&mt('([_1] in section [_2] in course id [_3])',
2065:4): $uname.':'.$udom,$usec,$env{'request.course.id'}).
2066:4): '</span>');
1.324 albertel 2067: $request->print(&show_grading_menu_form($symb));
1.104 albertel 2068: return;
2069: }
2070:
1.257 albertel 2071: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
2072: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
2073: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
2074: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381 albertel 2075: my $checkIcon = '<img alt="'.&mt('Check Mark').
2076: '" src="'.$request->dir_config('lonIconsURL').
1.122 ng 2077: '/check.gif" height="16" border="0" />';
1.41 ng 2078:
2079: # header info
2080: if ($counter == 0) {
2081: &sub_page_js($request);
1.257 albertel 2082: &sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
2083: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
2084: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.397 albertel 2085: if ($env{'form.handgrade'} eq 'yes' && &files_exist($request, $symb)) {
1.396 banghart 2086: &download_all_link($request, $symb);
2087: }
1.485 albertel 2088: $request->print('<h3> <span class="LC_info">'.&mt('Submission Record').'</span></h3>'."\n".
1.596.2.12.2. 2(raebur 2089:3): '<h4> '.&mt('[_1]Resource: [_2]','<b>','</b>'.$env{'form.probTitle'}).'</h4>'."\n");
1.118 ng 2090:
1.44 ng 2091: # option to display problem, only once else it cause problems
2092: # with the form later since the problem has a form.
1.257 albertel 2093: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 2094: my $mode;
1.257 albertel 2095: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 2096: $mode='both';
1.257 albertel 2097: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 2098: $mode='text';
1.257 albertel 2099: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 2100: $mode='answer';
2101: }
1.329 albertel 2102: &Apache::lonxml::clear_problem_counter();
1.144 albertel 2103: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 2104: }
1.441 www 2105:
1.596.2.12.2. 0(raebur 2106:3): # kwclr is the only variable that is guaranteed not to be blank
1.44 ng 2107: # if this subroutine has been called once.
1.41 ng 2108: my %keyhash = ();
1.257 albertel 2109: if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41 ng 2110: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 2111: $env{'course.'.$env{'request.course.id'}.'.domain'},
2112: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 2113:
1.257 albertel 2114: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
2115: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
2116: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
2117: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
2118: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
2119: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
2120: $keyhash{$symb.'_subject'} : $env{'form.probTitle'};
2121: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 2122: }
1.257 albertel 2123: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442 banghart 2124: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303 banghart 2125: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 2126: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.257 albertel 2127: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 2128: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.120 ng 2129: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257 albertel 2130: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.41 ng 2131: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 2132: '<input type="hidden" name="studentNo" value="" />'."\n".
2133: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.418 albertel 2134: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 2135: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
2136: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
2137: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
2138: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.432 banghart 2139: &build_section_inputs().
1.326 albertel 2140: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
2141: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" />'."\n".
1.41 ng 2142: '<input type="hidden" name="NCT"'.
1.257 albertel 2143: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
2144: if ($env{'form.handgrade'} eq 'yes') {
2145: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
2146: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
2147: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
2148: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
2149: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 2150: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 2151: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 2152: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
2153: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
2154: }
1.123 ng 2155: }
1.41 ng 2156:
2157: my ($cts,$prnmsg) = (1,'');
1.257 albertel 2158: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 2159: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 2160: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 2161: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 2162: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 2163: '" />'."\n".
2164: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 2165: $cts++;
2166: }
2167: $request->print($prnmsg);
1.32 ng 2168:
1.257 albertel 2169: if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.596.2.4 raeburn 2170:
2171: my %lt = &Apache::lonlocal::texthash(
1.596.2.12.2. 8(raebur 2172:4): keyh => 'Keyword Highlighting for Essays',
1.596.2.4 raeburn 2173: keyw => 'Keyword Options',
2174: list => 'List',
2175: past => 'Paste Selection to List',
1.596.2.9 raeburn 2176: high => 'Highlight Attribute',
1.596.2.4 raeburn 2177: );
1.88 www 2178: #
2179: # Print out the keyword options line
2180: #
1.596.2.12.2. 8(raebur 2181:4): $request->print(
2182:4): '<div class="LC_columnSection">'
2183:4): .'<fieldset><legend>'.$lt{'keyh'}.'</legend>'
2184:4): .&Apache::lonhtmlcommon::funclist_from_array(
2185:4): ['<a href="javascript:keywords(document.SCORE);" target="_self">'.$lt{'list'}.'</a>',
2186:4): '<a href="#" onmousedown="javascript:getSel(); return false"
2187:4): class="page">'.$lt{'past'}.'</a>',
2188:4): '<a href="javascript:kwhighlight();" target="_self">'.$lt{'high'}.'</a>'],
2189:4): {legend => $lt{'keyw'}})
2190:4): .'</fieldset></div>'
2191:4): );
2192:4):
1.88 www 2193: #
2194: # Load the other essays for similarity check
2195: #
1.596.2.12.2. 5(raebur 2196:9): (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
2197:9): if ($essayurl eq 'lib/templates/simpleproblem.problem') {
2198:9): my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2199:9): my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2200:9): if ($cdom ne '' && $cnum ne '') {
2201:9): my ($map,$id,$res) = &Apache::lonnet::decode_symb($symb);
2202:9): if ($map =~ m{^\Quploaded/$cdom/$cnum/\E(default(?:|_\d+)\.(?:sequence|page))$}) {
2203:9): my $apath = $1.'_'.$id;
2204:9): $apath=~s/\W/\_/gs;
2205:9): &init_old_essays($symb,$apath,$cdom,$cnum);
2206:9): }
2207:9): }
2208:9): } else {
2209:9): my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
2210:9): $apath=&escape($apath);
2211:9): $apath=~s/\W/\_/gs;
2212:9): &init_old_essays($symb,$apath,$adom,$aname);
2213:9): }
1.41 ng 2214: }
2215: }
1.44 ng 2216:
1.441 www 2217: # This is where output for one specific student would start
1.592 bisitz 2218: my $add_class = ($counter%2) ? ' LC_grade_show_user_odd_row' : '';
2219: $request->print(
2220: "\n\n"
2221: .'<div class="LC_grade_show_user'.$add_class.'">'
2222: .'<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</h2>'
2223: ."\n"
2224: );
1.441 www 2225:
1.592 bisitz 2226: # Show additional functions if allowed
2227: if ($perm{'vgr'}) {
2228: $request->print(
2229: &Apache::loncommon::track_student_link(
1.596.2.12.2. 4(raebur 2230:3): 'View recent activity',
1.592 bisitz 2231: $uname,$udom,'check')
2232: .' '
2233: );
2234: }
2235: if ($perm{'opa'}) {
2236: $request->print(
2237: &Apache::loncommon::pprmlink(
2238: &mt('Set/Change parameters'),
2239: $uname,$udom,$symb,'check'));
2240: }
2241:
2242: # Show Problem
1.257 albertel 2243: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144 albertel 2244: my $mode;
1.257 albertel 2245: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 2246: $mode='both';
1.257 albertel 2247: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 2248: $mode='text';
1.257 albertel 2249: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 2250: $mode='answer';
2251: }
1.329 albertel 2252: &Apache::lonxml::clear_problem_counter();
1.475 albertel 2253: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58 albertel 2254: }
1.144 albertel 2255:
1.257 albertel 2256: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.582 raeburn 2257: my $res_error;
2258: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
2259: if ($res_error) {
2260: $request->print(&navmap_errormsg());
2261: return;
2262: }
1.41 ng 2263:
1.44 ng 2264: # Display student info
1.41 ng 2265: $request->print(($counter == 0 ? '' : '<br />'));
1.590 bisitz 2266:
2267: my $result='<div class="LC_Box">'
2268: .'<h3 class="LC_hcell">'.&mt('Submissions').'</h3>';
1.45 ng 2269: $result.='<input type="hidden" name="name'.$counter.
1.588 bisitz 2270: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.469 albertel 2271: if ($env{'form.handgrade'} eq 'no') {
1.588 bisitz 2272: $result.='<p class="LC_info">'
2273: .&mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)
2274: ."</p>\n";
1.469 albertel 2275: }
2276:
1.118 ng 2277: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464 albertel 2278: my $fullname;
2279: my $col_fullnames = [];
1.257 albertel 2280: if ($env{'form.handgrade'} eq 'yes') {
1.464 albertel 2281: (my $sub_result,$fullname,$col_fullnames)=
2282: &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
2283: $counter);
2284: $result.=$sub_result;
1.41 ng 2285: }
1.44 ng 2286: $request->print($result."\n");
1.588 bisitz 2287:
1.44 ng 2288: # print student answer/submission
1.588 bisitz 2289: # Options are (1) Handgraded submission only
1.44 ng 2290: # (2) Last submission, includes submission that is not handgraded
2291: # (for multi-response type part)
2292: # (3) Last submission plus the parts info
2293: # (4) The whole record for this student
1.596.2.12.2. 1(raebur 2294:3):
1.151 albertel 2295: my ($string,$timestamp)= &get_last_submission(\%record);
1.468 albertel 2296:
2297: my $lastsubonly;
2298:
1.588 bisitz 2299: if ($$timestamp eq '') {
2300: $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>';
2301: } else {
1.592 bisitz 2302: $lastsubonly =
2303: '<div class="LC_grade_submissions_body">'
2304: .'<b>'.&mt('Date Submitted:').'</b> '.$$timestamp."\n";
1.468 albertel 2305:
1.151 albertel 2306: my %seenparts;
1.375 albertel 2307: my @part_response_id = &flatten_responseType($responseType);
2308: foreach my $part (@part_response_id) {
1.393 albertel 2309: next if ($env{'form.lastSub'} eq 'hdgrade'
2310: && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
2311:
1.375 albertel 2312: my ($partid,$respid) = @{ $part };
1.324 albertel 2313: my $display_part=&get_display_part($partid,$symb);
1.257 albertel 2314: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151 albertel 2315: if (exists($seenparts{$partid})) { next; }
2316: $seenparts{$partid}=1;
1.596.2.12.2. 8(raebur 2317:3): $request->print(
2318:3): '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2319:3): ' <b>'.&mt('Collaborative submission by: [_1]',
2320:3): '<a href="javascript:viewSubmitter(\''.
2321:3): $env{"form.$uname:$udom:$partid:submitted_by"}.
2322:3): '\');" target="_self">'.
2323:3): $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a>').
2324:3): '<br />');
1.151 albertel 2325: next;
2326: }
2327: my $responsetype = $responseType->{$partid}->{$respid};
2328: if (!exists($record{"resource.$partid.$respid.submission"})) {
1.577 bisitz 2329: $lastsubonly.="\n".'<div class="LC_grade_submission_part">'.
2330: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2331: ' <span class="LC_internal_info">'.
1.596.2.4 raeburn 2332: '('.&mt('Response ID: [_1]',$respid).')'.
1.577 bisitz 2333: '</span> '.
1.539 riegler 2334: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br /><br /></div>';
1.151 albertel 2335: next;
2336: }
1.468 albertel 2337: foreach my $submission (@$string) {
2338: my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375 albertel 2339: if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.596.2.12.2. 0(raebur 2340:4): my ($ressub,$hide,$draft,$subval) = split(/:/,$submission,4);
1.151 albertel 2341: # Similarity check
2342: my $similar='';
1.596.2.2 raeburn 2343: my ($type,$trial,$rndseed);
2344: if ($hide eq 'rand') {
2345: $type = 'randomizetry';
2346: $trial = $record{"resource.$partid.tries"};
2347: $rndseed = $record{"resource.$partid.rndseed"};
2348: }
1.596.2.12.2. 1(raebur 2349:3): if ($env{'form.checkPlag'}) {
1.151 albertel 2350: my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.596.2.12.2. (raeburn 2351:): &most_similar($uname,$udom,$symb,$subval);
1.151 albertel 2352: if ($osim) {
2353: $osim=int($osim*100.0);
1.596.2.2 raeburn 2354: if ($hide eq 'anon') {
1.596 raeburn 2355: $similar='<hr /><span class="LC_warning">'.&mt("Essay was found to be similar to another essay submitted for this assignment.").'<br />'.
2356: &mt('As the current submission is for an anonymous survey, no other details are available.').'</span><hr />';
2357: } else {
1.596.2.12.2. 5(raebur 2358:9): $similar='<hr />';
2359:9): if ($essayurl eq 'lib/templates/simpleproblem.problem') {
2360:9): $similar .= '<h3><span class="LC_warning">'.
2361:9): &mt('Essay is [_1]% similar to an essay by [_2]',
2362:9): $osim,
2363:9): &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')').
2364:9): '</span></h3>';
2365:9): } elsif ($ocrsid ne '') {
6(raebur 2366:9): my %old_course_desc;
5(raebur 2367:9): if (ref($coursedesc_by_cid{$ocrsid}) eq 'HASH') {
2368:9): %old_course_desc = %{$coursedesc_by_cid{$ocrsid}};
2369:9): } else {
2370:9): my $args;
2371:9): if ($ocrsid ne $env{'request.course.id'}) {
2372:9): $args = {'one_time' => 1};
2373:9): }
2374:9): %old_course_desc =
2375:9): &Apache::lonnet::coursedescription($ocrsid,$args);
2376:9): $coursedesc_by_cid{$ocrsid} = \%old_course_desc;
2377:9): }
2378:9): $similar .=
2379:9): &mt('Essay is [_1]% similar to an essay by [_2] in course [_3] (course id [_4]:[_5])',
2380:9): $osim,
2381:9): &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')',
2382:9): $old_course_desc{'description'},
2383:9): $old_course_desc{'num'},
2384:9): $old_course_desc{'domain'}).
2385:9): '</span></h3>';
2386:9): } else {
2387:9): $similar .=
2388:9): '<h3><span class="LC_warning">'.
2389:9): &mt('Essay is [_1]% similar to an essay by [_2] in an unknown course',
2390:9): $osim,
2391:9): &Apache::loncommon::plainname($oname,$odom).' ('.$oname.':'.$odom.')').
2392:9): '</span></h3>';
2393:9): }
2394:9): $similar .= '<blockquote><i>'.
2395:9): &keywords_highlight($oessay).
2396:9): '</i></blockquote><hr />';
2397:9): }
2398:9): }
2399:9): }
1.596.2.2 raeburn 2400: my $order=&get_order($partid,$respid,$symb,$uname,$udom,
2401: undef,$type,$trial,$rndseed);
1.596.2.12.2. 1(raebur 2402:3): if ($env{'form.lastSub'} eq 'lastonly' || $env{'form.lastSub'} eq 'datesub' || $env{'form.lastSub'} =~ /^(last|all)$/ || ($env{'form.lastSub'} eq 'hdgrade' &&
2403:3): $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324 albertel 2404: my $display_part=&get_display_part($partid,$symb);
1.577 bisitz 2405: $lastsubonly.='<div class="LC_grade_submission_part">'.
2406: '<b>'.&mt('Part: [_1]',$display_part).'</b>'.
2407: ' <span class="LC_internal_info">'.
1.596.2.4 raeburn 2408: '('.&mt('Response ID: [_1]',$respid).')'.
2409: '</span> ';
1.313 banghart 2410: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
2411: if (@$files) {
1.596.2.2 raeburn 2412: if ($hide eq 'anon') {
1.596 raeburn 2413: $lastsubonly.='<br />'.&mt('[quant,_1,file] uploaded to this anonymous survey',scalar(@{$files}));
2414: } else {
1.596.2.12.2. 8(raebur 2415:3): $lastsubonly.='<br /><br />'.'<b>'.&mt('Submitted Files:').'</b>'
2416:3): .'<br /><span class="LC_warning">';
2417:3): if(@$files == 1) {
2418:3): $lastsubonly .= &mt('Like all files provided by users, this file may contain viruses!');
2419:3): } else {
2420:3): $lastsubonly .= &mt('Like all files provided by users, these files may contain viruses!');
2421:3): }
2422:3): $lastsubonly .= '</span>';
2423:3):
1.596 raeburn 2424: foreach my $file (@$files) {
2425: &Apache::lonnet::allowuploaded('/adm/grades',$file);
1.596.2.12.2. 8(raebur 2426:3): $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border="0" alt="" /> '.$file.'</a>';
1.596 raeburn 2427: }
2428: }
1.236 albertel 2429: $lastsubonly.='<br />';
1.41 ng 2430: }
1.596.2.2 raeburn 2431: if ($hide eq 'anon') {
1.596.2.12.2. 8(raebur 2432:3): $lastsubonly.='<br /><b>'.&mt('Anonymous Survey').'</b>';
1.596 raeburn 2433: } else {
1.596.2.12.2. 0(raebur 2434:4): $lastsubonly.='<br /><b>'.&mt('Submitted Answer:').' </b>';
2435:4): if ($draft) {
2436:4): $lastsubonly.= ' <span class="LC_warning">'.&mt('Draft Copy').'</span>';
2437:4): }
2438:4): $subval =
1.596 raeburn 2439: &cleanRecord($subval,$responsetype,$symb,$partid,
1.596.2.2 raeburn 2440: $respid,\%record,$order,undef,$uname,$udom,$type,$trial,$rndseed);
1.596.2.12.2. 0(raebur 2441:4): if ($responsetype eq 'essay') {
2442:4): $subval =~ s{\n}{<br />}g;
2443:4): }
2444:4): $lastsubonly.=$subval."\n";
1.596 raeburn 2445: }
1.151 albertel 2446: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468 albertel 2447: $lastsubonly.='</div>';
1.41 ng 2448: }
2449: }
2450: }
1.588 bisitz 2451: $lastsubonly.='</div>'."\n"; # End: LC_grade_submissions_body
1.151 albertel 2452: }
2453: $request->print($lastsubonly);
1.596.2.12.2. 1(raebur 2454:3): if ($env{'form.lastSub'} eq 'datesub') {
1.324 albertel 2455: my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
1.148 albertel 2456: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.596.2.12.2. 1(raebur 2457:3): }
2458:3): if ($env{'form.lastSub'} =~ /^(last|all)$/) {
2459:5): my $identifier = (&canmodify($usec)? $counter : '');
1.41 ng 2460: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 2461: $env{'request.course.id'},
1.44 ng 2462: $last,'.submission',
1.596.2.12.2. 1(raebur 2463:5): 'Apache::grades::keywords_highlight',
2464:5): $usec,$identifier));
1.41 ng 2465: }
1.120 ng 2466:
1.121 ng 2467: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
2468: .$udom.'" />'."\n");
1.44 ng 2469: # return if view submission with no grading option
1.257 albertel 2470: if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120 ng 2471: my $toGrade.='<input type="button" value="Grade Student" '.
1.589 bisitz 2472: 'onclick="javascript:checksubmit(this.form,\'Grade Student\',\''
1.417 albertel 2473: .$counter.'\');" target="_self" /> '."\n" if (&canmodify($usec));
1.468 albertel 2474: $toGrade.='</div>'."\n";
1.257 albertel 2475: if (($env{'form.command'} eq 'submission') ||
2476: ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.324 albertel 2477: $toGrade.='</form>'.&show_grading_menu_form($symb);
1.169 albertel 2478: }
1.180 albertel 2479: $request->print($toGrade);
1.41 ng 2480: return;
1.180 albertel 2481: } else {
1.468 albertel 2482: $request->print('</div>'."\n");
1.41 ng 2483: }
1.33 ng 2484:
1.121 ng 2485: # essay grading message center
1.257 albertel 2486: if ($env{'form.handgrade'} eq 'yes') {
1.468 albertel 2487: my $result='<div class="LC_grade_message_center">';
2488:
2489: $result.='<div class="LC_grade_message_center_header">'.
2490: &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257 albertel 2491: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 2492: my $msgfor = $givenn.' '.$lastname;
1.464 albertel 2493: if (scalar(@$col_fullnames) > 0) {
2494: my $lastone = pop(@$col_fullnames);
2495: $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118 ng 2496: }
2497: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468 albertel 2498: $result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121 ng 2499: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
2500: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417 albertel 2501: ',\''.$msgfor.'\');" target="_self">'.
1.596.2.12.2. 8(raebur 2502:3): &mt('Compose message to student'.(scalar(@$col_fullnames) >= 1 ? 's' : '')).'</a><label> ('.
1.350 albertel 2503: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.596.2.12.2. 8(raebur 2504:3): ' <img src="'.$request->dir_config('lonIconsURL').
1.118 ng 2505: '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298 www 2506: '<br /> ('.
1.468 albertel 2507: &mt('Message will be sent when you click on Save & Next below.').")\n";
2508: $result.='</div></div>';
1.121 ng 2509: $request->print($result);
1.118 ng 2510: }
1.41 ng 2511:
2512: my %seen = ();
2513: my @partlist;
1.129 ng 2514: my @gradePartRespid;
1.375 albertel 2515: my @part_response_id = &flatten_responseType($responseType);
1.585 bisitz 2516: $request->print(
1.588 bisitz 2517: '<div class="LC_Box">'
2518: .'<h3 class="LC_hcell">'.&mt('Assign Grades').'</h3>'
1.585 bisitz 2519: );
1.592 bisitz 2520: $request->print(&gradeBox_start());
1.375 albertel 2521: foreach my $part_response_id (@part_response_id) {
2522: my ($partid,$respid) = @{ $part_response_id };
2523: my $part_resp = join('_',@{ $part_response_id });
1.322 albertel 2524: next if ($seen{$partid} > 0);
1.41 ng 2525: $seen{$partid}++;
1.393 albertel 2526: next if ($$handgrade{$part_resp} ne 'yes'
2527: && $env{'form.lastSub'} eq 'hdgrade');
1.524 raeburn 2528: push(@partlist,$partid);
2529: push(@gradePartRespid,$partid.'.'.$respid);
1.322 albertel 2530: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 2531: }
1.585 bisitz 2532: $request->print(&gradeBox_end()); # </div>
2533: $request->print('</div>');
1.468 albertel 2534:
2535: $request->print('<div class="LC_grade_info_links">');
2536: $request->print('</div>');
2537:
1.45 ng 2538: $result='<input type="hidden" name="partlist'.$counter.
2539: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 2540: $result.='<input type="hidden" name="gradePartRespid'.
2541: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 2542: my $ctr = 0;
2543: while ($ctr < scalar(@partlist)) {
2544: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
2545: $partlist[$ctr].'" />'."\n";
2546: $ctr++;
2547: }
1.468 albertel 2548: $request->print($result.''."\n");
1.41 ng 2549:
1.441 www 2550: # Done with printing info for one student
2551:
1.468 albertel 2552: $request->print('</div>');#LC_grade_show_user
1.441 www 2553:
2554:
1.41 ng 2555: # print end of form
2556: if ($counter == $total) {
1.592 bisitz 2557: my $endform='<br /><hr /><table border="0"><tr><td>'."\n";
1.485 albertel 2558: $endform.='<input type="button" value="'.&mt('Save & Next').'" '.
1.589 bisitz 2559: 'onclick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417 albertel 2560: $total.','.scalar(@partlist).');" target="_self" /> '."\n";
1.119 ng 2561: my $ntstu ='<select name="NTSTU">'.
2562: '<option>1</option><option>2</option>'.
2563: '<option>3</option><option>5</option>'.
2564: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 2565: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401 albertel 2566: $ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.578 raeburn 2567: $endform.=&mt('[_1]student(s)',$ntstu);
1.485 albertel 2568: $endform.=' <input type="button" value="'.&mt('Previous').'" '.
1.589 bisitz 2569: 'onclick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> '."\n".
1.485 albertel 2570: '<input type="button" value="'.&mt('Next').'" '.
1.589 bisitz 2571: 'onclick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> ';
1.592 bisitz 2572: $endform.='<span class="LC_warning">'.
2573: &mt('(Next and Previous (student) do not save the scores.)').
2574: '</span>'."\n" ;
1.349 albertel 2575: $endform.="<input type='hidden' value='".&get_increment().
1.348 bowersj2 2576: "' name='increment' />";
1.485 albertel 2577: $endform.='</td></tr></table></form>';
1.324 albertel 2578: $endform.=&show_grading_menu_form($symb);
1.41 ng 2579: $request->print($endform);
2580: }
2581: return '';
1.38 ng 2582: }
2583:
1.464 albertel 2584: sub check_collaborators {
2585: my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
2586: my ($result,@col_fullnames);
2587: my ($classlist,undef,$fullname) = &getclasslist('all','0');
2588: foreach my $part (keys(%$handgrade)) {
2589: my $ncol = &Apache::lonnet::EXT('resource.'.$part.
2590: '.maxcollaborators',
2591: $symb,$udom,$uname);
2592: next if ($ncol <= 0);
2593: $part =~ s/\_/\./g;
2594: next if ($record->{'resource.'.$part.'.collaborators'} eq '');
2595: my (@good_collaborators, @bad_collaborators);
2596: foreach my $possible_collaborator
1.596.2.4 raeburn 2597: (split(/[,;\s]+/,$record->{'resource.'.$part.'.collaborators'})) {
1.464 albertel 2598: $possible_collaborator =~ s/[\$\^\(\)]//g;
2599: next if ($possible_collaborator eq '');
1.596.2.8 raeburn 2600: my ($co_name,$co_dom) = split(/:/,$possible_collaborator);
1.464 albertel 2601: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
2602: next if ($co_name eq $uname && $co_dom eq $udom);
2603: # Doing this grep allows 'fuzzy' specification
2604: my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i,
2605: keys(%$classlist));
2606: if (! scalar(@matches)) {
2607: push(@bad_collaborators, $possible_collaborator);
2608: } else {
2609: push(@good_collaborators, @matches);
2610: }
2611: }
2612: if (scalar(@good_collaborators) != 0) {
1.596.2.8 raeburn 2613: $result.='<br />'.&mt('Collaborators:').'<ol>';
1.464 albertel 2614: foreach my $name (@good_collaborators) {
2615: my ($lastname,$givenn) = split(/,/,$$fullname{$name});
2616: push(@col_fullnames, $givenn.' '.$lastname);
1.596.2.4 raeburn 2617: $result.='<li>'.$fullname->{$name}.'</li>';
1.464 albertel 2618: }
1.596.2.4 raeburn 2619: $result.='</ol><br />'."\n";
1.466 albertel 2620: my ($part)=split(/\./,$part);
1.464 albertel 2621: $result.='<input type="hidden" name="collaborator'.$counter.
2622: '" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
2623: "\n";
2624: }
2625: if (scalar(@bad_collaborators) > 0) {
1.466 albertel 2626: $result.='<div class="LC_warning">';
1.464 albertel 2627: $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
2628: $result .= '</div>';
2629: }
2630: if (scalar(@bad_collaborators > $ncol)) {
1.466 albertel 2631: $result .= '<div class="LC_warning">';
1.464 albertel 2632: $result .= &mt('This student has submitted too many '.
2633: 'collaborators. Maximum is [_1].',$ncol);
2634: $result .= '</div>';
2635: }
2636: }
2637: return ($result,$fullname,\@col_fullnames);
2638: }
2639:
1.44 ng 2640: #--- Retrieve the last submission for all the parts
1.38 ng 2641: sub get_last_submission {
1.119 ng 2642: my ($returnhash)=@_;
1.596 raeburn 2643: my (@string,$timestamp,%lasthidden);
1.119 ng 2644: if ($$returnhash{'version'}) {
1.46 ng 2645: my %lasthash=();
2646: my ($version);
1.119 ng 2647: for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397 albertel 2648: foreach my $key (sort(split(/\:/,
2649: $$returnhash{$version.':keys'}))) {
2650: $lasthash{$key}=$$returnhash{$version.':'.$key};
2651: $timestamp =
1.545 raeburn 2652: &Apache::lonlocal::locallocaltime($$returnhash{$version.':timestamp'});
1.46 ng 2653: }
2654: }
1.596.2.2 raeburn 2655: my (%typeparts,%randombytry);
1.596 raeburn 2656: my $showsurv =
2657: &Apache::lonnet::allowed('vas',$env{'request.course.id'});
2658: foreach my $key (sort(keys(%lasthash))) {
2659: if ($key =~ /\.type$/) {
2660: if (($lasthash{$key} eq 'anonsurvey') ||
1.596.2.2 raeburn 2661: ($lasthash{$key} eq 'anonsurveycred') ||
2662: ($lasthash{$key} eq 'randomizetry')) {
1.596 raeburn 2663: my ($ign,@parts) = split(/\./,$key);
2664: pop(@parts);
1.596.2.3 raeburn 2665: my $id = join('.',@parts);
1.596.2.2 raeburn 2666: if ($lasthash{$key} eq 'randomizetry') {
2667: $randombytry{$ign.'.'.$id} = $lasthash{$key};
2668: } else {
2669: unless ($showsurv) {
2670: $typeparts{$ign.'.'.$id} = $lasthash{$key};
2671: }
1.596 raeburn 2672: }
2673: delete($lasthash{$key});
2674: }
2675: }
2676: }
2677: my @hidden = keys(%typeparts);
1.596.2.2 raeburn 2678: my @randomize = keys(%randombytry);
1.397 albertel 2679: foreach my $key (keys(%lasthash)) {
2680: next if ($key !~ /\.submission$/);
1.596 raeburn 2681: my $hide;
2682: if (@hidden) {
2683: foreach my $id (@hidden) {
2684: if ($key =~ /^\Q$id\E/) {
1.596.2.2 raeburn 2685: $hide = 'anon';
1.596 raeburn 2686: last;
2687: }
2688: }
2689: }
1.596.2.2 raeburn 2690: unless ($hide) {
2691: if (@randomize) {
1.596.2.12.2. 3(raebur 2692:5): foreach my $id (@randomize) {
1.596.2.2 raeburn 2693: if ($key =~ /^\Q$id\E/) {
2694: $hide = 'rand';
2695: last;
2696: }
2697: }
2698: }
2699: }
1.397 albertel 2700: my ($partid,$foo) = split(/submission$/,$key);
1.596.2.12.2. 0(raebur 2701:4): my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ? 1: 0;
2702:4): push(@string, join(':', $key, $hide, $draft, (
8(raebur 2703:4): ref($lasthash{$key}) eq 'ARRAY' ?
2704:4): join(',', @{$lasthash{$key}}) : $lasthash{$key}) ));
1.41 ng 2705: }
2706: }
1.397 albertel 2707: if (!@string) {
2708: $string[0] =
1.539 riegler 2709: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span>';
1.397 albertel 2710: }
2711: return (\@string,\$timestamp);
1.38 ng 2712: }
1.35 ng 2713:
1.44 ng 2714: #--- High light keywords, with style choosen by user.
1.38 ng 2715: sub keywords_highlight {
1.44 ng 2716: my $string = shift;
1.257 albertel 2717: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2718: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2719: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2720: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.398 albertel 2721: foreach my $keyword (@keylist) {
2722: $string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41 ng 2723: }
2724: return $string;
1.38 ng 2725: }
1.36 ng 2726:
1.596.2.12.2. (raeburn 2727:): # For Tasks provide a mechanism to display previous version for one specific student
2728:):
2729:): sub show_previous_task_version {
2730:): my ($request,$symb) = @_;
2731:): if ($symb eq '') {
8(raebur 2732:4): $request->print(
2733:4): '<span class="LC_error">'.
2734:4): &mt('Unable to handle ambiguous references.').
2735:4): '</span>');
(raeburn 2736:): return '';
2737:): }
2738:): my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
2739:): my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
2740:): if (!&canview($usec)) {
8(raebur 2741:4): $request->print('<span class="LC_warning">'.
2742:4): &mt('Unable to view previous version for requested student.').
2743:4): ' '.&mt('([_1] in section [_2] in course id [_3])',
9(raebur 2744:4): $uname.':'.$udom,$usec,$env{'request.course.id'}).
8(raebur 2745:4): '</span>');
(raeburn 2746:): return;
2747:): }
2748:): my $mode = 'both';
2749:): my $isTask = ($symb =~/\.task$/);
2750:): if ($isTask) {
2751:): if ($env{'form.previousversion'} =~ /^\d+$/) {
2752:): if ($env{'form.fullname'} eq '') {
2753:): $env{'form.fullname'} =
2754:): &Apache::loncommon::plainname($uname,$udom,'lastname');
2755:): }
2756:): my $probtitle=&Apache::lonnet::gettitle($symb);
2757:): $request->print("\n\n".
2758:): '<div class="LC_grade_show_user">'.
2759:): '<h2>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
2760:): '</h2>'."\n");
2761:): &Apache::lonxml::clear_problem_counter();
2762:): $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,
2763:): {'previousversion' => $env{'form.previousversion'} }));
2764:): $request->print("\n</div>");
2765:): }
2766:): }
2767:): return;
2768:): }
2769:):
2770:): sub choose_task_version_form {
2771:): my ($symb,$uname,$udom,$nomenu) = @_;
2772:): my $isTask = ($symb =~/\.task$/);
2773:): my ($current,$version,$result,$js,$displayed,$rowtitle);
2774:): if ($isTask) {
2775:): my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
2776:): $udom,$uname);
2777:): if (($record{'resource.0.version'} eq '') ||
2778:): ($record{'resource.0.version'} < 2)) {
2779:): return ($record{'resource.0.version'},
2780:): $record{'resource.0.version'},$result,$js);
2781:): } else {
2782:): $current = $record{'resource.0.version'};
2783:): }
2784:): if ($env{'form.previousversion'}) {
2785:): $displayed = $env{'form.previousversion'};
2786:): $rowtitle = &mt('Choose another version:')
2787:): } else {
2788:): $displayed = $current;
2789:): $rowtitle = &mt('Show earlier version:');
2790:): }
2791:): $result = '<div class="LC_left_float">';
2792:): my $list;
2793:): my $numversions = 0;
2794:): for (my $i=1; $i<=$record{'resource.0.version'}; $i++) {
2795:): if ($i == $current) {
2796:): if (!$env{'form.previousversion'} || $nomenu) {
2797:): next;
2798:): } else {
2799:): $list .= '<option value="'.$i.'">'.&mt('Current').'</option>'."\n";
2800:): $numversions ++;
2801:): }
2802:): } elsif (defined($record{'resource.'.$i.'.0.status'})) {
2803:): unless ($i == $env{'form.previousversion'}) {
2804:): $numversions ++;
2805:): }
2806:): $list .= '<option value="'.$i.'">'.$i.'</option>'."\n";
2807:): }
2808:): }
2809:): if ($numversions) {
2810:): $symb = &HTML::Entities::encode($symb,'<>"&');
2811:): $result .=
2812:): '<form name="getprev" method="post" action=""'.
2813:): ' onsubmit="return previousVersion('."'$uname','$udom','$symb','$displayed'".');">'.
2814:): &Apache::loncommon::start_data_table().
2815:): &Apache::loncommon::start_data_table_row().
2816:): '<th align="left">'.$rowtitle.'</th>'.
2817:): '<td><select name="version">'.
2818:): '<option>'.&mt('Select').'</option>'.
2819:): $list.
2820:): '</select></td>'.
2821:): &Apache::loncommon::end_data_table_row();
2822:): unless ($nomenu) {
2823:): $result .= &Apache::loncommon::start_data_table_row().
2824:): '<th align="left">'.&mt('Open in new window').'</th>'.
2825:): '<td><span class="LC_nobreak">'.
2826:): '<label><input type="radio" name="prevwin" value="1" />'.
2827:): &mt('Yes').'</label>'.
2828:): '<label><input type="radio" name="prevwin" value="0" checked="checked" />'.&mt('No').'</label>'.
2829:): '</span></td>'.
2830:): &Apache::loncommon::end_data_table_row();
2831:): }
2832:): $result .=
2833:): &Apache::loncommon::start_data_table_row().
2834:): '<th align="left"> </th>'.
2835:): '<td>'.
2836:): '<input type="submit" name="prevsub" value="'.&mt('Display').'" />'.
2837:): '</td>'.
2838:): &Apache::loncommon::end_data_table_row().
2839:): &Apache::loncommon::end_data_table().
2840:): '</form>';
2841:): $js = &previous_display_javascript($nomenu,$current);
2842:): } elsif ($displayed && $nomenu) {
2843:): $result .= '<a href="javascript:window.close()">'.&mt('Close window').'</a>';
2844:): } else {
2845:): $result .= &mt('No previous versions to show for this student');
2846:): }
2847:): $result .= '</div>';
2848:): }
2849:): return ($current,$displayed,$result,$js);
2850:): }
2851:):
2852:): sub previous_display_javascript {
2853:): my ($nomenu,$current) = @_;
2854:): my $js = <<"JSONE";
2855:): <script type="text/javascript">
2856:): // <![CDATA[
2857:): function previousVersion(uname,udom,symb) {
2858:): var current = '$current';
2859:): var version = document.getprev.version.options[document.getprev.version.selectedIndex].value;
2860:): var prevstr = new RegExp("^\\\\d+\$");
2861:): if (!prevstr.test(version)) {
2862:): return false;
2863:): }
2864:): var url = '';
2865:): if (version == current) {
2866:): url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=submission';
2867:): } else {
2868:): url = '/adm/grades?student='+uname+'&userdom='+udom+'&symb='+symb+'&command=versionsub&previousversion='+version;
2869:): }
2870:): JSONE
2871:): if ($nomenu) {
2872:): $js .= <<"JSTWO";
2873:): document.location.href = url;
2874:): JSTWO
2875:): } else {
2876:): $js .= <<"JSTHREE";
2877:): var newwin = 0;
2878:): for (var i=0; i<document.getprev.prevwin.length; i++) {
2879:): if (document.getprev.prevwin[i].checked == true) {
2880:): newwin = document.getprev.prevwin[i].value;
2881:): }
2882:): }
2883:): if (newwin == 1) {
2884:): var options = 'height=600,width=800,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no';
2885:): url = url+'&inhibitmenu=yes';
2886:): if (typeof(previousWin) == 'undefined' || previousWin.closed) {
2887:): previousWin = window.open(url,'',options,1);
2888:): } else {
2889:): previousWin.location.href = url;
2890:): }
2891:): previousWin.focus();
2892:): return false;
2893:): } else {
2894:): document.location.href = url;
2895:): return false;
2896:): }
2897:): JSTHREE
2898:): }
2899:): $js .= <<"ENDJS";
2900:): return false;
2901:): }
2902:): // ]]>
2903:): </script>
2904:): ENDJS
2905:):
2906:): }
2907:):
1.44 ng 2908: #--- Called from submission routine
1.38 ng 2909: sub processHandGrade {
1.41 ng 2910: my ($request) = shift;
1.596.2.12.2. (raeburn 2911:): my ($symb) = &get_symb($request);
1.324 albertel 2912: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2913: my $button = $env{'form.gradeOpt'};
2914: my $ngrade = $env{'form.NCT'};
2915: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2916: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2917: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2918:
1.44 ng 2919: if ($button eq 'Save & Next') {
2920: my $ctr = 0;
2921: while ($ctr < $ngrade) {
1.257 albertel 2922: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.596.2.12.2. 1(raebur 2923:5): my ($errorflag,$pts,$wgt,$numhidden) =
2924:5): &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2925: if ($errorflag eq 'no_score') {
2926: $ctr++;
2927: next;
2928: }
1.104 albertel 2929: if ($errorflag eq 'not_allowed') {
1.596.2.12.2. 8(raebur 2930:4): $request->print(
2931:4): '<span class="LC_error">'
2932:4): .&mt('Not allowed to modify grades for [_1]',"$uname:$udom")
2933:4): .'</span>');
1.104 albertel 2934: $ctr++;
2935: next;
2936: }
1.596.2.12.2. 1(raebur 2937:5): if ($numhidden) {
2938:5): $request->print(
2939:5): '<span class="LC_info">'
2940:5): .&mt('For [_1]: [quant,_2,transaction] hidden',"$uname:$udom",$numhidden)
2941:5): .'</span><br />');
2942:5): }
1.257 albertel 2943: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2944: my ($subject,$message,$msgstatus) = ('','','');
1.418 albertel 2945: my $restitle = &Apache::lonnet::gettitle($symb);
2946: my ($feedurl,$showsymb) =
2947: &get_feedurl_and_symb($symb,$uname,$udom);
2948: my $messagetail;
1.62 albertel 2949: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2950: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2951: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386 raeburn 2952: $subject.=' ['.$restitle.']';
1.44 ng 2953: my (@msgnum) = split(/,/,$includemsg);
2954: foreach (@msgnum) {
1.257 albertel 2955: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2956: }
1.80 ng 2957: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2958: if ($env{'form.withgrades'.$ctr}) {
2959: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386 raeburn 2960: $messagetail = " for <a href=\"".
1.418 albertel 2961: $feedurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.386 raeburn 2962: }
2963: $msgstatus =
2964: &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
2965: $message.$messagetail,
1.418 albertel 2966: undef,$feedurl,undef,
1.386 raeburn 2967: undef,undef,$showsymb,
2968: $restitle);
1.574 bisitz 2969: $request->print('<br />'.&mt('Sending message to [_1]',$uname.':'.$udom).': '.
1.596.2.4 raeburn 2970: $msgstatus.'<br />');
1.44 ng 2971: }
1.257 albertel 2972: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2973: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2974: foreach my $collabstr (@collabstrs) {
2975: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2976: foreach my $collaborator (@collaborators) {
1.150 albertel 2977: my ($errorflag,$pts,$wgt) =
1.324 albertel 2978: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2979: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2980: if ($errorflag eq 'not_allowed') {
1.362 albertel 2981: $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150 albertel 2982: next;
1.418 albertel 2983: } elsif ($message ne '') {
2984: my ($baseurl,$showsymb) =
2985: &get_feedurl_and_symb($symb,$collaborator,
2986: $udom);
2987: if ($env{'form.withgrades'.$ctr}) {
2988: $messagetail = " for <a href=\"".
1.386 raeburn 2989: $baseurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.150 albertel 2990: }
1.418 albertel 2991: $msgstatus =
2992: &Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104 albertel 2993: }
1.44 ng 2994: }
2995: }
2996: }
2997: $ctr++;
2998: }
2999: }
3000:
1.257 albertel 3001: if ($env{'form.handgrade'} eq 'yes') {
1.119 ng 3002: # Keywords sorted in alphabatical order
1.257 albertel 3003: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 3004: my %keyhash = ();
1.257 albertel 3005: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
3006: $env{'form.keywords'} =~ s/^\s+|\s+$//;
3007: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
3008: $env{'form.keywords'} = join(' ',@keywords);
3009: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
3010: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
3011: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
3012: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
3013: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 3014:
3015: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 3016: # New messages are saved in env for the next student.
1.119 ng 3017: # All messages are saved in nohist_handgrade.db
3018: my ($ctr,$idx) = (1,1);
1.257 albertel 3019: while ($ctr <= $env{'form.savemsgN'}) {
3020: if ($env{'form.savemsg'.$ctr} ne '') {
3021: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 3022: $idx++;
3023: }
3024: $ctr++;
1.41 ng 3025: }
1.119 ng 3026: $ctr = 0;
3027: while ($ctr < $ngrade) {
1.257 albertel 3028: if ($env{'form.newmsg'.$ctr} ne '') {
3029: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
3030: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 3031: $idx++;
3032: }
3033: $ctr++;
1.41 ng 3034: }
1.257 albertel 3035: $env{'form.savemsgN'} = --$idx;
3036: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 3037: my $putresult = &Apache::lonnet::put
1.301 albertel 3038: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 3039: }
1.44 ng 3040: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 3041: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
3042: if ($env{'form.refresh'} eq 'on') {
1.86 ng 3043: my ($ctr,$total) = (0,0);
3044: while ($ctr < $ngrade) {
1.257 albertel 3045: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 3046: $ctr++;
3047: }
1.257 albertel 3048: $env{'form.NTSTU'}=$ngrade;
1.86 ng 3049: $ctr = 0;
3050: while ($ctr < $total) {
1.257 albertel 3051: my $processUser = $env{'form.unamedom'.$ctr};
3052: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
3053: $env{'form.fullname'} = $$fullname{$processUser};
1.86 ng 3054: &submission($request,$ctr,$total-1);
1.41 ng 3055: $ctr++;
3056: }
3057: return '';
3058: }
1.36 ng 3059:
1.121 ng 3060: # Go directly to grade student - from submission or link from chart page
1.120 ng 3061: if ($button eq 'Grade Student') {
1.324 albertel 3062: (undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
1.257 albertel 3063: my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
3064: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
3065: $env{'form.fullname'} = $$fullname{$processUser};
1.120 ng 3066: &submission($request,0,0);
3067: return '';
3068: }
3069:
1.44 ng 3070: # Get the next/previous one or group of students
1.257 albertel 3071: my $firststu = $env{'form.unamedom0'};
3072: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 3073: my $ctr = 2;
1.41 ng 3074: while ($laststu eq '') {
1.257 albertel 3075: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 3076: $ctr++;
3077: $laststu = $firststu if ($ctr > $ngrade);
3078: }
1.44 ng 3079:
1.41 ng 3080: my (@parsedlist,@nextlist);
3081: my ($nextflg) = 0;
1.524 raeburn 3082: foreach my $item (sort
1.294 albertel 3083: {
3084: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3085: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3086: }
3087: return $a cmp $b;
3088: } (keys(%$fullname))) {
1.41 ng 3089: if ($nextflg == 1 && $button =~ /Next$/) {
1.524 raeburn 3090: push(@parsedlist,$item);
1.41 ng 3091: }
1.524 raeburn 3092: $nextflg = 1 if ($item eq $laststu);
1.41 ng 3093: if ($button eq 'Previous') {
1.524 raeburn 3094: last if ($item eq $firststu);
3095: push(@parsedlist,$item);
1.41 ng 3096: }
3097: }
3098: $ctr = 0;
3099: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.582 raeburn 3100: my $res_error;
3101: my ($partlist) = &response_type($symb,\$res_error);
3102: if ($res_error) {
3103: $request->print(&navmap_errormsg());
3104: return;
3105: }
1.41 ng 3106: foreach my $student (@parsedlist) {
1.257 albertel 3107: my $submitonly=$env{'form.submitonly'};
1.41 ng 3108: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 3109:
3110: if ($submitonly eq 'queued') {
3111: my %queue_status =
3112: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
3113: $udom,$uname);
3114: next if (!defined($queue_status{'gradingqueue'}));
3115: }
3116:
1.156 albertel 3117: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 3118: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 3119: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 3120: my $submitted = 0;
1.248 albertel 3121: my $ungraded = 0;
3122: my $incorrect = 0;
1.524 raeburn 3123: foreach my $item (keys(%status)) {
3124: $submitted = 1 if ($status{$item} ne 'nothing');
3125: $ungraded = 1 if ($status{$item} =~ /^ungraded/);
3126: $incorrect = 1 if ($status{$item} =~ /^incorrect/);
3127: my ($foo,$partid,$foo1) = split(/\./,$item);
1.145 albertel 3128: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
3129: $submitted = 0;
3130: }
1.41 ng 3131: }
1.156 albertel 3132: next if (!$submitted && ($submitonly eq 'yes' ||
3133: $submitonly eq 'incorrect' ||
3134: $submitonly eq 'graded'));
1.248 albertel 3135: next if (!$ungraded && ($submitonly eq 'graded'));
3136: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 3137: }
1.524 raeburn 3138: push(@nextlist,$student) if ($ctr < $ntstu);
1.129 ng 3139: last if ($ctr == $ntstu);
1.41 ng 3140: $ctr++;
3141: }
1.36 ng 3142:
1.41 ng 3143: $ctr = 0;
3144: my $total = scalar(@nextlist)-1;
1.39 ng 3145:
1.524 raeburn 3146: foreach (sort(@nextlist)) {
1.41 ng 3147: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 3148: $env{'form.student'} = $uname;
3149: $env{'form.userdom'} = $udom;
3150: $env{'form.fullname'} = $$fullname{$_};
1.41 ng 3151: &submission($request,$ctr,$total);
3152: $ctr++;
3153: }
3154: if ($total < 0) {
1.485 albertel 3155: my $the_end = '<h3><span class="LC_info">'.&mt('LON-CAPA User Message').'</span></h3><br />'."\n";
1.596.2.4 raeburn 3156: $the_end.='<p>'.&mt('[_1]Message:[_2] No more students for this section or class.','<b>','</b>').'</p>'."\n";
1.485 albertel 3157: $the_end.=&mt('Click on the button below to return to the grading menu.').'<br /><br />'."\n";
1.324 albertel 3158: $the_end.=&show_grading_menu_form($symb);
1.41 ng 3159: $request->print($the_end);
3160: }
3161: return '';
1.38 ng 3162: }
1.36 ng 3163:
1.44 ng 3164: #---- Save the score and award for each student, if changed
1.38 ng 3165: sub saveHandGrade {
1.324 albertel 3166: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 3167: my @version_parts;
1.104 albertel 3168: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 3169: $env{'request.course.id'});
1.104 albertel 3170: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 3171: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 3172: my @parts_graded;
1.77 ng 3173: my %newrecord = ();
1.596.2.12.2. 1(raebur 3174:5): my ($pts,$wgt,$totchg) = ('','',0);
1.269 raeburn 3175: my %aggregate = ();
3176: my $aggregateflag = 0;
1.596.2.12.2. 1(raebur 3177:5): if ($env{'form.HIDE'.$newflg}) {
3178:5): my ($version,$parts) = split(/:/,$env{'form.HIDE'.$newflg},2);
3179:5): my $numchgs = &makehidden($version,$parts,\%record,$symb,$domain,$stuname,1);
3180:5): $totchg += $numchgs;
3181:5): }
1.301 albertel 3182: my @parts = split(/:/,$env{'form.partlist'.$newflg});
3183: foreach my $new_part (@parts) {
1.337 banghart 3184: #collaborator ($submi may vary for different parts
1.259 banghart 3185: if ($submitter && $new_part ne $part) { next; }
3186: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 3187: if ($dropMenu eq 'excused') {
1.259 banghart 3188: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
3189: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
3190: if (exists($record{'resource.'.$new_part.'.awarded'})) {
3191: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 3192: }
1.364 banghart 3193: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 3194: }
1.125 ng 3195: } elsif ($dropMenu eq 'reset status'
1.259 banghart 3196: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.524 raeburn 3197: foreach my $key (keys(%record)) {
1.259 banghart 3198: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 3199: }
1.259 banghart 3200: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 3201: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 3202: my $totaltries = $record{'resource.'.$part.'.tries'};
3203:
3204: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
3205: [$new_part]);
3206: my $aggtries =$totaltries;
1.269 raeburn 3207: if ($last_resets{$new_part}) {
1.270 albertel 3208: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
3209: $new_part);
1.269 raeburn 3210: }
1.270 albertel 3211:
3212: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 3213: if ($aggtries > 0) {
1.327 albertel 3214: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 3215: $aggregateflag = 1;
3216: }
1.125 ng 3217: } elsif ($dropMenu eq '') {
1.259 banghart 3218: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
3219: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
3220: $env{'form.RADVAL'.$newflg.'_'.$new_part});
3221: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 3222: next;
3223: }
1.259 banghart 3224: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
3225: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 3226: my $partial= $pts/$wgt;
1.259 banghart 3227: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 3228: #do not update score for part if not changed.
1.346 banghart 3229: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 3230: next;
1.251 banghart 3231: } else {
1.524 raeburn 3232: push(@parts_graded,$new_part);
1.153 albertel 3233: }
1.259 banghart 3234: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
3235: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 3236: }
1.259 banghart 3237: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 3238: if ($partial == 0) {
1.153 albertel 3239: if ($record{$reckey} ne 'incorrect_by_override') {
3240: $newrecord{$reckey} = 'incorrect_by_override';
3241: }
1.41 ng 3242: } else {
1.153 albertel 3243: if ($record{$reckey} ne 'correct_by_override') {
3244: $newrecord{$reckey} = 'correct_by_override';
3245: }
3246: }
3247: if ($submitter &&
1.259 banghart 3248: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
3249: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 3250: }
1.259 banghart 3251: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 3252: "$env{'user.name'}:$env{'user.domain'}";
1.41 ng 3253: }
1.259 banghart 3254: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 3255: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
3256: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
3257: $dropMenu eq 'reset status')
3258: {
1.524 raeburn 3259: push(@version_parts,$new_part);
1.259 banghart 3260: }
1.41 ng 3261: }
1.301 albertel 3262: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3263: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3264:
1.344 albertel 3265: if (%newrecord) {
3266: if (@version_parts) {
1.364 banghart 3267: my @changed_keys = &version_portfiles(\%record, \@parts_graded,
3268: $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 3269: @newrecord{@changed_keys} = @record{@changed_keys};
1.367 albertel 3270: foreach my $new_part (@version_parts) {
3271: &handback_files($request,$symb,$stuname,$domain,$newflg,
3272: $new_part,\%newrecord);
3273: }
1.259 banghart 3274: }
1.44 ng 3275: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 3276: $env{'request.course.id'},$domain,$stuname);
1.380 albertel 3277: &check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
3278: $cdom,$cnum,$domain,$stuname);
1.41 ng 3279: }
1.269 raeburn 3280: if ($aggregateflag) {
3281: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3282: $cdom,$cnum);
1.269 raeburn 3283: }
1.596.2.12.2. 1(raebur 3284:5): return ('',$pts,$wgt,$totchg);
3285:5): }
3286:5):
3287:5): sub makehidden {
3288:5): my ($version,$parts,$record,$symb,$domain,$stuname,$tolog) = @_;
3289:5): return unless (ref($record) eq 'HASH');
3290:5): my %modified;
3291:5): my $numchanged = 0;
3292:5): if (exists($record->{$version.':keys'})) {
3293:5): my $partsregexp = $parts;
3294:5): $partsregexp =~ s/,/|/g;
3295:5): foreach my $key (split(/\:/,$record->{$version.':keys'})) {
3296:5): if ($key =~ /^resource\.(?:$partsregexp)\.([^\.]+)$/) {
3297:5): my $item = $1;
3298:5): unless (($item eq 'solved') || ($item =~ /^award(|msg|ed)$/)) {
3299:5): $modified{$key} = $record->{$version.':'.$key};
3300:5): }
3301:5): } elsif ($key =~ m{^(resource\.(?:$partsregexp)\.[^\.]+\.)(.+)$}) {
3302:5): $modified{$1.'hidden'.$2} = $record->{$version.':'.$key};
3303:5): } elsif ($key =~ /^(ip|timestamp|host)$/) {
3304:5): $modified{$key} = $record->{$version.':'.$key};
3305:5): }
3306:5): }
3307:5): if (keys(%modified)) {
3308:5): if (&Apache::lonnet::putstore($env{'request.course.id'},$symb,$version,\%modified,
3309:5): $domain,$stuname,$tolog) eq 'ok') {
3310:5): $numchanged ++;
3311:5): }
3312:5): }
3313:5): }
3314:5): return $numchanged;
1.36 ng 3315: }
1.322 albertel 3316:
1.380 albertel 3317: sub check_and_remove_from_queue {
3318: my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
3319: my @ungraded_parts;
3320: foreach my $part (@{$parts}) {
3321: if ( $record->{ 'resource.'.$part.'.awarded'} eq ''
3322: && $record->{ 'resource.'.$part.'.solved' } ne 'excused'
3323: && $newrecord->{'resource.'.$part.'.awarded'} eq ''
3324: && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
3325: ) {
3326: push(@ungraded_parts, $part);
3327: }
3328: }
3329: if ( !@ungraded_parts ) {
3330: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
3331: $cnum,$domain,$stuname);
3332: }
3333: }
3334:
1.337 banghart 3335: sub handback_files {
3336: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.517 raeburn 3337: my $portfolio_root = '/userfiles/portfolio';
1.582 raeburn 3338: my $res_error;
3339: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3340: if ($res_error) {
3341: $request->print('<br />'.&navmap_errormsg().'<br />');
3342: return;
3343: }
1.596.2.4 raeburn 3344: my @handedback;
3345: my $file_msg;
1.375 albertel 3346: my @part_response_id = &flatten_responseType($responseType);
3347: foreach my $part_response_id (@part_response_id) {
3348: my ($part_id,$resp_id) = @{ $part_response_id };
3349: my $part_resp = join('_',@{ $part_response_id });
1.596.2.4 raeburn 3350: if (($env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'} =~ /^\d+$/) & ($new_part eq $part_id)) {
3351: for (my $counter=1; $counter<=$env{'form.'.$newflg.'_'.$part_resp.'_countreturndoc'}; $counter++) {
1.337 banghart 3352: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
1.596.2.4 raeburn 3353: if ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter}) {
3354: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$counter.'.filename'};
1.338 banghart 3355: my ($directory,$answer_file) =
1.596.2.4 raeburn 3356: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$counter} =~ /^(.*?)([^\/]*)$/);
1.338 banghart 3357: my ($answer_name,$answer_ver,$answer_ext) =
3358: &file_name_version_ext($answer_file);
1.355 banghart 3359: my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.517 raeburn 3360: my $getpropath = 1;
1.596.2.12.2. (raeburn 3361:): my ($dir_list,$listerror) =
3362:): &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,
3363:): $domain,$stuname,$getpropath);
3364:): my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
3(raebur 3365:3): # fix filename
1.355 banghart 3366: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
3367: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
1.596.2.4 raeburn 3368: $newflg.'_'.$part_resp.'_returndoc'.$counter,
1.355 banghart 3369: $save_file_name);
1.337 banghart 3370: if ($result !~ m|^/uploaded/|) {
1.536 raeburn 3371: $request->print('<br /><span class="LC_error">'.
3372: &mt('An error occurred ([_1]) while trying to upload [_2].',
1.596.2.4 raeburn 3373: $result,$newflg.'_'.$part_resp.'_returndoc'.$counter).
1.536 raeburn 3374: '</span>');
1.356 banghart 3375: } else {
1.360 banghart 3376: # mark the file as read only
1.596.2.4 raeburn 3377: push(@handedback,$save_file_name);
1.367 albertel 3378: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
3379: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
3380: }
3381: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
1.596.2.4 raeburn 3382: $file_msg.='<span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span> <br />";
1.367 albertel 3383:
1.337 banghart 3384: }
1.596.2.12.2. 3(raebur 3385:3): $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 3386: }
3387: }
3388: }
1.596.2.4 raeburn 3389: }
3390: if (@handedback > 0) {
3391: $request->print('<br />');
3392: my @what = ($symb,$env{'request.course.id'},'handback');
3393: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@handedback,\@what);
3394: my $user_lh = &Apache::loncommon::user_lang($stuname,$domain,$env{'request.course.id'});
3395: my ($subject,$message);
3396: if (scalar(@handedback) == 1) {
3397: $subject = &mt_user($user_lh,'File Handed Back by Instructor');
3398: } else {
3399: $subject = &mt_user($user_lh,'Files Handed Back by Instructor');
3400: $message = &mt_user($user_lh,'Files have been returned that were originally submitted in response to: ');
3401: }
3402: $message .= "<p><strong>".&Apache::lonnet::gettitle($symb)." </strong></p>";
3403: $message .= &mt_user($user_lh,'The returned file(s) are named: [_1]',"<br />$file_msg <br />").
3404: &mt_user($user_lh,'The file(s) can be found in your [_1]portfolio[_2].','<a href="/adm/portfolio">','</a>');
3405: my ($feedurl,$showsymb) =
3406: &get_feedurl_and_symb($symb,$domain,$stuname);
3407: my $restitle = &Apache::lonnet::gettitle($symb);
3408: $subject .= ' '.&mt_user($user_lh,'(File Returned)').' ['.$restitle.']';
3409: my $msgstatus =
3410: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject,
3411: $message,undef,$feedurl,undef,undef,undef,$showsymb,
3412: $restitle);
3413: if ($msgstatus) {
3414: $request->print(&mt('Notification message status: [_1]','<span class="LC_info">'.$msgstatus.'</span>').'<br />');
3415: }
3416: }
1.338 banghart 3417: return;
1.337 banghart 3418: }
3419:
1.418 albertel 3420: sub get_feedurl_and_symb {
3421: my ($symb,$uname,$udom) = @_;
3422: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
3423: $url = &Apache::lonnet::clutter($url);
3424: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
3425: $symb,$udom,$uname);
3426: if ($encrypturl =~ /^yes$/i) {
3427: &Apache::lonenc::encrypted(\$url,1);
3428: &Apache::lonenc::encrypted(\$symb,1);
3429: }
3430: return ($url,$symb);
3431: }
3432:
1.313 banghart 3433: sub get_submitted_files {
3434: my ($udom,$uname,$partid,$respid,$record) = @_;
3435: my @files;
3436: if ($$record{"resource.$partid.$respid.portfiles"}) {
3437: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
3438: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
3439: push(@files,$file_url.$file);
3440: }
3441: }
3442: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
3443: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
3444: }
3445: return (\@files);
3446: }
1.322 albertel 3447:
1.269 raeburn 3448: # ----------- Provides number of tries since last reset.
3449: sub get_num_tries {
3450: my ($record,$last_reset,$part) = @_;
3451: my $timestamp = '';
3452: my $num_tries = 0;
3453: if ($$record{'version'}) {
3454: for (my $version=$$record{'version'};$version>=1;$version--) {
3455: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
3456: $timestamp = $$record{$version.':timestamp'};
3457: if ($timestamp > $last_reset) {
3458: $num_tries ++;
3459: } else {
3460: last;
3461: }
3462: }
3463: }
3464: }
3465: return $num_tries;
3466: }
3467:
3468: # ----------- Determine decrements required in aggregate totals
3469: sub decrement_aggs {
3470: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
3471: my %decrement = (
3472: attempts => 0,
3473: users => 0,
3474: correct => 0
3475: );
3476: $decrement{'attempts'} = $aggtries;
3477: if ($solvedstatus =~ /^correct/) {
3478: $decrement{'correct'} = 1;
3479: }
3480: if ($aggtries == $totaltries) {
3481: $decrement{'users'} = 1;
3482: }
1.524 raeburn 3483: foreach my $type (keys(%decrement)) {
1.269 raeburn 3484: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
3485: }
3486: return;
3487: }
3488:
3489: # ----------- Determine timestamps for last reset of aggregate totals for parts
3490: sub get_last_resets {
1.270 albertel 3491: my ($symb,$courseid,$partids) =@_;
3492: my %last_resets;
1.269 raeburn 3493: my $cdom = $env{'course.'.$courseid.'.domain'};
3494: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 3495: my @keys;
3496: foreach my $part (@{$partids}) {
3497: push(@keys,"$symb\0$part\0resettime");
3498: }
3499: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
3500: $cdom,$cname);
3501: foreach my $part (@{$partids}) {
3502: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 3503: }
1.270 albertel 3504: return %last_resets;
1.269 raeburn 3505: }
3506:
1.251 banghart 3507: # ----------- Handles creating versions for portfolio files as answers
3508: sub version_portfiles {
1.343 banghart 3509: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 3510: my $version_parts = join('|',@$v_flag);
1.343 banghart 3511: my @returned_keys;
1.255 banghart 3512: my $parts = join('|', @$parts_graded);
1.517 raeburn 3513: my $portfolio_root = '/userfiles/portfolio';
1.277 albertel 3514: foreach my $key (keys(%$record)) {
1.259 banghart 3515: my $new_portfiles;
1.263 banghart 3516: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 3517: my @versioned_portfiles;
1.367 albertel 3518: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252 banghart 3519: foreach my $file (@portfiles) {
1.306 banghart 3520: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 3521: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
3522: my ($answer_name,$answer_ver,$answer_ext) =
3523: &file_name_version_ext($answer_file);
1.596.2.12.2. (raeburn 3524:): my $getpropath = 1;
3525:): my ($dir_list,$listerror) =
3526:): &Apache::lonnet::dirlist($portfolio_root.$directory,$domain,
3527:): $stu_name,$getpropath);
3528:): my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
1.306 banghart 3529: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
3530: if ($new_answer ne 'problem getting file') {
1.342 banghart 3531: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 3532: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367 albertel 3533: [$directory.$new_answer],
1.306 banghart 3534: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 3535: }
1.252 banghart 3536: }
1.343 banghart 3537: $$record{$key} = join(',',@versioned_portfiles);
3538: push(@returned_keys,$key);
1.251 banghart 3539: }
3540: }
1.343 banghart 3541: return (@returned_keys);
1.305 banghart 3542: }
3543:
1.307 banghart 3544: sub get_next_version {
1.341 banghart 3545: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 3546: my $version;
1.596.2.12.2. (raeburn 3547:): if (ref($dir_list) eq 'ARRAY') {
3548:): foreach my $row (@{$dir_list}) {
3549:): my ($file) = split(/\&/,$row,2);
3550:): my ($file_name,$file_version,$file_ext) =
3551:): &file_name_version_ext($file);
3552:): if (($file_name eq $answer_name) &&
3553:): ($file_ext eq $answer_ext)) {
3554:): # gets here if filename and extension match,
3555:): # regardless of version
1.307 banghart 3556: if ($file_version ne '') {
1.596.2.12.2. (raeburn 3557:): # a versioned file is found so save it for later
3558:): if ($file_version > $version) {
3559:): $version = $file_version;
3560:): }
1.307 banghart 3561: }
3562: }
3563: }
1.596.2.12.2. (raeburn 3564:): }
1.307 banghart 3565: $version ++;
3566: return($version);
3567: }
3568:
1.305 banghart 3569: sub version_selected_portfile {
1.306 banghart 3570: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
3571: my ($answer_name,$answer_ver,$answer_ext) =
3572: &file_name_version_ext($file_name);
3573: my $new_answer;
3574: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
3575: if($env{'form.copy'} eq '-1') {
3576: $new_answer = 'problem getting file';
3577: } else {
3578: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
3579: my $copy_result = &Apache::lonnet::finishuserfileupload(
3580: $stu_name,$domain,'copy',
3581: '/portfolio'.$directory.$new_answer);
3582: }
3583: return ($new_answer);
1.251 banghart 3584: }
3585:
1.304 albertel 3586: sub file_name_version_ext {
3587: my ($file)=@_;
3588: my @file_parts = split(/\./, $file);
3589: my ($name,$version,$ext);
3590: if (@file_parts > 1) {
3591: $ext=pop(@file_parts);
3592: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
3593: $version=pop(@file_parts);
3594: }
3595: $name=join('.',@file_parts);
3596: } else {
3597: $name=join('.',@file_parts);
3598: }
3599: return($name,$version,$ext);
3600: }
3601:
1.44 ng 3602: #--------------------------------------------------------------------------------------
3603: #
3604: #-------------------------- Next few routines handles grading by section or whole class
3605: #
3606: #--- Javascript to handle grading by section or whole class
1.42 ng 3607: sub viewgrades_js {
3608: my ($request) = shift;
3609:
1.539 riegler 3610: my $alertmsg = &mt('A number equal or greater than 0 is expected. Entered value = ');
1.596.2.12.2. 6(raebur 3611:6): &js_escape(\$alertmsg);
1.41 ng 3612: $request->print(<<VIEWJAVASCRIPT);
3613: <script type="text/javascript" language="javascript">
1.45 ng 3614: function writePoint(partid,weight,point) {
1.125 ng 3615: var radioButton = document.classgrade["RADVAL_"+partid];
3616: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 3617: if (point == "textval") {
1.125 ng 3618: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 3619: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3620: alert("$alertmsg"+parseFloat(point));
1.42 ng 3621: var resetbox = false;
3622: for (var i=0; i<radioButton.length; i++) {
3623: if (radioButton[i].checked) {
3624: textbox.value = i;
3625: resetbox = true;
3626: }
3627: }
3628: if (!resetbox) {
3629: textbox.value = "";
3630: }
3631: return;
3632: }
1.109 matthew 3633: if (parseFloat(point) > parseFloat(weight)) {
3634: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3635: ") greater than the weight for the part. Accept?");
3636: if (resp == false) {
3637: textbox.value = "";
3638: return;
3639: }
3640: }
1.42 ng 3641: for (var i=0; i<radioButton.length; i++) {
3642: radioButton[i].checked=false;
1.109 matthew 3643: if (parseFloat(point) == i) {
1.42 ng 3644: radioButton[i].checked=true;
3645: }
3646: }
1.41 ng 3647:
1.42 ng 3648: } else {
1.125 ng 3649: textbox.value = parseFloat(point);
1.42 ng 3650: }
1.41 ng 3651: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3652: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3653: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3654: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3655: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3656: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3657: if (saveval != "correct") {
3658: scorename.value = point;
1.43 ng 3659: if (selname[0].selected != true) {
3660: selname[0].selected = true;
3661: }
1.42 ng 3662: }
3663: }
1.125 ng 3664: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3665: }
3666:
3667: function writeRadText(partid,weight) {
1.125 ng 3668: var selval = document.classgrade["SELVAL_"+partid];
3669: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3670: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3671: var textbox = document.classgrade["TEXTVAL_"+partid];
3672: if (selval[1].selected || selval[2].selected) {
1.42 ng 3673: for (var i=0; i<radioButton.length; i++) {
3674: radioButton[i].checked=false;
3675:
3676: }
3677: textbox.value = "";
3678:
3679: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3680: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3681: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3682: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3683: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3684: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3685: if ((saveval != "correct") || override) {
1.42 ng 3686: scorename.value = "";
1.125 ng 3687: if (selval[1].selected) {
3688: selname[1].selected = true;
3689: } else {
3690: selname[2].selected = true;
3691: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3692: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3693: }
1.42 ng 3694: }
3695: }
1.43 ng 3696: } else {
3697: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3698: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3699: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3700: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3701: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3702: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3703: if ((saveval != "correct") || override) {
1.125 ng 3704: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3705: selname[0].selected = true;
3706: }
3707: }
3708: }
1.42 ng 3709: }
3710:
3711: function changeSelect(partid,user) {
1.125 ng 3712: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3713: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3714: var point = textbox.value;
1.125 ng 3715: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3716:
1.109 matthew 3717: if (isNaN(point) || parseFloat(point) < 0) {
1.539 riegler 3718: alert("$alertmsg"+parseFloat(point));
1.44 ng 3719: textbox.value = "";
3720: return;
3721: }
1.109 matthew 3722: if (parseFloat(point) > parseFloat(weight)) {
3723: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3724: ") greater than the weight of the part. Accept?");
3725: if (resp == false) {
3726: textbox.value = "";
3727: return;
3728: }
3729: }
1.42 ng 3730: selval[0].selected = true;
3731: }
3732:
3733: function changeOneScore(partid,user) {
1.125 ng 3734: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3735: if (selval[1].selected || selval[2].selected) {
3736: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3737: if (selval[2].selected) {
3738: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3739: }
1.269 raeburn 3740: }
1.42 ng 3741: }
3742:
3743: function resetEntry(numpart) {
3744: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3745: var partid = document.classgrade["partid_"+ctpart].value;
3746: var radioButton = document.classgrade["RADVAL_"+partid];
3747: var textbox = document.classgrade["TEXTVAL_"+partid];
3748: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3749: for (var i=0; i<radioButton.length; i++) {
3750: radioButton[i].checked=false;
3751:
3752: }
3753: textbox.value = "";
3754: selval[0].selected = true;
3755:
3756: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3757: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3758: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3759: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3760: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3761: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3762: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3763: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3764: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3765: if (saveselval == "excused") {
1.43 ng 3766: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3767: } else {
1.43 ng 3768: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3769: }
3770: }
1.41 ng 3771: }
1.42 ng 3772: }
3773:
1.41 ng 3774: </script>
3775: VIEWJAVASCRIPT
1.42 ng 3776: }
3777:
1.44 ng 3778: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3779: sub viewgrades {
3780: my ($request) = shift;
3781: &viewgrades_js($request);
1.41 ng 3782:
1.324 albertel 3783: my ($symb) = &get_symb($request);
1.168 albertel 3784: #need to make sure we have the correct data for later EXT calls,
3785: #thus invalidate the cache
3786: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3787: $env{'course.'.$env{'request.course.id'}.'.num'},
3788: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3789: &Apache::lonnet::clear_EXT_cache_status();
3790:
1.398 albertel 3791: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
1.596.2.12.2. 9(raebur 3792:3): $result.='<h4><b>'.&mt('Current Resource').':</b> '.$env{'form.probTitle'}.'</h4>'."\n";
1.41 ng 3793:
3794: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3795: $result.=&jscriptNform($symb);
1.41 ng 3796:
1.44 ng 3797: #beginning of class grading form
1.442 banghart 3798: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3799: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3800: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3801: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3802: &build_section_inputs().
1.257 albertel 3803: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 3804: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.257 albertel 3805: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72 ng 3806:
1.596.2.12.2. 7(raebur 3807:6): #retrieve selected groups
3808:6): my (@groups,$group_display);
8(raebur 3809:6): @groups = &Apache::loncommon::get_env_multiple('form.group');
7(raebur 3810:6): if (grep(/^all$/,@groups)) {
3811:6): @groups = ('all');
3812:6): } elsif (grep(/^none$/,@groups)) {
3813:6): @groups = ('none');
3814:6): } elsif (@groups > 0) {
3815:6): $group_display = join(', ',@groups);
3816:6): }
3817:6):
3818:6): my ($common_header,$specific_header,@sections,$section_display);
3819:6): @sections = &Apache::loncommon::get_env_multiple('form.section');
3820:6): if (grep(/^all$/,@sections)) {
3821:6): @sections = ('all');
3822:6): if ($group_display) {
3823:6): $common_header = &mt('Assign Common Grade to Students in Group(s) [_1]',$group_display);
3824:6): $specific_header = &mt('Assign Grade to Specific Students in Group(s) [_1]',$group_display);
3825:6): } elsif (grep(/^none$/,@groups)) {
3826:6): $common_header = &mt('Assign Common Grade to Students not assigned to any groups');
3827:6): $specific_header = &mt('Assign Grade to Specific Students not assigned to any groups');
3828:6): } else {
3829:6): $common_header = &mt('Assign Common Grade to Class');
3830:6): $specific_header = &mt('Assign Grade to Specific Students in Class');
3831:6): }
3832:6): } elsif (grep(/^none$/,@sections)) {
3833:6): @sections = ('none');
3834:6): if ($group_display) {
3835:6): $common_header = &mt('Assign Common Grade to Students in no Section and in Group(s) [_1]',$group_display);
3836:6): $specific_header = &mt('Assign Grade to Specific Students in no Section and in Group(s)',$group_display);
3837:6): } elsif (grep(/^none$/,@groups)) {
3838:6): $common_header = &mt('Assign Common Grade to Students in no Section and in no Group');
3839:6): $specific_header = &mt('Assign Grade to Specific Students in no Section and in no Group');
3840:6): } else {
3841:6): $common_header = &mt('Assign Common Grade to Students in no Section');
3842:6): $specific_header = &mt('Assign Grade to Specific Students in no Section');
3843:6): }
3844:6): } else {
3845:6): $section_display = join (", ",@sections);
3846:6): if ($group_display) {
3847:6): $common_header = &mt('Assign Common Grade to Students in Section(s) [_1], and in Group(s) [_2]',
3848:6): $section_display,$group_display);
3849:6): $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1], and in Group(s) [_2]',
3850:6): $section_display,$group_display);
3851:6): } elsif (grep(/^none$/,@groups)) {
3852:6): $common_header = &mt('Assign Common Grade to Students in Section(s) [_1] and no Group',$section_display);
3853:6): $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1] and no Group',$section_display);
3854:6): } else {
3855:6): $common_header = &mt('Assign Common Grade to Students in Section(s) [_1]',$section_display);
3856:6): $specific_header = &mt('Assign Grade to Specific Students in Section(s) [_1]',$section_display);
3857:6): }
1.52 albertel 3858: }
1.596.2.12.2. 7(raebur 3859:6): my %submit_types = &substatus_options();
3860:6): my $submission_status = $submit_types{$env{'form.submitonly'}};
3861:6):
3862:6): if ($env{'form.submitonly'} eq 'all') {
3863:6): $result.= '<h3>'.$common_header.'</h3>';
3864:6): } else {
3865:6): $result.= '<h3>'.$common_header.' '.&mt('(submission status: "[_1]")',$submission_status).'</h3>';
3866:6): }
3867:6): $result .= &Apache::loncommon::start_data_table();
1.44 ng 3868: #radio buttons/text box for assigning points for a section or class.
3869: #handles different parts of a problem
1.582 raeburn 3870: my $res_error;
3871: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
3872: if ($res_error) {
3873: return &navmap_errormsg();
3874: }
1.42 ng 3875: my %weight = ();
3876: my $ctsparts = 0;
1.45 ng 3877: my %seen = ();
1.375 albertel 3878: my @part_response_id = &flatten_responseType($responseType);
3879: foreach my $part_response_id (@part_response_id) {
3880: my ($partid,$respid) = @{ $part_response_id };
3881: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3882: next if $seen{$partid};
3883: $seen{$partid}++;
1.375 albertel 3884: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3885: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3886: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3887:
1.324 albertel 3888: my $display_part=&get_display_part($partid,$symb);
1.485 albertel 3889: my $radio.='<table border="0"><tr>';
1.41 ng 3890: my $ctr = 0;
1.42 ng 3891: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.485 albertel 3892: $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3893: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3894: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3895: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3896: $ctr++;
3897: }
1.485 albertel 3898: $radio.='</tr></table>';
3899: my $line = '<input type="text" name="TEXTVAL_'.
1.589 bisitz 3900: $partid.'" size="4" '.'onchange="javascript:writePoint(\''.
1.54 albertel 3901: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.539 riegler 3902: $weight{$partid}.' '.&mt('(problem weight)').'</td>'."\n";
1.596.2.12.2. 9(raebur 3903:3): $line.= '<td><b>'.&mt('Grade Status').':</b>'.
3904:3): '<select name="SELVAL_'.$partid.'" '.
3905:3): 'onchange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 3906: $weight{$partid}.')"> '.
1.401 albertel 3907: '<option selected="selected"> </option>'.
1.485 albertel 3908: '<option value="excused">'.&mt('excused').'</option>'.
3909: '<option value="reset status">'.&mt('reset status').'</option>'.
3910: '</select></td>'.
3911: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
3912: $line.='<input type="hidden" name="partid_'.
3913: $ctsparts.'" value="'.$partid.'" />'."\n";
3914: $line.='<input type="hidden" name="weight_'.
3915: $partid.'" value="'.$weight{$partid}.'" />'."\n";
3916:
3917: $result.=
3918: &Apache::loncommon::start_data_table_row()."\n".
1.577 bisitz 3919: '<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 3920: &Apache::loncommon::end_data_table_row()."\n";
1.42 ng 3921: $ctsparts++;
1.41 ng 3922: }
1.474 albertel 3923: $result.=&Apache::loncommon::end_data_table()."\n".
1.52 albertel 3924: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.485 albertel 3925: $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
1.589 bisitz 3926: 'onclick="javascript:resetEntry('.$ctsparts.');" />';
1.41 ng 3927:
1.44 ng 3928: #table listing all the students in a section/class
3929: #header of table
1.596.2.12.2. 7(raebur 3930:6): if ($env{'form.submitonly'} eq 'all') {
3931:6): $result.= '<h3>'.$specific_header.'</h3>';
3932:6): } else {
3933:6): $result.= '<h3>'.$specific_header.' '.&mt('(submission status: "[_1]")',$submission_status).'</h3>';
3934:6): }
3935:6): $result.= &Apache::loncommon::start_data_table().
1.560 raeburn 3936: &Apache::loncommon::start_data_table_header_row().
3937: '<th>'.&mt('No.').'</th>'.
3938: '<th>'.&nameUserString('header')."</th>\n";
1.582 raeburn 3939: my $partserror;
3940: my (@parts) = sort(&getpartlist($symb,\$partserror));
3941: if ($partserror) {
3942: return &navmap_errormsg();
3943: }
1.324 albertel 3944: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3945: my @partids = ();
1.41 ng 3946: foreach my $part (@parts) {
3947: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.539 riegler 3948: my $narrowtext = &mt('Tries');
3949: $display =~ s|^Number of Attempts|$narrowtext <br />|; # makes the column narrower
1.41 ng 3950: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3951: my ($partid) = &split_part_type($part);
1.524 raeburn 3952: push(@partids,$partid);
1.324 albertel 3953: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3954: if ($display =~ /^Partial Credit Factor/) {
1.485 albertel 3955: $result.='<th>'.
1.596.2.12.2. 8(raebur 3956:3): &mt('Score Part: [_1][_2](weight = [_3])',
3957:3): $display_part,'<br />',$weight{$partid}).'</th>'."\n";
1.41 ng 3958: next;
1.485 albertel 3959:
1.207 albertel 3960: } else {
1.485 albertel 3961: if ($display =~ /Problem Status/) {
3962: my $grade_status_mt = &mt('Grade Status');
3963: $display =~ s{Problem Status}{$grade_status_mt<br />};
3964: }
3965: my $part_mt = &mt('Part:');
3966: $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
1.41 ng 3967: }
1.485 albertel 3968:
1.474 albertel 3969: $result.='<th>'.$display.'</th>'."\n";
1.41 ng 3970: }
1.474 albertel 3971: $result.=&Apache::loncommon::end_data_table_header_row();
1.44 ng 3972:
1.270 albertel 3973: my %last_resets =
3974: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3975:
1.41 ng 3976: #get info for each student
1.44 ng 3977: #list all the students - with points and grade status
1.596.2.12.2. 7(raebur 3978:6): my (undef,undef,$fullname) = &getclasslist(\@sections,'1',\@groups);
1.41 ng 3979: my $ctr = 0;
1.294 albertel 3980: foreach (sort
3981: {
3982: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3983: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3984: }
3985: return $a cmp $b;
3986: } (keys(%$fullname))) {
1.324 albertel 3987: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.596.2.12.2. 7(raebur 3988:6): $_,$$fullname{$_},\@parts,\%weight,\$ctr,\%last_resets);
1.41 ng 3989: }
1.474 albertel 3990: $result.=&Apache::loncommon::end_data_table();
1.41 ng 3991: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.485 albertel 3992: $result.='<input type="button" value="'.&mt('Save').'" '.
1.589 bisitz 3993: 'onclick="javascript:submit();" target="_self" /></form>'."\n";
1.596.2.12.2. 7(raebur 3994:6): if ($ctr == 0) {
1.442 banghart 3995: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.596.2.12.2. 7(raebur 3996:6): $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>'.
3997:6): '<span class="LC_warning">';
3998:6): if ($env{'form.submitonly'} eq 'all') {
3999:6): if (grep(/^all$/,@sections)) {
4000:6): if (grep(/^all$/,@groups)) {
4001:6): $result .= &mt('There are no students with enrollment status [_1] to modify or grade.',
4002:6): $stu_status);
4003:6): } elsif (grep(/^none$/,@groups)) {
4004:6): $result .= &mt('There are no students with no group assigned and with enrollment status [_1] to modify or grade.',
4005:6): $stu_status);
4006:6): } else {
4007:6): $result .= &mt('There are no students in group(s) [_1] with enrollment status [_2] to modify or grade.',
4008:6): $group_display,$stu_status);
4009:6): }
4010:6): } elsif (grep(/^none$/,@sections)) {
4011:6): if (grep(/^all$/,@groups)) {
4012:6): $result .= &mt('There are no students in no section with enrollment status [_1] to modify or grade.',
4013:6): $stu_status);
4014:6): } elsif (grep(/^none$/,@groups)) {
4015:6): $result .= &mt('There are no students in no section and no group with enrollment status [_1] to modify or grade.',
4016:6): $stu_status);
4017:6): } else {
4018:6): $result .= &mt('There are no students in no section in group(s) [_1] with enrollment status [_2] to modify or grade.',
4019:6): $group_display,$stu_status);
4020:6): }
4021:6): } else {
4022:6): if (grep(/^all$/,@groups)) {
4023:6): $result .= &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
4024:6): $section_display,$stu_status);
4025:6): } elsif (grep(/^none$/,@groups)) {
9(raebur 4026:7): $result .= &mt('There are no students in section(s) [_1] and no group with enrollment status [_2] to modify or grade.',
7(raebur 4027:6): $section_display,$stu_status);
4028:6): } else {
4029:6): $result .= &mt('There are no students in section(s) [_1] and group(s) [_2] with enrollment status [_3] to modify or grade.',
4030:6): $section_display,$group_display,$stu_status);
4031:6): }
4032:6): }
4033:6): } else {
4034:6): if (grep(/^all$/,@sections)) {
4035:6): if (grep(/^all$/,@groups)) {
4036:6): $result .= &mt('There are no students with enrollment status [_1] and submission status "[_2]" to modify or grade.',
4037:6): $stu_status,$submission_status);
4038:6): } elsif (grep(/^none$/,@groups)) {
4039:6): $result .= &mt('There are no students with no group assigned with enrollment status [_1] and submission status "[_2]" to modify or grade.',
4040:6): $stu_status,$submission_status);
4041:6): } else {
4042:6): $result .= &mt('There are no students in group(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
4043:6): $group_display,$stu_status,$submission_status);
4044:6): }
4045:6): } elsif (grep(/^none$/,@sections)) {
4046:6): if (grep(/^all$/,@groups)) {
4047:6): $result .= &mt('There are no students in no section with enrollment status [_1] and submission status "[_2]" to modify or grade.',
4048:6): $stu_status,$submission_status);
4049:6): } elsif (grep(/^none$/,@groups)) {
4050:6): $result .= &mt('There are no students in no section and no group with enrollment status [_1] and submission status "[_2]" to modify or grade.',
4051:6): $stu_status,$submission_status);
4052:6): } else {
4053:6): $result .= &mt('There are no students in no section in group(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
4054:6): $group_display,$stu_status,$submission_status);
4055:6): }
4056:6): } else {
4057:6): if (grep(/^all$/,@groups)) {
4058:6): $result .= &mt('There are no students in section(s) [_1] with enrollment status [_2] and submission status "[_3]" to modify or grade.',
4059:6): $section_display,$stu_status,$submission_status);
4060:6): } elsif (grep(/^none$/,@groups)) {
4061:6): $result .= &mt('There are no students in section(s) [_1] and no group with enrollment status [_2] and submission status "[_3]" to modify or grade.',
4062:6): $section_display,$stu_status,$submission_status);
4063:6): } else {
4064:6): $result .= &mt('There are no students in section(s) [_1] and group(s) [_2] with enrollment status [_3] and submission status "[_4]" to modify or grade.',
4065:6): $section_display,$group_display,$stu_status,$submission_status);
4066:6): }
4067:6): }
4068:6): }
4069:6): $result .= '</span><br />';
1.96 albertel 4070: }
1.324 albertel 4071: $result.=&show_grading_menu_form($symb);
1.41 ng 4072: return $result;
4073: }
4074:
1.596.2.12.2. 7(raebur 4075:6): #--- call by previous routine to display each student who satisfies submission filter.
1.41 ng 4076: sub viewstudentgrade {
1.324 albertel 4077: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 4078: my ($uname,$udom) = split(/:/,$student);
4079: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.596.2.12.2. 7(raebur 4080:6): my $submitonly = $env{'form.submitonly'};
4081:6): unless (($submitonly eq 'all') || ($submitonly eq 'queued')) {
4082:6): my %partstatus = ();
4083:6): if (ref($parts) eq 'ARRAY') {
4084:6): foreach my $apart (@{$parts}) {
4085:6): my ($part,$type) = &split_part_type($apart);
4086:6): my ($status,undef) = split(/_/,$record{"resource.$part.solved"},2);
4087:6): $status = 'nothing' if ($status eq '');
4088:6): $partstatus{$part} = $status;
4089:6): my $subkey = "resource.$part.submitted_by";
4090:6): $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
4091:6): }
4092:6): my $submitted = 0;
4093:6): my $graded = 0;
4094:6): my $incorrect = 0;
4095:6): foreach my $key (keys(%partstatus)) {
4096:6): $submitted = 1 if ($partstatus{$key} ne 'nothing');
4097:6): $graded = 1 if ($partstatus{$key} =~ /^ungraded/);
4098:6): $incorrect = 1 if ($partstatus{$key} =~ /^incorrect/);
4099:6):
4100:6): my $partid = (split(/\./,$key))[1];
4101:6): if ($partstatus{'resource.'.$partid.'.'.$key.'.submitted_by'} ne '') {
4102:6): $submitted = 0;
4103:6): }
4104:6): }
4105:6): return if (!$submitted && ($submitonly eq 'yes' ||
4106:6): $submitonly eq 'incorrect' ||
4107:6): $submitonly eq 'graded'));
4108:6): return if (!$graded && ($submitonly eq 'graded'));
4109:6): return if (!$incorrect && $submitonly eq 'incorrect');
4110:6): }
4111:6): }
4112:6): if ($submitonly eq 'queued') {
4113:6): my ($cdom,$cnum) = split(/_/,$courseid);
4114:6): my %queue_status =
4115:6): &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
4116:6): $udom,$uname);
4117:6): return if (!defined($queue_status{'gradingqueue'}));
4118:6): }
4119:6): $$ctr++;
4120:6): my %aggregates = ();
1.474 albertel 4121: my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.596.2.12.2. 7(raebur 4122:6): '<input type="hidden" name="ctr'.($$ctr-1).'" value="'.$student.'" />'.
4123:6): "\n".$$ctr.' </td><td> '.
1.44 ng 4124: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 4125: '\');" target="_self">'.$fullname.'</a> '.
1.398 albertel 4126: '<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281 albertel 4127: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 4128: foreach my $apart (@$parts) {
4129: my ($part,$type) = &split_part_type($apart);
1.41 ng 4130: my $score=$record{"resource.$part.$type"};
1.276 albertel 4131: $result.='<td align="center">';
1.269 raeburn 4132: my ($aggtries,$totaltries);
4133: unless (exists($aggregates{$part})) {
1.270 albertel 4134: $totaltries = $record{'resource.'.$part.'.tries'};
4135:
4136: $aggtries = $totaltries;
1.269 raeburn 4137: if ($$last_resets{$part}) {
1.270 albertel 4138: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
4139: $part);
4140: }
1.269 raeburn 4141: $result.='<input type="hidden" name="'.
4142: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
4143: $result.='<input type="hidden" name="'.
4144: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
4145: $aggregates{$part} = 1;
4146: }
1.41 ng 4147: if ($type eq 'awarded') {
1.320 albertel 4148: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 4149: $result.='<input type="hidden" name="'.
1.89 albertel 4150: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 4151: $result.='<input type="text" name="'.
1.89 albertel 4152: 'GD_'.$student.'_'.$part.'_awarded" '.
1.589 bisitz 4153: 'onchange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 4154: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 4155: } elsif ($type eq 'solved') {
4156: my ($status,$foo)=split(/_/,$score,2);
4157: $status = 'nothing' if ($status eq '');
1.89 albertel 4158: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 4159: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 4160: $result.=' <select name="'.
1.89 albertel 4161: 'GD_'.$student.'_'.$part.'_solved" '.
1.589 bisitz 4162: 'onchange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.485 albertel 4163: $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>'
4164: : '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
4165: $result.='<option value="reset status">'.&mt('reset status').'</option>';
1.126 ng 4166: $result.="</select> </td>\n";
1.122 ng 4167: } else {
4168: $result.='<input type="hidden" name="'.
4169: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
4170: "\n";
1.233 albertel 4171: $result.='<input type="text" name="'.
1.122 ng 4172: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
4173: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 4174: }
4175: }
1.474 albertel 4176: $result.=&Apache::loncommon::end_data_table_row();
1.41 ng 4177: return $result;
1.38 ng 4178: }
4179:
1.44 ng 4180: #--- change scores for all the students in a section/class
4181: # record does not get update if unchanged
1.38 ng 4182: sub editgrades {
1.41 ng 4183: my ($request) = @_;
4184:
1.596.2.12.2. (raeburn 4185:): my ($symb)=&get_symb($request);
1.433 banghart 4186: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477 albertel 4187: my $title='<h2>'.&mt('Current Grade Status').'</h2>';
1.596.2.12.2. 9(raebur 4188:3): $title.='<h4><b>'.&mt('Current Resource').':</b> '.$env{'form.probTitle'}.'</h4>'."\n";
4189:3): $title.='<h4><b>'.&mt('Section:').'</b> '.$section_display.'</h4>'."\n";
1.126 ng 4190:
1.477 albertel 4191: my $result= &Apache::loncommon::start_data_table().
4192: &Apache::loncommon::start_data_table_header_row().
4193: '<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
4194: '<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43 ng 4195: my %scoreptr = (
4196: 'correct' =>'correct_by_override',
4197: 'incorrect'=>'incorrect_by_override',
4198: 'excused' =>'excused',
4199: 'ungraded' =>'ungraded_attempted',
1.596 raeburn 4200: 'credited' =>'credit_attempted',
1.43 ng 4201: 'nothing' => '',
4202: );
1.257 albertel 4203: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 4204:
1.44 ng 4205: my (@partid);
4206: my %weight = ();
1.54 albertel 4207: my %columns = ();
1.44 ng 4208: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 4209:
1.582 raeburn 4210: my $partserror;
4211: my (@parts) = sort(&getpartlist($symb,\$partserror));
4212: if ($partserror) {
4213: return &navmap_errormsg();
4214: }
1.54 albertel 4215: my $header;
1.257 albertel 4216: while ($ctr < $env{'form.totalparts'}) {
4217: my $partid = $env{'form.partid_'.$ctr};
1.524 raeburn 4218: push(@partid,$partid);
1.257 albertel 4219: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 4220: $ctr++;
1.54 albertel 4221: }
1.324 albertel 4222: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.596.2.12.2. 2(raebur 4223:8): my $totcolspan = 0;
1.54 albertel 4224: foreach my $partid (@partid) {
1.478 albertel 4225: $header .= '<th align="center">'.&mt('Old Score').'</th>'.
4226: '<th align="center">'.&mt('New Score').'</th>';
1.54 albertel 4227: $columns{$partid}=2;
4228: foreach my $stores (@parts) {
4229: my ($part,$type) = &split_part_type($stores);
4230: if ($part !~ m/^\Q$partid\E/) { next;}
4231: if ($type eq 'awarded' || $type eq 'solved') { next; }
4232: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
1.551 raeburn 4233: $display =~ s/\[Part: \Q$part\E\]//;
1.539 riegler 4234: my $narrowtext = &mt('Tries');
4235: $display =~ s/Number of Attempts/$narrowtext/;
4236: $header .= '<th align="center">'.&mt('Old').' '.$display.'</th>'.
4237: '<th align="center">'.&mt('New').' '.$display.'</th>';
1.54 albertel 4238: $columns{$partid}+=2;
4239: }
1.596.2.12.2. 2(raebur 4240:8): $totcolspan += $columns{$partid};
1.54 albertel 4241: }
4242: foreach my $partid (@partid) {
1.324 albertel 4243: my $display_part=&get_display_part($partid,$symb);
1.478 albertel 4244: $result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
4245: &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
4246: '</th>';
1.54 albertel 4247:
1.44 ng 4248: }
1.477 albertel 4249: $result .= &Apache::loncommon::end_data_table_header_row().
4250: &Apache::loncommon::start_data_table_header_row().
4251: $header.
4252: &Apache::loncommon::end_data_table_header_row();
4253: my @noupdate;
1.126 ng 4254: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 4255: for ($i=0; $i<$env{'form.total'}; $i++) {
4256: my $user = $env{'form.ctr'.$i};
1.281 albertel 4257: my ($uname,$udom)=split(/:/,$user);
1.44 ng 4258: my %newrecord;
4259: my $updateflag = 0;
1.596.2.12.2. 2(raebur 4260:8): my $usec=$classlist->{"$uname:$udom"}[5];
4261:8): my $canmodify = &canmodify($usec);
4262:8): my $line = '<td'.($canmodify?'':' colspan="2"').'>'.
4263:8): &nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
4264:8): if (!$canmodify) {
4265:8): push(@noupdate,
4266:8): $line."<td colspan=\"$totcolspan\"><span class=\"LC_warning\">".
4267:8): &mt('Not allowed to modify student')."</span></td>");
4268:8): next;
4269:8): }
1.269 raeburn 4270: my %aggregate = ();
4271: my $aggregateflag = 0;
1.281 albertel 4272: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 4273: foreach (@partid) {
1.257 albertel 4274: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 4275: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
4276: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 4277: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
4278: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 4279: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
4280: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 4281: my $score;
4282: if ($partial eq '') {
1.257 albertel 4283: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 4284: } elsif ($partial > 0) {
4285: $score = 'correct_by_override';
4286: } elsif ($partial == 0) {
4287: $score = 'incorrect_by_override';
4288: }
1.257 albertel 4289: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 4290: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
4291:
1.292 albertel 4292: $newrecord{'resource.'.$_.'.regrader'}=
4293: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 4294: if ($dropMenu eq 'reset status' &&
4295: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 4296: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 4297: $newrecord{'resource.'.$_.'.solved'} = '';
4298: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 4299: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 4300: $updateflag = 1;
1.269 raeburn 4301: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
4302: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
4303: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
4304: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
4305: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
4306: $aggregateflag = 1;
4307: }
1.139 albertel 4308: } elsif (!($old_part eq $partial && $old_score eq $score)) {
4309: $updateflag = 1;
4310: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
4311: $newrecord{'resource.'.$_.'.solved'} = $score;
4312: $rec_update++;
1.125 ng 4313: }
4314:
1.93 albertel 4315: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 4316: '<td align="center">'.$awarded.
4317: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 4318:
1.54 albertel 4319:
4320: my $partid=$_;
4321: foreach my $stores (@parts) {
4322: my ($part,$type) = &split_part_type($stores);
4323: if ($part !~ m/^\Q$partid\E/) { next;}
4324: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 4325: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
4326: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 4327: if ($awarded ne '' && $awarded ne $old_aw) {
4328: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 4329: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 4330: $updateflag=1;
4331: }
1.93 albertel 4332: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 4333: '<td align="center">'.$awarded.' </td>';
4334: }
1.44 ng 4335: }
1.477 albertel 4336: $line.="\n";
1.301 albertel 4337:
4338: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
4339: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
4340:
1.44 ng 4341: if ($updateflag) {
4342: $count++;
1.257 albertel 4343: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 4344: $udom,$uname);
1.301 albertel 4345:
4346: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
4347: $cnum,$udom,$uname)) {
4348: # need to figure out if should be in queue.
4349: my %record =
4350: &Apache::lonnet::restore($symb,$env{'request.course.id'},
4351: $udom,$uname);
4352: my $all_graded = 1;
4353: my $none_graded = 1;
4354: foreach my $part (@parts) {
4355: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
4356: $all_graded = 0;
4357: } else {
4358: $none_graded = 0;
4359: }
4360: }
4361:
4362: if ($all_graded || $none_graded) {
4363: &Apache::bridgetask::remove_from_queue('gradingqueue',
4364: $symb,$cdom,$cnum,
4365: $udom,$uname);
4366: }
4367: }
4368:
1.477 albertel 4369: $result.=&Apache::loncommon::start_data_table_row().
4370: '<td align="right"> '.$updateCtr.' </td>'.$line.
4371: &Apache::loncommon::end_data_table_row();
1.126 ng 4372: $updateCtr++;
1.93 albertel 4373: } else {
1.477 albertel 4374: push(@noupdate,
4375: '<td align="right"> '.$noupdateCtr.' </td>'.$line);
1.126 ng 4376: $noupdateCtr++;
1.44 ng 4377: }
1.269 raeburn 4378: if ($aggregateflag) {
4379: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 4380: $cdom,$cnum);
1.269 raeburn 4381: }
1.93 albertel 4382: }
1.477 albertel 4383: if (@noupdate) {
1.596.2.12.2. 2(raebur 4384:8): my $numcols=$totcolspan+2;
1.477 albertel 4385: $result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478 albertel 4386: '<td align="center" colspan="'.$numcols.'">'.
4387: &mt('No Changes Occurred For the Students Below').
4388: '</td>'.
1.477 albertel 4389: &Apache::loncommon::end_data_table_row();
4390: foreach my $line (@noupdate) {
4391: $result.=
4392: &Apache::loncommon::start_data_table_row().
4393: $line.
4394: &Apache::loncommon::end_data_table_row();
4395: }
1.44 ng 4396: }
1.477 albertel 4397: $result .= &Apache::loncommon::end_data_table().
4398: &show_grading_menu_form($symb);
1.478 albertel 4399: my $msg = '<p><b>'.
4400: &mt('Number of records updated = [_1] for [quant,_2,student].',
4401: $rec_update,$count).'</b><br />'.
4402: '<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
4403: '</b></p>';
1.44 ng 4404: return $title.$msg.$result;
1.5 albertel 4405: }
1.54 albertel 4406:
4407: sub split_part_type {
4408: my ($partstr) = @_;
4409: my ($temp,@allparts)=split(/_/,$partstr);
4410: my $type=pop(@allparts);
1.439 albertel 4411: my $part=join('_',@allparts);
1.54 albertel 4412: return ($part,$type);
4413: }
4414:
1.44 ng 4415: #------------- end of section for handling grading by section/class ---------
4416: #
4417: #----------------------------------------------------------------------------
4418:
1.5 albertel 4419:
1.44 ng 4420: #----------------------------------------------------------------------------
4421: #
4422: #-------------------------- Next few routines handles grading by csv upload
4423: #
4424: #--- Javascript to handle csv upload
1.27 albertel 4425: sub csvupload_javascript_reverse_associate {
1.573 bisitz 4426: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 4427: my $error2=&mt('You need to specify at least one grading field');
1.596.2.12.2. 6(raebur 4428:6): &js_escape(\$error1);
4429:6): &js_escape(\$error2);
1.27 albertel 4430: return(<<ENDPICK);
4431: function verify(vf) {
4432: var foundsomething=0;
4433: var founduname=0;
1.243 albertel 4434: var foundID=0;
1.27 albertel 4435: for (i=0;i<=vf.nfields.value;i++) {
4436: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4437: if (i==0 && tw!=0) { foundID=1; }
4438: if (i==1 && tw!=0) { founduname=1; }
4439: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 4440: }
1.246 albertel 4441: if (founduname==0 && foundID==0) {
4442: alert('$error1');
4443: return;
1.27 albertel 4444: }
4445: if (foundsomething==0) {
1.246 albertel 4446: alert('$error2');
4447: return;
1.27 albertel 4448: }
4449: vf.submit();
4450: }
4451: function flip(vf,tf) {
4452: var nw=eval('vf.f'+tf+'.selectedIndex');
4453: var i;
4454: for (i=0;i<=vf.nfields.value;i++) {
4455: //can not pick the same destination field for both name and domain
4456: if (((i ==0)||(i ==1)) &&
4457: ((tf==0)||(tf==1)) &&
4458: (i!=tf) &&
4459: (eval('vf.f'+i+'.selectedIndex')==nw)) {
4460: eval('vf.f'+i+'.selectedIndex=0;')
4461: }
4462: }
4463: }
4464: ENDPICK
4465: }
4466:
4467: sub csvupload_javascript_forward_associate {
1.573 bisitz 4468: my $error1=&mt('You need to specify the username or the student/employee ID');
1.246 albertel 4469: my $error2=&mt('You need to specify at least one grading field');
1.596.2.12.2. 6(raebur 4470:6): &js_escape(\$error1);
4471:6): &js_escape(\$error2);
1.27 albertel 4472: return(<<ENDPICK);
4473: function verify(vf) {
4474: var foundsomething=0;
4475: var founduname=0;
1.243 albertel 4476: var foundID=0;
1.27 albertel 4477: for (i=0;i<=vf.nfields.value;i++) {
4478: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 4479: if (tw==1) { foundID=1; }
4480: if (tw==2) { founduname=1; }
4481: if (tw>3) { foundsomething=1; }
1.27 albertel 4482: }
1.246 albertel 4483: if (founduname==0 && foundID==0) {
4484: alert('$error1');
4485: return;
1.27 albertel 4486: }
4487: if (foundsomething==0) {
1.246 albertel 4488: alert('$error2');
4489: return;
1.27 albertel 4490: }
4491: vf.submit();
4492: }
4493: function flip(vf,tf) {
4494: var nw=eval('vf.f'+tf+'.selectedIndex');
4495: var i;
4496: //can not pick the same destination field twice
4497: for (i=0;i<=vf.nfields.value;i++) {
4498: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
4499: eval('vf.f'+i+'.selectedIndex=0;')
4500: }
4501: }
4502: }
4503: ENDPICK
4504: }
4505:
1.26 albertel 4506: sub csvuploadmap_header {
1.324 albertel 4507: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 4508: my $javascript;
1.257 albertel 4509: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4510: $javascript=&csvupload_javascript_reverse_associate();
4511: } else {
4512: $javascript=&csvupload_javascript_forward_associate();
4513: }
1.45 ng 4514:
1.324 albertel 4515: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.257 albertel 4516: my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245 albertel 4517: my $ignore=&mt('Ignore First Line');
1.418 albertel 4518: $symb = &Apache::lonenc::check_encrypt($symb);
1.41 ng 4519: $request->print(<<ENDPICK);
1.26 albertel 4520: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 4521: <h3><span class="LC_info">Uploading Class Grades</span></h3>
1.45 ng 4522: $result
1.326 albertel 4523: <hr />
1.26 albertel 4524: <h3>Identify fields</h3>
4525: Total number of records found in file: $distotal <hr />
4526: Enter as many fields as you can. The system will inform you and bring you back
4527: to this page if the data selected is insufficient to run your class.<hr />
1.589 bisitz 4528: <input type="button" value="Reverse Association" onclick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245 albertel 4529: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26 albertel 4530: <input type="hidden" name="associate" value="" />
4531: <input type="hidden" name="phase" value="three" />
4532: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 4533: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
4534: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 4535: <input type="hidden" name="upfile_associate"
1.257 albertel 4536: value="$env{'form.upfile_associate'}" />
1.26 albertel 4537: <input type="hidden" name="symb" value="$symb" />
1.257 albertel 4538: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
4539: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
1.246 albertel 4540: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 4541: <hr />
4542: <script type="text/javascript" language="Javascript">
4543: $javascript
4544: </script>
4545: ENDPICK
1.118 ng 4546: return '';
1.26 albertel 4547:
4548: }
4549:
4550: sub csvupload_fields {
1.582 raeburn 4551: my ($symb,$errorref) = @_;
4552: my (@parts) = &getpartlist($symb,$errorref);
4553: if (ref($errorref)) {
4554: if ($$errorref) {
4555: return;
4556: }
4557: }
4558:
1.556 weissno 4559: my @fields=(['ID','Student/Employee ID'],
1.243 albertel 4560: ['username','Student Username'],
4561: ['domain','Student Domain']);
1.324 albertel 4562: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 4563: foreach my $part (sort(@parts)) {
4564: my @datum;
4565: my $display=&Apache::lonnet::metadata($url,$part.'.display');
4566: my $name=$part;
4567: if (!$display) { $display = $name; }
4568: @datum=($name,$display);
1.244 albertel 4569: if ($name=~/^stores_(.*)_awarded/) {
4570: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
4571: }
1.41 ng 4572: push(@fields,\@datum);
4573: }
4574: return (@fields);
1.26 albertel 4575: }
4576:
4577: sub csvuploadmap_footer {
1.41 ng 4578: my ($request,$i,$keyfields) =@_;
1.596.2.12.2. 0(raebur 4579:3): my $buttontext = &mt('Assign Grades');
1.41 ng 4580: $request->print(<<ENDPICK);
1.26 albertel 4581: </table>
4582: <input type="hidden" name="nfields" value="$i" />
4583: <input type="hidden" name="keyfields" value="$keyfields" />
1.596.2.12.2. 0(raebur 4584:3): <input type="button" onclick="javascript:verify(this.form)" value="$buttontext" /><br />
1.26 albertel 4585: </form>
4586: ENDPICK
4587: }
4588:
1.283 albertel 4589: sub checkforfile_js {
1.539 riegler 4590: my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
1.596.2.12.2. 6(raebur 4591:6): &js_escape(\$alertmsg);
1.86 ng 4592: my $result =<<CSVFORMJS;
4593: <script type="text/javascript" language="javascript">
4594: function checkUpload(formname) {
4595: if (formname.upfile.value == "") {
1.539 riegler 4596: alert("$alertmsg");
1.86 ng 4597: return false;
4598: }
4599: formname.submit();
4600: }
4601: </script>
4602: CSVFORMJS
1.283 albertel 4603: return $result;
4604: }
4605:
4606: sub upcsvScores_form {
4607: my ($request) = shift;
1.324 albertel 4608: my ($symb)=&get_symb($request);
1.283 albertel 4609: if (!$symb) {return '';}
4610: my $result=&checkforfile_js();
1.257 albertel 4611: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.324 albertel 4612: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
1.118 ng 4613: $result.=$table;
1.326 albertel 4614: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
4615: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.538 schulted 4616: $result.=' <b>'.&mt('Specify a file containing the class scores for current resource.').
4617: '</b></td></tr>'."\n";
1.596.2.4 raeburn 4618: $result.='<tr bgcolor="#ffffe6"><td>'."\n";
1.370 www 4619: my $upload=&mt("Upload Scores");
1.86 ng 4620: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 4621: my $ignore=&mt('Ignore First Line');
1.418 albertel 4622: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 4623: $result.=<<ENDUPFORM;
1.106 albertel 4624: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 4625: <input type="hidden" name="symb" value="$symb" />
4626: <input type="hidden" name="command" value="csvuploadmap" />
1.257 albertel 4627: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
4628: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.86 ng 4629: $upfile_select
1.589 bisitz 4630: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.283 albertel 4631: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86 ng 4632: </form>
4633: ENDUPFORM
1.370 www 4634: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
4635: &mt("How do I create a CSV file from a spreadsheet"))
4636: .'</td></tr></table>'."\n";
1.86 ng 4637: $result.='</td></tr></table><br /><br />'."\n";
1.324 albertel 4638: $result.=&show_grading_menu_form($symb);
1.86 ng 4639: return $result;
4640: }
4641:
4642:
1.26 albertel 4643: sub csvuploadmap {
1.41 ng 4644: my ($request)= @_;
1.324 albertel 4645: my ($symb)=&get_symb($request);
1.41 ng 4646: if (!$symb) {return '';}
1.72 ng 4647:
1.41 ng 4648: my $datatoken;
1.257 albertel 4649: if (!$env{'form.datatoken'}) {
1.41 ng 4650: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 4651: } else {
1.596.2.12.2. 3(raebur 4652:8): $datatoken=&Apache::loncommon::valid_datatoken($env{'form.datatoken'});
4653:8): if ($datatoken ne '') {
4654:8): &Apache::loncommon::load_tmp_file($request,$datatoken);
4655:8): }
1.26 albertel 4656: }
1.41 ng 4657: my @records=&Apache::loncommon::upfile_record_sep();
1.257 albertel 4658: if ($env{'form.noFirstLine'}) { shift(@records); }
1.324 albertel 4659: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 4660: my ($i,$keyfields);
4661: if (@records) {
1.582 raeburn 4662: my $fieldserror;
4663: my @fields=&csvupload_fields($symb,\$fieldserror);
4664: if ($fieldserror) {
4665: $request->print(&navmap_errormsg());
4666: return;
4667: }
1.257 albertel 4668: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 4669: &Apache::loncommon::csv_print_samples($request,\@records);
4670: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
4671: \@fields);
4672: foreach (@fields) { $keyfields.=$_->[0].','; }
4673: chop($keyfields);
4674: } else {
4675: unshift(@fields,['none','']);
4676: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
4677: \@fields);
1.311 banghart 4678: foreach my $rec (@records) {
4679: my %temp = &Apache::loncommon::record_sep($rec);
4680: if (%temp) {
4681: $keyfields=join(',',sort(keys(%temp)));
4682: last;
4683: }
4684: }
1.41 ng 4685: }
4686: }
4687: &csvuploadmap_footer($request,$i,$keyfields);
1.324 albertel 4688: $request->print(&show_grading_menu_form($symb));
1.72 ng 4689:
1.41 ng 4690: return '';
1.27 albertel 4691: }
4692:
1.246 albertel 4693: sub csvuploadoptions {
1.41 ng 4694: my ($request)= @_;
1.324 albertel 4695: my ($symb)=&get_symb($request);
1.257 albertel 4696: my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246 albertel 4697: my $ignore=&mt('Ignore First Line');
4698: $request->print(<<ENDPICK);
4699: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 4700: <h3><span class="LC_info">Uploading Class Grade Options</span></h3>
1.246 albertel 4701: <input type="hidden" name="command" value="csvuploadassign" />
1.302 albertel 4702: <!--
1.246 albertel 4703: <p>
4704: <label>
4705: <input type="checkbox" name="show_full_results" />
4706: Show a table of all changes
4707: </label>
4708: </p>
1.302 albertel 4709: -->
1.246 albertel 4710: <p>
4711: <label>
4712: <input type="checkbox" name="overwite_scores" checked="checked" />
4713: Overwrite any existing score
4714: </label>
4715: </p>
4716: ENDPICK
4717: my %fields=&get_fields();
4718: if (!defined($fields{'domain'})) {
1.257 albertel 4719: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246 albertel 4720: $request->print("\n<p> Users are in domain: ".$domform."</p>\n");
4721: }
1.257 albertel 4722: foreach my $key (sort(keys(%env))) {
1.246 albertel 4723: if ($key !~ /^form\.(.*)$/) { next; }
4724: my $cleankey=$1;
4725: if ($cleankey eq 'command') { next; }
4726: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 4727: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 4728: }
4729: # FIXME do a check for any duplicated user ids...
4730: # FIXME do a check for any invalid user ids?...
1.596.2.12.2. 0(raebur 4731:3): $request->print('<input type="submit" value="'.&mt('Assign Grades').'" /><br />
1.290 albertel 4732: <hr /></form>'."\n");
1.324 albertel 4733: $request->print(&show_grading_menu_form($symb));
1.246 albertel 4734: return '';
4735: }
4736:
4737: sub get_fields {
4738: my %fields;
1.257 albertel 4739: my @keyfields = split(/\,/,$env{'form.keyfields'});
4740: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
4741: if ($env{'form.upfile_associate'} eq 'reverse') {
4742: if ($env{'form.f'.$i} ne 'none') {
4743: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 4744: }
4745: } else {
1.257 albertel 4746: if ($env{'form.f'.$i} ne 'none') {
4747: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 4748: }
4749: }
1.27 albertel 4750: }
1.246 albertel 4751: return %fields;
4752: }
4753:
4754: sub csvuploadassign {
4755: my ($request)= @_;
1.324 albertel 4756: my ($symb)=&get_symb($request);
1.246 albertel 4757: if (!$symb) {return '';}
1.345 bowersj2 4758: my $error_msg = '';
1.596.2.12.2. 3(raebur 4759:8): my $datatoken = &Apache::loncommon::valid_datatoken($env{'form.datatoken'});
4760:8): if ($datatoken ne '') {
4761:8): &Apache::loncommon::load_tmp_file($request,$datatoken);
4762:8): }
1.246 albertel 4763: my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257 albertel 4764: if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246 albertel 4765: my %fields=&get_fields();
1.41 ng 4766: $request->print('<h3>Assigning Grades</h3>');
1.257 albertel 4767: my $courseid=$env{'request.course.id'};
1.97 albertel 4768: my ($classlist) = &getclasslist('all',0);
1.106 albertel 4769: my @notallowed;
1.41 ng 4770: my @skipped;
1.596.2.4 raeburn 4771: my @warnings;
1.41 ng 4772: my $countdone=0;
4773: foreach my $grade (@gradedata) {
4774: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 4775: my $domain;
4776: if ($entries{$fields{'domain'}}) {
4777: $domain=$entries{$fields{'domain'}};
4778: } else {
1.257 albertel 4779: $domain=$env{'form.default_domain'};
1.246 albertel 4780: }
1.243 albertel 4781: $domain=~s/\s//g;
1.41 ng 4782: my $username=$entries{$fields{'username'}};
1.160 albertel 4783: $username=~s/\s//g;
1.243 albertel 4784: if (!$username) {
4785: my $id=$entries{$fields{'ID'}};
1.247 albertel 4786: $id=~s/\s//g;
1.243 albertel 4787: my %ids=&Apache::lonnet::idget($domain,$id);
4788: $username=$ids{$id};
4789: }
1.41 ng 4790: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 4791: my $id=$entries{$fields{'ID'}};
4792: $id=~s/\s//g;
4793: if ($id) {
4794: push(@skipped,"$id:$domain");
4795: } else {
4796: push(@skipped,"$username:$domain");
4797: }
1.41 ng 4798: next;
4799: }
1.108 albertel 4800: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 4801: if (!&canmodify($usec)) {
4802: push(@notallowed,"$username:$domain");
4803: next;
4804: }
1.244 albertel 4805: my %points;
1.41 ng 4806: my %grades;
4807: foreach my $dest (keys(%fields)) {
1.244 albertel 4808: if ($dest eq 'ID' || $dest eq 'username' ||
4809: $dest eq 'domain') { next; }
4810: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
4811: if ($dest=~/stores_(.*)_points/) {
4812: my $part=$1;
4813: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
4814: $symb,$domain,$username);
1.345 bowersj2 4815: if ($wgt) {
4816: $entries{$fields{$dest}}=~s/\s//g;
4817: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 4818: my $award=($pcr == 0) ? 'incorrect_by_override'
4819: : 'correct_by_override';
1.596.2.4 raeburn 4820: if ($pcr>1) {
4821: push(@warnings,&mt("[_1]: point value larger than weight","$username:$domain"));
4822: }
1.345 bowersj2 4823: $grades{"resource.$part.awarded"}=$pcr;
4824: $grades{"resource.$part.solved"}=$award;
4825: $points{$part}=1;
4826: } else {
4827: $error_msg = "<br />" .
4828: &mt("Some point values were assigned"
4829: ." for problems with a weight "
4830: ."of zero. These values were "
4831: ."ignored.");
4832: }
1.244 albertel 4833: } else {
4834: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
4835: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
4836: my $store_key=$dest;
4837: $store_key=~s/^stores/resource/;
4838: $store_key=~s/_/\./g;
4839: $grades{$store_key}=$entries{$fields{$dest}};
4840: }
1.41 ng 4841: }
1.508 www 4842: if (! %grades) {
4843: push(@skipped,&mt("[_1]: no data to save","$username:$domain"));
4844: } else {
4845: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
4846: my $result=&Apache::lonnet::cstore(\%grades,$symb,
1.302 albertel 4847: $env{'request.course.id'},
4848: $domain,$username);
1.508 www 4849: if ($result eq 'ok') {
4850: $request->print('.');
1.596.2.4 raeburn 4851: # Remove from grading queue
4852: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,
4853: $env{'course.'.$env{'request.course.id'}.'.domain'},
4854: $env{'course.'.$env{'request.course.id'}.'.num'},
4855: $domain,$username);
1.508 www 4856: } else {
4857: $request->print("<p><span class=\"LC_error\">".
4858: &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
4859: "$username:$domain",$result)."</span></p>");
4860: }
4861: $request->rflush();
4862: $countdone++;
4863: }
1.41 ng 4864: }
1.570 www 4865: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt("Saved scores for [quant,_1,student]",$countdone),$countdone==0));
1.596.2.4 raeburn 4866: if (@warnings) {
4867: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Warnings generated for the following saved scores:'),1).'<br />');
4868: $request->print(join(', ',@warnings));
4869: }
1.41 ng 4870: if (@skipped) {
1.571 www 4871: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('No scores stored for the following username(s):'),1).'<br />');
4872: $request->print(join(', ',@skipped));
1.106 albertel 4873: }
4874: if (@notallowed) {
1.571 www 4875: $request->print('<br />'.&Apache::lonhtmlcommon::confirm_success(&mt('Modification of scores not allowed for the following username(s):'),1).'<br />');
4876: $request->print(join(', ',@notallowed));
1.41 ng 4877: }
1.106 albertel 4878: $request->print("<br />\n");
1.324 albertel 4879: $request->print(&show_grading_menu_form($symb));
1.345 bowersj2 4880: return $error_msg;
1.26 albertel 4881: }
1.44 ng 4882: #------------- end of section for handling csv file upload ---------
4883: #
4884: #-------------------------------------------------------------------
4885: #
1.122 ng 4886: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4887: #
4888: #--- Select a page/sequence and a student to grade
1.68 ng 4889: sub pickStudentPage {
4890: my ($request) = shift;
4891:
1.539 riegler 4892: my $alertmsg = &mt('Please select the student you wish to grade.');
1.596.2.12.2. 6(raebur 4893:6): &js_escape(\$alertmsg);
1.68 ng 4894: $request->print(<<LISTJAVASCRIPT);
4895: <script type="text/javascript" language="javascript">
4896:
4897: function checkPickOne(formname) {
1.76 ng 4898: if (radioSelection(formname.student) == null) {
1.539 riegler 4899: alert("$alertmsg");
1.68 ng 4900: return;
4901: }
1.125 ng 4902: ptr = pullDownSelection(formname.selectpage);
4903: formname.page.value = formname["page"+ptr].value;
4904: formname.title.value = formname["title"+ptr].value;
1.68 ng 4905: formname.submit();
4906: }
4907:
4908: </script>
4909: LISTJAVASCRIPT
1.118 ng 4910: &commonJSfunctions($request);
1.324 albertel 4911: my ($symb) = &get_symb($request);
1.257 albertel 4912: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4913: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4914: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4915:
1.398 albertel 4916: my $result='<h3><span class="LC_info"> '.
1.485 albertel 4917: &mt('Manual Grading by Page or Sequence').'</span></h3>';
1.68 ng 4918:
1.80 ng 4919: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.582 raeburn 4920: my $map_error;
4921: my ($titles,$symbx) = &getSymbMap($map_error);
4922: if ($map_error) {
4923: $request->print(&navmap_errormsg());
4924: return;
4925: }
1.137 albertel 4926: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4927: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4928: # my $type=($curpage =~ /\.(page|sequence)/);
1.485 albertel 4929: my $select = '<select name="selectpage">'."\n";
1.70 ng 4930: my $ctr=0;
1.68 ng 4931: foreach (@$titles) {
4932: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.485 albertel 4933: $select.='<option value="'.$ctr.'" '.
1.401 albertel 4934: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71 ng 4935: '>'.$showtitle.'</option>'."\n";
1.70 ng 4936: $ctr++;
1.68 ng 4937: }
1.485 albertel 4938: $select.= '</select>';
1.539 riegler 4939: $result.=' <b>'.&mt('Problems from').':</b> '.$select."<br />\n";
1.485 albertel 4940:
1.70 ng 4941: $ctr=0;
4942: foreach (@$titles) {
4943: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4944: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4945: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4946: $ctr++;
4947: }
1.72 ng 4948: $result.='<input type="hidden" name="page" />'."\n".
4949: '<input type="hidden" name="title" />'."\n";
1.68 ng 4950:
1.485 albertel 4951: my $options =
4952: '<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
4953: '<label><input type="radio" name="vProb" value="yes" /> '.&mt('yes').' </label>'."<br />\n";
1.539 riegler 4954: $result.=' <b>'.&mt('View Problem Text').': </b>'.$options;
1.485 albertel 4955:
4956: $options =
4957: '<label><input type="radio" name="lastSub" value="none" /> '.&mt('none').' </label>'."\n".
4958: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.&mt('by dates and submissions').'</label>'."\n".
4959: '<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').' </label>'."\n";
1.539 riegler 4960: $result.=' <b>'.&mt('Submissions').': </b>'.$options;
1.432 banghart 4961:
4962: $result.=&build_section_inputs();
1.442 banghart 4963: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4964: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.72 ng 4965: '<input type="hidden" name="command" value="displayPage" />'."\n".
1.418 albertel 4966: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4967: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72 ng 4968:
1.539 riegler 4969: $result.=' <b>'.&mt('Use CODE').': </b> <input type="text" name="CODE" value="" /> <br />'."\n";
1.382 albertel 4970:
1.80 ng 4971: $result.=' <input type="button" '.
1.589 bisitz 4972: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /><br />'."\n";
1.72 ng 4973:
1.68 ng 4974: $request->print($result);
4975:
1.485 albertel 4976: my $studentTable.=' <b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
1.484 albertel 4977: &Apache::loncommon::start_data_table().
4978: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4979: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4980: '<th>'.&nameUserString('header').'</th>'.
1.485 albertel 4981: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4982: '<th>'.&nameUserString('header').'</th>'.
4983: &Apache::loncommon::end_data_table_header_row();
1.68 ng 4984:
1.76 ng 4985: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4986: my $ptr = 1;
1.294 albertel 4987: foreach my $student (sort
4988: {
4989: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4990: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4991: }
4992: return $a cmp $b;
4993: } (keys(%$fullname))) {
1.68 ng 4994: my ($uname,$udom) = split(/:/,$student);
1.484 albertel 4995: $studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
4996: : '</td>');
1.126 ng 4997: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4998: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4999: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.484 albertel 5000: $studentTable.=
5001: ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row()
5002: : '');
1.68 ng 5003: $ptr++;
5004: }
1.484 albertel 5005: if ($ptr%2 == 0) {
5006: $studentTable.='</td><td> </td><td> </td>'.
5007: &Apache::loncommon::end_data_table_row();
5008: }
5009: $studentTable.=&Apache::loncommon::end_data_table()."\n";
1.126 ng 5010: $studentTable.='<input type="button" '.
1.589 bisitz 5011: 'onclick="javascript:checkPickOne(this.form);" value="'.&mt('Next').' →" /></form>'."\n";
1.68 ng 5012:
1.324 albertel 5013: $studentTable.=&show_grading_menu_form($symb);
1.68 ng 5014: $request->print($studentTable);
5015:
5016: return '';
5017: }
5018:
5019: sub getSymbMap {
1.582 raeburn 5020: my ($map_error) = @_;
1.132 bowersj2 5021: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 5022: unless (ref($navmap)) {
5023: if (ref($map_error)) {
5024: $$map_error = 'navmap';
5025: }
5026: return;
5027: }
1.68 ng 5028: my %symbx = ();
5029: my @titles = ();
1.117 bowersj2 5030: my $minder = 0;
5031:
5032: # Gather every sequence that has problems.
1.240 albertel 5033: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
5034: 1,0,1);
1.117 bowersj2 5035: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 5036: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 5037: my $title = $minder.'.'.
5038: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
5039: push(@titles, $title); # minder in case two titles are identical
5040: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 5041: $minder++;
1.241 albertel 5042: }
1.68 ng 5043: }
5044: return \@titles,\%symbx;
5045: }
5046:
1.72 ng 5047: #
5048: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 5049: sub displayPage {
5050: my ($request) = shift;
5051:
1.324 albertel 5052: my ($symb) = &get_symb($request);
1.257 albertel 5053: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
5054: my $cnum = $env{"course.$env{'request.course.id'}.num"};
5055: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
5056: my $pageTitle = $env{'form.page'};
1.103 albertel 5057: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 5058: my ($uname,$udom) = split(/:/,$env{'form.student'});
5059: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 5060:
5061: #need to make sure we have the correct data for later EXT calls,
5062: #thus invalidate the cache
5063: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 5064: $env{'course.'.$env{'request.course.id'}.'.num'},
5065: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 5066: &Apache::lonnet::clear_EXT_cache_status();
5067:
1.103 albertel 5068: if (!&canview($usec)) {
1.596.2.12.2. 8(raebur 5069:4): $request->print('<span class="LC_warning">'.
5070:4): &mt('Unable to view requested student. ([_1])',
5071:4): $env{'form.student'}).
5072:4): '</span>');
5073:4): $request->print(&show_grading_menu_form($symb));
5074:4): return;
1.103 albertel 5075: }
1.398 albertel 5076: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.485 albertel 5077: $result.='<h3> '.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
1.129 ng 5078: '</h3>'."\n";
1.500 albertel 5079: $env{'form.CODE'} = uc($env{'form.CODE'});
1.501 foxr 5080: if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
1.485 albertel 5081: $result.='<h3> '.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
1.382 albertel 5082: } else {
5083: delete($env{'form.CODE'});
5084: }
1.71 ng 5085: &sub_page_js($request);
5086: $request->print($result);
5087:
1.132 bowersj2 5088: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 5089: unless (ref($navmap)) {
5090: $request->print(&navmap_errormsg());
5091: $request->print(&show_grading_menu_form($symb));
5092: return;
5093: }
1.257 albertel 5094: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 5095: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 5096: if (!$map) {
1.485 albertel 5097: $request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
1.324 albertel 5098: $request->print(&show_grading_menu_form($symb));
1.288 albertel 5099: return;
5100: }
1.68 ng 5101: my $iterator = $navmap->getIterator($map->map_start(),
5102: $map->map_finish());
5103:
1.71 ng 5104: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 5105: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 5106: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
5107: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 5108: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 5109: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 5110: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.125 ng 5111: '<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257 albertel 5112: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71 ng 5113:
1.382 albertel 5114: if (defined($env{'form.CODE'})) {
5115: $studentTable.=
5116: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
5117: }
1.381 albertel 5118: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 5119: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 5120:
1.594 bisitz 5121: $studentTable.=' <span class="LC_info">'.
5122: &mt('Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon).
5123: '</span>'."\n".
1.484 albertel 5124: &Apache::loncommon::start_data_table().
5125: &Apache::loncommon::start_data_table_header_row().
5126: '<th align="center"> Prob. </th>'.
1.485 albertel 5127: '<th> '.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
1.484 albertel 5128: &Apache::loncommon::end_data_table_header_row();
1.71 ng 5129:
1.329 albertel 5130: &Apache::lonxml::clear_problem_counter();
1.196 albertel 5131: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 5132: $iterator->next(); # skip the first BEGIN_MAP
5133: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 5134: while ($depth > 0) {
1.68 ng 5135: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 5136: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 5137:
1.385 albertel 5138: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 5139: my $parts = $curRes->parts();
1.68 ng 5140: my $title = $curRes->compTitle();
1.71 ng 5141: my $symbx = $curRes->symb();
1.484 albertel 5142: $studentTable.=
5143: &Apache::loncommon::start_data_table_row().
5144: '<td align="center" valign="top" >'.$prob.
1.485 albertel 5145: (scalar(@{$parts}) == 1 ? ''
1.596.2.12.2. 2(raebur 5146:2): : '<br />('.&mt('[_1]parts',
5147:2): scalar(@{$parts}).' ').')'
1.485 albertel 5148: ).
5149: '</td>';
1.71 ng 5150: $studentTable.='<td valign="top">';
1.382 albertel 5151: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 5152: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 5153: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 5154: undef,'both',\%form);
1.71 ng 5155: } else {
1.382 albertel 5156: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 5157: $companswer =~ s|<form(.*?)>||g;
5158: $companswer =~ s|</form>||g;
1.71 ng 5159: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 5160: # $companswer =~ s/$1/ /ms;
1.326 albertel 5161: # $request->print('match='.$1."<br />\n");
1.71 ng 5162: # }
1.116 ng 5163: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.539 riegler 5164: $studentTable.=' <b>'.$title.'</b> <br /> <b>'.&mt('Correct answer').':</b><br />'.$companswer;
1.71 ng 5165: }
5166:
1.257 albertel 5167: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 5168:
1.257 albertel 5169: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 5170: if ($record{'version'} eq '') {
1.485 albertel 5171: $studentTable.='<br /> <span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
1.71 ng 5172: } else {
1.116 ng 5173: my %responseType = ();
5174: foreach my $partid (@{$parts}) {
1.147 albertel 5175: my @responseIds =$curRes->responseIds($partid);
5176: my @responseType =$curRes->responseType($partid);
5177: my %responseIds;
5178: for (my $i=0;$i<=$#responseIds;$i++) {
5179: $responseIds{$responseIds[$i]}=$responseType[$i];
5180: }
5181: $responseType{$partid} = \%responseIds;
1.116 ng 5182: }
1.148 albertel 5183: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 5184:
1.71 ng 5185: }
1.257 albertel 5186: } elsif ($env{'form.lastSub'} eq 'all') {
5187: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.596.2.12.2. 1(raebur 5188:5): my $identifier = (&canmodify($usec)? $prob : '');
1.71 ng 5189: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 5190: $env{'request.course.id'},
1.596.2.12.2. 1(raebur 5191:5): '','.submission',undef,
5192:5): $usec,$identifier);
1.71 ng 5193:
5194: }
1.103 albertel 5195: if (&canmodify($usec)) {
1.585 bisitz 5196: $studentTable.=&gradeBox_start();
1.103 albertel 5197: foreach my $partid (@{$parts}) {
5198: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
5199: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
5200: $question++;
5201: }
1.585 bisitz 5202: $studentTable.=&gradeBox_end();
1.196 albertel 5203: $prob++;
1.71 ng 5204: }
5205: $studentTable.='</td></tr>';
1.68 ng 5206:
1.103 albertel 5207: }
1.68 ng 5208: $curRes = $iterator->next();
5209: }
5210:
1.589 bisitz 5211: $studentTable.=
5212: '</table>'."\n".
5213: '<input type="button" value="'.&mt('Save').'" '.
5214: 'onclick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
5215: '</form>'."\n";
1.324 albertel 5216: $studentTable.=&show_grading_menu_form($symb);
1.71 ng 5217: $request->print($studentTable);
5218:
5219: return '';
1.119 ng 5220: }
5221:
5222: sub displaySubByDates {
1.148 albertel 5223: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 5224: my $isCODE=0;
1.335 albertel 5225: my $isTask = ($symb =~/\.task$/);
1.224 albertel 5226: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 5227: my $studentTable=&Apache::loncommon::start_data_table().
5228: &Apache::loncommon::start_data_table_header_row().
5229: '<th>'.&mt('Date/Time').'</th>'.
5230: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
1.596.2.12.2. (raeburn 5231:): ($isTask?'<th>'.&mt('Version').'</th>':'').
1.467 albertel 5232: '<th>'.&mt('Submission').'</th>'.
5233: '<th>'.&mt('Status').'</th>'.
5234: &Apache::loncommon::end_data_table_header_row();
1.119 ng 5235: my ($version);
5236: my %mark;
1.148 albertel 5237: my %orders;
1.119 ng 5238: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 5239: if (!exists($$record{'1:timestamp'})) {
1.539 riegler 5240: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts.').'</span><br />';
1.147 albertel 5241: }
1.335 albertel 5242:
5243: my $interaction;
1.525 raeburn 5244: my $no_increment = 1;
1.596.2.12.2. 5(raebur 5245:5): my (%lastrndseed,%lasttype);
1.119 ng 5246: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 5247: my $timestamp =
5248: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 5249: if (exists($$record{$version.':resource.0.version'})) {
5250: $interaction = $$record{$version.':resource.0.version'};
5251: }
1.596.2.12.2. (raeburn 5252:): if ($isTask && $env{'form.previousversion'}) {
5253:): next unless ($interaction == $env{'form.previousversion'});
5254:): }
1.335 albertel 5255: my $where = ($isTask ? "$version:resource.$interaction"
5256: : "$version:resource");
1.467 albertel 5257: $studentTable.=&Apache::loncommon::start_data_table_row().
5258: '<td>'.$timestamp.'</td>';
1.224 albertel 5259: if ($isCODE) {
5260: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
5261: }
1.596.2.12.2. (raeburn 5262:): if ($isTask) {
5263:): $studentTable.='<td>'.$interaction.'</td>';
5264:): }
1.119 ng 5265: my @versionKeys = split(/\:/,$$record{$version.':keys'});
5266: my @displaySub = ();
5267: foreach my $partid (@{$parts}) {
1.596.2.2 raeburn 5268: my ($hidden,$type);
5269: $type = $$record{$version.':resource.'.$partid.'.type'};
5270: if (($type eq 'anonsurvey') || ($type eq 'anonsurveycred')) {
1.596 raeburn 5271: $hidden = 1;
5272: }
1.335 albertel 5273: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
5274: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
5275:
1.122 ng 5276: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 5277: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 5278: foreach my $matchKey (@matchKey) {
1.198 albertel 5279: if (exists($$record{$version.':'.$matchKey}) &&
5280: $$record{$version.':'.$matchKey} ne '') {
1.596 raeburn 5281:
1.335 albertel 5282: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
5283: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.596.2.12.2. (raeburn 5284:): $displaySub[0].='<span class="LC_nobreak">';
1.577 bisitz 5285: $displaySub[0].='<b>'.&mt('Part: [_1]',$display_part).'</b>'
5286: .' <span class="LC_internal_info">'
1.596.2.4 raeburn 5287: .'('.&mt('Response ID: [_1]',$responseId).')'
1.577 bisitz 5288: .'</span>'
5289: .' <b>';
1.596 raeburn 5290: if ($hidden) {
5291: $displaySub[0].= &mt('Anonymous Survey').'</b>';
5292: } else {
1.596.2.2 raeburn 5293: my ($trial,$rndseed,$newvariation);
5294: if ($type eq 'randomizetry') {
5295: $trial = $$record{"$where.$partid.tries"};
5296: $rndseed = $$record{"$where.$partid.rndseed"};
5297: }
1.596 raeburn 5298: if ($$record{"$where.$partid.tries"} eq '') {
5299: $displaySub[0].=&mt('Trial not counted');
5300: } else {
5301: $displaySub[0].=&mt('Trial: [_1]',
1.467 albertel 5302: $$record{"$where.$partid.tries"});
1.596.2.12.2. 4(raebur 5303:5): if (($rndseed ne '') && ($lastrndseed{$partid} ne '')) {
5(raebur 5304:5): if (($rndseed ne $lastrndseed{$partid}) &&
5305:5): (($type eq 'randomizetry') || ($lasttype{$partid} eq 'randomizetry'))) {
1.596.2.2 raeburn 5306: $newvariation = ' ('.&mt('New variation this try').')';
5307: }
5308: }
1.596.2.12.2. 4(raebur 5309:5): $lastrndseed{$partid} = $rndseed;
5(raebur 5310:5): $lasttype{$partid} = $type;
1.596 raeburn 5311: }
5312: my $responseType=($isTask ? 'Task'
1.335 albertel 5313: : $responseType->{$partid}->{$responseId});
1.596 raeburn 5314: if (!exists($orders{$partid})) { $orders{$partid}={}; }
1.596.2.2 raeburn 5315: if ((!exists($orders{$partid}->{$responseId})) || ($trial)) {
1.596 raeburn 5316: $orders{$partid}->{$responseId}=
5317: &get_order($partid,$responseId,$symb,$uname,$udom,
1.596.2.2 raeburn 5318: $no_increment,$type,$trial,$rndseed);
1.596 raeburn 5319: }
1.596.2.2 raeburn 5320: $displaySub[0].='</b>'.$newvariation.'</span>'; # /nobreak
1.596 raeburn 5321: $displaySub[0].=' '.
1.596.2.2 raeburn 5322: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom,$type,$trial,$rndseed).'<br />';
1.596 raeburn 5323: }
1.147 albertel 5324: }
5325: }
1.335 albertel 5326: if (exists($$record{"$where.$partid.checkedin"})) {
1.485 albertel 5327: $displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
5328: $$record{"$where.$partid.checkedin"},
5329: $$record{"$where.$partid.checkedin.slot"}).
5330: '<br />';
1.335 albertel 5331: }
5332: if (exists $$record{"$where.$partid.award"}) {
1.485 albertel 5333: $displaySub[1].='<b>'.&mt('Part:').'</b> '.$display_part.' '.
1.335 albertel 5334: lc($$record{"$where.$partid.award"}).' '.
5335: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 5336: '<br />';
5337: }
1.335 albertel 5338: if (exists $$record{"$where.$partid.regrader"}) {
5339: $displaySub[2].=$$record{"$where.$partid.regrader"}.
5340: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
5341: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
5342: $displaySub[2].=
5343: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 5344: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 5345: }
5346: }
5347: # needed because old essay regrader has not parts info
5348: if (exists $$record{"$version:resource.regrader"}) {
5349: $displaySub[2].=$$record{"$version:resource.regrader"};
5350: }
5351: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
5352: if ($displaySub[2]) {
1.467 albertel 5353: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 5354: }
1.467 albertel 5355: $studentTable.=' </td>'.
5356: &Apache::loncommon::end_data_table_row();
1.119 ng 5357: }
1.467 albertel 5358: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 5359: return $studentTable;
1.71 ng 5360: }
5361:
5362: sub updateGradeByPage {
5363: my ($request) = shift;
5364:
1.257 albertel 5365: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
5366: my $cnum = $env{"course.$env{'request.course.id'}.num"};
5367: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
5368: my $pageTitle = $env{'form.page'};
1.103 albertel 5369: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 5370: my ($uname,$udom) = split(/:/,$env{'form.student'});
5371: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 5372: if (!&canmodify($usec)) {
1.526 raeburn 5373: $request->print('<span class="LC_warning">'.&mt('Unable to modify requested student ([_1])',$env{'form.student'}).'</span>');
1.324 albertel 5374: $request->print(&show_grading_menu_form($env{'form.symb'}));
1.103 albertel 5375: return;
5376: }
1.398 albertel 5377: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.526 raeburn 5378: $result.='<h3> '.&mt('Student: ').&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 5379: '</h3>'."\n";
1.70 ng 5380:
1.68 ng 5381: $request->print($result);
5382:
1.582 raeburn 5383:
1.132 bowersj2 5384: my $navmap = Apache::lonnavmaps::navmap->new();
1.582 raeburn 5385: unless (ref($navmap)) {
5386: $request->print(&navmap_errormsg());
5387: return;
5388: }
1.257 albertel 5389: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 5390: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 5391: if (!$map) {
1.527 raeburn 5392: $request->print('<span class="LC_warning">'.&mt('Unable to grade requested sequence ([_1]).',$resUrl).'</span>');
1.324 albertel 5393: my ($symb)=&get_symb($request);
5394: $request->print(&show_grading_menu_form($symb));
1.288 albertel 5395: return;
5396: }
1.71 ng 5397: my $iterator = $navmap->getIterator($map->map_start(),
5398: $map->map_finish());
1.70 ng 5399:
1.484 albertel 5400: my $studentTable=
5401: &Apache::loncommon::start_data_table().
5402: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 5403: '<th align="center"> '.&mt('Prob.').' </th>'.
5404: '<th> '.&mt('Title').' </th>'.
5405: '<th> '.&mt('Previous Score').' </th>'.
5406: '<th> '.&mt('New Score').' </th>'.
1.484 albertel 5407: &Apache::loncommon::end_data_table_header_row();
1.71 ng 5408:
5409: $iterator->next(); # skip the first BEGIN_MAP
5410: my $curRes = $iterator->next(); # for "current resource"
1.596.2.12.2. 1(raebur 5411:5): my ($depth,$question,$prob,$changeflag,$hideflag)= (1,1,1,0,0);
1.101 albertel 5412: while ($depth > 0) {
1.71 ng 5413: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 5414: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 5415:
1.385 albertel 5416: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 5417: my $parts = $curRes->parts();
1.71 ng 5418: my $title = $curRes->compTitle();
5419: my $symbx = $curRes->symb();
1.484 albertel 5420: $studentTable.=
5421: &Apache::loncommon::start_data_table_row().
5422: '<td align="center" valign="top" >'.$prob.
1.485 albertel 5423: (scalar(@{$parts}) == 1 ? ''
1.596.2.2 raeburn 5424: : '<br />('.&mt('[quant,_1,part]',scalar(@{$parts}))
1.526 raeburn 5425: .')').'</td>';
1.71 ng 5426: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
5427:
5428: my %newrecord=();
5429: my @displayPts=();
1.269 raeburn 5430: my %aggregate = ();
5431: my $aggregateflag = 0;
1.596.2.12.2. 1(raebur 5432:5): if ($env{'form.HIDE'.$prob}) {
5433:5): my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
5434:5): my ($version,$parts) = split(/:/,$env{'form.HIDE'.$prob},2);
5435:5): my $numchgs = &makehidden($version,$parts,\%record,$symbx,$udom,$uname,1);
5436:5): $hideflag += $numchgs;
5437:5): }
1.71 ng 5438: foreach my $partid (@{$parts}) {
1.257 albertel 5439: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
5440: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 5441:
1.257 albertel 5442: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
5443: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 5444: my $partial = $newpts/$wgt;
5445: my $score;
5446: if ($partial > 0) {
5447: $score = 'correct_by_override';
1.125 ng 5448: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 5449: $score = 'incorrect_by_override';
5450: }
1.257 albertel 5451: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 5452: if ($dropMenu eq 'excused') {
1.71 ng 5453: $partial = '';
5454: $score = 'excused';
1.125 ng 5455: } elsif ($dropMenu eq 'reset status'
1.257 albertel 5456: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 5457: $newrecord{'resource.'.$partid.'.tries'} = 0;
5458: $newrecord{'resource.'.$partid.'.solved'} = '';
5459: $newrecord{'resource.'.$partid.'.award'} = '';
5460: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 5461: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 5462: $changeflag++;
5463: $newpts = '';
1.269 raeburn 5464:
5465: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
5466: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
5467: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
5468: if ($aggtries > 0) {
5469: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
5470: $aggregateflag = 1;
5471: }
1.71 ng 5472: }
1.324 albertel 5473: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 5474: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.526 raeburn 5475: $displayPts[0].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.71 ng 5476: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 5477: ' <br />';
1.526 raeburn 5478: $displayPts[1].=' <b>'.&mt('Part').':</b> '.$display_part.' = '.
1.125 ng 5479: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 5480: ' <br />';
1.71 ng 5481: $question++;
1.380 albertel 5482: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 5483:
1.71 ng 5484: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 5485: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 5486: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 5487: if (scalar(keys(%newrecord)) > 0);
1.71 ng 5488:
5489: $changeflag++;
5490: }
5491: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 5492: my %record =
5493: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
5494: $udom,$uname);
5495:
5496: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
5497: $newrecord{'resource.CODE'} = $env{'form.CODE'};
5498: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
5499: $newrecord{'resource.CODE'} = '';
5500: }
1.257 albertel 5501: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 5502: $udom,$uname);
1.382 albertel 5503: %record = &Apache::lonnet::restore($symbx,
5504: $env{'request.course.id'},
5505: $udom,$uname);
1.380 albertel 5506: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
5507: $cdom,$cnum,$udom,$uname);
1.71 ng 5508: }
1.380 albertel 5509:
1.269 raeburn 5510: if ($aggregateflag) {
5511: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
5512: $env{'course.'.$env{'request.course.id'}.'.domain'},
5513: $env{'course.'.$env{'request.course.id'}.'.num'});
5514: }
1.125 ng 5515:
1.71 ng 5516: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
5517: '<td valign="top">'.$displayPts[1].'</td>'.
1.484 albertel 5518: &Apache::loncommon::end_data_table_row();
1.68 ng 5519:
1.196 albertel 5520: $prob++;
1.68 ng 5521: }
1.71 ng 5522: $curRes = $iterator->next();
1.68 ng 5523: }
1.98 albertel 5524:
1.484 albertel 5525: $studentTable.=&Apache::loncommon::end_data_table();
1.324 albertel 5526: $studentTable.=&show_grading_menu_form($env{'form.symb'});
1.526 raeburn 5527: my $grademsg=($changeflag == 0 ? &mt('No score was changed or updated.') :
5528: &mt('The scores were changed for [quant,_1,problem].',
1.596.2.12.2. 1(raebur 5529:5): $changeflag).'<br />');
5530:5): my $hidemsg=($hideflag == 0 ? '' :
5531:5): &mt('Submissions were marked "hidden" for [quant,_1,transaction].',
5532:5): $hideflag).'<br />');
5533:5): $request->print($hidemsg.$grademsg.$studentTable);
1.68 ng 5534:
1.70 ng 5535: return '';
5536: }
5537:
1.72 ng 5538: #-------- end of section for handling grading by page/sequence ---------
5539: #
5540: #-------------------------------------------------------------------
5541:
1.581 www 5542: #-------------------- Bubblesheet (Scantron) Grading -------------------
1.75 albertel 5543: #
5544: #------ start of section for handling grading by page/sequence ---------
5545:
1.423 albertel 5546: =pod
5547:
5548: =head1 Bubble sheet grading routines
5549:
1.424 albertel 5550: For this documentation:
5551:
5552: 'scanline' refers to the full line of characters
5553: from the file that we are parsing that represents one entire sheet
5554:
5555: 'bubble line' refers to the data
1.596.2.6 raeburn 5556: representing the line of bubbles that are on the physical bubblesheet
1.424 albertel 5557:
5558:
1.596.2.6 raeburn 5559: The overall process is that a scanned in bubblesheet data is uploaded
1.424 albertel 5560: into a course. When a user wants to grade, they select a
1.596.2.6 raeburn 5561: sequence/folder of resources, a file of bubblesheet info, and pick
1.424 albertel 5562: one of the predefined configurations for what each scanline looks
5563: like.
5564:
5565: Next each scanline is checked for any errors of either 'missing
1.435 foxr 5566: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 5567: because too light bubbling), 'double bubble' (each bubble line should
1.596.2.12.2. 0(raebur 5568:3): have no more than one letter picked), invalid or duplicated CODE,
1.556 weissno 5569: invalid student/employee ID
1.424 albertel 5570:
5571: If the CODE option is used that determines the randomization of the
1.556 weissno 5572: homework problems, either way the student/employee ID is looked up into a
1.424 albertel 5573: username:domain.
5574:
5575: During the validation phase the instructor can choose to skip scanlines.
5576:
1.596.2.6 raeburn 5577: After the validation phase, there are now 3 bubblesheet files
1.424 albertel 5578:
5579: scantron_original_filename (unmodified original file)
5580: scantron_corrected_filename (file where the corrected information has replaced the original information)
5581: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
5582:
5583: Also there is a separate hash nohist_scantrondata that contains extra
1.596.2.6 raeburn 5584: correction information that isn't representable in the bubblesheet
1.424 albertel 5585: file (see &scantron_getfile() for more information)
5586:
5587: After all scanlines are either valid, marked as valid or skipped, then
5588: foreach line foreach problem in the picked sequence, an ssi request is
5589: made that simulates a user submitting their selected letter(s) against
5590: the homework problem.
1.423 albertel 5591:
5592: =over 4
5593:
5594:
5595:
5596: =item defaultFormData
5597:
5598: Returns html hidden inputs used to hold context/default values.
5599:
5600: Arguments:
5601: $symb - $symb of the current resource
5602:
5603: =cut
1.422 foxr 5604:
1.81 albertel 5605: sub defaultFormData {
1.324 albertel 5606: my ($symb)=@_;
1.447 foxr 5607: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 5608: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
5609: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81 albertel 5610: }
5611:
1.447 foxr 5612:
1.423 albertel 5613: =pod
5614:
5615: =item getSequenceDropDown
5616:
5617: Return html dropdown of possible sequences to grade
5618:
5619: Arguments:
1.582 raeburn 5620: $symb - $symb of the current resource
5621: $map_error - ref to scalar which will container error if
5622: $navmap object is unavailable in &getSymbMap().
1.423 albertel 5623:
5624: =cut
1.422 foxr 5625:
1.75 albertel 5626: sub getSequenceDropDown {
1.582 raeburn 5627: my ($symb,$map_error)=@_;
1.75 albertel 5628: my $result='<select name="selectpage">'."\n";
1.582 raeburn 5629: my ($titles,$symbx) = &getSymbMap($map_error);
5630: if (ref($map_error)) {
5631: return if ($$map_error);
5632: }
1.137 albertel 5633: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 5634: my $ctr=0;
5635: foreach (@$titles) {
5636: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
5637: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 5638: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 5639: '>'.$showtitle.'</option>'."\n";
5640: $ctr++;
5641: }
5642: $result.= '</select>';
5643: return $result;
5644: }
5645:
1.495 albertel 5646: my %bubble_lines_per_response; # no. bubble lines for each response.
1.554 raeburn 5647: # key is zero-based index - 0, 1, 2 ...
1.495 albertel 5648:
5649: my %first_bubble_line; # First bubble line no. for each bubble.
5650:
1.509 raeburn 5651: my %subdivided_bubble_lines; # no. bubble lines for optionresponse,
5652: # matchresponse or rankresponse, where
5653: # an individual response can have multiple
5654: # lines
1.503 raeburn 5655:
5656: my %responsetype_per_response; # responsetype for each response
5657:
1.596.2.12.2. 6(raebur 5658:3): my %masterseq_id_responsenum; # src_id (e.g., 12.3_0.11 etc.) for each
5659:3): # numbered response. Needed when randomorder
5660:3): # or randompick are in use. Key is ID, value
5661:3): # is response number.
5662:3):
1.495 albertel 5663: # Save and restore the bubble lines array to the form env.
5664:
5665:
5666: sub save_bubble_lines {
5667: foreach my $line (keys(%bubble_lines_per_response)) {
5668: $env{"form.scantron.bubblelines.$line"} = $bubble_lines_per_response{$line};
5669: $env{"form.scantron.first_bubble_line.$line"} =
5670: $first_bubble_line{$line};
1.503 raeburn 5671: $env{"form.scantron.sub_bubblelines.$line"} =
5672: $subdivided_bubble_lines{$line};
5673: $env{"form.scantron.responsetype.$line"} =
5674: $responsetype_per_response{$line};
1.495 albertel 5675: }
1.596.2.12.2. 6(raebur 5676:3): foreach my $resid (keys(%masterseq_id_responsenum)) {
5677:3): my $line = $masterseq_id_responsenum{$resid};
5678:3): $env{"form.scantron.residpart.$line"} = $resid;
5679:3): }
1.495 albertel 5680: }
5681:
5682:
5683: sub restore_bubble_lines {
5684: my $line = 0;
5685: %bubble_lines_per_response = ();
1.596.2.12.2. 6(raebur 5686:3): %masterseq_id_responsenum = ();
1.495 albertel 5687: while ($env{"form.scantron.bubblelines.$line"}) {
5688: my $value = $env{"form.scantron.bubblelines.$line"};
5689: $bubble_lines_per_response{$line} = $value;
5690: $first_bubble_line{$line} =
5691: $env{"form.scantron.first_bubble_line.$line"};
1.503 raeburn 5692: $subdivided_bubble_lines{$line} =
5693: $env{"form.scantron.sub_bubblelines.$line"};
5694: $responsetype_per_response{$line} =
5695: $env{"form.scantron.responsetype.$line"};
1.596.2.12.2. 6(raebur 5696:3): my $id = $env{"form.scantron.residpart.$line"};
5697:3): $masterseq_id_responsenum{$id} = $line;
1.495 albertel 5698: $line++;
5699: }
5700: }
5701:
1.423 albertel 5702: =pod
5703:
5704: =item scantron_filenames
5705:
5706: Returns a list of the scantron files in the current course
5707:
5708: =cut
1.422 foxr 5709:
1.202 albertel 5710: sub scantron_filenames {
1.257 albertel 5711: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5712: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517 raeburn 5713: my $getpropath = 1;
1.596.2.12.2. (raeburn 5714:): my ($dirlist,$listerror) = &Apache::lonnet::dirlist('userfiles',$cdom,
5715:): $cname,$getpropath);
1.202 albertel 5716: my @possiblenames;
1.596.2.12.2. (raeburn 5717:): if (ref($dirlist) eq 'ARRAY') {
5718:): foreach my $filename (sort(@{$dirlist})) {
5719:): ($filename)=split(/&/,$filename);
5720:): if ($filename!~/^scantron_orig_/) { next ; }
5721:): $filename=~s/^scantron_orig_//;
5722:): push(@possiblenames,$filename);
5723:): }
1.202 albertel 5724: }
5725: return @possiblenames;
5726: }
5727:
1.423 albertel 5728: =pod
5729:
5730: =item scantron_uploads
5731:
5732: Returns html drop-down list of scantron files in current course.
5733:
5734: Arguments:
5735: $file2grade - filename to set as selected in the dropdown
5736:
5737: =cut
1.422 foxr 5738:
1.202 albertel 5739: sub scantron_uploads {
1.209 ng 5740: my ($file2grade) = @_;
1.202 albertel 5741: my $result= '<select name="scantron_selectfile">';
5742: $result.="<option></option>";
5743: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 5744: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 5745: }
5746: $result.="</select>";
5747: return $result;
5748: }
5749:
1.423 albertel 5750: =pod
5751:
5752: =item scantron_scantab
5753:
5754: Returns html drop down of the scantron formats in the scantronformat.tab
5755: file.
5756:
5757: =cut
1.422 foxr 5758:
1.82 albertel 5759: sub scantron_scantab {
5760: my $result='<select name="scantron_format">'."\n";
1.191 albertel 5761: $result.='<option></option>'."\n";
1.518 raeburn 5762: my @lines = &get_scantronformat_file();
5763: if (@lines > 0) {
5764: foreach my $line (@lines) {
5765: next if (($line =~ /^\#/) || ($line eq ''));
5766: my ($name,$descrip)=split(/:/,$line);
5767: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
5768: }
1.82 albertel 5769: }
5770: $result.='</select>'."\n";
1.518 raeburn 5771: return $result;
5772: }
5773:
5774: =pod
5775:
5776: =item get_scantronformat_file
5777:
5778: Returns an array containing lines from the scantron format file for
5779: the domain of the course.
5780:
5781: If a url for a custom.tab file is listed in domain's configuration.db,
5782: lines are from this file.
5783:
5784: Otherwise, if a default.tab has been published in RES space by the
5785: domainconfig user, lines are from this file.
5786:
5787: Otherwise, fall back to getting lines from the legacy file on the
1.519 raeburn 5788: local server: /home/httpd/lonTabs/default_scantronformat.tab
1.82 albertel 5789:
1.518 raeburn 5790: =cut
5791:
5792: sub get_scantronformat_file {
5793: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5794: my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
5795: my $gottab = 0;
5796: my @lines;
5797: if (ref($domconfig{'scantron'}) eq 'HASH') {
5798: if ($domconfig{'scantron'}{'scantronformat'} ne '') {
5799: my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
5800: if ($formatfile ne '-1') {
5801: @lines = split("\n",$formatfile,-1);
5802: $gottab = 1;
5803: }
5804: }
5805: }
5806: if (!$gottab) {
5807: my $confname = $cdom.'-domainconfig';
5808: my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
5809: my $formatfile = &Apache::lonnet::getfile($default);
5810: if ($formatfile ne '-1') {
5811: @lines = split("\n",$formatfile,-1);
5812: $gottab = 1;
5813: }
5814: }
5815: if (!$gottab) {
1.519 raeburn 5816: my @domains = &Apache::lonnet::current_machine_domains();
5817: if (grep(/^\Q$cdom\E$/,@domains)) {
5818: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
5819: @lines = <$fh>;
5820: close($fh);
5821: } else {
5822: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab');
5823: @lines = <$fh>;
5824: close($fh);
5825: }
1.518 raeburn 5826: }
5827: return @lines;
1.82 albertel 5828: }
5829:
1.423 albertel 5830: =pod
5831:
5832: =item scantron_CODElist
5833:
5834: Returns html drop down of the saved CODE lists from current course,
5835: generated from earlier printings.
5836:
5837: =cut
1.422 foxr 5838:
1.186 albertel 5839: sub scantron_CODElist {
1.257 albertel 5840: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
5841: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 5842: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
5843: my $namechoice='<option></option>';
1.225 albertel 5844: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 5845: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 5846: if ($name =~ /^type\0/) { next; }
1.186 albertel 5847: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
5848: }
5849: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
5850: return $namechoice;
5851: }
5852:
1.423 albertel 5853: =pod
5854:
5855: =item scantron_CODEunique
5856:
5857: Returns the html for "Each CODE to be used once" radio.
5858:
5859: =cut
1.422 foxr 5860:
1.186 albertel 5861: sub scantron_CODEunique {
1.532 bisitz 5862: my $result='<span class="LC_nobreak">
1.272 albertel 5863: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5864: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 5865: </span>
1.532 bisitz 5866: <span class="LC_nobreak">
1.272 albertel 5867: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 5868: value="no" />'.&mt('No').' </label>
1.381 albertel 5869: </span>';
1.186 albertel 5870: return $result;
5871: }
1.423 albertel 5872:
5873: =pod
5874:
5875: =item scantron_selectphase
5876:
1.596.2.6 raeburn 5877: Generates the initial screen to start the bubblesheet process.
1.423 albertel 5878: Allows for - starting a grading run.
1.424 albertel 5879: - downloading existing scan data (original, corrected
1.423 albertel 5880: or skipped info)
5881:
5882: - uploading new scan data
5883:
5884: Arguments:
5885: $r - The Apache request object
5886: $file2grade - name of the file that contain the scanned data to score
5887:
5888: =cut
1.186 albertel 5889:
1.75 albertel 5890: sub scantron_selectphase {
1.209 ng 5891: my ($r,$file2grade) = @_;
1.324 albertel 5892: my ($symb)=&get_symb($r);
1.75 albertel 5893: if (!$symb) {return '';}
1.582 raeburn 5894: my $map_error;
5895: my $sequence_selector=&getSequenceDropDown($symb,\$map_error);
5896: if ($map_error) {
5897: $r->print('<br />'.&navmap_errormsg().'<br />');
5898: return;
5899: }
1.324 albertel 5900: my $default_form_data=&defaultFormData($symb);
5901: my $grading_menu_button=&show_grading_menu_form($symb);
1.209 ng 5902: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 5903: my $format_selector=&scantron_scantab();
1.186 albertel 5904: my $CODE_selector=&scantron_CODElist();
5905: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 5906: my $result;
1.422 foxr 5907:
1.513 foxr 5908: $ssi_error = 0;
5909:
1.596.2.4 raeburn 5910: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
5911: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
5912:
5913: # Chunk of form to prompt for a scantron file upload.
5914:
5915: $r->print('
5916: <br />
5917: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5918: '.&Apache::loncommon::start_data_table_header_row().'
5919: <th>
5920: '.&mt('Specify a bubblesheet data file to upload.').'
5921: </th>
5922: '.&Apache::loncommon::end_data_table_header_row().'
5923: '.&Apache::loncommon::start_data_table_row().'
5924: <td>
5925: ');
5926: my $default_form_data=&defaultFormData(&get_symb($r,1));
5927: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5928: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.596.2.12.2. 6(raebur 5929:6): my $alertmsg = &mt('Please use the browse button to select a file from your local directory.');
5930:6): &js_escape(\$alertmsg);
1.596.2.4 raeburn 5931: $r->print('
5932: <script type="text/javascript" language="javascript">
5933: function checkUpload(formname) {
5934: if (formname.upfile.value == "") {
1.596.2.12.2. 6(raebur 5935:6): alert("'.$alertmsg.'");
1.596.2.4 raeburn 5936: return false;
5937: }
5938: formname.submit();
5939: }
5940: </script>
5941:
5942: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
5943: '.$default_form_data.'
5944: <input name="courseid" type="hidden" value="'.$cnum.'" />
5945: <input name="domainid" type="hidden" value="'.$cdom.'" />
5946: <input name="command" value="scantronupload_save" type="hidden" />
5947: '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
5948: <br />
5949: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
5950: </form>
5951: ');
5952:
5953: $r->print('
5954: </td>
5955: '.&Apache::loncommon::end_data_table_row().'
5956: '.&Apache::loncommon::end_data_table().'
5957: ');
5958: }
5959:
1.422 foxr 5960: # Chunk of form to prompt for a file to grade and how:
5961:
1.489 albertel 5962: $result.= '
5963: <br />
5964: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
5965: <input type="hidden" name="command" value="scantron_warning" />
5966: '.$default_form_data.'
5967: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5968: '.&Apache::loncommon::start_data_table_header_row().'
5969: <th colspan="2">
1.492 albertel 5970: '.&mt('Specify file and which Folder/Sequence to grade').'
1.489 albertel 5971: </th>
5972: '.&Apache::loncommon::end_data_table_header_row().'
5973: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5974: <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489 albertel 5975: '.&Apache::loncommon::end_data_table_row().'
5976: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5977: <td> '.&mt('Filename of bubblesheet data file:').' </td><td> '.$file_selector.' </td>
1.489 albertel 5978: '.&Apache::loncommon::end_data_table_row().'
5979: '.&Apache::loncommon::start_data_table_row().'
1.572 www 5980: <td> '.&mt('Format of bubblesheet data file:').' </td><td> '.$format_selector.' </td>
1.489 albertel 5981: '.&Apache::loncommon::end_data_table_row().'
5982: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5983: <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489 albertel 5984: '.&Apache::loncommon::end_data_table_row().'
5985: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5986: <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489 albertel 5987: '.&Apache::loncommon::end_data_table_row().'
5988: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5989: <td> '.&mt('Options:').' </td>
1.187 albertel 5990: <td>
1.492 albertel 5991: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
5992: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
5993: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187 albertel 5994: </td>
1.489 albertel 5995: '.&Apache::loncommon::end_data_table_row().'
5996: '.&Apache::loncommon::start_data_table_row().'
1.174 albertel 5997: <td colspan="2">
1.572 www 5998: <input type="submit" value="'.&mt('Grading: Validate Bubblesheet Records').'" />
1.162 albertel 5999: </td>
1.489 albertel 6000: '.&Apache::loncommon::end_data_table_row().'
6001: '.&Apache::loncommon::end_data_table().'
6002: </form>
6003: ';
1.162 albertel 6004:
6005: $r->print($result);
6006:
1.422 foxr 6007: # Chunk of the form that prompts to view a scoring office file,
6008: # corrected file, skipped records in a file.
6009:
1.489 albertel 6010: $r->print('
6011: <br />
6012: <form action="/adm/grades" name="scantron_download">
6013: '.$default_form_data.'
6014: <input type="hidden" name="command" value="scantron_download" />
6015: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
6016: '.&Apache::loncommon::start_data_table_header_row().'
6017: <th>
1.492 albertel 6018: '.&mt('Download a scoring office file').'
1.489 albertel 6019: </th>
6020: '.&Apache::loncommon::end_data_table_header_row().'
6021: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 6022: <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).'
1.489 albertel 6023: <br />
1.492 albertel 6024: <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489 albertel 6025: '.&Apache::loncommon::end_data_table_row().'
6026: '.&Apache::loncommon::end_data_table().'
6027: </form>
6028: <br />
6029: ');
1.162 albertel 6030:
1.457 banghart 6031: &Apache::lonpickcode::code_list($r,2);
1.523 raeburn 6032:
1.596.2.12.2. 8(raebur 6033:3): $r->print('<br /><form method="post" name="checkscantron" action="">'.
1.523 raeburn 6034: $default_form_data."\n".
6035: &Apache::loncommon::start_data_table('LC_scantron_action')."\n".
6036: &Apache::loncommon::start_data_table_header_row()."\n".
6037: '<th colspan="2">
1.572 www 6038: '.&mt('Review bubblesheet data and submissions for a previously graded folder/sequence')."\n".
1.523 raeburn 6039: '</th>'."\n".
6040: &Apache::loncommon::end_data_table_header_row()."\n".
6041: &Apache::loncommon::start_data_table_row()."\n".
6042: '<td> '.&mt('Graded folder/sequence:').' </td>'."\n".
6043: '<td> '.$sequence_selector.' </td>'.
6044: &Apache::loncommon::end_data_table_row()."\n".
6045: &Apache::loncommon::start_data_table_row()."\n".
6046: '<td> '.&mt('Filename of scoring office file:').' </td>'."\n".
6047: '<td> '.$file_selector.' </td>'."\n".
6048: &Apache::loncommon::end_data_table_row()."\n".
6049: &Apache::loncommon::start_data_table_row()."\n".
6050: '<td> '.&mt('Format of data file:').' </td>'."\n".
6051: '<td> '.$format_selector.' </td>'."\n".
6052: &Apache::loncommon::end_data_table_row()."\n".
6053: &Apache::loncommon::start_data_table_row()."\n".
1.557 raeburn 6054: '<td> '.&mt('Options').' </td>'."\n".
6055: '<td> <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources').'</label></td>'.
6056: &Apache::loncommon::end_data_table_row()."\n".
6057: &Apache::loncommon::start_data_table_row()."\n".
1.523 raeburn 6058: '<td colspan="2">'."\n".
6059: '<input type="hidden" name="command" value="checksubmissions" />'."\n".
1.575 www 6060: '<input type="submit" value="'.&mt('Review Bubblesheet Data and Submission Records').'" />'."\n".
1.523 raeburn 6061: '</td>'."\n".
6062: &Apache::loncommon::end_data_table_row()."\n".
6063: &Apache::loncommon::end_data_table()."\n".
6064: '</form><br />');
1.457 banghart 6065: $r->print($grading_menu_button);
1.523 raeburn 6066: return;
1.75 albertel 6067: }
6068:
1.423 albertel 6069: =pod
6070:
6071: =item get_scantron_config
6072:
6073: Parse and return the scantron configuration line selected as a
6074: hash of configuration file fields.
6075:
6076: Arguments:
6077: which - the name of the configuration to parse from the file.
6078:
6079:
6080: Returns:
6081: If the named configuration is not in the file, an empty
6082: hash is returned.
6083: a hash with the fields
6084: name - internal name for the this configuration setup
6085: description - text to display to operator that describes this config
6086: CODElocation - if 0 or the string 'none'
6087: - no CODE exists for this config
6088: if -1 || the string 'letter'
6089: - a CODE exists for this config and is
6090: a string of letters
6091: Unsupported value (but planned for future support)
6092: if a positive integer
6093: - The CODE exists as the first n items from
6094: the question section of the form
6095: if the string 'number'
6096: - The CODE exists for this config and is
6097: a string of numbers
6098: CODEstart - (only matter if a CODE exists) column in the line where
6099: the CODE starts
6100: CODElength - length of the CODE
1.573 bisitz 6101: IDstart - column where the student/employee ID starts
1.556 weissno 6102: IDlength - length of the student/employee ID info
1.423 albertel 6103: Qstart - column where the information from the bubbled
6104: 'questions' start
6105: Qlength - number of columns comprising a single bubble line from
6106: the sheet. (usually either 1 or 10)
1.424 albertel 6107: Qon - either a single character representing the character used
1.423 albertel 6108: to signal a bubble was chosen in the positional setup, or
6109: the string 'letter' if the letter of the chosen bubble is
6110: in the final, or 'number' if a number representing the
6111: chosen bubble is in the file (1->A 0->J)
1.424 albertel 6112: Qoff - the character used to represent that a bubble was
6113: left blank
1.423 albertel 6114: PaperID - if the scanning process generates a unique number for each
6115: sheet scanned the column that this ID number starts in
6116: PaperIDlength - number of columns that comprise the unique ID number
6117: for the sheet of paper
1.424 albertel 6118: FirstName - column that the first name starts in
1.423 albertel 6119: FirstNameLength - number of columns that the first name spans
6120:
6121: LastName - column that the last name starts in
6122: LastNameLength - number of columns that the last name spans
1.596.2.12.2. (raeburn 6123:): BubblesPerRow - number of bubbles available in each row used to
6124:): bubble an answer. (If not specified, 10 assumed).
1.423 albertel 6125:
6126: =cut
1.422 foxr 6127:
1.82 albertel 6128: sub get_scantron_config {
6129: my ($which) = @_;
1.518 raeburn 6130: my @lines = &get_scantronformat_file();
1.82 albertel 6131: my %config;
1.157 albertel 6132: #FIXME probably should move to XML it has already gotten a bit much now
1.518 raeburn 6133: foreach my $line (@lines) {
1.82 albertel 6134: my ($name,$descrip)=split(/:/,$line);
6135: if ($name ne $which ) { next; }
6136: chomp($line);
6137: my @config=split(/:/,$line);
6138: $config{'name'}=$config[0];
6139: $config{'description'}=$config[1];
6140: $config{'CODElocation'}=$config[2];
6141: $config{'CODEstart'}=$config[3];
6142: $config{'CODElength'}=$config[4];
6143: $config{'IDstart'}=$config[5];
6144: $config{'IDlength'}=$config[6];
6145: $config{'Qstart'}=$config[7];
1.497 foxr 6146: $config{'Qlength'}=$config[8];
1.82 albertel 6147: $config{'Qoff'}=$config[9];
6148: $config{'Qon'}=$config[10];
1.157 albertel 6149: $config{'PaperID'}=$config[11];
6150: $config{'PaperIDlength'}=$config[12];
6151: $config{'FirstName'}=$config[13];
6152: $config{'FirstNamelength'}=$config[14];
6153: $config{'LastName'}=$config[15];
6154: $config{'LastNamelength'}=$config[16];
1.596.2.12.2. (raeburn 6155:): $config{'BubblesPerRow'}=$config[17];
1.82 albertel 6156: last;
6157: }
6158: return %config;
6159: }
6160:
1.423 albertel 6161: =pod
6162:
6163: =item username_to_idmap
6164:
1.556 weissno 6165: creates a hash keyed by student/employee ID with values of the corresponding
1.423 albertel 6166: student username:domain.
6167:
6168: Arguments:
6169:
6170: $classlist - reference to the class list hash. This is a hash
6171: keyed by student name:domain whose elements are references
1.424 albertel 6172: to arrays containing various chunks of information
1.423 albertel 6173: about the student. (See loncoursedata for more info).
6174:
6175: Returns
6176: %idmap - the constructed hash
6177:
6178: =cut
6179:
1.82 albertel 6180: sub username_to_idmap {
6181: my ($classlist)= @_;
6182: my %idmap;
6183: foreach my $student (keys(%$classlist)) {
1.596.2.12.2. 3(raebur 6184:5): my $id = $classlist->{$student}->[&Apache::loncoursedata::CL_ID];
6185:5): unless ($id eq '') {
6186:5): if (!exists($idmap{$id})) {
6187:5): $idmap{$id} = $student;
6188:5): } else {
6189:5): my $status = $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS];
6190:5): if ($status eq 'Active') {
6191:5): $idmap{$id} = $student;
6192:5): }
6193:5): }
6194:5): }
1.82 albertel 6195: }
6196: return %idmap;
6197: }
1.423 albertel 6198:
6199: =pod
6200:
1.424 albertel 6201: =item scantron_fixup_scanline
1.423 albertel 6202:
6203: Process a requested correction to a scanline.
6204:
6205: Arguments:
6206: $scantron_config - hash from &get_scantron_config()
6207: $scan_data - hash of correction information
6208: (see &scantron_getfile())
6209: $line - existing scanline
6210: $whichline - line number of the passed in scanline
6211: $field - type of change to process
6212: (either
1.573 bisitz 6213: 'ID' -> correct the student/employee ID
1.423 albertel 6214: 'CODE' -> correct the CODE
6215: 'answer' -> fixup the submitted answers)
6216:
6217: $args - hash of additional info,
6218: - 'ID'
6219: 'newid' -> studentID to use in replacement
1.424 albertel 6220: of existing one
1.423 albertel 6221: - 'CODE'
6222: 'CODE_ignore_dup' - set to true if duplicates
6223: should be ignored.
6224: 'CODE' - is new code or 'use_unfound'
1.424 albertel 6225: if the existing unfound code should
1.423 albertel 6226: be used as is
6227: - 'answer'
6228: 'response' - new answer or 'none' if blank
6229: 'question' - the bubble line to change
1.503 raeburn 6230: 'questionnum' - the question identifier,
6231: may include subquestion.
1.423 albertel 6232:
6233: Returns:
6234: $line - the modified scanline
6235:
6236: Side effects:
6237: $scan_data - may be updated
6238:
6239: =cut
6240:
1.82 albertel 6241:
1.157 albertel 6242: sub scantron_fixup_scanline {
6243: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
6244: if ($field eq 'ID') {
6245: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 6246: return ($line,1,'New value too large');
1.157 albertel 6247: }
6248: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
6249: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
6250: $args->{'newid'});
6251: }
6252: substr($line,$$scantron_config{'IDstart'}-1,
6253: $$scantron_config{'IDlength'})=$args->{'newid'};
6254: if ($args->{'newid'}=~/^\s*$/) {
6255: &scan_data($scan_data,"$whichline.user",
6256: $args->{'username'}.':'.$args->{'domain'});
6257: }
1.186 albertel 6258: } elsif ($field eq 'CODE') {
1.192 albertel 6259: if ($args->{'CODE_ignore_dup'}) {
6260: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
6261: }
6262: &scan_data($scan_data,"$whichline.useCODE",'1');
6263: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 6264: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
6265: return ($line,1,'New CODE value too large');
6266: }
6267: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
6268: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
6269: }
6270: substr($line,$$scantron_config{'CODEstart'}-1,
6271: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 6272: }
1.157 albertel 6273: } elsif ($field eq 'answer') {
1.497 foxr 6274: my $length=$scantron_config->{'Qlength'};
1.157 albertel 6275: my $off=$scantron_config->{'Qoff'};
6276: my $on=$scantron_config->{'Qon'};
1.497 foxr 6277: my $answer=${off}x$length;
6278: if ($args->{'response'} eq 'none') {
6279: &scan_data($scan_data,
1.503 raeburn 6280: "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497 foxr 6281: } else {
6282: if ($on eq 'letter') {
6283: my @alphabet=('A'..'Z');
6284: $answer=$alphabet[$args->{'response'}];
6285: } elsif ($on eq 'number') {
6286: $answer=$args->{'response'}+1;
6287: if ($answer == 10) { $answer = '0'; }
1.274 albertel 6288: } else {
1.497 foxr 6289: substr($answer,$args->{'response'},1)=$on;
1.274 albertel 6290: }
1.497 foxr 6291: &scan_data($scan_data,
1.503 raeburn 6292: "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157 albertel 6293: }
1.497 foxr 6294: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
6295: substr($line,$where-1,$length)=$answer;
1.157 albertel 6296: }
6297: return $line;
6298: }
1.423 albertel 6299:
6300: =pod
6301:
6302: =item scan_data
6303:
6304: Edit or look up an item in the scan_data hash.
6305:
6306: Arguments:
6307: $scan_data - The hash (see scantron_getfile)
6308: $key - shorthand of the key to edit (actual key is
1.424 albertel 6309: scantronfilename_key).
1.423 albertel 6310: $data - New value of the hash entry.
6311: $delete - If true, the entry is removed from the hash.
6312:
6313: Returns:
6314: The new value of the hash table field (undefined if deleted).
6315:
6316: =cut
6317:
6318:
1.157 albertel 6319: sub scan_data {
6320: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 6321: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 6322: if (defined($value)) {
6323: $scan_data->{$filename.'_'.$key} = $value;
6324: }
6325: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
6326: return $scan_data->{$filename.'_'.$key};
6327: }
1.423 albertel 6328:
1.495 albertel 6329: # ----- These first few routines are general use routines.----
6330:
6331: # Return the number of occurences of a pattern in a string.
6332:
6333: sub occurence_count {
6334: my ($string, $pattern) = @_;
6335:
6336: my @matches = ($string =~ /$pattern/g);
6337:
6338: return scalar(@matches);
6339: }
6340:
6341:
6342: # Take a string known to have digits and convert all the
6343: # digits into letters in the range J,A..I.
6344:
6345: sub digits_to_letters {
6346: my ($input) = @_;
6347:
6348: my @alphabet = ('J', 'A'..'I');
6349:
6350: my @input = split(//, $input);
6351: my $output ='';
6352: for (my $i = 0; $i < scalar(@input); $i++) {
6353: if ($input[$i] =~ /\d/) {
6354: $output .= $alphabet[$input[$i]];
6355: } else {
6356: $output .= $input[$i];
6357: }
6358: }
6359: return $output;
6360: }
6361:
1.423 albertel 6362: =pod
6363:
6364: =item scantron_parse_scanline
6365:
6366: Decodes a scanline from the selected scantron file
6367:
6368: Arguments:
6369: line - The text of the scantron file line to process
6370: whichline - Line number
6371: scantron_config - Hash describing the format of the scantron lines.
6372: scan_data - Hash of extra information about the scanline
6373: (see scantron_getfile for more information)
6374: just_header - True if should not process question answers but only
6375: the stuff to the left of the answers.
1.596.2.12.2. 6(raebur 6376:3): randomorder - True if randomorder in use
6377:3): randompick - True if randompick in use
6378:3): sequence - Exam folder URL
6379:3): master_seq - Ref to array containing symbs in exam folder
6380:3): symb_to_resource - Ref to hash of symbs for resources in exam folder
6381:3): (corresponding values are resource objects)
6382:3): partids_by_symb - Ref to hash of symb -> array ref of partIDs
6383:3): orderedforcode - Ref to hash of arrays. keys are CODEs and values
6384:3): are refs to an array of resource objects, ordered
6385:3): according to order used for CODE, when randomorder
6386:3): and or randompick are in use.
6387:3): respnumlookup - Ref to hash mapping question numbers in bubble lines
6388:3): for current line to question number used for same question
6389:3): in "Master Sequence" (as seen by Course Coordinator).
6390:3): startline - Ref to hash where key is question number (0 is first)
6391:3): and value is number of first bubble line for current
6392:3): student or code-based randompick and/or randomorder.
6393:3): totalref - Ref of scalar used to score total number of bubble
6394:3): lines needed for responses in a scan line (used when
6395:3): randompick in use.
6396:3):
1.423 albertel 6397: Returns:
6398: Hash containing the result of parsing the scanline
6399:
6400: Keys are all proceeded by the string 'scantron.'
6401:
6402: CODE - the CODE in use for this scanline
6403: useCODE - 1 if the CODE is invalid but it usage has been forced
6404: by the operator
6405: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
6406: CODEs were selected, but the usage has been
6407: forced by the operator
1.556 weissno 6408: ID - student/employee ID
1.423 albertel 6409: PaperID - if used, the ID number printed on the sheet when the
6410: paper was scanned
6411: FirstName - first name from the sheet
6412: LastName - last name from the sheet
6413:
6414: if just_header was not true these key may also exist
6415:
1.447 foxr 6416: missingerror - a list of bubble ranges that are considered to be answers
6417: to a single question that don't have any bubbles filled in.
6418: Of the form questionnumber:firstbubblenumber:count.
6419: doubleerror - a list of bubble ranges that are considered to be answers
6420: to a single question that have more than one bubble filled in.
6421: Of the form questionnumber::firstbubblenumber:count
6422:
6423: In the above, count is the number of bubble responses in the
6424: input line needed to represent the possible answers to the question.
6425: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
6426: per line would have count = 2.
6427:
1.423 albertel 6428: maxquest - the number of the last bubble line that was parsed
6429:
6430: (<number> starts at 1)
6431: <number>.answer - zero or more letters representing the selected
6432: letters from the scanline for the bubble line
6433: <number>.
6434: if blank there was either no bubble or there where
6435: multiple bubbles, (consult the keys missingerror and
6436: doubleerror if this is an error condition)
6437:
6438: =cut
6439:
1.82 albertel 6440: sub scantron_parse_scanline {
1.596.2.12.2. 6(raebur 6441:3): my ($line,$whichline,$scantron_config,$scan_data,$just_header,$idmap,
6442:3): $randomorder,$randompick,$sequence,$master_seq,$symb_to_resource,
6443:3): $partids_by_symb,$orderedforcode,$respnumlookup,$startline,$totalref)=@_;
1.470 foxr 6444:
1.82 albertel 6445: my %record;
1.596.2.12.2. 6(raebur 6446:3): my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # stuff before answers
1.278 albertel 6447: if (!($$scantron_config{'CODElocation'} eq 0 ||
6448: $$scantron_config{'CODElocation'} eq 'none')) {
6449: if ($$scantron_config{'CODElocation'} < 0 ||
6450: $$scantron_config{'CODElocation'} eq 'letter' ||
6451: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 6452: $record{'scantron.CODE'}=substr($data,
6453: $$scantron_config{'CODEstart'}-1,
1.83 albertel 6454: $$scantron_config{'CODElength'});
1.191 albertel 6455: if (&scan_data($scan_data,"$whichline.useCODE")) {
6456: $record{'scantron.useCODE'}=1;
6457: }
1.192 albertel 6458: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
6459: $record{'scantron.CODE_ignore_dup'}=1;
6460: }
1.82 albertel 6461: } else {
6462: #FIXME interpret first N questions
6463: }
6464: }
1.83 albertel 6465: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
6466: $$scantron_config{'IDlength'});
1.157 albertel 6467: $record{'scantron.PaperID'}=
6468: substr($data,$$scantron_config{'PaperID'}-1,
6469: $$scantron_config{'PaperIDlength'});
6470: $record{'scantron.FirstName'}=
6471: substr($data,$$scantron_config{'FirstName'}-1,
6472: $$scantron_config{'FirstNamelength'});
6473: $record{'scantron.LastName'}=
6474: substr($data,$$scantron_config{'LastName'}-1,
6475: $$scantron_config{'LastNamelength'});
1.423 albertel 6476: if ($just_header) { return \%record; }
1.194 albertel 6477:
1.82 albertel 6478: my @alphabet=('A'..'Z');
6479: my $questnum=0;
1.447 foxr 6480: my $ansnum =1; # Multiple 'answer lines'/question.
6481:
1.596.2.12.2. 6(raebur 6482:3): my $lastpos = $env{'form.scantron_maxbubble'}*$$scantron_config{'Qlength'};
6483:3): if ($randompick || $randomorder) {
6484:3): my $total = &get_respnum_lookups($sequence,$scan_data,$idmap,$line,\%record,
6485:3): $master_seq,$symb_to_resource,
6486:3): $partids_by_symb,$orderedforcode,
6487:3): $respnumlookup,$startline);
6488:3): if ($total) {
6489:3): $lastpos = $total*$$scantron_config{'Qlength'};
6490:3): }
6491:3): if (ref($totalref)) {
6492:3): $$totalref = $total;
6493:3): }
6494:3): }
6495:3): my $questions=substr($line,$$scantron_config{'Qstart'}-1,$lastpos); # Answers
1.470 foxr 6496: chomp($questions); # Get rid of any trailing \n.
6497: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
6498: while (length($questions)) {
1.596.2.12.2. 6(raebur 6499:3): my $answers_needed;
6500:3): if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6501:3): $answers_needed = $bubble_lines_per_response{$respnumlookup->{$questnum}};
6502:3): } else {
6503:3): $answers_needed = $bubble_lines_per_response{$questnum};
6504:3): }
1.503 raeburn 6505: my $answer_length = ($$scantron_config{'Qlength'} * $answers_needed)
6506: || 1;
6507: $questnum++;
6508: my $quest_id = $questnum;
6509: my $currentquest = substr($questions,0,$answer_length);
6510: $questions = substr($questions,$answer_length);
6511: if (length($currentquest) < $answer_length) { next; }
6512:
1.596.2.12.2. 6(raebur 6513:3): my $subdivided;
6514:3): if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6515:3): $subdivided = $subdivided_bubble_lines{$respnumlookup->{$questnum-1}};
6516:3): } else {
6517:3): $subdivided = $subdivided_bubble_lines{$questnum-1};
6518:3): }
6519:3): if ($subdivided =~ /,/) {
1.503 raeburn 6520: my $subquestnum = 1;
6521: my $subquestions = $currentquest;
1.596.2.12.2. 6(raebur 6522:3): my @subanswers_needed = split(/,/,$subdivided);
1.503 raeburn 6523: foreach my $subans (@subanswers_needed) {
6524: my $subans_length =
6525: ($$scantron_config{'Qlength'} * $subans) || 1;
6526: my $currsubquest = substr($subquestions,0,$subans_length);
6527: $subquestions = substr($subquestions,$subans_length);
6528: $quest_id = "$questnum.$subquestnum";
6529: if (($$scantron_config{'Qon'} eq 'letter') ||
6530: ($$scantron_config{'Qon'} eq 'number')) {
6531: $ansnum = &scantron_validator_lettnum($ansnum,
6532: $questnum,$quest_id,$subans,$currsubquest,$whichline,
1.596.2.12.2. 6(raebur 6533:3): \@alphabet,\%record,$scantron_config,$scan_data,
6534:3): $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6535: } else {
6536: $ansnum = &scantron_validator_positional($ansnum,
1.596.2.12.2. 6(raebur 6537:3): $questnum,$quest_id,$subans,$currsubquest,$whichline,
6538:3): \@alphabet,\%record,$scantron_config,$scan_data,
6539:3): $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6540: }
6541: $subquestnum ++;
6542: }
6543: } else {
6544: if (($$scantron_config{'Qon'} eq 'letter') ||
6545: ($$scantron_config{'Qon'} eq 'number')) {
6546: $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
6547: $quest_id,$answers_needed,$currentquest,$whichline,
1.596.2.12.2. 6(raebur 6548:3): \@alphabet,\%record,$scantron_config,$scan_data,
6549:3): $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6550: } else {
6551: $ansnum = &scantron_validator_positional($ansnum,$questnum,
6552: $quest_id,$answers_needed,$currentquest,$whichline,
1.596.2.12.2. 6(raebur 6553:3): \@alphabet,\%record,$scantron_config,$scan_data,
6554:3): $randomorder,$randompick,$respnumlookup);
1.503 raeburn 6555: }
6556: }
6557: }
6558: $record{'scantron.maxquest'}=$questnum;
6559: return \%record;
6560: }
1.447 foxr 6561:
1.596.2.12.2. 6(raebur 6562:3): sub get_master_seq {
6563:3): my ($resources,$master_seq,$symb_to_resource) = @_;
6564:3): return unless ((ref($resources) eq 'ARRAY') && (ref($master_seq) eq 'ARRAY') &&
6565:3): (ref($symb_to_resource) eq 'HASH'));
6566:3): my $resource_error;
6567:3): foreach my $resource (@{$resources}) {
6568:3): my $ressymb;
6569:3): if (ref($resource)) {
6570:3): $ressymb = $resource->symb();
6571:3): push(@{$master_seq},$ressymb);
6572:3): $symb_to_resource->{$ressymb} = $resource;
6573:3): } else {
6574:3): $resource_error = 1;
6575:3): last;
6576:3): }
6577:3): }
6578:3): return $resource_error;
6579:3): }
6580:3):
6581:3): sub get_respnum_lookups {
6582:3): my ($sequence,$scan_data,$idmap,$line,$record,$master_seq,$symb_to_resource,
6583:3): $partids_by_symb,$orderedforcode,$respnumlookup,$startline) = @_;
6584:3): return unless ((ref($record) eq 'HASH') && (ref($master_seq) eq 'ARRAY') &&
6585:3): (ref($symb_to_resource) eq 'HASH') && (ref($partids_by_symb) eq 'HASH') &&
6586:3): (ref($orderedforcode) eq 'HASH') && (ref($respnumlookup) eq 'HASH') &&
6587:3): (ref($startline) eq 'HASH'));
6588:3): my ($user,$scancode);
6589:3): if ((exists($record->{'scantron.CODE'})) &&
6590:3): (&Apache::lonnet::validCODE($record->{'scantron.CODE'}))) {
6591:3): $scancode = $record->{'scantron.CODE'};
6592:3): } else {
6593:3): $user = &scantron_find_student($record,$scan_data,$idmap,$line);
6594:3): }
6595:3): my @mapresources =
6596:3): &users_order($user,$scancode,$sequence,$master_seq,$symb_to_resource,
6597:3): $orderedforcode);
6598:3): my $total = 0;
6599:3): my $count = 0;
6600:3): foreach my $resource (@mapresources) {
6601:3): my $id = $resource->id();
6602:3): my $symb = $resource->symb();
6603:3): if (ref($partids_by_symb->{$symb}) eq 'ARRAY') {
6604:3): foreach my $partid (@{$partids_by_symb->{$symb}}) {
6605:3): my $respnum = $masterseq_id_responsenum{$id.'_'.$partid};
6606:3): if ($respnum ne '') {
6607:3): $respnumlookup->{$count} = $respnum;
6608:3): $startline->{$count} = $total;
6609:3): $total += $bubble_lines_per_response{$respnum};
6610:3): $count ++;
6611:3): }
6612:3): }
6613:3): }
6614:3): }
6615:3): return $total;
6616:3): }
6617:3):
1.503 raeburn 6618: sub scantron_validator_lettnum {
6619: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
1.596.2.12.2. 6(raebur 6620:3): $alphabet,$record,$scantron_config,$scan_data,$randomorder,
6621:3): $randompick,$respnumlookup) = @_;
1.503 raeburn 6622:
6623: # Qon 'letter' implies for each slot in currquest we have:
6624: # ? or * for doubles, a letter in A-Z for a bubble, and
6625: # about anything else (esp. a value of Qoff) for missing
6626: # bubbles.
6627: #
6628: # Qon 'number' implies each slot gives a digit that indexes the
6629: # bubbles filled, or Qoff, or a non-number for unbubbled lines,
6630: # and * or ? for double bubbles on a single line.
6631: #
1.447 foxr 6632:
1.503 raeburn 6633: my $matchon;
6634: if ($$scantron_config{'Qon'} eq 'letter') {
6635: $matchon = '[A-Z]';
6636: } elsif ($$scantron_config{'Qon'} eq 'number') {
6637: $matchon = '\d';
6638: }
6639: my $occurrences = 0;
1.596.2.12.2. 6(raebur 6640:3): my $responsenum = $questnum-1;
6641:3): if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6642:3): $responsenum = $respnumlookup->{$questnum-1}
6643:3): }
6644:3): if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
6645:3): ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
6646:3): ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
6647:3): ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
6648:3): ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
6649:3): ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.503 raeburn 6650: my @singlelines = split('',$currquest);
6651: foreach my $entry (@singlelines) {
6652: $occurrences = &occurence_count($entry,$matchon);
6653: if ($occurrences > 1) {
6654: last;
6655: }
1.596.2.12.2. 6(raebur 6656:3): }
1.503 raeburn 6657: } else {
6658: $occurrences = &occurence_count($currquest,$matchon);
6659: }
6660: if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
6661: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6662: for (my $ans=0; $ans<$answers_needed; $ans++) {
6663: my $bubble = substr($currquest,$ans,1);
6664: if ($bubble =~ /$matchon/ ) {
6665: if ($$scantron_config{'Qon'} eq 'number') {
6666: if ($bubble == 0) {
6667: $bubble = 10;
6668: }
6669: $record->{"scantron.$ansnum.answer"} =
6670: $alphabet->[$bubble-1];
6671: } else {
6672: $record->{"scantron.$ansnum.answer"} = $bubble;
6673: }
6674: } else {
6675: $record->{"scantron.$ansnum.answer"}='';
6676: }
6677: $ansnum++;
6678: }
6679: } elsif (!defined($currquest)
6680: || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
6681: || (&occurence_count($currquest,$matchon) == 0)) {
6682: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6683: $record->{"scantron.$ansnum.answer"}='';
6684: $ansnum++;
6685: }
6686: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6687: push(@{$record->{'scantron.missingerror'}},$quest_id);
6688: }
6689: } else {
6690: if ($$scantron_config{'Qon'} eq 'number') {
6691: $currquest = &digits_to_letters($currquest);
6692: }
6693: for (my $ans=0; $ans<$answers_needed; $ans++) {
6694: my $bubble = substr($currquest,$ans,1);
6695: $record->{"scantron.$ansnum.answer"} = $bubble;
6696: $ansnum++;
6697: }
6698: }
6699: return $ansnum;
6700: }
1.447 foxr 6701:
1.503 raeburn 6702: sub scantron_validator_positional {
6703: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
1.596.2.12.2. 6(raebur 6704:3): $whichline,$alphabet,$record,$scantron_config,$scan_data,
6705:3): $randomorder,$randompick,$respnumlookup) = @_;
1.447 foxr 6706:
1.503 raeburn 6707: # Otherwise there's a positional notation;
6708: # each bubble line requires Qlength items, and there are filled in
6709: # bubbles for each case where there 'Qon' characters.
6710: #
1.447 foxr 6711:
1.503 raeburn 6712: my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447 foxr 6713:
1.503 raeburn 6714: # If the split only gives us one element.. the full length of the
6715: # answer string, no bubbles are filled in:
1.447 foxr 6716:
1.507 raeburn 6717: if ($answers_needed eq '') {
6718: return;
6719: }
6720:
1.503 raeburn 6721: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
6722: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
6723: $record->{"scantron.$ansnum.answer"}='';
6724: $ansnum++;
6725: }
6726: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
6727: push(@{$record->{"scantron.missingerror"}},$quest_id);
6728: }
6729: } elsif (scalar(@array) == 2) {
6730: my $location = length($array[0]);
6731: my $line_num = int($location / $$scantron_config{'Qlength'});
6732: my $bubble = $alphabet->[$location % $$scantron_config{'Qlength'}];
6733: for (my $ans=0; $ans<$answers_needed; $ans++) {
6734: if ($ans eq $line_num) {
6735: $record->{"scantron.$ansnum.answer"} = $bubble;
6736: } else {
6737: $record->{"scantron.$ansnum.answer"} = ' ';
6738: }
6739: $ansnum++;
6740: }
6741: } else {
6742: # If there's more than one instance of a bubble character
6743: # That's a double bubble; with positional notation we can
6744: # record all the bubbles filled in as well as the
6745: # fact this response consists of multiple bubbles.
6746: #
1.596.2.12.2. 6(raebur 6747:3): my $responsenum = $questnum-1;
6748:3): if (($randompick || $randomorder) && (ref($respnumlookup) eq 'HASH')) {
6749:3): $responsenum = $respnumlookup->{$questnum-1}
6750:3): }
6751:3): if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
6752:3): ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
6753:3): ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
6754:3): ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
6755:3): ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
6756:3): ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
1.503 raeburn 6757: my $doubleerror = 0;
6758: while (($currquest >= $$scantron_config{'Qlength'}) &&
6759: (!$doubleerror)) {
6760: my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
6761: $currquest = substr($currquest,$$scantron_config{'Qlength'});
6762: my @currarray = split($$scantron_config{'Qon'},$currline,-1);
6763: if (length(@currarray) > 2) {
6764: $doubleerror = 1;
6765: }
6766: }
6767: if ($doubleerror) {
6768: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6769: }
6770: } else {
6771: push(@{$record->{'scantron.doubleerror'}},$quest_id);
6772: }
6773: my $item = $ansnum;
6774: for (my $ans=0; $ans<$answers_needed; $ans++) {
6775: $record->{"scantron.$item.answer"} = '';
6776: $item ++;
6777: }
1.447 foxr 6778:
1.503 raeburn 6779: my @ans=@array;
6780: my $i=0;
6781: my $increment = 0;
6782: while ($#ans) {
6783: $i+=length($ans[0]) + $increment;
6784: my $line = int($i/$$scantron_config{'Qlength'} + $ansnum);
6785: my $bubble = $i%$$scantron_config{'Qlength'};
6786: $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
6787: shift(@ans);
6788: $increment = 1;
6789: }
6790: $ansnum += $answers_needed;
1.82 albertel 6791: }
1.503 raeburn 6792: return $ansnum;
1.82 albertel 6793: }
6794:
1.423 albertel 6795: =pod
6796:
6797: =item scantron_add_delay
6798:
6799: Adds an error message that occurred during the grading phase to a
6800: queue of messages to be shown after grading pass is complete
6801:
6802: Arguments:
1.424 albertel 6803: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 6804: $scanline - the scanline that caused the error
6805: $errormesage - the error message
6806: $errorcode - a numeric code for the error
6807:
6808: Side Effects:
1.424 albertel 6809: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 6810:
6811: =cut
6812:
1.82 albertel 6813: sub scantron_add_delay {
1.140 albertel 6814: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
6815: push(@$delayqueue,
6816: {'line' => $scanline, 'emsg' => $errormessage,
6817: 'ecode' => $errorcode }
6818: );
1.82 albertel 6819: }
6820:
1.423 albertel 6821: =pod
6822:
6823: =item scantron_find_student
6824:
1.424 albertel 6825: Finds the username for the current scanline
6826:
6827: Arguments:
6828: $scantron_record - hash result from scantron_parse_scanline
6829: $scan_data - hash of correction information
6830: (see &scantron_getfile() form more information)
6831: $idmap - hash from &username_to_idmap()
6832: $line - number of current scanline
6833:
6834: Returns:
6835: Either 'username:domain' or undef if unknown
6836:
1.423 albertel 6837: =cut
6838:
1.82 albertel 6839: sub scantron_find_student {
1.157 albertel 6840: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 6841: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 6842: if ($scanID =~ /^\s*$/) {
6843: return &scan_data($scan_data,"$line.user");
6844: }
1.83 albertel 6845: foreach my $id (keys(%$idmap)) {
1.157 albertel 6846: if (lc($id) eq lc($scanID)) {
6847: return $$idmap{$id};
6848: }
1.83 albertel 6849: }
6850: return undef;
6851: }
6852:
1.423 albertel 6853: =pod
6854:
6855: =item scantron_filter
6856:
1.424 albertel 6857: Filter sub for lonnavmaps, filters out hidden resources if ignore
6858: hidden resources was selected
6859:
1.423 albertel 6860: =cut
6861:
1.83 albertel 6862: sub scantron_filter {
6863: my ($curres)=@_;
1.331 albertel 6864:
6865: if (ref($curres) && $curres->is_problem()) {
6866: # if the user has asked to not have either hidden
6867: # or 'randomout' controlled resources to be graded
6868: # don't include them
6869: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6870: && $curres->randomout) {
6871: return 0;
6872: }
1.83 albertel 6873: return 1;
6874: }
6875: return 0;
1.82 albertel 6876: }
6877:
1.423 albertel 6878: =pod
6879:
6880: =item scantron_process_corrections
6881:
1.424 albertel 6882: Gets correction information out of submitted form data and corrects
6883: the scanline
6884:
1.423 albertel 6885: =cut
6886:
1.157 albertel 6887: sub scantron_process_corrections {
6888: my ($r) = @_;
1.257 albertel 6889: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6890: my ($scanlines,$scan_data)=&scantron_getfile();
6891: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 6892: my $which=$env{'form.scantron_line'};
1.200 albertel 6893: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 6894: my ($skip,$err,$errmsg);
1.257 albertel 6895: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 6896: $skip=1;
1.257 albertel 6897: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
6898: my $newstudent=$env{'form.scantron_username'}.':'.
6899: $env{'form.scantron_domain'};
1.157 albertel 6900: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
6901: ($line,$err,$errmsg)=
6902: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
6903: 'ID',{'newid'=>$newid,
1.257 albertel 6904: 'username'=>$env{'form.scantron_username'},
6905: 'domain'=>$env{'form.scantron_domain'}});
6906: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
6907: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 6908: my $newCODE;
1.192 albertel 6909: my %args;
1.190 albertel 6910: if ($resolution eq 'use_unfound') {
1.191 albertel 6911: $newCODE='use_unfound';
1.190 albertel 6912: } elsif ($resolution eq 'use_found') {
1.257 albertel 6913: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 6914: } elsif ($resolution eq 'use_typed') {
1.257 albertel 6915: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 6916: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 6917: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 6918: }
1.257 albertel 6919: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 6920: $args{'CODE_ignore_dup'}=1;
6921: }
6922: $args{'CODE'}=$newCODE;
1.186 albertel 6923: ($line,$err,$errmsg)=
6924: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 6925: 'CODE',\%args);
1.257 albertel 6926: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
6927: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 6928: ($line,$err,$errmsg)=
6929: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
6930: $which,'answer',
6931: { 'question'=>$question,
1.503 raeburn 6932: 'response'=>$env{"form.scantron_correct_Q_$question"},
6933: 'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157 albertel 6934: if ($err) { last; }
6935: }
6936: }
6937: if ($err) {
1.596.2.12.2. 0(raebur 6938:3): $r->print(
6939:3): '<p class="LC_error">'
6940:3): .&mt('Unable to accept last correction, an error occurred: [_1]',
6941:3): $errmsg)
1(raebur 6942:3): .'</p>');
1.157 albertel 6943: } else {
1.200 albertel 6944: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 6945: &scantron_putfile($scanlines,$scan_data);
6946: }
6947: }
6948:
1.423 albertel 6949: =pod
6950:
6951: =item reset_skipping_status
6952:
1.424 albertel 6953: Forgets the current set of remember skipped scanlines (and thus
6954: reverts back to considering all lines in the
6955: scantron_skipped_<filename> file)
6956:
1.423 albertel 6957: =cut
6958:
1.200 albertel 6959: sub reset_skipping_status {
6960: my ($scanlines,$scan_data)=&scantron_getfile();
6961: &scan_data($scan_data,'remember_skipping',undef,1);
6962: &scantron_putfile(undef,$scan_data);
6963: }
6964:
1.423 albertel 6965: =pod
6966:
6967: =item start_skipping
6968:
1.424 albertel 6969: Marks a scanline to be skipped.
6970:
1.423 albertel 6971: =cut
6972:
1.376 albertel 6973: sub start_skipping {
1.200 albertel 6974: my ($scan_data,$i)=@_;
6975: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 6976: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
6977: $remembered{$i}=2;
6978: } else {
6979: $remembered{$i}=1;
6980: }
1.200 albertel 6981: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
6982: }
6983:
1.423 albertel 6984: =pod
6985:
6986: =item should_be_skipped
6987:
1.424 albertel 6988: Checks whether a scanline should be skipped.
6989:
1.423 albertel 6990: =cut
6991:
1.200 albertel 6992: sub should_be_skipped {
1.376 albertel 6993: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 6994: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 6995: # not redoing old skips
1.376 albertel 6996: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 6997: return 0;
6998: }
6999: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 7000:
7001: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
7002: return 0;
7003: }
1.200 albertel 7004: return 1;
7005: }
7006:
1.423 albertel 7007: =pod
7008:
7009: =item remember_current_skipped
7010:
1.424 albertel 7011: Discovers what scanlines are in the scantron_skipped_<filename>
7012: file and remembers them into scan_data for later use.
7013:
1.423 albertel 7014: =cut
7015:
1.200 albertel 7016: sub remember_current_skipped {
7017: my ($scanlines,$scan_data)=&scantron_getfile();
7018: my %to_remember;
7019: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
7020: if ($scanlines->{'skipped'}[$i]) {
7021: $to_remember{$i}=1;
7022: }
7023: }
1.376 albertel 7024:
1.200 albertel 7025: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
7026: &scantron_putfile(undef,$scan_data);
7027: }
7028:
1.423 albertel 7029: =pod
7030:
7031: =item check_for_error
7032:
1.424 albertel 7033: Checks if there was an error when attempting to remove a specific
1.596.2.6 raeburn 7034: scantron_.. bubblesheet data file. Prints out an error if
1.424 albertel 7035: something went wrong.
7036:
1.423 albertel 7037: =cut
7038:
1.200 albertel 7039: sub check_for_error {
7040: my ($r,$result)=@_;
7041: if ($result ne 'ok' && $result ne 'not_found' ) {
1.492 albertel 7042: $r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200 albertel 7043: }
7044: }
1.157 albertel 7045:
1.423 albertel 7046: =pod
7047:
7048: =item scantron_warning_screen
7049:
1.424 albertel 7050: Interstitial screen to make sure the operator has selected the
7051: correct options before we start the validation phase.
7052:
1.423 albertel 7053: =cut
7054:
1.203 albertel 7055: sub scantron_warning_screen {
7056: my ($button_text)=@_;
1.257 albertel 7057: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 7058: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 7059: my $CODElist;
1.284 albertel 7060: if ($scantron_config{'CODElocation'} &&
7061: $scantron_config{'CODEstart'} &&
7062: $scantron_config{'CODElength'}) {
7063: $CODElist=$env{'form.scantron_CODElist'};
1.596.2.12.2. 8(raebur 7064:4): if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">'.&mt('None').'</span>'; }
1.284 albertel 7065: $CODElist=
1.492 albertel 7066: '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373 albertel 7067: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 7068: }
1.596.2.12.2. (raeburn 7069:): my $lastbubblepoints;
7070:): if ($env{'form.scantron_lastbubblepoints'} ne '') {
7071:): $lastbubblepoints =
7072:): '<tr><td><b>'.&mt('Hand-graded items: points from last bubble in row').'</b></td><td><tt>'.
7073:): $env{'form.scantron_lastbubblepoints'}.'</tt></td></tr>';
7074:): }
1.492 albertel 7075: return ('
1.203 albertel 7076: <p>
1.492 albertel 7077: <span class="LC_warning">
1.596.2.12.2. 6(raebur 7078:3): '.&mt("Please double check the information below before clicking on '[_1]'",&mt($button_text)).'</span>
1.203 albertel 7079: </p>
7080: <table>
1.492 albertel 7081: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
7082: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
1.596.2.12.2. (raeburn 7083:): '.$CODElist.$lastbubblepoints.'
1.203 albertel 7084: </table>
7085: <br />
1.596.2.12.2. 2(raebur 7086:2): <p> '.&mt("If this information is correct, please click on '[_1]'.",&mt($button_text)).'</p>
7087:2): <p> '.&mt("If something is incorrect, please click the 'Grading Menu' button to start over.").'</p>
1.203 albertel 7088:
7089: <br />
1.492 albertel 7090: ');
1.203 albertel 7091: }
7092:
1.423 albertel 7093: =pod
7094:
7095: =item scantron_do_warning
7096:
1.424 albertel 7097: Check if the operator has picked something for all required
7098: fields. Error out if something is missing.
7099:
1.423 albertel 7100: =cut
7101:
1.203 albertel 7102: sub scantron_do_warning {
7103: my ($r)=@_;
1.324 albertel 7104: my ($symb)=&get_symb($r);
1.203 albertel 7105: if (!$symb) {return '';}
1.324 albertel 7106: my $default_form_data=&defaultFormData($symb);
1.203 albertel 7107: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 7108: if ( $env{'form.selectpage'} eq '' ||
7109: $env{'form.scantron_selectfile'} eq '' ||
7110: $env{'form.scantron_format'} eq '' ) {
1.596.2.4 raeburn 7111: $r->print("<p>".&mt('You have forgotten to specify some information. Please go Back and try again.')."</p>");
1.257 albertel 7112: if ( $env{'form.selectpage'} eq '') {
1.492 albertel 7113: $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237 albertel 7114: }
1.257 albertel 7115: if ( $env{'form.scantron_selectfile'} eq '') {
1.596.2.4 raeburn 7116: $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 7117: }
1.257 albertel 7118: if ( $env{'form.scantron_format'} eq '') {
1.596.2.5 raeburn 7119: $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 7120: }
7121: } else {
1.265 www 7122: my $warning=&scantron_warning_screen('Grading: Validate Records');
1.596.2.12.2. (raeburn 7123:): my $bubbledbyhand=&hand_bubble_option();
1.492 albertel 7124: $r->print('
1.596.2.12.2. (raeburn 7125:): '.$warning.$bubbledbyhand.'
1.492 albertel 7126: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203 albertel 7127: <input type="hidden" name="command" value="scantron_validate" />
1.492 albertel 7128: ');
1.237 albertel 7129: }
1.352 albertel 7130: $r->print("</form><br />".&show_grading_menu_form($symb));
1.203 albertel 7131: return '';
7132: }
7133:
1.423 albertel 7134: =pod
7135:
7136: =item scantron_form_start
7137:
1.424 albertel 7138: html hidden input for remembering all selected grading options
7139:
1.423 albertel 7140: =cut
7141:
1.203 albertel 7142: sub scantron_form_start {
7143: my ($max_bubble)=@_;
7144: my $result= <<SCANTRONFORM;
7145: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 7146: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
7147: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
7148: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 7149: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 7150: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
7151: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
7152: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
7153: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 7154: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 7155: SCANTRONFORM
1.447 foxr 7156:
7157: my $line = 0;
7158: while (defined($env{"form.scantron.bubblelines.$line"})) {
7159: my $chunk =
7160: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 7161: $chunk .=
7162: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503 raeburn 7163: $chunk .=
7164: '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504 raeburn 7165: $chunk .=
7166: '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.596.2.12.2. 6(raebur 7167:3): $chunk .=
7168:3): '<input type="hidden" name="scantron.residpart.'.$line.'" value="'.$env{"form.scantron.residpart.$line"}.'" />'."\n";
1.447 foxr 7169: $result .= $chunk;
7170: $line++;
1.596.2.12.2. 6(raebur 7171:3): }
1.203 albertel 7172: return $result;
7173: }
7174:
1.423 albertel 7175: =pod
7176:
7177: =item scantron_validate_file
7178:
1.596.2.6 raeburn 7179: Dispatch routine for doing validation of a bubblesheet data file.
1.424 albertel 7180:
7181: Also processes any necessary information resets that need to
7182: occur before validation begins (ignore previous corrections,
7183: restarting the skipped records processing)
7184:
1.423 albertel 7185: =cut
7186:
1.157 albertel 7187: sub scantron_validate_file {
7188: my ($r) = @_;
1.324 albertel 7189: my ($symb)=&get_symb($r);
1.157 albertel 7190: if (!$symb) {return '';}
1.324 albertel 7191: my $default_form_data=&defaultFormData($symb);
1.200 albertel 7192:
1.596.2.12.2. 0(raebur 7193:3): # do the detection of only doing skipped records first before we delete
1.424 albertel 7194: # them when doing the corrections reset
1.257 albertel 7195: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 7196: &reset_skipping_status();
7197: }
1.257 albertel 7198: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 7199: &remember_current_skipped();
1.257 albertel 7200: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 7201: }
7202:
1.257 albertel 7203: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 7204: &check_for_error($r,&scantron_remove_file('corrected'));
7205: &check_for_error($r,&scantron_remove_file('skipped'));
7206: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 7207: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 7208: }
1.200 albertel 7209:
1.257 albertel 7210: if ($env{'form.scantron_corrections'}) {
1.157 albertel 7211: &scantron_process_corrections($r);
7212: }
1.503 raeburn 7213: $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157 albertel 7214: #get the student pick code ready
7215: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.582 raeburn 7216: my $nav_error;
1.596.2.12.2. (raeburn 7217:): my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
7218:): my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 7219: if ($nav_error) {
7220: $r->print(&navmap_errormsg());
7221: return '';
7222: }
1.203 albertel 7223: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.596.2.12.2. (raeburn 7224:): if ($env{'form.scantron_lastbubblepoints'} ne '') {
7225:): $result .= '<input type="hidden" name="scantron_lastbubblepoints" value="'.$env{'form.scantron_lastbubblepoints'}.'" />';
7226:): }
1.157 albertel 7227: $r->print($result);
7228:
1.334 albertel 7229: my @validate_phases=( 'sequence',
7230: 'ID',
1.157 albertel 7231: 'CODE',
7232: 'doublebubble',
7233: 'missingbubbles');
1.257 albertel 7234: if (!$env{'form.validatepass'}) {
7235: $env{'form.validatepass'} = 0;
1.157 albertel 7236: }
1.257 albertel 7237: my $currentphase=$env{'form.validatepass'};
1.157 albertel 7238:
1.448 foxr 7239:
1.157 albertel 7240: my $stop=0;
7241: while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503 raeburn 7242: $r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157 albertel 7243: $r->rflush();
1.596.2.12.2. 6(raebur 7244:3):
1.157 albertel 7245: my $which="scantron_validate_".$validate_phases[$currentphase];
7246: {
7247: no strict 'refs';
7248: ($stop,$currentphase)=&$which($r,$currentphase);
7249: }
7250: }
7251: if (!$stop) {
1.203 albertel 7252: my $warning=&scantron_warning_screen('Start Grading');
1.542 raeburn 7253: $r->print(&mt('Validation process complete.').'<br />'.
7254: $warning.
7255: &mt('Perform verification for each student after storage of submissions?').
7256: ' <span class="LC_nobreak"><label>'.
7257: '<input type="radio" name="verifyrecord" value="1" />'.&mt('Yes').'</label>'.
7258: (' 'x3).'<label>'.
7259: '<input type="radio" name="verifyrecord" value="0" checked="checked" />'.&mt('No').
7260: '</label></span><br />'.
7261: &mt('Grading will take longer if you use verification.').'<br />'.
1.572 www 7262: &mt("Alternatively, the 'Review bubblesheet data' utility (see grading menu) can be used for all students after grading is complete.").'<br /><br />'.
1.542 raeburn 7263: '<input type="submit" name="submit" value="'.&mt('Start Grading').'" />'.
7264: '<input type="hidden" name="command" value="scantron_process" />'."\n");
1.157 albertel 7265: } else {
7266: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
7267: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
7268: }
7269: if ($stop) {
1.334 albertel 7270: if ($validate_phases[$currentphase] eq 'sequence') {
1.539 riegler 7271: $r->print('<input type="submit" name="submit" value="'.&mt('Ignore').' → " />');
1.492 albertel 7272: $r->print(' '.&mt('this error').' <br />');
1.334 albertel 7273:
1.492 albertel 7274: $r->print(" <p>".&mt("Or click the 'Grading Menu' button to start over.")."</p>");
1.334 albertel 7275: } else {
1.503 raeburn 7276: if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
1.539 riegler 7277: $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue').' →" onclick="javascript:verify_bubble_radio(this.form)" />');
1.503 raeburn 7278: } else {
1.539 riegler 7279: $r->print('<input type="submit" name="submit" value="'.&mt('Continue').' →" />');
1.503 raeburn 7280: }
1.492 albertel 7281: $r->print(' '.&mt('using corrected info').' <br />');
7282: $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
7283: $r->print(" ".&mt("this scanline saving it for later."));
1.334 albertel 7284: }
1.157 albertel 7285: }
1.352 albertel 7286: $r->print(" </form><br />".&show_grading_menu_form($symb));
1.157 albertel 7287: return '';
7288: }
7289:
1.423 albertel 7290:
7291: =pod
7292:
7293: =item scantron_remove_file
7294:
1.596.2.6 raeburn 7295: Removes the requested bubblesheet data file, makes sure that
1.424 albertel 7296: scantron_original_<filename> is never removed
7297:
7298:
1.423 albertel 7299: =cut
7300:
1.200 albertel 7301: sub scantron_remove_file {
1.192 albertel 7302: my ($which)=@_;
1.257 albertel 7303: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7304: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 7305: my $file='scantron_';
1.200 albertel 7306: if ($which eq 'corrected' || $which eq 'skipped') {
7307: $file.=$which.'_';
1.192 albertel 7308: } else {
7309: return 'refused';
7310: }
1.257 albertel 7311: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 7312: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
7313: }
7314:
1.423 albertel 7315:
7316: =pod
7317:
7318: =item scantron_remove_scan_data
7319:
1.596.2.6 raeburn 7320: Removes all scan_data correction for the requested bubblesheet
1.424 albertel 7321: data file. (In the case that both the are doing skipped records we need
7322: to remember the old skipped lines for the time being so that element
7323: persists for a while.)
7324:
1.423 albertel 7325: =cut
7326:
1.200 albertel 7327: sub scantron_remove_scan_data {
1.257 albertel 7328: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7329: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 7330: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
7331: my @todelete;
1.257 albertel 7332: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 7333: foreach my $key (@keys) {
7334: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 7335: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 7336: $key=~/remember_skipping/) {
7337: next;
7338: }
1.192 albertel 7339: push(@todelete,$key);
7340: }
7341: }
1.200 albertel 7342: my $result;
1.192 albertel 7343: if (@todelete) {
1.491 albertel 7344: $result = &Apache::lonnet::del('nohist_scantrondata',
7345: \@todelete,$cdom,$cname);
7346: } else {
7347: $result = 'ok';
1.192 albertel 7348: }
7349: return $result;
7350: }
7351:
1.423 albertel 7352:
7353: =pod
7354:
7355: =item scantron_getfile
7356:
1.596.2.6 raeburn 7357: Fetches the requested bubblesheet data file (all 3 versions), and
1.424 albertel 7358: the scan_data hash
7359:
7360: Arguments:
7361: None
7362:
7363: Returns:
7364: 2 hash references
7365:
7366: - first one has
7367: orig -
7368: corrected -
7369: skipped - each of which points to an array ref of the specified
7370: file broken up into individual lines
7371: count - number of scanlines
7372:
7373: - second is the scan_data hash possible keys are
1.425 albertel 7374: ($number refers to scanline numbered $number and thus the key affects
7375: only that scanline
7376: $bubline refers to the specific bubble line element and the aspects
7377: refers to that specific bubble line element)
7378:
7379: $number.user - username:domain to use
7380: $number.CODE_ignore_dup
7381: - ignore the duplicate CODE error
7382: $number.useCODE
7383: - use the CODE in the scanline as is
7384: $number.no_bubble.$bubline
7385: - it is valid that there is no bubbled in bubble
7386: at $number $bubline
7387: remember_skipping
7388: - a frozen hash containing keys of $number and values
7389: of either
7390: 1 - we are on a 'do skipped records pass' and plan
7391: on processing this line
7392: 2 - we are on a 'do skipped records pass' and this
7393: scanline has been marked to skip yet again
1.424 albertel 7394:
1.423 albertel 7395: =cut
7396:
1.157 albertel 7397: sub scantron_getfile {
1.200 albertel 7398: #FIXME really would prefer a scantron directory
1.257 albertel 7399: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7400: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 7401: my $lines;
7402: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7403: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 7404: my %scanlines;
7405: $scanlines{'orig'}=[(split("\n",$lines,-1))];
7406: my $temp=$scanlines{'orig'};
7407: $scanlines{'count'}=$#$temp;
7408:
7409: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7410: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 7411: if ($lines eq '-1') {
7412: $scanlines{'corrected'}=[];
7413: } else {
7414: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
7415: }
7416: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 7417: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 7418: if ($lines eq '-1') {
7419: $scanlines{'skipped'}=[];
7420: } else {
7421: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
7422: }
1.175 albertel 7423: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 7424: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
7425: my %scan_data = @tmp;
7426: return (\%scanlines,\%scan_data);
7427: }
7428:
1.423 albertel 7429: =pod
7430:
7431: =item lonnet_putfile
7432:
1.424 albertel 7433: Wrapper routine to call &Apache::lonnet::finishuserfileupload
7434:
7435: Arguments:
7436: $contents - data to store
7437: $filename - filename to store $contents into
7438:
7439: Returns:
7440: result value from &Apache::lonnet::finishuserfileupload
7441:
1.423 albertel 7442: =cut
7443:
1.157 albertel 7444: sub lonnet_putfile {
7445: my ($contents,$filename)=@_;
1.257 albertel 7446: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
7447: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7448: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 7449: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 7450:
7451: }
7452:
1.423 albertel 7453: =pod
7454:
7455: =item scantron_putfile
7456:
1.596.2.6 raeburn 7457: Stores the current version of the bubblesheet data files, and the
1.424 albertel 7458: scan_data hash. (Does not modify the original version only the
7459: corrected and skipped versions.
7460:
7461: Arguments:
7462: $scanlines - hash ref that looks like the first return value from
7463: &scantron_getfile()
7464: $scan_data - hash ref that looks like the second return value from
7465: &scantron_getfile()
7466:
1.423 albertel 7467: =cut
7468:
1.157 albertel 7469: sub scantron_putfile {
7470: my ($scanlines,$scan_data) = @_;
1.200 albertel 7471: #FIXME really would prefer a scantron directory
1.257 albertel 7472: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7473: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 7474: if ($scanlines) {
7475: my $prefix='scantron_';
1.157 albertel 7476: # no need to update orig, shouldn't change
7477: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 7478: # $env{'form.scantron_selectfile'});
1.200 albertel 7479: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
7480: $prefix.'corrected_'.
1.257 albertel 7481: $env{'form.scantron_selectfile'});
1.200 albertel 7482: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
7483: $prefix.'skipped_'.
1.257 albertel 7484: $env{'form.scantron_selectfile'});
1.200 albertel 7485: }
1.175 albertel 7486: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 7487: }
7488:
1.423 albertel 7489: =pod
7490:
7491: =item scantron_get_line
7492:
1.424 albertel 7493: Returns the correct version of the scanline
7494:
7495: Arguments:
7496: $scanlines - hash ref that looks like the first return value from
7497: &scantron_getfile()
7498: $scan_data - hash ref that looks like the second return value from
7499: &scantron_getfile()
7500: $i - number of the requested line (starts at 0)
7501:
7502: Returns:
7503: A scanline, (either the original or the corrected one if it
7504: exists), or undef if the requested scanline should be
7505: skipped. (Either because it's an skipped scanline, or it's an
7506: unskipped scanline and we are not doing a 'do skipped scanlines'
7507: pass.
7508:
1.423 albertel 7509: =cut
7510:
1.157 albertel 7511: sub scantron_get_line {
1.200 albertel 7512: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 7513: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
7514: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 7515: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
7516: return $scanlines->{'orig'}[$i];
7517: }
7518:
1.423 albertel 7519: =pod
7520:
7521: =item scantron_todo_count
7522:
1.424 albertel 7523: Counts the number of scanlines that need processing.
7524:
7525: Arguments:
7526: $scanlines - hash ref that looks like the first return value from
7527: &scantron_getfile()
7528: $scan_data - hash ref that looks like the second return value from
7529: &scantron_getfile()
7530:
7531: Returns:
7532: $count - number of scanlines to process
7533:
1.423 albertel 7534: =cut
7535:
1.200 albertel 7536: sub get_todo_count {
7537: my ($scanlines,$scan_data)=@_;
7538: my $count=0;
7539: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
7540: my $line=&scantron_get_line($scanlines,$scan_data,$i);
7541: if ($line=~/^[\s\cz]*$/) { next; }
7542: $count++;
7543: }
7544: return $count;
7545: }
7546:
1.423 albertel 7547: =pod
7548:
7549: =item scantron_put_line
7550:
1.596.2.6 raeburn 7551: Updates the 'corrected' or 'skipped' versions of the bubblesheet
1.424 albertel 7552: data file.
7553:
7554: Arguments:
7555: $scanlines - hash ref that looks like the first return value from
7556: &scantron_getfile()
7557: $scan_data - hash ref that looks like the second return value from
7558: &scantron_getfile()
7559: $i - line number to update
7560: $newline - contents of the updated scanline
7561: $skip - if true make the line for skipping and update the
7562: 'skipped' file
7563:
1.423 albertel 7564: =cut
7565:
1.157 albertel 7566: sub scantron_put_line {
1.200 albertel 7567: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 7568: if ($skip) {
7569: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 7570: &start_skipping($scan_data,$i);
1.157 albertel 7571: return;
7572: }
7573: $scanlines->{'corrected'}[$i]=$newline;
7574: }
7575:
1.423 albertel 7576: =pod
7577:
7578: =item scantron_clear_skip
7579:
1.424 albertel 7580: Remove a line from the 'skipped' file
7581:
7582: Arguments:
7583: $scanlines - hash ref that looks like the first return value from
7584: &scantron_getfile()
7585: $scan_data - hash ref that looks like the second return value from
7586: &scantron_getfile()
7587: $i - line number to update
7588:
1.423 albertel 7589: =cut
7590:
1.376 albertel 7591: sub scantron_clear_skip {
7592: my ($scanlines,$scan_data,$i)=@_;
7593: if (exists($scanlines->{'skipped'}[$i])) {
7594: undef($scanlines->{'skipped'}[$i]);
7595: return 1;
7596: }
7597: return 0;
7598: }
7599:
1.423 albertel 7600: =pod
7601:
7602: =item scantron_filter_not_exam
7603:
1.424 albertel 7604: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
7605: filter out resources that are not marked as 'exam' mode
7606:
1.423 albertel 7607: =cut
7608:
1.334 albertel 7609: sub scantron_filter_not_exam {
7610: my ($curres)=@_;
7611:
7612: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
7613: # if the user has asked to not have either hidden
7614: # or 'randomout' controlled resources to be graded
7615: # don't include them
7616: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
7617: && $curres->randomout) {
7618: return 0;
7619: }
7620: return 1;
7621: }
7622: return 0;
7623: }
7624:
1.423 albertel 7625: =pod
7626:
7627: =item scantron_validate_sequence
7628:
1.424 albertel 7629: Validates the selected sequence, checking for resource that are
7630: not set to exam mode.
7631:
1.423 albertel 7632: =cut
7633:
1.334 albertel 7634: sub scantron_validate_sequence {
7635: my ($r,$currentphase) = @_;
7636:
7637: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 7638: unless (ref($navmap)) {
7639: $r->print(&navmap_errormsg());
7640: return (1,$currentphase);
7641: }
1.334 albertel 7642: my (undef,undef,$sequence)=
7643: &Apache::lonnet::decode_symb($env{'form.selectpage'});
7644:
7645: my $map=$navmap->getResourceByUrl($sequence);
7646:
7647: $r->print('<input type="hidden" name="validate_sequence_exam"
7648: value="ignore" />');
7649: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
7650: my @resources=
7651: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
7652: if (@resources) {
1.596.2.12.2. 0(raebur 7653:2): $r->print('<p class="LC_warning">'
7654:2): .&mt('Some resources in the sequence currently are not set to'
7655:2): .' exam mode. Grading these resources currently may not'
7656:2): .' work correctly.')
7657:2): .'</p>'
7658:2): );
1.334 albertel 7659: return (1,$currentphase);
7660: }
7661: }
7662:
7663: return (0,$currentphase+1);
7664: }
7665:
1.423 albertel 7666:
7667:
1.157 albertel 7668: sub scantron_validate_ID {
7669: my ($r,$currentphase) = @_;
7670:
7671: #get student info
7672: my $classlist=&Apache::loncoursedata::get_classlist();
7673: my %idmap=&username_to_idmap($classlist);
7674:
7675: #get scantron line setup
1.257 albertel 7676: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7677: my ($scanlines,$scan_data)=&scantron_getfile();
1.582 raeburn 7678:
7679: my $nav_error;
1.596.2.12.2. (raeburn 7680:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble_lines.. array.
1.582 raeburn 7681: if ($nav_error) {
7682: $r->print(&navmap_errormsg());
7683: return(1,$currentphase);
7684: }
1.157 albertel 7685:
7686: my %found=('ids'=>{},'usernames'=>{});
7687: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7688: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7689: if ($line=~/^[\s\cz]*$/) { next; }
7690: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7691: $scan_data);
7692: my $id=$$scan_record{'scantron.ID'};
7693: my $found;
7694: foreach my $checkid (keys(%idmap)) {
7695: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
7696: }
7697: if ($found) {
7698: my $username=$idmap{$found};
7699: if ($found{'ids'}{$found}) {
7700: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7701: $line,'duplicateID',$found);
1.194 albertel 7702: return(1,$currentphase);
1.157 albertel 7703: } elsif ($found{'usernames'}{$username}) {
7704: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7705: $line,'duplicateID',$username);
1.194 albertel 7706: return(1,$currentphase);
1.157 albertel 7707: }
1.186 albertel 7708: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 7709: $found{'ids'}{$found}++;
7710: $found{'usernames'}{$username}++;
7711: } else {
7712: if ($id =~ /^\s*$/) {
1.158 albertel 7713: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 7714: if (defined($username) && $found{'usernames'}{$username}) {
7715: &scantron_get_correction($r,$i,$scan_record,
7716: \%scantron_config,
7717: $line,'duplicateID',$username);
1.194 albertel 7718: return(1,$currentphase);
1.157 albertel 7719: } elsif (!defined($username)) {
7720: &scantron_get_correction($r,$i,$scan_record,
7721: \%scantron_config,
7722: $line,'incorrectID');
1.194 albertel 7723: return(1,$currentphase);
1.157 albertel 7724: }
7725: $found{'usernames'}{$username}++;
7726: } else {
7727: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7728: $line,'incorrectID');
1.194 albertel 7729: return(1,$currentphase);
1.157 albertel 7730: }
7731: }
7732: }
7733:
7734: return (0,$currentphase+1);
7735: }
7736:
1.423 albertel 7737:
1.157 albertel 7738: sub scantron_get_correction {
1.596.2.12.2. 6(raebur 7739:3): my ($r,$i,$scan_record,$scan_config,$line,$error,$arg,
7740:3): $randomorder,$randompick,$respnumlookup,$startline)=@_;
1.454 banghart 7741: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 7742: #to show both the current line and the previous one and allow skipping
7743: #the previous one or the current one
7744:
1.333 albertel 7745: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.596.2.6 raeburn 7746: $r->print(
7747: '<p class="LC_warning">'
7748: .&mt('An error was detected ([_1]) for PaperID [_2]',
7749: "<b>$error</b>",
7750: '<tt>'.$$scan_record{'scantron.PaperID'}.'</tt>')
7751: ."</p> \n");
1.157 albertel 7752: } else {
1.596.2.6 raeburn 7753: $r->print(
7754: '<p class="LC_warning">'
7755: .&mt('An error was detected ([_1]) in scanline [_2] [_3]',
7756: "<b>$error</b>", $i, "<pre>$line</pre>")
7757: ."</p> \n");
7758: }
7759: my $message =
7760: '<p>'
7761: .&mt('The ID on the form is [_1]',
7762: "<tt>$$scan_record{'scantron.ID'}</tt>")
7763: .'<br />'
1.596.2.12 raeburn 7764: .&mt('The name on the paper is [_1], [_2]',
1.596.2.6 raeburn 7765: $$scan_record{'scantron.LastName'},
7766: $$scan_record{'scantron.FirstName'})
7767: .'</p>';
1.242 albertel 7768:
1.157 albertel 7769: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
7770: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503 raeburn 7771: # Array populated for doublebubble or
7772: my @lines_to_correct; # missingbubble errors to build javascript
7773: # to validate radio button checking
7774:
1.157 albertel 7775: if ($error =~ /ID$/) {
1.186 albertel 7776: if ($error eq 'incorrectID') {
1.596.2.6 raeburn 7777: $r->print('<p class="LC_warning">'.&mt("The encoded ID is not in the classlist").
1.492 albertel 7778: "</p>\n");
1.157 albertel 7779: } elsif ($error eq 'duplicateID') {
1.596.2.6 raeburn 7780: $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 7781: }
1.242 albertel 7782: $r->print($message);
1.492 albertel 7783: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157 albertel 7784: $r->print("\n<ul><li> ");
7785: #FIXME it would be nice if this sent back the user ID and
7786: #could do partial userID matches
7787: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
7788: 'scantron_username','scantron_domain'));
7789: $r->print(": <input type='text' name='scantron_username' value='' />");
1.596.2.12.2. 3(raebur 7790:3): $r->print("\n:\n".
1.257 albertel 7791: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 7792:
7793: $r->print('</li>');
1.186 albertel 7794: } elsif ($error =~ /CODE$/) {
7795: if ($error eq 'incorrectCODE') {
1.596.2.6 raeburn 7796: $r->print('<p class="LC_warning">'.&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186 albertel 7797: } elsif ($error eq 'duplicateCODE') {
1.596.2.6 raeburn 7798: $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 7799: }
1.596.2.6 raeburn 7800: $r->print("<p>".&mt('The CODE on the form is [_1]',
7801: "<tt>'$$scan_record{'scantron.CODE'}'</tt>")
7802: ."</p>\n");
1.242 albertel 7803: $r->print($message);
1.596.2.6 raeburn 7804: $r->print("<p>".&mt("How should I handle this?")."</p>\n");
1.187 albertel 7805: $r->print("\n<br /> ");
1.194 albertel 7806: my $i=0;
1.273 albertel 7807: if ($error eq 'incorrectCODE'
7808: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 7809: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 7810: if ($closest > 0) {
7811: foreach my $testcode (@{$closest}) {
7812: my $checked='';
1.569 bisitz 7813: if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7814: $r->print("
7815: <label>
1.569 bisitz 7816: <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i'$checked />
1.492 albertel 7817: ".&mt("Use the similar CODE [_1] instead.",
7818: "<b><tt>".$testcode."</tt></b>")."
7819: </label>
7820: <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278 albertel 7821: $r->print("\n<br />");
7822: $i++;
7823: }
1.194 albertel 7824: }
7825: }
1.273 albertel 7826: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.569 bisitz 7827: my $checked; if (!$i) { $checked=' checked="checked"'; }
1.492 albertel 7828: $r->print("
7829: <label>
1.569 bisitz 7830: <input type='radio' name='scantron_CODE_resolution' value='use_unfound'$checked />
1.596.2.6 raeburn 7831: ".&mt("Use the CODE [_1] that was on the paper, ignoring the error.",
1.492 albertel 7832: "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
7833: </label>");
1.273 albertel 7834: $r->print("\n<br />");
7835: }
1.194 albertel 7836:
1.188 albertel 7837: $r->print(<<ENDSCRIPT);
7838: <script type="text/javascript">
7839: function change_radio(field) {
1.190 albertel 7840: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 7841: var i;
7842: for (i=0;i<slct.length;i++) {
7843: if (slct[i].value==field) { slct[i].checked=true; }
7844: }
7845: }
7846: </script>
7847: ENDSCRIPT
1.187 albertel 7848: my $href="/adm/pickcode?".
1.359 www 7849: "form=".&escape("scantronupload").
7850: "&scantron_format=".&escape($env{'form.scantron_format'}).
7851: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
7852: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
7853: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 7854: if ($env{'form.scantron_CODElist'} =~ /\S/) {
1.492 albertel 7855: $r->print("
7856: <label>
7857: <input type='radio' name='scantron_CODE_resolution' value='use_found' />
7858: ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
7859: "<a target='_blank' href='$href'>","</a>")."
7860: </label>
1.558 bisitz 7861: ".&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 7862: $r->print("\n<br />");
7863: }
1.492 albertel 7864: $r->print("
7865: <label>
7866: <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
7867: ".&mt("Use [_1] as the CODE.",
7868: "</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 7869: $r->print("\n<br /><br />");
1.157 albertel 7870: } elsif ($error eq 'doublebubble') {
1.596.2.6 raeburn 7871: $r->print('<p class="LC_warning">'.&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497 foxr 7872:
7873: # The form field scantron_questions is acutally a list of line numbers.
7874: # represented by this form so:
7875:
1.596.2.12.2. 6(raebur 7876:3): my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
7877:3): $respnumlookup,$startline);
1.497 foxr 7878:
1.157 albertel 7879: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7880: $line_list.'" />');
1.242 albertel 7881: $r->print($message);
1.492 albertel 7882: $r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157 albertel 7883: foreach my $question (@{$arg}) {
1.503 raeburn 7884: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
1.596.2.12.2. 6(raebur 7885:3): $scan_record, $error,
7886:3): $randomorder,$randompick,
7887:3): $respnumlookup,$startline);
1.524 raeburn 7888: push(@lines_to_correct,@linenums);
1.157 albertel 7889: }
1.503 raeburn 7890: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7891: } elsif ($error eq 'missingbubble') {
1.596.2.9 raeburn 7892: $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 7893: $r->print($message);
1.492 albertel 7894: $r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503 raeburn 7895: $r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497 foxr 7896:
1.503 raeburn 7897: # The form field scantron_questions is actually a list of line numbers not
1.497 foxr 7898: # a list of question numbers. Therefore:
7899: #
7900:
1.596.2.12.2. 6(raebur 7901:3): my $line_list = &questions_to_line_list($arg,$randomorder,$randompick,
7902:3): $respnumlookup,$startline);
1.497 foxr 7903:
1.157 albertel 7904: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 7905: $line_list.'" />');
1.157 albertel 7906: foreach my $question (@{$arg}) {
1.503 raeburn 7907: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
1.596.2.12.2. 6(raebur 7908:3): $scan_record, $error,
7909:3): $randomorder,$randompick,
7910:3): $respnumlookup,$startline);
1.524 raeburn 7911: push(@lines_to_correct,@linenums);
1.157 albertel 7912: }
1.503 raeburn 7913: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 7914: } else {
7915: $r->print("\n<ul>");
7916: }
7917: $r->print("\n</li></ul>");
1.497 foxr 7918: }
7919:
1.503 raeburn 7920: sub verify_bubbles_checked {
7921: my (@ansnums) = @_;
7922: my $ansnumstr = join('","',@ansnums);
7923: my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
1.596.2.12.2. 6(raebur 7924:6): &js_escape(\$warning);
1.503 raeburn 7925: my $output = (<<ENDSCRIPT);
7926: <script type="text/javascript">
7927: function verify_bubble_radio(form) {
7928: var ansnumArray = new Array ("$ansnumstr");
7929: var need_bubble_count = 0;
7930: for (var i=0; i<ansnumArray.length; i++) {
7931: if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
7932: var bubble_picked = 0;
7933: for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
7934: if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
7935: bubble_picked = 1;
7936: }
7937: }
7938: if (bubble_picked == 0) {
7939: need_bubble_count ++;
7940: }
7941: }
7942: }
7943: if (need_bubble_count) {
7944: alert("$warning");
7945: return;
7946: }
7947: form.submit();
7948: }
7949: </script>
7950: ENDSCRIPT
7951: return $output;
7952: }
7953:
1.497 foxr 7954: =pod
7955:
7956: =item questions_to_line_list
1.157 albertel 7957:
1.497 foxr 7958: Converts a list of questions into a string of comma separated
7959: line numbers in the answer sheet used by the questions. This is
7960: used to fill in the scantron_questions form field.
7961:
7962: Arguments:
7963: questions - Reference to an array of questions.
1.596.2.12.2. 6(raebur 7964:3): randomorder - True if randomorder in use.
7965:3): randompick - True if randompick in use.
7966:3): respnumlookup - Reference to HASH mapping question numbers in bubble lines
7967:3): for current line to question number used for same question
7968:3): in "Master Seqence" (as seen by Course Coordinator).
7969:3): startline - Reference to hash where key is question number (0 is first)
7970:3): and key is number of first bubble line for current student
7971:3): or code-based randompick and/or randomorder.
1.497 foxr 7972:
7973: =cut
7974:
7975:
7976: sub questions_to_line_list {
1.596.2.12.2. 6(raebur 7977:3): my ($questions,$randomorder,$randompick,$respnumlookup,$startline) = @_;
1.497 foxr 7978: my @lines;
7979:
1.503 raeburn 7980: foreach my $item (@{$questions}) {
7981: my $question = $item;
7982: my ($first,$count,$last);
7983: if ($item =~ /^(\d+)\.(\d+)$/) {
7984: $question = $1;
7985: my $subquestion = $2;
1.596.2.12.2. 6(raebur 7986:3): my $responsenum = $question-1;
7987:3): if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
7988:3): $responsenum = $respnumlookup->{$question-1};
7989:3): if (ref($startline) eq 'HASH') {
7990:3): $first = $startline->{$question-1} + 1;
7991:3): }
7992:3): } else {
7993:3): $first = $first_bubble_line{$responsenum} + 1;
7994:3): }
7(raebur 7995:3): my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.503 raeburn 7996: my $subcount = 1;
7997: while ($subcount<$subquestion) {
7998: $first += $subans[$subcount-1];
7999: $subcount ++;
8000: }
8001: $count = $subans[$subquestion-1];
8002: } else {
1.596.2.12.2. 7(raebur 8003:3): my $responsenum = $question-1;
8004:3): if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
8005:3): $responsenum = $respnumlookup->{$question-1};
8006:3): if (ref($startline) eq 'HASH') {
8007:3): $first = $startline->{$question-1} + 1;
8008:3): }
8009:3): } else {
8010:3): $first = $first_bubble_line{$responsenum} + 1;
8011:3): }
8012:3): $count = $bubble_lines_per_response{$responsenum};
1.503 raeburn 8013: }
1.506 raeburn 8014: $last = $first+$count-1;
1.503 raeburn 8015: push(@lines, ($first..$last));
1.497 foxr 8016: }
8017: return join(',', @lines);
8018: }
8019:
8020: =pod
8021:
8022: =item prompt_for_corrections
8023:
8024: Prompts for a potentially multiline correction to the
8025: user's bubbling (factors out common code from scantron_get_correction
8026: for multi and missing bubble cases).
8027:
8028: Arguments:
8029: $r - Apache request object.
8030: $question - The question number to prompt for.
8031: $scan_config - The scantron file configuration hash.
8032: $scan_record - Reference to the hash that has the the parsed scanlines.
1.503 raeburn 8033: $error - Type of error
1.596.2.12.2. 7(raebur 8034:3): $randomorder - True if randomorder in use.
8035:3): $randompick - True if randompick in use.
8036:3): $respnumlookup - Reference to HASH mapping question numbers in bubble lines
8037:3): for current line to question number used for same question
8038:3): in "Master Seqence" (as seen by Course Coordinator).
8039:3): $startline - Reference to hash where key is question number (0 is first)
8040:3): and value is number of first bubble line for current student
8041:3): or code-based randompick and/or randomorder.
1.497 foxr 8042:
8043: Implicit inputs:
8044: %bubble_lines_per_response - Starting line numbers for each question.
8045: Numbered from 0 (but question numbers are from
8046: 1.
8047: %first_bubble_line - Starting bubble line for each question.
1.509 raeburn 8048: %subdivided_bubble_lines - optionresponse, matchresponse and rankresponse
8049: type problems render as separate sub-questions,
1.503 raeburn 8050: in exam mode. This hash contains a
8051: comma-separated list of the lines per
8052: sub-question.
1.510 raeburn 8053: %responsetype_per_response - essayresponse, formularesponse,
8054: stringresponse, imageresponse, reactionresponse,
8055: and organicresponse type problem parts can have
1.503 raeburn 8056: multiple lines per response if the weight
8057: assigned exceeds 10. In this case, only
8058: one bubble per line is permitted, but more
8059: than one line might contain bubbles, e.g.
8060: bubbling of: line 1 - J, line 2 - J,
8061: line 3 - B would assign 22 points.
1.497 foxr 8062:
8063: =cut
8064:
8065: sub prompt_for_corrections {
1.596.2.12.2. 6(raebur 8066:3): my ($r, $question, $scan_config, $scan_record, $error, $randomorder,
8067:3): $randompick, $respnumlookup, $startline) = @_;
1.503 raeburn 8068: my ($current_line,$lines);
8069: my @linenums;
8070: my $questionnum = $question;
1.596.2.12.2. 6(raebur 8071:3): my ($first,$responsenum);
1.503 raeburn 8072: if ($question =~ /^(\d+)\.(\d+)$/) {
8073: $question = $1;
8074: my $subquestion = $2;
1.596.2.12.2. 6(raebur 8075:3): if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
8076:3): $responsenum = $respnumlookup->{$question-1};
8077:3): if (ref($startline) eq 'HASH') {
8078:3): $first = $startline->{$question-1};
8079:3): }
8080:3): } else {
8081:3): $responsenum = $question-1;
7(raebur 8082:4): $first = $first_bubble_line{$responsenum};
6(raebur 8083:3): }
8084:3): $current_line = $first + 1 ;
8085:3): my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
1.503 raeburn 8086: my $subcount = 1;
8087: while ($subcount<$subquestion) {
8088: $current_line += $subans[$subcount-1];
8089: $subcount ++;
8090: }
8091: $lines = $subans[$subquestion-1];
8092: } else {
1.596.2.12.2. 6(raebur 8093:3): if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH')) {
8094:3): $responsenum = $respnumlookup->{$question-1};
8095:3): if (ref($startline) eq 'HASH') {
8096:3): $first = $startline->{$question-1};
8097:3): }
8098:3): } else {
8099:3): $responsenum = $question-1;
8100:3): $first = $first_bubble_line{$responsenum};
8101:3): }
8102:3): $current_line = $first + 1;
8103:3): $lines = $bubble_lines_per_response{$responsenum};
1.503 raeburn 8104: }
1.497 foxr 8105: if ($lines > 1) {
1.503 raeburn 8106: $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
1.596.2.12.2. 6(raebur 8107:3): if (($responsetype_per_response{$responsenum} eq 'essayresponse') ||
8108:3): ($responsetype_per_response{$responsenum} eq 'formularesponse') ||
8109:3): ($responsetype_per_response{$responsenum} eq 'stringresponse') ||
8110:3): ($responsetype_per_response{$responsenum} eq 'imageresponse') ||
8111:3): ($responsetype_per_response{$responsenum} eq 'reactionresponse') ||
8112:3): ($responsetype_per_response{$responsenum} eq 'organicresponse')) {
4(raebur 8113:3): $r->print(&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).'<br /><br />'.&mt('A non-zero score can be assigned to the student during bubblesheet grading by selecting a bubble in at least one line.').'<br />'.&mt('The score for this question will be a sum of the numeric values for the selected bubbles from each line, where A=1 point, B=2 points etc.').'<br />'.&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.").'<br /><br />');
1.503 raeburn 8114: } else {
8115: $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
8116: }
1.497 foxr 8117: }
8118: for (my $i =0; $i < $lines; $i++) {
1.503 raeburn 8119: my $selected = $$scan_record{"scantron.$current_line.answer"};
1.596.2.12.2. 6(raebur 8120:3): &scantron_bubble_selector($r,$scan_config,$current_line,
1.503 raeburn 8121: $questionnum,$error,split('', $selected));
1.524 raeburn 8122: push(@linenums,$current_line);
1.497 foxr 8123: $current_line++;
8124: }
8125: if ($lines > 1) {
8126: $r->print("<hr /><br />");
8127: }
1.503 raeburn 8128: return @linenums;
1.157 albertel 8129: }
1.423 albertel 8130:
8131: =pod
8132:
8133: =item scantron_bubble_selector
8134:
8135: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 8136: possibly showing the existing the selected bubbles if known
1.423 albertel 8137:
8138: Arguments:
8139: $r - Apache request object
8140: $scan_config - hash from &get_scantron_config()
1.497 foxr 8141: $line - Number of the line being displayed.
1.503 raeburn 8142: $questionnum - Question number (may include subquestion)
8143: $error - Type of error.
1.497 foxr 8144: @selected - Array of bubbles picked on this line.
1.423 albertel 8145:
8146: =cut
8147:
1.157 albertel 8148: sub scantron_bubble_selector {
1.503 raeburn 8149: my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157 albertel 8150: my $max=$$scan_config{'Qlength'};
1.274 albertel 8151:
8152: my $scmode=$$scan_config{'Qon'};
1.596.2.12.2. (raeburn 8153:): if ($scmode eq 'number' || $scmode eq 'letter') {
8154:): if (($$scan_config{'BubblesPerRow'} =~ /^\d+$/) &&
8155:): ($$scan_config{'BubblesPerRow'} > 0)) {
8156:): $max=$$scan_config{'BubblesPerRow'};
8157:): if (($scmode eq 'number') && ($max > 10)) {
8158:): $max = 10;
8159:): } elsif (($scmode eq 'letter') && $max > 26) {
8160:): $max = 26;
8161:): }
8162:): } else {
8163:): $max = 10;
8164:): }
8165:): }
1.274 albertel 8166:
1.157 albertel 8167: my @alphabet=('A'..'Z');
1.503 raeburn 8168: $r->print(&Apache::loncommon::start_data_table().
8169: &Apache::loncommon::start_data_table_row());
8170: $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497 foxr 8171: for (my $i=0;$i<$max+1;$i++) {
8172: $r->print("\n".'<td align="center">');
8173: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
8174: else { $r->print(' '); }
8175: $r->print('</td>');
8176: }
1.503 raeburn 8177: $r->print(&Apache::loncommon::end_data_table_row().
8178: &Apache::loncommon::start_data_table_row());
1.497 foxr 8179: for (my $i=0;$i<$max;$i++) {
8180: $r->print("\n".
8181: '<td><label><input type="radio" name="scantron_correct_Q_'.
8182: $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
8183: }
1.503 raeburn 8184: my $nobub_checked = ' ';
8185: if ($error eq 'missingbubble') {
8186: $nobub_checked = ' checked = "checked" ';
8187: }
8188: $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
8189: $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
8190: '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
8191: $line.'" value="'.$questionnum.'" /></td>');
8192: $r->print(&Apache::loncommon::end_data_table_row().
8193: &Apache::loncommon::end_data_table());
1.157 albertel 8194: }
8195:
1.423 albertel 8196: =pod
8197:
8198: =item num_matches
8199:
1.424 albertel 8200: Counts the number of characters that are the same between the two arguments.
8201:
8202: Arguments:
8203: $orig - CODE from the scanline
8204: $code - CODE to match against
8205:
8206: Returns:
8207: $count - integer count of the number of same characters between the
8208: two arguments
8209:
1.423 albertel 8210: =cut
8211:
1.194 albertel 8212: sub num_matches {
8213: my ($orig,$code) = @_;
8214: my @code=split(//,$code);
8215: my @orig=split(//,$orig);
8216: my $same=0;
8217: for (my $i=0;$i<scalar(@code);$i++) {
8218: if ($code[$i] eq $orig[$i]) { $same++; }
8219: }
8220: return $same;
8221: }
8222:
1.423 albertel 8223: =pod
8224:
8225: =item scantron_get_closely_matching_CODEs
8226:
1.424 albertel 8227: Cycles through all CODEs and finds the set that has the greatest
8228: number of same characters as the provided CODE
8229:
8230: Arguments:
8231: $allcodes - hash ref returned by &get_codes()
8232: $CODE - CODE from the current scanline
8233:
8234: Returns:
8235: 2 element list
8236: - first elements is number of how closely matching the best fit is
8237: (5 means best set has 5 matching characters)
8238: - second element is an arrary ref containing the set of valid CODEs
8239: that best fit the passed in CODE
8240:
1.423 albertel 8241: =cut
8242:
1.194 albertel 8243: sub scantron_get_closely_matching_CODEs {
8244: my ($allcodes,$CODE)=@_;
8245: my @CODEs;
8246: foreach my $testcode (sort(keys(%{$allcodes}))) {
8247: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
8248: }
8249:
8250: return ($#CODEs,$CODEs[-1]);
8251: }
8252:
1.423 albertel 8253: =pod
8254:
8255: =item get_codes
8256:
1.424 albertel 8257: Builds a hash which has keys of all of the valid CODEs from the selected
8258: set of remembered CODEs.
8259:
8260: Arguments:
8261: $old_name - name of the set of remembered CODEs
8262: $cdom - domain of the course
8263: $cnum - internal course name
8264:
8265: Returns:
8266: %allcodes - keys are the valid CODEs, values are all 1
8267:
1.423 albertel 8268: =cut
8269:
1.194 albertel 8270: sub get_codes {
1.280 foxr 8271: my ($old_name, $cdom, $cnum) = @_;
8272: if (!$old_name) {
8273: $old_name=$env{'form.scantron_CODElist'};
8274: }
8275: if (!$cdom) {
8276: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
8277: }
8278: if (!$cnum) {
8279: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
8280: }
1.278 albertel 8281: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
8282: $cdom,$cnum);
8283: my %allcodes;
8284: if ($result{"type\0$old_name"} eq 'number') {
8285: %allcodes=map {($_,1)} split(',',$result{$old_name});
8286: } else {
8287: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
8288: }
1.194 albertel 8289: return %allcodes;
8290: }
8291:
1.423 albertel 8292: =pod
8293:
8294: =item scantron_validate_CODE
8295:
1.424 albertel 8296: Validates all scanlines in the selected file to not have any
8297: invalid or underspecified CODEs and that none of the codes are
8298: duplicated if this was requested.
8299:
1.423 albertel 8300: =cut
8301:
1.157 albertel 8302: sub scantron_validate_CODE {
8303: my ($r,$currentphase) = @_;
1.257 albertel 8304: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 8305: if ($scantron_config{'CODElocation'} &&
8306: $scantron_config{'CODEstart'} &&
8307: $scantron_config{'CODElength'}) {
1.257 albertel 8308: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 8309: &FIXME_blow_up()
8310: }
8311: } else {
8312: return (0,$currentphase+1);
8313: }
8314:
8315: my %usedCODEs;
8316:
1.194 albertel 8317: my %allcodes=&get_codes();
1.186 albertel 8318:
1.582 raeburn 8319: my $nav_error;
1.596.2.12.2. (raeburn 8320:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the lines per response array.
1.582 raeburn 8321: if ($nav_error) {
8322: $r->print(&navmap_errormsg());
8323: return(1,$currentphase);
8324: }
1.447 foxr 8325:
1.186 albertel 8326: my ($scanlines,$scan_data)=&scantron_getfile();
8327: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8328: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 8329: if ($line=~/^[\s\cz]*$/) { next; }
8330: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
8331: $scan_data);
8332: my $CODE=$$scan_record{'scantron.CODE'};
8333: my $error=0;
1.224 albertel 8334: if (!&Apache::lonnet::validCODE($CODE)) {
8335: &scantron_get_correction($r,$i,$scan_record,
8336: \%scantron_config,
8337: $line,'incorrectCODE',\%allcodes);
8338: return(1,$currentphase);
8339: }
1.221 albertel 8340: if (%allcodes && !exists($allcodes{$CODE})
8341: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 8342: &scantron_get_correction($r,$i,$scan_record,
8343: \%scantron_config,
1.194 albertel 8344: $line,'incorrectCODE',\%allcodes);
8345: return(1,$currentphase);
1.186 albertel 8346: }
1.214 albertel 8347: if (exists($usedCODEs{$CODE})
1.257 albertel 8348: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 8349: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 8350: &scantron_get_correction($r,$i,$scan_record,
8351: \%scantron_config,
1.194 albertel 8352: $line,'duplicateCODE',$usedCODEs{$CODE});
8353: return(1,$currentphase);
1.186 albertel 8354: }
1.524 raeburn 8355: push(@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 8356: }
1.157 albertel 8357: return (0,$currentphase+1);
8358: }
8359:
1.423 albertel 8360: =pod
8361:
8362: =item scantron_validate_doublebubble
8363:
1.424 albertel 8364: Validates all scanlines in the selected file to not have any
8365: bubble lines with multiple bubbles marked.
8366:
1.423 albertel 8367: =cut
8368:
1.157 albertel 8369: sub scantron_validate_doublebubble {
8370: my ($r,$currentphase) = @_;
8371: #get student info
8372: my $classlist=&Apache::loncoursedata::get_classlist();
8373: my %idmap=&username_to_idmap($classlist);
1.596.2.12.2. 6(raebur 8374:3): my (undef,undef,$sequence)=
8375:3): &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.157 albertel 8376:
8377: #get scantron line setup
1.257 albertel 8378: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 8379: my ($scanlines,$scan_data)=&scantron_getfile();
1.596.2.12.2. 6(raebur 8380:3):
8381:3): my $navmap = Apache::lonnavmaps::navmap->new();
8382:3): unless (ref($navmap)) {
8383:3): $r->print(&navmap_errormsg());
8384:3): return(1,$currentphase);
8385:3): }
8386:3): my $map=$navmap->getResourceByUrl($sequence);
8387:3): my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8388:3): my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
8389:3): %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
8390:3): my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8391:3):
1.583 raeburn 8392: my $nav_error;
1.596.2.12.2. 6(raebur 8393:3): if (ref($map)) {
8394:3): $randomorder = $map->randomorder();
8395:3): $randompick = $map->randompick();
8396:3): if ($randomorder || $randompick) {
8397:3): $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8398:3): if ($nav_error) {
8399:3): $r->print(&navmap_errormsg());
8400:3): return(1,$currentphase);
8401:3): }
8402:3): &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8403:3): \%grader_randomlists_by_symb,$bubbles_per_row);
8404:3): }
8405:3): } else {
8406:3): $r->print(&navmap_errormsg());
8407:3): return(1,$currentphase);
8408:3): }
8409:3):
(raeburn 8410:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # parse needs the bubble line array.
1.583 raeburn 8411: if ($nav_error) {
8412: $r->print(&navmap_errormsg());
8413: return(1,$currentphase);
8414: }
1.447 foxr 8415:
1.157 albertel 8416: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8417: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8418: if ($line=~/^[\s\cz]*$/) { next; }
8419: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
1.596.2.12.2. 6(raebur 8420:3): $scan_data,undef,\%idmap,$randomorder,
8421:3): $randompick,$sequence,\@master_seq,
8422:3): \%symb_to_resource,\%grader_partids_by_symb,
8423:3): \%orderedforcode,\%respnumlookup,\%startline);
1.157 albertel 8424: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
8425: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
8426: 'doublebubble',
1.596.2.12.2. 6(raebur 8427:3): $$scan_record{'scantron.doubleerror'},
8428:3): $randomorder,$randompick,\%respnumlookup,\%startline);
1.157 albertel 8429: return (1,$currentphase);
8430: }
8431: return (0,$currentphase+1);
8432: }
8433:
1.423 albertel 8434:
1.503 raeburn 8435: sub scantron_get_maxbubble {
1.596.2.12.2. (raeburn 8436:): my ($nav_error,$scantron_config) = @_;
1.257 albertel 8437: if (defined($env{'form.scantron_maxbubble'}) &&
8438: $env{'form.scantron_maxbubble'}) {
1.447 foxr 8439: &restore_bubble_lines();
1.257 albertel 8440: return $env{'form.scantron_maxbubble'};
1.191 albertel 8441: }
1.330 albertel 8442:
1.447 foxr 8443: my (undef, undef, $sequence) =
1.257 albertel 8444: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 8445:
1.447 foxr 8446: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8447: unless (ref($navmap)) {
8448: if (ref($nav_error)) {
8449: $$nav_error = 1;
8450: }
1.591 raeburn 8451: return;
1.582 raeburn 8452: }
1.191 albertel 8453: my $map=$navmap->getResourceByUrl($sequence);
8454: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.596.2.12.2. (raeburn 8455:): my $bubbles_per_row = &bubblesheet_bubbles_per_row($scantron_config);
1.330 albertel 8456:
8457: &Apache::lonxml::clear_problem_counter();
8458:
1.557 raeburn 8459: my $uname = $env{'user.name'};
8460: my $udom = $env{'user.domain'};
1.435 foxr 8461: my $cid = $env{'request.course.id'};
8462: my $total_lines = 0;
8463: %bubble_lines_per_response = ();
1.447 foxr 8464: %first_bubble_line = ();
1.503 raeburn 8465: %subdivided_bubble_lines = ();
8466: %responsetype_per_response = ();
1.596.2.12.2. 6(raebur 8467:3): %masterseq_id_responsenum = ();
1.554 raeburn 8468:
1.447 foxr 8469: my $response_number = 0;
8470: my $bubble_line = 0;
1.191 albertel 8471: foreach my $resource (@resources) {
1.596.2.12.2. 6(raebur 8472:3): my $resid = $resource->id();
(raeburn 8473:): my ($analysis,$parts) = &scantron_partids_tograde($resource,$cid,$uname,
7(raebur 8474:3): $udom,undef,$bubbles_per_row);
1.542 raeburn 8475: if ((ref($analysis) eq 'HASH') && (ref($parts) eq 'ARRAY')) {
8476: foreach my $part_id (@{$parts}) {
8477: my $lines;
8478:
8479: # TODO - make this a persistent hash not an array.
8480:
8481: # optionresponse, matchresponse and rankresponse type items
8482: # render as separate sub-questions in exam mode.
8483: if (($analysis->{$part_id.'.type'} eq 'optionresponse') ||
8484: ($analysis->{$part_id.'.type'} eq 'matchresponse') ||
8485: ($analysis->{$part_id.'.type'} eq 'rankresponse')) {
8486: my ($numbub,$numshown);
8487: if ($analysis->{$part_id.'.type'} eq 'optionresponse') {
8488: if (ref($analysis->{$part_id.'.options'}) eq 'ARRAY') {
8489: $numbub = scalar(@{$analysis->{$part_id.'.options'}});
8490: }
8491: } elsif ($analysis->{$part_id.'.type'} eq 'matchresponse') {
8492: if (ref($analysis->{$part_id.'.items'}) eq 'ARRAY') {
8493: $numbub = scalar(@{$analysis->{$part_id.'.items'}});
8494: }
8495: } elsif ($analysis->{$part_id.'.type'} eq 'rankresponse') {
8496: if (ref($analysis->{$part_id.'.foils'}) eq 'ARRAY') {
8497: $numbub = scalar(@{$analysis->{$part_id.'.foils'}});
8498: }
8499: }
8500: if (ref($analysis->{$part_id.'.shown'}) eq 'ARRAY') {
8501: $numshown = scalar(@{$analysis->{$part_id.'.shown'}});
8502: }
1.596.2.12.2. (raeburn 8503:): my $bubbles_per_row =
8504:): &bubblesheet_bubbles_per_row($scantron_config);
8505:): my $inner_bubble_lines = int($numbub/$bubbles_per_row);
8506:): if (($numbub % $bubbles_per_row) != 0) {
1.542 raeburn 8507: $inner_bubble_lines++;
8508: }
8509: for (my $i=0; $i<$numshown; $i++) {
8510: $subdivided_bubble_lines{$response_number} .=
8511: $inner_bubble_lines.',';
8512: }
8513: $subdivided_bubble_lines{$response_number} =~ s/,$//;
8514: $lines = $numshown * $inner_bubble_lines;
8515: } else {
8516: $lines = $analysis->{"$part_id.bubble_lines"};
1.596.2.12.2. (raeburn 8517:): }
1.542 raeburn 8518:
8519: $first_bubble_line{$response_number} = $bubble_line;
8520: $bubble_lines_per_response{$response_number} = $lines;
8521: $responsetype_per_response{$response_number} =
8522: $analysis->{$part_id.'.type'};
1.596.2.12.2. 6(raebur 8523:3): $masterseq_id_responsenum{$resid.'_'.$part_id} = $response_number;
1.542 raeburn 8524: $response_number++;
8525:
8526: $bubble_line += $lines;
8527: $total_lines += $lines;
8528: }
8529: }
8530: }
1.552 raeburn 8531: &Apache::lonnet::delenv('scantron.');
1.542 raeburn 8532:
8533: &save_bubble_lines();
8534: $env{'form.scantron_maxbubble'} =
8535: $total_lines;
8536: return $env{'form.scantron_maxbubble'};
8537: }
1.523 raeburn 8538:
1.596.2.12.2. (raeburn 8539:): sub bubblesheet_bubbles_per_row {
8540:): my ($scantron_config) = @_;
8541:): my $bubbles_per_row;
8542:): if (ref($scantron_config) eq 'HASH') {
8543:): $bubbles_per_row = $scantron_config->{'BubblesPerRow'};
8544:): }
8545:): if ((!$bubbles_per_row) || ($bubbles_per_row < 1)) {
8546:): $bubbles_per_row = 10;
8547:): }
8548:): return $bubbles_per_row;
8549:): }
8550:):
1.157 albertel 8551: sub scantron_validate_missingbubbles {
8552: my ($r,$currentphase) = @_;
8553: #get student info
8554: my $classlist=&Apache::loncoursedata::get_classlist();
8555: my %idmap=&username_to_idmap($classlist);
1.596.2.12.2. 6(raebur 8556:3): my (undef,undef,$sequence)=
8557:3): &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.157 albertel 8558:
8559: #get scantron line setup
1.257 albertel 8560: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 8561: my ($scanlines,$scan_data)=&scantron_getfile();
1.596.2.12.2. 6(raebur 8562:3):
8563:3): my $navmap = Apache::lonnavmaps::navmap->new();
8564:3): unless (ref($navmap)) {
8565:3): $r->print(&navmap_errormsg());
8566:3): return(1,$currentphase);
8567:3): }
8568:3):
8569:3): my $map=$navmap->getResourceByUrl($sequence);
8570:3): my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8571:3): my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
8572:3): %grader_randomlists_by_symb,%orderedforcode,%respnumlookup,%startline);
8573:3): my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8574:3):
1.582 raeburn 8575: my $nav_error;
1.596.2.12.2. 6(raebur 8576:3): if (ref($map)) {
8577:3): $randomorder = $map->randomorder();
8578:3): $randompick = $map->randompick();
7(raebur 8579:3): if ($randomorder || $randompick) {
8580:3): $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8581:3): if ($nav_error) {
8582:3): $r->print(&navmap_errormsg());
8583:3): return(1,$currentphase);
8584:3): }
8585:3): &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8586:3): \%grader_randomlists_by_symb,$bubbles_per_row);
8587:3): }
6(raebur 8588:3): } else {
8589:3): $r->print(&navmap_errormsg());
7(raebur 8590:3): return(1,$currentphase);
6(raebur 8591:3): }
8592:3):
8593:3):
(raeburn 8594:): my $max_bubble=&scantron_get_maxbubble(\$nav_error,\%scantron_config);
1.582 raeburn 8595: if ($nav_error) {
1.596.2.12.2. 6(raebur 8596:3): $r->print(&navmap_errormsg());
1.582 raeburn 8597: return(1,$currentphase);
8598: }
1.596.2.12.2. 6(raebur 8599:3):
1.157 albertel 8600: if (!$max_bubble) { $max_bubble=2**31; }
8601: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 8602: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8603: if ($line=~/^[\s\cz]*$/) { next; }
1.596.2.12.2. 6(raebur 8604:3): my $scan_record =
8605:3): &scantron_parse_scanline($line,$i,\%scantron_config,$scan_data,undef,\%idmap,
8606:3): $randomorder,$randompick,$sequence,\@master_seq,
8607:3): \%symb_to_resource,\%grader_partids_by_symb,
8608:3): \%orderedforcode,\%respnumlookup,\%startline);
1.157 albertel 8609: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
8610: my @to_correct;
1.470 foxr 8611:
8612: # Probably here's where the error is...
8613:
1.157 albertel 8614: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505 raeburn 8615: my $lastbubble;
8616: if ($missing =~ /^(\d+)\.(\d+)$/) {
1.596.2.12.2. 6(raebur 8617:3): my $question = $1;
8618:3): my $subquestion = $2;
8619:3): my ($first,$responsenum);
8620:3): if ($randomorder || $randompick) {
8621:3): $responsenum = $respnumlookup{$question-1};
8622:3): $first = $startline{$question-1};
8623:3): } else {
8624:3): $responsenum = $question-1;
8625:3): $first = $first_bubble_line{$responsenum};
8626:3): }
8627:3): if (!defined($first)) { next; }
7(raebur 8628:3): my @subans = split(/,/,$subdivided_bubble_lines{$responsenum});
6(raebur 8629:3): my $subcount = 1;
8630:3): while ($subcount<$subquestion) {
8631:3): $first += $subans[$subcount-1];
8632:3): $subcount ++;
8633:3): }
8634:3): my $count = $subans[$subquestion-1];
8635:3): $lastbubble = $first + $count;
1.505 raeburn 8636: } else {
1.596.2.12.2. 6(raebur 8637:3): my ($first,$responsenum);
8638:3): if ($randomorder || $randompick) {
8639:3): $responsenum = $respnumlookup{$missing-1};
8640:3): $first = $startline{$missing-1};
8641:3): } else {
8642:3): $responsenum = $missing-1;
8643:3): $first = $first_bubble_line{$responsenum};
8644:3): }
8645:3): if (!defined($first)) { next; }
8646:3): $lastbubble = $first + $bubble_lines_per_response{$responsenum};
1.505 raeburn 8647: }
8648: if ($lastbubble > $max_bubble) { next; }
1.157 albertel 8649: push(@to_correct,$missing);
8650: }
8651: if (@to_correct) {
8652: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
1.596.2.12.2. 6(raebur 8653:3): $line,'missingbubble',\@to_correct,
8654:3): $randomorder,$randompick,\%respnumlookup,
8655:3): \%startline);
1.157 albertel 8656: return (1,$currentphase);
8657: }
8658:
8659: }
8660: return (0,$currentphase+1);
8661: }
8662:
1.596.2.12.2. (raeburn 8663:): sub hand_bubble_option {
8664:): my (undef, undef, $sequence) =
8665:): &Apache::lonnet::decode_symb($env{'form.selectpage'});
8666:): return if ($sequence eq '');
8667:): my $navmap = Apache::lonnavmaps::navmap->new();
8668:): unless (ref($navmap)) {
8669:): return;
8670:): }
8671:): my $needs_hand_bubbles;
8672:): my $map=$navmap->getResourceByUrl($sequence);
8673:): my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
8674:): foreach my $res (@resources) {
8675:): if (ref($res)) {
8676:): if ($res->is_problem()) {
8677:): my $partlist = $res->parts();
8678:): foreach my $part (@{ $partlist }) {
8679:): my @types = $res->responseType($part);
8680:): if (grep(/^(chem|essay|image|formula|math|string|functionplot)$/,@types)) {
8681:): $needs_hand_bubbles = 1;
8682:): last;
8683:): }
8684:): }
8685:): }
8686:): }
8687:): }
8688:): if ($needs_hand_bubbles) {
8689:): my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
8690:): my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
8691:): return &mt('The sequence to be graded contains response types which are handgraded.').'<p>'.
8692:): &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 />').
8693:): '<label><input type="radio" name="scantron_lastbubblepoints" value="'.$bubbles_per_row.'" checked="checked" />'.&mt('[quant,_1,point]',$bubbles_per_row).'</label> '.&mt('or').' '.
8(raebur 8694:4): '<label><input type="radio" name="scantron_lastbubblepoints" value="0" />'.&mt('0 points').'</label></p>';
(raeburn 8695:): }
8696:): return;
8697:): }
1.423 albertel 8698:
1.82 albertel 8699: sub scantron_process_students {
1.75 albertel 8700: my ($r) = @_;
1.513 foxr 8701:
1.257 albertel 8702: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.324 albertel 8703: my ($symb)=&get_symb($r);
1.513 foxr 8704: if (!$symb) {
8705: return '';
8706: }
1.324 albertel 8707: my $default_form_data=&defaultFormData($symb);
1.82 albertel 8708:
1.257 albertel 8709: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.596.2.12.2. 6(raebur 8710:3): my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.157 albertel 8711: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 8712: my $classlist=&Apache::loncoursedata::get_classlist();
8713: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 8714: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 8715: unless (ref($navmap)) {
8716: $r->print(&navmap_errormsg());
8717: return '';
1.596.2.12.2. 6(raebur 8718:3): }
1.83 albertel 8719: my $map=$navmap->getResourceByUrl($sequence);
1.596.2.12.2. 6(raebur 8720:3): my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
8721:3): %grader_randomlists_by_symb);
1(raebur 8722:2): if (ref($map)) {
8723:2): $randomorder = $map->randomorder();
6(raebur 8724:3): $randompick = $map->randompick();
8725:3): } else {
8726:3): $r->print(&navmap_errormsg());
8727:3): return '';
1(raebur 8728:2): }
6(raebur 8729:3): my $nav_error;
1.83 albertel 8730: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.596.2.12.2. 6(raebur 8731:3): if ($randomorder || $randompick) {
8732:3): $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
8733:3): if ($nav_error) {
8734:3): $r->print(&navmap_errormsg());
8735:3): return '';
1.586 raeburn 8736: }
8737: }
1.596.2.12.2. 6(raebur 8738:3): &graders_resources_pass(\@resources,\%grader_partids_by_symb,
8739:3): \%grader_randomlists_by_symb,$bubbles_per_row);
1.557 raeburn 8740:
1.554 raeburn 8741: my ($uname,$udom);
1.82 albertel 8742: my $result= <<SCANTRONFORM;
1.81 albertel 8743: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
8744: <input type="hidden" name="command" value="scantron_configphase" />
8745: $default_form_data
8746: SCANTRONFORM
1.82 albertel 8747: $r->print($result);
8748:
8749: my @delayqueue;
1.542 raeburn 8750: my (%completedstudents,%scandata);
1.140 albertel 8751:
1.520 www 8752: my $lock=&Apache::lonnet::set_lock(&mt('Grading bubblesheet exam'));
1.200 albertel 8753: my $count=&get_todo_count($scanlines,$scan_data);
1.596.2.12.2. (raeburn 8754:): my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
1.140 albertel 8755: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
8756: 'Processing first student');
1.542 raeburn 8757: $r->print('<br />');
1.140 albertel 8758: my $start=&Time::HiRes::time();
1.158 albertel 8759: my $i=-1;
1.542 raeburn 8760: my $started;
1.447 foxr 8761:
1.596.2.12.2. (raeburn 8762:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 8763: if ($nav_error) {
8764: $r->print(&navmap_errormsg());
8765: return '';
8766: }
8767:
1.513 foxr 8768: # If an ssi failed in scantron_get_maxbubble, put an error message out to
8769: # the user and return.
8770:
8771: if ($ssi_error) {
8772: $r->print("</form>");
8773: &ssi_print_error($r);
8774: $r->print(&show_grading_menu_form($symb));
1.520 www 8775: &Apache::lonnet::remove_lock($lock);
1.513 foxr 8776: return ''; # Dunno why the other returns return '' rather than just returning.
8777: }
1.447 foxr 8778:
1.542 raeburn 8779: my %lettdig = &letter_to_digits();
8780: my $numletts = scalar(keys(%lettdig));
1.596.2.12.2. 6(raebur 8781:3): my %orderedforcode;
1.542 raeburn 8782:
1.157 albertel 8783: while ($i<$scanlines->{'count'}) {
8784: ($uname,$udom)=('','');
8785: $i++;
1.200 albertel 8786: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 8787: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 8788: if ($started) {
8789: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
8790: 'last student');
8791: }
8792: $started=1;
1.596.2.12.2. 6(raebur 8793:3): my %respnumlookup = ();
8794:3): my %startline = ();
8795:3): my $total;
1.157 albertel 8796: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
1.596.2.12.2. 6(raebur 8797:3): $scan_data,undef,\%idmap,$randomorder,
8798:3): $randompick,$sequence,\@master_seq,
8799:3): \%symb_to_resource,\%grader_partids_by_symb,
8800:3): \%orderedforcode,\%respnumlookup,\%startline,
8801:3): \$total);
1.157 albertel 8802: unless ($uname=&scantron_find_student($scan_record,$scan_data,
8803: \%idmap,$i)) {
8804: &scantron_add_delay(\@delayqueue,$line,
8805: 'Unable to find a student that matches',1);
8806: next;
8807: }
8808: if (exists $completedstudents{$uname}) {
8809: &scantron_add_delay(\@delayqueue,$line,
8810: 'Student '.$uname.' has multiple sheets',2);
8811: next;
8812: }
1.596.2.12.2. 1(raebur 8813:2): my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
8814:2): my $user = $uname.':'.$usec;
1.157 albertel 8815: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 8816:
1.596.2.12.2. 1(raebur 8817:2): my $scancode;
8818:2): if ((exists($scan_record->{'scantron.CODE'})) &&
8819:2): (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
8820:2): $scancode = $scan_record->{'scantron.CODE'};
8821:2): } else {
8822:2): $scancode = '';
8823:2): }
8824:2):
8825:2): my @mapresources = @resources;
6(raebur 8826:3): if ($randomorder || $randompick) {
1(raebur 8827:2): @mapresources =
6(raebur 8828:3): &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
8829:3): \%orderedforcode);
1(raebur 8830:2): }
1.586 raeburn 8831: my (%partids_by_symb,$res_error);
1.596.2.12.2. 1(raebur 8832:2): foreach my $resource (@mapresources) {
1.586 raeburn 8833: my $ressymb;
8834: if (ref($resource)) {
8835: $ressymb = $resource->symb();
8836: } else {
8837: $res_error = 1;
8838: last;
8839: }
1.557 raeburn 8840: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
8841: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
1.596.2.12.2. 1(raebur 8842:7): my $currcode;
8843:7): if (exists($grader_randomlists_by_symb{$ressymb})) {
8844:7): $currcode = $scancode;
8845:7): }
1.557 raeburn 8846: my ($analysis,$parts) =
1.596.2.12.2. (raeburn 8847:): &scantron_partids_tograde($resource,$env{'request.course.id'},
1(raebur 8848:7): $uname,$udom,undef,$bubbles_per_row,
8849:7): $currcode);
1.557 raeburn 8850: $partids_by_symb{$ressymb} = $parts;
8851: } else {
8852: $partids_by_symb{$ressymb} = $grader_partids_by_symb{$ressymb};
8853: }
1.554 raeburn 8854: }
8855:
1.586 raeburn 8856: if ($res_error) {
8857: &scantron_add_delay(\@delayqueue,$line,
8858: 'An error occurred while grading student '.$uname,2);
8859: next;
8860: }
8861:
1.330 albertel 8862: &Apache::lonxml::clear_problem_counter();
1.514 raeburn 8863: &Apache::lonnet::appenv($scan_record);
1.376 albertel 8864:
8865: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
8866: &scantron_putfile($scanlines,$scan_data);
8867: }
1.161 albertel 8868:
1.542 raeburn 8869: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.596.2.12.2. 1(raebur 8870:2): \@mapresources,\%partids_by_symb,
6(raebur 8871:3): $bubbles_per_row,$randomorder,$randompick,
8872:3): \%respnumlookup,\%startline)
8873:3): eq 'ssi_error') {
1.542 raeburn 8874: $ssi_error = 0; # So end of handler error message does not trigger.
8875: $r->print("</form>");
8876: &ssi_print_error($r);
8877: $r->print(&show_grading_menu_form($symb));
8878: &Apache::lonnet::remove_lock($lock);
8879: return ''; # Why return ''? Beats me.
8880: }
1.513 foxr 8881:
1.596.2.12.2. 6(raebur 8882:3): if (($scancode) && ($randomorder || $randompick)) {
8883:3): my $parmresult =
8884:3): &Apache::lonparmset::storeparm_by_symb($symb,
8885:3): '0_examcode',2,$scancode,
8886:3): 'string_examcode',$uname,
8887:3): $udom);
8888:3): }
1.140 albertel 8889: $completedstudents{$uname}={'line'=>$line};
1.542 raeburn 8890: if ($env{'form.verifyrecord'}) {
8891: my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
1.596.2.12.2. 6(raebur 8892:3): if ($randompick) {
8893:3): if ($total) {
8894:3): $lastpos = $total*$scantron_config{'Qlength'};
8895:3): }
8896:3): }
8897:3):
1.542 raeburn 8898: my $studentdata = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
8899: chomp($studentdata);
8900: $studentdata =~ s/\r$//;
8901: my $studentrecord = '';
8902: my $counter = -1;
1.596.2.12.2. 1(raebur 8903:2): foreach my $resource (@mapresources) {
1.554 raeburn 8904: my $ressymb = $resource->symb();
1.542 raeburn 8905: ($counter,my $recording) =
8906: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8907: $counter,$studentdata,$partids_by_symb{$ressymb},
1.596.2.12.2. 6(raebur 8908:3): \%scantron_config,\%lettdig,$numletts,$randomorder,
8909:3): $randompick,\%respnumlookup,\%startline);
1.542 raeburn 8910: $studentrecord .= $recording;
8911: }
8912: if ($studentrecord ne $studentdata) {
1.554 raeburn 8913: &Apache::lonxml::clear_problem_counter();
8914: if (&grade_student_bubbles($r,$uname,$udom,$scan_record,$scancode,
1.596.2.12.2. 1(raebur 8915:2): \@mapresources,\%partids_by_symb,
6(raebur 8916:3): $bubbles_per_row,$randomorder,$randompick,
8917:3): \%respnumlookup,\%startline)
8918:3): eq 'ssi_error') {
1.554 raeburn 8919: $ssi_error = 0; # So end of handler error message does not trigger.
8920: $r->print("</form>");
8921: &ssi_print_error($r);
8922: $r->print(&show_grading_menu_form($symb));
8923: &Apache::lonnet::remove_lock($lock);
8924: delete($completedstudents{$uname});
8925: return '';
8926: }
1.542 raeburn 8927: $counter = -1;
8928: $studentrecord = '';
1.596.2.12.2. 1(raebur 8929:2): foreach my $resource (@mapresources) {
1.554 raeburn 8930: my $ressymb = $resource->symb();
1.542 raeburn 8931: ($counter,my $recording) =
8932: &verify_scantron_grading($resource,$udom,$uname,$env{'request.course.id'},
1.554 raeburn 8933: $counter,$studentdata,$partids_by_symb{$ressymb},
1.596.2.12.2. 6(raebur 8934:3): \%scantron_config,\%lettdig,$numletts,
8935:3): $randomorder,$randompick,\%respnumlookup,
8936:3): \%startline);
1.542 raeburn 8937: $studentrecord .= $recording;
8938: }
8939: if ($studentrecord ne $studentdata) {
1.596.2.6 raeburn 8940: $r->print('<p><span class="LC_warning">');
1.542 raeburn 8941: if ($scancode eq '') {
1.596.2.6 raeburn 8942: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2].',
1.542 raeburn 8943: $uname.':'.$udom,$scan_record->{'scantron.ID'}));
8944: } else {
1.596.2.6 raeburn 8945: $r->print(&mt('Mismatch grading bubblesheet for user: [_1] with ID: [_2] and CODE: [_3].',
1.542 raeburn 8946: $uname.':'.$udom,$scan_record->{'scantron.ID'},$scancode));
8947: }
8948: $r->print('</span><br />'.&Apache::loncommon::start_data_table()."\n".
8949: &Apache::loncommon::start_data_table_header_row()."\n".
8950: '<th>'.&mt('Source').'</th><th>'.&mt('Bubbled responses').'</th>'.
8951: &Apache::loncommon::end_data_table_header_row()."\n".
8952: &Apache::loncommon::start_data_table_row().
1.596.2.6 raeburn 8953: '<td>'.&mt('Bubblesheet').'</td>'.
1.596.2.12.2. 4(raebur 8954:3): '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentdata.'</tt></span></td>'.
1.542 raeburn 8955: &Apache::loncommon::end_data_table_row().
8956: &Apache::loncommon::start_data_table_row().
1.596.2.6 raeburn 8957: '<td>'.&mt('Stored submissions').'</td>'.
1.596.2.12.2. 4(raebur 8958:3): '<td><span class="LC_nobreak" style="white-space: pre;"><tt>'.$studentrecord.'</tt></span></td>'."\n".
1.542 raeburn 8959: &Apache::loncommon::end_data_table_row().
8960: &Apache::loncommon::end_data_table().'</p>');
8961: } else {
8962: $r->print('<br /><span class="LC_warning">'.
8963: &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 />'.
8964: &mt("As a consequence, this user's submission history records two tries.").
8965: '</span><br />');
8966: }
8967: }
8968: }
1.543 raeburn 8969: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 8970: } continue {
1.330 albertel 8971: &Apache::lonxml::clear_problem_counter();
1.552 raeburn 8972: &Apache::lonnet::delenv('scantron.');
1.82 albertel 8973: }
1.140 albertel 8974: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.520 www 8975: &Apache::lonnet::remove_lock($lock);
1.172 albertel 8976: # my $lasttime = &Time::HiRes::time()-$start;
8977: # $r->print("<p>took $lasttime</p>");
1.140 albertel 8978:
1.200 albertel 8979: $r->print("</form>");
1.324 albertel 8980: $r->print(&show_grading_menu_form($symb));
1.157 albertel 8981: return '';
1.75 albertel 8982: }
1.157 albertel 8983:
1.557 raeburn 8984: sub graders_resources_pass {
1.596.2.12.2. (raeburn 8985:): my ($resources,$grader_partids_by_symb,$grader_randomlists_by_symb,
8986:): $bubbles_per_row) = @_;
1.557 raeburn 8987: if ((ref($resources) eq 'ARRAY') && (ref($grader_partids_by_symb)) &&
8988: (ref($grader_randomlists_by_symb) eq 'HASH')) {
8989: foreach my $resource (@{$resources}) {
8990: my $ressymb = $resource->symb();
8991: my ($analysis,$parts) =
8992: &scantron_partids_tograde($resource,$env{'request.course.id'},
1.596.2.12.2. (raeburn 8993:): $env{'user.name'},$env{'user.domain'},
8994:): 1,$bubbles_per_row);
1.557 raeburn 8995: $grader_partids_by_symb->{$ressymb} = $parts;
8996: if (ref($analysis) eq 'HASH') {
8997: if (ref($analysis->{'parts_withrandomlist'}) eq 'ARRAY') {
8998: $grader_randomlists_by_symb->{$ressymb} =
8999: $analysis->{'parts_withrandomlist'};
9000: }
9001: }
9002: }
9003: }
9004: return;
9005: }
9006:
1.596.2.12.2. 1(raebur 9007:2): =pod
9008:2):
9009:2): =item users_order
9010:2):
9011:2): Returns array of resources in current map, ordered based on either CODE,
9012:2): if this is a CODEd exam, or based on student's identity if this is a
9013:2): "NAMEd" exam.
9014:2):
6(raebur 9015:3): Should be used when randomorder and/or randompick applied when the
9016:3): corresponding exam was printed, prior to students completing bubblesheets
9017:3): for the version of the exam the student received.
1(raebur 9018:2):
9019:2): =cut
9020:2):
9021:2): sub users_order {
6(raebur 9022:3): my ($user,$scancode,$mapurl,$master_seq,$symb_to_resource,$orderedforcode) = @_;
1(raebur 9023:2): my @mapresources;
6(raebur 9024:3): unless ((ref($master_seq) eq 'ARRAY') && (ref($symb_to_resource) eq 'HASH')) {
1(raebur 9025:2): return @mapresources;
9026:2): }
6(raebur 9027:3): if ($scancode) {
9028:3): if ((ref($orderedforcode) eq 'HASH') && (ref($orderedforcode->{$scancode}) eq 'ARRAY')) {
9029:3): @mapresources = @{$orderedforcode->{$scancode}};
9030:3): } else {
9031:3): $env{'form.CODE'} = $scancode;
9032:3): my $actual_seq =
9033:3): &Apache::lonprintout::master_seq_to_person_seq($mapurl,
9034:3): $master_seq,
9035:3): $user,$scancode,1);
9036:3): if (ref($actual_seq) eq 'ARRAY') {
9037:3): @mapresources = map { $symb_to_resource->{$_}; } @{$actual_seq};
9038:3): if (ref($orderedforcode) eq 'HASH') {
9039:3): if (@mapresources > 0) {
9040:3): $orderedforcode->{$scancode} = \@mapresources;
9041:3): }
9042:3): }
9043:3): }
9044:3): delete($env{'form.CODE'});
1(raebur 9045:2): }
9046:2): } else {
9047:2): my $actual_seq =
9048:2): &Apache::lonprintout::master_seq_to_person_seq($mapurl,
9049:2): $master_seq,
5(raebur 9050:3): $user,undef,1);
1(raebur 9051:2): if (ref($actual_seq) eq 'ARRAY') {
9052:2): @mapresources =
9053:2): map { $symb_to_resource->{$_}; } @{$actual_seq};
9054:2): }
6(raebur 9055:3): }
9056:3): return @mapresources;
1(raebur 9057:2): }
9058:2):
1.542 raeburn 9059: sub grade_student_bubbles {
1.596.2.12.2. 6(raebur 9060:3): my ($r,$uname,$udom,$scan_record,$scancode,$resources,$parts,$bubbles_per_row,
9061:3): $randomorder,$randompick,$respnumlookup,$startline) = @_;
9062:3): my $uselookup = 0;
9063:3): if (($randomorder || $randompick) && (ref($respnumlookup) eq 'HASH') &&
9064:3): (ref($startline) eq 'HASH')) {
9065:3): $uselookup = 1;
9066:3): }
9067:3):
1.554 raeburn 9068: if (ref($resources) eq 'ARRAY') {
9069: my $count = 0;
9070: foreach my $resource (@{$resources}) {
9071: my $ressymb = $resource->symb();
9072: my %form = ('submitted' => 'scantron',
9073: 'grade_target' => 'grade',
9074: 'grade_username' => $uname,
9075: 'grade_domain' => $udom,
9076: 'grade_courseid' => $env{'request.course.id'},
9077: 'grade_symb' => $ressymb,
9078: 'CODE' => $scancode
9079: );
1.596.2.12.2. (raeburn 9080:): if ($bubbles_per_row ne '') {
9081:): $form{'bubbles_per_row'} = $bubbles_per_row;
9082:): }
9083:): if ($env{'form.scantron_lastbubblepoints'} ne '') {
9084:): $form{'scantron_lastbubblepoints'} = $env{'form.scantron_lastbubblepoints'};
9085:): }
1.554 raeburn 9086: if (ref($parts) eq 'HASH') {
9087: if (ref($parts->{$ressymb}) eq 'ARRAY') {
9088: foreach my $part (@{$parts->{$ressymb}}) {
1.596.2.12.2. 6(raebur 9089:3): if ($uselookup) {
9090:3): $form{'scantron_questnum_start.'.$part} = $startline->{$count} + 1;
9091:3): } else {
9092:3): $form{'scantron_questnum_start.'.$part} =
9093:3): 1+$env{'form.scantron.first_bubble_line.'.$count};
9094:3): }
1.554 raeburn 9095: $count++;
9096: }
9097: }
9098: }
9099: my $result=&ssi_with_retries($resource->src(),$ssi_retries,%form);
9100: return 'ssi_error' if ($ssi_error);
9101: last if (&Apache::loncommon::connection_aborted($r));
9102: }
1.542 raeburn 9103: }
9104: return;
9105: }
9106:
1.157 albertel 9107: sub scantron_upload_scantron_data {
9108: my ($r)=@_;
1.565 raeburn 9109: my $dom = $env{'request.role.domain'};
9110: my $domdesc = &Apache::lonnet::domain($dom,'description');
9111: $r->print(&Apache::loncommon::coursebrowser_javascript($dom));
1.157 albertel 9112: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 9113: 'domainid',
1.565 raeburn 9114: 'coursename',$dom);
9115: my $syllabuslink = '<a href="javascript:ToSyllabus();">'.&mt('Syllabus').'</a>'.
1.596.2.12.2. (raeburn 9116:): (' 'x2).&mt('(shows course personnel)');
9117:): my ($symb) = &get_symb($r,1);
9118:): my $default_form_data=&defaultFormData($symb);
1.579 raeburn 9119: my $nofile_alert = &mt('Please use the browse button to select a file from your local directory.');
1.596.2.12.2. 7(raebur 9120:6): &js_escape(\$nofile_alert);
1.579 raeburn 9121: 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.596.2.12.2. 6(raebur 9122:6): &js_escape(\$nocourseid_alert);
1.492 albertel 9123: $r->print('
1.157 albertel 9124: <script type="text/javascript" language="javascript">
9125: function checkUpload(formname) {
9126: if (formname.upfile.value == "") {
1.579 raeburn 9127: alert("'.$nofile_alert.'");
1.157 albertel 9128: return false;
9129: }
1.565 raeburn 9130: if (formname.courseid.value == "") {
1.579 raeburn 9131: alert("'.$nocourseid_alert.'");
1.565 raeburn 9132: return false;
9133: }
1.157 albertel 9134: formname.submit();
9135: }
1.565 raeburn 9136:
9137: function ToSyllabus() {
9138: var cdom = '."'$dom'".';
9139: var cnum = document.rules.courseid.value;
9140: if (cdom == "" || cdom == null) {
9141: return;
9142: }
9143: if (cnum == "" || cnum == null) {
9144: return;
9145: }
9146: syllwin=window.open("/public/"+cdom+"/"+cnum+"/syllabus","LONCAPASyllabus",
9147: "height=350,width=350,scrollbars=yes,menubar=no");
9148: return;
9149: }
9150:
1.157 albertel 9151: </script>
9152:
1.596.2.4 raeburn 9153: <h3>'.&mt('Send bubblesheet data to a course').'</h3>
1.566 raeburn 9154:
1.492 albertel 9155: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
1.565 raeburn 9156: '.$default_form_data.
9157: &Apache::lonhtmlcommon::start_pick_box().
9158: &Apache::lonhtmlcommon::row_title(&mt('Course ID')).
9159: '<input name="courseid" type="text" size="30" />'.$select_link.
9160: &Apache::lonhtmlcommon::row_closure().
9161: &Apache::lonhtmlcommon::row_title(&mt('Course Name')).
9162: '<input name="coursename" type="text" size="30" />'.$syllabuslink.
9163: &Apache::lonhtmlcommon::row_closure().
9164: &Apache::lonhtmlcommon::row_title(&mt('Domain')).
9165: '<input name="domainid" type="hidden" />'.$domdesc.
9166: &Apache::lonhtmlcommon::row_closure().
9167: &Apache::lonhtmlcommon::row_title(&mt('File to upload')).
9168: '<input type="file" name="upfile" size="50" />'.
9169: &Apache::lonhtmlcommon::row_closure(1).
9170: &Apache::lonhtmlcommon::end_pick_box().'<br />
9171:
1.492 albertel 9172: <input name="command" value="scantronupload_save" type="hidden" />
1.589 bisitz 9173: <input type="button" onclick="javascript:checkUpload(this.form);" value="'.&mt('Upload Bubblesheet Data').'" />
1.157 albertel 9174: </form>
1.492 albertel 9175: ');
1.157 albertel 9176: return '';
9177: }
9178:
1.423 albertel 9179:
1.157 albertel 9180: sub scantron_upload_scantron_data_save {
9181: my($r)=@_;
1.324 albertel 9182: my ($symb)=&get_symb($r,1);
1.182 albertel 9183: my $doanotherupload=
9184: '<br /><form action="/adm/grades" method="post">'."\n".
9185: '<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492 albertel 9186: '<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182 albertel 9187: '</form>'."\n";
1.257 albertel 9188: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 9189: !&Apache::lonnet::allowed('usc',
1.257 albertel 9190: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.575 www 9191: $r->print(&mt("You are not allowed to upload bubblesheet data to the requested course.")."<br />");
1.182 albertel 9192: if ($symb) {
1.324 albertel 9193: $r->print(&show_grading_menu_form($symb));
1.182 albertel 9194: } else {
9195: $r->print($doanotherupload);
9196: }
1.162 albertel 9197: return '';
9198: }
1.257 albertel 9199: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.568 raeburn 9200: my $uploadedfile;
1.596.2.12.2. 5(raebur 9201:3): $r->print('<p>'.&mt("Uploading file to [_1]",$coursedata{'description'}).'</p>');
1.257 albertel 9202: if (length($env{'form.upfile'}) < 2) {
1.596.2.12.2. 5(raebur 9203:3): $r->print(
9204:3): &Apache::lonhtmlcommon::confirm_success(
9205:3): &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
9206:3): '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1));
1.183 albertel 9207: } else {
1.568 raeburn 9208: my $result =
9209: &Apache::lonnet::userfileupload('upfile','','scantron','','','',
9210: $env{'form.courseid'},$env{'form.domainid'});
9211: if ($result =~ m{^/uploaded/}) {
1.596.2.12.2. 5(raebur 9212:3): $r->print(
9213:3): &Apache::lonhtmlcommon::confirm_success(&mt('Upload successful')).'<br />'.
9214:3): &mt('Uploaded [_1] bytes of data into location: [_2]',
9215:3): (length($env{'form.upfile'})-1),
9216:3): '<span class="LC_filename">'.$result.'</span>'));
1.568 raeburn 9217: ($uploadedfile) = ($result =~ m{/([^/]+)$});
1.567 raeburn 9218: $r->print(&validate_uploaded_scantron_file($env{'form.domainid'},
1.568 raeburn 9219: $env{'form.courseid'},$uploadedfile));
1.210 albertel 9220: } else {
1.596.2.12.2. 5(raebur 9221:3): $r->print(
9222:3): &Apache::lonhtmlcommon::confirm_success(&mt('Upload failed'),1).'<br />'.
9223:3): &mt('An error ([_1]) occurred when attempting to upload the file: [_2]',
9224:3): $result,
1.568 raeburn 9225: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'));
1.183 albertel 9226: }
9227: }
1.174 albertel 9228: if ($symb) {
1.209 ng 9229: $r->print(&scantron_selectphase($r,$uploadedfile));
1.174 albertel 9230: } else {
1.182 albertel 9231: $r->print($doanotherupload);
1.174 albertel 9232: }
1.157 albertel 9233: return '';
9234: }
9235:
1.567 raeburn 9236: sub validate_uploaded_scantron_file {
9237: my ($cdom,$cname,$fname) = @_;
9238: my $scanlines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.$fname);
9239: my @lines;
9240: if ($scanlines ne '-1') {
9241: @lines=split("\n",$scanlines,-1);
9242: }
9243: my $output;
9244: if (@lines) {
9245: my (%counts,$max_match_format);
1.596.2.12.2. 5(raebur 9246:3): my ($found_match_count,$max_match_count,$max_match_pct) = (0,0,0);
1.567 raeburn 9247: my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cname);
9248: my %idmap = &username_to_idmap($classlist);
9249: foreach my $key (keys(%idmap)) {
9250: my $lckey = lc($key);
9251: $idmap{$lckey} = $idmap{$key};
9252: }
9253: my %unique_formats;
9254: my @formatlines = &get_scantronformat_file();
9255: foreach my $line (@formatlines) {
9256: chomp($line);
9257: my @config = split(/:/,$line);
9258: my $idstart = $config[5];
9259: my $idlength = $config[6];
9260: if (($idstart ne '') && ($idlength > 0)) {
9261: if (ref($unique_formats{$idstart.':'.$idlength}) eq 'ARRAY') {
9262: push(@{$unique_formats{$idstart.':'.$idlength}},$config[0].':'.$config[1]);
9263: } else {
9264: $unique_formats{$idstart.':'.$idlength} = [$config[0].':'.$config[1]];
9265: }
9266: }
9267: }
9268: foreach my $key (keys(%unique_formats)) {
9269: my ($idstart,$idlength) = split(':',$key);
9270: %{$counts{$key}} = (
9271: 'found' => 0,
9272: 'total' => 0,
9273: );
9274: foreach my $line (@lines) {
9275: next if ($line =~ /^#/);
9276: next if ($line =~ /^[\s\cz]*$/);
9277: my $id = substr($line,$idstart-1,$idlength);
9278: $id = lc($id);
9279: if (exists($idmap{$id})) {
9280: $counts{$key}{'found'} ++;
9281: }
9282: $counts{$key}{'total'} ++;
9283: }
9284: if ($counts{$key}{'total'}) {
9285: my $percent_match = (100*$counts{$key}{'found'})/($counts{$key}{'total'});
9286: if (($max_match_format eq '') || ($percent_match > $max_match_pct)) {
9287: $max_match_pct = $percent_match;
9288: $max_match_format = $key;
1.596.2.12.2. 5(raebur 9289:3): $found_match_count = $counts{$key}{'found'};
1.567 raeburn 9290: $max_match_count = $counts{$key}{'total'};
9291: }
9292: }
9293: }
9294: if (ref($unique_formats{$max_match_format}) eq 'ARRAY') {
9295: my $format_descs;
9296: my $numwithformat = @{$unique_formats{$max_match_format}};
9297: for (my $i=0; $i<$numwithformat; $i++) {
9298: my ($name,$desc) = split(':',$unique_formats{$max_match_format}[$i]);
9299: if ($i<$numwithformat-2) {
9300: $format_descs .= '"<i>'.$desc.'</i>", ';
9301: } elsif ($i==$numwithformat-2) {
9302: $format_descs .= '"<i>'.$desc.'</i>" '.&mt('and').' ';
9303: } elsif ($i==$numwithformat-1) {
9304: $format_descs .= '"<i>'.$desc.'</i>"';
9305: }
9306: }
9307: my $showpct = sprintf("%.0f",$max_match_pct).'%';
1.596.2.12.2. 5(raebur 9308:3): $output .= '<br />';
9309:3): if ($found_match_count == $max_match_count) {
9310:3): # 100% matching entries
9311:3): $output .= &Apache::lonhtmlcommon::confirm_success(
9312:3): &mt('Comparison of student IDs: [_1] matching ([quant,_2,entry,entries])',
9313:3): '<b>'.$showpct.'</b>',$found_match_count)).'<br />'.
9314:3): &mt('Comparison of student IDs in the uploaded file with'.
9315:3): ' the course roster found matches for [_1] of the [_2] entries'.
9316:3): ' in the file (for the format defined for [_3]).',
9317:3): '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs);
9318:3): } else {
9319:3): # Not all entries matching? -> Show warning and additional info
9320:3): $output .=
9321:3): &Apache::lonhtmlcommon::confirm_success(
9322:3): &mt('Comparison of student IDs: [_1] matching ([_2]/[quant,_3,entry,entries])',
9323:3): '<b>'.$showpct.'</b>',$found_match_count,$max_match_count).'<br />'.
9324:3): &mt('Not all entries could be matched!'),1).'<br />'.
9325:3): &mt('Comparison of student IDs in the uploaded file with'.
9326:3): ' the course roster found matches for [_1] of the [_2] entries'.
9327:3): ' in the file (for the format defined for [_3]).',
9328:3): '<b>'.$showpct.'</b>','<b>'.$max_match_count.'</b>',$format_descs).
9329:3): '<p class="LC_info">'.
9330:3): &mt('A low percentage of matches results from one of the following:').
9331:3): '</p><ul>'.
9332:3): '<li>'.&mt('The file was uploaded to the wrong course.').'</li>'.
9333:3): '<li>'.&mt('The data is not in the format expected for the domain: [_1]',
9334:3): '<i>'.$cdom.'</i>').'</li>'.
9335:3): '<li>'.&mt('Students did not bubble their IDs, or mis-bubbled them').'</li>'.
9336:3): '<li>'.&mt('The course roster is not up to date.').'</li>'.
9337:3): '</ul>';
9338:3): }
1.567 raeburn 9339: }
9340: } else {
1.596.2.12.2. 5(raebur 9341:3): $output = '<p class="LC_warning">'.&mt('Uploaded file contained no data').'</p>';
1.567 raeburn 9342: }
9343: return $output;
9344: }
9345:
1.202 albertel 9346: sub valid_file {
9347: my ($requested_file)=@_;
9348: foreach my $filename (sort(&scantron_filenames())) {
9349: if ($requested_file eq $filename) { return 1; }
9350: }
9351: return 0;
9352: }
9353:
9354: sub scantron_download_scantron_data {
9355: my ($r)=@_;
1.596.2.12.2. (raeburn 9356:): my ($symb) = &get_symb($r,1);
9357:): my $default_form_data=&defaultFormData($symb);
1.257 albertel 9358: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
9359: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
9360: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 9361: if (! &valid_file($file)) {
1.492 albertel 9362: $r->print('
1.202 albertel 9363: <p>
1.596.2.12.2. 3(raebur 9364:3): '.&mt('The requested filename was invalid.').'
1.202 albertel 9365: </p>
1.492 albertel 9366: ');
1.596.2.12.2. (raeburn 9367:): $r->print(&show_grading_menu_form($symb));
1.202 albertel 9368: return;
9369: }
9370: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
9371: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
9372: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
9373: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
9374: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
9375: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492 albertel 9376: $r->print('
1.202 albertel 9377: <p>
1.596.2.12.2. 8(raebur 9378:4): '.&mt('[_1]Original[_2] file as uploaded by bubblesheet scanning office.',
1.492 albertel 9379: '<a href="'.$orig.'">','</a>').'
1.202 albertel 9380: </p>
9381: <p>
1.492 albertel 9382: '.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
9383: '<a href="'.$corrected.'">','</a>').'
1.202 albertel 9384: </p>
9385: <p>
1.492 albertel 9386: '.&mt('[_1]Skipped[_2], a file of records that were skipped.',
9387: '<a href="'.$skipped.'">','</a>').'
1.202 albertel 9388: </p>
1.492 albertel 9389: ');
1.596.2.12.2. (raeburn 9390:): $r->print(&show_grading_menu_form($symb));
1.202 albertel 9391: return '';
9392: }
1.157 albertel 9393:
1.523 raeburn 9394: sub checkscantron_results {
9395: my ($r) = @_;
9396: my ($symb)=&get_symb($r);
9397: if (!$symb) {return '';}
9398: my $grading_menu_button=&show_grading_menu_form($symb);
9399: my $cid = $env{'request.course.id'};
1.542 raeburn 9400: my %lettdig = &letter_to_digits();
1.523 raeburn 9401: my $numletts = scalar(keys(%lettdig));
9402: my $cnum = $env{'course.'.$cid.'.num'};
9403: my $cdom = $env{'course.'.$cid.'.domain'};
9404: my (undef, undef, $sequence) = &Apache::lonnet::decode_symb($env{'form.selectpage'});
9405: my %record;
9406: my %scantron_config =
9407: &Apache::grades::get_scantron_config($env{'form.scantron_format'});
1.596.2.12.2. (raeburn 9408:): my $bubbles_per_row = &bubblesheet_bubbles_per_row(\%scantron_config);
1.523 raeburn 9409: my ($scanlines,$scan_data)=&Apache::grades::scantron_getfile();
9410: my $classlist=&Apache::loncoursedata::get_classlist();
9411: my %idmap=&Apache::grades::username_to_idmap($classlist);
9412: my $navmap=Apache::lonnavmaps::navmap->new();
1.582 raeburn 9413: unless (ref($navmap)) {
9414: $r->print(&navmap_errormsg());
9415: return '';
9416: }
1.523 raeburn 9417: my $map=$navmap->getResourceByUrl($sequence);
1.596.2.12.2. 6(raebur 9418:3): my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb,
9419:3): %grader_randomlists_by_symb,%orderedforcode);
1(raebur 9420:2): if (ref($map)) {
9421:2): $randomorder=$map->randomorder();
7(raebur 9422:3): $randompick=$map->randompick();
1(raebur 9423:2): }
1.557 raeburn 9424: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.596.2.12.2. 6(raebur 9425:3): my $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource);
9426:3): if ($nav_error) {
9427:3): $r->print(&navmap_errormsg());
9428:3): return '';
1(raebur 9429:2): }
(raeburn 9430:): &graders_resources_pass(\@resources,\%grader_partids_by_symb,
9431:): \%grader_randomlists_by_symb,$bubbles_per_row);
1.554 raeburn 9432: my ($uname,$udom);
1.523 raeburn 9433: my (%scandata,%lastname,%bylast);
9434: $r->print('
9435: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="checkscantron">'."\n");
9436:
9437: my @delayqueue;
9438: my %completedstudents;
9439:
1.596.2.12.2. 6(raebur 9440:3): my $count=&get_todo_count($scanlines,$scan_data);
(raeburn 9441:): my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,$count);
6(raebur 9442:3): my ($username,$domain,$started);
(raeburn 9443:): &scantron_get_maxbubble(\$nav_error,\%scantron_config); # Need the bubble lines array to parse.
1.582 raeburn 9444: if ($nav_error) {
9445: $r->print(&navmap_errormsg());
9446: return '';
9447: }
1.523 raeburn 9448:
9449: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
9450: 'Processing first student');
9451: my $start=&Time::HiRes::time();
9452: my $i=-1;
9453:
9454: while ($i<$scanlines->{'count'}) {
9455: ($username,$domain,$uname)=('','','');
9456: $i++;
9457: my $line=&Apache::grades::scantron_get_line($scanlines,$scan_data,$i);
9458: if ($line=~/^[\s\cz]*$/) { next; }
9459: if ($started) {
9460: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
9461: 'last student');
9462: }
9463: $started=1;
9464: my $scan_record=
9465: &Apache::grades::scantron_parse_scanline($line,$i,\%scantron_config,
9466: $scan_data);
1.596.2.12.2. 6(raebur 9467:3): unless ($uname=&scantron_find_student($scan_record,$scan_data,
9468:3): \%idmap,$i)) {
1.523 raeburn 9469: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
9470: 'Unable to find a student that matches',1);
9471: next;
9472: }
9473: if (exists $completedstudents{$uname}) {
9474: &Apache::grades::scantron_add_delay(\@delayqueue,$line,
9475: 'Student '.$uname.' has multiple sheets',2);
9476: next;
9477: }
9478: my $pid = $scan_record->{'scantron.ID'};
9479: $lastname{$pid} = $scan_record->{'scantron.LastName'};
9480: push(@{$bylast{$lastname{$pid}}},$pid);
1.596.2.12.2. 1(raebur 9481:2): my $usec = $classlist->{$uname}->[&Apache::loncoursedata::CL_SECTION];
9482:2): my $user = $uname.':'.$usec;
1.523 raeburn 9483: ($username,$domain)=split(/:/,$uname);
1.596.2.12.2. 1(raebur 9484:2):
9485:2): my $scancode;
9486:2): if ((exists($scan_record->{'scantron.CODE'})) &&
9487:2): (&Apache::lonnet::validCODE($scan_record->{'scantron.CODE'}))) {
9488:2): $scancode = $scan_record->{'scantron.CODE'};
9489:2): } else {
9490:2): $scancode = '';
9491:2): }
9492:2):
9493:2): my @mapresources = @resources;
6(raebur 9494:3): my $lastpos = $env{'form.scantron_maxbubble'}*$scantron_config{'Qlength'};
9495:3): my %respnumlookup=();
9496:3): my %startline=();
9497:3): if ($randomorder || $randompick) {
1(raebur 9498:2): @mapresources =
6(raebur 9499:3): &users_order($user,$scancode,$sequence,\@master_seq,\%symb_to_resource,
9500:3): \%orderedforcode);
9501:3): my $total = &get_respnum_lookups($sequence,$scan_data,\%idmap,$line,
9502:3): $scan_record,\@master_seq,\%symb_to_resource,
9503:3): \%grader_partids_by_symb,\%orderedforcode,
9504:3): \%respnumlookup,\%startline);
9505:3): if ($randompick && $total) {
9506:3): $lastpos = $total*$scantron_config{'Qlength'};
9507:3): }
1(raebur 9508:2): }
6(raebur 9509:3): $scandata{$pid} = substr($line,$scantron_config{'Qstart'}-1,$lastpos);
9510:3): chomp($scandata{$pid});
9511:3): $scandata{$pid} =~ s/\r$//;
9512:3):
1.523 raeburn 9513: my $counter = -1;
1.596.2.12.2. 1(raebur 9514:2): foreach my $resource (@mapresources) {
1.557 raeburn 9515: my $parts;
1.554 raeburn 9516: my $ressymb = $resource->symb();
1.557 raeburn 9517: if ((exists($grader_randomlists_by_symb{$ressymb})) ||
9518: (ref($grader_partids_by_symb{$ressymb}) ne 'ARRAY')) {
1.596.2.12.2. 1(raebur 9519:7): my $currcode;
9520:7): if (exists($grader_randomlists_by_symb{$ressymb})) {
9521:7): $currcode = $scancode;
9522:7): }
1.557 raeburn 9523: (my $analysis,$parts) =
1.596.2.12.2. (raeburn 9524:): &scantron_partids_tograde($resource,$env{'request.course.id'},
9525:): $username,$domain,undef,
1(raebur 9526:7): $bubbles_per_row,$currcode);
1.557 raeburn 9527: } else {
9528: $parts = $grader_partids_by_symb{$ressymb};
9529: }
1.542 raeburn 9530: ($counter,my $recording) =
9531: &verify_scantron_grading($resource,$domain,$username,$cid,$counter,
1.554 raeburn 9532: $scandata{$pid},$parts,
1.596.2.12.2. 6(raebur 9533:3): \%scantron_config,\%lettdig,$numletts,
9534:3): $randomorder,$randompick,
9535:3): \%respnumlookup,\%startline);
1.542 raeburn 9536: $record{$pid} .= $recording;
1.523 raeburn 9537: }
9538: }
9539: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
9540: $r->print('<br />');
9541: my ($okstudents,$badstudents,$numstudents,$passed,$failed);
9542: $passed = 0;
9543: $failed = 0;
9544: $numstudents = 0;
9545: foreach my $last (sort(keys(%bylast))) {
9546: if (ref($bylast{$last}) eq 'ARRAY') {
9547: foreach my $pid (sort(@{$bylast{$last}})) {
9548: my $showscandata = $scandata{$pid};
9549: my $showrecord = $record{$pid};
9550: $showscandata =~ s/\s/ /g;
9551: $showrecord =~ s/\s/ /g;
9552: if ($scandata{$pid} eq $record{$pid}) {
9553: my $css_class = ($passed % 2)?'LC_odd_row':'LC_even_row';
9554: $okstudents .= '<tr class="'.$css_class.'">'.
1.581 www 9555: '<td>'.&mt('Bubblesheet').'</td><td>'.$showscandata.'</td><td rowspan="2">'.$last.'</td><td rowspan="2">'.$pid.'</td>'."\n".
1.523 raeburn 9556: '</tr>'."\n".
9557: '<tr class="'.$css_class.'">'."\n".
1.596.2.12.2. 8(raebur 9558:4): '<td>'.&mt('Submissions').'</td><td>'.$showrecord.'</td></tr>'."\n";
1.523 raeburn 9559: $passed ++;
9560: } else {
9561: my $css_class = ($failed % 2)?'LC_odd_row':'LC_even_row';
1.581 www 9562: $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 9563: '</tr>'."\n".
9564: '<tr class="'.$css_class.'">'."\n".
1.596.2.12.2. 8(raebur 9565:4): '<td>'.&mt('Submissions').'</td><td><span class="LC_nobreak">'.$record{$pid}.'</span></td>'."\n".
1.523 raeburn 9566: '</tr>'."\n";
9567: $failed ++;
9568: }
9569: $numstudents ++;
9570: }
9571: }
9572: }
1.596.2.4 raeburn 9573: $r->print('<p>'.
1.596.2.8 raeburn 9574: &mt('Comparison of bubblesheet data (including corrections) with corresponding submission records (most recent submission) for [_1][quant,_2,student][_3] ([quant,_4,bubblesheet line] per student).',
1.596.2.4 raeburn 9575: '<b>',
9576: $numstudents,
9577: '</b>',
9578: $env{'form.scantron_maxbubble'}).
9579: '</p>'
9580: );
1.596.2.12.2. 2(raebur 9581:2): $r->print('<p>'
9582:2): .&mt('Exact matches for [_1][quant,_2,student][_3].','<b>',$passed,'</b>')
9583:2): .'<br />'
9584:2): .&mt('Discrepancies detected for [_1][quant,_2,student][_3].','<b>',$failed,'</b>')
9585:2): .'</p>');
1.523 raeburn 9586: if ($passed) {
1.572 www 9587: $r->print(&mt('Students with exact correspondence between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 9588: $r->print(&Apache::loncommon::start_data_table()."\n".
9589: &Apache::loncommon::start_data_table_header_row()."\n".
9590: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
9591: &Apache::loncommon::end_data_table_header_row()."\n".
9592: $okstudents."\n".
9593: &Apache::loncommon::end_data_table().'<br />');
9594: }
9595: if ($failed) {
1.572 www 9596: $r->print(&mt('Students with differences between bubblesheet data and submissions are as follows:').'<br /><br />');
1.523 raeburn 9597: $r->print(&Apache::loncommon::start_data_table()."\n".
9598: &Apache::loncommon::start_data_table_header_row()."\n".
9599: '<th>'.&mt('Source').'</th><th>'.&mt('Bubble records').'</th><th>'.&mt('Name').'</th><th>'.&mt('ID').'</th>'.
9600: &Apache::loncommon::end_data_table_header_row()."\n".
9601: $badstudents."\n".
9602: &Apache::loncommon::end_data_table()).'<br />'.
1.572 www 9603: &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 9604: }
9605: $r->print('</form><br />'.$grading_menu_button);
9606: return;
9607: }
9608:
1.542 raeburn 9609: sub verify_scantron_grading {
1.554 raeburn 9610: my ($resource,$domain,$username,$cid,$counter,$scandata,$partids,
1.596.2.12.2. 6(raebur 9611:3): $scantron_config,$lettdig,$numletts,$randomorder,$randompick,
9612:3): $respnumlookup,$startline) = @_;
1.542 raeburn 9613: my ($record,%expected,%startpos);
9614: return ($counter,$record) if (!ref($resource));
9615: return ($counter,$record) if (!$resource->is_problem());
9616: my $symb = $resource->symb();
1.554 raeburn 9617: return ($counter,$record) if (ref($partids) ne 'ARRAY');
9618: foreach my $part_id (@{$partids}) {
1.542 raeburn 9619: $counter ++;
9620: $expected{$part_id} = 0;
1.596.2.12.2. 6(raebur 9621:3): my $respnum = $counter;
9622:3): if ($randomorder || $randompick) {
9623:3): $respnum = $respnumlookup->{$counter};
9624:3): $startpos{$part_id} = $startline->{$counter} + 1;
9625:3): } else {
9626:3): $startpos{$part_id} = $env{"form.scantron.first_bubble_line.$counter"};
9627:3): }
9628:3): if ($env{"form.scantron.sub_bubblelines.$respnum"}) {
9629:3): my @sub_lines = split(/,/,$env{"form.scantron.sub_bubblelines.$respnum"});
1.542 raeburn 9630: foreach my $item (@sub_lines) {
9631: $expected{$part_id} += $item;
9632: }
9633: } else {
1.596.2.12.2. 6(raebur 9634:3): $expected{$part_id} = $env{"form.scantron.bubblelines.$respnum"};
1.542 raeburn 9635: }
9636: }
9637: if ($symb) {
9638: my %recorded;
9639: my (%returnhash) = &Apache::lonnet::restore($symb,$cid,$domain,$username);
9640: if ($returnhash{'version'}) {
9641: my %lasthash=();
9642: my $version;
9643: for ($version=1;$version<=$returnhash{'version'};$version++) {
9644: foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
9645: $lasthash{$key}=$returnhash{$version.':'.$key};
9646: }
9647: }
9648: foreach my $key (keys(%lasthash)) {
9649: if ($key =~ /\.scantron$/) {
9650: my $value = &unescape($lasthash{$key});
9651: my ($part_id) = ($key =~ /^resource\.(.+)\.scantron$/);
9652: if ($value eq '') {
9653: for (my $i=0; $i<$expected{$part_id}; $i++) {
9654: for (my $j=0; $j<$scantron_config->{'length'}; $j++) {
9655: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9656: }
9657: }
9658: } else {
9659: my @tocheck;
9660: my @items = split(//,$value);
9661: if (($scantron_config->{'Qon'} eq 'letter') ||
9662: ($scantron_config->{'Qon'} eq 'number')) {
9663: if (@items < $expected{$part_id}) {
9664: my $fragment = substr($scandata,$startpos{$part_id},$expected{$part_id});
9665: my @singles = split(//,$fragment);
9666: foreach my $pos (@singles) {
9667: if ($pos eq ' ') {
9668: push(@tocheck,$pos);
9669: } else {
9670: my $next = shift(@items);
9671: push(@tocheck,$next);
9672: }
9673: }
9674: } else {
9675: @tocheck = @items;
9676: }
9677: foreach my $letter (@tocheck) {
9678: if ($scantron_config->{'Qon'} eq 'letter') {
9679: if ($letter !~ /^[A-J]$/) {
9680: $letter = $scantron_config->{'Qoff'};
9681: }
9682: $recorded{$part_id} .= $letter;
9683: } elsif ($scantron_config->{'Qon'} eq 'number') {
9684: my $digit;
9685: if ($letter !~ /^[A-J]$/) {
9686: $digit = $scantron_config->{'Qoff'};
9687: } else {
9688: $digit = $lettdig->{$letter};
9689: }
9690: $recorded{$part_id} .= $digit;
9691: }
9692: }
9693: } else {
9694: @tocheck = @items;
9695: for (my $i=0; $i<$expected{$part_id}; $i++) {
9696: my $curr_sub = shift(@tocheck);
9697: my $digit;
9698: if ($curr_sub =~ /^[A-J]$/) {
9699: $digit = $lettdig->{$curr_sub}-1;
9700: }
9701: if ($curr_sub eq 'J') {
9702: $digit += scalar($numletts);
9703: }
9704: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
9705: if ($j == $digit) {
9706: $recorded{$part_id} .= $scantron_config->{'Qon'};
9707: } else {
9708: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9709: }
9710: }
9711: }
9712: }
9713: }
9714: }
9715: }
9716: }
1.554 raeburn 9717: foreach my $part_id (@{$partids}) {
1.542 raeburn 9718: if ($recorded{$part_id} eq '') {
9719: for (my $i=0; $i<$expected{$part_id}; $i++) {
9720: for (my $j=0; $j<$scantron_config->{'Qlength'}; $j++) {
9721: $recorded{$part_id} .= $scantron_config->{'Qoff'};
9722: }
9723: }
9724: }
9725: $record .= $recorded{$part_id};
9726: }
9727: }
9728: return ($counter,$record);
9729: }
9730:
1.596.2.12.2. 6(raebur 9731:3): sub letter_to_digits {
1.542 raeburn 9732: my %lettdig = (
9733: A => 1,
9734: B => 2,
9735: C => 3,
9736: D => 4,
9737: E => 5,
9738: F => 6,
9739: G => 7,
9740: H => 8,
9741: I => 9,
9742: J => 0,
9743: );
9744: return %lettdig;
9745: }
9746:
1.423 albertel 9747:
1.75 albertel 9748: #-------- end of section for handling grading scantron forms -------
9749: #
9750: #-------------------------------------------------------------------
9751:
1.72 ng 9752: #-------------------------- Menu interface -------------------------
9753: #
9754: #--- Show a Grading Menu button - Calls the next routine ---
9755: sub show_grading_menu_form {
1.324 albertel 9756: my ($symb)=@_;
1.125 ng 9757: my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.418 albertel 9758: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 9759: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.72 ng 9760: '<input type="hidden" name="command" value="gradingmenu" />'."\n".
1.478 albertel 9761: '<input type="submit" name="submit" value="'.&mt('Grading Menu').'" />'."\n".
1.72 ng 9762: '</form>'."\n";
9763: return $result;
9764: }
9765:
1.77 ng 9766: # -- Retrieve choices for grading form
9767: sub savedState {
9768: my %savedState = ();
1.257 albertel 9769: if ($env{'form.saveState'}) {
9770: foreach (split(/:/,$env{'form.saveState'})) {
1.77 ng 9771: my ($key,$value) = split(/=/,$_,2);
9772: $savedState{$key} = $value;
9773: }
9774: }
9775: return \%savedState;
9776: }
1.76 ng 9777:
1.596.2.12.2. (raeburn 9778:): #--- Href with symb and command ---
9779:):
9780:): sub href_symb_cmd {
9781:): my ($symb,$cmd)=@_;
9782:): return '/adm/grades?symb='.&HTML::Entities::encode(&Apache::lonenc::check_encrypt($symb),'<>&"').'&command='.$cmd;
9783:): }
9784:):
1.443 banghart 9785: sub grading_menu {
9786: my ($request) = @_;
9787: my ($symb)=&get_symb($request);
9788: if (!$symb) {return '';}
9789: my $probTitle = &Apache::lonnet::gettitle($symb);
9790: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
9791:
1.444 banghart 9792: $request->print($table);
1.443 banghart 9793: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
9794: 'handgrade'=>$hdgrade,
9795: 'probTitle'=>$probTitle,
9796: 'command'=>'submit_options',
9797: 'saveState'=>"",
9798: 'gradingMenu'=>1,
9799: 'showgrading'=>"yes");
1.538 schulted 9800:
9801: my $url1 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9802:
1.443 banghart 9803: $fields{'command'} = 'csvform';
1.538 schulted 9804: my $url2 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9805:
1.443 banghart 9806: $fields{'command'} = 'processclicker';
1.538 schulted 9807: my $url3 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9808:
1.443 banghart 9809: $fields{'command'} = 'scantron_selectphase';
1.538 schulted 9810: my $url4 = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
9811:
9812: my @menu = ({ categorytitle=>'Course Grading',
9813: items =>[
9814: { linktext => 'Manual Grading/View Submissions',
9815: url => $url1,
9816: permission => 'F',
9817: icon => 'edit-find-replace.png',
9818: linktitle => 'Start the process of hand grading submissions.'
9819: },
9820: { linktext => 'Upload Scores',
9821: url => $url2,
9822: permission => 'F',
9823: icon => 'uploadscores.png',
9824: linktitle => 'Specify a file containing the class scores for current resource.'
9825: },
9826: { linktext => 'Process Clicker',
9827: url => $url3,
9828: permission => 'F',
9829: icon => 'addClickerInfoFile.png',
9830: linktitle => 'Specify a file containing the clicker information for this resource.'
9831: },
1.587 raeburn 9832: { linktext => 'Grade/Manage/Review Bubblesheets',
1.538 schulted 9833: url => $url4,
9834: permission => 'F',
9835: icon => 'stat.png',
1.596.2.4 raeburn 9836: linktitle => 'Grade bubblesheet exams, upload/download bubblesheet data files, and review previously graded bubblesheet exams.'
1.538 schulted 9837: }
9838: ]
9839: });
9840:
9841: #$fields{'command'} = 'verify';
9842: #$url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.443 banghart 9843: #
9844: # Create the menu
9845: my $Str;
1.444 banghart 9846: # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
1.445 banghart 9847: $Str .= '<form method="post" action="" name="gradingMenu">';
9848: $Str .= '<input type="hidden" name="command" value="" />'.
9849: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
9850: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
1.476 albertel 9851: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.445 banghart 9852: '<input type="hidden" name="saveState" value="" />'."\n".
9853: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
9854: '<input type="hidden" name="showgrading" value="yes" />'."\n";
9855:
1.538 schulted 9856: $Str .= Apache::lonhtmlcommon::generate_menu(@menu);
9857: #$menudata->{'jscript'}
1.584 bisitz 9858: $Str .='<hr /><input type="button" value="'.&mt('Verify Receipt No.').'" '.
1.589 bisitz 9859: ' onclick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
1.538 schulted 9860: ' /> '.
9861: &Apache::lonnet::recprefix($env{'request.course.id'}).
1.589 bisitz 9862: '-<input type="text" name="receipt" size="4" onchange="javascript:checkReceiptNo(this.form,\'OK\')" />';
1.538 schulted 9863:
1.444 banghart 9864: $Str .="</form>\n";
1.539 riegler 9865: my $receiptalert = &mt("Please enter a receipt number given by a student in the receipt box.");
1.443 banghart 9866: $request->print(<<GRADINGMENUJS);
9867: <script type="text/javascript" language="javascript">
9868: function checkChoice(formname,val,cmdx) {
9869: if (val <= 2) {
9870: var cmd = radioSelection(formname.radioChoice);
9871: var cmdsave = cmd;
9872: } else {
9873: cmd = cmdx;
9874: cmdsave = 'submission';
9875: }
9876: formname.command.value = cmd;
9877: if (val < 5) formname.submit();
9878: if (val == 5) {
1.458 banghart 9879: if (!checkReceiptNo(formname,'notOK')) {
9880: return false;
9881: } else {
9882: formname.submit();
9883: }
1.445 banghart 9884: }
9885: }
1.443 banghart 9886:
9887: function checkReceiptNo(formname,nospace) {
9888: var receiptNo = formname.receipt.value;
9889: var checkOpt = false;
9890: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
9891: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
9892: if (checkOpt) {
1.539 riegler 9893: alert("$receiptalert");
1.443 banghart 9894: formname.receipt.value = "";
9895: formname.receipt.focus();
9896: return false;
9897: }
9898: return true;
9899: }
9900: </script>
9901: GRADINGMENUJS
9902: &commonJSfunctions($request);
9903: return $Str;
9904: }
9905:
9906:
9907: #--- Displays the submissions first page -------
9908: sub submit_options {
1.72 ng 9909: my ($request) = @_;
1.324 albertel 9910: my ($symb)=&get_symb($request);
1.72 ng 9911: if (!$symb) {return '';}
1.76 ng 9912: my $probTitle = &Apache::lonnet::gettitle($symb);
1.72 ng 9913:
1.539 riegler 9914: my $receiptalert = &mt("Please enter a receipt number given by a student in the receipt box.");
1.72 ng 9915: $request->print(<<GRADINGMENUJS);
9916: <script type="text/javascript" language="javascript">
1.116 ng 9917: function checkChoice(formname,val,cmdx) {
9918: if (val <= 2) {
9919: var cmd = radioSelection(formname.radioChoice);
1.118 ng 9920: var cmdsave = cmd;
1.116 ng 9921: } else {
9922: cmd = cmdx;
1.118 ng 9923: cmdsave = 'submission';
1.116 ng 9924: }
9925: formname.command.value = cmd;
1.118 ng 9926: formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145 albertel 9927: ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116 ng 9928: if (val < 5) formname.submit();
9929: if (val == 5) {
1.72 ng 9930: if (!checkReceiptNo(formname,'notOK')) { return false;}
9931: formname.submit();
9932: }
1.238 albertel 9933: if (val < 7) formname.submit();
1.72 ng 9934: }
9935:
9936: function checkReceiptNo(formname,nospace) {
9937: var receiptNo = formname.receipt.value;
9938: var checkOpt = false;
9939: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
9940: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
9941: if (checkOpt) {
1.539 riegler 9942: alert("$receiptalert");
1.72 ng 9943: formname.receipt.value = "";
9944: formname.receipt.focus();
9945: return false;
9946: }
9947: return true;
9948: }
9949: </script>
9950: GRADINGMENUJS
1.118 ng 9951: &commonJSfunctions($request);
1.324 albertel 9952: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
1.473 albertel 9953: my $result;
1.76 ng 9954: my (undef,$sections) = &getclasslist('all','0');
1.77 ng 9955: my $savedState = &savedState();
1.118 ng 9956: my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77 ng 9957: my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118 ng 9958: my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77 ng 9959: my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72 ng 9960:
1.533 bisitz 9961: # Preselect sections
9962: my $selsec="";
9963: if (ref($sections)) {
9964: foreach my $section (sort(@$sections)) {
9965: $selsec.='<option value="'.$section.'" '.
9966: ($saveSec eq $section ? 'selected="selected"':'').'>'.$section.'</option>'."\n";
9967: }
9968: }
9969:
1.72 ng 9970: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.418 albertel 9971: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.72 ng 9972: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
9973: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.116 ng 9974: '<input type="hidden" name="command" value="" />'."\n".
1.77 ng 9975: '<input type="hidden" name="saveState" value="" />'."\n".
1.124 ng 9976: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72 ng 9977: '<input type="hidden" name="showgrading" value="yes" />'."\n";
9978:
1.472 albertel 9979: $result.='
1.533 bisitz 9980: <h2>
9981: '.&mt('Grade Current Resource').'
9982: </h2>
9983: <div>
9984: '.$table.'
9985: </div>
9986:
1.537 harmsja 9987: <div class="LC_columnSection">
9988:
1.533 bisitz 9989: <fieldset>
9990: <legend>
9991: '.&mt('Sections').'
9992: </legend>
9993: <select name="section" multiple="multiple" size="5">'."\n";
9994: $result.= $selsec;
1.401 albertel 9995: $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> ';
1.472 albertel 9996: $result.='
1.533 bisitz 9997: </fieldset>
1.537 harmsja 9998:
1.533 bisitz 9999: <fieldset>
10000: <legend>
10001: '.&mt('Groups').'
10002: </legend>
10003: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
10004: </fieldset>
1.537 harmsja 10005:
1.533 bisitz 10006: <fieldset>
10007: <legend>
10008: '.&mt('Access Status').'
10009: </legend>
10010: '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'
10011: </fieldset>
1.537 harmsja 10012:
1.533 bisitz 10013: <fieldset>
10014: <legend>
10015: '.&mt('Submission Status').'
10016: </legend>
10017: <select name="submitonly" size="5">
1.473 albertel 10018: <option value="yes" '. ($saveSub eq 'yes' ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>
10019: <option value="queued" '. ($saveSub eq 'queued' ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>
10020: <option value="graded" '. ($saveSub eq 'graded' ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>
10021: <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>
10022: <option value="all" '. ($saveSub eq 'all' ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>
1.533 bisitz 10023: </select>
10024: </fieldset>
1.537 harmsja 10025:
1.533 bisitz 10026: </div>
10027:
10028: <br />
10029: <div>
10030: <div>
1.473 albertel 10031: <label>
10032: <input type="radio" name="radioChoice" value="submission" '.
10033: ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.
10034: &mt('Select individual students to grade and view submissions.').'
10035: </label>
10036: </div>
1.533 bisitz 10037: <div>
1.473 albertel 10038: <label>
10039: <input type="radio" name="radioChoice" value="viewgrades" '.
10040: ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
10041: &mt('Grade all selected students in a grading table.').'
10042: </label>
10043: </div>
1.533 bisitz 10044: <div>
1.589 bisitz 10045: <input type="button" onclick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next').' →" />
1.473 albertel 10046: </div>
1.472 albertel 10047: </div>
1.533 bisitz 10048:
10049:
1.473 albertel 10050: <h2>
10051: '.&mt('Grade Complete Folder for One Student').'
10052: </h2>
1.533 bisitz 10053: <div>
10054: <div>
1.473 albertel 10055: <label>
10056: <input type="radio" name="radioChoice" value="pickStudentPage" '.
10057: ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
10058: &mt('The <b>complete</b> page/sequence/folder: For one student').'
10059: </label>
10060: </div>
1.533 bisitz 10061: <div>
1.589 bisitz 10062: <input type="button" onclick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next').' →" />
1.473 albertel 10063: </div>
1.472 albertel 10064: </div>
10065: </form>';
1.499 albertel 10066: $result .= &show_grading_menu_form($symb);
1.44 ng 10067: return $result;
1.2 albertel 10068: }
10069:
1.596.2.12.2. 7(raebur 10070:6): sub substatus_options {
10071:6): return &Apache::lonlocal::texthash(
10072:6): 'yes' => 'with submissions',
10073:6): 'queued' => 'in grading queue',
10074:6): 'graded' => 'with ungraded submissions',
10075:6): 'incorrect' => 'with incorrect submissions',
0(raebur 10076:7): 'all' => 'with any status',
10077:7): );
7(raebur 10078:6): }
10079:6):
1.285 albertel 10080: sub reset_perm {
10081: undef(%perm);
10082: }
10083:
10084: sub init_perm {
10085: &reset_perm();
1.300 albertel 10086: foreach my $test_perm ('vgr','mgr','opa') {
10087:
10088: my $scope = $env{'request.course.id'};
10089: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
10090:
10091: $scope .= '/'.$env{'request.course.sec'};
10092: if ( $perm{$test_perm}=
10093: &Apache::lonnet::allowed($test_perm,$scope)) {
10094: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
10095: } else {
10096: delete($perm{$test_perm});
10097: }
1.285 albertel 10098: }
10099: }
10100: }
10101:
1.596.2.12.2. (raeburn 10102:): sub init_old_essays {
10103:): my ($symb,$apath,$adom,$aname) = @_;
10104:): if ($symb ne '') {
10105:): my %essays = &Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
10106:): if (keys(%essays) > 0) {
10107:): $old_essays{$symb} = \%essays;
10108:): }
10109:): }
10110:): return;
10111:): }
10112:):
10113:): sub reset_old_essays {
10114:): undef(%old_essays);
10115:): }
10116:):
1.400 www 10117: sub gather_clicker_ids {
1.408 albertel 10118: my %clicker_ids;
1.400 www 10119:
10120: my $classlist = &Apache::loncoursedata::get_classlist();
10121:
10122: # Set up a couple variables.
1.407 albertel 10123: my $username_idx = &Apache::loncoursedata::CL_SNAME();
10124: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 10125: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 10126:
1.407 albertel 10127: foreach my $student (keys(%$classlist)) {
1.438 www 10128: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 10129: my $username = $classlist->{$student}->[$username_idx];
10130: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 10131: my $clickers =
1.408 albertel 10132: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 10133: foreach my $id (split(/\,/,$clickers)) {
1.414 www 10134: $id=~s/^[\#0]+//;
1.421 www 10135: $id=~s/[\-\:]//g;
1.407 albertel 10136: if (exists($clicker_ids{$id})) {
1.408 albertel 10137: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 10138: } else {
1.408 albertel 10139: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 10140: }
10141: }
10142: }
1.407 albertel 10143: return %clicker_ids;
1.400 www 10144: }
10145:
1.402 www 10146: sub gather_adv_clicker_ids {
1.408 albertel 10147: my %clicker_ids;
1.402 www 10148: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
10149: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
10150: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 10151: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 10152: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
10153: my ($puname,$pudom)=split(/\:/,$person);
10154: my $clickers =
1.408 albertel 10155: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 10156: foreach my $id (split(/\,/,$clickers)) {
1.414 www 10157: $id=~s/^[\#0]+//;
1.421 www 10158: $id=~s/[\-\:]//g;
1.408 albertel 10159: if (exists($clicker_ids{$id})) {
10160: $clicker_ids{$id}.=','.$puname.':'.$pudom;
10161: } else {
10162: $clicker_ids{$id}=$puname.':'.$pudom;
10163: }
1.405 www 10164: }
1.402 www 10165: }
10166: }
1.407 albertel 10167: return %clicker_ids;
1.402 www 10168: }
10169:
1.413 www 10170: sub clicker_grading_parameters {
10171: return ('gradingmechanism' => 'scalar',
10172: 'upfiletype' => 'scalar',
10173: 'specificid' => 'scalar',
10174: 'pcorrect' => 'scalar',
10175: 'pincorrect' => 'scalar');
10176: }
10177:
1.400 www 10178: sub process_clicker {
10179: my ($r)=@_;
10180: my ($symb)=&get_symb($r);
10181: if (!$symb) {return '';}
10182: my $result=&checkforfile_js();
10183: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
10184: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
10185: $result.=$table;
10186: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
10187: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.538 schulted 10188: $result.=' <b>'.&mt('Specify a file containing the clicker information for this resource.').
10189: '</b></td></tr>'."\n";
1.596.2.4 raeburn 10190: $result.='<tr bgcolor="#ffffe6"><td>'."\n";
1.413 www 10191: # Attempt to restore parameters from last session, set defaults if not present
10192: my %Saveable_Parameters=&clicker_grading_parameters();
10193: &Apache::loncommon::restore_course_settings('grades_clicker',
10194: \%Saveable_Parameters);
10195: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
10196: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
10197: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
10198: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
10199:
10200: my %checked;
1.521 www 10201: foreach my $gradingmechanism ('attendance','personnel','specific','given') {
1.413 www 10202: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
1.569 bisitz 10203: $checked{$gradingmechanism}=' checked="checked"';
1.413 www 10204: }
10205: }
10206:
1.400 www 10207: my $upload=&mt("Upload File");
10208: my $type=&mt("Type");
1.402 www 10209: my $attendance=&mt("Award points just for participation");
10210: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 10211: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.521 www 10212: my $given=&mt("Correctness determined from given list of answers").' '.
10213: '<font size="-2"><tt>('.&mt("Provide comma-separated list. Use '*' for any answer correct, '-' for skip").')</tt></font>';
1.402 www 10214: my $pcorrect=&mt("Percentage points for correct solution");
10215: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 10216: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.596.2.1 raeburn 10217: {'iclicker' => 'i>clicker',
1.596.2.12.2. (raeburn 10218:): 'interwrite' => 'interwrite PRS',
10219:): 'turning' => 'Turning Technologies'});
1.418 albertel 10220: $symb = &Apache::lonenc::check_encrypt($symb);
1.400 www 10221: $result.=<<ENDUPFORM;
1.402 www 10222: <script type="text/javascript">
10223: function sanitycheck() {
10224: // Accept only integer percentages
10225: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
10226: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
10227: // Find out grading choice
10228: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
10229: if (document.forms.gradesupload.gradingmechanism[i].checked) {
10230: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
10231: }
10232: }
10233: // By default, new choice equals user selection
10234: newgradingchoice=gradingchoice;
10235: // Not good to give more points for false answers than correct ones
10236: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
10237: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
10238: }
10239: // If new choice is attendance only, and old choice was correctness-based, restore defaults
10240: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
10241: document.forms.gradesupload.pcorrect.value=100;
10242: document.forms.gradesupload.pincorrect.value=100;
10243: }
10244: // If the values are different, cannot be attendance only
10245: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
10246: (gradingchoice=='attendance')) {
10247: newgradingchoice='personnel';
10248: }
10249: // Change grading choice to new one
10250: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
10251: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
10252: document.forms.gradesupload.gradingmechanism[i].checked=true;
10253: } else {
10254: document.forms.gradesupload.gradingmechanism[i].checked=false;
10255: }
10256: }
10257: // Remember the old state
10258: document.forms.gradesupload.waschecked.value=newgradingchoice;
10259: }
10260: </script>
1.400 www 10261: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
10262: <input type="hidden" name="symb" value="$symb" />
10263: <input type="hidden" name="command" value="processclickerfile" />
10264: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
10265: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
10266: <input type="file" name="upfile" size="50" />
10267: <br /><label>$type: $selectform</label>
1.589 bisitz 10268: <br /><label><input type="radio" name="gradingmechanism" value="attendance"$checked{'attendance'} onclick="sanitycheck()" />$attendance </label>
10269: <br /><label><input type="radio" name="gradingmechanism" value="personnel"$checked{'personnel'} onclick="sanitycheck()" />$personnel</label>
10270: <br /><label><input type="radio" name="gradingmechanism" value="specific"$checked{'specific'} onclick="sanitycheck()" />$specific </label>
1.414 www 10271: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.589 bisitz 10272: <br /><label><input type="radio" name="gradingmechanism" value="given"$checked{'given'} onclick="sanitycheck()" />$given </label>
1.521 www 10273: <br />
10274: <input type="text" name="givenanswer" size="50" />
1.413 www 10275: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
1.589 bisitz 10276: <br /><label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onchange="sanitycheck()" /></label>
10277: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onchange="sanitycheck()" /></label>
10278: <br /><input type="button" onclick="javascript:checkUpload(this.form);" value="$upload" />
1.400 www 10279: </form>
10280: ENDUPFORM
10281: $result.='</td></tr></table>'."\n".
10282: '</td></tr></table><br /><br />'."\n";
10283: $result.=&show_grading_menu_form($symb);
10284: return $result;
10285: }
10286:
10287: sub process_clicker_file {
10288: my ($r)=@_;
10289: my ($symb)=&get_symb($r);
10290: if (!$symb) {return '';}
1.413 www 10291:
10292: my %Saveable_Parameters=&clicker_grading_parameters();
10293: &Apache::loncommon::store_course_settings('grades_clicker',
10294: \%Saveable_Parameters);
10295:
1.400 www 10296: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.404 www 10297: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 10298: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
10299: return $result.&show_grading_menu_form($symb);
1.404 www 10300: }
1.522 www 10301: if (($env{'form.gradingmechanism'} eq 'given') && ($env{'form.givenanswer'}!~/\S/)) {
1.521 www 10302: $result.='<span class="LC_error">'.&mt('You need to specify the correct answer').'</span>';
10303: return $result.&show_grading_menu_form($symb);
10304: }
1.522 www 10305: my $foundgiven=0;
1.521 www 10306: if ($env{'form.gradingmechanism'} eq 'given') {
10307: $env{'form.givenanswer'}=~s/^\s*//gs;
10308: $env{'form.givenanswer'}=~s/\s*$//gs;
1.596.2.4 raeburn 10309: $env{'form.givenanswer'}=~s/[^a-zA-Z0-9\.\*\-\+]+/\,/g;
1.521 www 10310: $env{'form.givenanswer'}=uc($env{'form.givenanswer'});
1.522 www 10311: my @answers=split(/\,/,$env{'form.givenanswer'});
10312: $foundgiven=$#answers+1;
1.521 www 10313: }
1.407 albertel 10314: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 10315: my %correct_ids;
1.404 www 10316: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 10317: %correct_ids=&gather_adv_clicker_ids();
1.404 www 10318: }
10319: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 10320: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
10321: $correct_id=~tr/a-z/A-Z/;
10322: $correct_id=~s/\s//gs;
10323: $correct_id=~s/^[\#0]+//;
1.421 www 10324: $correct_id=~s/[\-\:]//g;
1.414 www 10325: if ($correct_id) {
10326: $correct_ids{$correct_id}='specified';
10327: }
10328: }
1.400 www 10329: }
1.404 www 10330: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 10331: $result.=&mt('Score based on attendance only');
1.521 www 10332: } elsif ($env{'form.gradingmechanism'} eq 'given') {
1.522 www 10333: $result.=&mt('Score based on [_1] ([_2] answers)','<tt>'.$env{'form.givenanswer'}.'</tt>',$foundgiven);
1.404 www 10334: } else {
1.408 albertel 10335: my $number=0;
1.411 www 10336: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 10337: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 10338: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 10339: if ($correct_ids{$id} eq 'specified') {
10340: $result.=&mt('specified');
10341: } else {
10342: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
10343: $result.=&Apache::loncommon::plainname($uname,$udom);
10344: }
10345: $number++;
10346: }
1.411 www 10347: $result.="</p>\n";
1.596.2.12.2. 5(raebur 10348:3): if ($number==0) {
10349:3): $result .=
10350:3): &Apache::lonhtmlcommon::confirm_success(
10351:3): &mt('No IDs found to determine correct answer'),1);
7(raebur 10352:9): return $result.&show_grading_menu_form($symb);
5(raebur 10353:3): }
1.404 www 10354: }
1.405 www 10355: if (length($env{'form.upfile'}) < 2) {
1.596.2.12.2. 5(raebur 10356:3): $result .=
10357:3): &Apache::lonhtmlcommon::confirm_success(
10358:3): &mt('The file: [_1] you attempted to upload contained no information. Please check that you entered the correct filename.',
10359:3): '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>'),1);
1.405 www 10360: return $result.&show_grading_menu_form($symb);
10361: }
1.596.2.12.2. 7(raebur 10362:9): my $mimetype;
10363:9): if ($env{'form.upfiletype'} eq 'iclicker') {
10364:9): my $mm = new File::MMagic;
10365:9): $mimetype = $mm->checktype_contents($env{'form.upfile'});
10366:9): unless (($mimetype eq 'text/plain') || ($mimetype eq 'text/html')) {
10367:9): $result.= '<p>'.
10368:9): &Apache::lonhtmlcommon::confirm_success(
10369:9): &mt('File format is neither csv (iclicker 6) nor xml (iclicker 7)'),1).'</p>';
10370:9): return $result.&show_grading_menu_form($symb);
10371:9): }
10372:9): } elsif (($env{'form.upfiletype'} ne 'interwrite') && ($env{'form.upfiletype'} ne 'turning')) {
10373:9): $result .= '<p>'.
10374:9): &Apache::lonhtmlcommon::confirm_success(
10375:9): &mt('Invalid clicker type: choose one of: i>clicker, Interwrite PRS, or Turning Technologies.'),1).'</p>';
10376:9): return $result.&show_grading_menu_form($symb);
10377:9): }
1.410 www 10378:
10379: # Were able to get all the info needed, now analyze the file
10380:
1.411 www 10381: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 10382: $symb = &Apache::lonenc::check_encrypt($symb);
1.410 www 10383: my $heading=&mt('Scanning clicker file');
10384: $result.=(<<ENDHEADER);
10385: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
10386: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
1.596.2.4 raeburn 10387: <b>$heading</b></td></tr><tr bgcolor="#ffffe6"><td>
1.410 www 10388: <form method="post" action="/adm/grades" name="clickeranalysis">
10389: <input type="hidden" name="symb" value="$symb" />
10390: <input type="hidden" name="command" value="assignclickergrades" />
10391: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
10392: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.411 www 10393: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
10394: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
10395: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 10396: ENDHEADER
1.522 www 10397: if ($env{'form.gradingmechanism'} eq 'given') {
10398: $result.='<input type="hidden" name="correct:given" value="'.$env{'form.givenanswer'}.'" />';
10399: }
1.408 albertel 10400: my %responses;
10401: my @questiontitles;
1.405 www 10402: my $errormsg='';
10403: my $number=0;
10404: if ($env{'form.upfiletype'} eq 'iclicker') {
1.596.2.12.2. 7(raebur 10405:9): if ($mimetype eq 'text/plain') {
10406:9): ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
10407:9): } elsif ($mimetype eq 'text/html') {
10408:9): ($errormsg,$number)=&iclickerxml_eval(\@questiontitles,\%responses);
10409:9): }
10410:9): } elsif ($env{'form.upfiletype'} eq 'interwrite') {
1.419 www 10411: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
1.596.2.12.2. 7(raebur 10412:9): } elsif ($env{'form.upfiletype'} eq 'turning') {
(raeburn 10413:): ($errormsg,$number)=&turning_eval(\@questiontitles,\%responses);
10414:): }
1.411 www 10415: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
10416: '<input type="hidden" name="number" value="'.$number.'" />'.
10417: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
10418: $env{'form.pcorrect'},$env{'form.pincorrect'}).
10419: '<br />';
1.522 www 10420: if (($env{'form.gradingmechanism'} eq 'given') && ($number!=$foundgiven)) {
10421: $result.='<span class="LC_error">'.&mt('Number of given answers does not agree with number of questions in file.').'</span>';
10422: return $result.&show_grading_menu_form($symb);
10423: }
1.414 www 10424: # Remember Question Titles
10425: # FIXME: Possibly need delimiter other than ":"
10426: for (my $i=0;$i<$number;$i++) {
10427: $result.='<input type="hidden" name="question:'.$i.'" value="'.
10428: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
10429: }
1.411 www 10430: my $correct_count=0;
10431: my $student_count=0;
10432: my $unknown_count=0;
1.414 www 10433: # Match answers with usernames
10434: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 10435: foreach my $id (keys(%responses)) {
1.410 www 10436: if ($correct_ids{$id}) {
1.414 www 10437: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 10438: $correct_count++;
1.410 www 10439: } elsif ($clicker_ids{$id}) {
1.437 www 10440: if ($clicker_ids{$id}=~/\,/) {
10441: # More than one user with the same clicker!
10442: $result.="\n<hr />".&mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
10443: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10444: "<select name='multi".$id."'>";
10445: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
10446: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
10447: }
10448: $result.='</select>';
10449: $unknown_count++;
10450: } else {
10451: # Good: found one and only one user with the right clicker
10452: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
10453: $student_count++;
10454: }
1.410 www 10455: } else {
1.411 www 10456: $result.="\n<hr />".&mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
10457: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
10458: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
10459: "\n".&mt("Domain").": ".
10460: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
1.596.2.4 raeburn 10461: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id,0,$id);
1.411 www 10462: $unknown_count++;
1.410 www 10463: }
1.405 www 10464: }
1.412 www 10465: $result.='<hr />'.
10466: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
1.521 www 10467: if (($env{'form.gradingmechanism'} ne 'attendance') && ($env{'form.gradingmechanism'} ne 'given')) {
1.412 www 10468: if ($correct_count==0) {
1.596.2.12.2. 8(raebur 10469:3): $errormsg.="Found no correct answers for grading!";
1.412 www 10470: } elsif ($correct_count>1) {
1.414 www 10471: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 10472: }
10473: }
1.428 www 10474: if ($number<1) {
10475: $errormsg.="Found no questions.";
10476: }
1.412 www 10477: if ($errormsg) {
10478: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
10479: } else {
10480: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
10481: }
10482: $result.='</form></td></tr></table>'."\n".
1.410 www 10483: '</td></tr></table><br /><br />'."\n";
1.404 www 10484: return $result.&show_grading_menu_form($symb);
1.400 www 10485: }
10486:
1.405 www 10487: sub iclicker_eval {
1.406 www 10488: my ($questiontitles,$responses)=@_;
1.405 www 10489: my $number=0;
10490: my $errormsg='';
10491: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 10492: my %components=&Apache::loncommon::record_sep($line);
10493: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 10494: if ($entries[0] eq 'Question') {
10495: for (my $i=3;$i<$#entries;$i+=6) {
10496: $$questiontitles[$number]=$entries[$i];
10497: $number++;
10498: }
10499: }
10500: if ($entries[0]=~/^\#/) {
10501: my $id=$entries[0];
10502: my @idresponses;
10503: $id=~s/^[\#0]+//;
10504: for (my $i=0;$i<$number;$i++) {
10505: my $idx=3+$i*6;
1.596.2.4 raeburn 10506: $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+]+//g;
1.408 albertel 10507: push(@idresponses,$entries[$idx]);
10508: }
10509: $$responses{$id}=join(',',@idresponses);
10510: }
1.405 www 10511: }
10512: return ($errormsg,$number);
10513: }
10514:
1.596.2.12.2. 7(raebur 10515:9): sub iclickerxml_eval {
10516:9): my ($questiontitles,$responses)=@_;
10517:9): my $number=0;
10518:9): my $errormsg='';
10519:9): my @state;
10520:9): my %respbyid;
10521:9): my $p = HTML::Parser->new
10522:9): (
10523:9): xml_mode => 1,
10524:9): start_h =>
10525:9): [sub {
10526:9): my ($tagname,$attr) = @_;
10527:9): push(@state,$tagname);
10528:9): if ("@state" eq "ssn p") {
10529:9): my $title = $attr->{qn};
10530:9): $title =~ s/(^\s+|\s+$)//g;
10531:9): $questiontitles->[$number]=$title;
10532:9): } elsif ("@state" eq "ssn p v") {
10533:9): my $id = $attr->{id};
10534:9): my $entry = $attr->{ans};
10535:9): $id=~s/^[\#0]+//;
10536:9): $entry =~s/[^a-zA-Z0-9\.\*\-\+]+//g;
10537:9): $respbyid{$id}[$number] = $entry;
10538:9): }
10539:9): }, "tagname, attr"],
10540:9): end_h =>
10541:9): [sub {
10542:9): my ($tagname) = @_;
10543:9): if ("@state" eq "ssn p") {
10544:9): $number++;
10545:9): }
10546:9): pop(@state);
10547:9): }, "tagname"],
10548:9): );
10549:9):
10550:9): $p->parse($env{'form.upfile'});
10551:9): $p->eof;
10552:9): foreach my $id (keys(%respbyid)) {
10553:9): $responses->{$id}=join(',',@{$respbyid{$id}});
10554:9): }
10555:9): return ($errormsg,$number);
10556:9): }
10557:9):
1.419 www 10558: sub interwrite_eval {
10559: my ($questiontitles,$responses)=@_;
10560: my $number=0;
10561: my $errormsg='';
1.420 www 10562: my $skipline=1;
10563: my $questionnumber=0;
10564: my %idresponses=();
1.419 www 10565: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10566: my %components=&Apache::loncommon::record_sep($line);
10567: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 10568: if ($entries[1] eq 'Time') { $skipline=0; next; }
10569: if ($entries[1] eq 'Response') { $skipline=1; }
10570: next if $skipline;
10571: if ($entries[0]!=$questionnumber) {
10572: $questionnumber=$entries[0];
10573: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
10574: $number++;
1.419 www 10575: }
1.420 www 10576: my $id=$entries[4];
10577: $id=~s/^[\#0]+//;
1.421 www 10578: $id=~s/^v\d*\://i;
10579: $id=~s/[\-\:]//g;
1.420 www 10580: $idresponses{$id}[$number]=$entries[6];
10581: }
1.524 raeburn 10582: foreach my $id (keys(%idresponses)) {
1.420 www 10583: $$responses{$id}=join(',',@{$idresponses{$id}});
10584: $$responses{$id}=~s/^\s*\,//;
1.419 www 10585: }
10586: return ($errormsg,$number);
10587: }
10588:
1.596.2.12.2. (raeburn 10589:): sub turning_eval {
10590:): my ($questiontitles,$responses)=@_;
10591:): my $number=0;
10592:): my $errormsg='';
10593:): foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
10594:): my %components=&Apache::loncommon::record_sep($line);
10595:): my @entries=map {$components{$_}} (sort(keys(%components)));
10596:): if ($#entries>$number) { $number=$#entries; }
10597:): my $id=$entries[0];
10598:): my @idresponses;
10599:): $id=~s/^[\#0]+//;
10600:): unless ($id) { next; }
10601:): for (my $idx=1;$idx<=$#entries;$idx++) {
10602:): $entries[$idx]=~s/\,/\;/g;
10603:): $entries[$idx]=~s/[^a-zA-Z0-9\.\*\-\+\;]+//g;
10604:): push(@idresponses,$entries[$idx]);
10605:): }
10606:): $$responses{$id}=join(',',@idresponses);
10607:): }
10608:): for (my $i=1; $i<=$number; $i++) {
10609:): $$questiontitles[$i]=&mt('Question [_1]',$i);
10610:): }
10611:): return ($errormsg,$number);
10612:): }
10613:):
1.414 www 10614: sub assign_clicker_grades {
10615: my ($r)=@_;
10616: my ($symb)=&get_symb($r);
10617: if (!$symb) {return '';}
1.416 www 10618: # See which part we are saving to
1.582 raeburn 10619: my $res_error;
10620: my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error);
10621: if ($res_error) {
10622: return &navmap_errormsg();
10623: }
1.416 www 10624: # FIXME: This should probably look for the first handgradeable part
10625: my $part=$$partlist[0];
10626: # Start screen output
1.596.2.10 raeburn 10627: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.596.2.4 raeburn 10628:
1.596.2.10 raeburn 10629: $result .= '<br />'.
10630: &Apache::loncommon::start_data_table().
1.596.2.4 raeburn 10631: &Apache::loncommon::start_data_table_header_row().
10632: '<th>'.&mt('Assigning grades based on clicker file').'</th>'.
10633: &Apache::loncommon::end_data_table_header_row().
10634: &Apache::loncommon::start_data_table_row().'<td>';
1.416 www 10635:
1.414 www 10636: # Get correct result
10637: # FIXME: Possibly need delimiter other than ":"
10638: my @correct=();
1.415 www 10639: my $gradingmechanism=$env{'form.gradingmechanism'};
10640: my $number=$env{'form.number'};
10641: if ($gradingmechanism ne 'attendance') {
1.414 www 10642: foreach my $key (keys(%env)) {
10643: if ($key=~/^form\.correct\:/) {
10644: my @input=split(/\,/,$env{$key});
10645: for (my $i=0;$i<=$#input;$i++) {
10646: if (($correct[$i]) && ($input[$i]) &&
10647: ($correct[$i] ne $input[$i])) {
10648: $result.='<br /><span class="LC_warning">'.
10649: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
10650: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
1.596.2.4 raeburn 10651: } elsif (($input[$i]) || ($input[$i] eq '0')) {
1.414 www 10652: $correct[$i]=$input[$i];
10653: }
10654: }
10655: }
10656: }
1.415 www 10657: for (my $i=0;$i<$number;$i++) {
1.596.2.4 raeburn 10658: if ((!$correct[$i]) && ($correct[$i] ne '0')) {
1.414 www 10659: $result.='<br /><span class="LC_error">'.
10660: &mt('No correct result given for question "[_1]"!',
10661: $env{'form.question:'.$i}).'</span>';
10662: }
10663: }
1.596.2.4 raeburn 10664: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ((($_) || ($_ eq '0'))?$_:'-') } @correct));
1.414 www 10665: }
10666: # Start grading
1.415 www 10667: my $pcorrect=$env{'form.pcorrect'};
10668: my $pincorrect=$env{'form.pincorrect'};
1.416 www 10669: my $storecount=0;
1.596.2.4 raeburn 10670: my %users=();
1.415 www 10671: foreach my $key (keys(%env)) {
1.420 www 10672: my $user='';
1.415 www 10673: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 10674: $user=$1;
10675: }
10676: if ($key=~/^form\.unknown\:(.*)$/) {
10677: my $id=$1;
10678: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
10679: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 10680: } elsif ($env{'form.multi'.$id}) {
10681: $user=$env{'form.multi'.$id};
1.420 www 10682: }
10683: }
1.596.2.4 raeburn 10684: if ($user) {
10685: if ($users{$user}) {
10686: $result.='<br /><span class="LC_warning">'.
1.596.2.12.2. 8(raebur 10687:3): &mt('More than one entry found for [_1]!','<tt>'.$user.'</tt>').
1.596.2.4 raeburn 10688: '</span><br />';
10689: }
10690: $users{$user}=1;
1.415 www 10691: my @answer=split(/\,/,$env{$key});
10692: my $sum=0;
1.522 www 10693: my $realnumber=$number;
1.415 www 10694: for (my $i=0;$i<$number;$i++) {
1.576 www 10695: if ($correct[$i] eq '-') {
10696: $realnumber--;
10697: } elsif ($answer[$i]) {
1.415 www 10698: if ($gradingmechanism eq 'attendance') {
10699: $sum+=$pcorrect;
1.576 www 10700: } elsif ($correct[$i] eq '*') {
1.522 www 10701: $sum+=$pcorrect;
1.415 www 10702: } else {
1.596.2.4 raeburn 10703: # We actually grade if correct or not
10704: my $increment=$pincorrect;
10705: # Special case: numerical answer "0"
10706: if ($correct[$i] eq '0') {
10707: if ($answer[$i]=~/^[0\.]+$/) {
10708: $increment=$pcorrect;
10709: }
10710: # General numerical answer, both evaluate to something non-zero
10711: } elsif ((1.0*$correct[$i]!=0) && (1.0*$answer[$i]!=0)) {
10712: if (1.0*$correct[$i]==1.0*$answer[$i]) {
10713: $increment=$pcorrect;
10714: }
10715: # Must be just alphanumeric
10716: } elsif ($answer[$i] eq $correct[$i]) {
10717: $increment=$pcorrect;
1.415 www 10718: }
1.596.2.4 raeburn 10719: $sum+=$increment;
1.415 www 10720: }
10721: }
10722: }
1.522 www 10723: my $ave=$sum/(100*$realnumber);
1.416 www 10724: # Store
10725: my ($username,$domain)=split(/\:/,$user);
10726: my %grades=();
10727: $grades{"resource.$part.solved"}='correct_by_override';
10728: $grades{"resource.$part.awarded"}=$ave;
10729: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
10730: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
10731: $env{'request.course.id'},
10732: $domain,$username);
10733: if ($returncode ne 'ok') {
10734: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
10735: } else {
10736: $storecount++;
10737: }
1.415 www 10738: }
10739: }
10740: # We are done
1.549 hauer 10741: $result.='<br />'.&mt('Successfully stored grades for [quant,_1,student].',$storecount).
1.596.2.4 raeburn 10742: '</td>'.
10743: &Apache::loncommon::end_data_table_row().
10744: &Apache::loncommon::end_data_table()."<br /><br />\n";
1.414 www 10745: return $result.&show_grading_menu_form($symb);
10746: }
10747:
1.582 raeburn 10748: sub navmap_errormsg {
10749: return '<div class="LC_error">'.
10750: &mt('An error occurred retrieving information about resources in the course.').'<br />'.
1.595 raeburn 10751: &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 10752: '</div>';
10753: }
10754:
1.596.2.12.2. (raeburn 10755:): sub startpage {
10756:): my ($r,$symb,$crumbs,$onlyfolderflag,$nodisplayflag,$stuvcurrent,$stuvdisp,$nomenu,$js) = @_;
10757:): if ($nomenu) {
10758:): $r->print(&Apache::loncommon::start_page("Student's Version",$js,{'only_body' => '1'}));
10759:): } else {
10760:): $r->print(&Apache::loncommon::start_page('Grading',$js,
10761:): {'bread_crumbs' => $crumbs}));
10762:): }
10763:): unless ($nodisplayflag) {
10764:): $r->print(&Apache::lonhtmlcommon::resource_info_box($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp));
10765:): }
10766:): }
10767:):
1.1 albertel 10768: sub handler {
1.41 ng 10769: my $request=$_[0];
1.434 albertel 10770: &reset_caches();
1.596.2.4 raeburn 10771: if ($request->header_only) {
10772: &Apache::loncommon::content_type($request,'text/html');
10773: $request->send_http_header;
10774: return OK;
1.41 ng 10775: }
10776: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.596.2.4 raeburn 10777:
1.324 albertel 10778: my $symb=&get_symb($request,1);
1.160 albertel 10779: my @commands=&Apache::loncommon::get_env_multiple('form.command');
10780: my $command=$commands[0];
1.447 foxr 10781:
1.160 albertel 10782: if ($#commands > 0) {
10783: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
10784: }
1.447 foxr 10785:
1.513 foxr 10786: $ssi_error = 0;
1.535 raeburn 10787: my $brcrum = [{href=>"/adm/grades",text=>"Grading"}];
1.596.2.4 raeburn 10788: my $start_page = &Apache::loncommon::start_page('Grading',undef,
1.596.2.12.2. (raeburn 10789:): {'bread_crumbs' => $brcrum});
1.324 albertel 10790: if ($symb eq '' && $command eq '') {
1.257 albertel 10791: if ($env{'user.adv'}) {
1.596.2.4 raeburn 10792: &Apache::loncommon::content_type($request,'text/html');
10793: $request->send_http_header;
10794: $request->print($start_page);
1.257 albertel 10795: if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
10796: ($env{'form.codethree'})) {
10797: my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
10798: $env{'form.codethree'};
1.41 ng 10799: my ($tsymb,$tuname,$tudom,$tcrsid)=
10800: &Apache::lonnet::checkin($token);
10801: if ($tsymb) {
1.137 albertel 10802: my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41 ng 10803: if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.513 foxr 10804: $request->print(&ssi_with_retries('/res/'.$url, $ssi_retries,
1.99 albertel 10805: ('grade_username' => $tuname,
10806: 'grade_domain' => $tudom,
10807: 'grade_courseid' => $tcrsid,
10808: 'grade_symb' => $tsymb)));
1.41 ng 10809: } else {
1.45 ng 10810: $request->print('<h3>Not authorized: '.$token.'</h3>');
1.99 albertel 10811: }
1.41 ng 10812: } else {
1.45 ng 10813: $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41 ng 10814: }
1.14 www 10815: } else {
1.41 ng 10816: $request->print(&Apache::lonxml::tokeninputfield());
10817: }
1.596.2.4 raeburn 10818: } elsif ($env{'request.course.id'}) {
10819: &init_perm();
10820: if (!%perm) {
10821: $request->internal_redirect('/adm/quickgrades');
1.596.2.12.2. 3(raebur 10822:3): return OK;
1.596.2.4 raeburn 10823: } else {
10824: &Apache::loncommon::content_type($request,'text/html');
10825: $request->send_http_header;
10826: $request->print($start_page);
10827: }
10828: }
1.41 ng 10829: } else {
1.596.2.4 raeburn 10830: &init_perm();
10831: if (!$env{'request.course.id'}) {
1.596.2.11 raeburn 10832: unless ((&Apache::lonnet::allowed('usc',$env{'request.role.domain'})) &&
10833: ($command =~ /^scantronupload/)) {
10834: # Not in a course.
10835: $env{'user.error.msg'}="/adm/grades::vgr:0:0:Cannot display grades page outside course context";
10836: return HTTP_NOT_ACCEPTABLE;
10837: }
1.596.2.4 raeburn 10838: } elsif (!%perm) {
10839: $request->internal_redirect('/adm/quickgrades');
10840: }
10841: &Apache::loncommon::content_type($request,'text/html');
10842: $request->send_http_header;
1.596.2.12.2. (raeburn 10843:): unless ((($command eq 'submission' || $command eq 'versionsub')) && ($perm{'vgr'})) {
10844:): $request->print($start_page);
10845:): }
1.104 albertel 10846: if ($command eq 'submission' && $perm{'vgr'}) {
1.596.2.12.2. (raeburn 10847:): my ($stuvcurrent,$stuvdisp,$versionform,$js);
10848:): if (($env{'form.student'} ne '') && ($env{'form.userdom'} ne '')) {
10849:): ($stuvcurrent,$stuvdisp,$versionform,$js) =
10850:): &choose_task_version_form($symb,$env{'form.student'},
10851:): $env{'form.userdom'});
10852:): }
10853:): &startpage($request,$symb,[{href=>"", text=>"Student Submissions"}],undef,undef,$stuvcurrent,$stuvdisp,undef,$js);
10854:): if ($versionform) {
10855:): $request->print($versionform);
10856:): }
10857:): $request->print('<br clear="all" />');
1.257 albertel 10858: ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.596.2.12.2. (raeburn 10859:): } elsif ($command eq 'versionsub' && $perm{'vgr'}) {
10860:): my ($stuvcurrent,$stuvdisp,$versionform,$js) =
10861:): &choose_task_version_form($symb,$env{'form.student'},
10862:): $env{'form.userdom'},
10863:): $env{'form.inhibitmenu'});
10864:): &startpage($request,$symb,[{href=>"", text=>"Previous Student Version"}],undef,undef,$stuvcurrent,$stuvdisp,$env{'form.inhibitmenu'},$js);
10865:): if ($versionform) {
10866:): $request->print($versionform);
10867:): }
10868:): $request->print('<br clear="all" />');
10869:): $request->print(&show_previous_task_version($request,$symb));
1.103 albertel 10870: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68 ng 10871: &pickStudentPage($request);
1.103 albertel 10872: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68 ng 10873: &displayPage($request);
1.104 albertel 10874: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71 ng 10875: &updateGradeByPage($request);
1.104 albertel 10876: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41 ng 10877: &processGroup($request);
1.104 albertel 10878: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.443 banghart 10879: $request->print(&grading_menu($request));
10880: } elsif ($command eq 'submit_options' && $perm{'vgr'}) {
10881: $request->print(&submit_options($request));
1.104 albertel 10882: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41 ng 10883: $request->print(&viewgrades($request));
1.104 albertel 10884: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41 ng 10885: $request->print(&processHandGrade($request));
1.106 albertel 10886: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41 ng 10887: $request->print(&editgrades($request));
1.106 albertel 10888: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41 ng 10889: $request->print(&verifyreceipt($request));
1.400 www 10890: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
10891: $request->print(&process_clicker($request));
10892: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
10893: $request->print(&process_clicker_file($request));
1.414 www 10894: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
10895: $request->print(&assign_clicker_grades($request));
1.106 albertel 10896: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72 ng 10897: $request->print(&upcsvScores_form($request));
1.106 albertel 10898: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41 ng 10899: $request->print(&csvupload($request));
1.106 albertel 10900: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41 ng 10901: $request->print(&csvuploadmap($request));
1.246 albertel 10902: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 10903: if ($env{'form.associate'} ne 'Reverse Association') {
1.246 albertel 10904: $request->print(&csvuploadoptions($request));
1.41 ng 10905: } else {
1.257 albertel 10906: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
10907: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 10908: } else {
1.257 albertel 10909: $env{'form.upfile_associate'} = 'forward';
1.41 ng 10910: }
10911: $request->print(&csvuploadmap($request));
10912: }
1.246 albertel 10913: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
10914: $request->print(&csvuploadassign($request));
1.106 albertel 10915: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75 albertel 10916: $request->print(&scantron_selectphase($request));
1.203 albertel 10917: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
10918: $request->print(&scantron_do_warning($request));
1.142 albertel 10919: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
10920: $request->print(&scantron_validate_file($request));
1.106 albertel 10921: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82 albertel 10922: $request->print(&scantron_process_students($request));
1.157 albertel 10923: } elsif ($command eq 'scantronupload' &&
1.257 albertel 10924: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10925: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162 albertel 10926: $request->print(&scantron_upload_scantron_data($request));
1.157 albertel 10927: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 10928: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
10929: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157 albertel 10930: $request->print(&scantron_upload_scantron_data_save($request));
1.202 albertel 10931: } elsif ($command eq 'scantron_download' &&
1.257 albertel 10932: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 10933: $request->print(&scantron_download_scantron_data($request));
1.523 raeburn 10934: } elsif ($command eq 'checksubmissions' && $perm{'vgr'}) {
10935: $request->print(&checkscantron_results($request));
1.106 albertel 10936: } elsif ($command) {
1.562 bisitz 10937: $request->print('<p class="LC_error">'.&mt('Access Denied ([_1])',$command).'</p>');
1.26 albertel 10938: }
1.2 albertel 10939: }
1.513 foxr 10940: if ($ssi_error) {
10941: &ssi_print_error($request);
10942: }
1.353 albertel 10943: $request->print(&Apache::loncommon::end_page());
1.434 albertel 10944: &reset_caches();
1.596.2.4 raeburn 10945: return OK;
1.44 ng 10946: }
10947:
1.1 albertel 10948: 1;
10949:
1.13 albertel 10950: __END__;
1.531 jms 10951:
10952:
10953: =head1 NAME
10954:
10955: Apache::grades
10956:
10957: =head1 SYNOPSIS
10958:
10959: Handles the viewing of grades.
10960:
10961: This is part of the LearningOnline Network with CAPA project
10962: described at http://www.lon-capa.org.
10963:
10964: =head1 OVERVIEW
10965:
10966: Do an ssi with retries:
10967: While I'd love to factor out this with the vesrion in lonprintout,
10968: 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
10969: I'm not quite ready to invent (e.g. an ssi_with_retry object).
10970:
10971: At least the logic that drives this has been pulled out into loncommon.
10972:
10973:
10974:
10975: ssi_with_retries - Does the server side include of a resource.
10976: if the ssi call returns an error we'll retry it up to
10977: the number of times requested by the caller.
1.596.2.12.2. 8(raebur 10978:4): If we still have a problem, no text is appended to the
1.531 jms 10979: output and we set some global variables.
10980: to indicate to the caller an SSI error occurred.
10981: All of this is supposed to deal with the issues described
1.596.2.12.2. 8(raebur 10982:4): in LON-CAPA BZ 5631 see:
1.531 jms 10983: http://bugs.lon-capa.org/show_bug.cgi?id=5631
10984: by informing the user that this happened.
10985:
10986: Parameters:
10987: resource - The resource to include. This is passed directly, without
10988: interpretation to lonnet::ssi.
10989: form - The form hash parameters that guide the interpretation of the resource
10990:
10991: retries - Number of retries allowed before giving up completely.
10992: Returns:
10993: On success, returns the rendered resource identified by the resource parameter.
10994: Side Effects:
10995: The following global variables can be set:
10996: ssi_error - If an unrecoverable error occurred this becomes true.
10997: It is up to the caller to initialize this to false
10998: if desired.
10999: ssi_error_resource - If an unrecoverable error occurred, this is the value
11000: of the resource that could not be rendered by the ssi
11001: call.
11002: ssi_error_message - The error string fetched from the ssi response
11003: in the event of an error.
11004:
11005:
11006: =head1 HANDLER SUBROUTINE
11007:
11008: ssi_with_retries()
11009:
11010: =head1 SUBROUTINES
11011:
11012: =over
11013:
11014: =item scantron_get_correction() :
11015:
11016: Builds the interface screen to interact with the operator to fix a
11017: specific error condition in a specific scanline
11018:
11019: Arguments:
11020: $r - Apache request object
11021: $i - number of the current scanline
11022: $scan_record - hash ref as returned from &scantron_parse_scanline()
11023: $scan_config - hash ref as returned from &get_scantron_config()
11024: $line - full contents of the current scanline
11025: $error - error condition, valid values are
11026: 'incorrectCODE', 'duplicateCODE',
11027: 'doublebubble', 'missingbubble',
11028: 'duplicateID', 'incorrectID'
11029: $arg - extra information needed
11030: For errors:
11031: - duplicateID - paper number that this studentID was seen before on
11032: - duplicateCODE - array ref of the paper numbers this CODE was
11033: seen on before
11034: - incorrectCODE - current incorrect CODE
11035: - doublebubble - array ref of the bubble lines that have double
11036: bubble errors
11037: - missingbubble - array ref of the bubble lines that have missing
11038: bubble errors
11039:
1.596.2.12.2. 6(raebur 11040:3): $randomorder - True if exam folder has randomorder set
11041:3): $randompick - True if exam folder has randompick set
11042:3): $respnumlookup - Reference to HASH mapping question numbers in bubble lines
11043:3): for current line to question number used for same question
11044:3): in "Master Seqence" (as seen by Course Coordinator).
11045:3): $startline - Reference to hash where key is question number (0 is first)
11046:3): and value is number of first bubble line for current student
11047:3): or code-based randompick and/or randomorder.
11048:3):
11049:3):
1.531 jms 11050: =item scantron_get_maxbubble() :
11051:
1.582 raeburn 11052: Arguments:
11053: $nav_error - Reference to scalar which is a flag to indicate a
11054: failure to retrieve a navmap object.
11055: if $nav_error is set to 1 by scantron_get_maxbubble(), the
11056: calling routine should trap the error condition and display the warning
11057: found in &navmap_errormsg().
11058:
1.596.2.12.2. (raeburn 11059:): $scantron_config - Reference to bubblesheet format configuration hash.
11060:):
1.531 jms 11061: Returns the maximum number of bubble lines that are expected to
11062: occur. Does this by walking the selected sequence rendering the
11063: resource and then checking &Apache::lonxml::get_problem_counter()
11064: for what the current value of the problem counter is.
11065:
11066: Caches the results to $env{'form.scantron_maxbubble'},
11067: $env{'form.scantron.bubble_lines.n'},
11068: $env{'form.scantron.first_bubble_line.n'} and
11069: $env{"form.scantron.sub_bubblelines.n"}
1.596.2.12.2. 6(raebur 11070:3): which are the total number of bubble lines, the number of bubble
1.531 jms 11071: lines for response n and number of the first bubble line for response n,
11072: and a comma separated list of numbers of bubble lines for sub-questions
11073: (for optionresponse, matchresponse, and rankresponse items), for response n.
11074:
11075:
11076: =item scantron_validate_missingbubbles() :
11077:
11078: Validates all scanlines in the selected file to not have any
11079: answers that don't have bubbles that have not been verified
11080: to be bubble free.
11081:
11082: =item scantron_process_students() :
11083:
1.596.2.6 raeburn 11084: Routine that does the actual grading of the bubblesheet information.
1.531 jms 11085:
11086: The parsed scanline hash is added to %env
11087:
11088: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
11089: foreach resource , with the form data of
11090:
11091: 'submitted' =>'scantron'
11092: 'grade_target' =>'grade',
11093: 'grade_username'=> username of student
11094: 'grade_domain' => domain of student
11095: 'grade_courseid'=> of course
11096: 'grade_symb' => symb of resource to grade
11097:
11098: This triggers a grading pass. The problem grading code takes care
11099: of converting the bubbled letter information (now in %env) into a
11100: valid submission.
11101:
11102: =item scantron_upload_scantron_data() :
11103:
1.596.2.6 raeburn 11104: Creates the screen for adding a new bubblesheet data file to a course.
1.531 jms 11105:
11106: =item scantron_upload_scantron_data_save() :
11107:
11108: Adds a provided bubble information data file to the course if user
11109: has the correct privileges to do so.
11110:
11111: =item valid_file() :
11112:
11113: Validates that the requested bubble data file exists in the course.
11114:
11115: =item scantron_download_scantron_data() :
11116:
11117: Shows a list of the three internal files (original, corrected,
1.596.2.6 raeburn 11118: skipped) for a specific bubblesheet data file that exists in the
1.531 jms 11119: course.
11120:
11121: =item scantron_validate_ID() :
11122:
11123: Validates all scanlines in the selected file to not have any
1.556 weissno 11124: invalid or underspecified student/employee IDs
1.531 jms 11125:
1.582 raeburn 11126: =item navmap_errormsg() :
11127:
11128: Returns HTML mark-up inside a <div></div> with a link to re-initialize the course.
11129: Should be called whenever the request to instantiate a navmap object fails.
11130:
1.531 jms 11131: =back
11132:
11133: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>