Annotation of loncom/homework/grades.pm, revision 1.471
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.471 ! albertel 4: # $Id: grades.pm,v 1.470 2007/10/29 09:46:28 foxr 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:
29: package Apache::grades;
30: use strict;
31: use Apache::style;
32: use Apache::lonxml;
33: use Apache::lonnet;
1.3 albertel 34: use Apache::loncommon;
1.112 ng 35: use Apache::lonhtmlcommon;
1.68 ng 36: use Apache::lonnavmaps;
1.1 albertel 37: use Apache::lonhomework;
1.456 banghart 38: use Apache::lonpickcode;
1.55 matthew 39: use Apache::loncoursedata;
1.362 albertel 40: use Apache::lonmsg();
1.1 albertel 41: use Apache::Constants qw(:common);
1.167 sakharuk 42: use Apache::lonlocal;
1.386 raeburn 43: use Apache::lonenc;
1.170 albertel 44: use String::Similarity;
1.359 www 45: use LONCAPA;
46:
1.315 bowersj2 47: use POSIX qw(floor);
1.87 www 48:
1.435 foxr 49:
50: my %perm=();
1.447 foxr 51: my %bubble_lines_per_response = (); # no. bubble lines for each response.
1.435 foxr 52: # index is "symb.part_id"
53:
1.447 foxr 54: my %first_bubble_line = (); # First bubble line no. for each bubble.
55:
56: # Save and restore the bubble lines array to the form env.
57:
58:
59: sub save_bubble_lines {
60: foreach my $line (keys(%bubble_lines_per_response)) {
61: $env{"form.scantron.bubblelines.$line"} = $bubble_lines_per_response{$line};
62: $env{"form.scantron.first_bubble_line.$line"} =
63: $first_bubble_line{$line};
64: }
65: }
66:
67:
68: sub restore_bubble_lines {
69: my $line = 0;
70: %bubble_lines_per_response = ();
71: while ($env{"form.scantron.bubblelines.$line"}) {
72: my $value = $env{"form.scantron.bubblelines.$line"};
73: $bubble_lines_per_response{$line} = $value;
74: $first_bubble_line{$line} =
75: $env{"form.scantron.first_bubble_line.$line"};
76: $line++;
77: }
78:
79: }
80:
81: # Given the parsed scanline, get the response for
82: # 'answer' number n:
83:
84: sub get_response_bubbles {
85: my ($parsed_line, $response) = @_;
86:
1.460 foxr 87:
88: my $bubble_line = $first_bubble_line{$response-1} +1;
89: my $bubble_lines= $bubble_lines_per_response{$response-1};
90:
1.447 foxr 91: my $selected = "";
92:
93: for (my $bline = 0; $bline < $bubble_lines; $bline++) {
1.461 foxr 94: $selected .= $$parsed_line{"scantron.$bubble_line.answer"}.":";
1.447 foxr 95: $bubble_line++;
96: }
97: return $selected;
98: }
99:
1.1 albertel 100:
1.68 ng 101: # ----- These first few routines are general use routines.----
1.447 foxr 102:
103: # Return the number of occurences of a pattern in a string.
104:
105: sub occurence_count {
106: my ($string, $pattern) = @_;
107:
108: my @matches = ($string =~ /$pattern/g);
109:
110: return scalar(@matches);
111: }
112:
113:
114: # Take a string known to have digits and convert all the
115: # digits into letters in the range J,A..I.
116:
117: sub digits_to_letters {
118: my ($input) = @_;
119:
120: my @alphabet = ('J', 'A'..'I');
121:
122: my @input = split(//, $input);
123: my $output ='';
124: for (my $i = 0; $i < scalar(@input); $i++) {
125: if ($input[$i] =~ /\d/) {
126: $output .= $alphabet[$input[$i]];
127: } else {
128: $output .= $input[$i];
129: }
130: }
131: return $output;
132: }
133:
1.44 ng 134: #
1.146 albertel 135: # --- Retrieve the parts from the metadata file.---
1.44 ng 136: sub getpartlist {
1.324 albertel 137: my ($symb) = @_;
1.439 albertel 138:
139: my $navmap = Apache::lonnavmaps::navmap->new();
140: my $res = $navmap->getBySymb($symb);
141: my $partlist = $res->parts();
142: my $url = $res->src();
143: my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
144:
1.146 albertel 145: my @stores;
1.439 albertel 146: foreach my $part (@{ $partlist }) {
1.146 albertel 147: foreach my $key (@metakeys) {
148: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
149: }
150: }
151: return @stores;
1.2 albertel 152: }
153:
1.44 ng 154: # --- Get the symbolic name of a problem and the url
1.324 albertel 155: sub get_symb {
1.173 albertel 156: my ($request,$silent) = @_;
1.257 albertel 157: (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
158: my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
1.173 albertel 159: if ($symb eq '') {
160: if (!$silent) {
161: $request->print("Unable to handle ambiguous references:$url:.");
162: return ();
163: }
164: }
1.418 albertel 165: &Apache::lonenc::check_decrypt(\$symb);
1.324 albertel 166: return ($symb);
1.32 ng 167: }
168:
1.129 ng 169: #--- Format fullname, username:domain if different for display
170: #--- Use anywhere where the student names are listed
171: sub nameUserString {
172: my ($type,$fullname,$uname,$udom) = @_;
173: if ($type eq 'header') {
1.398 albertel 174: return '<b> Fullname </b><span class="LC_internal_info">(Username)</span>';
1.129 ng 175: } else {
1.398 albertel 176: return ' '.$fullname.'<span class="LC_internal_info"> ('.$uname.
177: ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129 ng 178: }
179: }
180:
1.44 ng 181: #--- Get the partlist and the response type for a given problem. ---
182: #--- Indicate if a response type is coded handgraded or not. ---
1.39 ng 183: sub response_type {
1.324 albertel 184: my ($symb) = shift;
1.377 albertel 185:
186: my $navmap = Apache::lonnavmaps::navmap->new();
187: my $res = $navmap->getBySymb($symb);
188: my $partlist = $res->parts();
1.392 albertel 189: my %vPart =
190: map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377 albertel 191: my (%response_types,%handgrade);
192: foreach my $part (@{ $partlist }) {
1.392 albertel 193: next if (%vPart && !exists($vPart{$part}));
194:
1.377 albertel 195: my @types = $res->responseType($part);
196: my @ids = $res->responseIds($part);
197: for (my $i=0; $i < scalar(@ids); $i++) {
198: $response_types{$part}{$ids[$i]} = $types[$i];
199: $handgrade{$part.'_'.$ids[$i]} =
200: &Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
201: '.handgrade',$symb);
1.41 ng 202: }
203: }
1.377 albertel 204: return ($partlist,\%handgrade,\%response_types);
1.39 ng 205: }
206:
1.375 albertel 207: sub flatten_responseType {
208: my ($responseType) = @_;
209: my @part_response_id =
210: map {
211: my $part = $_;
212: map {
213: [$part,$_]
214: } sort(keys(%{ $responseType->{$part} }));
215: } sort(keys(%$responseType));
216: return @part_response_id;
217: }
218:
1.207 albertel 219: sub get_display_part {
1.324 albertel 220: my ($partID,$symb)=@_;
1.207 albertel 221: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
222: if (defined($display) and $display ne '') {
1.398 albertel 223: $display.= " (<span class=\"LC_internal_info\">id $partID</span>)";
1.207 albertel 224: } else {
225: $display=$partID;
226: }
227: return $display;
228: }
1.269 raeburn 229:
1.118 ng 230: #--- Show resource title
231: #--- and parts and response type
232: sub showResourceInfo {
1.324 albertel 233: my ($symb,$probTitle,$checkboxes) = @_;
1.154 albertel 234: my $col=3;
235: if ($checkboxes) { $col=4; }
1.398 albertel 236: my $result = '<h3>'.&mt('Current Resource').': '.$probTitle.'</h3>'."\n";
237: $result .='<table border="0">';
1.324 albertel 238: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.126 ng 239: my %resptype = ();
1.122 ng 240: my $hdgrade='no';
1.154 albertel 241: my %partsseen;
1.375 albertel 242: foreach my $partID (sort keys(%$responseType)) {
243: foreach my $resID (sort keys(%{ $responseType->{$partID} })) {
244: my $handgrade=$$handgrade{$partID.'_'.$resID};
245: my $responsetype = $responseType->{$partID}->{$resID};
246: $hdgrade = $handgrade if ($handgrade eq 'yes');
247: $result.='<tr>';
248: if ($checkboxes) {
249: if (exists($partsseen{$partID})) {
250: $result.="<td> </td>";
251: } else {
1.401 albertel 252: $result.="<td><input type='checkbox' name='vPart' value='$partID' checked='checked' /></td>";
1.375 albertel 253: }
254: $partsseen{$partID}=1;
1.154 albertel 255: }
1.375 albertel 256: my $display_part=&get_display_part($partID,$symb);
1.398 albertel 257: $result.='<td><b>Part: </b>'.$display_part.' <span class="LC_internal_info">'.
258: $resID.'</span></td>'.
1.375 albertel 259: '<td><b>Type: </b>'.$responsetype.'</td></tr>';
260: # '<td><b>Handgrade: </b>'.$handgrade.'</td></tr>';
1.154 albertel 261: }
1.118 ng 262: }
263: $result.='</table>'."\n";
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();
270: }
271:
272: {
273: my %analyze_cache;
1.148 albertel 274:
1.434 albertel 275: sub reset_analyze_cache {
276: undef(%analyze_cache);
277: }
278:
279: sub get_analyze {
280: my ($symb,$uname,$udom)=@_;
281: my $key = "$symb\0$uname\0$udom";
282: return $analyze_cache{$key} if (exists($analyze_cache{$key}));
283:
284: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
285: $url=&Apache::lonnet::clutter($url);
286: my $subresult=&Apache::lonnet::ssi($url,
287: ('grade_target' => 'analyze'),
288: ('grade_domain' => $udom),
289: ('grade_symb' => $symb),
290: ('grade_courseid' =>
291: $env{'request.course.id'}),
292: ('grade_username' => $uname));
293: (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
294: my %analyze=&Apache::lonnet::str2hash($subresult);
295: return $analyze_cache{$key} = \%analyze;
296: }
297:
298: sub get_order {
299: my ($partid,$respid,$symb,$uname,$udom)=@_;
300: my $analyze = &get_analyze($symb,$uname,$udom);
301: return $analyze->{"$partid.$respid.shown"};
302: }
303:
304: sub get_radiobutton_correct_foil {
305: my ($partid,$respid,$symb,$uname,$udom)=@_;
306: my $analyze = &get_analyze($symb,$uname,$udom);
307: foreach my $foil (@{&get_order($partid,$respid,$symb,$uname,$udom)}) {
308: if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
309: return $foil;
310: }
311: }
312: }
1.148 albertel 313: }
1.434 albertel 314:
1.118 ng 315: #--- Clean response type for display
1.335 albertel 316: #--- Currently filters option/rank/radiobutton/match/essay/Task
317: # response types only.
1.118 ng 318: sub cleanRecord {
1.336 albertel 319: my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
320: $uname,$udom) = @_;
1.398 albertel 321: my $grayFont = '<span class="LC_internal_info">';
1.148 albertel 322: if ($response =~ /^(option|rank)$/) {
323: my %answer=&Apache::lonnet::str2hash($answer);
324: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
325: my ($toprow,$bottomrow);
326: foreach my $foil (@$order) {
327: if ($grading{$foil} == 1) {
328: $toprow.='<td><b>'.$answer{$foil}.' </b></td>';
329: } else {
330: $toprow.='<td><i>'.$answer{$foil}.' </i></td>';
331: }
1.398 albertel 332: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 333: }
334: return '<blockquote><table border="1">'.
1.466 albertel 335: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
336: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148 albertel 337: $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
338: } elsif ($response eq 'match') {
339: my %answer=&Apache::lonnet::str2hash($answer);
340: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
341: my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
342: my ($toprow,$middlerow,$bottomrow);
343: foreach my $foil (@$order) {
344: my $item=shift(@items);
345: if ($grading{$foil} == 1) {
346: $toprow.='<td><b>'.$item.' </b></td>';
1.398 albertel 347: $middlerow.='<td><b>'.$grayFont.$answer{$foil}.' </span></b></td>';
1.148 albertel 348: } else {
349: $toprow.='<td><i>'.$item.' </i></td>';
1.398 albertel 350: $middlerow.='<td><i>'.$grayFont.$answer{$foil}.' </span></i></td>';
1.148 albertel 351: }
1.398 albertel 352: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.118 ng 353: }
1.126 ng 354: return '<blockquote><table border="1">'.
1.466 albertel 355: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
356: '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148 albertel 357: $middlerow.'</tr>'.
1.466 albertel 358: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148 albertel 359: $bottomrow.'</tr>'.'</table></blockquote>';
360: } elsif ($response eq 'radiobutton') {
361: my %answer=&Apache::lonnet::str2hash($answer);
362: my ($toprow,$bottomrow);
1.434 albertel 363: my $correct =
364: &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom);
365: foreach my $foil (@$order) {
1.148 albertel 366: if (exists($answer{$foil})) {
1.434 albertel 367: if ($foil eq $correct) {
1.466 albertel 368: $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148 albertel 369: } else {
1.466 albertel 370: $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148 albertel 371: }
372: } else {
1.466 albertel 373: $toprow.='<td>'.&mt('false').'</td>';
1.148 albertel 374: }
1.398 albertel 375: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 376: }
377: return '<blockquote><table border="1">'.
1.466 albertel 378: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
379: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148 albertel 380: $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
381: } elsif ($response eq 'essay') {
1.257 albertel 382: if (! exists ($env{'form.'.$symb})) {
1.122 ng 383: my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 384: $env{'course.'.$env{'request.course.id'}.'.domain'},
385: $env{'course.'.$env{'request.course.id'}.'.num'});
1.122 ng 386:
1.257 albertel 387: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
388: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
389: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
390: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
391: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
392: $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 393: }
1.166 albertel 394: $answer =~ s-\n-<br />-g;
395: return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268 albertel 396: } elsif ( $response eq 'organic') {
397: my $result='Smile representation: "<tt>'.$answer.'</tt>"';
398: my $jme=$record->{$version."resource.$partid.$respid.molecule"};
399: $result.=&Apache::chemresponse::jme_img($jme,$answer,400);
400: return $result;
1.335 albertel 401: } elsif ( $response eq 'Task') {
402: if ( $answer eq 'SUBMITTED') {
403: my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336 albertel 404: my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335 albertel 405: return $result;
406: } elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
407: my @matches = grep(/^\Q$version\E.*?\.instance$/,
408: keys(%{$record}));
409: return join('<br />',($version,@matches));
410:
411:
412: } else {
413: my $result =
414: '<p>'
415: .&mt('Overall result: [_1]',
416: $record->{$version."resource.$respid.$partid.status"})
417: .'</p>';
418:
419: $result .= '<ul>';
420: my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
421: keys(%{$record}));
422: foreach my $grade (sort(@grade)) {
423: my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
424: $result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
425: $dim, $record->{$grade}).
426: '</li>';
427: }
428: $result.='</ul>';
429: return $result;
430: }
1.440 albertel 431: } elsif ( $response =~ m/(?:numerical|formula)/) {
432: $answer =
433: &Apache::loncommon::format_previous_attempt_value('submission',
434: $answer);
1.122 ng 435: }
1.118 ng 436: return $answer;
437: }
438:
439: #-- A couple of common js functions
440: sub commonJSfunctions {
441: my $request = shift;
442: $request->print(<<COMMONJSFUNCTIONS);
443: <script type="text/javascript" language="javascript">
444: function radioSelection(radioButton) {
445: var selection=null;
446: if (radioButton.length > 1) {
447: for (var i=0; i<radioButton.length; i++) {
448: if (radioButton[i].checked) {
449: return radioButton[i].value;
450: }
451: }
452: } else {
453: if (radioButton.checked) return radioButton.value;
454: }
455: return selection;
456: }
457:
458: function pullDownSelection(selectOne) {
459: var selection="";
460: if (selectOne.length > 1) {
461: for (var i=0; i<selectOne.length; i++) {
462: if (selectOne[i].selected) {
463: return selectOne[i].value;
464: }
465: }
466: } else {
1.138 albertel 467: // only one value it must be the selected one
468: return selectOne.value;
1.118 ng 469: }
470: }
471: </script>
472: COMMONJSFUNCTIONS
473: }
474:
1.44 ng 475: #--- Dumps the class list with usernames,list of sections,
476: #--- section, ids and fullnames for each user.
477: sub getclasslist {
1.449 banghart 478: my ($getsec,$filterlist,$getgroup) = @_;
1.291 albertel 479: my @getsec;
1.450 banghart 480: my @getgroup;
1.442 banghart 481: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291 albertel 482: if (!ref($getsec)) {
483: if ($getsec ne '' && $getsec ne 'all') {
484: @getsec=($getsec);
485: }
486: } else {
487: @getsec=@{$getsec};
488: }
489: if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450 banghart 490: if (!ref($getgroup)) {
491: if ($getgroup ne '' && $getgroup ne 'all') {
492: @getgroup=($getgroup);
493: }
494: } else {
495: @getgroup=@{$getgroup};
496: }
497: if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291 albertel 498:
1.449 banghart 499: my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49 albertel 500: # Bail out if we were unable to get the classlist
1.56 matthew 501: return if (! defined($classlist));
1.449 banghart 502: &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56 matthew 503: #
504: my %sections;
505: my %fullnames;
1.205 matthew 506: foreach my $student (keys(%$classlist)) {
507: my $end =
508: $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
509: my $start =
510: $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
511: my $id =
512: $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
513: my $section =
514: $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
515: my $fullname =
516: $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
517: my $status =
518: $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449 banghart 519: my $group =
520: $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76 ng 521: # filter students according to status selected
1.442 banghart 522: if ($filterlist && (!($stu_status =~ /Any/))) {
523: if (!($stu_status =~ $status)) {
1.450 banghart 524: delete($classlist->{$student});
1.76 ng 525: next;
526: }
527: }
1.450 banghart 528: # filter students according to groups selected
1.453 banghart 529: my @stu_groups = split(/,/,$group);
1.450 banghart 530: if (@getgroup) {
531: my $exclude = 1;
1.454 banghart 532: foreach my $grp (@getgroup) {
533: foreach my $stu_group (@stu_groups) {
1.453 banghart 534: if ($stu_group eq $grp) {
535: $exclude = 0;
536: }
1.450 banghart 537: }
1.453 banghart 538: if (($grp eq 'none') && !$group) {
539: $exclude = 0;
540: }
1.450 banghart 541: }
542: if ($exclude) {
543: delete($classlist->{$student});
544: }
545: }
1.205 matthew 546: $section = ($section ne '' ? $section : 'none');
1.106 albertel 547: if (&canview($section)) {
1.291 albertel 548: if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103 albertel 549: $sections{$section}++;
1.450 banghart 550: if ($classlist->{$student}) {
551: $fullnames{$student}=$fullname;
552: }
1.103 albertel 553: } else {
1.205 matthew 554: delete($classlist->{$student});
1.103 albertel 555: }
556: } else {
1.205 matthew 557: delete($classlist->{$student});
1.103 albertel 558: }
1.44 ng 559: }
560: my %seen = ();
1.56 matthew 561: my @sections = sort(keys(%sections));
562: return ($classlist,\@sections,\%fullnames);
1.44 ng 563: }
564:
1.103 albertel 565: sub canmodify {
566: my ($sec)=@_;
567: if ($perm{'mgr'}) {
568: if (!defined($perm{'mgr_section'})) {
569: # can modify whole class
570: return 1;
571: } else {
572: if ($sec eq $perm{'mgr_section'}) {
573: #can modify the requested section
574: return 1;
575: } else {
576: # can't modify the request section
577: return 0;
578: }
579: }
580: }
581: #can't modify
582: return 0;
583: }
584:
585: sub canview {
586: my ($sec)=@_;
587: if ($perm{'vgr'}) {
588: if (!defined($perm{'vgr_section'})) {
589: # can modify whole class
590: return 1;
591: } else {
592: if ($sec eq $perm{'vgr_section'}) {
593: #can modify the requested section
594: return 1;
595: } else {
596: # can't modify the request section
597: return 0;
598: }
599: }
600: }
601: #can't modify
602: return 0;
603: }
604:
1.44 ng 605: #--- Retrieve the grade status of a student for all the parts
606: sub student_gradeStatus {
1.324 albertel 607: my ($symb,$udom,$uname,$partlist) = @_;
1.257 albertel 608: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44 ng 609: my %partstatus = ();
610: foreach (@$partlist) {
1.128 ng 611: my ($status,undef) = split(/_/,$record{"resource.$_.solved"},2);
1.44 ng 612: $status = 'nothing' if ($status eq '');
613: $partstatus{$_} = $status;
614: my $subkey = "resource.$_.submitted_by";
615: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
616: }
617: return %partstatus;
618: }
619:
1.45 ng 620: # hidden form and javascript that calls the form
621: # Use by verifyscript and viewgrades
622: # Shows a student's view of problem and submission
623: sub jscriptNform {
1.324 albertel 624: my ($symb) = @_;
1.442 banghart 625: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.45 ng 626: my $jscript='<script type="text/javascript" language="javascript">'."\n".
627: ' function viewOneStudent(user,domain) {'."\n".
628: ' document.onestudent.student.value = user;'."\n".
629: ' document.onestudent.userdom.value = domain;'."\n".
630: ' document.onestudent.submit();'."\n".
631: ' }'."\n".
632: '</script>'."\n";
633: $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418 albertel 634: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 635: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
636: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.442 banghart 637: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.45 ng 638: '<input type="hidden" name="command" value="submission" />'."\n".
639: '<input type="hidden" name="student" value="" />'."\n".
640: '<input type="hidden" name="userdom" value="" />'."\n".
641: '</form>'."\n";
642: return $jscript;
643: }
1.39 ng 644:
1.447 foxr 645:
646:
1.315 bowersj2 647: # Given the score (as a number [0-1] and the weight) what is the final
648: # point value? This function will round to the nearest tenth, third,
649: # or quarter if one of those is within the tolerance of .00001.
1.316 albertel 650: sub compute_points {
1.315 bowersj2 651: my ($score, $weight) = @_;
652:
653: my $tolerance = .00001;
654: my $points = $score * $weight;
655:
656: # Check for nearness to 1/x.
657: my $check_for_nearness = sub {
658: my ($factor) = @_;
659: my $num = ($points * $factor) + $tolerance;
660: my $floored_num = floor($num);
1.316 albertel 661: if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315 bowersj2 662: return $floored_num / $factor;
663: }
664: return $points;
665: };
666:
667: $points = $check_for_nearness->(10);
668: $points = $check_for_nearness->(3);
669: $points = $check_for_nearness->(4);
670:
671: return $points;
672: }
673:
1.44 ng 674: #------------------ End of general use routines --------------------
1.87 www 675:
676: #
677: # Find most similar essay
678: #
679:
680: sub most_similar {
1.426 albertel 681: my ($uname,$udom,$uessay,$old_essays)=@_;
1.87 www 682:
683: # ignore spaces and punctuation
684:
685: $uessay=~s/\W+/ /gs;
686:
1.282 www 687: # ignore empty submissions (occuring when only files are sent)
688:
689: unless ($uessay=~/\w+/) { return ''; }
690:
1.87 www 691: # these will be returned. Do not care if not at least 50 percent similar
1.88 www 692: my $limit=0.6;
1.87 www 693: my $sname='';
694: my $sdom='';
695: my $scrsid='';
696: my $sessay='';
697: # go through all essays ...
1.426 albertel 698: foreach my $tkey (keys(%$old_essays)) {
699: my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87 www 700: # ... except the same student
1.426 albertel 701: next if (($tname eq $uname) && ($tdom eq $udom));
702: my $tessay=$old_essays->{$tkey};
703: $tessay=~s/\W+/ /gs;
1.87 www 704: # String similarity gives up if not even limit
1.426 albertel 705: my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87 www 706: # Found one
1.426 albertel 707: if ($tsimilar>$limit) {
708: $limit=$tsimilar;
709: $sname=$tname;
710: $sdom=$tdom;
711: $scrsid=$tcrsid;
712: $sessay=$old_essays->{$tkey};
713: }
1.87 www 714: }
1.88 www 715: if ($limit>0.6) {
1.87 www 716: return ($sname,$sdom,$scrsid,$sessay,$limit);
717: } else {
718: return ('','','','',0);
719: }
720: }
721:
1.44 ng 722: #-------------------------------------------------------------------
723:
724: #------------------------------------ Receipt Verification Routines
1.45 ng 725: #
1.44 ng 726: #--- Check whether a receipt number is valid.---
727: sub verifyreceipt {
728: my $request = shift;
729:
1.257 albertel 730: my $courseid = $env{'request.course.id'};
1.184 www 731: my $receipt = &Apache::lonnet::recprefix($courseid).'-'.
1.257 albertel 732: $env{'form.receipt'};
1.44 ng 733: $receipt =~ s/[^\-\d]//g;
1.378 albertel 734: my ($symb) = &get_symb($request);
1.44 ng 735:
1.398 albertel 736: my $title.='<h3><span class="LC_info">Verifying Submission Receipt '.
737: $receipt.'</h3></span>'."\n".
738: '<h4><b>Resource: </b>'.$env{'form.probTitle'}.'</h4><br /><br />'."\n";
1.44 ng 739:
740: my ($string,$contents,$matches) = ('','',0);
1.56 matthew 741: my (undef,undef,$fullname) = &getclasslist('all','0');
1.177 albertel 742:
743: my $receiptparts=0;
1.390 albertel 744: if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
745: $env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177 albertel 746: my $parts=['0'];
1.324 albertel 747: if ($receiptparts) { ($parts)=&response_type($symb); }
1.294 albertel 748: foreach (sort
749: {
750: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
751: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
752: }
753: return $a cmp $b;
754: } (keys(%$fullname))) {
1.44 ng 755: my ($uname,$udom)=split(/\:/);
1.177 albertel 756: foreach my $part (@$parts) {
757: if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
758: $contents.='<tr bgcolor="#ffffe6"><td> '."\n".
759: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 760: '\');" target="_self">'.$$fullname{$_}.'</a> </td>'."\n".
1.177 albertel 761: '<td> '.$uname.' </td>'.
762: '<td> '.$udom.' </td>';
763: if ($receiptparts) {
764: $contents.='<td> '.$part.' </td>';
765: }
766: $contents.='</tr>'."\n";
767:
768: $matches++;
769: }
1.44 ng 770: }
771: }
772: if ($matches == 0) {
773: $string = $title.'No match found for the above receipt.';
774: } else {
1.324 albertel 775: $string = &jscriptNform($symb).$title.
1.44 ng 776: 'The above receipt matches the following student'.
777: ($matches <= 1 ? '.' : 's.')."\n".
778: '<table border="0"><tr><td bgcolor="#777777">'."\n".
779: '<table border="0"><tr bgcolor="#e6ffff">'."\n".
780: '<td><b> Fullname </b></td>'."\n".
781: '<td><b> Username </b></td>'."\n".
1.177 albertel 782: '<td><b> Domain </b></td>';
783: if ($receiptparts) {
784: $string.='<td> Problem Part </td>';
785: }
786: $string.='</tr>'."\n".$contents.
1.44 ng 787: '</table></td></tr></table>'."\n";
788: }
1.324 albertel 789: return $string.&show_grading_menu_form($symb);
1.44 ng 790: }
791:
792: #--- This is called by a number of programs.
793: #--- Called from the Grading Menu - View/Grade an individual student
794: #--- Also called directly when one clicks on the subm button
795: # on the problem page.
1.30 ng 796: sub listStudents {
1.41 ng 797: my ($request) = shift;
1.49 albertel 798:
1.324 albertel 799: my ($symb) = &get_symb($request);
1.257 albertel 800: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
801: my $cnum = $env{"course.$env{'request.course.id'}.num"};
802: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449 banghart 803: my $getgroup = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.257 albertel 804: my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
805: my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
806: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
807: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.49 albertel 808:
1.398 albertel 809: my $result='<h3><span class="LC_info"> '.$viewgrade.
810: ' Submissions for a Student or a Group of Students</span></h3>';
1.118 ng 811:
1.324 albertel 812: my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($symb,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
1.49 albertel 813:
1.45 ng 814: $request->print(<<LISTJAVASCRIPT);
815: <script type="text/javascript" language="javascript">
1.110 ng 816: function checkSelect(checkBox) {
817: var ctr=0;
818: var sense="";
819: if (checkBox.length > 1) {
820: for (var i=0; i<checkBox.length; i++) {
821: if (checkBox[i].checked) {
822: ctr++;
823: }
824: }
825: sense = "a student or group of students";
826: } else {
827: if (checkBox.checked) {
828: ctr = 1;
829: }
830: sense = "the student";
831: }
832: if (ctr == 0) {
1.126 ng 833: alert("Please select "+sense+" before clicking on the Next button.");
1.110 ng 834: return false;
835: }
836: document.gradesub.submit();
837: }
838:
839: function reLoadList(formname) {
1.112 ng 840: if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110 ng 841: formname.command.value = 'submission';
842: formname.submit();
843: }
1.45 ng 844: </script>
845: LISTJAVASCRIPT
846:
1.118 ng 847: &commonJSfunctions($request);
1.41 ng 848: $request->print($result);
1.39 ng 849:
1.401 albertel 850: my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked="checked"' : '';
851: my $checklastsub = $checkhdgrade eq '' ? 'checked="checked"' : '';
1.154 albertel 852: my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
853: "\n".$table.
1.401 albertel 854: ' <b>View Problem Text: </b><label><input type="radio" name="vProb" value="no" checked="checked" /> no </label>'."\n".
1.267 albertel 855: '<label><input type="radio" name="vProb" value="yes" /> one student </label>'."\n".
856: '<label><input type="radio" name="vProb" value="all" /> all students </label><br />'."\n".
857: ' <b>View Answer: </b><label><input type="radio" name="vAns" value="no" /> no </label>'."\n".
858: '<label><input type="radio" name="vAns" value="yes" /> one student </label>'."\n".
1.401 albertel 859: '<label><input type="radio" name="vAns" value="all" checked="checked" /> all students </label><br />'."\n".
1.49 albertel 860: ' <b>Submissions: </b>'."\n";
1.257 albertel 861: if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
1.267 albertel 862: $gradeTable.='<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> essay part only </label>'."\n";
1.49 albertel 863: }
1.442 banghart 864: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
865: my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257 albertel 866: $env{'form.Status'} = $saveStatus;
1.267 albertel 867: $gradeTable.='<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> last submission only </label>'."\n".
868: '<label><input type="radio" name="lastSub" value="last" /> last submission & parts info </label>'."\n".
869: '<label><input type="radio" name="lastSub" value="datesub" /> by dates and submissions </label>'."\n".
1.348 bowersj2 870: '<label><input type="radio" name="lastSub" value="all" /> all details</label><br />'."\n".
871: ' <b>Grading Increments:</b> <select name="increment">'.
872: '<option value="1">Whole Points</option>'.
873: '<option value=".5">Half Points</option>'.
1.349 albertel 874: '<option value=".25">Quarter Points</option>'.
875: '<option value=".1">Tenths of a Point</option>'.
1.348 bowersj2 876: '</select>'.
1.432 banghart 877: &build_section_inputs().
1.45 ng 878: '<input type="hidden" name="submitonly" value="'.$submitonly.'" />'."\n".
1.257 albertel 879: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" /><br />'."\n".
880: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
881: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
882: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.418 albertel 883: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110 ng 884: '<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
885:
1.257 albertel 886: if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
1.442 banghart 887: $gradeTable.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
1.124 ng 888: } else {
889: $gradeTable.='<b>Student Status:</b> '.
890: &Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,'javascript:reLoadList(this.form);').'<br />';
891: }
1.112 ng 892:
1.126 ng 893: $gradeTable.='To '.lc($viewgrade).' a submission or a group of submissions, click on the check box(es) '.
894: 'next to the student\'s name(s). Then click on the Next button.<br />'."\n".
1.110 ng 895: '<input type="hidden" name="command" value="processGroup" />'."\n";
1.249 albertel 896:
897: # checkall buttons
898: $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110 ng 899: $gradeTable.='<input type="button" '."\n".
1.45 ng 900: 'onClick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1.249 albertel 901: 'value="Next->" /> <br />'."\n";
902: $gradeTable.=&check_buttons();
1.401 albertel 903: $gradeTable.='<label><input type="checkbox" name="checkPlag" checked="checked" />Check For Plagiarism</label>';
1.450 banghart 904: my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.45 ng 905: $gradeTable.='<table border="0"><tr><td bgcolor="#777777">'.
1.110 ng 906: '<table border="0"><tr bgcolor="#e6ffff">';
907: my $loop = 0;
908: while ($loop < 2) {
1.126 ng 909: $gradeTable.='<td><b> No.</b> </td><td><b> Select </b></td>'.
1.250 albertel 910: '<td>'.&nameUserString('header').' Section/Group</td>';
1.301 albertel 911: if ($env{'form.showgrading'} eq 'yes'
912: && $submitonly ne 'queued'
913: && $submitonly ne 'all') {
1.110 ng 914: foreach (sort(@$partlist)) {
1.324 albertel 915: my $display_part=&get_display_part((split(/_/))[0],$symb);
1.207 albertel 916: $gradeTable.='<td><b> Part: '.$display_part.
917: ' Status </b></td>';
1.110 ng 918: }
1.301 albertel 919: } elsif ($submitonly eq 'queued') {
920: $gradeTable.='<td><b> '.&mt('Queue Status').' </b></td>';
1.110 ng 921: }
922: $loop++;
1.126 ng 923: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 924: }
1.45 ng 925: $gradeTable.='</tr>'."\n";
1.41 ng 926:
1.45 ng 927: my $ctr = 0;
1.294 albertel 928: foreach my $student (sort
929: {
930: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
931: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
932: }
933: return $a cmp $b;
934: }
935: (keys(%$fullname))) {
1.41 ng 936: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 937:
1.110 ng 938: my %status = ();
1.301 albertel 939:
940: if ($submitonly eq 'queued') {
941: my %queue_status =
942: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
943: $udom,$uname);
944: next if (!defined($queue_status{'gradingqueue'}));
945: $status{'gradingqueue'} = $queue_status{'gradingqueue'};
946: }
947:
948: if ($env{'form.showgrading'} eq 'yes'
949: && $submitonly ne 'queued'
950: && $submitonly ne 'all') {
1.324 albertel 951: (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 952: my $submitted = 0;
1.164 albertel 953: my $graded = 0;
1.248 albertel 954: my $incorrect = 0;
1.110 ng 955: foreach (keys(%status)) {
1.145 albertel 956: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 957: $graded = 1 if ($status{$_} =~ /^ungraded/);
958: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
959:
1.110 ng 960: my ($foo,$partid,$foo1) = split(/\./,$_);
961: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145 albertel 962: $submitted = 0;
1.150 albertel 963: my ($part)=split(/\./,$partid);
1.110 ng 964: $gradeTable.='<input type="hidden" name="'.
1.150 albertel 965: $student.':'.$part.':submitted_by" value="'.
1.110 ng 966: $status{'resource.'.$partid.'.submitted_by'}.'" />';
967: }
1.41 ng 968: }
1.248 albertel 969:
1.156 albertel 970: next if (!$submitted && ($submitonly eq 'yes' ||
971: $submitonly eq 'incorrect' ||
972: $submitonly eq 'graded'));
1.248 albertel 973: next if (!$graded && ($submitonly eq 'graded'));
974: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 975: }
1.34 ng 976:
1.45 ng 977: $ctr++;
1.249 albertel 978: my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452 banghart 979: my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104 albertel 980: if ( $perm{'vgr'} eq 'F' ) {
1.110 ng 981: $gradeTable.='<tr bgcolor="#ffffe6">' if ($ctr%2 ==1);
1.126 ng 982: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.249 albertel 983: '<td align="center"><label><input type=checkbox name="stuinfo" value="'.
984: $student.':'.$$fullname{$student}.':::SECTION'.$section.
985: ') " /> </label></td>'."\n".'<td>'.
986: &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.452 banghart 987: ' '.$section.'/'.$group.'</td>'."\n";
1.110 ng 988:
1.257 albertel 989: if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.110 ng 990: foreach (sort keys(%status)) {
991: next if (/^resource.*?submitted_by$/);
1.276 albertel 992: $gradeTable.='<td align="center"> '.$status{$_}.' </td>'."\n";
1.110 ng 993: }
1.41 ng 994: }
1.126 ng 995: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.110 ng 996: $gradeTable.='</tr>'."\n" if ($ctr%2 ==0);
1.41 ng 997: }
998: }
1.110 ng 999: if ($ctr%2 ==1) {
1.126 ng 1000: $gradeTable.='<td> </td><td> </td><td> </td>';
1.301 albertel 1001: if ($env{'form.showgrading'} eq 'yes'
1002: && $submitonly ne 'queued'
1003: && $submitonly ne 'all') {
1.110 ng 1004: foreach (@$partlist) {
1005: $gradeTable.='<td> </td>';
1006: }
1.301 albertel 1007: } elsif ($submitonly eq 'queued') {
1008: $gradeTable.='<td> </td>';
1.110 ng 1009: }
1010: $gradeTable.='</tr>';
1011: }
1012:
1.249 albertel 1013: $gradeTable.='</table></td></tr></table>'."\n".
1.45 ng 1014: '<input type="button" '.
1015: 'onClick="javascript:checkSelect(this.form.stuinfo);" '.
1.126 ng 1016: 'value="Next->" /></form>'."\n";
1.45 ng 1017: if ($ctr == 0) {
1.96 albertel 1018: my $num_students=(scalar(keys(%$fullname)));
1019: if ($num_students eq 0) {
1.398 albertel 1020: $gradeTable='<br /> <span class="LC_warning">There are no students currently enrolled.</span>';
1.96 albertel 1021: } else {
1.171 albertel 1022: my $submissions='submissions';
1023: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
1024: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 1025: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.398 albertel 1026: $gradeTable='<br /> <span class="LC_warning">'.
1.171 albertel 1027: 'No '.$submissions.' found for this resource for any students. ('.$num_students.
1.398 albertel 1028: ' students checked for '.$submissions.')</span><br />';
1.96 albertel 1029: }
1.46 ng 1030: } elsif ($ctr == 1) {
1031: $gradeTable =~ s/type=checkbox/type=checkbox checked/;
1.45 ng 1032: }
1.324 albertel 1033: $gradeTable.=&show_grading_menu_form($symb);
1.45 ng 1034: $request->print($gradeTable);
1.44 ng 1035: return '';
1.10 ng 1036: }
1037:
1.44 ng 1038: #---- Called from the listStudents routine
1.249 albertel 1039:
1040: sub check_script {
1041: my ($form, $type)=@_;
1042: my $chkallscript='<script type="text/javascript">
1043: function checkall() {
1044: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1045: ele = document.forms.'.$form.'.elements[i];
1046: if (ele.name == "'.$type.'") {
1047: document.forms.'.$form.'.elements[i].checked=true;
1048: }
1049: }
1050: }
1051:
1052: function checksec() {
1053: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1054: ele = document.forms.'.$form.'.elements[i];
1055: string = document.forms.'.$form.'.chksec.value;
1056: if
1057: (ele.value.indexOf(":::SECTION"+string)>0) {
1058: document.forms.'.$form.'.elements[i].checked=true;
1059: }
1060: }
1061: }
1062:
1063:
1064: function uncheckall() {
1065: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1066: ele = document.forms.'.$form.'.elements[i];
1067: if (ele.name == "'.$type.'") {
1068: document.forms.'.$form.'.elements[i].checked=false;
1069: }
1070: }
1071: }
1072:
1073: </script>'."\n";
1074: return $chkallscript;
1075: }
1076:
1077: sub check_buttons {
1078: my $buttons.='<input type="button" onclick="checkall()" value="Check All" />';
1079: $buttons.='<input type="button" onclick="uncheckall()" value="Uncheck All" /> ';
1080: $buttons.='<input type="button" onclick="checksec()" value="Check Section/Group" />';
1081: $buttons.='<input type="text" size="5" name="chksec" /> ';
1082: return $buttons;
1083: }
1084:
1.44 ng 1085: # Displays the submissions for one student or a group of students
1.34 ng 1086: sub processGroup {
1.41 ng 1087: my ($request) = shift;
1088: my $ctr = 0;
1.155 albertel 1089: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 1090: my $total = scalar(@stuchecked)-1;
1.45 ng 1091:
1.396 banghart 1092: foreach my $student (@stuchecked) {
1093: my ($uname,$udom,$fullname) = split(/:/,$student);
1.257 albertel 1094: $env{'form.student'} = $uname;
1095: $env{'form.userdom'} = $udom;
1096: $env{'form.fullname'} = $fullname;
1.41 ng 1097: &submission($request,$ctr,$total);
1098: $ctr++;
1099: }
1100: return '';
1.35 ng 1101: }
1.34 ng 1102:
1.44 ng 1103: #------------------------------------------------------------------------------------
1104: #
1105: #-------------------------- Next few routines handles grading by student, essentially
1106: # handles essay response type problem/part
1107: #
1108: #--- Javascript to handle the submission page functionality ---
1109: sub sub_page_js {
1110: my $request = shift;
1111: $request->print(<<SUBJAVASCRIPT);
1112: <script type="text/javascript" language="javascript">
1.71 ng 1113: function updateRadio(formname,id,weight) {
1.125 ng 1114: var gradeBox = formname["GD_BOX"+id];
1115: var radioButton = formname["RADVAL"+id];
1116: var oldpts = formname["oldpts"+id].value;
1.72 ng 1117: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 1118: gradeBox.value = pts;
1119: var resetbox = false;
1120: if (isNaN(pts) || pts < 0) {
1121: alert("A number equal or greater than 0 is expected. Entered value = "+pts);
1122: for (var i=0; i<radioButton.length; i++) {
1123: if (radioButton[i].checked) {
1124: gradeBox.value = i;
1125: resetbox = true;
1126: }
1127: }
1128: if (!resetbox) {
1129: formtextbox.value = "";
1130: }
1131: return;
1.44 ng 1132: }
1.71 ng 1133:
1134: if (pts > weight) {
1135: var resp = confirm("You entered a value ("+pts+
1136: ") greater than the weight for the part. Accept?");
1137: if (resp == false) {
1.125 ng 1138: gradeBox.value = oldpts;
1.71 ng 1139: return;
1140: }
1.44 ng 1141: }
1.13 albertel 1142:
1.71 ng 1143: for (var i=0; i<radioButton.length; i++) {
1144: radioButton[i].checked=false;
1145: if (pts == i && pts != "") {
1146: radioButton[i].checked=true;
1147: }
1148: }
1149: updateSelect(formname,id);
1.125 ng 1150: formname["stores"+id].value = "0";
1.41 ng 1151: }
1.5 albertel 1152:
1.72 ng 1153: function writeBox(formname,id,pts) {
1.125 ng 1154: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1155: if (checkSolved(formname,id) == 'update') {
1156: gradeBox.value = pts;
1157: } else {
1.125 ng 1158: var oldpts = formname["oldpts"+id].value;
1.72 ng 1159: gradeBox.value = oldpts;
1.125 ng 1160: var radioButton = formname["RADVAL"+id];
1.71 ng 1161: for (var i=0; i<radioButton.length; i++) {
1162: radioButton[i].checked=false;
1.72 ng 1163: if (i == oldpts) {
1.71 ng 1164: radioButton[i].checked=true;
1165: }
1166: }
1.41 ng 1167: }
1.125 ng 1168: formname["stores"+id].value = "0";
1.71 ng 1169: updateSelect(formname,id);
1170: return;
1.41 ng 1171: }
1.44 ng 1172:
1.71 ng 1173: function clearRadBox(formname,id) {
1174: if (checkSolved(formname,id) == 'noupdate') {
1175: updateSelect(formname,id);
1176: return;
1177: }
1.125 ng 1178: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1179: for (var i=0; i<gradeSelect.length; i++) {
1180: if (gradeSelect[i].selected) {
1181: var selectx=i;
1182: }
1183: }
1.125 ng 1184: var stores = formname["stores"+id];
1.71 ng 1185: if (selectx == stores.value) { return };
1.125 ng 1186: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1187: gradeBox.value = "";
1.125 ng 1188: var radioButton = formname["RADVAL"+id];
1.71 ng 1189: for (var i=0; i<radioButton.length; i++) {
1190: radioButton[i].checked=false;
1191: }
1192: stores.value = selectx;
1193: }
1.5 albertel 1194:
1.71 ng 1195: function checkSolved(formname,id) {
1.125 ng 1196: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1197: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1198: if (!reply) {return "noupdate";}
1.120 ng 1199: formname.overRideScore.value = 'yes';
1.41 ng 1200: }
1.71 ng 1201: return "update";
1.13 albertel 1202: }
1.71 ng 1203:
1204: function updateSelect(formname,id) {
1.125 ng 1205: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1206: return;
1.41 ng 1207: }
1.33 ng 1208:
1.121 ng 1209: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1210: function checksubmit(formname,val,total,parttot) {
1.121 ng 1211: formname.gradeOpt.value = val;
1.71 ng 1212: if (val == "Save & Next") {
1213: for (i=0;i<=total;i++) {
1214: for (j=0;j<parttot;j++) {
1.125 ng 1215: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1216: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1217: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1218: if (points == "") {
1.125 ng 1219: var name = formname["name"+i].value;
1.129 ng 1220: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1221: var resp = confirm("You did not assign a score for "+studentID+
1222: ", part "+partid+". Continue?");
1.71 ng 1223: if (resp == false) {
1.125 ng 1224: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1225: return false;
1226: }
1227: }
1228: }
1229:
1230: }
1231: }
1232:
1233: }
1.121 ng 1234: if (val == "Grade Student") {
1235: formname.showgrading.value = "yes";
1236: if (formname.Status.value == "") {
1237: formname.Status.value = "Active";
1238: }
1239: formname.studentNo.value = total;
1240: }
1.120 ng 1241: formname.submit();
1242: }
1243:
1.71 ng 1244: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1245: function checkSubmitPage(formname,total) {
1246: noscore = new Array(100);
1247: var ptr = 0;
1248: for (i=1;i<total;i++) {
1.125 ng 1249: var partid = formname["q_"+i].value;
1.127 ng 1250: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1251: var points = formname["GD_BOX"+i+"_"+partid].value;
1252: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1253: if (points == "" && status != "correct_by_student") {
1254: noscore[ptr] = i;
1255: ptr++;
1256: }
1257: }
1258: }
1259: if (ptr != 0) {
1260: var sense = ptr == 1 ? ": " : "s: ";
1261: var prolist = "";
1262: if (ptr == 1) {
1263: prolist = noscore[0];
1264: } else {
1265: var i = 0;
1266: while (i < ptr-1) {
1267: prolist += noscore[i]+", ";
1268: i++;
1269: }
1270: prolist += "and "+noscore[i];
1271: }
1272: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1273: if (resp == false) {
1274: return false;
1275: }
1276: }
1.45 ng 1277:
1.71 ng 1278: formname.submit();
1279: }
1280: </script>
1281: SUBJAVASCRIPT
1282: }
1.45 ng 1283:
1.71 ng 1284: #--- javascript for essay type problem --
1285: sub sub_page_kw_js {
1286: my $request = shift;
1.80 ng 1287: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1288: &commonJSfunctions($request);
1.350 albertel 1289:
1.351 albertel 1290: my $inner_js_msg_central=<<INNERJS;
1.350 albertel 1291: <script text="text/javascript">
1292: function checkInput() {
1293: opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
1294: var nmsg = opener.document.SCORE.savemsgN.value;
1295: var usrctr = document.msgcenter.usrctr.value;
1296: var newval = opener.document.SCORE["newmsg"+usrctr];
1297: newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
1298:
1299: var msgchk = "";
1300: if (document.msgcenter.subchk.checked) {
1301: msgchk = "msgsub,";
1302: }
1303: var includemsg = 0;
1304: for (var i=1; i<=nmsg; i++) {
1305: var opnmsg = opener.document.SCORE["savemsg"+i];
1306: var frmmsg = document.msgcenter["msg"+i];
1307: opnmsg.value = opener.checkEntities(frmmsg.value);
1308: var showflg = opener.document.SCORE["shownOnce"+i];
1309: showflg.value = "1";
1310: var chkbox = document.msgcenter["msgn"+i];
1311: if (chkbox.checked) {
1312: msgchk += "savemsg"+i+",";
1313: includemsg = 1;
1314: }
1315: }
1316: if (document.msgcenter.newmsgchk.checked) {
1317: msgchk += "newmsg"+usrctr;
1318: includemsg = 1;
1319: }
1320: imgformname = opener.document.SCORE["mailicon"+usrctr];
1321: imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
1322: var includemsg = opener.document.SCORE["includemsg"+usrctr];
1323: includemsg.value = msgchk;
1324:
1325: self.close()
1326:
1327: }
1328: </script>
1329: INNERJS
1330:
1.351 albertel 1331: my $inner_js_highlight_central=<<INNERJS;
1332: <script type="text/javascript">
1333: function updateChoice(flag) {
1334: opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
1335: opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
1336: opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
1337: opener.document.SCORE.refresh.value = "on";
1338: if (opener.document.SCORE.keywords.value!=""){
1339: opener.document.SCORE.submit();
1340: }
1341: self.close()
1342: }
1343: </script>
1344: INNERJS
1345:
1346: my $start_page_msg_central =
1347: &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
1348: {'js_ready' => 1,
1349: 'only_body' => 1,
1350: 'bgcolor' =>'#FFFFFF',});
1351: my $end_page_msg_central =
1352: &Apache::loncommon::end_page({'js_ready' => 1});
1353:
1354:
1355: my $start_page_highlight_central =
1356: &Apache::loncommon::start_page('Highlight Central',
1357: $inner_js_highlight_central,
1.350 albertel 1358: {'js_ready' => 1,
1359: 'only_body' => 1,
1360: 'bgcolor' =>'#FFFFFF',});
1.351 albertel 1361: my $end_page_highlight_central =
1.350 albertel 1362: &Apache::loncommon::end_page({'js_ready' => 1});
1363:
1.219 www 1364: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1365: $docopen=~s/^document\.//;
1.71 ng 1366: $request->print(<<SUBJAVASCRIPT);
1367: <script type="text/javascript" language="javascript">
1.45 ng 1368:
1.44 ng 1369: //===================== Show list of keywords ====================
1.122 ng 1370: function keywords(formname) {
1371: var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
1.44 ng 1372: if (nret==null) return;
1.122 ng 1373: formname.keywords.value = nret;
1.44 ng 1374:
1.122 ng 1375: if (formname.keywords.value != "") {
1.128 ng 1376: formname.refresh.value = "on";
1.122 ng 1377: formname.submit();
1.44 ng 1378: }
1379: return;
1380: }
1381:
1382: //===================== Script to view submitted by ==================
1383: function viewSubmitter(submitter) {
1384: document.SCORE.refresh.value = "on";
1385: document.SCORE.NCT.value = "1";
1386: document.SCORE.unamedom0.value = submitter;
1387: document.SCORE.submit();
1388: return;
1389: }
1390:
1391: //===================== Script to add keyword(s) ==================
1392: function getSel() {
1393: if (document.getSelection) txt = document.getSelection();
1394: else if (document.selection) txt = document.selection.createRange().text;
1395: else return;
1396: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1397: if (cleantxt=="") {
1.46 ng 1398: alert("Please select a word or group of words from document and then click this link.");
1.44 ng 1399: return;
1400: }
1401: var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
1402: if (nret==null) return;
1.127 ng 1403: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1404: if (document.SCORE.keywords.value != "") {
1.127 ng 1405: document.SCORE.refresh.value = "on";
1.44 ng 1406: document.SCORE.submit();
1407: }
1408: return;
1409: }
1410:
1411: //====================== Script for composing message ==============
1.80 ng 1412: // preload images
1413: img1 = new Image();
1414: img1.src = "$iconpath/mailbkgrd.gif";
1415: img2 = new Image();
1416: img2.src = "$iconpath/mailto.gif";
1417:
1.44 ng 1418: function msgCenter(msgform,usrctr,fullname) {
1419: var Nmsg = msgform.savemsgN.value;
1420: savedMsgHeader(Nmsg,usrctr,fullname);
1421: var subject = msgform.msgsub.value;
1.127 ng 1422: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1423: re = /msgsub/;
1424: var shwsel = "";
1425: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1426: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1427: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1428: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1429: var testmsg = "savemsg"+i+",";
1430: re = new RegExp(testmsg,"g");
1.44 ng 1431: shwsel = "";
1432: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1433: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1434: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1435: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1436: //any < is already converted to <, etc. However, only once!!
1.44 ng 1437: }
1.125 ng 1438: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1439: shwsel = "";
1440: re = /newmsg/;
1441: if (re.test(msgchk)) { shwsel = "checked" }
1442: newMsg(newmsg,shwsel);
1443: msgTail();
1444: return;
1445: }
1446:
1.123 ng 1447: function checkEntities(strx) {
1448: if (strx.length == 0) return strx;
1449: var orgStr = ["&", "<", ">", '"'];
1450: var newStr = ["&", "<", ">", """];
1451: var counter = 0;
1452: while (counter < 4) {
1453: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1454: counter++;
1455: }
1456: return strx;
1457: }
1458:
1459: function strReplace(strx, orgStr, newStr) {
1460: return strx.split(orgStr).join(newStr);
1461: }
1462:
1.44 ng 1463: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1464: var height = 70*Nmsg+250;
1.44 ng 1465: var scrollbar = "no";
1466: if (height > 600) {
1467: height = 600;
1468: scrollbar = "yes";
1469: }
1.118 ng 1470: var xpos = (screen.width-600)/2;
1471: xpos = (xpos < 0) ? '0' : xpos;
1472: var ypos = (screen.height-height)/2-30;
1473: ypos = (ypos < 0) ? '0' : ypos;
1474:
1.206 albertel 1475: pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
1.76 ng 1476: pWin.focus();
1477: pDoc = pWin.document;
1.219 www 1478: pDoc.$docopen;
1.351 albertel 1479: pDoc.write('$start_page_msg_central');
1.76 ng 1480:
1481: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1482: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.465 albertel 1483: pDoc.write("<h3><span class=\\"LC_info\\"> Compose Message for \"+fullname+\"<\\/span><\\/h3><br /><br />");
1.76 ng 1484:
1485: pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1486: pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465 albertel 1487: pDoc.write("<td><b>Type<\\/b><\\/td><td><b>Include<\\/b><\\/td><td><b>Message<\\/td><\\/tr>");
1.44 ng 1488: }
1489: function displaySubject(msg,shwsel) {
1.76 ng 1490: pDoc = pWin.document;
1491: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1492: pDoc.write("<td>Subject<\\/td>");
1493: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1494: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44 ng 1495: }
1496:
1.72 ng 1497: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1498: pDoc = pWin.document;
1499: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1500: pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
1501: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1502: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1503: }
1504:
1505: function newMsg(newmsg,shwsel) {
1.76 ng 1506: pDoc = pWin.document;
1507: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1508: pDoc.write("<td align=\\"center\\">New<\\/td>");
1509: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1510: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1511: }
1512:
1513: function msgTail() {
1.76 ng 1514: pDoc = pWin.document;
1.465 albertel 1515: pDoc.write("<\\/table>");
1516: pDoc.write("<\\/td><\\/tr><\\/table> ");
1.76 ng 1517: pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\"> ");
1.326 albertel 1518: pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465 albertel 1519: pDoc.write("<\\/form>");
1.351 albertel 1520: pDoc.write('$end_page_msg_central');
1.128 ng 1521: pDoc.close();
1.44 ng 1522: }
1523:
1524: //====================== Script for keyword highlight options ==============
1525: function kwhighlight() {
1526: var kwclr = document.SCORE.kwclr.value;
1527: var kwsize = document.SCORE.kwsize.value;
1528: var kwstyle = document.SCORE.kwstyle.value;
1529: var redsel = "";
1530: var grnsel = "";
1531: var blusel = "";
1532: if (kwclr=="red") {var redsel="checked"};
1533: if (kwclr=="green") {var grnsel="checked"};
1534: if (kwclr=="blue") {var blusel="checked"};
1535: var sznsel = "";
1536: var sz1sel = "";
1537: var sz2sel = "";
1538: if (kwsize=="0") {var sznsel="checked"};
1539: if (kwsize=="+1") {var sz1sel="checked"};
1540: if (kwsize=="+2") {var sz2sel="checked"};
1541: var synsel = "";
1542: var syisel = "";
1543: var sybsel = "";
1544: if (kwstyle=="") {var synsel="checked"};
1545: if (kwstyle=="<i>") {var syisel="checked"};
1546: if (kwstyle=="<b>") {var sybsel="checked"};
1547: highlightCentral();
1548: highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
1549: highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
1550: highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
1551: highlightend();
1552: return;
1553: }
1554:
1555: function highlightCentral() {
1.76 ng 1556: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1557: var xpos = (screen.width-400)/2;
1558: xpos = (xpos < 0) ? '0' : xpos;
1559: var ypos = (screen.height-330)/2-30;
1560: ypos = (ypos < 0) ? '0' : ypos;
1561:
1.206 albertel 1562: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1563: hwdWin.focus();
1564: var hDoc = hwdWin.document;
1.219 www 1565: hDoc.$docopen;
1.351 albertel 1566: hDoc.write('$start_page_highlight_central');
1.76 ng 1567: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.465 albertel 1568: hDoc.write("<h3><span class=\\"LC_info\\"> Keyword Highlight Options<\\/span><\\/h3><br /><br />");
1.76 ng 1569:
1570: hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1571: hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465 albertel 1572: hDoc.write("<td><b>Text Color<\\/b><\\/td><td><b>Font Size<\\/b><\\/td><td><b>Font Style<\\/td><\\/tr>");
1.44 ng 1573: }
1574:
1575: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1576: var hDoc = hwdWin.document;
1577: hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1578: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1579: hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+"> "+clrtxt+"<\\/td>");
1.76 ng 1580: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1581: hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+"> "+sztxt+"<\\/td>");
1.76 ng 1582: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1583: hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+"> "+sytxt+"<\\/td>");
1584: hDoc.write("<\\/tr>");
1.44 ng 1585: }
1586:
1587: function highlightend() {
1.76 ng 1588: var hDoc = hwdWin.document;
1.465 albertel 1589: hDoc.write("<\\/table>");
1590: hDoc.write("<\\/td><\\/tr><\\/table> ");
1.76 ng 1591: hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\"> ");
1.326 albertel 1592: hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465 albertel 1593: hDoc.write("<\\/form>");
1.351 albertel 1594: hDoc.write('$end_page_highlight_central');
1.128 ng 1595: hDoc.close();
1.44 ng 1596: }
1597:
1598: </script>
1599: SUBJAVASCRIPT
1600: }
1601:
1.349 albertel 1602: sub get_increment {
1.348 bowersj2 1603: my $increment = $env{'form.increment'};
1604: if ($increment != 1 && $increment != .5 && $increment != .25 &&
1605: $increment != .1) {
1606: $increment = 1;
1607: }
1608: return $increment;
1609: }
1610:
1.71 ng 1611: #--- displays the grading box, used in essay type problem and grading by page/sequence
1612: sub gradeBox {
1.322 albertel 1613: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381 albertel 1614: my $checkIcon = '<img alt="'.&mt('Check Mark').
1615: '" src="'.$request->dir_config('lonIconsURL').
1.71 ng 1616: '/check.gif" height="16" border="0" />';
1617: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466 albertel 1618: my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)')
1619: : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71 ng 1620: $wgt = ($wgt > 0 ? $wgt : '1');
1621: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1622: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71 ng 1623: my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466 albertel 1624: my $display_part= &get_display_part($partid,$symb);
1.270 albertel 1625: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1626: [$partid]);
1627: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1628: if ($last_resets{$partid}) {
1629: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1630: }
1.71 ng 1631: $result.='<table border="0"><tr><td>'.
1.207 albertel 1632: '<b>Part: </b>'.$display_part.' <b>Points: </b></td><td>'."\n";
1.71 ng 1633: my $ctr = 0;
1.348 bowersj2 1634: my $thisweight = 0;
1.349 albertel 1635: my $increment = &get_increment();
1.71 ng 1636: $result.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1.348 bowersj2 1637: while ($thisweight<=$wgt) {
1.381 albertel 1638: $result.= '<td><span style="white-space: nowrap;"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.71 ng 1639: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348 bowersj2 1640: $thisweight.')" value="'.$thisweight.'" '.
1.401 albertel 1641: ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.71 ng 1642: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348 bowersj2 1643: $thisweight += $increment;
1.71 ng 1644: $ctr++;
1645: }
1646: $result.='</tr></table>';
1647: $result.='</td><td> <b>or</b> </td>'."\n";
1648: $result.='<td><input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1649: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1650: 'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1651: $wgt.')" /></td>'."\n";
1652: $result.='<td>/'.$wgt.' '.$wgtmsg.
1653: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1654: ' </td><td>'."\n";
1655: $result.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
1656: 'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1657: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.384 albertel 1658: $result.='<option></option>'.
1.401 albertel 1659: '<option selected="selected">excused</option>';
1.71 ng 1660: } else {
1.401 albertel 1661: $result.='<option selected="selected"></option>'.
1.125 ng 1662: '<option>excused</option>';
1.71 ng 1663: }
1.125 ng 1664: $result.='<option>reset status</option></select>'."\n";
1.381 albertel 1665: $result.=" \n";
1.71 ng 1666: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1667: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1668: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1669: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1670: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1671: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1672: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1673: $aggtries.'" />'."\n";
1.71 ng 1674: $result.='</td></tr></table>'."\n";
1.323 banghart 1675: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record);
1.318 banghart 1676: return $result;
1677: }
1.322 albertel 1678:
1679: sub handback_box {
1.323 banghart 1680: my ($symb,$uname,$udom,$counter,$partid,$record) = @_;
1.324 albertel 1681: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.323 banghart 1682: my (@respids);
1.375 albertel 1683: my @part_response_id = &flatten_responseType($responseType);
1684: foreach my $part_response_id (@part_response_id) {
1685: my ($part,$resp) = @{ $part_response_id };
1.323 banghart 1686: if ($part eq $partid) {
1.375 albertel 1687: push(@respids,$resp);
1.323 banghart 1688: }
1689: }
1.318 banghart 1690: my $result;
1.323 banghart 1691: foreach my $respid (@respids) {
1.322 albertel 1692: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1693: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1694: next if (!@$files);
1695: my $file_counter = 1;
1.313 banghart 1696: foreach my $file (@$files) {
1.368 banghart 1697: if ($file =~ /\/portfolio\//) {
1698: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
1699: my ($name,$version,$ext) = &file_name_version_ext($file_disp);
1700: $file_disp = "$name.$ext";
1701: $file = $file_path.$file_disp;
1702: $result.=&mt('Return commented version of [_1] to student.',
1703: '<span class="LC_filename">'.$file_disp.'</span>');
1704: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1705: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />';
1.466 albertel 1706: $result.='(File will be uploaded when you click on Save & Next below.)<br />';
1.368 banghart 1707: $file_counter++;
1708: }
1.322 albertel 1709: }
1.313 banghart 1710: }
1.318 banghart 1711: return $result;
1.71 ng 1712: }
1.44 ng 1713:
1.58 albertel 1714: sub show_problem {
1.382 albertel 1715: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144 albertel 1716: my $rendered;
1.382 albertel 1717: my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329 albertel 1718: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1719: if ($mode eq 'both' or $mode eq 'text') {
1720: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382 albertel 1721: $env{'request.course.id'},
1722: undef,\%form);
1.144 albertel 1723: }
1.58 albertel 1724: if ($removeform) {
1725: $rendered=~s|<form(.*?)>||g;
1726: $rendered=~s|</form>||g;
1.374 albertel 1727: $rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58 albertel 1728: }
1.144 albertel 1729: my $companswer;
1730: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1731: &Apache::lonxml::restore_problem_counter();
1.382 albertel 1732: $companswer=
1733: &Apache::loncommon::get_student_answers($symb,$uname,$udom,
1734: $env{'request.course.id'},
1735: %form);
1.144 albertel 1736: }
1.58 albertel 1737: if ($removeform) {
1738: $companswer=~s|<form(.*?)>||g;
1739: $companswer=~s|</form>||g;
1.144 albertel 1740: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1741: }
1.468 albertel 1742: $rendered=
1743: '<div class="LC_grade_show_problem_header">'.
1744: &mt('View of the problem').
1745: '</div><div class="LC_grade_show_problem_problem">'.
1746: $rendered.
1747: '</div>';
1748: $companswer=
1749: '<div class="LC_grade_show_problem_header">'.
1750: &mt('Correct answer').
1751: '</div><div class="LC_grade_show_problem_problem">'.
1752: $companswer.
1753: '</div>';
1754: my $result;
1.144 albertel 1755: if ($mode eq 'both') {
1.468 albertel 1756: $result=$rendered.$companswer;
1.144 albertel 1757: } elsif ($mode eq 'text') {
1.468 albertel 1758: $result=$rendered;
1.144 albertel 1759: } elsif ($mode eq 'answer') {
1.468 albertel 1760: $result=$companswer;
1.144 albertel 1761: }
1.468 albertel 1762: $result='<div class="LC_grade_show_problem">'.$result.'</div>';
1.71 ng 1763: return $result;
1.58 albertel 1764: }
1.397 albertel 1765:
1.396 banghart 1766: sub files_exist {
1767: my ($r, $symb) = @_;
1768: my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397 albertel 1769:
1.396 banghart 1770: foreach my $student (@students) {
1771: my ($uname,$udom,$fullname) = split(/:/,$student);
1.397 albertel 1772: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
1773: $udom,$uname);
1.396 banghart 1774: my ($string,$timestamp)= &get_last_submission(\%record);
1.397 albertel 1775: foreach my $submission (@$string) {
1776: my ($partid,$respid) =
1777: ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1778: my $files=&get_submitted_files($udom,$uname,$partid,$respid,
1779: \%record);
1780: return 1 if (@$files);
1.396 banghart 1781: }
1782: }
1.397 albertel 1783: return 0;
1.396 banghart 1784: }
1.397 albertel 1785:
1.394 banghart 1786: sub download_all_link {
1787: my ($r,$symb) = @_;
1.395 albertel 1788: my $all_students =
1789: join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
1790:
1791: my $parts =
1792: join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
1793:
1.394 banghart 1794: my $identifier = &Apache::loncommon::get_cgi_id();
1795: &Apache::lonnet::appenv('cgi.'.$identifier.'.students' => $all_students,
1796: 'cgi.'.$identifier.'.symb' => $symb,
1.395 albertel 1797: 'cgi.'.$identifier.'.parts' => $parts,);
1798: $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
1799: &mt('Download All Submitted Documents').'</a>');
1.394 banghart 1800: return
1801: }
1.395 albertel 1802:
1.432 banghart 1803: sub build_section_inputs {
1804: my $section_inputs;
1805: if ($env{'form.section'} eq '') {
1806: $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
1807: } else {
1808: my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434 albertel 1809: foreach my $section (@sections) {
1.432 banghart 1810: $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
1811: }
1812: }
1813: return $section_inputs;
1814: }
1815:
1.44 ng 1816: # --------------------------- show submissions of a student, option to grade
1817: sub submission {
1818: my ($request,$counter,$total) = @_;
1.257 albertel 1819: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
1820: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
1821: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
1822: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.324 albertel 1823: my $symb = &get_symb($request);
1824: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104 albertel 1825:
1826: if (!&canview($usec)) {
1.398 albertel 1827: $request->print('<span class="LC_warning">Unable to view requested student.('.
1828: $uname.':'.$udom.' in section '.$usec.' in course id '.
1829: $env{'request.course.id'}.')</span>');
1.324 albertel 1830: $request->print(&show_grading_menu_form($symb));
1.104 albertel 1831: return;
1832: }
1833:
1.257 albertel 1834: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
1835: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
1836: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
1837: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381 albertel 1838: my $checkIcon = '<img alt="'.&mt('Check Mark').
1839: '" src="'.$request->dir_config('lonIconsURL').
1.122 ng 1840: '/check.gif" height="16" border="0" />';
1.41 ng 1841:
1.426 albertel 1842: my %old_essays;
1.41 ng 1843: # header info
1844: if ($counter == 0) {
1845: &sub_page_js($request);
1.257 albertel 1846: &sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
1847: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
1848: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.397 albertel 1849: if ($env{'form.handgrade'} eq 'yes' && &files_exist($request, $symb)) {
1.396 banghart 1850: &download_all_link($request, $symb);
1851: }
1.398 albertel 1852: $request->print('<h3> <span class="LC_info">Submission Record</span></h3>'."\n".
1853: '<h4> <b>Resource: </b>'.$env{'form.probTitle'}.'</h4>'."\n");
1.118 ng 1854:
1.44 ng 1855: # option to display problem, only once else it cause problems
1856: # with the form later since the problem has a form.
1.257 albertel 1857: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 1858: my $mode;
1.257 albertel 1859: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 1860: $mode='both';
1.257 albertel 1861: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 1862: $mode='text';
1.257 albertel 1863: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 1864: $mode='answer';
1865: }
1.329 albertel 1866: &Apache::lonxml::clear_problem_counter();
1.144 albertel 1867: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 1868: }
1.441 www 1869:
1.44 ng 1870: # kwclr is the only variable that is guaranteed to be non blank
1871: # if this subroutine has been called once.
1.41 ng 1872: my %keyhash = ();
1.257 albertel 1873: if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41 ng 1874: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 1875: $env{'course.'.$env{'request.course.id'}.'.domain'},
1876: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 1877:
1.257 albertel 1878: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1879: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
1880: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
1881: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
1882: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
1883: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
1884: $keyhash{$symb.'_subject'} : $env{'form.probTitle'};
1885: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 1886: }
1.257 albertel 1887: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442 banghart 1888: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303 banghart 1889: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 1890: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.257 albertel 1891: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 1892: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.120 ng 1893: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257 albertel 1894: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.41 ng 1895: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 1896: '<input type="hidden" name="studentNo" value="" />'."\n".
1897: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.418 albertel 1898: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 1899: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
1900: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
1901: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
1902: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.432 banghart 1903: &build_section_inputs().
1.326 albertel 1904: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
1905: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" />'."\n".
1.41 ng 1906: '<input type="hidden" name="NCT"'.
1.257 albertel 1907: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
1908: if ($env{'form.handgrade'} eq 'yes') {
1909: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
1910: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
1911: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
1912: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
1913: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 1914: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 1915: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 1916: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
1917: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
1918: }
1.123 ng 1919: }
1.41 ng 1920:
1921: my ($cts,$prnmsg) = (1,'');
1.257 albertel 1922: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 1923: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 1924: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 1925: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 1926: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 1927: '" />'."\n".
1928: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 1929: $cts++;
1930: }
1931: $request->print($prnmsg);
1.32 ng 1932:
1.257 albertel 1933: if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.88 www 1934: #
1935: # Print out the keyword options line
1936: #
1.41 ng 1937: $request->print(<<KEYWORDS);
1.38 ng 1938: <b>Keyword Options:</b>
1.417 albertel 1939: <a href="javascript:keywords(document.SCORE);" target="_self">List</a>
1.38 ng 1940: <a href="#" onMouseDown="javascript:getSel(); return false"
1941: CLASS="page">Paste Selection to List</a>
1.417 albertel 1942: <a href="javascript:kwhighlight();" target="_self">Highlight Attribute</a><br /><br />
1.38 ng 1943: KEYWORDS
1.88 www 1944: #
1945: # Load the other essays for similarity check
1946: #
1.324 albertel 1947: my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384 albertel 1948: my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359 www 1949: $apath=&escape($apath);
1.88 www 1950: $apath=~s/\W/\_/gs;
1.426 albertel 1951: %old_essays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
1.41 ng 1952: }
1953: }
1.44 ng 1954:
1.441 www 1955: # This is where output for one specific student would start
1.468 albertel 1956: my $add_class = ($counter%2) ? 'LC_grade_show_user_odd_row' : '';
1.441 www 1957: $request->print("\n\n".
1.468 albertel 1958: '<div class="LC_grade_show_user '.$add_class.'">'.
1959: '<div class="LC_grade_user_name">'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</div>'.
1960: '<div class="LC_grade_show_user_body">'."\n");
1.441 www 1961:
1.257 albertel 1962: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144 albertel 1963: my $mode;
1.257 albertel 1964: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 1965: $mode='both';
1.257 albertel 1966: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 1967: $mode='text';
1.257 albertel 1968: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 1969: $mode='answer';
1970: }
1.329 albertel 1971: &Apache::lonxml::clear_problem_counter();
1.144 albertel 1972: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode));
1.58 albertel 1973: }
1.144 albertel 1974:
1.257 albertel 1975: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 1976: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.41 ng 1977:
1.44 ng 1978: # Display student info
1.41 ng 1979: $request->print(($counter == 0 ? '' : '<br />'));
1.468 albertel 1980: my $result='<div class="LC_grade_submissions">';
1981:
1982: $result.='<div class="LC_grade_submissions_header">';
1983: $result.= &mt('Submissions');
1.45 ng 1984: $result.='<input type="hidden" name="name'.$counter.
1.257 albertel 1985: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.469 albertel 1986: if ($env{'form.handgrade'} eq 'no') {
1987: $result.='<span class="LC_grade_check_note">'.
1988: &mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)."</span>\n";
1989:
1990: }
1991:
1992:
1.41 ng 1993:
1.118 ng 1994: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464 albertel 1995: my $fullname;
1996: my $col_fullnames = [];
1.257 albertel 1997: if ($env{'form.handgrade'} eq 'yes') {
1.464 albertel 1998: (my $sub_result,$fullname,$col_fullnames)=
1999: &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
2000: $counter);
2001: $result.=$sub_result;
1.41 ng 2002: }
1.44 ng 2003: $request->print($result."\n");
1.468 albertel 2004: $request->print('</div>'."\n");
1.44 ng 2005: # print student answer/submission
2006: # Options are (1) Handgaded submission only
2007: # (2) Last submission, includes submission that is not handgraded
2008: # (for multi-response type part)
2009: # (3) Last submission plus the parts info
2010: # (4) The whole record for this student
1.257 albertel 2011: if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151 albertel 2012: my ($string,$timestamp)= &get_last_submission(\%record);
1.468 albertel 2013:
2014: my $lastsubonly;
2015:
1.151 albertel 2016: if ($$timestamp eq '') {
1.468 albertel 2017: $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>';
1.151 albertel 2018: } else {
1.468 albertel 2019: $lastsubonly = '<div class="LC_grade_submissions_body"> <b>Date Submitted:</b> '.$$timestamp."\n";
2020:
1.151 albertel 2021: my %seenparts;
1.375 albertel 2022: my @part_response_id = &flatten_responseType($responseType);
2023: foreach my $part (@part_response_id) {
1.393 albertel 2024: next if ($env{'form.lastSub'} eq 'hdgrade'
2025: && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
2026:
1.375 albertel 2027: my ($partid,$respid) = @{ $part };
1.324 albertel 2028: my $display_part=&get_display_part($partid,$symb);
1.257 albertel 2029: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151 albertel 2030: if (exists($seenparts{$partid})) { next; }
2031: $seenparts{$partid}=1;
1.207 albertel 2032: my $submitby='<b>Part:</b> '.$display_part.
2033: ' <b>Collaborative submission by:</b> '.
1.151 albertel 2034: '<a href="javascript:viewSubmitter(\''.
1.257 albertel 2035: $env{"form.$uname:$udom:$partid:submitted_by"}.
1.417 albertel 2036: '\');" target="_self">'.
1.257 albertel 2037: $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151 albertel 2038: $request->print($submitby);
2039: next;
2040: }
2041: my $responsetype = $responseType->{$partid}->{$respid};
2042: if (!exists($record{"resource.$partid.$respid.submission"})) {
1.468 albertel 2043: $lastsubonly.="\n".'<div class="LC_grade_submission_part"><b>Part:</b> '.
1.398 albertel 2044: $display_part.' <span class="LC_internal_info">( ID '.$respid.
2045: ' )</span> '.
1.468 albertel 2046: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br /><br /></div>';
1.151 albertel 2047: next;
2048: }
1.468 albertel 2049: foreach my $submission (@$string) {
2050: my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375 albertel 2051: if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.468 albertel 2052: my ($ressub,$subval) = split(/:/,$submission,2);
1.151 albertel 2053: # Similarity check
2054: my $similar='';
1.257 albertel 2055: if($env{'form.checkPlag'}){
1.151 albertel 2056: my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.426 albertel 2057: &most_similar($uname,$udom,$subval,\%old_essays);
1.151 albertel 2058: if ($osim) {
2059: $osim=int($osim*100.0);
1.426 albertel 2060: my %old_course_desc =
2061: &Apache::lonnet::coursedescription($ocrsid,
2062: {'one_time' => 1});
2063:
2064: $similar="<hr /><h3><span class=\"LC_warning\">".
1.427 albertel 2065: &mt('Essay is [_1]% similar to an essay by [_2] ([_3]:[_4]) in course [_5] (course id [_6]:[_7])',
1.426 albertel 2066: $osim,
2067: &Apache::loncommon::plainname($oname,$odom),
1.427 albertel 2068: $oname,$odom,
1.426 albertel 2069: $old_course_desc{'description'},
1.427 albertel 2070: $old_course_desc{'num'},
1.426 albertel 2071: $old_course_desc{'domain'}).
1.398 albertel 2072: '</span></h3><blockquote><i>'.
1.151 albertel 2073: &keywords_highlight($oessay).
2074: '</i></blockquote><hr />';
2075: }
1.150 albertel 2076: }
1.151 albertel 2077: my $order=&get_order($partid,$respid,$symb,$uname,$udom);
1.257 albertel 2078: if ($env{'form.lastSub'} eq 'lastonly' ||
2079: ($env{'form.lastSub'} eq 'hdgrade' &&
1.377 albertel 2080: $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324 albertel 2081: my $display_part=&get_display_part($partid,$symb);
1.468 albertel 2082: $lastsubonly.='<div class="LC_grade_submission_part"><b>Part:</b> '.
1.403 albertel 2083: $display_part.' <span class="LC_internal_info">( ID '.$respid.
1.398 albertel 2084: ' )</span> ';
1.313 banghart 2085: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
2086: if (@$files) {
1.468 albertel 2087: $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain virusses').'</span><br />';
1.303 banghart 2088: my $file_counter = 0;
1.313 banghart 2089: foreach my $file (@$files) {
1.468 albertel 2090: $file_counter++;
1.232 albertel 2091: &Apache::lonnet::allowuploaded('/adm/grades',$file);
1.335 albertel 2092: $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border=0"> '.$file.'</a>';
1.232 albertel 2093: }
1.236 albertel 2094: $lastsubonly.='<br />';
1.41 ng 2095: }
1.468 albertel 2096: $lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
1.151 albertel 2097: &cleanRecord($subval,$responsetype,$symb,$partid,
2098: $respid,\%record,$order);
2099: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468 albertel 2100: $lastsubonly.='</div>';
1.41 ng 2101: }
2102: }
2103: }
1.468 albertel 2104: $lastsubonly.='</div>'."\n";
1.151 albertel 2105: }
2106: $request->print($lastsubonly);
1.468 albertel 2107: } elsif ($env{'form.lastSub'} eq 'datesub') {
1.324 albertel 2108: my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
1.148 albertel 2109: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257 albertel 2110: } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41 ng 2111: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 2112: $env{'request.course.id'},
1.44 ng 2113: $last,'.submission',
2114: 'Apache::grades::keywords_highlight'));
1.41 ng 2115: }
1.120 ng 2116:
1.121 ng 2117: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
2118: .$udom.'" />'."\n");
1.44 ng 2119: # return if view submission with no grading option
1.257 albertel 2120: if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120 ng 2121: my $toGrade.='<input type="button" value="Grade Student" '.
1.121 ng 2122: 'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
1.417 albertel 2123: .$counter.'\');" target="_self" /> '."\n" if (&canmodify($usec));
1.468 albertel 2124: $toGrade.='</div>'."\n";
1.257 albertel 2125: if (($env{'form.command'} eq 'submission') ||
2126: ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.324 albertel 2127: $toGrade.='</form>'.&show_grading_menu_form($symb);
1.169 albertel 2128: }
1.180 albertel 2129: $request->print($toGrade);
1.41 ng 2130: return;
1.180 albertel 2131: } else {
1.468 albertel 2132: $request->print('</div>'."\n");
1.41 ng 2133: }
1.33 ng 2134:
1.121 ng 2135: # essay grading message center
1.257 albertel 2136: if ($env{'form.handgrade'} eq 'yes') {
1.468 albertel 2137: my $result='<div class="LC_grade_message_center">';
2138:
2139: $result.='<div class="LC_grade_message_center_header">'.
2140: &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257 albertel 2141: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 2142: my $msgfor = $givenn.' '.$lastname;
1.464 albertel 2143: if (scalar(@$col_fullnames) > 0) {
2144: my $lastone = pop(@$col_fullnames);
2145: $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118 ng 2146: }
2147: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468 albertel 2148: $result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121 ng 2149: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
2150: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417 albertel 2151: ',\''.$msgfor.'\');" target="_self">'.
1.464 albertel 2152: &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
1.350 albertel 2153: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.118 ng 2154: '<img src="'.$request->dir_config('lonIconsURL').
2155: '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298 www 2156: '<br /> ('.
1.468 albertel 2157: &mt('Message will be sent when you click on Save & Next below.').")\n";
2158: $result.='</div></div>';
1.121 ng 2159: $request->print($result);
1.118 ng 2160: }
1.41 ng 2161:
2162: my %seen = ();
2163: my @partlist;
1.129 ng 2164: my @gradePartRespid;
1.375 albertel 2165: my @part_response_id = &flatten_responseType($responseType);
1.468 albertel 2166: $request->print('<div class="LC_grade_assign">'.
2167:
2168: '<div class="LC_grade_assign_header">'.
2169: &mt('Assign Grades').'</div>'.
2170: '<div class="LC_grade_assign_body">');
1.375 albertel 2171: foreach my $part_response_id (@part_response_id) {
2172: my ($partid,$respid) = @{ $part_response_id };
2173: my $part_resp = join('_',@{ $part_response_id });
1.322 albertel 2174: next if ($seen{$partid} > 0);
1.41 ng 2175: $seen{$partid}++;
1.393 albertel 2176: next if ($$handgrade{$part_resp} ne 'yes'
2177: && $env{'form.lastSub'} eq 'hdgrade');
1.41 ng 2178: push @partlist,$partid;
1.129 ng 2179: push @gradePartRespid,$partid.'.'.$respid;
1.322 albertel 2180: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 2181: }
1.468 albertel 2182: $request->print('</div></div>');
2183:
2184: $request->print('<div class="LC_grade_info_links">');
2185: if ($perm{'vgr'}) {
2186: $request->print(
2187: &Apache::loncommon::track_student_link(&mt('View recent activity'),
2188: $uname,$udom,'check'));
2189: }
2190: if ($perm{'opa'}) {
2191: $request->print(
2192: &Apache::loncommon::pprmlink(&mt('Set/Change parameters'),
2193: $uname,$udom,$symb,'check'));
2194: }
2195: $request->print('</div>');
2196:
1.45 ng 2197: $result='<input type="hidden" name="partlist'.$counter.
2198: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 2199: $result.='<input type="hidden" name="gradePartRespid'.
2200: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 2201: my $ctr = 0;
2202: while ($ctr < scalar(@partlist)) {
2203: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
2204: $partlist[$ctr].'" />'."\n";
2205: $ctr++;
2206: }
1.468 albertel 2207: $request->print($result.''."\n");
1.41 ng 2208:
1.441 www 2209: # Done with printing info for one student
2210:
1.468 albertel 2211: $request->print('</div>');#LC_grade_show_user_body
2212: $request->print('</div>');#LC_grade_show_user
1.441 www 2213:
2214:
1.41 ng 2215: # print end of form
2216: if ($counter == $total) {
1.297 www 2217: my $endform='<table border="0"><tr><td>'."\n";
1.119 ng 2218: $endform.='<input type="button" value="Save & Next" '.
2219: 'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417 albertel 2220: $total.','.scalar(@partlist).');" target="_self" /> '."\n";
1.119 ng 2221: my $ntstu ='<select name="NTSTU">'.
2222: '<option>1</option><option>2</option>'.
2223: '<option>3</option><option>5</option>'.
2224: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 2225: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401 albertel 2226: $ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.119 ng 2227: $endform.=$ntstu.'student(s) ';
1.126 ng 2228: $endform.='<input type="button" value="Previous" '.
1.417 albertel 2229: 'onClick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> '."\n".
1.126 ng 2230: '<input type="button" value="Next" '.
1.417 albertel 2231: 'onClick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> ';
1.126 ng 2232: $endform.='(Next and Previous (student) do not save the scores.)'."\n" ;
1.349 albertel 2233: $endform.="<input type='hidden' value='".&get_increment().
1.348 bowersj2 2234: "' name='increment' />";
1.45 ng 2235: $endform.='</td><tr></table></form>';
1.324 albertel 2236: $endform.=&show_grading_menu_form($symb);
1.41 ng 2237: $request->print($endform);
2238: }
2239: return '';
1.38 ng 2240: }
2241:
1.464 albertel 2242: sub check_collaborators {
2243: my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
2244: my ($result,@col_fullnames);
2245: my ($classlist,undef,$fullname) = &getclasslist('all','0');
2246: foreach my $part (keys(%$handgrade)) {
2247: my $ncol = &Apache::lonnet::EXT('resource.'.$part.
2248: '.maxcollaborators',
2249: $symb,$udom,$uname);
2250: next if ($ncol <= 0);
2251: $part =~ s/\_/\./g;
2252: next if ($record->{'resource.'.$part.'.collaborators'} eq '');
2253: my (@good_collaborators, @bad_collaborators);
2254: foreach my $possible_collaborator
2255: (split(/,?\s+/,$record->{'resource.'.$part.'.collaborators'})) {
2256: $possible_collaborator =~ s/[\$\^\(\)]//g;
2257: next if ($possible_collaborator eq '');
2258: my ($co_name,$co_dom) = split(/\@|:/,$possible_collaborator);
2259: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
2260: next if ($co_name eq $uname && $co_dom eq $udom);
2261: # Doing this grep allows 'fuzzy' specification
2262: my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i,
2263: keys(%$classlist));
2264: if (! scalar(@matches)) {
2265: push(@bad_collaborators, $possible_collaborator);
2266: } else {
2267: push(@good_collaborators, @matches);
2268: }
2269: }
2270: if (scalar(@good_collaborators) != 0) {
1.466 albertel 2271: $result.='<br />'.&mt('Collaborators: ');
1.464 albertel 2272: foreach my $name (@good_collaborators) {
2273: my ($lastname,$givenn) = split(/,/,$$fullname{$name});
2274: push(@col_fullnames, $givenn.' '.$lastname);
2275: $result.=$fullname->{$name}.' ';
2276: }
2277: $result.='<br />'."\n";
1.466 albertel 2278: my ($part)=split(/\./,$part);
1.464 albertel 2279: $result.='<input type="hidden" name="collaborator'.$counter.
2280: '" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
2281: "\n";
2282: }
2283: if (scalar(@bad_collaborators) > 0) {
1.466 albertel 2284: $result.='<div class="LC_warning">';
1.464 albertel 2285: $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
2286: $result .= '</div>';
2287: }
2288: if (scalar(@bad_collaborators > $ncol)) {
1.466 albertel 2289: $result .= '<div class="LC_warning">';
1.464 albertel 2290: $result .= &mt('This student has submitted too many '.
2291: 'collaborators. Maximum is [_1].',$ncol);
2292: $result .= '</div>';
2293: }
2294: }
2295: return ($result,$fullname,\@col_fullnames);
2296: }
2297:
1.44 ng 2298: #--- Retrieve the last submission for all the parts
1.38 ng 2299: sub get_last_submission {
1.119 ng 2300: my ($returnhash)=@_;
1.46 ng 2301: my (@string,$timestamp);
1.119 ng 2302: if ($$returnhash{'version'}) {
1.46 ng 2303: my %lasthash=();
2304: my ($version);
1.119 ng 2305: for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397 albertel 2306: foreach my $key (sort(split(/\:/,
2307: $$returnhash{$version.':keys'}))) {
2308: $lasthash{$key}=$$returnhash{$version.':'.$key};
2309: $timestamp =
2310: scalar(localtime($$returnhash{$version.':timestamp'}));
1.46 ng 2311: }
2312: }
1.397 albertel 2313: foreach my $key (keys(%lasthash)) {
2314: next if ($key !~ /\.submission$/);
2315:
2316: my ($partid,$foo) = split(/submission$/,$key);
2317: my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
1.398 albertel 2318: '<span class="LC_warning">Draft Copy</span> ' : '';
1.397 albertel 2319: push(@string, join(':', $key, $draft.$lasthash{$key}));
1.41 ng 2320: }
2321: }
1.397 albertel 2322: if (!@string) {
2323: $string[0] =
1.398 albertel 2324: '<span class="LC_warning">Nothing submitted - no attempts.</span>';
1.397 albertel 2325: }
2326: return (\@string,\$timestamp);
1.38 ng 2327: }
1.35 ng 2328:
1.44 ng 2329: #--- High light keywords, with style choosen by user.
1.38 ng 2330: sub keywords_highlight {
1.44 ng 2331: my $string = shift;
1.257 albertel 2332: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2333: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2334: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2335: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.398 albertel 2336: foreach my $keyword (@keylist) {
2337: $string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41 ng 2338: }
2339: return $string;
1.38 ng 2340: }
1.36 ng 2341:
1.44 ng 2342: #--- Called from submission routine
1.38 ng 2343: sub processHandGrade {
1.41 ng 2344: my ($request) = shift;
1.324 albertel 2345: my $symb = &get_symb($request);
2346: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2347: my $button = $env{'form.gradeOpt'};
2348: my $ngrade = $env{'form.NCT'};
2349: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2350: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2351: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2352:
1.44 ng 2353: if ($button eq 'Save & Next') {
2354: my $ctr = 0;
2355: while ($ctr < $ngrade) {
1.257 albertel 2356: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324 albertel 2357: my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2358: if ($errorflag eq 'no_score') {
2359: $ctr++;
2360: next;
2361: }
1.104 albertel 2362: if ($errorflag eq 'not_allowed') {
1.398 albertel 2363: $request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
1.104 albertel 2364: $ctr++;
2365: next;
2366: }
1.257 albertel 2367: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2368: my ($subject,$message,$msgstatus) = ('','','');
1.418 albertel 2369: my $restitle = &Apache::lonnet::gettitle($symb);
2370: my ($feedurl,$showsymb) =
2371: &get_feedurl_and_symb($symb,$uname,$udom);
2372: my $messagetail;
1.62 albertel 2373: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2374: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2375: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386 raeburn 2376: $subject.=' ['.$restitle.']';
1.44 ng 2377: my (@msgnum) = split(/,/,$includemsg);
2378: foreach (@msgnum) {
1.257 albertel 2379: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2380: }
1.80 ng 2381: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2382: if ($env{'form.withgrades'.$ctr}) {
2383: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386 raeburn 2384: $messagetail = " for <a href=\"".
1.418 albertel 2385: $feedurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.386 raeburn 2386: }
2387: $msgstatus =
2388: &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
2389: $message.$messagetail,
1.418 albertel 2390: undef,$feedurl,undef,
1.386 raeburn 2391: undef,undef,$showsymb,
2392: $restitle);
2393: $request->print('<br />'.&mt('Sending message to [_1]:[_2]',$uname,$udom).': '.
1.296 www 2394: $msgstatus);
1.44 ng 2395: }
1.257 albertel 2396: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2397: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2398: foreach my $collabstr (@collabstrs) {
2399: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2400: foreach my $collaborator (@collaborators) {
1.150 albertel 2401: my ($errorflag,$pts,$wgt) =
1.324 albertel 2402: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2403: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2404: if ($errorflag eq 'not_allowed') {
1.362 albertel 2405: $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150 albertel 2406: next;
1.418 albertel 2407: } elsif ($message ne '') {
2408: my ($baseurl,$showsymb) =
2409: &get_feedurl_and_symb($symb,$collaborator,
2410: $udom);
2411: if ($env{'form.withgrades'.$ctr}) {
2412: $messagetail = " for <a href=\"".
1.386 raeburn 2413: $baseurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.150 albertel 2414: }
1.418 albertel 2415: $msgstatus =
2416: &Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104 albertel 2417: }
1.44 ng 2418: }
2419: }
2420: }
2421: $ctr++;
2422: }
2423: }
2424:
1.257 albertel 2425: if ($env{'form.handgrade'} eq 'yes') {
1.119 ng 2426: # Keywords sorted in alphabatical order
1.257 albertel 2427: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 2428: my %keyhash = ();
1.257 albertel 2429: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
2430: $env{'form.keywords'} =~ s/^\s+|\s+$//;
2431: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
2432: $env{'form.keywords'} = join(' ',@keywords);
2433: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
2434: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
2435: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
2436: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
2437: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 2438:
2439: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 2440: # New messages are saved in env for the next student.
1.119 ng 2441: # All messages are saved in nohist_handgrade.db
2442: my ($ctr,$idx) = (1,1);
1.257 albertel 2443: while ($ctr <= $env{'form.savemsgN'}) {
2444: if ($env{'form.savemsg'.$ctr} ne '') {
2445: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 2446: $idx++;
2447: }
2448: $ctr++;
1.41 ng 2449: }
1.119 ng 2450: $ctr = 0;
2451: while ($ctr < $ngrade) {
1.257 albertel 2452: if ($env{'form.newmsg'.$ctr} ne '') {
2453: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
2454: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 2455: $idx++;
2456: }
2457: $ctr++;
1.41 ng 2458: }
1.257 albertel 2459: $env{'form.savemsgN'} = --$idx;
2460: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 2461: my $putresult = &Apache::lonnet::put
1.301 albertel 2462: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 2463: }
1.44 ng 2464: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 2465: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
2466: if ($env{'form.refresh'} eq 'on') {
1.86 ng 2467: my ($ctr,$total) = (0,0);
2468: while ($ctr < $ngrade) {
1.257 albertel 2469: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 2470: $ctr++;
2471: }
1.257 albertel 2472: $env{'form.NTSTU'}=$ngrade;
1.86 ng 2473: $ctr = 0;
2474: while ($ctr < $total) {
1.257 albertel 2475: my $processUser = $env{'form.unamedom'.$ctr};
2476: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2477: $env{'form.fullname'} = $$fullname{$processUser};
1.86 ng 2478: &submission($request,$ctr,$total-1);
1.41 ng 2479: $ctr++;
2480: }
2481: return '';
2482: }
1.36 ng 2483:
1.121 ng 2484: # Go directly to grade student - from submission or link from chart page
1.120 ng 2485: if ($button eq 'Grade Student') {
1.324 albertel 2486: (undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
1.257 albertel 2487: my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
2488: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2489: $env{'form.fullname'} = $$fullname{$processUser};
1.120 ng 2490: &submission($request,0,0);
2491: return '';
2492: }
2493:
1.44 ng 2494: # Get the next/previous one or group of students
1.257 albertel 2495: my $firststu = $env{'form.unamedom0'};
2496: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 2497: my $ctr = 2;
1.41 ng 2498: while ($laststu eq '') {
1.257 albertel 2499: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 2500: $ctr++;
2501: $laststu = $firststu if ($ctr > $ngrade);
2502: }
1.44 ng 2503:
1.41 ng 2504: my (@parsedlist,@nextlist);
2505: my ($nextflg) = 0;
1.294 albertel 2506: foreach (sort
2507: {
2508: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2509: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2510: }
2511: return $a cmp $b;
2512: } (keys(%$fullname))) {
1.41 ng 2513: if ($nextflg == 1 && $button =~ /Next$/) {
2514: push @parsedlist,$_;
2515: }
2516: $nextflg = 1 if ($_ eq $laststu);
2517: if ($button eq 'Previous') {
2518: last if ($_ eq $firststu);
2519: push @parsedlist,$_;
2520: }
2521: }
2522: $ctr = 0;
2523: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.324 albertel 2524: my ($partlist) = &response_type($symb);
1.41 ng 2525: foreach my $student (@parsedlist) {
1.257 albertel 2526: my $submitonly=$env{'form.submitonly'};
1.41 ng 2527: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 2528:
2529: if ($submitonly eq 'queued') {
2530: my %queue_status =
2531: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
2532: $udom,$uname);
2533: next if (!defined($queue_status{'gradingqueue'}));
2534: }
2535:
1.156 albertel 2536: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 2537: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2538: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 2539: my $submitted = 0;
1.248 albertel 2540: my $ungraded = 0;
2541: my $incorrect = 0;
1.145 albertel 2542: foreach (keys(%status)) {
2543: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 2544: $ungraded = 1 if ($status{$_} =~ /^ungraded/);
2545: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1.145 albertel 2546: my ($foo,$partid,$foo1) = split(/\./,$_);
2547: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
2548: $submitted = 0;
2549: }
1.41 ng 2550: }
1.156 albertel 2551: next if (!$submitted && ($submitonly eq 'yes' ||
2552: $submitonly eq 'incorrect' ||
2553: $submitonly eq 'graded'));
1.248 albertel 2554: next if (!$ungraded && ($submitonly eq 'graded'));
2555: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 2556: }
2557: push @nextlist,$student if ($ctr < $ntstu);
1.129 ng 2558: last if ($ctr == $ntstu);
1.41 ng 2559: $ctr++;
2560: }
1.36 ng 2561:
1.41 ng 2562: $ctr = 0;
2563: my $total = scalar(@nextlist)-1;
1.39 ng 2564:
1.41 ng 2565: foreach (sort @nextlist) {
2566: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 2567: $env{'form.student'} = $uname;
2568: $env{'form.userdom'} = $udom;
2569: $env{'form.fullname'} = $$fullname{$_};
1.41 ng 2570: &submission($request,$ctr,$total);
2571: $ctr++;
2572: }
2573: if ($total < 0) {
1.398 albertel 2574: my $the_end = '<h3><span class="LC_info">LON-CAPA User Message</span></h3><br />'."\n";
1.41 ng 2575: $the_end.='<b>Message: </b> No more students for this section or class.<br /><br />'."\n";
2576: $the_end.='Click on the button below to return to the grading menu.<br /><br />'."\n";
1.324 albertel 2577: $the_end.=&show_grading_menu_form($symb);
1.41 ng 2578: $request->print($the_end);
2579: }
2580: return '';
1.38 ng 2581: }
1.36 ng 2582:
1.44 ng 2583: #---- Save the score and award for each student, if changed
1.38 ng 2584: sub saveHandGrade {
1.324 albertel 2585: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 2586: my @version_parts;
1.104 albertel 2587: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 2588: $env{'request.course.id'});
1.104 albertel 2589: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 2590: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 2591: my @parts_graded;
1.77 ng 2592: my %newrecord = ();
2593: my ($pts,$wgt) = ('','');
1.269 raeburn 2594: my %aggregate = ();
2595: my $aggregateflag = 0;
1.301 albertel 2596: my @parts = split(/:/,$env{'form.partlist'.$newflg});
2597: foreach my $new_part (@parts) {
1.337 banghart 2598: #collaborator ($submi may vary for different parts
1.259 banghart 2599: if ($submitter && $new_part ne $part) { next; }
2600: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 2601: if ($dropMenu eq 'excused') {
1.259 banghart 2602: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
2603: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
2604: if (exists($record{'resource.'.$new_part.'.awarded'})) {
2605: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 2606: }
1.364 banghart 2607: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 2608: }
1.125 ng 2609: } elsif ($dropMenu eq 'reset status'
1.259 banghart 2610: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.197 albertel 2611: foreach my $key (keys (%record)) {
1.259 banghart 2612: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 2613: }
1.259 banghart 2614: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2615: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 2616: my $totaltries = $record{'resource.'.$part.'.tries'};
2617:
2618: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
2619: [$new_part]);
2620: my $aggtries =$totaltries;
1.269 raeburn 2621: if ($last_resets{$new_part}) {
1.270 albertel 2622: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
2623: $new_part);
1.269 raeburn 2624: }
1.270 albertel 2625:
2626: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 2627: if ($aggtries > 0) {
1.327 albertel 2628: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 2629: $aggregateflag = 1;
2630: }
1.125 ng 2631: } elsif ($dropMenu eq '') {
1.259 banghart 2632: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
2633: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
2634: $env{'form.RADVAL'.$newflg.'_'.$new_part});
2635: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 2636: next;
2637: }
1.259 banghart 2638: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
2639: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 2640: my $partial= $pts/$wgt;
1.259 banghart 2641: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 2642: #do not update score for part if not changed.
1.346 banghart 2643: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 2644: next;
1.251 banghart 2645: } else {
1.259 banghart 2646: push @parts_graded, $new_part;
1.153 albertel 2647: }
1.259 banghart 2648: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
2649: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 2650: }
1.259 banghart 2651: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 2652: if ($partial == 0) {
1.153 albertel 2653: if ($record{$reckey} ne 'incorrect_by_override') {
2654: $newrecord{$reckey} = 'incorrect_by_override';
2655: }
1.41 ng 2656: } else {
1.153 albertel 2657: if ($record{$reckey} ne 'correct_by_override') {
2658: $newrecord{$reckey} = 'correct_by_override';
2659: }
2660: }
2661: if ($submitter &&
1.259 banghart 2662: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
2663: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 2664: }
1.259 banghart 2665: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2666: "$env{'user.name'}:$env{'user.domain'}";
1.41 ng 2667: }
1.259 banghart 2668: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 2669: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
2670: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
2671: $dropMenu eq 'reset status')
2672: {
1.342 banghart 2673: push (@version_parts,$new_part);
1.259 banghart 2674: }
1.41 ng 2675: }
1.301 albertel 2676: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2677: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2678:
1.344 albertel 2679: if (%newrecord) {
2680: if (@version_parts) {
1.364 banghart 2681: my @changed_keys = &version_portfiles(\%record, \@parts_graded,
2682: $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 2683: @newrecord{@changed_keys} = @record{@changed_keys};
1.367 albertel 2684: foreach my $new_part (@version_parts) {
2685: &handback_files($request,$symb,$stuname,$domain,$newflg,
2686: $new_part,\%newrecord);
2687: }
1.259 banghart 2688: }
1.44 ng 2689: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 2690: $env{'request.course.id'},$domain,$stuname);
1.380 albertel 2691: &check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
2692: $cdom,$cnum,$domain,$stuname);
1.41 ng 2693: }
1.269 raeburn 2694: if ($aggregateflag) {
2695: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 2696: $cdom,$cnum);
1.269 raeburn 2697: }
1.301 albertel 2698: return ('',$pts,$wgt);
1.36 ng 2699: }
1.322 albertel 2700:
1.380 albertel 2701: sub check_and_remove_from_queue {
2702: my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
2703: my @ungraded_parts;
2704: foreach my $part (@{$parts}) {
2705: if ( $record->{ 'resource.'.$part.'.awarded'} eq ''
2706: && $record->{ 'resource.'.$part.'.solved' } ne 'excused'
2707: && $newrecord->{'resource.'.$part.'.awarded'} eq ''
2708: && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
2709: ) {
2710: push(@ungraded_parts, $part);
2711: }
2712: }
2713: if ( !@ungraded_parts ) {
2714: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
2715: $cnum,$domain,$stuname);
2716: }
2717: }
2718:
1.337 banghart 2719: sub handback_files {
2720: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.359 www 2721: my $portfolio_root = &propath($domain,$stuname).'/userfiles/portfolio';
2722: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.375 albertel 2723:
2724: my @part_response_id = &flatten_responseType($responseType);
2725: foreach my $part_response_id (@part_response_id) {
2726: my ($part_id,$resp_id) = @{ $part_response_id };
2727: my $part_resp = join('_',@{ $part_response_id });
1.337 banghart 2728: if (($env{'form.'.$newflg.'_'.$part_resp.'_returndoc1'}) && ($new_part == $part_id)) {
2729: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
2730: my $file_counter = 1;
1.367 albertel 2731: my $file_msg;
1.337 banghart 2732: while ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter}) {
2733: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'.filename'};
1.338 banghart 2734: my ($directory,$answer_file) =
2735: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter} =~ /^(.*?)([^\/]*)$/);
2736: my ($answer_name,$answer_ver,$answer_ext) =
2737: &file_name_version_ext($answer_file);
1.355 banghart 2738: my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.341 banghart 2739: my @dir_list = &Apache::lonnet::dirlist($portfolio_path,$domain,$stuname,$portfolio_root);
1.338 banghart 2740: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.355 banghart 2741: # fix file name
2742: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
2743: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
2744: $newflg.'_'.$part_resp.'_returndoc'.$file_counter,
2745: $save_file_name);
1.337 banghart 2746: if ($result !~ m|^/uploaded/|) {
1.401 albertel 2747: $request->print('<span class="LC_error">An error occurred ('.$result.
1.398 albertel 2748: ') while trying to upload '.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'</span><br />');
1.356 banghart 2749: } else {
1.360 banghart 2750: # mark the file as read only
2751: my @files = ($save_file_name);
1.372 albertel 2752: my @what = ($symb,$env{'request.course.id'},'handback');
1.360 banghart 2753: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@files,\@what);
1.367 albertel 2754: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
2755: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
2756: }
2757: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
2758: $file_msg.= "\n".'<br /><span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span><br />";
2759:
1.337 banghart 2760: }
2761: $request->print("<br />".$fname." will be the uploaded file name");
1.354 albertel 2762: $request->print(" ".$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter});
1.337 banghart 2763: $file_counter++;
2764: }
1.367 albertel 2765: my $subject = "File Handed Back by Instructor ";
2766: my $message = "A file has been returned that was originally submitted in reponse to: <br />";
2767: $message .= "<strong>".&Apache::lonnet::gettitle($symb)."</strong><br />";
2768: $message .= ' The returned file(s) are named: '. $file_msg;
2769: $message .= " and can be found in your portfolio space.";
1.418 albertel 2770: my ($feedurl,$showsymb) =
2771: &get_feedurl_and_symb($symb,$domain,$stuname);
1.386 raeburn 2772: my $restitle = &Apache::lonnet::gettitle($symb);
2773: my $msgstatus =
2774: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject.
2775: ' (File Returned) ['.$restitle.']',$message,undef,
1.418 albertel 2776: $feedurl,undef,undef,undef,$showsymb,$restitle);
1.337 banghart 2777: }
2778: }
1.338 banghart 2779: return;
1.337 banghart 2780: }
2781:
1.418 albertel 2782: sub get_feedurl_and_symb {
2783: my ($symb,$uname,$udom) = @_;
2784: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
2785: $url = &Apache::lonnet::clutter($url);
2786: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
2787: $symb,$udom,$uname);
2788: if ($encrypturl =~ /^yes$/i) {
2789: &Apache::lonenc::encrypted(\$url,1);
2790: &Apache::lonenc::encrypted(\$symb,1);
2791: }
2792: return ($url,$symb);
2793: }
2794:
1.313 banghart 2795: sub get_submitted_files {
2796: my ($udom,$uname,$partid,$respid,$record) = @_;
2797: my @files;
2798: if ($$record{"resource.$partid.$respid.portfiles"}) {
2799: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
2800: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
2801: push(@files,$file_url.$file);
2802: }
2803: }
2804: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
2805: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
2806: }
2807: return (\@files);
2808: }
1.322 albertel 2809:
1.269 raeburn 2810: # ----------- Provides number of tries since last reset.
2811: sub get_num_tries {
2812: my ($record,$last_reset,$part) = @_;
2813: my $timestamp = '';
2814: my $num_tries = 0;
2815: if ($$record{'version'}) {
2816: for (my $version=$$record{'version'};$version>=1;$version--) {
2817: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
2818: $timestamp = $$record{$version.':timestamp'};
2819: if ($timestamp > $last_reset) {
2820: $num_tries ++;
2821: } else {
2822: last;
2823: }
2824: }
2825: }
2826: }
2827: return $num_tries;
2828: }
2829:
2830: # ----------- Determine decrements required in aggregate totals
2831: sub decrement_aggs {
2832: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
2833: my %decrement = (
2834: attempts => 0,
2835: users => 0,
2836: correct => 0
2837: );
2838: $decrement{'attempts'} = $aggtries;
2839: if ($solvedstatus =~ /^correct/) {
2840: $decrement{'correct'} = 1;
2841: }
2842: if ($aggtries == $totaltries) {
2843: $decrement{'users'} = 1;
2844: }
2845: foreach my $type (keys (%decrement)) {
2846: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
2847: }
2848: return;
2849: }
2850:
2851: # ----------- Determine timestamps for last reset of aggregate totals for parts
2852: sub get_last_resets {
1.270 albertel 2853: my ($symb,$courseid,$partids) =@_;
2854: my %last_resets;
1.269 raeburn 2855: my $cdom = $env{'course.'.$courseid.'.domain'};
2856: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 2857: my @keys;
2858: foreach my $part (@{$partids}) {
2859: push(@keys,"$symb\0$part\0resettime");
2860: }
2861: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
2862: $cdom,$cname);
2863: foreach my $part (@{$partids}) {
2864: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 2865: }
1.270 albertel 2866: return %last_resets;
1.269 raeburn 2867: }
2868:
1.251 banghart 2869: # ----------- Handles creating versions for portfolio files as answers
2870: sub version_portfiles {
1.343 banghart 2871: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 2872: my $version_parts = join('|',@$v_flag);
1.343 banghart 2873: my @returned_keys;
1.255 banghart 2874: my $parts = join('|', @$parts_graded);
1.359 www 2875: my $portfolio_root = &propath($domain,$stu_name).
2876: '/userfiles/portfolio';
1.277 albertel 2877: foreach my $key (keys(%$record)) {
1.259 banghart 2878: my $new_portfiles;
1.263 banghart 2879: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 2880: my @versioned_portfiles;
1.367 albertel 2881: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252 banghart 2882: foreach my $file (@portfiles) {
1.306 banghart 2883: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 2884: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
2885: my ($answer_name,$answer_ver,$answer_ext) =
2886: &file_name_version_ext($answer_file);
1.306 banghart 2887: my @dir_list = &Apache::lonnet::dirlist($directory,$domain,$stu_name,$portfolio_root);
1.342 banghart 2888: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.306 banghart 2889: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
2890: if ($new_answer ne 'problem getting file') {
1.342 banghart 2891: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 2892: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367 albertel 2893: [$directory.$new_answer],
1.306 banghart 2894: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 2895: }
1.252 banghart 2896: }
1.343 banghart 2897: $$record{$key} = join(',',@versioned_portfiles);
2898: push(@returned_keys,$key);
1.251 banghart 2899: }
2900: }
1.343 banghart 2901: return (@returned_keys);
1.305 banghart 2902: }
2903:
1.307 banghart 2904: sub get_next_version {
1.341 banghart 2905: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 2906: my $version;
2907: foreach my $row (@$dir_list) {
2908: my ($file) = split(/\&/,$row,2);
2909: my ($file_name,$file_version,$file_ext) =
2910: &file_name_version_ext($file);
2911: if (($file_name eq $answer_name) &&
2912: ($file_ext eq $answer_ext)) {
2913: # gets here if filename and extension match, regardless of version
2914: if ($file_version ne '') {
2915: # a versioned file is found so save it for later
2916: if ($file_version > $version) {
2917: $version = $file_version;
2918: }
2919: }
2920: }
2921: }
2922: $version ++;
2923: return($version);
2924: }
2925:
1.305 banghart 2926: sub version_selected_portfile {
1.306 banghart 2927: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
2928: my ($answer_name,$answer_ver,$answer_ext) =
2929: &file_name_version_ext($file_name);
2930: my $new_answer;
2931: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
2932: if($env{'form.copy'} eq '-1') {
2933: $new_answer = 'problem getting file';
2934: } else {
2935: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
2936: my $copy_result = &Apache::lonnet::finishuserfileupload(
2937: $stu_name,$domain,'copy',
2938: '/portfolio'.$directory.$new_answer);
2939: }
2940: return ($new_answer);
1.251 banghart 2941: }
2942:
1.304 albertel 2943: sub file_name_version_ext {
2944: my ($file)=@_;
2945: my @file_parts = split(/\./, $file);
2946: my ($name,$version,$ext);
2947: if (@file_parts > 1) {
2948: $ext=pop(@file_parts);
2949: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
2950: $version=pop(@file_parts);
2951: }
2952: $name=join('.',@file_parts);
2953: } else {
2954: $name=join('.',@file_parts);
2955: }
2956: return($name,$version,$ext);
2957: }
2958:
1.44 ng 2959: #--------------------------------------------------------------------------------------
2960: #
2961: #-------------------------- Next few routines handles grading by section or whole class
2962: #
2963: #--- Javascript to handle grading by section or whole class
1.42 ng 2964: sub viewgrades_js {
2965: my ($request) = shift;
2966:
1.41 ng 2967: $request->print(<<VIEWJAVASCRIPT);
2968: <script type="text/javascript" language="javascript">
1.45 ng 2969: function writePoint(partid,weight,point) {
1.125 ng 2970: var radioButton = document.classgrade["RADVAL_"+partid];
2971: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 2972: if (point == "textval") {
1.125 ng 2973: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 2974: if (isNaN(point) || parseFloat(point) < 0) {
2975: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.42 ng 2976: var resetbox = false;
2977: for (var i=0; i<radioButton.length; i++) {
2978: if (radioButton[i].checked) {
2979: textbox.value = i;
2980: resetbox = true;
2981: }
2982: }
2983: if (!resetbox) {
2984: textbox.value = "";
2985: }
2986: return;
2987: }
1.109 matthew 2988: if (parseFloat(point) > parseFloat(weight)) {
2989: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 2990: ") greater than the weight for the part. Accept?");
2991: if (resp == false) {
2992: textbox.value = "";
2993: return;
2994: }
2995: }
1.42 ng 2996: for (var i=0; i<radioButton.length; i++) {
2997: radioButton[i].checked=false;
1.109 matthew 2998: if (parseFloat(point) == i) {
1.42 ng 2999: radioButton[i].checked=true;
3000: }
3001: }
1.41 ng 3002:
1.42 ng 3003: } else {
1.125 ng 3004: textbox.value = parseFloat(point);
1.42 ng 3005: }
1.41 ng 3006: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3007: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3008: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3009: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3010: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3011: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3012: if (saveval != "correct") {
3013: scorename.value = point;
1.43 ng 3014: if (selname[0].selected != true) {
3015: selname[0].selected = true;
3016: }
1.42 ng 3017: }
3018: }
1.125 ng 3019: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3020: }
3021:
3022: function writeRadText(partid,weight) {
1.125 ng 3023: var selval = document.classgrade["SELVAL_"+partid];
3024: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3025: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3026: var textbox = document.classgrade["TEXTVAL_"+partid];
3027: if (selval[1].selected || selval[2].selected) {
1.42 ng 3028: for (var i=0; i<radioButton.length; i++) {
3029: radioButton[i].checked=false;
3030:
3031: }
3032: textbox.value = "";
3033:
3034: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3035: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3036: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3037: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3038: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3039: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3040: if ((saveval != "correct") || override) {
1.42 ng 3041: scorename.value = "";
1.125 ng 3042: if (selval[1].selected) {
3043: selname[1].selected = true;
3044: } else {
3045: selname[2].selected = true;
3046: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3047: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3048: }
1.42 ng 3049: }
3050: }
1.43 ng 3051: } else {
3052: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3053: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3054: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3055: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3056: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3057: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3058: if ((saveval != "correct") || override) {
1.125 ng 3059: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3060: selname[0].selected = true;
3061: }
3062: }
3063: }
1.42 ng 3064: }
3065:
3066: function changeSelect(partid,user) {
1.125 ng 3067: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3068: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3069: var point = textbox.value;
1.125 ng 3070: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3071:
1.109 matthew 3072: if (isNaN(point) || parseFloat(point) < 0) {
3073: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.44 ng 3074: textbox.value = "";
3075: return;
3076: }
1.109 matthew 3077: if (parseFloat(point) > parseFloat(weight)) {
3078: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3079: ") greater than the weight of the part. Accept?");
3080: if (resp == false) {
3081: textbox.value = "";
3082: return;
3083: }
3084: }
1.42 ng 3085: selval[0].selected = true;
3086: }
3087:
3088: function changeOneScore(partid,user) {
1.125 ng 3089: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3090: if (selval[1].selected || selval[2].selected) {
3091: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3092: if (selval[2].selected) {
3093: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3094: }
1.269 raeburn 3095: }
1.42 ng 3096: }
3097:
3098: function resetEntry(numpart) {
3099: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3100: var partid = document.classgrade["partid_"+ctpart].value;
3101: var radioButton = document.classgrade["RADVAL_"+partid];
3102: var textbox = document.classgrade["TEXTVAL_"+partid];
3103: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3104: for (var i=0; i<radioButton.length; i++) {
3105: radioButton[i].checked=false;
3106:
3107: }
3108: textbox.value = "";
3109: selval[0].selected = true;
3110:
3111: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3112: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3113: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3114: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3115: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3116: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3117: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3118: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3119: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3120: if (saveselval == "excused") {
1.43 ng 3121: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3122: } else {
1.43 ng 3123: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3124: }
3125: }
1.41 ng 3126: }
1.42 ng 3127: }
3128:
1.41 ng 3129: </script>
3130: VIEWJAVASCRIPT
1.42 ng 3131: }
3132:
1.44 ng 3133: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3134: sub viewgrades {
3135: my ($request) = shift;
3136: &viewgrades_js($request);
1.41 ng 3137:
1.324 albertel 3138: my ($symb) = &get_symb($request);
1.168 albertel 3139: #need to make sure we have the correct data for later EXT calls,
3140: #thus invalidate the cache
3141: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3142: $env{'course.'.$env{'request.course.id'}.'.num'},
3143: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3144: &Apache::lonnet::clear_EXT_cache_status();
3145:
1.398 albertel 3146: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
3147: $result.='<h4><b>Current Resource: </b>'.$env{'form.probTitle'}.'</h4>'."\n";
1.41 ng 3148:
3149: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3150: $result.=&jscriptNform($symb);
1.41 ng 3151:
1.44 ng 3152: #beginning of class grading form
1.442 banghart 3153: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3154: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3155: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3156: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3157: &build_section_inputs().
1.257 albertel 3158: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 3159: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.257 albertel 3160: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72 ng 3161:
1.126 ng 3162: my $sectionClass;
1.430 banghart 3163: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.257 albertel 3164: if ($env{'form.section'} eq 'all') {
1.126 ng 3165: $sectionClass='Class </h3>';
1.257 albertel 3166: } elsif ($env{'form.section'} eq 'none') {
1.431 banghart 3167: $sectionClass=&mt('Students in no Section').'</h3>';
1.52 albertel 3168: } else {
1.431 banghart 3169: $sectionClass=&mt('Students in Section(s) [_1]',$section_display).'</h3>';
1.52 albertel 3170: }
1.431 banghart 3171: $result.='<h3>'.&mt('Assign Common Grade To [_1]',$sectionClass);
1.52 albertel 3172: $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
3173: '<table border=0><tr bgcolor="#ffffdd"><td>';
1.44 ng 3174: #radio buttons/text box for assigning points for a section or class.
3175: #handles different parts of a problem
1.375 albertel 3176: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.42 ng 3177: my %weight = ();
3178: my $ctsparts = 0;
1.41 ng 3179: $result.='<table border="0">';
1.45 ng 3180: my %seen = ();
1.375 albertel 3181: my @part_response_id = &flatten_responseType($responseType);
3182: foreach my $part_response_id (@part_response_id) {
3183: my ($partid,$respid) = @{ $part_response_id };
3184: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3185: next if $seen{$partid};
3186: $seen{$partid}++;
1.375 albertel 3187: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3188: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3189: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3190:
1.44 ng 3191: $result.='<input type="hidden" name="partid_'.
3192: $ctsparts.'" value="'.$partid.'" />'."\n";
3193: $result.='<input type="hidden" name="weight_'.
3194: $partid.'" value="'.$weight{$partid}.'" />'."\n";
1.324 albertel 3195: my $display_part=&get_display_part($partid,$symb);
1.207 albertel 3196: $result.='<tr><td><b>Part:</b> '.$display_part.' <b>Point:</b> </td><td>';
1.42 ng 3197: $result.='<table border="0"><tr>';
1.41 ng 3198: my $ctr = 0;
1.42 ng 3199: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.288 albertel 3200: $result.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3201: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3202: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3203: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3204: $ctr++;
3205: }
3206: $result.='</tr></table>';
1.44 ng 3207: $result.= '</td><td><b> or </b><input type="text" name="TEXTVAL_'.
1.54 albertel 3208: $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
3209: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.42 ng 3210: $weight{$partid}.' (problem weight)</td>'."\n";
3211: $result.= '</td><td><select name="SELVAL_'.$partid.'"'.
1.54 albertel 3212: 'onChange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 3213: $weight{$partid}.')"> '.
1.401 albertel 3214: '<option selected="selected"> </option>'.
1.125 ng 3215: '<option>excused</option>'.
1.265 www 3216: '<option>reset status</option></select></td>'.
1.266 albertel 3217: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" /> Override "Correct"</label></td></tr>'."\n";
1.42 ng 3218: $ctsparts++;
1.41 ng 3219: }
1.52 albertel 3220: $result.='</table>'.'</td></tr></table>'.'</td></tr></table>'."\n".
3221: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.391 banghart 3222: $result.='<input type="button" value="Revert to Default" '.
1.417 albertel 3223: 'onClick="javascript:resetEntry('.$ctsparts.');" target="_self" />';
1.41 ng 3224:
1.44 ng 3225: #table listing all the students in a section/class
3226: #header of table
1.126 ng 3227: $result.= '<h3>Assign Grade to Specific Students in '.$sectionClass;
1.42 ng 3228: $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
1.126 ng 3229: '<table border=0><tr bgcolor="#deffff"><td> <b>No.</b> </td>'.
1.129 ng 3230: '<td>'.&nameUserString('header')."</td>\n";
1.324 albertel 3231: my (@parts) = sort(&getpartlist($symb));
3232: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3233: my @partids = ();
1.41 ng 3234: foreach my $part (@parts) {
3235: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.126 ng 3236: $display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
1.41 ng 3237: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3238: my ($partid) = &split_part_type($part);
1.269 raeburn 3239: push(@partids, $partid);
1.324 albertel 3240: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3241: if ($display =~ /^Partial Credit Factor/) {
1.207 albertel 3242: $result.='<td><b>Score Part:</b> '.$display_part.
3243: ' <br /><b>(weight = '.$weight{$partid}.')</b></td>'."\n";
1.41 ng 3244: next;
1.207 albertel 3245: } else {
3246: $display =~s/\[Part: \Q$partid\E\]/Part:<\/b> $display_part/;
1.41 ng 3247: }
1.53 albertel 3248: $display =~ s|Problem Status|Grade Status<br />|;
1.207 albertel 3249: $result.='<td><b>'.$display.'</td>'."\n";
1.41 ng 3250: }
3251: $result.='</tr>';
1.44 ng 3252:
1.270 albertel 3253: my %last_resets =
3254: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3255:
1.41 ng 3256: #get info for each student
1.44 ng 3257: #list all the students - with points and grade status
1.257 albertel 3258: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41 ng 3259: my $ctr = 0;
1.294 albertel 3260: foreach (sort
3261: {
3262: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3263: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3264: }
3265: return $a cmp $b;
3266: } (keys(%$fullname))) {
1.126 ng 3267: $ctr++;
1.324 albertel 3268: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269 raeburn 3269: $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41 ng 3270: }
3271: $result.='</table></td></tr></table>';
3272: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.126 ng 3273: $result.='<input type="button" value="Save" '.
1.417 albertel 3274: 'onClick="javascript:submit();" target="_self" /></form>'."\n";
1.96 albertel 3275: if (scalar(%$fullname) eq 0) {
3276: my $colspan=3+scalar(@parts);
1.433 banghart 3277: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442 banghart 3278: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433 banghart 3279: $result='<span class="LC_warning">'.
3280: &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade',
1.442 banghart 3281: $section_display, $stu_status).
1.433 banghart 3282: '</span>';
1.96 albertel 3283: }
1.324 albertel 3284: $result.=&show_grading_menu_form($symb);
1.41 ng 3285: return $result;
3286: }
3287:
1.44 ng 3288: #--- call by previous routine to display each student
1.41 ng 3289: sub viewstudentgrade {
1.324 albertel 3290: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 3291: my ($uname,$udom) = split(/:/,$student);
3292: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269 raeburn 3293: my %aggregates = ();
1.233 albertel 3294: my $result='<tr bgcolor="#ffffdd"><td align="right">'.
3295: '<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
3296: "\n".$ctr.' </td><td> '.
1.44 ng 3297: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 3298: '\');" target="_self">'.$fullname.'</a> '.
1.398 albertel 3299: '<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281 albertel 3300: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 3301: foreach my $apart (@$parts) {
3302: my ($part,$type) = &split_part_type($apart);
1.41 ng 3303: my $score=$record{"resource.$part.$type"};
1.276 albertel 3304: $result.='<td align="center">';
1.269 raeburn 3305: my ($aggtries,$totaltries);
3306: unless (exists($aggregates{$part})) {
1.270 albertel 3307: $totaltries = $record{'resource.'.$part.'.tries'};
3308:
3309: $aggtries = $totaltries;
1.269 raeburn 3310: if ($$last_resets{$part}) {
1.270 albertel 3311: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
3312: $part);
3313: }
1.269 raeburn 3314: $result.='<input type="hidden" name="'.
3315: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
3316: $result.='<input type="hidden" name="'.
3317: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
3318: $aggregates{$part} = 1;
3319: }
1.41 ng 3320: if ($type eq 'awarded') {
1.320 albertel 3321: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 3322: $result.='<input type="hidden" name="'.
1.89 albertel 3323: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 3324: $result.='<input type="text" name="'.
1.89 albertel 3325: 'GD_'.$student.'_'.$part.'_awarded" '.
3326: 'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 3327: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 3328: } elsif ($type eq 'solved') {
3329: my ($status,$foo)=split(/_/,$score,2);
3330: $status = 'nothing' if ($status eq '');
1.89 albertel 3331: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 3332: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 3333: $result.=' <select name="'.
1.89 albertel 3334: 'GD_'.$student.'_'.$part.'_solved" '.
3335: 'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.401 albertel 3336: $result.= (($status eq 'excused') ? '<option> </option><option selected="selected">excused</option>'
3337: : '<option selected="selected"> </option><option>excused</option>')."\n";
1.125 ng 3338: $result.='<option>reset status</option>';
1.126 ng 3339: $result.="</select> </td>\n";
1.122 ng 3340: } else {
3341: $result.='<input type="hidden" name="'.
3342: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
3343: "\n";
1.233 albertel 3344: $result.='<input type="text" name="'.
1.122 ng 3345: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
3346: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 3347: }
3348: }
3349: $result.='</tr>';
3350: return $result;
1.38 ng 3351: }
3352:
1.44 ng 3353: #--- change scores for all the students in a section/class
3354: # record does not get update if unchanged
1.38 ng 3355: sub editgrades {
1.41 ng 3356: my ($request) = @_;
3357:
1.324 albertel 3358: my $symb=&get_symb($request);
1.433 banghart 3359: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
3360: my $title='<h3><span class="LC_info">'.&mt('Current Grade Status').'</span></h3>';
3361: $title.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4><br />'."\n";
3362: $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126 ng 3363:
1.44 ng 3364: my $result= '<table border="0"><tr><td bgcolor="#777777">'."\n";
1.129 ng 3365: $result.= '<table border="0"><tr bgcolor="#deffff">'.
3366: '<td rowspan=2 valign="center"> <b>No.</b> </td>'.
3367: '<td rowspan=2 valign="center">'.&nameUserString('header')."</td>\n";
1.43 ng 3368:
3369: my %scoreptr = (
3370: 'correct' =>'correct_by_override',
3371: 'incorrect'=>'incorrect_by_override',
3372: 'excused' =>'excused',
3373: 'ungraded' =>'ungraded_attempted',
3374: 'nothing' => '',
3375: );
1.257 albertel 3376: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 3377:
1.44 ng 3378: my (@partid);
3379: my %weight = ();
1.54 albertel 3380: my %columns = ();
1.44 ng 3381: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 3382:
1.324 albertel 3383: my (@parts) = sort(&getpartlist($symb));
1.54 albertel 3384: my $header;
1.257 albertel 3385: while ($ctr < $env{'form.totalparts'}) {
3386: my $partid = $env{'form.partid_'.$ctr};
1.44 ng 3387: push @partid,$partid;
1.257 albertel 3388: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 3389: $ctr++;
1.54 albertel 3390: }
1.324 albertel 3391: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54 albertel 3392: foreach my $partid (@partid) {
3393: $header .= '<td align="center"> <b>Old Score</b> </td>'.
3394: '<td align="center"> <b>New Score</b> </td>';
3395: $columns{$partid}=2;
3396: foreach my $stores (@parts) {
3397: my ($part,$type) = &split_part_type($stores);
3398: if ($part !~ m/^\Q$partid\E/) { next;}
3399: if ($type eq 'awarded' || $type eq 'solved') { next; }
3400: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
3401: $display =~ s/\[Part: (\w)+\]//;
1.125 ng 3402: $display =~ s/Number of Attempts/Tries/;
3403: $header .= '<td align="center"> <b>Old '.$display.'</b> </td>'.
3404: '<td align="center"> <b>New '.$display.'</b> </td>';
1.54 albertel 3405: $columns{$partid}+=2;
3406: }
3407: }
3408: foreach my $partid (@partid) {
1.324 albertel 3409: my $display_part=&get_display_part($partid,$symb);
1.54 albertel 3410: $result .= '<td colspan="'.$columns{$partid}.
1.207 albertel 3411: '" align="center"><b>Part:</b> '.$display_part.
3412: ' (Weight = '.$weight{$partid}.')</td>';
1.54 albertel 3413:
1.44 ng 3414: }
3415: $result .= '</tr><tr bgcolor="#deffff">';
1.54 albertel 3416: $result .= $header;
1.44 ng 3417: $result .= '</tr>'."\n";
1.93 albertel 3418: my $noupdate;
1.126 ng 3419: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 3420: for ($i=0; $i<$env{'form.total'}; $i++) {
1.93 albertel 3421: my $line;
1.257 albertel 3422: my $user = $env{'form.ctr'.$i};
1.281 albertel 3423: my ($uname,$udom)=split(/:/,$user);
1.44 ng 3424: my %newrecord;
3425: my $updateflag = 0;
1.281 albertel 3426: $line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108 albertel 3427: my $usec=$classlist->{"$uname:$udom"}[5];
1.105 albertel 3428: if (!&canmodify($usec)) {
1.126 ng 3429: my $numcols=scalar(@partid)*4+2;
1.399 albertel 3430: $noupdate.=$line."<td colspan=\"$numcols\"><span class=\"LC_warning\">Not allowed to modify student</span></td></tr>";
1.105 albertel 3431: next;
3432: }
1.269 raeburn 3433: my %aggregate = ();
3434: my $aggregateflag = 0;
1.281 albertel 3435: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 3436: foreach (@partid) {
1.257 albertel 3437: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 3438: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
3439: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 3440: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
3441: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 3442: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
3443: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 3444: my $score;
3445: if ($partial eq '') {
1.257 albertel 3446: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 3447: } elsif ($partial > 0) {
3448: $score = 'correct_by_override';
3449: } elsif ($partial == 0) {
3450: $score = 'incorrect_by_override';
3451: }
1.257 albertel 3452: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 3453: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
3454:
1.292 albertel 3455: $newrecord{'resource.'.$_.'.regrader'}=
3456: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 3457: if ($dropMenu eq 'reset status' &&
3458: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 3459: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 3460: $newrecord{'resource.'.$_.'.solved'} = '';
3461: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 3462: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 3463: $updateflag = 1;
1.269 raeburn 3464: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
3465: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
3466: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
3467: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
3468: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
3469: $aggregateflag = 1;
3470: }
1.139 albertel 3471: } elsif (!($old_part eq $partial && $old_score eq $score)) {
3472: $updateflag = 1;
3473: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
3474: $newrecord{'resource.'.$_.'.solved'} = $score;
3475: $rec_update++;
1.125 ng 3476: }
3477:
1.93 albertel 3478: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 3479: '<td align="center">'.$awarded.
3480: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 3481:
1.54 albertel 3482:
3483: my $partid=$_;
3484: foreach my $stores (@parts) {
3485: my ($part,$type) = &split_part_type($stores);
3486: if ($part !~ m/^\Q$partid\E/) { next;}
3487: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 3488: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
3489: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 3490: if ($awarded ne '' && $awarded ne $old_aw) {
3491: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 3492: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 3493: $updateflag=1;
3494: }
1.93 albertel 3495: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 3496: '<td align="center">'.$awarded.' </td>';
3497: }
1.44 ng 3498: }
1.93 albertel 3499: $line.='</tr>'."\n";
1.301 albertel 3500:
3501: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3502: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3503:
1.44 ng 3504: if ($updateflag) {
3505: $count++;
1.257 albertel 3506: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 3507: $udom,$uname);
1.301 albertel 3508:
3509: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
3510: $cnum,$udom,$uname)) {
3511: # need to figure out if should be in queue.
3512: my %record =
3513: &Apache::lonnet::restore($symb,$env{'request.course.id'},
3514: $udom,$uname);
3515: my $all_graded = 1;
3516: my $none_graded = 1;
3517: foreach my $part (@parts) {
3518: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
3519: $all_graded = 0;
3520: } else {
3521: $none_graded = 0;
3522: }
3523: }
3524:
3525: if ($all_graded || $none_graded) {
3526: &Apache::bridgetask::remove_from_queue('gradingqueue',
3527: $symb,$cdom,$cnum,
3528: $udom,$uname);
3529: }
3530: }
3531:
1.126 ng 3532: $result.='<tr bgcolor="#ffffde"><td align="right"> '.$updateCtr.' </td>'.$line;
3533: $updateCtr++;
1.93 albertel 3534: } else {
1.126 ng 3535: $noupdate.='<tr bgcolor="#ffffde"><td align="right"> '.$noupdateCtr.' </td>'.$line;
3536: $noupdateCtr++;
1.44 ng 3537: }
1.269 raeburn 3538: if ($aggregateflag) {
3539: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3540: $cdom,$cnum);
1.269 raeburn 3541: }
1.93 albertel 3542: }
3543: if ($noupdate) {
1.126 ng 3544: # my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
3545: my $numcols=scalar(@partid)*4+2;
1.204 albertel 3546: $result .= '<tr bgcolor="#ffffff"><td align="center" colspan="'.$numcols.'">No Changes Occurred For the Students Below</td></tr><tr bgcolor="#ffffde">'.$noupdate;
1.44 ng 3547: }
1.72 ng 3548: $result .= '</table></td></tr></table>'."\n".
1.324 albertel 3549: &show_grading_menu_form ($symb);
1.125 ng 3550: my $msg = '<br /><b>Number of records updated = '.$rec_update.
1.44 ng 3551: ' for '.$count.' student'.($count <= 1 ? '' : 's').'.</b><br />'.
1.257 albertel 3552: '<b>Total number of students = '.$env{'form.total'}.'</b><br />';
1.44 ng 3553: return $title.$msg.$result;
1.5 albertel 3554: }
1.54 albertel 3555:
3556: sub split_part_type {
3557: my ($partstr) = @_;
3558: my ($temp,@allparts)=split(/_/,$partstr);
3559: my $type=pop(@allparts);
1.439 albertel 3560: my $part=join('_',@allparts);
1.54 albertel 3561: return ($part,$type);
3562: }
3563:
1.44 ng 3564: #------------- end of section for handling grading by section/class ---------
3565: #
3566: #----------------------------------------------------------------------------
3567:
1.5 albertel 3568:
1.44 ng 3569: #----------------------------------------------------------------------------
3570: #
3571: #-------------------------- Next few routines handles grading by csv upload
3572: #
3573: #--- Javascript to handle csv upload
1.27 albertel 3574: sub csvupload_javascript_reverse_associate {
1.246 albertel 3575: my $error1=&mt('You need to specify the username or ID');
3576: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3577: return(<<ENDPICK);
3578: function verify(vf) {
3579: var foundsomething=0;
3580: var founduname=0;
1.243 albertel 3581: var foundID=0;
1.27 albertel 3582: for (i=0;i<=vf.nfields.value;i++) {
3583: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3584: if (i==0 && tw!=0) { foundID=1; }
3585: if (i==1 && tw!=0) { founduname=1; }
3586: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 3587: }
1.246 albertel 3588: if (founduname==0 && foundID==0) {
3589: alert('$error1');
3590: return;
1.27 albertel 3591: }
3592: if (foundsomething==0) {
1.246 albertel 3593: alert('$error2');
3594: return;
1.27 albertel 3595: }
3596: vf.submit();
3597: }
3598: function flip(vf,tf) {
3599: var nw=eval('vf.f'+tf+'.selectedIndex');
3600: var i;
3601: for (i=0;i<=vf.nfields.value;i++) {
3602: //can not pick the same destination field for both name and domain
3603: if (((i ==0)||(i ==1)) &&
3604: ((tf==0)||(tf==1)) &&
3605: (i!=tf) &&
3606: (eval('vf.f'+i+'.selectedIndex')==nw)) {
3607: eval('vf.f'+i+'.selectedIndex=0;')
3608: }
3609: }
3610: }
3611: ENDPICK
3612: }
3613:
3614: sub csvupload_javascript_forward_associate {
1.246 albertel 3615: my $error1=&mt('You need to specify the username or ID');
3616: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3617: return(<<ENDPICK);
3618: function verify(vf) {
3619: var foundsomething=0;
3620: var founduname=0;
1.243 albertel 3621: var foundID=0;
1.27 albertel 3622: for (i=0;i<=vf.nfields.value;i++) {
3623: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3624: if (tw==1) { foundID=1; }
3625: if (tw==2) { founduname=1; }
3626: if (tw>3) { foundsomething=1; }
1.27 albertel 3627: }
1.246 albertel 3628: if (founduname==0 && foundID==0) {
3629: alert('$error1');
3630: return;
1.27 albertel 3631: }
3632: if (foundsomething==0) {
1.246 albertel 3633: alert('$error2');
3634: return;
1.27 albertel 3635: }
3636: vf.submit();
3637: }
3638: function flip(vf,tf) {
3639: var nw=eval('vf.f'+tf+'.selectedIndex');
3640: var i;
3641: //can not pick the same destination field twice
3642: for (i=0;i<=vf.nfields.value;i++) {
3643: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
3644: eval('vf.f'+i+'.selectedIndex=0;')
3645: }
3646: }
3647: }
3648: ENDPICK
3649: }
3650:
1.26 albertel 3651: sub csvuploadmap_header {
1.324 albertel 3652: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 3653: my $javascript;
1.257 albertel 3654: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3655: $javascript=&csvupload_javascript_reverse_associate();
3656: } else {
3657: $javascript=&csvupload_javascript_forward_associate();
3658: }
1.45 ng 3659:
1.324 albertel 3660: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.257 albertel 3661: my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245 albertel 3662: my $ignore=&mt('Ignore First Line');
1.418 albertel 3663: $symb = &Apache::lonenc::check_encrypt($symb);
1.41 ng 3664: $request->print(<<ENDPICK);
1.26 albertel 3665: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 3666: <h3><span class="LC_info">Uploading Class Grades</span></h3>
1.45 ng 3667: $result
1.326 albertel 3668: <hr />
1.26 albertel 3669: <h3>Identify fields</h3>
3670: Total number of records found in file: $distotal <hr />
3671: Enter as many fields as you can. The system will inform you and bring you back
3672: to this page if the data selected is insufficient to run your class.<hr />
3673: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245 albertel 3674: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26 albertel 3675: <input type="hidden" name="associate" value="" />
3676: <input type="hidden" name="phase" value="three" />
3677: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 3678: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
3679: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 3680: <input type="hidden" name="upfile_associate"
1.257 albertel 3681: value="$env{'form.upfile_associate'}" />
1.26 albertel 3682: <input type="hidden" name="symb" value="$symb" />
1.257 albertel 3683: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
3684: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
1.246 albertel 3685: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 3686: <hr />
3687: <script type="text/javascript" language="Javascript">
3688: $javascript
3689: </script>
3690: ENDPICK
1.118 ng 3691: return '';
1.26 albertel 3692:
3693: }
3694:
3695: sub csvupload_fields {
1.324 albertel 3696: my ($symb) = @_;
3697: my (@parts) = &getpartlist($symb);
1.243 albertel 3698: my @fields=(['ID','Student ID'],
3699: ['username','Student Username'],
3700: ['domain','Student Domain']);
1.324 albertel 3701: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 3702: foreach my $part (sort(@parts)) {
3703: my @datum;
3704: my $display=&Apache::lonnet::metadata($url,$part.'.display');
3705: my $name=$part;
3706: if (!$display) { $display = $name; }
3707: @datum=($name,$display);
1.244 albertel 3708: if ($name=~/^stores_(.*)_awarded/) {
3709: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
3710: }
1.41 ng 3711: push(@fields,\@datum);
3712: }
3713: return (@fields);
1.26 albertel 3714: }
3715:
3716: sub csvuploadmap_footer {
1.41 ng 3717: my ($request,$i,$keyfields) =@_;
3718: $request->print(<<ENDPICK);
1.26 albertel 3719: </table>
3720: <input type="hidden" name="nfields" value="$i" />
3721: <input type="hidden" name="keyfields" value="$keyfields" />
3722: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
3723: </form>
3724: ENDPICK
3725: }
3726:
1.283 albertel 3727: sub checkforfile_js {
1.86 ng 3728: my $result =<<CSVFORMJS;
3729: <script type="text/javascript" language="javascript">
3730: function checkUpload(formname) {
3731: if (formname.upfile.value == "") {
3732: alert("Please use the browse button to select a file from your local directory.");
3733: return false;
3734: }
3735: formname.submit();
3736: }
3737: </script>
3738: CSVFORMJS
1.283 albertel 3739: return $result;
3740: }
3741:
3742: sub upcsvScores_form {
3743: my ($request) = shift;
1.324 albertel 3744: my ($symb)=&get_symb($request);
1.283 albertel 3745: if (!$symb) {return '';}
3746: my $result=&checkforfile_js();
1.257 albertel 3747: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.324 albertel 3748: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
1.118 ng 3749: $result.=$table;
1.326 albertel 3750: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
3751: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.370 www 3752: $result.=' <b>'.&mt('Specify a file containing the class scores for current resource').
1.86 ng 3753: '.</b></td></tr>'."\n";
3754: $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.370 www 3755: my $upload=&mt("Upload Scores");
1.86 ng 3756: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 3757: my $ignore=&mt('Ignore First Line');
1.418 albertel 3758: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 3759: $result.=<<ENDUPFORM;
1.106 albertel 3760: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 3761: <input type="hidden" name="symb" value="$symb" />
3762: <input type="hidden" name="command" value="csvuploadmap" />
1.257 albertel 3763: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
3764: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.86 ng 3765: $upfile_select
1.370 www 3766: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
1.283 albertel 3767: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86 ng 3768: </form>
3769: ENDUPFORM
1.370 www 3770: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
3771: &mt("How do I create a CSV file from a spreadsheet"))
3772: .'</td></tr></table>'."\n";
1.86 ng 3773: $result.='</td></tr></table><br /><br />'."\n";
1.324 albertel 3774: $result.=&show_grading_menu_form($symb);
1.86 ng 3775: return $result;
3776: }
3777:
3778:
1.26 albertel 3779: sub csvuploadmap {
1.41 ng 3780: my ($request)= @_;
1.324 albertel 3781: my ($symb)=&get_symb($request);
1.41 ng 3782: if (!$symb) {return '';}
1.72 ng 3783:
1.41 ng 3784: my $datatoken;
1.257 albertel 3785: if (!$env{'form.datatoken'}) {
1.41 ng 3786: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 3787: } else {
1.257 albertel 3788: $datatoken=$env{'form.datatoken'};
1.41 ng 3789: &Apache::loncommon::load_tmp_file($request);
1.26 albertel 3790: }
1.41 ng 3791: my @records=&Apache::loncommon::upfile_record_sep();
1.257 albertel 3792: if ($env{'form.noFirstLine'}) { shift(@records); }
1.324 albertel 3793: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 3794: my ($i,$keyfields);
3795: if (@records) {
1.324 albertel 3796: my @fields=&csvupload_fields($symb);
1.45 ng 3797:
1.257 albertel 3798: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3799: &Apache::loncommon::csv_print_samples($request,\@records);
3800: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
3801: \@fields);
3802: foreach (@fields) { $keyfields.=$_->[0].','; }
3803: chop($keyfields);
3804: } else {
3805: unshift(@fields,['none','']);
3806: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
3807: \@fields);
1.311 banghart 3808: foreach my $rec (@records) {
3809: my %temp = &Apache::loncommon::record_sep($rec);
3810: if (%temp) {
3811: $keyfields=join(',',sort(keys(%temp)));
3812: last;
3813: }
3814: }
1.41 ng 3815: }
3816: }
3817: &csvuploadmap_footer($request,$i,$keyfields);
1.324 albertel 3818: $request->print(&show_grading_menu_form($symb));
1.72 ng 3819:
1.41 ng 3820: return '';
1.27 albertel 3821: }
3822:
1.246 albertel 3823: sub csvuploadoptions {
1.41 ng 3824: my ($request)= @_;
1.324 albertel 3825: my ($symb)=&get_symb($request);
1.257 albertel 3826: my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246 albertel 3827: my $ignore=&mt('Ignore First Line');
3828: $request->print(<<ENDPICK);
3829: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 3830: <h3><span class="LC_info">Uploading Class Grade Options</span></h3>
1.246 albertel 3831: <input type="hidden" name="command" value="csvuploadassign" />
1.302 albertel 3832: <!--
1.246 albertel 3833: <p>
3834: <label>
3835: <input type="checkbox" name="show_full_results" />
3836: Show a table of all changes
3837: </label>
3838: </p>
1.302 albertel 3839: -->
1.246 albertel 3840: <p>
3841: <label>
3842: <input type="checkbox" name="overwite_scores" checked="checked" />
3843: Overwrite any existing score
3844: </label>
3845: </p>
3846: ENDPICK
3847: my %fields=&get_fields();
3848: if (!defined($fields{'domain'})) {
1.257 albertel 3849: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246 albertel 3850: $request->print("\n<p> Users are in domain: ".$domform."</p>\n");
3851: }
1.257 albertel 3852: foreach my $key (sort(keys(%env))) {
1.246 albertel 3853: if ($key !~ /^form\.(.*)$/) { next; }
3854: my $cleankey=$1;
3855: if ($cleankey eq 'command') { next; }
3856: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 3857: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 3858: }
3859: # FIXME do a check for any duplicated user ids...
3860: # FIXME do a check for any invalid user ids?...
1.290 albertel 3861: $request->print('<input type="submit" value="Assign Grades" /><br />
3862: <hr /></form>'."\n");
1.324 albertel 3863: $request->print(&show_grading_menu_form($symb));
1.246 albertel 3864: return '';
3865: }
3866:
3867: sub get_fields {
3868: my %fields;
1.257 albertel 3869: my @keyfields = split(/\,/,$env{'form.keyfields'});
3870: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
3871: if ($env{'form.upfile_associate'} eq 'reverse') {
3872: if ($env{'form.f'.$i} ne 'none') {
3873: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 3874: }
3875: } else {
1.257 albertel 3876: if ($env{'form.f'.$i} ne 'none') {
3877: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 3878: }
3879: }
1.27 albertel 3880: }
1.246 albertel 3881: return %fields;
3882: }
3883:
3884: sub csvuploadassign {
3885: my ($request)= @_;
1.324 albertel 3886: my ($symb)=&get_symb($request);
1.246 albertel 3887: if (!$symb) {return '';}
1.345 bowersj2 3888: my $error_msg = '';
1.246 albertel 3889: &Apache::loncommon::load_tmp_file($request);
3890: my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257 albertel 3891: if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246 albertel 3892: my %fields=&get_fields();
1.41 ng 3893: $request->print('<h3>Assigning Grades</h3>');
1.257 albertel 3894: my $courseid=$env{'request.course.id'};
1.97 albertel 3895: my ($classlist) = &getclasslist('all',0);
1.106 albertel 3896: my @notallowed;
1.41 ng 3897: my @skipped;
3898: my $countdone=0;
3899: foreach my $grade (@gradedata) {
3900: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 3901: my $domain;
3902: if ($entries{$fields{'domain'}}) {
3903: $domain=$entries{$fields{'domain'}};
3904: } else {
1.257 albertel 3905: $domain=$env{'form.default_domain'};
1.246 albertel 3906: }
1.243 albertel 3907: $domain=~s/\s//g;
1.41 ng 3908: my $username=$entries{$fields{'username'}};
1.160 albertel 3909: $username=~s/\s//g;
1.243 albertel 3910: if (!$username) {
3911: my $id=$entries{$fields{'ID'}};
1.247 albertel 3912: $id=~s/\s//g;
1.243 albertel 3913: my %ids=&Apache::lonnet::idget($domain,$id);
3914: $username=$ids{$id};
3915: }
1.41 ng 3916: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 3917: my $id=$entries{$fields{'ID'}};
3918: $id=~s/\s//g;
3919: if ($id) {
3920: push(@skipped,"$id:$domain");
3921: } else {
3922: push(@skipped,"$username:$domain");
3923: }
1.41 ng 3924: next;
3925: }
1.108 albertel 3926: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 3927: if (!&canmodify($usec)) {
3928: push(@notallowed,"$username:$domain");
3929: next;
3930: }
1.244 albertel 3931: my %points;
1.41 ng 3932: my %grades;
3933: foreach my $dest (keys(%fields)) {
1.244 albertel 3934: if ($dest eq 'ID' || $dest eq 'username' ||
3935: $dest eq 'domain') { next; }
3936: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
3937: if ($dest=~/stores_(.*)_points/) {
3938: my $part=$1;
3939: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
3940: $symb,$domain,$username);
1.345 bowersj2 3941: if ($wgt) {
3942: $entries{$fields{$dest}}=~s/\s//g;
3943: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 3944: my $award=($pcr == 0) ? 'incorrect_by_override'
3945: : 'correct_by_override';
1.345 bowersj2 3946: $grades{"resource.$part.awarded"}=$pcr;
3947: $grades{"resource.$part.solved"}=$award;
3948: $points{$part}=1;
3949: } else {
3950: $error_msg = "<br />" .
3951: &mt("Some point values were assigned"
3952: ." for problems with a weight "
3953: ."of zero. These values were "
3954: ."ignored.");
3955: }
1.244 albertel 3956: } else {
3957: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
3958: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
3959: my $store_key=$dest;
3960: $store_key=~s/^stores/resource/;
3961: $store_key=~s/_/\./g;
3962: $grades{$store_key}=$entries{$fields{$dest}};
3963: }
1.41 ng 3964: }
1.398 albertel 3965: if (! %grades) { push(@skipped,"$username:$domain no data to save"); }
1.257 albertel 3966: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
1.302 albertel 3967: my $result=&Apache::lonnet::cstore(\%grades,$symb,
3968: $env{'request.course.id'},
3969: $domain,$username);
3970: if ($result eq 'ok') {
3971: $request->print('.');
3972: } else {
3973: $request->print("<p>
1.398 albertel 3974: <span class=\"LC_error\">
3975: Failed to save student $username:$domain.
3976: Message when trying to save was ($result)
3977: </span>
1.302 albertel 3978: </p>" );
3979: }
1.41 ng 3980: $request->rflush();
3981: $countdone++;
3982: }
1.398 albertel 3983: $request->print("<br />Saved $countdone students\n");
1.41 ng 3984: if (@skipped) {
1.398 albertel 3985: $request->print('<p><h4><b>Skipped Students</b></h4></p>');
1.106 albertel 3986: foreach my $student (@skipped) { $request->print("$student<br />\n"); }
3987: }
3988: if (@notallowed) {
1.398 albertel 3989: $request->print('<p><span class="LC_error">Students Not Allowed to Modify</span></p>');
1.106 albertel 3990: foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
1.41 ng 3991: }
1.106 albertel 3992: $request->print("<br />\n");
1.324 albertel 3993: $request->print(&show_grading_menu_form($symb));
1.345 bowersj2 3994: return $error_msg;
1.26 albertel 3995: }
1.44 ng 3996: #------------- end of section for handling csv file upload ---------
3997: #
3998: #-------------------------------------------------------------------
3999: #
1.122 ng 4000: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4001: #
4002: #--- Select a page/sequence and a student to grade
1.68 ng 4003: sub pickStudentPage {
4004: my ($request) = shift;
4005:
4006: $request->print(<<LISTJAVASCRIPT);
4007: <script type="text/javascript" language="javascript">
4008:
4009: function checkPickOne(formname) {
1.76 ng 4010: if (radioSelection(formname.student) == null) {
1.68 ng 4011: alert("Please select the student you wish to grade.");
4012: return;
4013: }
1.125 ng 4014: ptr = pullDownSelection(formname.selectpage);
4015: formname.page.value = formname["page"+ptr].value;
4016: formname.title.value = formname["title"+ptr].value;
1.68 ng 4017: formname.submit();
4018: }
4019:
4020: </script>
4021: LISTJAVASCRIPT
1.118 ng 4022: &commonJSfunctions($request);
1.324 albertel 4023: my ($symb) = &get_symb($request);
1.257 albertel 4024: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4025: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4026: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4027:
1.398 albertel 4028: my $result='<h3><span class="LC_info"> '.
4029: 'Manual Grading by Page or Sequence</span></h3>';
1.68 ng 4030:
1.80 ng 4031: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.70 ng 4032: $result.=' <b>Problems from:</b> <select name="selectpage">'."\n";
1.423 albertel 4033: my ($titles,$symbx) = &getSymbMap();
1.137 albertel 4034: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4035: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4036: # my $type=($curpage =~ /\.(page|sequence)/);
1.70 ng 4037: my $ctr=0;
1.68 ng 4038: foreach (@$titles) {
4039: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.70 ng 4040: $result.='<option value="'.$ctr.'" '.
1.401 albertel 4041: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71 ng 4042: '>'.$showtitle.'</option>'."\n";
1.70 ng 4043: $ctr++;
1.68 ng 4044: }
1.326 albertel 4045: $result.= '</select>'."<br />\n";
1.70 ng 4046: $ctr=0;
4047: foreach (@$titles) {
4048: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4049: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4050: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4051: $ctr++;
4052: }
1.72 ng 4053: $result.='<input type="hidden" name="page" />'."\n".
4054: '<input type="hidden" name="title" />'."\n";
1.68 ng 4055:
1.401 albertel 4056: $result.=' <b>View Problems Text: </b><label><input type="radio" name="vProb" value="no" checked="checked" /> no </label>'."\n".
1.288 albertel 4057: '<label><input type="radio" name="vProb" value="yes" /> yes </label>'."<br />\n";
1.72 ng 4058:
1.71 ng 4059: $result.=' <b>Submission Details: </b>'.
1.288 albertel 4060: '<label><input type="radio" name="lastSub" value="none" /> none</label>'."\n".
1.401 albertel 4061: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> by dates and submissions</label>'."\n".
1.288 albertel 4062: '<label><input type="radio" name="lastSub" value="all" /> all details</label>'."\n";
1.432 banghart 4063:
4064: $result.=&build_section_inputs();
1.442 banghart 4065: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4066: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.72 ng 4067: '<input type="hidden" name="command" value="displayPage" />'."\n".
1.418 albertel 4068: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4069: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72 ng 4070:
1.382 albertel 4071: $result.=' <b>'.&mt('Use CODE:').' </b>'.
4072: '<input type="text" name="CODE" value="" /><br />'."\n";
4073:
1.80 ng 4074: $result.=' <input type="button" '.
1.126 ng 4075: 'onClick="javascript:checkPickOne(this.form);"value="Next->" /><br />'."\n";
1.72 ng 4076:
1.68 ng 4077: $request->print($result);
4078:
1.326 albertel 4079: my $studentTable.=' <b>Select a student you wish to grade and then click on the Next button.</b><br />'.
1.68 ng 4080: '<table border="0"><tr><td bgcolor="#777777">'.
4081: '<table border="0"><tr bgcolor="#e6ffff">'.
1.126 ng 4082: '<td align="right"> <b>No.</b></td>'.
1.129 ng 4083: '<td>'.&nameUserString('header').'</td>'.
1.126 ng 4084: '<td align="right"> <b>No.</b></td>'.
1.129 ng 4085: '<td>'.&nameUserString('header').'</td></tr>';
1.68 ng 4086:
1.76 ng 4087: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4088: my $ptr = 1;
1.294 albertel 4089: foreach my $student (sort
4090: {
4091: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4092: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4093: }
4094: return $a cmp $b;
4095: } (keys(%$fullname))) {
1.68 ng 4096: my ($uname,$udom) = split(/:/,$student);
1.126 ng 4097: $studentTable.=($ptr%2 == 1 ? '<tr bgcolor="#ffffe6">' : '</td>');
4098: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4099: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4100: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.126 ng 4101: $studentTable.=($ptr%2 == 0 ? '</td></tr>' : '');
1.68 ng 4102: $ptr++;
4103: }
1.381 albertel 4104: $studentTable.='</td><td> </td><td> </td></tr>' if ($ptr%2 == 0);
4105: $studentTable.='</table></td></tr></table>'."\n";
1.126 ng 4106: $studentTable.='<input type="button" '.
4107: 'onClick="javascript:checkPickOne(this.form);"value="Next->" /></form>'."\n";
1.68 ng 4108:
1.324 albertel 4109: $studentTable.=&show_grading_menu_form($symb);
1.68 ng 4110: $request->print($studentTable);
4111:
4112: return '';
4113: }
4114:
4115: sub getSymbMap {
1.132 bowersj2 4116: my $navmap = Apache::lonnavmaps::navmap->new();
1.68 ng 4117:
4118: my %symbx = ();
4119: my @titles = ();
1.117 bowersj2 4120: my $minder = 0;
4121:
4122: # Gather every sequence that has problems.
1.240 albertel 4123: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
4124: 1,0,1);
1.117 bowersj2 4125: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 4126: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 4127: my $title = $minder.'.'.
4128: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
4129: push(@titles, $title); # minder in case two titles are identical
4130: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 4131: $minder++;
1.241 albertel 4132: }
1.68 ng 4133: }
4134: return \@titles,\%symbx;
4135: }
4136:
1.72 ng 4137: #
4138: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 4139: sub displayPage {
4140: my ($request) = shift;
4141:
1.324 albertel 4142: my ($symb) = &get_symb($request);
1.257 albertel 4143: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4144: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4145: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4146: my $pageTitle = $env{'form.page'};
1.103 albertel 4147: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4148: my ($uname,$udom) = split(/:/,$env{'form.student'});
4149: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 4150:
4151: #need to make sure we have the correct data for later EXT calls,
4152: #thus invalidate the cache
4153: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 4154: $env{'course.'.$env{'request.course.id'}.'.num'},
4155: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 4156: &Apache::lonnet::clear_EXT_cache_status();
4157:
1.103 albertel 4158: if (!&canview($usec)) {
1.398 albertel 4159: $request->print('<span class="LC_warning">Unable to view requested student.('.$env{'form.student'}.')</span>');
1.324 albertel 4160: $request->print(&show_grading_menu_form($symb));
1.103 albertel 4161: return;
4162: }
1.398 albertel 4163: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.257 albertel 4164: $result.='<h3> Student: '.&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom).
1.129 ng 4165: '</h3>'."\n";
1.382 albertel 4166: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
4167: $result.='<h3> CODE: '.$env{'form.CODE'}.'</h3>'."\n";
4168: } else {
4169: delete($env{'form.CODE'});
4170: }
1.71 ng 4171: &sub_page_js($request);
4172: $request->print($result);
4173:
1.132 bowersj2 4174: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 4175: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 4176: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4177: if (!$map) {
1.398 albertel 4178: $request->print('<span class="LC_warning">Unable to view requested sequence. ('.$resUrl.')</span>');
1.324 albertel 4179: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4180: return;
4181: }
1.68 ng 4182: my $iterator = $navmap->getIterator($map->map_start(),
4183: $map->map_finish());
4184:
1.71 ng 4185: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 4186: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 4187: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
4188: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 4189: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 4190: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 4191: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.125 ng 4192: '<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257 albertel 4193: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71 ng 4194:
1.382 albertel 4195: if (defined($env{'form.CODE'})) {
4196: $studentTable.=
4197: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
4198: }
1.381 albertel 4199: my $checkIcon = '<img alt="'.&mt('Check Mark').
4200: '" src="'.$request->dir_config('lonIconsURL').
1.71 ng 4201: '/check.gif" height="16" border="0" />';
4202:
1.118 ng 4203: $studentTable.=' <b>Note:</b> Problems graded correct by the computer are marked with a '.$checkIcon.
4204: ' symbol.'."\n".
1.71 ng 4205: '<table border="0"><tr><td bgcolor="#777777">'.
4206: '<table border="0"><tr bgcolor="#e6ffff">'.
1.118 ng 4207: '<td align="center"><b> Prob. </b></td>'.
1.257 albertel 4208: '<td><b> '.($env{'form.vProb'} eq 'no' ? 'Title' : 'Problem Text').'/Grade</b></td></tr>';
1.71 ng 4209:
1.329 albertel 4210: &Apache::lonxml::clear_problem_counter();
1.196 albertel 4211: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 4212: $iterator->next(); # skip the first BEGIN_MAP
4213: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 4214: while ($depth > 0) {
1.68 ng 4215: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4216: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 4217:
1.385 albertel 4218: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4219: my $parts = $curRes->parts();
1.68 ng 4220: my $title = $curRes->compTitle();
1.71 ng 4221: my $symbx = $curRes->symb();
1.196 albertel 4222: $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326 albertel 4223: (scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).' parts)').'</td>';
1.71 ng 4224: $studentTable.='<td valign="top">';
1.382 albertel 4225: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 4226: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 4227: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 4228: undef,'both',\%form);
1.71 ng 4229: } else {
1.382 albertel 4230: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 4231: $companswer =~ s|<form(.*?)>||g;
4232: $companswer =~ s|</form>||g;
1.71 ng 4233: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 4234: # $companswer =~ s/$1/ /ms;
1.326 albertel 4235: # $request->print('match='.$1."<br />\n");
1.71 ng 4236: # }
1.116 ng 4237: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.326 albertel 4238: $studentTable.=' <b>'.$title.'</b> <br /> <b>Correct answer:</b><br />'.$companswer;
1.71 ng 4239: }
4240:
1.257 albertel 4241: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 4242:
1.257 albertel 4243: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 4244: if ($record{'version'} eq '') {
1.398 albertel 4245: $studentTable.='<br /> <span class="LC_warning">No recorded submission for this problem</span><br />';
1.71 ng 4246: } else {
1.116 ng 4247: my %responseType = ();
4248: foreach my $partid (@{$parts}) {
1.147 albertel 4249: my @responseIds =$curRes->responseIds($partid);
4250: my @responseType =$curRes->responseType($partid);
4251: my %responseIds;
4252: for (my $i=0;$i<=$#responseIds;$i++) {
4253: $responseIds{$responseIds[$i]}=$responseType[$i];
4254: }
4255: $responseType{$partid} = \%responseIds;
1.116 ng 4256: }
1.148 albertel 4257: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 4258:
1.71 ng 4259: }
1.257 albertel 4260: } elsif ($env{'form.lastSub'} eq 'all') {
4261: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71 ng 4262: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 4263: $env{'request.course.id'},
1.71 ng 4264: '','.submission');
4265:
4266: }
1.103 albertel 4267: if (&canmodify($usec)) {
4268: foreach my $partid (@{$parts}) {
4269: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
4270: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
4271: $question++;
4272: }
1.196 albertel 4273: $prob++;
1.71 ng 4274: }
4275: $studentTable.='</td></tr>';
1.68 ng 4276:
1.103 albertel 4277: }
1.68 ng 4278: $curRes = $iterator->next();
4279: }
4280:
1.381 albertel 4281: $studentTable.='</table></td></tr></table>'."\n".
1.125 ng 4282: '<input type="button" value="Save" '.
1.381 albertel 4283: 'onClick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
1.71 ng 4284: '</form>'."\n";
1.324 albertel 4285: $studentTable.=&show_grading_menu_form($symb);
1.71 ng 4286: $request->print($studentTable);
4287:
4288: return '';
1.119 ng 4289: }
4290:
4291: sub displaySubByDates {
1.148 albertel 4292: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 4293: my $isCODE=0;
1.335 albertel 4294: my $isTask = ($symb =~/\.task$/);
1.224 albertel 4295: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 4296: my $studentTable=&Apache::loncommon::start_data_table().
4297: &Apache::loncommon::start_data_table_header_row().
4298: '<th>'.&mt('Date/Time').'</th>'.
4299: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
4300: '<th>'.&mt('Submission').'</th>'.
4301: '<th>'.&mt('Status').'</th>'.
4302: &Apache::loncommon::end_data_table_header_row();
1.119 ng 4303: my ($version);
4304: my %mark;
1.148 albertel 4305: my %orders;
1.119 ng 4306: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 4307: if (!exists($$record{'1:timestamp'})) {
1.467 albertel 4308: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br />';
1.147 albertel 4309: }
1.335 albertel 4310:
4311: my $interaction;
1.119 ng 4312: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 4313: my $timestamp =
4314: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 4315: if (exists($$record{$version.':resource.0.version'})) {
4316: $interaction = $$record{$version.':resource.0.version'};
4317: }
4318:
4319: my $where = ($isTask ? "$version:resource.$interaction"
4320: : "$version:resource");
1.467 albertel 4321: $studentTable.=&Apache::loncommon::start_data_table_row().
4322: '<td>'.$timestamp.'</td>';
1.224 albertel 4323: if ($isCODE) {
4324: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
4325: }
1.119 ng 4326: my @versionKeys = split(/\:/,$$record{$version.':keys'});
4327: my @displaySub = ();
4328: foreach my $partid (@{$parts}) {
1.335 albertel 4329: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
4330: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
4331:
4332:
1.122 ng 4333: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 4334: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 4335: foreach my $matchKey (@matchKey) {
1.198 albertel 4336: if (exists($$record{$version.':'.$matchKey}) &&
4337: $$record{$version.':'.$matchKey} ne '') {
1.335 albertel 4338:
4339: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
4340: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.467 albertel 4341: $displaySub[0].='<b>'.&mt('Part:').'</b> '.$display_part.' ';
4342: $displaySub[0].='<span class="LC_internal_info">('.&mt('ID').' '.
1.398 albertel 4343: $responseId.')</span> <b>';
1.335 albertel 4344: if ($$record{"$where.$partid.tries"} eq '') {
1.467 albertel 4345: $displaySub[0].=&mt('Trial not counted');
1.147 albertel 4346: } else {
1.467 albertel 4347: $displaySub[0].=&mt('Trial [_1]',
4348: $$record{"$where.$partid.tries"});
1.147 albertel 4349: }
1.335 albertel 4350: my $responseType=($isTask ? 'Task'
4351: : $responseType->{$partid}->{$responseId});
1.148 albertel 4352: if (!exists($orders{$partid})) { $orders{$partid}={}; }
4353: if (!exists($orders{$partid}->{$responseId})) {
4354: $orders{$partid}->{$responseId}=
4355: &get_order($partid,$responseId,$symb,$uname,$udom);
4356: }
1.147 albertel 4357: $displaySub[0].='</b> '.
1.336 albertel 4358: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom).'<br />';
1.147 albertel 4359: }
4360: }
1.335 albertel 4361: if (exists($$record{"$where.$partid.checkedin"})) {
4362: $displaySub[1].='Checked in by '.
4363: $$record{"$where.$partid.checkedin"}.' into slot '.
4364: $$record{"$where.$partid.checkedin.slot"}.
4365: '<br />';
4366: }
4367: if (exists $$record{"$where.$partid.award"}) {
1.207 albertel 4368: $displaySub[1].='<b>Part:</b> '.$display_part.' '.
1.335 albertel 4369: lc($$record{"$where.$partid.award"}).' '.
4370: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 4371: '<br />';
4372: }
1.335 albertel 4373: if (exists $$record{"$where.$partid.regrader"}) {
4374: $displaySub[2].=$$record{"$where.$partid.regrader"}.
4375: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
4376: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
4377: $displaySub[2].=
4378: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 4379: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 4380: }
4381: }
4382: # needed because old essay regrader has not parts info
4383: if (exists $$record{"$version:resource.regrader"}) {
4384: $displaySub[2].=$$record{"$version:resource.regrader"};
4385: }
4386: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
4387: if ($displaySub[2]) {
1.467 albertel 4388: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 4389: }
1.467 albertel 4390: $studentTable.=' </td>'.
4391: &Apache::loncommon::end_data_table_row();
1.119 ng 4392: }
1.467 albertel 4393: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 4394: return $studentTable;
1.71 ng 4395: }
4396:
4397: sub updateGradeByPage {
4398: my ($request) = shift;
4399:
1.257 albertel 4400: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4401: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4402: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4403: my $pageTitle = $env{'form.page'};
1.103 albertel 4404: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4405: my ($uname,$udom) = split(/:/,$env{'form.student'});
4406: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 4407: if (!&canmodify($usec)) {
1.398 albertel 4408: $request->print('<span class="LC_warning">Unable to modify requested student.('.$env{'form.student'}.'</span>');
1.324 albertel 4409: $request->print(&show_grading_menu_form($env{'form.symb'}));
1.103 albertel 4410: return;
4411: }
1.398 albertel 4412: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.257 albertel 4413: $result.='<h3> Student: '.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 4414: '</h3>'."\n";
1.70 ng 4415:
1.68 ng 4416: $request->print($result);
4417:
1.132 bowersj2 4418: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 4419: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 4420: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4421: if (!$map) {
1.398 albertel 4422: $request->print('<span class="LC_warning">Unable to grade requested sequence. ('.$resUrl.')</span>');
1.324 albertel 4423: my ($symb)=&get_symb($request);
4424: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4425: return;
4426: }
1.71 ng 4427: my $iterator = $navmap->getIterator($map->map_start(),
4428: $map->map_finish());
1.70 ng 4429:
1.71 ng 4430: my $studentTable='<table border="0"><tr><td bgcolor="#777777">'.
1.68 ng 4431: '<table border="0"><tr bgcolor="#e6ffff">'.
1.125 ng 4432: '<td align="center"><b> Prob. </b></td>'.
1.71 ng 4433: '<td><b> Title </b></td>'.
4434: '<td><b> Previous Score </b></td>'.
4435: '<td><b> New Score </b></td></tr>';
4436:
4437: $iterator->next(); # skip the first BEGIN_MAP
4438: my $curRes = $iterator->next(); # for "current resource"
1.196 albertel 4439: my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101 albertel 4440: while ($depth > 0) {
1.71 ng 4441: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4442: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 4443:
1.385 albertel 4444: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4445: my $parts = $curRes->parts();
1.71 ng 4446: my $title = $curRes->compTitle();
4447: my $symbx = $curRes->symb();
1.196 albertel 4448: $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326 albertel 4449: (scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).' parts)').'</td>';
1.71 ng 4450: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
4451:
4452: my %newrecord=();
4453: my @displayPts=();
1.269 raeburn 4454: my %aggregate = ();
4455: my $aggregateflag = 0;
1.71 ng 4456: foreach my $partid (@{$parts}) {
1.257 albertel 4457: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
4458: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 4459:
1.257 albertel 4460: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
4461: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 4462: my $partial = $newpts/$wgt;
4463: my $score;
4464: if ($partial > 0) {
4465: $score = 'correct_by_override';
1.125 ng 4466: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 4467: $score = 'incorrect_by_override';
4468: }
1.257 albertel 4469: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 4470: if ($dropMenu eq 'excused') {
1.71 ng 4471: $partial = '';
4472: $score = 'excused';
1.125 ng 4473: } elsif ($dropMenu eq 'reset status'
1.257 albertel 4474: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 4475: $newrecord{'resource.'.$partid.'.tries'} = 0;
4476: $newrecord{'resource.'.$partid.'.solved'} = '';
4477: $newrecord{'resource.'.$partid.'.award'} = '';
4478: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 4479: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 4480: $changeflag++;
4481: $newpts = '';
1.269 raeburn 4482:
4483: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
4484: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
4485: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
4486: if ($aggtries > 0) {
4487: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
4488: $aggregateflag = 1;
4489: }
1.71 ng 4490: }
1.324 albertel 4491: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 4492: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.207 albertel 4493: $displayPts[0].=' <b>Part:</b> '.$display_part.' = '.
1.71 ng 4494: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 4495: ' <br />';
1.207 albertel 4496: $displayPts[1].=' <b>Part:</b> '.$display_part.' = '.
1.125 ng 4497: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 4498: ' <br />';
1.71 ng 4499: $question++;
1.380 albertel 4500: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 4501:
1.71 ng 4502: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 4503: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 4504: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 4505: if (scalar(keys(%newrecord)) > 0);
1.71 ng 4506:
4507: $changeflag++;
4508: }
4509: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 4510: my %record =
4511: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
4512: $udom,$uname);
4513:
4514: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
4515: $newrecord{'resource.CODE'} = $env{'form.CODE'};
4516: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
4517: $newrecord{'resource.CODE'} = '';
4518: }
1.257 albertel 4519: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 4520: $udom,$uname);
1.382 albertel 4521: %record = &Apache::lonnet::restore($symbx,
4522: $env{'request.course.id'},
4523: $udom,$uname);
1.380 albertel 4524: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
4525: $cdom,$cnum,$udom,$uname);
1.71 ng 4526: }
1.380 albertel 4527:
1.269 raeburn 4528: if ($aggregateflag) {
4529: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
4530: $env{'course.'.$env{'request.course.id'}.'.domain'},
4531: $env{'course.'.$env{'request.course.id'}.'.num'});
4532: }
1.125 ng 4533:
1.71 ng 4534: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
4535: '<td valign="top">'.$displayPts[1].'</td>'.
4536: '</tr>';
1.68 ng 4537:
1.196 albertel 4538: $prob++;
1.68 ng 4539: }
1.71 ng 4540: $curRes = $iterator->next();
1.68 ng 4541: }
1.98 albertel 4542:
1.71 ng 4543: $studentTable.='</td></tr></table></td></tr></table>';
1.324 albertel 4544: $studentTable.=&show_grading_menu_form($env{'form.symb'});
1.76 ng 4545: my $grademsg=($changeflag == 0 ? 'No score was changed or updated.' :
4546: 'The scores were changed for '.
4547: $changeflag.' problem'.($changeflag == 1 ? '.' : 's.'));
4548: $request->print($grademsg.$studentTable);
1.68 ng 4549:
1.70 ng 4550: return '';
4551: }
4552:
1.72 ng 4553: #-------- end of section for handling grading by page/sequence ---------
4554: #
4555: #-------------------------------------------------------------------
4556:
1.75 albertel 4557: #--------------------Scantron Grading-----------------------------------
4558: #
4559: #------ start of section for handling grading by page/sequence ---------
4560:
1.423 albertel 4561: =pod
4562:
4563: =head1 Bubble sheet grading routines
4564:
1.424 albertel 4565: For this documentation:
4566:
4567: 'scanline' refers to the full line of characters
4568: from the file that we are parsing that represents one entire sheet
4569:
4570: 'bubble line' refers to the data
4571: representing the line of bubbles that are on the physical bubble sheet
4572:
4573:
4574: The overall process is that a scanned in bubble sheet data is uploaded
4575: into a course. When a user wants to grade, they select a
4576: sequence/folder of resources, a file of bubble sheet info, and pick
4577: one of the predefined configurations for what each scanline looks
4578: like.
4579:
4580: Next each scanline is checked for any errors of either 'missing
1.435 foxr 4581: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 4582: because too light bubbling), 'double bubble' (each bubble line should
4583: have no more that one letter picked), invalid or duplicated CODE,
4584: invalid student ID
4585:
4586: If the CODE option is used that determines the randomization of the
4587: homework problems, either way the student ID is looked up into a
4588: username:domain.
4589:
4590: During the validation phase the instructor can choose to skip scanlines.
4591:
1.435 foxr 4592: After the validation phase, there are now 3 bubble sheet files
1.424 albertel 4593:
4594: scantron_original_filename (unmodified original file)
4595: scantron_corrected_filename (file where the corrected information has replaced the original information)
4596: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
4597:
4598: Also there is a separate hash nohist_scantrondata that contains extra
4599: correction information that isn't representable in the bubble sheet
4600: file (see &scantron_getfile() for more information)
4601:
4602: After all scanlines are either valid, marked as valid or skipped, then
4603: foreach line foreach problem in the picked sequence, an ssi request is
4604: made that simulates a user submitting their selected letter(s) against
4605: the homework problem.
1.423 albertel 4606:
4607: =over 4
4608:
4609:
4610:
4611: =item defaultFormData
4612:
4613: Returns html hidden inputs used to hold context/default values.
4614:
4615: Arguments:
4616: $symb - $symb of the current resource
4617:
4618: =cut
1.422 foxr 4619:
1.81 albertel 4620: sub defaultFormData {
1.324 albertel 4621: my ($symb)=@_;
1.447 foxr 4622: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4623: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
4624: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81 albertel 4625: }
4626:
1.447 foxr 4627:
1.423 albertel 4628: =pod
4629:
4630: =item getSequenceDropDown
4631:
4632: Return html dropdown of possible sequences to grade
4633:
4634: Arguments:
4635: $symb - $symb of the current resource
4636:
4637: =cut
1.422 foxr 4638:
1.75 albertel 4639: sub getSequenceDropDown {
1.423 albertel 4640: my ($symb)=@_;
1.75 albertel 4641: my $result='<select name="selectpage">'."\n";
1.423 albertel 4642: my ($titles,$symbx) = &getSymbMap();
1.137 albertel 4643: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 4644: my $ctr=0;
4645: foreach (@$titles) {
4646: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4647: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 4648: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 4649: '>'.$showtitle.'</option>'."\n";
4650: $ctr++;
4651: }
4652: $result.= '</select>';
4653: return $result;
4654: }
4655:
1.423 albertel 4656:
4657: =pod
4658:
4659: =item scantron_filenames
4660:
4661: Returns a list of the scantron files in the current course
4662:
4663: =cut
1.422 foxr 4664:
1.202 albertel 4665: sub scantron_filenames {
1.257 albertel 4666: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
4667: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.157 albertel 4668: my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
1.359 www 4669: &propath($cdom,$cname));
1.202 albertel 4670: my @possiblenames;
1.201 albertel 4671: foreach my $filename (sort(@files)) {
1.157 albertel 4672: ($filename)=split(/&/,$filename);
4673: if ($filename!~/^scantron_orig_/) { next ; }
4674: $filename=~s/^scantron_orig_//;
1.202 albertel 4675: push(@possiblenames,$filename);
4676: }
4677: return @possiblenames;
4678: }
4679:
1.423 albertel 4680: =pod
4681:
4682: =item scantron_uploads
4683:
4684: Returns html drop-down list of scantron files in current course.
4685:
4686: Arguments:
4687: $file2grade - filename to set as selected in the dropdown
4688:
4689: =cut
1.422 foxr 4690:
1.202 albertel 4691: sub scantron_uploads {
1.209 ng 4692: my ($file2grade) = @_;
1.202 albertel 4693: my $result= '<select name="scantron_selectfile">';
4694: $result.="<option></option>";
4695: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 4696: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 4697: }
4698: $result.="</select>";
4699: return $result;
4700: }
4701:
1.423 albertel 4702: =pod
4703:
4704: =item scantron_scantab
4705:
4706: Returns html drop down of the scantron formats in the scantronformat.tab
4707: file.
4708:
4709: =cut
1.422 foxr 4710:
1.82 albertel 4711: sub scantron_scantab {
4712: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
4713: my $result='<select name="scantron_format">'."\n";
1.191 albertel 4714: $result.='<option></option>'."\n";
1.82 albertel 4715: foreach my $line (<$fh>) {
4716: my ($name,$descrip)=split(/:/,$line);
4717: if ($name =~ /^\#/) { next; }
4718: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
4719: }
4720: $result.='</select>'."\n";
4721:
4722: return $result;
4723: }
4724:
1.423 albertel 4725: =pod
4726:
4727: =item scantron_CODElist
4728:
4729: Returns html drop down of the saved CODE lists from current course,
4730: generated from earlier printings.
4731:
4732: =cut
1.422 foxr 4733:
1.186 albertel 4734: sub scantron_CODElist {
1.257 albertel 4735: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
4736: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 4737: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
4738: my $namechoice='<option></option>';
1.225 albertel 4739: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 4740: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 4741: if ($name =~ /^type\0/) { next; }
1.186 albertel 4742: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
4743: }
4744: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
4745: return $namechoice;
4746: }
4747:
1.423 albertel 4748: =pod
4749:
4750: =item scantron_CODEunique
4751:
4752: Returns the html for "Each CODE to be used once" radio.
4753:
4754: =cut
1.422 foxr 4755:
1.186 albertel 4756: sub scantron_CODEunique {
1.381 albertel 4757: my $result='<span style="white-space: nowrap;">
1.272 albertel 4758: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 4759: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 4760: </span>
4761: <span style="white-space: nowrap;">
1.272 albertel 4762: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 4763: value="no" />'.&mt('No').' </label>
1.381 albertel 4764: </span>';
1.186 albertel 4765: return $result;
4766: }
1.423 albertel 4767:
4768: =pod
4769:
4770: =item scantron_selectphase
4771:
4772: Generates the initial screen to start the bubble sheet process.
4773: Allows for - starting a grading run.
1.424 albertel 4774: - downloading existing scan data (original, corrected
1.423 albertel 4775: or skipped info)
4776:
4777: - uploading new scan data
4778:
4779: Arguments:
4780: $r - The Apache request object
4781: $file2grade - name of the file that contain the scanned data to score
4782:
4783: =cut
1.186 albertel 4784:
1.75 albertel 4785: sub scantron_selectphase {
1.209 ng 4786: my ($r,$file2grade) = @_;
1.324 albertel 4787: my ($symb)=&get_symb($r);
1.75 albertel 4788: if (!$symb) {return '';}
1.423 albertel 4789: my $sequence_selector=&getSequenceDropDown($symb);
1.324 albertel 4790: my $default_form_data=&defaultFormData($symb);
4791: my $grading_menu_button=&show_grading_menu_form($symb);
1.209 ng 4792: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 4793: my $format_selector=&scantron_scantab();
1.186 albertel 4794: my $CODE_selector=&scantron_CODElist();
4795: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 4796: my $result;
1.422 foxr 4797:
4798: # Chunk of form to prompt for a file to grade and how:
4799:
1.75 albertel 4800: $result.= <<SCANTRONFORM;
1.162 albertel 4801: <table width="100%" border="0">
1.75 albertel 4802: <tr>
1.226 albertel 4803: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
1.75 albertel 4804: <td bgcolor="#777777">
1.203 albertel 4805: <input type="hidden" name="command" value="scantron_warning" />
1.162 albertel 4806: $default_form_data
1.75 albertel 4807: <table width="100%" border="0">
4808: <tr bgcolor="#e6ffff">
1.174 albertel 4809: <td colspan="2">
4810: <b>Specify file and which Folder/Sequence to grade</b>
1.75 albertel 4811: </td>
4812: </tr>
4813: <tr bgcolor="#ffffe6">
1.174 albertel 4814: <td> Sequence to grade: </td><td> $sequence_selector </td>
1.75 albertel 4815: </tr>
4816: <tr bgcolor="#ffffe6">
1.174 albertel 4817: <td> Filename of scoring office file: </td><td> $file_selector </td>
1.75 albertel 4818: </tr>
1.82 albertel 4819: <tr bgcolor="#ffffe6">
1.174 albertel 4820: <td> Format of data file: </td><td> $format_selector </td>
1.82 albertel 4821: </tr>
1.157 albertel 4822: <tr bgcolor="#ffffe6">
1.186 albertel 4823: <td> Saved CODEs to validate against: </td><td> $CODE_selector</td>
4824: </tr>
4825: <tr bgcolor="#ffffe6">
4826: <td> Each CODE is only to be used once:</td><td> $CODE_unique </td>
4827: </tr>
4828: <tr bgcolor="#ffffe6">
1.187 albertel 4829: <td> Options: </td>
4830: <td>
1.272 albertel 4831: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> Do only previously skipped records</label> <br />
1.424 albertel 4832: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> Remove all existing corrections</label> <br />
1.331 albertel 4833: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> Skip hidden resources when grading</label>
1.187 albertel 4834: </td>
4835: </tr>
4836: <tr bgcolor="#ffffe6">
1.174 albertel 4837: <td colspan="2">
1.265 www 4838: <input type="submit" value="Grading: Validate Scantron Records" />
1.162 albertel 4839: </td>
4840: </tr>
4841: </table>
1.226 albertel 4842: </td>
4843: </form>
1.162 albertel 4844: </tr>
4845: SCANTRONFORM
4846:
4847: $r->print($result);
4848:
1.257 albertel 4849: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
4850: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 4851:
1.422 foxr 4852: # Chunk of form to prompt for a scantron file upload.
4853:
1.162 albertel 4854: $r->print(<<SCANTRONFORM);
4855: <tr>
4856: <td bgcolor="#777777">
4857: <table width="100%" border="0">
4858: <tr bgcolor="#e6ffff">
4859: <td>
1.174 albertel 4860: <b>Specify a Scantron data file to upload.</b>
1.162 albertel 4861: </td>
4862: </tr>
4863: <tr bgcolor="#ffffe6">
4864: <td>
4865: SCANTRONFORM
1.324 albertel 4866: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 4867: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
4868: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.174 albertel 4869: $r->print(<<UPLOAD);
4870: <script type="text/javascript" language="javascript">
4871: function checkUpload(formname) {
4872: if (formname.upfile.value == "") {
4873: alert("Please use the browse button to select a file from your local directory.");
4874: return false;
4875: }
4876: formname.submit();
4877: }
4878: </script>
4879:
4880: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
4881: $default_form_data
4882: <input name='courseid' type='hidden' value='$cnum' />
4883: <input name='domainid' type='hidden' value='$cdom' />
4884: <input name='command' value='scantronupload_save' type='hidden' />
4885: File to upload:<input type="file" name="upfile" size="50" />
4886: <br />
4887: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
4888: </form>
4889: UPLOAD
1.162 albertel 4890:
4891: $r->print(<<SCANTRONFORM);
4892: </td>
4893: </tr>
1.75 albertel 4894: </table>
4895: </td>
4896: </tr>
1.162 albertel 4897: SCANTRONFORM
4898: }
1.422 foxr 4899:
4900: # Chunk of the form that prompts to view a scoring office file,
4901: # corrected file, skipped records in a file.
4902:
1.187 albertel 4903: $r->print(<<SCANTRONFORM);
4904: <tr>
1.226 albertel 4905: <form action='/adm/grades' name='scantron_download'>
4906: <td bgcolor="#777777">
1.379 albertel 4907: $default_form_data
1.187 albertel 4908: <input type="hidden" name="command" value="scantron_download" />
4909: <table width="100%" border="0">
4910: <tr bgcolor="#e6ffff">
4911: <td colspan="2">
4912: <b>Download a scoring office file</b>
4913: </td>
4914: </tr>
4915: <tr bgcolor="#ffffe6">
4916: <td> Filename of scoring office file: </td><td> $file_selector </td>
4917: </tr>
4918: <tr bgcolor="#ffffe6">
4919: <td colspan="2">
1.293 www 4920: <input type="submit" value="Download: Show List of Associated Files" />
1.187 albertel 4921: </td>
4922: </tr>
4923: </table>
1.226 albertel 4924: </td>
4925: </form>
1.187 albertel 4926: </tr>
4927: SCANTRONFORM
1.162 albertel 4928:
1.457 banghart 4929: $r->print('<tr><td bgcolor="#777777">');
4930: &Apache::lonpickcode::code_list($r,2);
4931: $r->print('</td></tr></table>');
4932: $r->print($grading_menu_button);
1.162 albertel 4933: return
1.75 albertel 4934: }
4935:
1.423 albertel 4936: =pod
4937:
4938: =item get_scantron_config
4939:
4940: Parse and return the scantron configuration line selected as a
4941: hash of configuration file fields.
4942:
4943: Arguments:
4944: which - the name of the configuration to parse from the file.
4945:
4946:
4947: Returns:
4948: If the named configuration is not in the file, an empty
4949: hash is returned.
4950: a hash with the fields
4951: name - internal name for the this configuration setup
4952: description - text to display to operator that describes this config
4953: CODElocation - if 0 or the string 'none'
4954: - no CODE exists for this config
4955: if -1 || the string 'letter'
4956: - a CODE exists for this config and is
4957: a string of letters
4958: Unsupported value (but planned for future support)
4959: if a positive integer
4960: - The CODE exists as the first n items from
4961: the question section of the form
4962: if the string 'number'
4963: - The CODE exists for this config and is
4964: a string of numbers
4965: CODEstart - (only matter if a CODE exists) column in the line where
4966: the CODE starts
4967: CODElength - length of the CODE
4968: IDstart - column where the student ID number starts
4969: IDlength - length of the student ID info
4970: Qstart - column where the information from the bubbled
4971: 'questions' start
4972: Qlength - number of columns comprising a single bubble line from
4973: the sheet. (usually either 1 or 10)
1.424 albertel 4974: Qon - either a single character representing the character used
1.423 albertel 4975: to signal a bubble was chosen in the positional setup, or
4976: the string 'letter' if the letter of the chosen bubble is
4977: in the final, or 'number' if a number representing the
4978: chosen bubble is in the file (1->A 0->J)
1.424 albertel 4979: Qoff - the character used to represent that a bubble was
4980: left blank
1.423 albertel 4981: PaperID - if the scanning process generates a unique number for each
4982: sheet scanned the column that this ID number starts in
4983: PaperIDlength - number of columns that comprise the unique ID number
4984: for the sheet of paper
1.424 albertel 4985: FirstName - column that the first name starts in
1.423 albertel 4986: FirstNameLength - number of columns that the first name spans
4987:
4988: LastName - column that the last name starts in
4989: LastNameLength - number of columns that the last name spans
4990:
4991: =cut
1.422 foxr 4992:
1.82 albertel 4993: sub get_scantron_config {
4994: my ($which) = @_;
4995: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
4996: my %config;
1.157 albertel 4997: #FIXME probably should move to XML it has already gotten a bit much now
1.82 albertel 4998: foreach my $line (<$fh>) {
4999: my ($name,$descrip)=split(/:/,$line);
5000: if ($name ne $which ) { next; }
5001: chomp($line);
5002: my @config=split(/:/,$line);
5003: $config{'name'}=$config[0];
5004: $config{'description'}=$config[1];
5005: $config{'CODElocation'}=$config[2];
5006: $config{'CODEstart'}=$config[3];
5007: $config{'CODElength'}=$config[4];
5008: $config{'IDstart'}=$config[5];
5009: $config{'IDlength'}=$config[6];
5010: $config{'Qstart'}=$config[7];
5011: $config{'Qlength'}=$config[8];
5012: $config{'Qoff'}=$config[9];
5013: $config{'Qon'}=$config[10];
1.157 albertel 5014: $config{'PaperID'}=$config[11];
5015: $config{'PaperIDlength'}=$config[12];
5016: $config{'FirstName'}=$config[13];
5017: $config{'FirstNamelength'}=$config[14];
5018: $config{'LastName'}=$config[15];
5019: $config{'LastNamelength'}=$config[16];
1.82 albertel 5020: last;
5021: }
5022: return %config;
5023: }
5024:
1.423 albertel 5025: =pod
5026:
5027: =item username_to_idmap
5028:
5029: creates a hash keyed by student id with values of the corresponding
5030: student username:domain.
5031:
5032: Arguments:
5033:
5034: $classlist - reference to the class list hash. This is a hash
5035: keyed by student name:domain whose elements are references
1.424 albertel 5036: to arrays containing various chunks of information
1.423 albertel 5037: about the student. (See loncoursedata for more info).
5038:
5039: Returns
5040: %idmap - the constructed hash
5041:
5042: =cut
5043:
1.82 albertel 5044: sub username_to_idmap {
5045: my ($classlist)= @_;
5046: my %idmap;
5047: foreach my $student (keys(%$classlist)) {
5048: $idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
5049: $student;
5050: }
5051: return %idmap;
5052: }
1.423 albertel 5053:
5054: =pod
5055:
1.424 albertel 5056: =item scantron_fixup_scanline
1.423 albertel 5057:
5058: Process a requested correction to a scanline.
5059:
5060: Arguments:
5061: $scantron_config - hash from &get_scantron_config()
5062: $scan_data - hash of correction information
5063: (see &scantron_getfile())
5064: $line - existing scanline
5065: $whichline - line number of the passed in scanline
5066: $field - type of change to process
5067: (either
5068: 'ID' -> correct the student ID number
5069: 'CODE' -> correct the CODE
5070: 'answer' -> fixup the submitted answers)
5071:
5072: $args - hash of additional info,
5073: - 'ID'
5074: 'newid' -> studentID to use in replacement
1.424 albertel 5075: of existing one
1.423 albertel 5076: - 'CODE'
5077: 'CODE_ignore_dup' - set to true if duplicates
5078: should be ignored.
5079: 'CODE' - is new code or 'use_unfound'
1.424 albertel 5080: if the existing unfound code should
1.423 albertel 5081: be used as is
5082: - 'answer'
5083: 'response' - new answer or 'none' if blank
5084: 'question' - the bubble line to change
5085:
5086: Returns:
5087: $line - the modified scanline
5088:
5089: Side effects:
5090: $scan_data - may be updated
5091:
5092: =cut
5093:
1.82 albertel 5094:
1.157 albertel 5095: sub scantron_fixup_scanline {
5096: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
1.423 albertel 5097:
1.157 albertel 5098: if ($field eq 'ID') {
5099: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 5100: return ($line,1,'New value too large');
1.157 albertel 5101: }
5102: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
5103: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
5104: $args->{'newid'});
5105: }
5106: substr($line,$$scantron_config{'IDstart'}-1,
5107: $$scantron_config{'IDlength'})=$args->{'newid'};
5108: if ($args->{'newid'}=~/^\s*$/) {
5109: &scan_data($scan_data,"$whichline.user",
5110: $args->{'username'}.':'.$args->{'domain'});
5111: }
1.186 albertel 5112: } elsif ($field eq 'CODE') {
1.192 albertel 5113: if ($args->{'CODE_ignore_dup'}) {
5114: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
5115: }
5116: &scan_data($scan_data,"$whichline.useCODE",'1');
5117: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 5118: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
5119: return ($line,1,'New CODE value too large');
5120: }
5121: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
5122: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
5123: }
5124: substr($line,$$scantron_config{'CODEstart'}-1,
5125: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 5126: }
1.157 albertel 5127: } elsif ($field eq 'answer') {
5128: my $length=$scantron_config->{'Qlength'};
5129: my $off=$scantron_config->{'Qoff'};
5130: my $on=$scantron_config->{'Qon'};
5131: my $answer=${off}x$length;
5132: if ($args->{'response'} eq 'none') {
5133: &scan_data($scan_data,
5134: "$whichline.no_bubble.".$args->{'question'},'1');
5135: } else {
1.274 albertel 5136: if ($on eq 'letter') {
5137: my @alphabet=('A'..'Z');
5138: $answer=$alphabet[$args->{'response'}];
5139: } elsif ($on eq 'number') {
5140: $answer=$args->{'response'}+1;
1.389 albertel 5141: if ($answer == 10) { $answer = '0'; }
1.274 albertel 5142: } else {
5143: substr($answer,$args->{'response'},1)=$on;
5144: }
1.157 albertel 5145: &scan_data($scan_data,
5146: "$whichline.no_bubble.".$args->{'question'},undef,'1');
5147: }
5148: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
5149: substr($line,$where-1,$length)=$answer;
5150: }
5151: return $line;
5152: }
1.423 albertel 5153:
5154: =pod
5155:
5156: =item scan_data
5157:
5158: Edit or look up an item in the scan_data hash.
5159:
5160: Arguments:
5161: $scan_data - The hash (see scantron_getfile)
5162: $key - shorthand of the key to edit (actual key is
1.424 albertel 5163: scantronfilename_key).
1.423 albertel 5164: $data - New value of the hash entry.
5165: $delete - If true, the entry is removed from the hash.
5166:
5167: Returns:
5168: The new value of the hash table field (undefined if deleted).
5169:
5170: =cut
5171:
5172:
1.157 albertel 5173: sub scan_data {
5174: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 5175: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 5176: if (defined($value)) {
5177: $scan_data->{$filename.'_'.$key} = $value;
5178: }
5179: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
5180: return $scan_data->{$filename.'_'.$key};
5181: }
1.423 albertel 5182:
5183: =pod
5184:
5185: =item scantron_parse_scanline
5186:
5187: Decodes a scanline from the selected scantron file
5188:
5189: Arguments:
5190: line - The text of the scantron file line to process
5191: whichline - Line number
5192: scantron_config - Hash describing the format of the scantron lines.
5193: scan_data - Hash of extra information about the scanline
5194: (see scantron_getfile for more information)
5195: just_header - True if should not process question answers but only
5196: the stuff to the left of the answers.
5197: Returns:
5198: Hash containing the result of parsing the scanline
5199:
5200: Keys are all proceeded by the string 'scantron.'
5201:
5202: CODE - the CODE in use for this scanline
5203: useCODE - 1 if the CODE is invalid but it usage has been forced
5204: by the operator
5205: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
5206: CODEs were selected, but the usage has been
5207: forced by the operator
5208: ID - student ID
5209: PaperID - if used, the ID number printed on the sheet when the
5210: paper was scanned
5211: FirstName - first name from the sheet
5212: LastName - last name from the sheet
5213:
5214: if just_header was not true these key may also exist
5215:
1.447 foxr 5216: missingerror - a list of bubble ranges that are considered to be answers
5217: to a single question that don't have any bubbles filled in.
5218: Of the form questionnumber:firstbubblenumber:count.
5219: doubleerror - a list of bubble ranges that are considered to be answers
5220: to a single question that have more than one bubble filled in.
5221: Of the form questionnumber::firstbubblenumber:count
5222:
5223: In the above, count is the number of bubble responses in the
5224: input line needed to represent the possible answers to the question.
5225: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
5226: per line would have count = 2.
5227:
1.423 albertel 5228: maxquest - the number of the last bubble line that was parsed
5229:
5230: (<number> starts at 1)
5231: <number>.answer - zero or more letters representing the selected
5232: letters from the scanline for the bubble line
5233: <number>.
5234: if blank there was either no bubble or there where
5235: multiple bubbles, (consult the keys missingerror and
5236: doubleerror if this is an error condition)
5237:
5238: =cut
5239:
1.82 albertel 5240: sub scantron_parse_scanline {
1.423 albertel 5241: my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470 foxr 5242:
1.82 albertel 5243: my %record;
1.422 foxr 5244: my $questions=substr($line,$$scantron_config{'Qstart'}-1); # Answers
5245: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # earlier stuff
1.278 albertel 5246: if (!($$scantron_config{'CODElocation'} eq 0 ||
5247: $$scantron_config{'CODElocation'} eq 'none')) {
5248: if ($$scantron_config{'CODElocation'} < 0 ||
5249: $$scantron_config{'CODElocation'} eq 'letter' ||
5250: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 5251: $record{'scantron.CODE'}=substr($data,
5252: $$scantron_config{'CODEstart'}-1,
1.83 albertel 5253: $$scantron_config{'CODElength'});
1.191 albertel 5254: if (&scan_data($scan_data,"$whichline.useCODE")) {
5255: $record{'scantron.useCODE'}=1;
5256: }
1.192 albertel 5257: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
5258: $record{'scantron.CODE_ignore_dup'}=1;
5259: }
1.82 albertel 5260: } else {
5261: #FIXME interpret first N questions
5262: }
5263: }
1.83 albertel 5264: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
5265: $$scantron_config{'IDlength'});
1.157 albertel 5266: $record{'scantron.PaperID'}=
5267: substr($data,$$scantron_config{'PaperID'}-1,
5268: $$scantron_config{'PaperIDlength'});
5269: $record{'scantron.FirstName'}=
5270: substr($data,$$scantron_config{'FirstName'}-1,
5271: $$scantron_config{'FirstNamelength'});
5272: $record{'scantron.LastName'}=
5273: substr($data,$$scantron_config{'LastName'}-1,
5274: $$scantron_config{'LastNamelength'});
1.423 albertel 5275: if ($just_header) { return \%record; }
1.194 albertel 5276:
1.82 albertel 5277: my @alphabet=('A'..'Z');
5278: my $questnum=0;
1.447 foxr 5279: my $ansnum =1; # Multiple 'answer lines'/question.
5280:
1.470 foxr 5281: chomp($questions); # Get rid of any trailing \n.
5282: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
5283: while (length($questions)) {
1.447 foxr 5284: my $answers_needed = $bubble_lines_per_response{$questnum};
5285: my $answer_length = $$scantron_config{'Qlength'} * $answers_needed;
5286:
5287:
5288:
1.82 albertel 5289: $questnum++;
1.447 foxr 5290: my $currentquest = substr($questions,0,$answer_length);
5291: $questions = substr($questions,0,$answer_length)='';
5292: if (length($currentquest) < $answer_length) { next; }
5293:
5294: # Qon letter implies for each slot in currentquest we have:
5295: # ? or * for doubles a letter in A-Z for a bubble and
5296: # about anything else (esp. a value of Qoff for missing
5297: # bubbles.
5298:
5299:
1.239 albertel 5300: if ($$scantron_config{'Qon'} eq 'letter') {
1.447 foxr 5301:
5302: if ($currentquest =~ /\?/
5303: || $currentquest =~ /\*/
5304: || (&occurence_count($currentquest, "[A-Z]") > 1)) {
1.274 albertel 5305: push(@{$record{'scantron.doubleerror'}},$questnum);
1.447 foxr 5306: for (my $ans = 0; $ans < $answers_needed; $ans++) {
1.460 foxr 5307: my $bubble = substr($currentquest, $ans, 1);
5308: if ($bubble =~ /[A-Z]/ ) {
5309: $record{"scantron.$ansnum.answer"} = $bubble;
5310: } else {
5311: $record{"scantron.$ansnum.answer"}='';
5312: }
1.447 foxr 5313: $ansnum++;
5314: }
5315:
1.389 albertel 5316: } elsif (!defined($currentquest)
1.447 foxr 5317: || (&occurence_count($currentquest, $$scantron_config{'Qoff'}) == length($currentquest))
5318: || (&occurence_count($currentquest, "[A-Z]") == 0)) {
5319: for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
5320: $record{"scantron.$ansnum.answer"}='';
5321: $ansnum++;
5322:
5323: }
1.239 albertel 5324: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
5325: push(@{$record{"scantron.missingerror"}},$questnum);
1.470 foxr 5326: # $ansnum += $answers_needed;
1.239 albertel 5327: }
5328: } else {
1.447 foxr 5329: for (my $ans = 0; $ans < $answers_needed; $ans++) {
5330: $record{"scantron.$ansnum.answer"} = substr($currentquest, $ans, 1);
5331: $ansnum++;
5332: }
1.239 albertel 5333: }
1.447 foxr 5334:
5335: # Qon 'number' implies each slot gives a digit that indexes the
5336: # the bubbles filled or Qoff or a non number for unbubbled lines.
5337: # and *? for double bubbles on a line.
5338: # these answers are also stored as letters.
5339:
1.239 albertel 5340: } elsif ($$scantron_config{'Qon'} eq 'number') {
1.447 foxr 5341: if ($currentquest =~ /\?/
5342: || $currentquest =~ /\*/
5343: || (&occurence_count($currentquest, '\d') > 1)) {
1.274 albertel 5344: push(@{$record{'scantron.doubleerror'}},$questnum);
1.447 foxr 5345: for (my $ans = 0; $ans < $answers_needed; $ans++) {
1.460 foxr 5346: my $bubble = substr($currentquest, $ans, 1);
5347: if ($bubble =~ /\d/) {
5348: $record{"scantron.$ansnum.answer"} = $alphabet[$bubble];
5349: } else {
1.461 foxr 5350: $record{"scantron.$ansnum.answer"}=' ';
1.460 foxr 5351: }
1.447 foxr 5352: $ansnum++;
5353: }
5354:
1.389 albertel 5355: } elsif (!defined($currentquest)
1.447 foxr 5356: || (&occurence_count($currentquest,$$scantron_config{'Qoff'}) == length($currentquest))
5357: || (&occurence_count($currentquest, '\d') == 0)) {
5358: for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
5359: $record{"scantron.$ansnum.answer"}='';
5360: $ansnum++;
5361:
5362: }
1.239 albertel 5363: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
5364: push(@{$record{"scantron.missingerror"}},$questnum);
1.447 foxr 5365: $ansnum += $answers_needed;
1.239 albertel 5366: }
1.447 foxr 5367:
1.239 albertel 5368: } else {
1.447 foxr 5369: $currentquest = &digits_to_letters($currentquest);
5370: for (my $ans =0; $ans < $answers_needed; $ans++) {
5371: $record{"scantron.$ansnum.answer"} = substr($currentquest, $ans, 1);
5372: $ansnum++;
1.371 albertel 5373: }
1.239 albertel 5374: }
1.82 albertel 5375: } else {
1.447 foxr 5376:
5377: # Otherwise there's a positional notation;
5378: # each bubble line requires Qlength items, and there are filled in
5379: # bubbles for each case where there 'Qon' characters.
5380: #
5381:
1.239 albertel 5382: my @array=split($$scantron_config{'Qon'},$currentquest,-1);
1.447 foxr 5383:
5384: # If the split only giveas us one element.. the full length of the
5385: # answser string, no bubbles are filled in:
5386:
5387: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
5388: for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
5389: $record{"scantron.$ansnum.answer"}='';
5390: $ansnum++;
5391:
5392: }
1.239 albertel 5393: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
5394: push(@{$record{"scantron.missingerror"}},$questnum);
5395: }
1.447 foxr 5396: } elsif (scalar(@array) lt 2) {
5397:
1.459 foxr 5398: my $location = length($array[0]);
1.447 foxr 5399: my $line_num = $location / $$scantron_config{'Qlength'};
5400: my $bubble = $alphabet[$location % $$scantron_config{'Qlength'}];
5401:
5402: for (my $ans = 0; $ans < $answers_needed; $ans++) {
5403: if ($ans eq $line_num) {
5404: $record{"scantron.$ansnum.answer"} = $bubble;
5405: } else {
5406: $record{"scantron.$ansnum.answer"} = ' ';
5407: }
5408: $ansnum++;
5409: }
1.239 albertel 5410: }
1.447 foxr 5411: # If there's more than one instance of a bubble character
5412: # That's a double bubble; with positional notation we can
5413: # record all the bubbles filled in as well as the
5414: # fact this response consists of multiple bubbles.
5415: #
5416: else {
1.239 albertel 5417: push(@{$record{'scantron.doubleerror'}},$questnum);
1.447 foxr 5418:
5419: my $first_answer = $ansnum;
5420: for (my $ans =0; $ans < $answers_needed; $ans++) {
1.462 foxr 5421: my $item = $first_answer+$ans;
5422: $record{"scantron.$item.answer"} = '';
1.447 foxr 5423: }
5424:
1.239 albertel 5425: my @ans=@array;
1.462 foxr 5426: my $i=0;
5427: my $increment = 0;
1.239 albertel 5428: while ($#ans) {
1.462 foxr 5429: $i+=length($ans[0]) + $increment;
5430: my $line = int($i/$$scantron_config{'Qlength'} + $first_answer);
1.447 foxr 5431: my $bubble = $i%$$scantron_config{'Qlength'};
5432: $record{"scantron.$line.answer"}.=$alphabet[$bubble];
1.239 albertel 5433: shift(@ans);
1.462 foxr 5434: $increment = 1;
1.239 albertel 5435: }
1.462 foxr 5436: $ansnum += $answers_needed;
1.239 albertel 5437: }
1.82 albertel 5438: }
5439: }
1.83 albertel 5440: $record{'scantron.maxquest'}=$questnum;
5441: return \%record;
1.82 albertel 5442: }
5443:
1.423 albertel 5444: =pod
5445:
5446: =item scantron_add_delay
5447:
5448: Adds an error message that occurred during the grading phase to a
5449: queue of messages to be shown after grading pass is complete
5450:
5451: Arguments:
1.424 albertel 5452: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 5453: $scanline - the scanline that caused the error
5454: $errormesage - the error message
5455: $errorcode - a numeric code for the error
5456:
5457: Side Effects:
1.424 albertel 5458: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 5459:
5460: =cut
5461:
1.82 albertel 5462: sub scantron_add_delay {
1.140 albertel 5463: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
5464: push(@$delayqueue,
5465: {'line' => $scanline, 'emsg' => $errormessage,
5466: 'ecode' => $errorcode }
5467: );
1.82 albertel 5468: }
5469:
1.423 albertel 5470: =pod
5471:
5472: =item scantron_find_student
5473:
1.424 albertel 5474: Finds the username for the current scanline
5475:
5476: Arguments:
5477: $scantron_record - hash result from scantron_parse_scanline
5478: $scan_data - hash of correction information
5479: (see &scantron_getfile() form more information)
5480: $idmap - hash from &username_to_idmap()
5481: $line - number of current scanline
5482:
5483: Returns:
5484: Either 'username:domain' or undef if unknown
5485:
1.423 albertel 5486: =cut
5487:
1.82 albertel 5488: sub scantron_find_student {
1.157 albertel 5489: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 5490: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 5491: if ($scanID =~ /^\s*$/) {
5492: return &scan_data($scan_data,"$line.user");
5493: }
1.83 albertel 5494: foreach my $id (keys(%$idmap)) {
1.157 albertel 5495: if (lc($id) eq lc($scanID)) {
5496: return $$idmap{$id};
5497: }
1.83 albertel 5498: }
5499: return undef;
5500: }
5501:
1.423 albertel 5502: =pod
5503:
5504: =item scantron_filter
5505:
1.424 albertel 5506: Filter sub for lonnavmaps, filters out hidden resources if ignore
5507: hidden resources was selected
5508:
1.423 albertel 5509: =cut
5510:
1.83 albertel 5511: sub scantron_filter {
5512: my ($curres)=@_;
1.331 albertel 5513:
5514: if (ref($curres) && $curres->is_problem()) {
5515: # if the user has asked to not have either hidden
5516: # or 'randomout' controlled resources to be graded
5517: # don't include them
5518: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
5519: && $curres->randomout) {
5520: return 0;
5521: }
1.83 albertel 5522: return 1;
5523: }
5524: return 0;
1.82 albertel 5525: }
5526:
1.423 albertel 5527: =pod
5528:
5529: =item scantron_process_corrections
5530:
1.424 albertel 5531: Gets correction information out of submitted form data and corrects
5532: the scanline
5533:
1.423 albertel 5534: =cut
5535:
1.157 albertel 5536: sub scantron_process_corrections {
5537: my ($r) = @_;
1.257 albertel 5538: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 5539: my ($scanlines,$scan_data)=&scantron_getfile();
5540: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 5541: my $which=$env{'form.scantron_line'};
1.200 albertel 5542: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 5543: my ($skip,$err,$errmsg);
1.257 albertel 5544: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 5545: $skip=1;
1.257 albertel 5546: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
5547: my $newstudent=$env{'form.scantron_username'}.':'.
5548: $env{'form.scantron_domain'};
1.157 albertel 5549: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
5550: ($line,$err,$errmsg)=
5551: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
5552: 'ID',{'newid'=>$newid,
1.257 albertel 5553: 'username'=>$env{'form.scantron_username'},
5554: 'domain'=>$env{'form.scantron_domain'}});
5555: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
5556: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 5557: my $newCODE;
1.192 albertel 5558: my %args;
1.190 albertel 5559: if ($resolution eq 'use_unfound') {
1.191 albertel 5560: $newCODE='use_unfound';
1.190 albertel 5561: } elsif ($resolution eq 'use_found') {
1.257 albertel 5562: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 5563: } elsif ($resolution eq 'use_typed') {
1.257 albertel 5564: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 5565: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 5566: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 5567: }
1.257 albertel 5568: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 5569: $args{'CODE_ignore_dup'}=1;
5570: }
5571: $args{'CODE'}=$newCODE;
1.186 albertel 5572: ($line,$err,$errmsg)=
5573: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 5574: 'CODE',\%args);
1.257 albertel 5575: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
5576: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 5577: ($line,$err,$errmsg)=
5578: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
5579: $which,'answer',
5580: { 'question'=>$question,
1.257 albertel 5581: 'response'=>$env{"form.scantron_correct_Q_$question"}});
1.157 albertel 5582: if ($err) { last; }
5583: }
5584: }
5585: if ($err) {
1.398 albertel 5586: $r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157 albertel 5587: } else {
1.200 albertel 5588: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 5589: &scantron_putfile($scanlines,$scan_data);
5590: }
5591: }
5592:
1.423 albertel 5593: =pod
5594:
5595: =item reset_skipping_status
5596:
1.424 albertel 5597: Forgets the current set of remember skipped scanlines (and thus
5598: reverts back to considering all lines in the
5599: scantron_skipped_<filename> file)
5600:
1.423 albertel 5601: =cut
5602:
1.200 albertel 5603: sub reset_skipping_status {
5604: my ($scanlines,$scan_data)=&scantron_getfile();
5605: &scan_data($scan_data,'remember_skipping',undef,1);
5606: &scantron_putfile(undef,$scan_data);
5607: }
5608:
1.423 albertel 5609: =pod
5610:
5611: =item start_skipping
5612:
1.424 albertel 5613: Marks a scanline to be skipped.
5614:
1.423 albertel 5615: =cut
5616:
1.376 albertel 5617: sub start_skipping {
1.200 albertel 5618: my ($scan_data,$i)=@_;
5619: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 5620: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
5621: $remembered{$i}=2;
5622: } else {
5623: $remembered{$i}=1;
5624: }
1.200 albertel 5625: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
5626: }
5627:
1.423 albertel 5628: =pod
5629:
5630: =item should_be_skipped
5631:
1.424 albertel 5632: Checks whether a scanline should be skipped.
5633:
1.423 albertel 5634: =cut
5635:
1.200 albertel 5636: sub should_be_skipped {
1.376 albertel 5637: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 5638: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 5639: # not redoing old skips
1.376 albertel 5640: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 5641: return 0;
5642: }
5643: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 5644:
5645: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
5646: return 0;
5647: }
1.200 albertel 5648: return 1;
5649: }
5650:
1.423 albertel 5651: =pod
5652:
5653: =item remember_current_skipped
5654:
1.424 albertel 5655: Discovers what scanlines are in the scantron_skipped_<filename>
5656: file and remembers them into scan_data for later use.
5657:
1.423 albertel 5658: =cut
5659:
1.200 albertel 5660: sub remember_current_skipped {
5661: my ($scanlines,$scan_data)=&scantron_getfile();
5662: my %to_remember;
5663: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
5664: if ($scanlines->{'skipped'}[$i]) {
5665: $to_remember{$i}=1;
5666: }
5667: }
1.376 albertel 5668:
1.200 albertel 5669: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
5670: &scantron_putfile(undef,$scan_data);
5671: }
5672:
1.423 albertel 5673: =pod
5674:
5675: =item check_for_error
5676:
1.424 albertel 5677: Checks if there was an error when attempting to remove a specific
5678: scantron_.. bubble sheet data file. Prints out an error if
5679: something went wrong.
5680:
1.423 albertel 5681: =cut
5682:
1.200 albertel 5683: sub check_for_error {
5684: my ($r,$result)=@_;
5685: if ($result ne 'ok' && $result ne 'not_found' ) {
1.401 albertel 5686: $r->print("An error occurred ($result) when trying to Remove the existing corrections.");
1.200 albertel 5687: }
5688: }
1.157 albertel 5689:
1.423 albertel 5690: =pod
5691:
5692: =item scantron_warning_screen
5693:
1.424 albertel 5694: Interstitial screen to make sure the operator has selected the
5695: correct options before we start the validation phase.
5696:
1.423 albertel 5697: =cut
5698:
1.203 albertel 5699: sub scantron_warning_screen {
5700: my ($button_text)=@_;
1.257 albertel 5701: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 5702: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 5703: my $CODElist;
1.284 albertel 5704: if ($scantron_config{'CODElocation'} &&
5705: $scantron_config{'CODEstart'} &&
5706: $scantron_config{'CODElength'}) {
5707: $CODElist=$env{'form.scantron_CODElist'};
1.398 albertel 5708: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284 albertel 5709: $CODElist=
5710: '<tr><td><b>List of CODES to validate against:</b></td><td><tt>'.
1.373 albertel 5711: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 5712: }
1.203 albertel 5713: return (<<STUFF);
5714: <p>
1.398 albertel 5715: <span class="LC_warning">Please double check the information
5716: below before clicking on '$button_text'</span>
1.203 albertel 5717: </p>
5718: <table>
1.284 albertel 5719: <tr><td><b>Sequence to be Graded:</b></td><td>$title</td></tr>
1.257 albertel 5720: <tr><td><b>Data File that will be used:</b></td><td><tt>$env{'form.scantron_selectfile'}</tt></td></tr>
1.284 albertel 5721: $CODElist
1.203 albertel 5722: </table>
5723: <br />
5724: <p> If this information is correct, please click on '$button_text'.</p>
5725: <p> If something is incorrect, please click the 'Grading Menu' button to start over.</p>
5726:
5727: <br />
5728: STUFF
5729: }
5730:
1.423 albertel 5731: =pod
5732:
5733: =item scantron_do_warning
5734:
1.424 albertel 5735: Check if the operator has picked something for all required
5736: fields. Error out if something is missing.
5737:
1.423 albertel 5738: =cut
5739:
1.203 albertel 5740: sub scantron_do_warning {
5741: my ($r)=@_;
1.324 albertel 5742: my ($symb)=&get_symb($r);
1.203 albertel 5743: if (!$symb) {return '';}
1.324 albertel 5744: my $default_form_data=&defaultFormData($symb);
1.203 albertel 5745: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 5746: if ( $env{'form.selectpage'} eq '' ||
5747: $env{'form.scantron_selectfile'} eq '' ||
5748: $env{'form.scantron_format'} eq '' ) {
1.237 albertel 5749: $r->print("<p>You have forgetten to specify some information. Please go Back and try again.</p>");
1.257 albertel 5750: if ( $env{'form.selectpage'} eq '') {
1.398 albertel 5751: $r->print('<p><span class="LC_error">You have not selected a Sequence to grade</span></p>');
1.237 albertel 5752: }
1.257 albertel 5753: if ( $env{'form.scantron_selectfile'} eq '') {
1.398 albertel 5754: $r->print('<p><span class="LC_error">You have not selected a file that contains the student\'s response data.</span></p>');
1.237 albertel 5755: }
1.257 albertel 5756: if ( $env{'form.scantron_format'} eq '') {
1.398 albertel 5757: $r->print('<p><span class="LC_error">You have not selected a the format of the student\'s response data.</span></p>');
1.237 albertel 5758: }
5759: } else {
1.265 www 5760: my $warning=&scantron_warning_screen('Grading: Validate Records');
1.237 albertel 5761: $r->print(<<STUFF);
1.203 albertel 5762: $warning
1.265 www 5763: <input type="submit" name="submit" value="Grading: Validate Records" />
1.203 albertel 5764: <input type="hidden" name="command" value="scantron_validate" />
5765: STUFF
1.237 albertel 5766: }
1.352 albertel 5767: $r->print("</form><br />".&show_grading_menu_form($symb));
1.203 albertel 5768: return '';
5769: }
5770:
1.423 albertel 5771: =pod
5772:
5773: =item scantron_form_start
5774:
1.424 albertel 5775: html hidden input for remembering all selected grading options
5776:
1.423 albertel 5777: =cut
5778:
1.203 albertel 5779: sub scantron_form_start {
5780: my ($max_bubble)=@_;
5781: my $result= <<SCANTRONFORM;
5782: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 5783: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
5784: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
5785: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 5786: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 5787: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
5788: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
5789: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
5790: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 5791: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 5792: SCANTRONFORM
1.447 foxr 5793:
5794: my $line = 0;
5795: while (defined($env{"form.scantron.bubblelines.$line"})) {
5796: my $chunk =
5797: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 5798: $chunk .=
5799: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.447 foxr 5800: $result .= $chunk;
5801: $line++;
5802: }
1.203 albertel 5803: return $result;
5804: }
5805:
1.423 albertel 5806: =pod
5807:
5808: =item scantron_validate_file
5809:
1.424 albertel 5810: Dispatch routine for doing validation of a bubble sheet data file.
5811:
5812: Also processes any necessary information resets that need to
5813: occur before validation begins (ignore previous corrections,
5814: restarting the skipped records processing)
5815:
1.423 albertel 5816: =cut
5817:
1.157 albertel 5818: sub scantron_validate_file {
5819: my ($r) = @_;
1.324 albertel 5820: my ($symb)=&get_symb($r);
1.157 albertel 5821: if (!$symb) {return '';}
1.324 albertel 5822: my $default_form_data=&defaultFormData($symb);
1.200 albertel 5823:
5824: # do the detection of only doing skipped records first befroe we delete
1.424 albertel 5825: # them when doing the corrections reset
1.257 albertel 5826: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 5827: &reset_skipping_status();
5828: }
1.257 albertel 5829: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 5830: &remember_current_skipped();
1.257 albertel 5831: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 5832: }
5833:
1.257 albertel 5834: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 5835: &check_for_error($r,&scantron_remove_file('corrected'));
5836: &check_for_error($r,&scantron_remove_file('skipped'));
5837: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 5838: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 5839: }
1.200 albertel 5840:
1.257 albertel 5841: if ($env{'form.scantron_corrections'}) {
1.157 albertel 5842: &scantron_process_corrections($r);
5843: }
1.424 albertel 5844: $r->print("<p>Gathering necessary info.</p>");$r->rflush();
1.157 albertel 5845: #get the student pick code ready
5846: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.330 albertel 5847: my $max_bubble=&scantron_get_maxbubble();
1.203 albertel 5848: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.157 albertel 5849: $r->print($result);
5850:
1.334 albertel 5851: my @validate_phases=( 'sequence',
5852: 'ID',
1.157 albertel 5853: 'CODE',
5854: 'doublebubble',
5855: 'missingbubbles');
1.257 albertel 5856: if (!$env{'form.validatepass'}) {
5857: $env{'form.validatepass'} = 0;
1.157 albertel 5858: }
1.257 albertel 5859: my $currentphase=$env{'form.validatepass'};
1.157 albertel 5860:
1.448 foxr 5861:
1.157 albertel 5862: my $stop=0;
5863: while (!$stop && $currentphase < scalar(@validate_phases)) {
5864: $r->print("<p> Validating ".$validate_phases[$currentphase]."</p>");
5865: $r->rflush();
5866: my $which="scantron_validate_".$validate_phases[$currentphase];
5867: {
5868: no strict 'refs';
5869: ($stop,$currentphase)=&$which($r,$currentphase);
5870: }
5871: }
5872: if (!$stop) {
1.203 albertel 5873: my $warning=&scantron_warning_screen('Start Grading');
5874: $r->print(<<STUFF);
5875: Validation process complete.<br />
5876: $warning
5877: <input type="submit" name="submit" value="Start Grading" />
5878: <input type="hidden" name="command" value="scantron_process" />
5879: STUFF
5880:
1.157 albertel 5881: } else {
5882: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
5883: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
5884: }
5885: if ($stop) {
1.334 albertel 5886: if ($validate_phases[$currentphase] eq 'sequence') {
5887: $r->print('<input type="submit" name="submit" value="Ignore -> " />');
5888: $r->print(' this error <br />');
5889:
5890: $r->print(" <p>Or click the 'Grading Menu' button to start over.</p>");
5891: } else {
5892: $r->print('<input type="submit" name="submit" value="Continue ->" />');
5893: $r->print(' using corrected info <br />');
5894: $r->print("<input type='submit' value='Skip' name='scantron_skip_record' />");
5895: $r->print(" this scanline saving it for later.");
5896: }
1.157 albertel 5897: }
1.352 albertel 5898: $r->print(" </form><br />".&show_grading_menu_form($symb));
1.157 albertel 5899: return '';
5900: }
5901:
1.423 albertel 5902:
5903: =pod
5904:
5905: =item scantron_remove_file
5906:
1.424 albertel 5907: Removes the requested bubble sheet data file, makes sure that
5908: scantron_original_<filename> is never removed
5909:
5910:
1.423 albertel 5911: =cut
5912:
1.200 albertel 5913: sub scantron_remove_file {
1.192 albertel 5914: my ($which)=@_;
1.257 albertel 5915: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
5916: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 5917: my $file='scantron_';
1.200 albertel 5918: if ($which eq 'corrected' || $which eq 'skipped') {
5919: $file.=$which.'_';
1.192 albertel 5920: } else {
5921: return 'refused';
5922: }
1.257 albertel 5923: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 5924: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
5925: }
5926:
1.423 albertel 5927:
5928: =pod
5929:
5930: =item scantron_remove_scan_data
5931:
1.424 albertel 5932: Removes all scan_data correction for the requested bubble sheet
5933: data file. (In the case that both the are doing skipped records we need
5934: to remember the old skipped lines for the time being so that element
5935: persists for a while.)
5936:
1.423 albertel 5937: =cut
5938:
1.200 albertel 5939: sub scantron_remove_scan_data {
1.257 albertel 5940: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
5941: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 5942: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
5943: my @todelete;
1.257 albertel 5944: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 5945: foreach my $key (@keys) {
5946: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 5947: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 5948: $key=~/remember_skipping/) {
5949: next;
5950: }
1.192 albertel 5951: push(@todelete,$key);
5952: }
5953: }
1.200 albertel 5954: my $result;
1.192 albertel 5955: if (@todelete) {
1.200 albertel 5956: $result=&Apache::lonnet::del('nohist_scantrondata',\@todelete,$cdom,$cname);
1.192 albertel 5957: }
5958: return $result;
5959: }
5960:
1.423 albertel 5961:
5962: =pod
5963:
5964: =item scantron_getfile
5965:
1.424 albertel 5966: Fetches the requested bubble sheet data file (all 3 versions), and
5967: the scan_data hash
5968:
5969: Arguments:
5970: None
5971:
5972: Returns:
5973: 2 hash references
5974:
5975: - first one has
5976: orig -
5977: corrected -
5978: skipped - each of which points to an array ref of the specified
5979: file broken up into individual lines
5980: count - number of scanlines
5981:
5982: - second is the scan_data hash possible keys are
1.425 albertel 5983: ($number refers to scanline numbered $number and thus the key affects
5984: only that scanline
5985: $bubline refers to the specific bubble line element and the aspects
5986: refers to that specific bubble line element)
5987:
5988: $number.user - username:domain to use
5989: $number.CODE_ignore_dup
5990: - ignore the duplicate CODE error
5991: $number.useCODE
5992: - use the CODE in the scanline as is
5993: $number.no_bubble.$bubline
5994: - it is valid that there is no bubbled in bubble
5995: at $number $bubline
5996: remember_skipping
5997: - a frozen hash containing keys of $number and values
5998: of either
5999: 1 - we are on a 'do skipped records pass' and plan
6000: on processing this line
6001: 2 - we are on a 'do skipped records pass' and this
6002: scanline has been marked to skip yet again
1.424 albertel 6003:
1.423 albertel 6004: =cut
6005:
1.157 albertel 6006: sub scantron_getfile {
1.200 albertel 6007: #FIXME really would prefer a scantron directory
1.257 albertel 6008: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6009: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 6010: my $lines;
6011: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6012: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 6013: my %scanlines;
6014: $scanlines{'orig'}=[(split("\n",$lines,-1))];
6015: my $temp=$scanlines{'orig'};
6016: $scanlines{'count'}=$#$temp;
6017:
6018: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6019: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 6020: if ($lines eq '-1') {
6021: $scanlines{'corrected'}=[];
6022: } else {
6023: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
6024: }
6025: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6026: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 6027: if ($lines eq '-1') {
6028: $scanlines{'skipped'}=[];
6029: } else {
6030: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
6031: }
1.175 albertel 6032: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 6033: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
6034: my %scan_data = @tmp;
6035: return (\%scanlines,\%scan_data);
6036: }
6037:
1.423 albertel 6038: =pod
6039:
6040: =item lonnet_putfile
6041:
1.424 albertel 6042: Wrapper routine to call &Apache::lonnet::finishuserfileupload
6043:
6044: Arguments:
6045: $contents - data to store
6046: $filename - filename to store $contents into
6047:
6048: Returns:
6049: result value from &Apache::lonnet::finishuserfileupload
6050:
1.423 albertel 6051: =cut
6052:
1.157 albertel 6053: sub lonnet_putfile {
6054: my ($contents,$filename)=@_;
1.257 albertel 6055: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
6056: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
6057: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 6058: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 6059:
6060: }
6061:
1.423 albertel 6062: =pod
6063:
6064: =item scantron_putfile
6065:
1.424 albertel 6066: Stores the current version of the bubble sheet data files, and the
6067: scan_data hash. (Does not modify the original version only the
6068: corrected and skipped versions.
6069:
6070: Arguments:
6071: $scanlines - hash ref that looks like the first return value from
6072: &scantron_getfile()
6073: $scan_data - hash ref that looks like the second return value from
6074: &scantron_getfile()
6075:
1.423 albertel 6076: =cut
6077:
1.157 albertel 6078: sub scantron_putfile {
6079: my ($scanlines,$scan_data) = @_;
1.200 albertel 6080: #FIXME really would prefer a scantron directory
1.257 albertel 6081: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6082: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 6083: if ($scanlines) {
6084: my $prefix='scantron_';
1.157 albertel 6085: # no need to update orig, shouldn't change
6086: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 6087: # $env{'form.scantron_selectfile'});
1.200 albertel 6088: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
6089: $prefix.'corrected_'.
1.257 albertel 6090: $env{'form.scantron_selectfile'});
1.200 albertel 6091: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
6092: $prefix.'skipped_'.
1.257 albertel 6093: $env{'form.scantron_selectfile'});
1.200 albertel 6094: }
1.175 albertel 6095: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 6096: }
6097:
1.423 albertel 6098: =pod
6099:
6100: =item scantron_get_line
6101:
1.424 albertel 6102: Returns the correct version of the scanline
6103:
6104: Arguments:
6105: $scanlines - hash ref that looks like the first return value from
6106: &scantron_getfile()
6107: $scan_data - hash ref that looks like the second return value from
6108: &scantron_getfile()
6109: $i - number of the requested line (starts at 0)
6110:
6111: Returns:
6112: A scanline, (either the original or the corrected one if it
6113: exists), or undef if the requested scanline should be
6114: skipped. (Either because it's an skipped scanline, or it's an
6115: unskipped scanline and we are not doing a 'do skipped scanlines'
6116: pass.
6117:
1.423 albertel 6118: =cut
6119:
1.157 albertel 6120: sub scantron_get_line {
1.200 albertel 6121: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 6122: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
6123: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 6124: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
6125: return $scanlines->{'orig'}[$i];
6126: }
6127:
1.423 albertel 6128: =pod
6129:
6130: =item scantron_todo_count
6131:
1.424 albertel 6132: Counts the number of scanlines that need processing.
6133:
6134: Arguments:
6135: $scanlines - hash ref that looks like the first return value from
6136: &scantron_getfile()
6137: $scan_data - hash ref that looks like the second return value from
6138: &scantron_getfile()
6139:
6140: Returns:
6141: $count - number of scanlines to process
6142:
1.423 albertel 6143: =cut
6144:
1.200 albertel 6145: sub get_todo_count {
6146: my ($scanlines,$scan_data)=@_;
6147: my $count=0;
6148: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6149: my $line=&scantron_get_line($scanlines,$scan_data,$i);
6150: if ($line=~/^[\s\cz]*$/) { next; }
6151: $count++;
6152: }
6153: return $count;
6154: }
6155:
1.423 albertel 6156: =pod
6157:
6158: =item scantron_put_line
6159:
1.424 albertel 6160: Updates the 'corrected' or 'skipped' versions of the bubble sheet
6161: data file.
6162:
6163: Arguments:
6164: $scanlines - hash ref that looks like the first return value from
6165: &scantron_getfile()
6166: $scan_data - hash ref that looks like the second return value from
6167: &scantron_getfile()
6168: $i - line number to update
6169: $newline - contents of the updated scanline
6170: $skip - if true make the line for skipping and update the
6171: 'skipped' file
6172:
1.423 albertel 6173: =cut
6174:
1.157 albertel 6175: sub scantron_put_line {
1.200 albertel 6176: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 6177: if ($skip) {
6178: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 6179: &start_skipping($scan_data,$i);
1.157 albertel 6180: return;
6181: }
6182: $scanlines->{'corrected'}[$i]=$newline;
6183: }
6184:
1.423 albertel 6185: =pod
6186:
6187: =item scantron_clear_skip
6188:
1.424 albertel 6189: Remove a line from the 'skipped' file
6190:
6191: Arguments:
6192: $scanlines - hash ref that looks like the first return value from
6193: &scantron_getfile()
6194: $scan_data - hash ref that looks like the second return value from
6195: &scantron_getfile()
6196: $i - line number to update
6197:
1.423 albertel 6198: =cut
6199:
1.376 albertel 6200: sub scantron_clear_skip {
6201: my ($scanlines,$scan_data,$i)=@_;
6202: if (exists($scanlines->{'skipped'}[$i])) {
6203: undef($scanlines->{'skipped'}[$i]);
6204: return 1;
6205: }
6206: return 0;
6207: }
6208:
1.423 albertel 6209: =pod
6210:
6211: =item scantron_filter_not_exam
6212:
1.424 albertel 6213: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
6214: filter out resources that are not marked as 'exam' mode
6215:
1.423 albertel 6216: =cut
6217:
1.334 albertel 6218: sub scantron_filter_not_exam {
6219: my ($curres)=@_;
6220:
6221: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
6222: # if the user has asked to not have either hidden
6223: # or 'randomout' controlled resources to be graded
6224: # don't include them
6225: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6226: && $curres->randomout) {
6227: return 0;
6228: }
6229: return 1;
6230: }
6231: return 0;
6232: }
6233:
1.423 albertel 6234: =pod
6235:
6236: =item scantron_validate_sequence
6237:
1.424 albertel 6238: Validates the selected sequence, checking for resource that are
6239: not set to exam mode.
6240:
1.423 albertel 6241: =cut
6242:
1.334 albertel 6243: sub scantron_validate_sequence {
6244: my ($r,$currentphase) = @_;
6245:
6246: my $navmap=Apache::lonnavmaps::navmap->new();
6247: my (undef,undef,$sequence)=
6248: &Apache::lonnet::decode_symb($env{'form.selectpage'});
6249:
6250: my $map=$navmap->getResourceByUrl($sequence);
6251:
6252: $r->print('<input type="hidden" name="validate_sequence_exam"
6253: value="ignore" />');
6254: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
6255: my @resources=
6256: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
6257: if (@resources) {
1.357 banghart 6258: $r->print("<p>".&mt('Some resources in the sequence currently are not set to exam mode. Grading these resources currently may not work correctly.')."</p>");
1.334 albertel 6259: return (1,$currentphase);
6260: }
6261: }
6262:
6263: return (0,$currentphase+1);
6264: }
6265:
1.423 albertel 6266: =pod
6267:
6268: =item scantron_validate_ID
6269:
1.424 albertel 6270: Validates all scanlines in the selected file to not have any
6271: invalid or underspecified student IDs
6272:
1.423 albertel 6273: =cut
6274:
1.157 albertel 6275: sub scantron_validate_ID {
6276: my ($r,$currentphase) = @_;
6277:
6278: #get student info
6279: my $classlist=&Apache::loncoursedata::get_classlist();
6280: my %idmap=&username_to_idmap($classlist);
6281:
6282: #get scantron line setup
1.257 albertel 6283: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6284: my ($scanlines,$scan_data)=&scantron_getfile();
1.447 foxr 6285:
6286: &scantron_get_maxbubble(); # parse needs the bubble_lines.. array.
1.157 albertel 6287:
6288: my %found=('ids'=>{},'usernames'=>{});
6289: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6290: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6291: if ($line=~/^[\s\cz]*$/) { next; }
6292: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6293: $scan_data);
6294: my $id=$$scan_record{'scantron.ID'};
6295: my $found;
6296: foreach my $checkid (keys(%idmap)) {
6297: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
6298: }
6299: if ($found) {
6300: my $username=$idmap{$found};
6301: if ($found{'ids'}{$found}) {
6302: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6303: $line,'duplicateID',$found);
1.194 albertel 6304: return(1,$currentphase);
1.157 albertel 6305: } elsif ($found{'usernames'}{$username}) {
6306: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6307: $line,'duplicateID',$username);
1.194 albertel 6308: return(1,$currentphase);
1.157 albertel 6309: }
1.186 albertel 6310: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 6311: $found{'ids'}{$found}++;
6312: $found{'usernames'}{$username}++;
6313: } else {
6314: if ($id =~ /^\s*$/) {
1.158 albertel 6315: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 6316: if (defined($username) && $found{'usernames'}{$username}) {
6317: &scantron_get_correction($r,$i,$scan_record,
6318: \%scantron_config,
6319: $line,'duplicateID',$username);
1.194 albertel 6320: return(1,$currentphase);
1.157 albertel 6321: } elsif (!defined($username)) {
6322: &scantron_get_correction($r,$i,$scan_record,
6323: \%scantron_config,
6324: $line,'incorrectID');
1.194 albertel 6325: return(1,$currentphase);
1.157 albertel 6326: }
6327: $found{'usernames'}{$username}++;
6328: } else {
6329: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6330: $line,'incorrectID');
1.194 albertel 6331: return(1,$currentphase);
1.157 albertel 6332: }
6333: }
6334: }
6335:
6336: return (0,$currentphase+1);
6337: }
6338:
1.423 albertel 6339: =pod
6340:
6341: =item scantron_get_correction
6342:
1.424 albertel 6343: Builds the interface screen to interact with the operator to fix a
6344: specific error condition in a specific scanline
6345:
6346: Arguments:
6347: $r - Apache request object
6348: $i - number of the current scanline
6349: $scan_record - hash ref as returned from &scantron_parse_scanline()
6350: $scan_config - hash ref as returned from &get_scantron_config()
6351: $line - full contents of the current scanline
6352: $error - error condition, valid values are
6353: 'incorrectCODE', 'duplicateCODE',
6354: 'doublebubble', 'missingbubble',
6355: 'duplicateID', 'incorrectID'
6356: $arg - extra information needed
6357: For errors:
6358: - duplicateID - paper number that this studentID was seen before on
6359: - duplicateCODE - array ref of the paper numbers this CODE was
6360: seen on before
6361: - incorrectCODE - current incorrect CODE
6362: - doublebubble - array ref of the bubble lines that have double
6363: bubble errors
6364: - missingbubble - array ref of the bubble lines that have missing
6365: bubble errors
6366:
1.423 albertel 6367: =cut
6368:
1.157 albertel 6369: sub scantron_get_correction {
6370: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
6371:
1.454 banghart 6372: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 6373: #to show both the current line and the previous one and allow skipping
6374: #the previous one or the current one
6375:
1.161 albertel 6376: $r->print("<p><b>An error was detected ($error)</b>");
1.333 albertel 6377: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.157 albertel 6378: $r->print(" for PaperID <tt>".
6379: $$scan_record{'scantron.PaperID'}."</tt> \n");
6380: } else {
6381: $r->print(" in scanline $i <pre>".
6382: $line."</pre> \n");
6383: }
1.242 albertel 6384: my $message="<p>The ID on the form is <tt>".
6385: $$scan_record{'scantron.ID'}."</tt><br />\n".
6386: "The name on the paper is ".
6387: $$scan_record{'scantron.LastName'}.",".
6388: $$scan_record{'scantron.FirstName'}."</p>";
6389:
1.157 albertel 6390: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
6391: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
6392: if ($error =~ /ID$/) {
1.186 albertel 6393: if ($error eq 'incorrectID') {
1.157 albertel 6394: $r->print("The encoded ID is not in the classlist</p>\n");
6395: } elsif ($error eq 'duplicateID') {
6396: $r->print("The encoded ID has also been used by a previous paper $arg</p>\n");
6397: }
1.242 albertel 6398: $r->print($message);
1.157 albertel 6399: $r->print("<p>How should I handle this? <br /> \n");
6400: $r->print("\n<ul><li> ");
6401: #FIXME it would be nice if this sent back the user ID and
6402: #could do partial userID matches
6403: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
6404: 'scantron_username','scantron_domain'));
6405: $r->print(": <input type='text' name='scantron_username' value='' />");
6406: $r->print("\n@".
1.257 albertel 6407: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 6408:
6409: $r->print('</li>');
1.186 albertel 6410: } elsif ($error =~ /CODE$/) {
6411: if ($error eq 'incorrectCODE') {
1.187 albertel 6412: $r->print("</p><p>The encoded CODE is not in the list of possible CODEs</p>\n");
1.186 albertel 6413: } elsif ($error eq 'duplicateCODE') {
1.194 albertel 6414: $r->print("</p><p>The encoded CODE has also been used by a previous paper ".join(', ',@{$arg}).", and CODEs are supposed to be unique</p>\n");
1.186 albertel 6415: }
1.224 albertel 6416: $r->print("<p>The CODE on the form is <tt>'".
6417: $$scan_record{'scantron.CODE'}."'</tt><br />\n");
1.242 albertel 6418: $r->print($message);
1.186 albertel 6419: $r->print("<p>How should I handle this? <br /> \n");
1.187 albertel 6420: $r->print("\n<br /> ");
1.194 albertel 6421: my $i=0;
1.273 albertel 6422: if ($error eq 'incorrectCODE'
6423: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 6424: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 6425: if ($closest > 0) {
6426: foreach my $testcode (@{$closest}) {
6427: my $checked='';
1.401 albertel 6428: if (!$i) { $checked=' checked="checked" '; }
1.278 albertel 6429: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_closest_$i' $checked /> Use the similar CODE <b><tt>".$testcode."</tt></b> instead.</label><input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
6430: $r->print("\n<br />");
6431: $i++;
6432: }
1.194 albertel 6433: }
6434: }
1.273 albertel 6435: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.401 albertel 6436: my $checked; if (!$i) { $checked=' checked="checked" '; }
1.273 albertel 6437: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_unfound' $checked /> Use the CODE <b><tt>".$$scan_record{'scantron.CODE'}."</tt></b> that is was on the paper, ignoring the error.</label>");
6438: $r->print("\n<br />");
6439: }
1.194 albertel 6440:
1.188 albertel 6441: $r->print(<<ENDSCRIPT);
6442: <script type="text/javascript">
6443: function change_radio(field) {
1.190 albertel 6444: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 6445: var i;
6446: for (i=0;i<slct.length;i++) {
6447: if (slct[i].value==field) { slct[i].checked=true; }
6448: }
6449: }
6450: </script>
6451: ENDSCRIPT
1.187 albertel 6452: my $href="/adm/pickcode?".
1.359 www 6453: "form=".&escape("scantronupload").
6454: "&scantron_format=".&escape($env{'form.scantron_format'}).
6455: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
6456: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
6457: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 6458: if ($env{'form.scantron_CODElist'} =~ /\S/) {
6459: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_found' /> <a target='_blank' href='$href'>Select</a> a CODE from the list of all CODEs and use it.</label> Selected CODE is <input readonly='true' type='text' size='8' name='scantron_CODE_selectedvalue' onfocus=\"javascript:change_radio('use_found')\" onchange=\"javascript:change_radio('use_found')\" />");
6460: $r->print("\n<br />");
6461: }
1.272 albertel 6462: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_typed' /> Use </label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" /> as the CODE.");
1.187 albertel 6463: $r->print("\n<br /><br />");
1.157 albertel 6464: } elsif ($error eq 'doublebubble') {
6465: $r->print("<p>There have been multiple bubbles scanned for a some question(s)</p>\n");
6466: $r->print('<input type="hidden" name="scantron_questions" value="'.
6467: join(',',@{$arg}).'" />');
1.242 albertel 6468: $r->print($message);
1.157 albertel 6469: $r->print("<p>Please indicate which bubble should be used for grading</p>");
6470: foreach my $question (@{$arg}) {
1.447 foxr 6471: my $selected = &get_response_bubbles($scan_record, $question);
1.461 foxr 6472: my @select_array = split(/:/,$selected);
1.422 foxr 6473: &scantron_bubble_selector($r,$scan_config,$question,
1.460 foxr 6474: @select_array);
1.157 albertel 6475: }
6476: } elsif ($error eq 'missingbubble') {
6477: $r->print("<p>There have been <b>no</b> bubbles scanned for some question(s)</p>\n");
1.242 albertel 6478: $r->print($message);
1.157 albertel 6479: $r->print("<p>Please indicate which bubble should be used for grading</p>");
6480: $r->print("Some questions have no scanned bubbles\n");
6481: $r->print('<input type="hidden" name="scantron_questions" value="'.
6482: join(',',@{$arg}).'" />');
6483: foreach my $question (@{$arg}) {
1.448 foxr 6484: my $selected = &get_response_bubbles($scan_record, $question);
1.470 foxr 6485: my @select_array = split(/:/,$selected); # ought to be an array of empties.
6486: &scantron_bubble_selector($r,$scan_config,$question, @select_array);
1.157 albertel 6487: }
6488: } else {
6489: $r->print("\n<ul>");
6490: }
6491: $r->print("\n</li></ul>");
6492:
6493: }
1.423 albertel 6494:
6495: =pod
6496:
6497: =item scantron_bubble_selector
6498:
6499: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 6500: possibly showing the existing the selected bubbles if known
1.423 albertel 6501:
6502: Arguments:
6503: $r - Apache request object
6504: $scan_config - hash from &get_scantron_config()
6505: $quest - number of the bubble line to make a corrector for
1.470 foxr 6506: @lines - array of answer lines.
1.423 albertel 6507:
6508: =cut
6509:
1.157 albertel 6510: sub scantron_bubble_selector {
1.461 foxr 6511: my ($r,$scan_config,$quest,@lines)=@_;
1.157 albertel 6512: my $max=$$scan_config{'Qlength'};
1.274 albertel 6513:
1.461 foxr 6514:
1.274 albertel 6515: my $scmode=$$scan_config{'Qon'};
1.447 foxr 6516:
1.461 foxr 6517: my $bubble_length = scalar(@lines);
1.460 foxr 6518:
1.447 foxr 6519:
1.274 albertel 6520: if ($scmode eq 'number' || $scmode eq 'letter') { $max=10; }
6521:
1.448 foxr 6522: my $response = $quest-1;
6523: my $lines = $bubble_lines_per_response{$response};
1.447 foxr 6524:
1.422 foxr 6525: my $total_lines = $lines*2;
1.157 albertel 6526: my @alphabet=('A'..'Z');
1.422 foxr 6527: $r->print("<table border='1'><tr><td rowspan='".$total_lines."'>$quest</td>");
6528:
6529: for (my $l = 0; $l < $lines; $l++) {
6530: if ($l != 0) {
6531: $r->print('<tr>');
6532: }
1.462 foxr 6533: my @selected = split(//,$lines[$l]);
1.422 foxr 6534: for (my $i=0;$i<$max;$i++) {
6535: $r->print("\n".'<td align="center">');
6536: if ($selected[0] eq $alphabet[$i]) {
6537: $r->print('X');
6538: shift(@selected) ;
6539: } else {
6540: $r->print(' ');
6541: }
6542: $r->print('</td>');
6543:
6544: }
6545:
6546: if ($l == 0) {
6547: my $lspan = $total_lines * 2; # 2 table rows per bubble line.
6548:
6549: $r->print('<td rowspan='.$lspan.'><label><input type="radio" name="scantron_correct_Q_'.
6550: $quest.'" value="none" /> No bubble </label></td>');
6551:
6552: }
6553:
6554: $r->print('</tr><tr>');
6555:
6556: # FIXME: This may have to be a bit more clever for
6557: # multiline questions (different values e.g..).
6558:
6559: for (my $i=0;$i<$max;$i++) {
6560: $r->print("\n".
6561: '<td><label><input type="radio" name="scantron_correct_Q_'.
6562: $quest.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
6563: }
6564: $r->print('</tr>');
6565:
6566:
1.157 albertel 6567: }
1.422 foxr 6568: $r->print('</table>');
1.157 albertel 6569: }
6570:
1.423 albertel 6571: =pod
6572:
6573: =item num_matches
6574:
1.424 albertel 6575: Counts the number of characters that are the same between the two arguments.
6576:
6577: Arguments:
6578: $orig - CODE from the scanline
6579: $code - CODE to match against
6580:
6581: Returns:
6582: $count - integer count of the number of same characters between the
6583: two arguments
6584:
1.423 albertel 6585: =cut
6586:
1.194 albertel 6587: sub num_matches {
6588: my ($orig,$code) = @_;
6589: my @code=split(//,$code);
6590: my @orig=split(//,$orig);
6591: my $same=0;
6592: for (my $i=0;$i<scalar(@code);$i++) {
6593: if ($code[$i] eq $orig[$i]) { $same++; }
6594: }
6595: return $same;
6596: }
6597:
1.423 albertel 6598: =pod
6599:
6600: =item scantron_get_closely_matching_CODEs
6601:
1.424 albertel 6602: Cycles through all CODEs and finds the set that has the greatest
6603: number of same characters as the provided CODE
6604:
6605: Arguments:
6606: $allcodes - hash ref returned by &get_codes()
6607: $CODE - CODE from the current scanline
6608:
6609: Returns:
6610: 2 element list
6611: - first elements is number of how closely matching the best fit is
6612: (5 means best set has 5 matching characters)
6613: - second element is an arrary ref containing the set of valid CODEs
6614: that best fit the passed in CODE
6615:
1.423 albertel 6616: =cut
6617:
1.194 albertel 6618: sub scantron_get_closely_matching_CODEs {
6619: my ($allcodes,$CODE)=@_;
6620: my @CODEs;
6621: foreach my $testcode (sort(keys(%{$allcodes}))) {
6622: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
6623: }
6624:
6625: return ($#CODEs,$CODEs[-1]);
6626: }
6627:
1.423 albertel 6628: =pod
6629:
6630: =item get_codes
6631:
1.424 albertel 6632: Builds a hash which has keys of all of the valid CODEs from the selected
6633: set of remembered CODEs.
6634:
6635: Arguments:
6636: $old_name - name of the set of remembered CODEs
6637: $cdom - domain of the course
6638: $cnum - internal course name
6639:
6640: Returns:
6641: %allcodes - keys are the valid CODEs, values are all 1
6642:
1.423 albertel 6643: =cut
6644:
1.194 albertel 6645: sub get_codes {
1.280 foxr 6646: my ($old_name, $cdom, $cnum) = @_;
6647: if (!$old_name) {
6648: $old_name=$env{'form.scantron_CODElist'};
6649: }
6650: if (!$cdom) {
6651: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
6652: }
6653: if (!$cnum) {
6654: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
6655: }
1.278 albertel 6656: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
6657: $cdom,$cnum);
6658: my %allcodes;
6659: if ($result{"type\0$old_name"} eq 'number') {
6660: %allcodes=map {($_,1)} split(',',$result{$old_name});
6661: } else {
6662: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
6663: }
1.194 albertel 6664: return %allcodes;
6665: }
6666:
1.423 albertel 6667: =pod
6668:
6669: =item scantron_validate_CODE
6670:
1.424 albertel 6671: Validates all scanlines in the selected file to not have any
6672: invalid or underspecified CODEs and that none of the codes are
6673: duplicated if this was requested.
6674:
1.423 albertel 6675: =cut
6676:
1.157 albertel 6677: sub scantron_validate_CODE {
6678: my ($r,$currentphase) = @_;
1.257 albertel 6679: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 6680: if ($scantron_config{'CODElocation'} &&
6681: $scantron_config{'CODEstart'} &&
6682: $scantron_config{'CODElength'}) {
1.257 albertel 6683: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 6684: &FIXME_blow_up()
6685: }
6686: } else {
6687: return (0,$currentphase+1);
6688: }
6689:
6690: my %usedCODEs;
6691:
1.194 albertel 6692: my %allcodes=&get_codes();
1.186 albertel 6693:
1.447 foxr 6694: &scantron_get_maxbubble(); # parse needs the lines per response array.
6695:
1.186 albertel 6696: my ($scanlines,$scan_data)=&scantron_getfile();
6697: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6698: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 6699: if ($line=~/^[\s\cz]*$/) { next; }
6700: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6701: $scan_data);
6702: my $CODE=$$scan_record{'scantron.CODE'};
6703: my $error=0;
1.224 albertel 6704: if (!&Apache::lonnet::validCODE($CODE)) {
6705: &scantron_get_correction($r,$i,$scan_record,
6706: \%scantron_config,
6707: $line,'incorrectCODE',\%allcodes);
6708: return(1,$currentphase);
6709: }
1.221 albertel 6710: if (%allcodes && !exists($allcodes{$CODE})
6711: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 6712: &scantron_get_correction($r,$i,$scan_record,
6713: \%scantron_config,
1.194 albertel 6714: $line,'incorrectCODE',\%allcodes);
6715: return(1,$currentphase);
1.186 albertel 6716: }
1.214 albertel 6717: if (exists($usedCODEs{$CODE})
1.257 albertel 6718: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 6719: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 6720: &scantron_get_correction($r,$i,$scan_record,
6721: \%scantron_config,
1.194 albertel 6722: $line,'duplicateCODE',$usedCODEs{$CODE});
6723: return(1,$currentphase);
1.186 albertel 6724: }
1.194 albertel 6725: push (@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 6726: }
1.157 albertel 6727: return (0,$currentphase+1);
6728: }
6729:
1.423 albertel 6730: =pod
6731:
6732: =item scantron_validate_doublebubble
6733:
1.424 albertel 6734: Validates all scanlines in the selected file to not have any
6735: bubble lines with multiple bubbles marked.
6736:
1.423 albertel 6737: =cut
6738:
1.157 albertel 6739: sub scantron_validate_doublebubble {
6740: my ($r,$currentphase) = @_;
6741: #get student info
6742: my $classlist=&Apache::loncoursedata::get_classlist();
6743: my %idmap=&username_to_idmap($classlist);
6744:
6745: #get scantron line setup
1.257 albertel 6746: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6747: my ($scanlines,$scan_data)=&scantron_getfile();
1.447 foxr 6748:
6749: &scantron_get_maxbubble(); # parse needs the bubble line array.
6750:
1.157 albertel 6751: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6752: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6753: if ($line=~/^[\s\cz]*$/) { next; }
6754: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6755: $scan_data);
6756: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
6757: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
6758: 'doublebubble',
6759: $$scan_record{'scantron.doubleerror'});
6760: return (1,$currentphase);
6761: }
6762: return (0,$currentphase+1);
6763: }
6764:
1.423 albertel 6765: =pod
6766:
6767: =item scantron_get_maxbubble
6768:
1.424 albertel 6769: Returns the maximum number of bubble lines that are expected to
6770: occur. Does this by walking the selected sequence rendering the
6771: resource and then checking &Apache::lonxml::get_problem_counter()
6772: for what the current value of the problem counter is.
6773:
1.447 foxr 6774: Caches the results to $env{'form.scantron_maxbubble'},
6775: $env{'form.scantron.bubble_lines.n'} and
6776: $env{'form.scantron.first_bubble_line.n'}
6777: which are the total number of bubble, lines, the number of bubble
6778: lines for reponse n and number of the first bubble line for response n.
1.424 albertel 6779:
1.423 albertel 6780: =cut
6781:
1.330 albertel 6782: sub scantron_get_maxbubble {
1.257 albertel 6783: if (defined($env{'form.scantron_maxbubble'}) &&
6784: $env{'form.scantron_maxbubble'}) {
1.447 foxr 6785: &restore_bubble_lines();
1.257 albertel 6786: return $env{'form.scantron_maxbubble'};
1.191 albertel 6787: }
1.330 albertel 6788:
1.447 foxr 6789: my (undef, undef, $sequence) =
1.257 albertel 6790: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 6791:
1.447 foxr 6792: my $navmap=Apache::lonnavmaps::navmap->new();
1.191 albertel 6793: my $map=$navmap->getResourceByUrl($sequence);
6794: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.330 albertel 6795:
6796: &Apache::lonxml::clear_problem_counter();
6797:
1.435 foxr 6798: my $uname = $env{'form.student'};
6799: my $udom = $env{'form.userdom'};
6800: my $cid = $env{'request.course.id'};
6801: my $total_lines = 0;
6802: %bubble_lines_per_response = ();
1.447 foxr 6803: %first_bubble_line = ();
1.435 foxr 6804:
1.447 foxr 6805:
6806: my $response_number = 0;
6807: my $bubble_line = 0;
1.191 albertel 6808: foreach my $resource (@resources) {
1.435 foxr 6809: my $symb = $resource->symb();
1.447 foxr 6810: &Apache::lonxml::clear_bubble_lines_for_part();
1.330 albertel 6811: my $result=&Apache::lonnet::ssi($resource->src(),
1.435 foxr 6812: ('symb' => $resource->symb()),
6813: ('grade_target' => 'analyze'),
6814: ('grade_courseid' => $cid),
6815: ('grade_domain' => $udom),
6816: ('grade_username' => $uname));
1.436 albertel 6817: my (undef, $an) =
1.435 foxr 6818: split(/_HASH_REF__/,$result, 2);
6819:
6820: my %analysis = &Apache::lonnet::str2hash($an);
6821:
6822:
6823:
6824: foreach my $part_id (@{$analysis{'parts'}}) {
1.447 foxr 6825:
1.460 foxr 6826:
6827: my $lines = $analysis{"$part_id.bubble_lines"};;
1.447 foxr 6828:
6829: # TODO - make this a persistent hash not an array.
6830:
6831:
6832: $first_bubble_line{$response_number} = $bubble_line;
6833: $bubble_lines_per_response{$response_number} = $lines;
6834: $response_number++;
6835:
6836: $bubble_line += $lines;
6837: $total_lines += $lines;
1.435 foxr 6838: }
6839:
1.191 albertel 6840: }
6841: &Apache::lonnet::delenv('scantron\.');
1.447 foxr 6842:
6843: &save_bubble_lines();
1.330 albertel 6844: $env{'form.scantron_maxbubble'} =
1.435 foxr 6845: $total_lines;
1.257 albertel 6846: return $env{'form.scantron_maxbubble'};
1.191 albertel 6847: }
6848:
1.423 albertel 6849: =pod
6850:
6851: =item scantron_validate_missingbubbles
6852:
1.424 albertel 6853: Validates all scanlines in the selected file to not have any
1.447 foxr 6854: answers that don't have bubbles that have not been verified
6855: to be bubble free.
1.424 albertel 6856:
1.423 albertel 6857: =cut
6858:
1.157 albertel 6859: sub scantron_validate_missingbubbles {
6860: my ($r,$currentphase) = @_;
6861: #get student info
6862: my $classlist=&Apache::loncoursedata::get_classlist();
6863: my %idmap=&username_to_idmap($classlist);
6864:
6865: #get scantron line setup
1.257 albertel 6866: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6867: my ($scanlines,$scan_data)=&scantron_getfile();
1.191 albertel 6868: my $max_bubble=&scantron_get_maxbubble();
1.157 albertel 6869: if (!$max_bubble) { $max_bubble=2**31; }
6870: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6871: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6872: if ($line=~/^[\s\cz]*$/) { next; }
6873: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6874: $scan_data);
6875: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
6876: my @to_correct;
1.470 foxr 6877:
6878: # Probably here's where the error is...
6879:
1.157 albertel 6880: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
6881: if ($missing > $max_bubble) { next; }
6882: push(@to_correct,$missing);
6883: }
6884: if (@to_correct) {
6885: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6886: $line,'missingbubble',\@to_correct);
6887: return (1,$currentphase);
6888: }
6889:
6890: }
6891: return (0,$currentphase+1);
6892: }
6893:
1.423 albertel 6894: =pod
6895:
6896: =item scantron_process_students
6897:
6898: Routine that does the actual grading of the bubble sheet information.
6899:
6900: The parsed scanline hash is added to %env
6901:
6902: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
6903: foreach resource , with the form data of
6904:
6905: 'submitted' =>'scantron'
6906: 'grade_target' =>'grade',
6907: 'grade_username'=> username of student
6908: 'grade_domain' => domain of student
6909: 'grade_courseid'=> of course
6910: 'grade_symb' => symb of resource to grade
6911:
6912: This triggers a grading pass. The problem grading code takes care
6913: of converting the bubbled letter information (now in %env) into a
6914: valid submission.
6915:
6916: =cut
6917:
1.82 albertel 6918: sub scantron_process_students {
1.75 albertel 6919: my ($r) = @_;
1.257 albertel 6920: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.324 albertel 6921: my ($symb)=&get_symb($r);
1.81 albertel 6922: if (!$symb) {return '';}
1.324 albertel 6923: my $default_form_data=&defaultFormData($symb);
1.82 albertel 6924:
1.257 albertel 6925: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6926: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 6927: my $classlist=&Apache::loncoursedata::get_classlist();
6928: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 6929: my $navmap=Apache::lonnavmaps::navmap->new();
1.83 albertel 6930: my $map=$navmap->getResourceByUrl($sequence);
6931: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.140 albertel 6932: # $r->print("geto ".scalar(@resources)."<br />");
1.82 albertel 6933: my $result= <<SCANTRONFORM;
1.81 albertel 6934: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
6935: <input type="hidden" name="command" value="scantron_configphase" />
6936: $default_form_data
6937: SCANTRONFORM
1.82 albertel 6938: $r->print($result);
6939:
6940: my @delayqueue;
1.140 albertel 6941: my %completedstudents;
6942:
1.200 albertel 6943: my $count=&get_todo_count($scanlines,$scan_data);
1.157 albertel 6944: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
1.200 albertel 6945: 'Scantron Progress',$count,
1.195 albertel 6946: 'inline',undef,'scantronupload');
1.140 albertel 6947: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
6948: 'Processing first student');
6949: my $start=&Time::HiRes::time();
1.158 albertel 6950: my $i=-1;
1.200 albertel 6951: my ($uname,$udom,$started);
1.447 foxr 6952:
6953: &scantron_get_maxbubble(); # Need the bubble lines array to parse.
6954:
1.157 albertel 6955: while ($i<$scanlines->{'count'}) {
6956: ($uname,$udom)=('','');
6957: $i++;
1.200 albertel 6958: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6959: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 6960: if ($started) {
6961: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
6962: 'last student');
6963: }
6964: $started=1;
1.157 albertel 6965: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6966: $scan_data);
6967: unless ($uname=&scantron_find_student($scan_record,$scan_data,
6968: \%idmap,$i)) {
6969: &scantron_add_delay(\@delayqueue,$line,
6970: 'Unable to find a student that matches',1);
6971: next;
6972: }
6973: if (exists $completedstudents{$uname}) {
6974: &scantron_add_delay(\@delayqueue,$line,
6975: 'Student '.$uname.' has multiple sheets',2);
6976: next;
6977: }
6978: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 6979:
6980: &Apache::lonxml::clear_problem_counter();
1.157 albertel 6981: &Apache::lonnet::appenv(%$scan_record);
1.376 albertel 6982:
6983: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
6984: &scantron_putfile($scanlines,$scan_data);
6985: }
1.161 albertel 6986:
6987: my $i=0;
1.83 albertel 6988: foreach my $resource (@resources) {
1.85 albertel 6989: $i++;
1.193 albertel 6990: my %form=('submitted' =>'scantron',
6991: 'grade_target' =>'grade',
6992: 'grade_username'=>$uname,
6993: 'grade_domain' =>$udom,
1.257 albertel 6994: 'grade_courseid'=>$env{'request.course.id'},
1.193 albertel 6995: 'grade_symb' =>$resource->symb());
1.383 albertel 6996: if (exists($scan_record->{'scantron.CODE'})
6997: &&
6998: &Apache::lonnet::validCODE($scan_record->{'scantron.CODE'})) {
1.193 albertel 6999: $form{'CODE'}=$scan_record->{'scantron.CODE'};
1.224 albertel 7000: } else {
7001: $form{'CODE'}='';
1.193 albertel 7002: }
7003: my $result=&Apache::lonnet::ssi($resource->src(),%form);
1.227 albertel 7004: if ($result ne '') {
7005: }
1.213 albertel 7006: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.83 albertel 7007: }
1.140 albertel 7008: $completedstudents{$uname}={'line'=>$line};
1.213 albertel 7009: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 7010: } continue {
1.330 albertel 7011: &Apache::lonxml::clear_problem_counter();
1.83 albertel 7012: &Apache::lonnet::delenv('scantron\.');
1.82 albertel 7013: }
1.140 albertel 7014: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.172 albertel 7015: # my $lasttime = &Time::HiRes::time()-$start;
7016: # $r->print("<p>took $lasttime</p>");
1.140 albertel 7017:
1.200 albertel 7018: $r->print("</form>");
1.324 albertel 7019: $r->print(&show_grading_menu_form($symb));
1.157 albertel 7020: return '';
1.75 albertel 7021: }
1.157 albertel 7022:
1.423 albertel 7023: =pod
7024:
7025: =item scantron_upload_scantron_data
7026:
7027: Creates the screen for adding a new bubble sheet data file to a course.
7028:
7029: =cut
7030:
1.157 albertel 7031: sub scantron_upload_scantron_data {
7032: my ($r)=@_;
1.257 albertel 7033: $r->print(&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}));
1.157 albertel 7034: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 7035: 'domainid',
7036: 'coursename');
1.257 albertel 7037: my $domsel=&Apache::loncommon::select_dom_form($env{'request.role.domain'},
1.157 albertel 7038: 'domainid');
1.324 albertel 7039: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.157 albertel 7040: $r->print(<<UPLOAD);
7041: <script type="text/javascript" language="javascript">
7042: function checkUpload(formname) {
7043: if (formname.upfile.value == "") {
7044: alert("Please use the browse button to select a file from your local directory.");
7045: return false;
7046: }
7047: formname.submit();
7048: }
7049: </script>
7050:
7051: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
1.162 albertel 7052: $default_form_data
1.181 albertel 7053: <table>
7054: <tr><td>$select_link </td></tr>
7055: <tr><td>Course ID: </td><td><input name='courseid' type='text' /> </td></tr>
7056: <tr><td>Course Name: </td><td><input name='coursename' type='text' /></td></tr>
7057: <tr><td>Domain: </td><td>$domsel </td></tr>
7058: <tr><td>File to upload:</td><td><input type="file" name="upfile" size="50" /></td></tr>
7059: </table>
1.157 albertel 7060: <input name='command' value='scantronupload_save' type='hidden' />
7061: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
7062: </form>
7063: UPLOAD
7064: return '';
7065: }
7066:
1.423 albertel 7067: =pod
7068:
7069: =item scantron_upload_scantron_data_save
7070:
7071: Adds a provided bubble information data file to the course if user
7072: has the correct privileges to do so.
7073:
7074: =cut
7075:
1.157 albertel 7076: sub scantron_upload_scantron_data_save {
7077: my($r)=@_;
1.324 albertel 7078: my ($symb)=&get_symb($r,1);
1.182 albertel 7079: my $doanotherupload=
7080: '<br /><form action="/adm/grades" method="post">'."\n".
7081: '<input type="hidden" name="command" value="scantronupload" />'."\n".
7082: '<input type="submit" name="submit" value="Do Another Upload" />'."\n".
7083: '</form>'."\n";
1.257 albertel 7084: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 7085: !&Apache::lonnet::allowed('usc',
1.257 albertel 7086: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.162 albertel 7087: $r->print("You are not allowed to upload Scantron data to the requested course.<br />");
1.182 albertel 7088: if ($symb) {
1.324 albertel 7089: $r->print(&show_grading_menu_form($symb));
1.182 albertel 7090: } else {
7091: $r->print($doanotherupload);
7092: }
1.162 albertel 7093: return '';
7094: }
1.257 albertel 7095: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.211 ng 7096: $r->print("Doing upload to ".$coursedata{'description'}." <br />");
1.257 albertel 7097: my $fname=$env{'form.upfile.filename'};
1.157 albertel 7098: #FIXME
7099: #copied from lonnet::userfileupload()
7100: #make that function able to target a specified course
7101: # Replace Windows backslashes by forward slashes
7102: $fname=~s/\\/\//g;
7103: # Get rid of everything but the actual filename
7104: $fname=~s/^.*\/([^\/]+)$/$1/;
7105: # Replace spaces by underscores
7106: $fname=~s/\s+/\_/g;
7107: # Replace all other weird characters by nothing
7108: $fname=~s/[^\w\.\-]//g;
7109: # See if there is anything left
7110: unless ($fname) { return 'error: no uploaded file'; }
1.209 ng 7111: my $uploadedfile=$fname;
1.157 albertel 7112: $fname='scantron_orig_'.$fname;
1.257 albertel 7113: if (length($env{'form.upfile'}) < 2) {
1.398 albertel 7114: $r->print("<span class=\"LC_error\">Error:</span> The file you attempted to upload, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>, contained no information. Please check that you entered the correct filename.");
1.183 albertel 7115: } else {
1.275 albertel 7116: my $result=&Apache::lonnet::finishuserfileupload($env{'form.courseid'},$env{'form.domainid'},'upfile',$fname);
1.210 albertel 7117: if ($result =~ m|^/uploaded/|) {
1.398 albertel 7118: $r->print("<span class=\"LC_success\">Success:</span> Successfully uploaded ".(length($env{'form.upfile'})-1)." bytes of data into location <tt>".$result."</tt>");
1.210 albertel 7119: } else {
1.398 albertel 7120: $r->print("<span class=\"LC_error\">Error:</span> An error (".$result.") occurred when attempting to upload the file, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>");
1.183 albertel 7121: }
7122: }
1.174 albertel 7123: if ($symb) {
1.209 ng 7124: $r->print(&scantron_selectphase($r,$uploadedfile));
1.174 albertel 7125: } else {
1.182 albertel 7126: $r->print($doanotherupload);
1.174 albertel 7127: }
1.157 albertel 7128: return '';
7129: }
7130:
1.423 albertel 7131: =pod
7132:
7133: =item valid_file
7134:
1.424 albertel 7135: Validates that the requested bubble data file exists in the course.
1.423 albertel 7136:
7137: =cut
7138:
1.202 albertel 7139: sub valid_file {
7140: my ($requested_file)=@_;
7141: foreach my $filename (sort(&scantron_filenames())) {
7142: if ($requested_file eq $filename) { return 1; }
7143: }
7144: return 0;
7145: }
7146:
1.423 albertel 7147: =pod
7148:
7149: =item scantron_download_scantron_data
7150:
7151: Shows a list of the three internal files (original, corrected,
7152: skipped) for a specific bubble sheet data file that exists in the
7153: course.
7154:
7155: =cut
7156:
1.202 albertel 7157: sub scantron_download_scantron_data {
7158: my ($r)=@_;
1.324 albertel 7159: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 7160: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7161: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7162: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 7163: if (! &valid_file($file)) {
7164: $r->print(<<ERROR);
7165: <p>
7166: The requested file name was invalid.
7167: </p>
7168: ERROR
1.324 albertel 7169: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 7170: return;
7171: }
7172: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
7173: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
7174: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
7175: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
7176: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
7177: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
7178: $r->print(<<DOWNLOAD);
7179: <p>
7180: <a href="$orig">Original</a> file as uploaded by the scantron office.
7181: </p>
7182: <p>
7183: <a href="$corrected">Corrections</a>, a file of corrected records that were used in grading.
7184: </p>
7185: <p>
7186: <a href="$skipped">Skipped</a>, a file of records that were skipped.
7187: </p>
7188: DOWNLOAD
1.324 albertel 7189: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 7190: return '';
7191: }
1.157 albertel 7192:
1.423 albertel 7193: =pod
7194:
7195: =back
7196:
7197: =cut
7198:
1.75 albertel 7199: #-------- end of section for handling grading scantron forms -------
7200: #
7201: #-------------------------------------------------------------------
7202:
1.72 ng 7203: #-------------------------- Menu interface -------------------------
7204: #
7205: #--- Show a Grading Menu button - Calls the next routine ---
7206: sub show_grading_menu_form {
1.324 albertel 7207: my ($symb)=@_;
1.125 ng 7208: my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.418 albertel 7209: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 7210: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.72 ng 7211: '<input type="hidden" name="command" value="gradingmenu" />'."\n".
7212: '<input type="submit" name="submit" value="Grading Menu" />'."\n".
7213: '</form>'."\n";
7214: return $result;
7215: }
7216:
1.77 ng 7217: # -- Retrieve choices for grading form
7218: sub savedState {
7219: my %savedState = ();
1.257 albertel 7220: if ($env{'form.saveState'}) {
7221: foreach (split(/:/,$env{'form.saveState'})) {
1.77 ng 7222: my ($key,$value) = split(/=/,$_,2);
7223: $savedState{$key} = $value;
7224: }
7225: }
7226: return \%savedState;
7227: }
1.76 ng 7228:
1.443 banghart 7229: sub grading_menu {
7230: my ($request) = @_;
7231: my ($symb)=&get_symb($request);
7232: if (!$symb) {return '';}
7233: my $probTitle = &Apache::lonnet::gettitle($symb);
7234: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
7235:
1.444 banghart 7236: $request->print($table);
1.443 banghart 7237: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
7238: 'handgrade'=>$hdgrade,
7239: 'probTitle'=>$probTitle,
7240: 'command'=>'submit_options',
7241: 'saveState'=>"",
7242: 'gradingMenu'=>1,
7243: 'showgrading'=>"yes");
7244: my $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7245: my @menu = ({ url => $url,
7246: name => &mt('Manual Grading/View Submissions'),
7247: short_description =>
7248: &mt('Start the process of hand grading submissions.'),
7249: });
7250: $fields{'command'} = 'csvform';
7251: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7252: push (@menu, { url => $url,
7253: name => &mt('Upload Scores'),
7254: short_description =>
7255: &mt('Specify a file containing the class scores for current resource.')});
7256: $fields{'command'} = 'processclicker';
7257: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7258: push (@menu, { url => $url,
7259: name => &mt('Process Clicker'),
7260: short_description =>
7261: &mt('Specify a file containing the clicker information for this resource.')});
7262: $fields{'command'} = 'scantron_selectphase';
7263: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7264: push (@menu, { url => $url,
1.454 banghart 7265: name => &mt('Grade/Manage Scantron Forms'),
7266: short_description =>
7267: &mt('')});
1.443 banghart 7268: $fields{'command'} = 'verify';
7269: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.445 banghart 7270: push (@menu, { url => "",
1.443 banghart 7271: name => &mt('Verify Receipt'),
7272: short_description =>
7273: &mt('')});
7274: #
7275: # Create the menu
7276: my $Str;
1.444 banghart 7277: # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
1.445 banghart 7278: $Str .= '<form method="post" action="" name="gradingMenu">';
7279: $Str .= '<input type="hidden" name="command" value="" />'.
7280: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
7281: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
7282: '<input type="hidden" name="probTitle" value="'.$probTitle.'" ue="" />'."\n".
7283: '<input type="hidden" name="saveState" value="" />'."\n".
7284: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
7285: '<input type="hidden" name="showgrading" value="yes" />'."\n";
7286:
1.443 banghart 7287: foreach my $menudata (@menu) {
1.445 banghart 7288: if ($menudata->{'name'} ne &mt('Verify Receipt')) {
7289: $Str .=' <h3><a '.
7290: $menudata->{'jscript'}.
7291: ' href="'.
7292: $menudata->{'url'}.'" >'.
7293: $menudata->{'name'}."</a></h3>\n";
7294: } else {
1.458 banghart 7295: $Str .=' <h3><input type="button" value="Verify Receipt" '.
1.445 banghart 7296: $menudata->{'jscript'}.
1.458 banghart 7297: ' onClick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
7298: ' /></h3>';
1.446 banghart 7299: $Str .= (' 'x8).
7300: ' receipt: '.&Apache::lonnet::recprefix($env{'request.course.id'}).
1.445 banghart 7301: '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />';
1.444 banghart 7302: }
1.443 banghart 7303: $Str .= ' '.(' 'x8).$menudata->{'short_description'}.
7304: "\n";
7305: }
7306: $Str .="</dl>\n";
1.444 banghart 7307: $Str .="</form>\n";
1.443 banghart 7308: $request->print(<<GRADINGMENUJS);
7309: <script type="text/javascript" language="javascript">
7310: function checkChoice(formname,val,cmdx) {
7311: if (val <= 2) {
7312: var cmd = radioSelection(formname.radioChoice);
7313: var cmdsave = cmd;
7314: } else {
7315: cmd = cmdx;
7316: cmdsave = 'submission';
7317: }
7318: formname.command.value = cmd;
7319: if (val < 5) formname.submit();
7320: if (val == 5) {
1.458 banghart 7321: if (!checkReceiptNo(formname,'notOK')) {
7322: return false;
7323: } else {
7324: formname.submit();
7325: }
1.445 banghart 7326: }
7327: }
1.443 banghart 7328:
7329: function checkReceiptNo(formname,nospace) {
7330: var receiptNo = formname.receipt.value;
7331: var checkOpt = false;
7332: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
7333: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
7334: if (checkOpt) {
7335: alert("Please enter a receipt number given by a student in the receipt box.");
7336: formname.receipt.value = "";
7337: formname.receipt.focus();
7338: return false;
7339: }
7340: return true;
7341: }
7342: </script>
7343: GRADINGMENUJS
7344: &commonJSfunctions($request);
7345: return $Str;
7346: }
7347:
7348:
7349: #--- Displays the submissions first page -------
7350: sub submit_options {
1.72 ng 7351: my ($request) = @_;
1.324 albertel 7352: my ($symb)=&get_symb($request);
1.72 ng 7353: if (!$symb) {return '';}
1.76 ng 7354: my $probTitle = &Apache::lonnet::gettitle($symb);
1.72 ng 7355:
7356: $request->print(<<GRADINGMENUJS);
7357: <script type="text/javascript" language="javascript">
1.116 ng 7358: function checkChoice(formname,val,cmdx) {
7359: if (val <= 2) {
7360: var cmd = radioSelection(formname.radioChoice);
1.118 ng 7361: var cmdsave = cmd;
1.116 ng 7362: } else {
7363: cmd = cmdx;
1.118 ng 7364: cmdsave = 'submission';
1.116 ng 7365: }
7366: formname.command.value = cmd;
1.118 ng 7367: formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145 albertel 7368: ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116 ng 7369: if (val < 5) formname.submit();
7370: if (val == 5) {
1.72 ng 7371: if (!checkReceiptNo(formname,'notOK')) { return false;}
7372: formname.submit();
7373: }
1.238 albertel 7374: if (val < 7) formname.submit();
1.72 ng 7375: }
7376:
7377: function checkReceiptNo(formname,nospace) {
7378: var receiptNo = formname.receipt.value;
7379: var checkOpt = false;
7380: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
7381: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
7382: if (checkOpt) {
7383: alert("Please enter a receipt number given by a student in the receipt box.");
7384: formname.receipt.value = "";
7385: formname.receipt.focus();
7386: return false;
7387: }
7388: return true;
7389: }
7390: </script>
7391: GRADINGMENUJS
1.118 ng 7392: &commonJSfunctions($request);
1.398 albertel 7393: my $result='<h3> <span class="LC_info">Manual Grading/View Submission</span></h3>';
1.324 albertel 7394: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
1.118 ng 7395: $result.=$table;
1.76 ng 7396: my (undef,$sections) = &getclasslist('all','0');
1.77 ng 7397: my $savedState = &savedState();
1.118 ng 7398: my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77 ng 7399: my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118 ng 7400: my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77 ng 7401: my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72 ng 7402:
7403: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.418 albertel 7404: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.72 ng 7405: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
7406: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.116 ng 7407: '<input type="hidden" name="command" value="" />'."\n".
1.77 ng 7408: '<input type="hidden" name="saveState" value="" />'."\n".
1.124 ng 7409: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72 ng 7410: '<input type="hidden" name="showgrading" value="yes" />'."\n";
7411:
1.446 banghart 7412: $result.='<table border="0"><tr><td bgcolor=#777777>'."\n".
7413: '<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n".
1.72 ng 7414: ' <b>Select a Grading/Viewing Option</b></td></tr>'."\n".
1.116 ng 7415: '<tr bgcolor="#ffffe6" valign="top"><td>'."\n";
7416:
1.326 albertel 7417: $result.='<table width="100%" border="0">';
1.442 banghart 7418: $result.='<tr bgcolor="#ffffe6" valign="top">'."\n";
7419: $result.='<td><b>'.&mt('Sections').'</b></td>';
1.446 banghart 7420: $result.='<td><b>'.&mt('Groups').'</b></td>';
1.442 banghart 7421: $result.='<td><b>'.&mt('Access Status').'</td>'."\n";
1.455 banghart 7422: $result.='<td><b>'.&mt('Submission Status').'</td>'."\n";
1.442 banghart 7423: $result.='</tr>';
1.116 ng 7424: $result.='<tr bgcolor="#ffffe6" valign="top"><td>'."\n".
1.442 banghart 7425: ' <select name="section" multiple="multiple" size="3">'."\n";
1.116 ng 7426: if (ref($sections)) {
1.155 albertel 7427: foreach (sort (@$sections)) {
7428: $result.='<option value="'.$_.'" '.
1.401 albertel 7429: ($saveSec eq $_ ? 'selected="selected"':'').'>'.$_.'</option>'."\n";
1.155 albertel 7430: }
1.116 ng 7431: }
1.401 albertel 7432: $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> ';
1.446 banghart 7433: $result.= '</td><td>'."\n";
7434: $result.= &Apache::lonstatistics::GroupSelect('group','multiple',3);
1.442 banghart 7435: $result.='</td><td>'."\n";
7436: $result.=&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,3,undef,'mult');
1.72 ng 7437:
1.455 banghart 7438: $result.='</td>';
7439: $result.='<td><select name="submitonly" size="3">'.
1.145 albertel 7440: '<option value="yes" '.
1.401 albertel 7441: ($saveSub eq 'yes' ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>'.
1.301 albertel 7442: '<option value="queued" '.
1.401 albertel 7443: ($saveSub eq 'queued' ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>'.
1.145 albertel 7444: '<option value="graded" '.
1.401 albertel 7445: ($saveSub eq 'graded' ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>'.
1.156 albertel 7446: '<option value="incorrect" '.
1.401 albertel 7447: ($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>'.
1.145 albertel 7448: '<option value="all" '.
1.455 banghart 7449: ($saveSub eq 'all' ? 'selected="selected"' : '').'>'.&mt('with any status').'</option></select></td></tr>';
1.72 ng 7450:
1.455 banghart 7451: $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="3"><label>'.
7452: '<input type="radio" name="radioChoice" value="submission" '.
7453: ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.'<b>'.&mt('Current Resource').':</b> '.&mt('For one or more students').
7454: '</label> </td></tr>'."\n";
7455:
7456: $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="3">'.
1.288 albertel 7457: '<label><input type="radio" name="radioChoice" value="viewgrades" '.
1.401 albertel 7458: ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
1.288 albertel 7459: '<b>Current Resource:</b> For all students in selected section or course</label></td></tr>'."\n";
1.72 ng 7460:
1.455 banghart 7461: $result.='<tr bgcolor="#ffffe6"><td colspan="3"><br />'.
7462: '<input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="Next->" />'.
7463: '</td></tr>'."\n";
7464:
7465:
7466: $result.='<tr bgcolor="#ffffe6" valign="top"><td colspan="3">'.
7467: '<br /><label><input type="radio" name="radioChoice" value="pickStudentPage" '.
1.401 albertel 7468: ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
1.455 banghart 7469: 'The <b>complete</b> set/page/sequence/folder: For one student</label></td></tr>'."\n";
1.46 ng 7470:
1.455 banghart 7471: $result.='<tr bgcolor="#ffffe6"><td colspan="3"><br />'.
1.126 ng 7472: '<input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="Next->" />'.
1.116 ng 7473: '</td></tr></table>'."\n";
7474:
1.446 banghart 7475: $result.='</td>'; #<td valign="top">';
1.116 ng 7476:
1.446 banghart 7477: # $result.='<table width="100%" border="0">';
7478: # $result.='<tr bgcolor="#ffffe6"><td>'.
7479: # '<input type="button" onClick="javascript:checkChoice(this.form,\'3\',\'csvform\');" value="'.&mt('Upload').'" />'.
7480: # ' '.&mt('scores from file').' </td></tr>'."\n";
7481: #
7482: # $result.='<tr bgcolor="#ffffe6"><td>'.
7483: # '<input type="button" onClick="javascript:checkChoice(this.form,\'6\',\'processclicker\');" value="'.&mt('Process').'" />'.
7484: # ' '.&mt('clicker file').' </td></tr>'."\n";
7485: #
7486: # $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
7487: # '<input type="button" onClick="javascript:checkChoice(this.form,\'4\',\'scantron_selectphase\');'.
7488: # '" value="'.&mt('Grade').'" /> scantron forms</td></tr>'."\n";
7489: #
7490: # if ((&Apache::lonnet::allowed('mgr',$env{'request.course.id'})) && ($symb)) {
7491: # $result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
7492: # '<input type="button" onClick="javascript:checkChoice(this.form,\'5\',\'verify\');" value="'.&mt('Verify').'" />'.
7493: # ' '.&mt('receipt').': '.
7494: # &Apache::lonnet::recprefix($env{'request.course.id'}).
7495: # '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />'.
7496: # '</td></tr>'."\n";
7497: # }
7498: # $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
7499: # '<input type="button" onClick="javascript:this.form.action=\'/adm/helper/resettimes.helper\';this.form.submit();'.
7500: # '" value="'.&mt('Manage').'" /> access times.</td></tr>'."\n";
7501: # $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
7502: # '<input type="button" onClick="javascript:this.form.command.value=\'codelist\';this.form.action=\'/adm/pickcode\';this.form.submit();'.
7503: # '" value="'.&mt('View').'" /> saved CODEs.</td></tr>'."\n";
7504: #
7505: # $result.='</table>'."\n".'</td>';
7506: $result.= '</tr></table>'."\n".
1.401 albertel 7507: '</td></tr></table></form>'."\n";
1.44 ng 7508: return $result;
1.2 albertel 7509: }
7510:
1.285 albertel 7511: sub reset_perm {
7512: undef(%perm);
7513: }
7514:
7515: sub init_perm {
7516: &reset_perm();
1.300 albertel 7517: foreach my $test_perm ('vgr','mgr','opa') {
7518:
7519: my $scope = $env{'request.course.id'};
7520: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
7521:
7522: $scope .= '/'.$env{'request.course.sec'};
7523: if ( $perm{$test_perm}=
7524: &Apache::lonnet::allowed($test_perm,$scope)) {
7525: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
7526: } else {
7527: delete($perm{$test_perm});
7528: }
1.285 albertel 7529: }
7530: }
7531: }
7532:
1.400 www 7533: sub gather_clicker_ids {
1.408 albertel 7534: my %clicker_ids;
1.400 www 7535:
7536: my $classlist = &Apache::loncoursedata::get_classlist();
7537:
7538: # Set up a couple variables.
1.407 albertel 7539: my $username_idx = &Apache::loncoursedata::CL_SNAME();
7540: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 7541: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 7542:
1.407 albertel 7543: foreach my $student (keys(%$classlist)) {
1.438 www 7544: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 7545: my $username = $classlist->{$student}->[$username_idx];
7546: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 7547: my $clickers =
1.408 albertel 7548: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 7549: foreach my $id (split(/\,/,$clickers)) {
1.414 www 7550: $id=~s/^[\#0]+//;
1.421 www 7551: $id=~s/[\-\:]//g;
1.407 albertel 7552: if (exists($clicker_ids{$id})) {
1.408 albertel 7553: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 7554: } else {
1.408 albertel 7555: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 7556: }
7557: }
7558: }
1.407 albertel 7559: return %clicker_ids;
1.400 www 7560: }
7561:
1.402 www 7562: sub gather_adv_clicker_ids {
1.408 albertel 7563: my %clicker_ids;
1.402 www 7564: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
7565: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7566: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 7567: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 7568: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
7569: my ($puname,$pudom)=split(/\:/,$person);
7570: my $clickers =
1.408 albertel 7571: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 7572: foreach my $id (split(/\,/,$clickers)) {
1.414 www 7573: $id=~s/^[\#0]+//;
1.421 www 7574: $id=~s/[\-\:]//g;
1.408 albertel 7575: if (exists($clicker_ids{$id})) {
7576: $clicker_ids{$id}.=','.$puname.':'.$pudom;
7577: } else {
7578: $clicker_ids{$id}=$puname.':'.$pudom;
7579: }
1.405 www 7580: }
1.402 www 7581: }
7582: }
1.407 albertel 7583: return %clicker_ids;
1.402 www 7584: }
7585:
1.413 www 7586: sub clicker_grading_parameters {
7587: return ('gradingmechanism' => 'scalar',
7588: 'upfiletype' => 'scalar',
7589: 'specificid' => 'scalar',
7590: 'pcorrect' => 'scalar',
7591: 'pincorrect' => 'scalar');
7592: }
7593:
1.400 www 7594: sub process_clicker {
7595: my ($r)=@_;
7596: my ($symb)=&get_symb($r);
7597: if (!$symb) {return '';}
7598: my $result=&checkforfile_js();
7599: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
7600: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
7601: $result.=$table;
7602: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
7603: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
7604: $result.=' <b>'.&mt('Specify a file containing the clicker information for this resource').
7605: '.</b></td></tr>'."\n";
7606: $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.413 www 7607: # Attempt to restore parameters from last session, set defaults if not present
7608: my %Saveable_Parameters=&clicker_grading_parameters();
7609: &Apache::loncommon::restore_course_settings('grades_clicker',
7610: \%Saveable_Parameters);
7611: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
7612: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
7613: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
7614: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
7615:
7616: my %checked;
7617: foreach my $gradingmechanism ('attendance','personnel','specific') {
7618: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
7619: $checked{$gradingmechanism}="checked='checked'";
7620: }
7621: }
7622:
1.400 www 7623: my $upload=&mt("Upload File");
7624: my $type=&mt("Type");
1.402 www 7625: my $attendance=&mt("Award points just for participation");
7626: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 7627: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.402 www 7628: my $pcorrect=&mt("Percentage points for correct solution");
7629: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 7630: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.419 www 7631: ('iclicker' => 'i>clicker',
7632: 'interwrite' => 'interwrite PRS'));
1.418 albertel 7633: $symb = &Apache::lonenc::check_encrypt($symb);
1.400 www 7634: $result.=<<ENDUPFORM;
1.402 www 7635: <script type="text/javascript">
7636: function sanitycheck() {
7637: // Accept only integer percentages
7638: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
7639: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
7640: // Find out grading choice
7641: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
7642: if (document.forms.gradesupload.gradingmechanism[i].checked) {
7643: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
7644: }
7645: }
7646: // By default, new choice equals user selection
7647: newgradingchoice=gradingchoice;
7648: // Not good to give more points for false answers than correct ones
7649: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
7650: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
7651: }
7652: // If new choice is attendance only, and old choice was correctness-based, restore defaults
7653: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
7654: document.forms.gradesupload.pcorrect.value=100;
7655: document.forms.gradesupload.pincorrect.value=100;
7656: }
7657: // If the values are different, cannot be attendance only
7658: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
7659: (gradingchoice=='attendance')) {
7660: newgradingchoice='personnel';
7661: }
7662: // Change grading choice to new one
7663: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
7664: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
7665: document.forms.gradesupload.gradingmechanism[i].checked=true;
7666: } else {
7667: document.forms.gradesupload.gradingmechanism[i].checked=false;
7668: }
7669: }
7670: // Remember the old state
7671: document.forms.gradesupload.waschecked.value=newgradingchoice;
7672: }
7673: </script>
1.400 www 7674: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
7675: <input type="hidden" name="symb" value="$symb" />
7676: <input type="hidden" name="command" value="processclickerfile" />
7677: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
7678: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
7679: <input type="file" name="upfile" size="50" />
7680: <br /><label>$type: $selectform</label>
1.451 albertel 7681: <br /><label><input type="radio" name="gradingmechanism" value="attendance" $checked{'attendance'} onClick="sanitycheck()" />$attendance </label>
7682: <br /><label><input type="radio" name="gradingmechanism" value="personnel" $checked{'personnel'} onClick="sanitycheck()" />$personnel</label>
7683: <br /><label><input type="radio" name="gradingmechanism" value="specific" $checked{'specific'} onClick="sanitycheck()" />$specific </label>
1.414 www 7684: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.413 www 7685: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
7686: <br /><label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onChange="sanitycheck()" /></label>
7687: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onChange="sanitycheck()" /></label>
1.400 www 7688: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
7689: </form>
7690: ENDUPFORM
7691: $result.='</td></tr></table>'."\n".
7692: '</td></tr></table><br /><br />'."\n";
7693: $result.=&show_grading_menu_form($symb);
7694: return $result;
7695: }
7696:
7697: sub process_clicker_file {
7698: my ($r)=@_;
7699: my ($symb)=&get_symb($r);
7700: if (!$symb) {return '';}
1.413 www 7701:
7702: my %Saveable_Parameters=&clicker_grading_parameters();
7703: &Apache::loncommon::store_course_settings('grades_clicker',
7704: \%Saveable_Parameters);
7705:
1.400 www 7706: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.404 www 7707: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 7708: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
7709: return $result.&show_grading_menu_form($symb);
1.404 www 7710: }
1.407 albertel 7711: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 7712: my %correct_ids;
1.404 www 7713: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 7714: %correct_ids=&gather_adv_clicker_ids();
1.404 www 7715: }
7716: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 7717: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
7718: $correct_id=~tr/a-z/A-Z/;
7719: $correct_id=~s/\s//gs;
7720: $correct_id=~s/^[\#0]+//;
1.421 www 7721: $correct_id=~s/[\-\:]//g;
1.414 www 7722: if ($correct_id) {
7723: $correct_ids{$correct_id}='specified';
7724: }
7725: }
1.400 www 7726: }
1.404 www 7727: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 7728: $result.=&mt('Score based on attendance only');
1.404 www 7729: } else {
1.408 albertel 7730: my $number=0;
1.411 www 7731: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 7732: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 7733: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 7734: if ($correct_ids{$id} eq 'specified') {
7735: $result.=&mt('specified');
7736: } else {
7737: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
7738: $result.=&Apache::loncommon::plainname($uname,$udom);
7739: }
7740: $number++;
7741: }
1.411 www 7742: $result.="</p>\n";
1.408 albertel 7743: if ($number==0) {
7744: $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
7745: return $result.&show_grading_menu_form($symb);
7746: }
1.404 www 7747: }
1.405 www 7748: if (length($env{'form.upfile'}) < 2) {
1.407 albertel 7749: $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
7750: '<span class="LC_error">',
7751: '</span>',
7752: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.405 www 7753: return $result.&show_grading_menu_form($symb);
7754: }
1.410 www 7755:
7756: # Were able to get all the info needed, now analyze the file
7757:
1.411 www 7758: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 7759: $symb = &Apache::lonenc::check_encrypt($symb);
1.410 www 7760: my $heading=&mt('Scanning clicker file');
7761: $result.=(<<ENDHEADER);
7762: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
7763: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
7764: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
7765: <form method="post" action="/adm/grades" name="clickeranalysis">
7766: <input type="hidden" name="symb" value="$symb" />
7767: <input type="hidden" name="command" value="assignclickergrades" />
7768: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
7769: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.411 www 7770: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
7771: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
7772: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 7773: ENDHEADER
1.408 albertel 7774: my %responses;
7775: my @questiontitles;
1.405 www 7776: my $errormsg='';
7777: my $number=0;
7778: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 7779: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 7780: }
1.419 www 7781: if ($env{'form.upfiletype'} eq 'interwrite') {
7782: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
7783: }
1.411 www 7784: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
7785: '<input type="hidden" name="number" value="'.$number.'" />'.
1.443 banghart 7786: &mt('Awarding [_1] percent for corrion(s)',$number).'<br />'.
7787: '<input type="hidden" name="number" value="'.$number.'" />'.
1.411 www 7788: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
7789: $env{'form.pcorrect'},$env{'form.pincorrect'}).
7790: '<br />';
1.414 www 7791: # Remember Question Titles
7792: # FIXME: Possibly need delimiter other than ":"
7793: for (my $i=0;$i<$number;$i++) {
7794: $result.='<input type="hidden" name="question:'.$i.'" value="'.
7795: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
7796: }
1.411 www 7797: my $correct_count=0;
7798: my $student_count=0;
7799: my $unknown_count=0;
1.414 www 7800: # Match answers with usernames
7801: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 7802: foreach my $id (keys(%responses)) {
1.410 www 7803: if ($correct_ids{$id}) {
1.414 www 7804: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 7805: $correct_count++;
1.410 www 7806: } elsif ($clicker_ids{$id}) {
1.437 www 7807: if ($clicker_ids{$id}=~/\,/) {
7808: # More than one user with the same clicker!
7809: $result.="\n<hr />".&mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
7810: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
7811: "<select name='multi".$id."'>";
7812: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
7813: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
7814: }
7815: $result.='</select>';
7816: $unknown_count++;
7817: } else {
7818: # Good: found one and only one user with the right clicker
7819: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
7820: $student_count++;
7821: }
1.410 www 7822: } else {
1.411 www 7823: $result.="\n<hr />".&mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
7824: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
7825: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
7826: "\n".&mt("Domain").": ".
7827: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
7828: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id);
7829: $unknown_count++;
1.410 www 7830: }
1.405 www 7831: }
1.412 www 7832: $result.='<hr />'.
7833: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
7834: if ($env{'form.gradingmechanism'} ne 'attendance') {
7835: if ($correct_count==0) {
7836: $errormsg.="Found no correct answers answers for grading!";
7837: } elsif ($correct_count>1) {
1.414 www 7838: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 7839: }
7840: }
1.428 www 7841: if ($number<1) {
7842: $errormsg.="Found no questions.";
7843: }
1.412 www 7844: if ($errormsg) {
7845: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
7846: } else {
7847: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
7848: }
7849: $result.='</form></td></tr></table>'."\n".
1.410 www 7850: '</td></tr></table><br /><br />'."\n";
1.404 www 7851: return $result.&show_grading_menu_form($symb);
1.400 www 7852: }
7853:
1.405 www 7854: sub iclicker_eval {
1.406 www 7855: my ($questiontitles,$responses)=@_;
1.405 www 7856: my $number=0;
7857: my $errormsg='';
7858: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 7859: my %components=&Apache::loncommon::record_sep($line);
7860: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 7861: if ($entries[0] eq 'Question') {
7862: for (my $i=3;$i<$#entries;$i+=6) {
7863: $$questiontitles[$number]=$entries[$i];
7864: $number++;
7865: }
7866: }
7867: if ($entries[0]=~/^\#/) {
7868: my $id=$entries[0];
7869: my @idresponses;
7870: $id=~s/^[\#0]+//;
7871: for (my $i=0;$i<$number;$i++) {
7872: my $idx=3+$i*6;
7873: push(@idresponses,$entries[$idx]);
7874: }
7875: $$responses{$id}=join(',',@idresponses);
7876: }
1.405 www 7877: }
7878: return ($errormsg,$number);
7879: }
7880:
1.419 www 7881: sub interwrite_eval {
7882: my ($questiontitles,$responses)=@_;
7883: my $number=0;
7884: my $errormsg='';
1.420 www 7885: my $skipline=1;
7886: my $questionnumber=0;
7887: my %idresponses=();
1.419 www 7888: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
7889: my %components=&Apache::loncommon::record_sep($line);
7890: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 7891: if ($entries[1] eq 'Time') { $skipline=0; next; }
7892: if ($entries[1] eq 'Response') { $skipline=1; }
7893: next if $skipline;
7894: if ($entries[0]!=$questionnumber) {
7895: $questionnumber=$entries[0];
7896: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
7897: $number++;
1.419 www 7898: }
1.420 www 7899: my $id=$entries[4];
7900: $id=~s/^[\#0]+//;
1.421 www 7901: $id=~s/^v\d*\://i;
7902: $id=~s/[\-\:]//g;
1.420 www 7903: $idresponses{$id}[$number]=$entries[6];
7904: }
7905: foreach my $id (keys %idresponses) {
7906: $$responses{$id}=join(',',@{$idresponses{$id}});
7907: $$responses{$id}=~s/^\s*\,//;
1.419 www 7908: }
7909: return ($errormsg,$number);
7910: }
7911:
1.414 www 7912: sub assign_clicker_grades {
7913: my ($r)=@_;
7914: my ($symb)=&get_symb($r);
7915: if (!$symb) {return '';}
1.416 www 7916: # See which part we are saving to
7917: my ($partlist,$handgrade,$responseType) = &response_type($symb);
7918: # FIXME: This should probably look for the first handgradeable part
7919: my $part=$$partlist[0];
7920: # Start screen output
1.414 www 7921: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.416 www 7922:
1.414 www 7923: my $heading=&mt('Assigning grades based on clicker file');
7924: $result.=(<<ENDHEADER);
7925: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
7926: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
7927: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
7928: ENDHEADER
7929: # Get correct result
7930: # FIXME: Possibly need delimiter other than ":"
7931: my @correct=();
1.415 www 7932: my $gradingmechanism=$env{'form.gradingmechanism'};
7933: my $number=$env{'form.number'};
7934: if ($gradingmechanism ne 'attendance') {
1.414 www 7935: foreach my $key (keys(%env)) {
7936: if ($key=~/^form\.correct\:/) {
7937: my @input=split(/\,/,$env{$key});
7938: for (my $i=0;$i<=$#input;$i++) {
7939: if (($correct[$i]) && ($input[$i]) &&
7940: ($correct[$i] ne $input[$i])) {
7941: $result.='<br /><span class="LC_warning">'.
7942: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
7943: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
7944: } elsif ($input[$i]) {
7945: $correct[$i]=$input[$i];
7946: }
7947: }
7948: }
7949: }
1.415 www 7950: for (my $i=0;$i<$number;$i++) {
1.414 www 7951: if (!$correct[$i]) {
7952: $result.='<br /><span class="LC_error">'.
7953: &mt('No correct result given for question "[_1]"!',
7954: $env{'form.question:'.$i}).'</span>';
7955: }
7956: }
7957: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ($_?$_:'-') } @correct));
7958: }
7959: # Start grading
1.415 www 7960: my $pcorrect=$env{'form.pcorrect'};
7961: my $pincorrect=$env{'form.pincorrect'};
1.416 www 7962: my $storecount=0;
1.415 www 7963: foreach my $key (keys(%env)) {
1.420 www 7964: my $user='';
1.415 www 7965: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 7966: $user=$1;
7967: }
7968: if ($key=~/^form\.unknown\:(.*)$/) {
7969: my $id=$1;
7970: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
7971: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 7972: } elsif ($env{'form.multi'.$id}) {
7973: $user=$env{'form.multi'.$id};
1.420 www 7974: }
7975: }
7976: if ($user) {
1.415 www 7977: my @answer=split(/\,/,$env{$key});
7978: my $sum=0;
7979: for (my $i=0;$i<$number;$i++) {
7980: if ($answer[$i]) {
7981: if ($gradingmechanism eq 'attendance') {
7982: $sum+=$pcorrect;
7983: } else {
7984: if ($answer[$i] eq $correct[$i]) {
7985: $sum+=$pcorrect;
7986: } else {
7987: $sum+=$pincorrect;
7988: }
7989: }
7990: }
7991: }
1.416 www 7992: my $ave=$sum/(100*$number);
7993: # Store
7994: my ($username,$domain)=split(/\:/,$user);
7995: my %grades=();
7996: $grades{"resource.$part.solved"}='correct_by_override';
7997: $grades{"resource.$part.awarded"}=$ave;
7998: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
7999: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
8000: $env{'request.course.id'},
8001: $domain,$username);
8002: if ($returncode ne 'ok') {
8003: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
8004: } else {
8005: $storecount++;
8006: }
1.415 www 8007: }
8008: }
8009: # We are done
1.416 www 8010: $result.='<br />'.&mt('Successfully stored grades for [_1] student(s).',$storecount).
8011: '</td></tr></table>'."\n".
1.414 www 8012: '</td></tr></table><br /><br />'."\n";
8013: return $result.&show_grading_menu_form($symb);
8014: }
8015:
1.1 albertel 8016: sub handler {
1.41 ng 8017: my $request=$_[0];
1.434 albertel 8018: &reset_caches();
1.257 albertel 8019: if ($env{'browser.mathml'}) {
1.141 www 8020: &Apache::loncommon::content_type($request,'text/xml');
1.41 ng 8021: } else {
1.141 www 8022: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 8023: }
8024: $request->send_http_header;
1.44 ng 8025: return '' if $request->header_only;
1.41 ng 8026: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.324 albertel 8027: my $symb=&get_symb($request,1);
1.160 albertel 8028: my @commands=&Apache::loncommon::get_env_multiple('form.command');
8029: my $command=$commands[0];
1.447 foxr 8030:
1.160 albertel 8031: if ($#commands > 0) {
8032: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
8033: }
1.447 foxr 8034:
8035:
1.353 albertel 8036: $request->print(&Apache::loncommon::start_page('Grading'));
1.324 albertel 8037: if ($symb eq '' && $command eq '') {
1.257 albertel 8038: if ($env{'user.adv'}) {
8039: if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
8040: ($env{'form.codethree'})) {
8041: my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
8042: $env{'form.codethree'};
1.41 ng 8043: my ($tsymb,$tuname,$tudom,$tcrsid)=
8044: &Apache::lonnet::checkin($token);
8045: if ($tsymb) {
1.137 albertel 8046: my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41 ng 8047: if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.99 albertel 8048: $request->print(&Apache::lonnet::ssi_body('/res/'.$url,
8049: ('grade_username' => $tuname,
8050: 'grade_domain' => $tudom,
8051: 'grade_courseid' => $tcrsid,
8052: 'grade_symb' => $tsymb)));
1.41 ng 8053: } else {
1.45 ng 8054: $request->print('<h3>Not authorized: '.$token.'</h3>');
1.99 albertel 8055: }
1.41 ng 8056: } else {
1.45 ng 8057: $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41 ng 8058: }
1.14 www 8059: } else {
1.41 ng 8060: $request->print(&Apache::lonxml::tokeninputfield());
8061: }
8062: }
8063: } else {
1.285 albertel 8064: &init_perm();
1.104 albertel 8065: if ($command eq 'submission' && $perm{'vgr'}) {
1.257 albertel 8066: ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.103 albertel 8067: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68 ng 8068: &pickStudentPage($request);
1.103 albertel 8069: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68 ng 8070: &displayPage($request);
1.104 albertel 8071: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71 ng 8072: &updateGradeByPage($request);
1.104 albertel 8073: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41 ng 8074: &processGroup($request);
1.104 albertel 8075: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.443 banghart 8076: $request->print(&grading_menu($request));
8077: } elsif ($command eq 'submit_options' && $perm{'vgr'}) {
8078: $request->print(&submit_options($request));
1.104 albertel 8079: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41 ng 8080: $request->print(&viewgrades($request));
1.104 albertel 8081: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41 ng 8082: $request->print(&processHandGrade($request));
1.106 albertel 8083: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41 ng 8084: $request->print(&editgrades($request));
1.106 albertel 8085: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41 ng 8086: $request->print(&verifyreceipt($request));
1.400 www 8087: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
8088: $request->print(&process_clicker($request));
8089: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
8090: $request->print(&process_clicker_file($request));
1.414 www 8091: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
8092: $request->print(&assign_clicker_grades($request));
1.106 albertel 8093: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72 ng 8094: $request->print(&upcsvScores_form($request));
1.106 albertel 8095: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41 ng 8096: $request->print(&csvupload($request));
1.106 albertel 8097: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41 ng 8098: $request->print(&csvuploadmap($request));
1.246 albertel 8099: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 8100: if ($env{'form.associate'} ne 'Reverse Association') {
1.246 albertel 8101: $request->print(&csvuploadoptions($request));
1.41 ng 8102: } else {
1.257 albertel 8103: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
8104: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 8105: } else {
1.257 albertel 8106: $env{'form.upfile_associate'} = 'forward';
1.41 ng 8107: }
8108: $request->print(&csvuploadmap($request));
8109: }
1.246 albertel 8110: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
8111: $request->print(&csvuploadassign($request));
1.106 albertel 8112: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75 albertel 8113: $request->print(&scantron_selectphase($request));
1.203 albertel 8114: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
8115: $request->print(&scantron_do_warning($request));
1.142 albertel 8116: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
8117: $request->print(&scantron_validate_file($request));
1.106 albertel 8118: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82 albertel 8119: $request->print(&scantron_process_students($request));
1.157 albertel 8120: } elsif ($command eq 'scantronupload' &&
1.257 albertel 8121: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
8122: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162 albertel 8123: $request->print(&scantron_upload_scantron_data($request));
1.157 albertel 8124: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 8125: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
8126: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157 albertel 8127: $request->print(&scantron_upload_scantron_data_save($request));
1.202 albertel 8128: } elsif ($command eq 'scantron_download' &&
1.257 albertel 8129: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 8130: $request->print(&scantron_download_scantron_data($request));
1.106 albertel 8131: } elsif ($command) {
1.157 albertel 8132: $request->print("Access Denied ($command)");
1.26 albertel 8133: }
1.2 albertel 8134: }
1.353 albertel 8135: $request->print(&Apache::loncommon::end_page());
1.434 albertel 8136: &reset_caches();
1.44 ng 8137: return '';
8138: }
8139:
1.1 albertel 8140: 1;
8141:
1.13 albertel 8142: __END__;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>