Annotation of loncom/homework/grades.pm, revision 1.478
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.478 ! albertel 4: # $Id: grades.pm,v 1.477 2007/11/03 00:08:09 albertel 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".
1.474 albertel 868: '<label><input type="radio" name="lastSub" value="last" /> last submission & parts info </label>'."\n".
1.267 albertel 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.474 albertel 905: $gradeTable.= &Apache::loncommon::start_data_table().
906: &Apache::loncommon::start_data_table_header_row();
1.110 ng 907: my $loop = 0;
908: while ($loop < 2) {
1.474 albertel 909: $gradeTable.='<th>No.</th><th>Select</th>'.
910: '<th>'.&nameUserString('header').' '.'Section/Group</th>';
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.474 albertel 916: $gradeTable.='<th>Part: '.$display_part.
917: ' Status</h>';
1.110 ng 918: }
1.301 albertel 919: } elsif ($submitonly eq 'queued') {
1.474 albertel 920: $gradeTable.='<th>'.&mt('Queue Status').' </th>';
1.110 ng 921: }
922: $loop++;
1.126 ng 923: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 924: }
1.474 albertel 925: $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\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.474 albertel 981: if ($ctr%2 ==1) {
982: $gradeTable.= &Apache::loncommon::start_data_table_row();
983: }
1.126 ng 984: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.249 albertel 985: '<td align="center"><label><input type=checkbox name="stuinfo" value="'.
986: $student.':'.$$fullname{$student}.':::SECTION'.$section.
987: ') " /> </label></td>'."\n".'<td>'.
988: &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474 albertel 989: ' '.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110 ng 990:
1.257 albertel 991: if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.110 ng 992: foreach (sort keys(%status)) {
993: next if (/^resource.*?submitted_by$/);
1.276 albertel 994: $gradeTable.='<td align="center"> '.$status{$_}.' </td>'."\n";
1.110 ng 995: }
1.41 ng 996: }
1.126 ng 997: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474 albertel 998: if ($ctr%2 ==0) {
999: $gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
1000: }
1.41 ng 1001: }
1002: }
1.110 ng 1003: if ($ctr%2 ==1) {
1.126 ng 1004: $gradeTable.='<td> </td><td> </td><td> </td>';
1.301 albertel 1005: if ($env{'form.showgrading'} eq 'yes'
1006: && $submitonly ne 'queued'
1007: && $submitonly ne 'all') {
1.110 ng 1008: foreach (@$partlist) {
1009: $gradeTable.='<td> </td>';
1010: }
1.301 albertel 1011: } elsif ($submitonly eq 'queued') {
1012: $gradeTable.='<td> </td>';
1.110 ng 1013: }
1.474 albertel 1014: $gradeTable.=&Apache::loncommon::end_data_table_row();
1.110 ng 1015: }
1016:
1.474 albertel 1017: $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.45 ng 1018: '<input type="button" '.
1019: 'onClick="javascript:checkSelect(this.form.stuinfo);" '.
1.126 ng 1020: 'value="Next->" /></form>'."\n";
1.45 ng 1021: if ($ctr == 0) {
1.96 albertel 1022: my $num_students=(scalar(keys(%$fullname)));
1023: if ($num_students eq 0) {
1.398 albertel 1024: $gradeTable='<br /> <span class="LC_warning">There are no students currently enrolled.</span>';
1.96 albertel 1025: } else {
1.171 albertel 1026: my $submissions='submissions';
1027: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
1028: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 1029: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.398 albertel 1030: $gradeTable='<br /> <span class="LC_warning">'.
1.171 albertel 1031: 'No '.$submissions.' found for this resource for any students. ('.$num_students.
1.398 albertel 1032: ' students checked for '.$submissions.')</span><br />';
1.96 albertel 1033: }
1.46 ng 1034: } elsif ($ctr == 1) {
1.474 albertel 1035: $gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45 ng 1036: }
1.324 albertel 1037: $gradeTable.=&show_grading_menu_form($symb);
1.45 ng 1038: $request->print($gradeTable);
1.44 ng 1039: return '';
1.10 ng 1040: }
1041:
1.44 ng 1042: #---- Called from the listStudents routine
1.249 albertel 1043:
1044: sub check_script {
1045: my ($form, $type)=@_;
1046: my $chkallscript='<script type="text/javascript">
1047: function checkall() {
1048: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1049: ele = document.forms.'.$form.'.elements[i];
1050: if (ele.name == "'.$type.'") {
1051: document.forms.'.$form.'.elements[i].checked=true;
1052: }
1053: }
1054: }
1055:
1056: function checksec() {
1057: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1058: ele = document.forms.'.$form.'.elements[i];
1059: string = document.forms.'.$form.'.chksec.value;
1060: if
1061: (ele.value.indexOf(":::SECTION"+string)>0) {
1062: document.forms.'.$form.'.elements[i].checked=true;
1063: }
1064: }
1065: }
1066:
1067:
1068: function uncheckall() {
1069: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1070: ele = document.forms.'.$form.'.elements[i];
1071: if (ele.name == "'.$type.'") {
1072: document.forms.'.$form.'.elements[i].checked=false;
1073: }
1074: }
1075: }
1076:
1077: </script>'."\n";
1078: return $chkallscript;
1079: }
1080:
1081: sub check_buttons {
1082: my $buttons.='<input type="button" onclick="checkall()" value="Check All" />';
1083: $buttons.='<input type="button" onclick="uncheckall()" value="Uncheck All" /> ';
1084: $buttons.='<input type="button" onclick="checksec()" value="Check Section/Group" />';
1085: $buttons.='<input type="text" size="5" name="chksec" /> ';
1086: return $buttons;
1087: }
1088:
1.44 ng 1089: # Displays the submissions for one student or a group of students
1.34 ng 1090: sub processGroup {
1.41 ng 1091: my ($request) = shift;
1092: my $ctr = 0;
1.155 albertel 1093: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 1094: my $total = scalar(@stuchecked)-1;
1.45 ng 1095:
1.396 banghart 1096: foreach my $student (@stuchecked) {
1097: my ($uname,$udom,$fullname) = split(/:/,$student);
1.257 albertel 1098: $env{'form.student'} = $uname;
1099: $env{'form.userdom'} = $udom;
1100: $env{'form.fullname'} = $fullname;
1.41 ng 1101: &submission($request,$ctr,$total);
1102: $ctr++;
1103: }
1104: return '';
1.35 ng 1105: }
1.34 ng 1106:
1.44 ng 1107: #------------------------------------------------------------------------------------
1108: #
1109: #-------------------------- Next few routines handles grading by student, essentially
1110: # handles essay response type problem/part
1111: #
1112: #--- Javascript to handle the submission page functionality ---
1113: sub sub_page_js {
1114: my $request = shift;
1115: $request->print(<<SUBJAVASCRIPT);
1116: <script type="text/javascript" language="javascript">
1.71 ng 1117: function updateRadio(formname,id,weight) {
1.125 ng 1118: var gradeBox = formname["GD_BOX"+id];
1119: var radioButton = formname["RADVAL"+id];
1120: var oldpts = formname["oldpts"+id].value;
1.72 ng 1121: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 1122: gradeBox.value = pts;
1123: var resetbox = false;
1124: if (isNaN(pts) || pts < 0) {
1125: alert("A number equal or greater than 0 is expected. Entered value = "+pts);
1126: for (var i=0; i<radioButton.length; i++) {
1127: if (radioButton[i].checked) {
1128: gradeBox.value = i;
1129: resetbox = true;
1130: }
1131: }
1132: if (!resetbox) {
1133: formtextbox.value = "";
1134: }
1135: return;
1.44 ng 1136: }
1.71 ng 1137:
1138: if (pts > weight) {
1139: var resp = confirm("You entered a value ("+pts+
1140: ") greater than the weight for the part. Accept?");
1141: if (resp == false) {
1.125 ng 1142: gradeBox.value = oldpts;
1.71 ng 1143: return;
1144: }
1.44 ng 1145: }
1.13 albertel 1146:
1.71 ng 1147: for (var i=0; i<radioButton.length; i++) {
1148: radioButton[i].checked=false;
1149: if (pts == i && pts != "") {
1150: radioButton[i].checked=true;
1151: }
1152: }
1153: updateSelect(formname,id);
1.125 ng 1154: formname["stores"+id].value = "0";
1.41 ng 1155: }
1.5 albertel 1156:
1.72 ng 1157: function writeBox(formname,id,pts) {
1.125 ng 1158: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1159: if (checkSolved(formname,id) == 'update') {
1160: gradeBox.value = pts;
1161: } else {
1.125 ng 1162: var oldpts = formname["oldpts"+id].value;
1.72 ng 1163: gradeBox.value = oldpts;
1.125 ng 1164: var radioButton = formname["RADVAL"+id];
1.71 ng 1165: for (var i=0; i<radioButton.length; i++) {
1166: radioButton[i].checked=false;
1.72 ng 1167: if (i == oldpts) {
1.71 ng 1168: radioButton[i].checked=true;
1169: }
1170: }
1.41 ng 1171: }
1.125 ng 1172: formname["stores"+id].value = "0";
1.71 ng 1173: updateSelect(formname,id);
1174: return;
1.41 ng 1175: }
1.44 ng 1176:
1.71 ng 1177: function clearRadBox(formname,id) {
1178: if (checkSolved(formname,id) == 'noupdate') {
1179: updateSelect(formname,id);
1180: return;
1181: }
1.125 ng 1182: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1183: for (var i=0; i<gradeSelect.length; i++) {
1184: if (gradeSelect[i].selected) {
1185: var selectx=i;
1186: }
1187: }
1.125 ng 1188: var stores = formname["stores"+id];
1.71 ng 1189: if (selectx == stores.value) { return };
1.125 ng 1190: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1191: gradeBox.value = "";
1.125 ng 1192: var radioButton = formname["RADVAL"+id];
1.71 ng 1193: for (var i=0; i<radioButton.length; i++) {
1194: radioButton[i].checked=false;
1195: }
1196: stores.value = selectx;
1197: }
1.5 albertel 1198:
1.71 ng 1199: function checkSolved(formname,id) {
1.125 ng 1200: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1201: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1202: if (!reply) {return "noupdate";}
1.120 ng 1203: formname.overRideScore.value = 'yes';
1.41 ng 1204: }
1.71 ng 1205: return "update";
1.13 albertel 1206: }
1.71 ng 1207:
1208: function updateSelect(formname,id) {
1.125 ng 1209: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1210: return;
1.41 ng 1211: }
1.33 ng 1212:
1.121 ng 1213: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1214: function checksubmit(formname,val,total,parttot) {
1.121 ng 1215: formname.gradeOpt.value = val;
1.71 ng 1216: if (val == "Save & Next") {
1217: for (i=0;i<=total;i++) {
1218: for (j=0;j<parttot;j++) {
1.125 ng 1219: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1220: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1221: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1222: if (points == "") {
1.125 ng 1223: var name = formname["name"+i].value;
1.129 ng 1224: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1225: var resp = confirm("You did not assign a score for "+studentID+
1226: ", part "+partid+". Continue?");
1.71 ng 1227: if (resp == false) {
1.125 ng 1228: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1229: return false;
1230: }
1231: }
1232: }
1233:
1234: }
1235: }
1236:
1237: }
1.121 ng 1238: if (val == "Grade Student") {
1239: formname.showgrading.value = "yes";
1240: if (formname.Status.value == "") {
1241: formname.Status.value = "Active";
1242: }
1243: formname.studentNo.value = total;
1244: }
1.120 ng 1245: formname.submit();
1246: }
1247:
1.71 ng 1248: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1249: function checkSubmitPage(formname,total) {
1250: noscore = new Array(100);
1251: var ptr = 0;
1252: for (i=1;i<total;i++) {
1.125 ng 1253: var partid = formname["q_"+i].value;
1.127 ng 1254: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1255: var points = formname["GD_BOX"+i+"_"+partid].value;
1256: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1257: if (points == "" && status != "correct_by_student") {
1258: noscore[ptr] = i;
1259: ptr++;
1260: }
1261: }
1262: }
1263: if (ptr != 0) {
1264: var sense = ptr == 1 ? ": " : "s: ";
1265: var prolist = "";
1266: if (ptr == 1) {
1267: prolist = noscore[0];
1268: } else {
1269: var i = 0;
1270: while (i < ptr-1) {
1271: prolist += noscore[i]+", ";
1272: i++;
1273: }
1274: prolist += "and "+noscore[i];
1275: }
1276: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1277: if (resp == false) {
1278: return false;
1279: }
1280: }
1.45 ng 1281:
1.71 ng 1282: formname.submit();
1283: }
1284: </script>
1285: SUBJAVASCRIPT
1286: }
1.45 ng 1287:
1.71 ng 1288: #--- javascript for essay type problem --
1289: sub sub_page_kw_js {
1290: my $request = shift;
1.80 ng 1291: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1292: &commonJSfunctions($request);
1.350 albertel 1293:
1.351 albertel 1294: my $inner_js_msg_central=<<INNERJS;
1.350 albertel 1295: <script text="text/javascript">
1296: function checkInput() {
1297: opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
1298: var nmsg = opener.document.SCORE.savemsgN.value;
1299: var usrctr = document.msgcenter.usrctr.value;
1300: var newval = opener.document.SCORE["newmsg"+usrctr];
1301: newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
1302:
1303: var msgchk = "";
1304: if (document.msgcenter.subchk.checked) {
1305: msgchk = "msgsub,";
1306: }
1307: var includemsg = 0;
1308: for (var i=1; i<=nmsg; i++) {
1309: var opnmsg = opener.document.SCORE["savemsg"+i];
1310: var frmmsg = document.msgcenter["msg"+i];
1311: opnmsg.value = opener.checkEntities(frmmsg.value);
1312: var showflg = opener.document.SCORE["shownOnce"+i];
1313: showflg.value = "1";
1314: var chkbox = document.msgcenter["msgn"+i];
1315: if (chkbox.checked) {
1316: msgchk += "savemsg"+i+",";
1317: includemsg = 1;
1318: }
1319: }
1320: if (document.msgcenter.newmsgchk.checked) {
1321: msgchk += "newmsg"+usrctr;
1322: includemsg = 1;
1323: }
1324: imgformname = opener.document.SCORE["mailicon"+usrctr];
1325: imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
1326: var includemsg = opener.document.SCORE["includemsg"+usrctr];
1327: includemsg.value = msgchk;
1328:
1329: self.close()
1330:
1331: }
1332: </script>
1333: INNERJS
1334:
1.351 albertel 1335: my $inner_js_highlight_central=<<INNERJS;
1336: <script type="text/javascript">
1337: function updateChoice(flag) {
1338: opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
1339: opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
1340: opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
1341: opener.document.SCORE.refresh.value = "on";
1342: if (opener.document.SCORE.keywords.value!=""){
1343: opener.document.SCORE.submit();
1344: }
1345: self.close()
1346: }
1347: </script>
1348: INNERJS
1349:
1350: my $start_page_msg_central =
1351: &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
1352: {'js_ready' => 1,
1353: 'only_body' => 1,
1354: 'bgcolor' =>'#FFFFFF',});
1355: my $end_page_msg_central =
1356: &Apache::loncommon::end_page({'js_ready' => 1});
1357:
1358:
1359: my $start_page_highlight_central =
1360: &Apache::loncommon::start_page('Highlight Central',
1361: $inner_js_highlight_central,
1.350 albertel 1362: {'js_ready' => 1,
1363: 'only_body' => 1,
1364: 'bgcolor' =>'#FFFFFF',});
1.351 albertel 1365: my $end_page_highlight_central =
1.350 albertel 1366: &Apache::loncommon::end_page({'js_ready' => 1});
1367:
1.219 www 1368: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1369: $docopen=~s/^document\.//;
1.71 ng 1370: $request->print(<<SUBJAVASCRIPT);
1371: <script type="text/javascript" language="javascript">
1.45 ng 1372:
1.44 ng 1373: //===================== Show list of keywords ====================
1.122 ng 1374: function keywords(formname) {
1375: var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
1.44 ng 1376: if (nret==null) return;
1.122 ng 1377: formname.keywords.value = nret;
1.44 ng 1378:
1.122 ng 1379: if (formname.keywords.value != "") {
1.128 ng 1380: formname.refresh.value = "on";
1.122 ng 1381: formname.submit();
1.44 ng 1382: }
1383: return;
1384: }
1385:
1386: //===================== Script to view submitted by ==================
1387: function viewSubmitter(submitter) {
1388: document.SCORE.refresh.value = "on";
1389: document.SCORE.NCT.value = "1";
1390: document.SCORE.unamedom0.value = submitter;
1391: document.SCORE.submit();
1392: return;
1393: }
1394:
1395: //===================== Script to add keyword(s) ==================
1396: function getSel() {
1397: if (document.getSelection) txt = document.getSelection();
1398: else if (document.selection) txt = document.selection.createRange().text;
1399: else return;
1400: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1401: if (cleantxt=="") {
1.46 ng 1402: alert("Please select a word or group of words from document and then click this link.");
1.44 ng 1403: return;
1404: }
1405: var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
1406: if (nret==null) return;
1.127 ng 1407: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1408: if (document.SCORE.keywords.value != "") {
1.127 ng 1409: document.SCORE.refresh.value = "on";
1.44 ng 1410: document.SCORE.submit();
1411: }
1412: return;
1413: }
1414:
1415: //====================== Script for composing message ==============
1.80 ng 1416: // preload images
1417: img1 = new Image();
1418: img1.src = "$iconpath/mailbkgrd.gif";
1419: img2 = new Image();
1420: img2.src = "$iconpath/mailto.gif";
1421:
1.44 ng 1422: function msgCenter(msgform,usrctr,fullname) {
1423: var Nmsg = msgform.savemsgN.value;
1424: savedMsgHeader(Nmsg,usrctr,fullname);
1425: var subject = msgform.msgsub.value;
1.127 ng 1426: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1427: re = /msgsub/;
1428: var shwsel = "";
1429: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1430: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1431: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1432: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1433: var testmsg = "savemsg"+i+",";
1434: re = new RegExp(testmsg,"g");
1.44 ng 1435: shwsel = "";
1436: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1437: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1438: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1439: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1440: //any < is already converted to <, etc. However, only once!!
1.44 ng 1441: }
1.125 ng 1442: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1443: shwsel = "";
1444: re = /newmsg/;
1445: if (re.test(msgchk)) { shwsel = "checked" }
1446: newMsg(newmsg,shwsel);
1447: msgTail();
1448: return;
1449: }
1450:
1.123 ng 1451: function checkEntities(strx) {
1452: if (strx.length == 0) return strx;
1453: var orgStr = ["&", "<", ">", '"'];
1454: var newStr = ["&", "<", ">", """];
1455: var counter = 0;
1456: while (counter < 4) {
1457: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1458: counter++;
1459: }
1460: return strx;
1461: }
1462:
1463: function strReplace(strx, orgStr, newStr) {
1464: return strx.split(orgStr).join(newStr);
1465: }
1466:
1.44 ng 1467: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1468: var height = 70*Nmsg+250;
1.44 ng 1469: var scrollbar = "no";
1470: if (height > 600) {
1471: height = 600;
1472: scrollbar = "yes";
1473: }
1.118 ng 1474: var xpos = (screen.width-600)/2;
1475: xpos = (xpos < 0) ? '0' : xpos;
1476: var ypos = (screen.height-height)/2-30;
1477: ypos = (ypos < 0) ? '0' : ypos;
1478:
1.206 albertel 1479: pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
1.76 ng 1480: pWin.focus();
1481: pDoc = pWin.document;
1.219 www 1482: pDoc.$docopen;
1.351 albertel 1483: pDoc.write('$start_page_msg_central');
1.76 ng 1484:
1485: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1486: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.465 albertel 1487: pDoc.write("<h3><span class=\\"LC_info\\"> Compose Message for \"+fullname+\"<\\/span><\\/h3><br /><br />");
1.76 ng 1488:
1489: pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1490: pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465 albertel 1491: pDoc.write("<td><b>Type<\\/b><\\/td><td><b>Include<\\/b><\\/td><td><b>Message<\\/td><\\/tr>");
1.44 ng 1492: }
1493: function displaySubject(msg,shwsel) {
1.76 ng 1494: pDoc = pWin.document;
1495: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1496: pDoc.write("<td>Subject<\\/td>");
1497: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1498: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44 ng 1499: }
1500:
1.72 ng 1501: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1502: pDoc = pWin.document;
1503: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1504: pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
1505: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1506: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1507: }
1508:
1509: function newMsg(newmsg,shwsel) {
1.76 ng 1510: pDoc = pWin.document;
1511: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1512: pDoc.write("<td align=\\"center\\">New<\\/td>");
1513: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1514: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1515: }
1516:
1517: function msgTail() {
1.76 ng 1518: pDoc = pWin.document;
1.465 albertel 1519: pDoc.write("<\\/table>");
1520: pDoc.write("<\\/td><\\/tr><\\/table> ");
1.76 ng 1521: pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\"> ");
1.326 albertel 1522: pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465 albertel 1523: pDoc.write("<\\/form>");
1.351 albertel 1524: pDoc.write('$end_page_msg_central');
1.128 ng 1525: pDoc.close();
1.44 ng 1526: }
1527:
1528: //====================== Script for keyword highlight options ==============
1529: function kwhighlight() {
1530: var kwclr = document.SCORE.kwclr.value;
1531: var kwsize = document.SCORE.kwsize.value;
1532: var kwstyle = document.SCORE.kwstyle.value;
1533: var redsel = "";
1534: var grnsel = "";
1535: var blusel = "";
1536: if (kwclr=="red") {var redsel="checked"};
1537: if (kwclr=="green") {var grnsel="checked"};
1538: if (kwclr=="blue") {var blusel="checked"};
1539: var sznsel = "";
1540: var sz1sel = "";
1541: var sz2sel = "";
1542: if (kwsize=="0") {var sznsel="checked"};
1543: if (kwsize=="+1") {var sz1sel="checked"};
1544: if (kwsize=="+2") {var sz2sel="checked"};
1545: var synsel = "";
1546: var syisel = "";
1547: var sybsel = "";
1548: if (kwstyle=="") {var synsel="checked"};
1549: if (kwstyle=="<i>") {var syisel="checked"};
1550: if (kwstyle=="<b>") {var sybsel="checked"};
1551: highlightCentral();
1552: highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
1553: highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
1554: highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
1555: highlightend();
1556: return;
1557: }
1558:
1559: function highlightCentral() {
1.76 ng 1560: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1561: var xpos = (screen.width-400)/2;
1562: xpos = (xpos < 0) ? '0' : xpos;
1563: var ypos = (screen.height-330)/2-30;
1564: ypos = (ypos < 0) ? '0' : ypos;
1565:
1.206 albertel 1566: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1567: hwdWin.focus();
1568: var hDoc = hwdWin.document;
1.219 www 1569: hDoc.$docopen;
1.351 albertel 1570: hDoc.write('$start_page_highlight_central');
1.76 ng 1571: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.465 albertel 1572: hDoc.write("<h3><span class=\\"LC_info\\"> Keyword Highlight Options<\\/span><\\/h3><br /><br />");
1.76 ng 1573:
1574: hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1575: hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465 albertel 1576: hDoc.write("<td><b>Text Color<\\/b><\\/td><td><b>Font Size<\\/b><\\/td><td><b>Font Style<\\/td><\\/tr>");
1.44 ng 1577: }
1578:
1579: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1580: var hDoc = hwdWin.document;
1581: hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1582: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1583: hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+"> "+clrtxt+"<\\/td>");
1.76 ng 1584: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1585: hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+"> "+sztxt+"<\\/td>");
1.76 ng 1586: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1587: hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+"> "+sytxt+"<\\/td>");
1588: hDoc.write("<\\/tr>");
1.44 ng 1589: }
1590:
1591: function highlightend() {
1.76 ng 1592: var hDoc = hwdWin.document;
1.465 albertel 1593: hDoc.write("<\\/table>");
1594: hDoc.write("<\\/td><\\/tr><\\/table> ");
1.76 ng 1595: hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\"> ");
1.326 albertel 1596: hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465 albertel 1597: hDoc.write("<\\/form>");
1.351 albertel 1598: hDoc.write('$end_page_highlight_central');
1.128 ng 1599: hDoc.close();
1.44 ng 1600: }
1601:
1602: </script>
1603: SUBJAVASCRIPT
1604: }
1605:
1.349 albertel 1606: sub get_increment {
1.348 bowersj2 1607: my $increment = $env{'form.increment'};
1608: if ($increment != 1 && $increment != .5 && $increment != .25 &&
1609: $increment != .1) {
1610: $increment = 1;
1611: }
1612: return $increment;
1613: }
1614:
1.71 ng 1615: #--- displays the grading box, used in essay type problem and grading by page/sequence
1616: sub gradeBox {
1.322 albertel 1617: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381 albertel 1618: my $checkIcon = '<img alt="'.&mt('Check Mark').
1619: '" src="'.$request->dir_config('lonIconsURL').
1.71 ng 1620: '/check.gif" height="16" border="0" />';
1621: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466 albertel 1622: my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)')
1623: : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71 ng 1624: $wgt = ($wgt > 0 ? $wgt : '1');
1625: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1626: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71 ng 1627: my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466 albertel 1628: my $display_part= &get_display_part($partid,$symb);
1.270 albertel 1629: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1630: [$partid]);
1631: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1632: if ($last_resets{$partid}) {
1633: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1634: }
1.71 ng 1635: $result.='<table border="0"><tr><td>'.
1.207 albertel 1636: '<b>Part: </b>'.$display_part.' <b>Points: </b></td><td>'."\n";
1.71 ng 1637: my $ctr = 0;
1.348 bowersj2 1638: my $thisweight = 0;
1.349 albertel 1639: my $increment = &get_increment();
1.71 ng 1640: $result.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1.348 bowersj2 1641: while ($thisweight<=$wgt) {
1.381 albertel 1642: $result.= '<td><span style="white-space: nowrap;"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.71 ng 1643: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348 bowersj2 1644: $thisweight.')" value="'.$thisweight.'" '.
1.401 albertel 1645: ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.71 ng 1646: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348 bowersj2 1647: $thisweight += $increment;
1.71 ng 1648: $ctr++;
1649: }
1650: $result.='</tr></table>';
1651: $result.='</td><td> <b>or</b> </td>'."\n";
1652: $result.='<td><input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1653: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1654: 'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1655: $wgt.')" /></td>'."\n";
1656: $result.='<td>/'.$wgt.' '.$wgtmsg.
1657: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1658: ' </td><td>'."\n";
1659: $result.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
1660: 'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1661: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.384 albertel 1662: $result.='<option></option>'.
1.401 albertel 1663: '<option selected="selected">excused</option>';
1.71 ng 1664: } else {
1.401 albertel 1665: $result.='<option selected="selected"></option>'.
1.125 ng 1666: '<option>excused</option>';
1.71 ng 1667: }
1.125 ng 1668: $result.='<option>reset status</option></select>'."\n";
1.381 albertel 1669: $result.=" \n";
1.71 ng 1670: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1671: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1672: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1673: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1674: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1675: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1676: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1677: $aggtries.'" />'."\n";
1.71 ng 1678: $result.='</td></tr></table>'."\n";
1.323 banghart 1679: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record);
1.318 banghart 1680: return $result;
1681: }
1.322 albertel 1682:
1683: sub handback_box {
1.323 banghart 1684: my ($symb,$uname,$udom,$counter,$partid,$record) = @_;
1.324 albertel 1685: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.323 banghart 1686: my (@respids);
1.375 albertel 1687: my @part_response_id = &flatten_responseType($responseType);
1688: foreach my $part_response_id (@part_response_id) {
1689: my ($part,$resp) = @{ $part_response_id };
1.323 banghart 1690: if ($part eq $partid) {
1.375 albertel 1691: push(@respids,$resp);
1.323 banghart 1692: }
1693: }
1.318 banghart 1694: my $result;
1.323 banghart 1695: foreach my $respid (@respids) {
1.322 albertel 1696: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1697: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1698: next if (!@$files);
1699: my $file_counter = 1;
1.313 banghart 1700: foreach my $file (@$files) {
1.368 banghart 1701: if ($file =~ /\/portfolio\//) {
1702: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
1703: my ($name,$version,$ext) = &file_name_version_ext($file_disp);
1704: $file_disp = "$name.$ext";
1705: $file = $file_path.$file_disp;
1706: $result.=&mt('Return commented version of [_1] to student.',
1707: '<span class="LC_filename">'.$file_disp.'</span>');
1708: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1709: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />';
1.466 albertel 1710: $result.='(File will be uploaded when you click on Save & Next below.)<br />';
1.368 banghart 1711: $file_counter++;
1712: }
1.322 albertel 1713: }
1.313 banghart 1714: }
1.318 banghart 1715: return $result;
1.71 ng 1716: }
1.44 ng 1717:
1.58 albertel 1718: sub show_problem {
1.382 albertel 1719: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144 albertel 1720: my $rendered;
1.382 albertel 1721: my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329 albertel 1722: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1723: if ($mode eq 'both' or $mode eq 'text') {
1724: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382 albertel 1725: $env{'request.course.id'},
1726: undef,\%form);
1.144 albertel 1727: }
1.58 albertel 1728: if ($removeform) {
1729: $rendered=~s|<form(.*?)>||g;
1730: $rendered=~s|</form>||g;
1.374 albertel 1731: $rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58 albertel 1732: }
1.144 albertel 1733: my $companswer;
1734: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1735: &Apache::lonxml::restore_problem_counter();
1.382 albertel 1736: $companswer=
1737: &Apache::loncommon::get_student_answers($symb,$uname,$udom,
1738: $env{'request.course.id'},
1739: %form);
1.144 albertel 1740: }
1.58 albertel 1741: if ($removeform) {
1742: $companswer=~s|<form(.*?)>||g;
1743: $companswer=~s|</form>||g;
1.144 albertel 1744: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1745: }
1.468 albertel 1746: $rendered=
1747: '<div class="LC_grade_show_problem_header">'.
1748: &mt('View of the problem').
1749: '</div><div class="LC_grade_show_problem_problem">'.
1750: $rendered.
1751: '</div>';
1752: $companswer=
1753: '<div class="LC_grade_show_problem_header">'.
1754: &mt('Correct answer').
1755: '</div><div class="LC_grade_show_problem_problem">'.
1756: $companswer.
1757: '</div>';
1758: my $result;
1.144 albertel 1759: if ($mode eq 'both') {
1.468 albertel 1760: $result=$rendered.$companswer;
1.144 albertel 1761: } elsif ($mode eq 'text') {
1.468 albertel 1762: $result=$rendered;
1.144 albertel 1763: } elsif ($mode eq 'answer') {
1.468 albertel 1764: $result=$companswer;
1.144 albertel 1765: }
1.468 albertel 1766: $result='<div class="LC_grade_show_problem">'.$result.'</div>';
1.71 ng 1767: return $result;
1.58 albertel 1768: }
1.397 albertel 1769:
1.396 banghart 1770: sub files_exist {
1771: my ($r, $symb) = @_;
1772: my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397 albertel 1773:
1.396 banghart 1774: foreach my $student (@students) {
1775: my ($uname,$udom,$fullname) = split(/:/,$student);
1.397 albertel 1776: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
1777: $udom,$uname);
1.396 banghart 1778: my ($string,$timestamp)= &get_last_submission(\%record);
1.397 albertel 1779: foreach my $submission (@$string) {
1780: my ($partid,$respid) =
1781: ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1782: my $files=&get_submitted_files($udom,$uname,$partid,$respid,
1783: \%record);
1784: return 1 if (@$files);
1.396 banghart 1785: }
1786: }
1.397 albertel 1787: return 0;
1.396 banghart 1788: }
1.397 albertel 1789:
1.394 banghart 1790: sub download_all_link {
1791: my ($r,$symb) = @_;
1.395 albertel 1792: my $all_students =
1793: join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
1794:
1795: my $parts =
1796: join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
1797:
1.394 banghart 1798: my $identifier = &Apache::loncommon::get_cgi_id();
1799: &Apache::lonnet::appenv('cgi.'.$identifier.'.students' => $all_students,
1800: 'cgi.'.$identifier.'.symb' => $symb,
1.395 albertel 1801: 'cgi.'.$identifier.'.parts' => $parts,);
1802: $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
1803: &mt('Download All Submitted Documents').'</a>');
1.394 banghart 1804: return
1805: }
1.395 albertel 1806:
1.432 banghart 1807: sub build_section_inputs {
1808: my $section_inputs;
1809: if ($env{'form.section'} eq '') {
1810: $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
1811: } else {
1812: my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434 albertel 1813: foreach my $section (@sections) {
1.432 banghart 1814: $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
1815: }
1816: }
1817: return $section_inputs;
1818: }
1819:
1.44 ng 1820: # --------------------------- show submissions of a student, option to grade
1821: sub submission {
1822: my ($request,$counter,$total) = @_;
1.257 albertel 1823: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
1824: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
1825: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
1826: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.324 albertel 1827: my $symb = &get_symb($request);
1828: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104 albertel 1829:
1830: if (!&canview($usec)) {
1.398 albertel 1831: $request->print('<span class="LC_warning">Unable to view requested student.('.
1832: $uname.':'.$udom.' in section '.$usec.' in course id '.
1833: $env{'request.course.id'}.')</span>');
1.324 albertel 1834: $request->print(&show_grading_menu_form($symb));
1.104 albertel 1835: return;
1836: }
1837:
1.257 albertel 1838: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
1839: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
1840: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
1841: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381 albertel 1842: my $checkIcon = '<img alt="'.&mt('Check Mark').
1843: '" src="'.$request->dir_config('lonIconsURL').
1.122 ng 1844: '/check.gif" height="16" border="0" />';
1.41 ng 1845:
1.426 albertel 1846: my %old_essays;
1.41 ng 1847: # header info
1848: if ($counter == 0) {
1849: &sub_page_js($request);
1.257 albertel 1850: &sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
1851: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
1852: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.397 albertel 1853: if ($env{'form.handgrade'} eq 'yes' && &files_exist($request, $symb)) {
1.396 banghart 1854: &download_all_link($request, $symb);
1855: }
1.398 albertel 1856: $request->print('<h3> <span class="LC_info">Submission Record</span></h3>'."\n".
1857: '<h4> <b>Resource: </b>'.$env{'form.probTitle'}.'</h4>'."\n");
1.118 ng 1858:
1.44 ng 1859: # option to display problem, only once else it cause problems
1860: # with the form later since the problem has a form.
1.257 albertel 1861: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 1862: my $mode;
1.257 albertel 1863: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 1864: $mode='both';
1.257 albertel 1865: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 1866: $mode='text';
1.257 albertel 1867: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 1868: $mode='answer';
1869: }
1.329 albertel 1870: &Apache::lonxml::clear_problem_counter();
1.144 albertel 1871: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 1872: }
1.441 www 1873:
1.44 ng 1874: # kwclr is the only variable that is guaranteed to be non blank
1875: # if this subroutine has been called once.
1.41 ng 1876: my %keyhash = ();
1.257 albertel 1877: if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41 ng 1878: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 1879: $env{'course.'.$env{'request.course.id'}.'.domain'},
1880: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 1881:
1.257 albertel 1882: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1883: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
1884: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
1885: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
1886: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
1887: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
1888: $keyhash{$symb.'_subject'} : $env{'form.probTitle'};
1889: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 1890: }
1.257 albertel 1891: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442 banghart 1892: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303 banghart 1893: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 1894: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.257 albertel 1895: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 1896: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.120 ng 1897: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257 albertel 1898: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.41 ng 1899: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 1900: '<input type="hidden" name="studentNo" value="" />'."\n".
1901: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.418 albertel 1902: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 1903: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
1904: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
1905: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
1906: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.432 banghart 1907: &build_section_inputs().
1.326 albertel 1908: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
1909: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" />'."\n".
1.41 ng 1910: '<input type="hidden" name="NCT"'.
1.257 albertel 1911: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
1912: if ($env{'form.handgrade'} eq 'yes') {
1913: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
1914: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
1915: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
1916: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
1917: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 1918: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 1919: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 1920: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
1921: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
1922: }
1.123 ng 1923: }
1.41 ng 1924:
1925: my ($cts,$prnmsg) = (1,'');
1.257 albertel 1926: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 1927: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 1928: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 1929: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 1930: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 1931: '" />'."\n".
1932: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 1933: $cts++;
1934: }
1935: $request->print($prnmsg);
1.32 ng 1936:
1.257 albertel 1937: if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.88 www 1938: #
1939: # Print out the keyword options line
1940: #
1.41 ng 1941: $request->print(<<KEYWORDS);
1.38 ng 1942: <b>Keyword Options:</b>
1.417 albertel 1943: <a href="javascript:keywords(document.SCORE);" target="_self">List</a>
1.38 ng 1944: <a href="#" onMouseDown="javascript:getSel(); return false"
1945: CLASS="page">Paste Selection to List</a>
1.417 albertel 1946: <a href="javascript:kwhighlight();" target="_self">Highlight Attribute</a><br /><br />
1.38 ng 1947: KEYWORDS
1.88 www 1948: #
1949: # Load the other essays for similarity check
1950: #
1.324 albertel 1951: my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384 albertel 1952: my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359 www 1953: $apath=&escape($apath);
1.88 www 1954: $apath=~s/\W/\_/gs;
1.426 albertel 1955: %old_essays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
1.41 ng 1956: }
1957: }
1.44 ng 1958:
1.441 www 1959: # This is where output for one specific student would start
1.468 albertel 1960: my $add_class = ($counter%2) ? 'LC_grade_show_user_odd_row' : '';
1.441 www 1961: $request->print("\n\n".
1.468 albertel 1962: '<div class="LC_grade_show_user '.$add_class.'">'.
1963: '<div class="LC_grade_user_name">'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</div>'.
1964: '<div class="LC_grade_show_user_body">'."\n");
1.441 www 1965:
1.257 albertel 1966: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144 albertel 1967: my $mode;
1.257 albertel 1968: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 1969: $mode='both';
1.257 albertel 1970: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 1971: $mode='text';
1.257 albertel 1972: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 1973: $mode='answer';
1974: }
1.329 albertel 1975: &Apache::lonxml::clear_problem_counter();
1.475 albertel 1976: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58 albertel 1977: }
1.144 albertel 1978:
1.257 albertel 1979: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 1980: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.41 ng 1981:
1.44 ng 1982: # Display student info
1.41 ng 1983: $request->print(($counter == 0 ? '' : '<br />'));
1.468 albertel 1984: my $result='<div class="LC_grade_submissions">';
1985:
1986: $result.='<div class="LC_grade_submissions_header">';
1987: $result.= &mt('Submissions');
1.45 ng 1988: $result.='<input type="hidden" name="name'.$counter.
1.257 albertel 1989: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.469 albertel 1990: if ($env{'form.handgrade'} eq 'no') {
1991: $result.='<span class="LC_grade_check_note">'.
1992: &mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)."</span>\n";
1993:
1994: }
1995:
1996:
1.41 ng 1997:
1.118 ng 1998: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464 albertel 1999: my $fullname;
2000: my $col_fullnames = [];
1.257 albertel 2001: if ($env{'form.handgrade'} eq 'yes') {
1.464 albertel 2002: (my $sub_result,$fullname,$col_fullnames)=
2003: &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
2004: $counter);
2005: $result.=$sub_result;
1.41 ng 2006: }
1.44 ng 2007: $request->print($result."\n");
1.468 albertel 2008: $request->print('</div>'."\n");
1.44 ng 2009: # print student answer/submission
2010: # Options are (1) Handgaded submission only
2011: # (2) Last submission, includes submission that is not handgraded
2012: # (for multi-response type part)
2013: # (3) Last submission plus the parts info
2014: # (4) The whole record for this student
1.257 albertel 2015: if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151 albertel 2016: my ($string,$timestamp)= &get_last_submission(\%record);
1.468 albertel 2017:
2018: my $lastsubonly;
2019:
1.151 albertel 2020: if ($$timestamp eq '') {
1.468 albertel 2021: $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>';
1.151 albertel 2022: } else {
1.468 albertel 2023: $lastsubonly = '<div class="LC_grade_submissions_body"> <b>Date Submitted:</b> '.$$timestamp."\n";
2024:
1.151 albertel 2025: my %seenparts;
1.375 albertel 2026: my @part_response_id = &flatten_responseType($responseType);
2027: foreach my $part (@part_response_id) {
1.393 albertel 2028: next if ($env{'form.lastSub'} eq 'hdgrade'
2029: && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
2030:
1.375 albertel 2031: my ($partid,$respid) = @{ $part };
1.324 albertel 2032: my $display_part=&get_display_part($partid,$symb);
1.257 albertel 2033: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151 albertel 2034: if (exists($seenparts{$partid})) { next; }
2035: $seenparts{$partid}=1;
1.207 albertel 2036: my $submitby='<b>Part:</b> '.$display_part.
2037: ' <b>Collaborative submission by:</b> '.
1.151 albertel 2038: '<a href="javascript:viewSubmitter(\''.
1.257 albertel 2039: $env{"form.$uname:$udom:$partid:submitted_by"}.
1.417 albertel 2040: '\');" target="_self">'.
1.257 albertel 2041: $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151 albertel 2042: $request->print($submitby);
2043: next;
2044: }
2045: my $responsetype = $responseType->{$partid}->{$respid};
2046: if (!exists($record{"resource.$partid.$respid.submission"})) {
1.468 albertel 2047: $lastsubonly.="\n".'<div class="LC_grade_submission_part"><b>Part:</b> '.
1.398 albertel 2048: $display_part.' <span class="LC_internal_info">( ID '.$respid.
2049: ' )</span> '.
1.468 albertel 2050: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br /><br /></div>';
1.151 albertel 2051: next;
2052: }
1.468 albertel 2053: foreach my $submission (@$string) {
2054: my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375 albertel 2055: if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.468 albertel 2056: my ($ressub,$subval) = split(/:/,$submission,2);
1.151 albertel 2057: # Similarity check
2058: my $similar='';
1.257 albertel 2059: if($env{'form.checkPlag'}){
1.151 albertel 2060: my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.426 albertel 2061: &most_similar($uname,$udom,$subval,\%old_essays);
1.151 albertel 2062: if ($osim) {
2063: $osim=int($osim*100.0);
1.426 albertel 2064: my %old_course_desc =
2065: &Apache::lonnet::coursedescription($ocrsid,
2066: {'one_time' => 1});
2067:
2068: $similar="<hr /><h3><span class=\"LC_warning\">".
1.427 albertel 2069: &mt('Essay is [_1]% similar to an essay by [_2] ([_3]:[_4]) in course [_5] (course id [_6]:[_7])',
1.426 albertel 2070: $osim,
2071: &Apache::loncommon::plainname($oname,$odom),
1.427 albertel 2072: $oname,$odom,
1.426 albertel 2073: $old_course_desc{'description'},
1.427 albertel 2074: $old_course_desc{'num'},
1.426 albertel 2075: $old_course_desc{'domain'}).
1.398 albertel 2076: '</span></h3><blockquote><i>'.
1.151 albertel 2077: &keywords_highlight($oessay).
2078: '</i></blockquote><hr />';
2079: }
1.150 albertel 2080: }
1.151 albertel 2081: my $order=&get_order($partid,$respid,$symb,$uname,$udom);
1.257 albertel 2082: if ($env{'form.lastSub'} eq 'lastonly' ||
2083: ($env{'form.lastSub'} eq 'hdgrade' &&
1.377 albertel 2084: $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324 albertel 2085: my $display_part=&get_display_part($partid,$symb);
1.468 albertel 2086: $lastsubonly.='<div class="LC_grade_submission_part"><b>Part:</b> '.
1.403 albertel 2087: $display_part.' <span class="LC_internal_info">( ID '.$respid.
1.398 albertel 2088: ' )</span> ';
1.313 banghart 2089: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
2090: if (@$files) {
1.468 albertel 2091: $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain virusses').'</span><br />';
1.303 banghart 2092: my $file_counter = 0;
1.313 banghart 2093: foreach my $file (@$files) {
1.468 albertel 2094: $file_counter++;
1.232 albertel 2095: &Apache::lonnet::allowuploaded('/adm/grades',$file);
1.335 albertel 2096: $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border=0"> '.$file.'</a>';
1.232 albertel 2097: }
1.236 albertel 2098: $lastsubonly.='<br />';
1.41 ng 2099: }
1.468 albertel 2100: $lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
1.151 albertel 2101: &cleanRecord($subval,$responsetype,$symb,$partid,
2102: $respid,\%record,$order);
2103: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468 albertel 2104: $lastsubonly.='</div>';
1.41 ng 2105: }
2106: }
2107: }
1.468 albertel 2108: $lastsubonly.='</div>'."\n";
1.151 albertel 2109: }
2110: $request->print($lastsubonly);
1.468 albertel 2111: } elsif ($env{'form.lastSub'} eq 'datesub') {
1.324 albertel 2112: my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
1.148 albertel 2113: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257 albertel 2114: } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41 ng 2115: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 2116: $env{'request.course.id'},
1.44 ng 2117: $last,'.submission',
2118: 'Apache::grades::keywords_highlight'));
1.41 ng 2119: }
1.120 ng 2120:
1.121 ng 2121: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
2122: .$udom.'" />'."\n");
1.44 ng 2123: # return if view submission with no grading option
1.257 albertel 2124: if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120 ng 2125: my $toGrade.='<input type="button" value="Grade Student" '.
1.121 ng 2126: 'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
1.417 albertel 2127: .$counter.'\');" target="_self" /> '."\n" if (&canmodify($usec));
1.468 albertel 2128: $toGrade.='</div>'."\n";
1.257 albertel 2129: if (($env{'form.command'} eq 'submission') ||
2130: ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.324 albertel 2131: $toGrade.='</form>'.&show_grading_menu_form($symb);
1.169 albertel 2132: }
1.180 albertel 2133: $request->print($toGrade);
1.41 ng 2134: return;
1.180 albertel 2135: } else {
1.468 albertel 2136: $request->print('</div>'."\n");
1.41 ng 2137: }
1.33 ng 2138:
1.121 ng 2139: # essay grading message center
1.257 albertel 2140: if ($env{'form.handgrade'} eq 'yes') {
1.468 albertel 2141: my $result='<div class="LC_grade_message_center">';
2142:
2143: $result.='<div class="LC_grade_message_center_header">'.
2144: &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257 albertel 2145: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 2146: my $msgfor = $givenn.' '.$lastname;
1.464 albertel 2147: if (scalar(@$col_fullnames) > 0) {
2148: my $lastone = pop(@$col_fullnames);
2149: $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118 ng 2150: }
2151: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468 albertel 2152: $result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121 ng 2153: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
2154: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417 albertel 2155: ',\''.$msgfor.'\');" target="_self">'.
1.464 albertel 2156: &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
1.350 albertel 2157: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.118 ng 2158: '<img src="'.$request->dir_config('lonIconsURL').
2159: '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298 www 2160: '<br /> ('.
1.468 albertel 2161: &mt('Message will be sent when you click on Save & Next below.').")\n";
2162: $result.='</div></div>';
1.121 ng 2163: $request->print($result);
1.118 ng 2164: }
1.41 ng 2165:
2166: my %seen = ();
2167: my @partlist;
1.129 ng 2168: my @gradePartRespid;
1.375 albertel 2169: my @part_response_id = &flatten_responseType($responseType);
1.468 albertel 2170: $request->print('<div class="LC_grade_assign">'.
2171:
2172: '<div class="LC_grade_assign_header">'.
2173: &mt('Assign Grades').'</div>'.
2174: '<div class="LC_grade_assign_body">');
1.375 albertel 2175: foreach my $part_response_id (@part_response_id) {
2176: my ($partid,$respid) = @{ $part_response_id };
2177: my $part_resp = join('_',@{ $part_response_id });
1.322 albertel 2178: next if ($seen{$partid} > 0);
1.41 ng 2179: $seen{$partid}++;
1.393 albertel 2180: next if ($$handgrade{$part_resp} ne 'yes'
2181: && $env{'form.lastSub'} eq 'hdgrade');
1.41 ng 2182: push @partlist,$partid;
1.129 ng 2183: push @gradePartRespid,$partid.'.'.$respid;
1.322 albertel 2184: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 2185: }
1.468 albertel 2186: $request->print('</div></div>');
2187:
2188: $request->print('<div class="LC_grade_info_links">');
2189: if ($perm{'vgr'}) {
2190: $request->print(
2191: &Apache::loncommon::track_student_link(&mt('View recent activity'),
2192: $uname,$udom,'check'));
2193: }
2194: if ($perm{'opa'}) {
2195: $request->print(
2196: &Apache::loncommon::pprmlink(&mt('Set/Change parameters'),
2197: $uname,$udom,$symb,'check'));
2198: }
2199: $request->print('</div>');
2200:
1.45 ng 2201: $result='<input type="hidden" name="partlist'.$counter.
2202: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 2203: $result.='<input type="hidden" name="gradePartRespid'.
2204: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 2205: my $ctr = 0;
2206: while ($ctr < scalar(@partlist)) {
2207: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
2208: $partlist[$ctr].'" />'."\n";
2209: $ctr++;
2210: }
1.468 albertel 2211: $request->print($result.''."\n");
1.41 ng 2212:
1.441 www 2213: # Done with printing info for one student
2214:
1.468 albertel 2215: $request->print('</div>');#LC_grade_show_user_body
2216: $request->print('</div>');#LC_grade_show_user
1.441 www 2217:
2218:
1.41 ng 2219: # print end of form
2220: if ($counter == $total) {
1.297 www 2221: my $endform='<table border="0"><tr><td>'."\n";
1.119 ng 2222: $endform.='<input type="button" value="Save & Next" '.
2223: 'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417 albertel 2224: $total.','.scalar(@partlist).');" target="_self" /> '."\n";
1.119 ng 2225: my $ntstu ='<select name="NTSTU">'.
2226: '<option>1</option><option>2</option>'.
2227: '<option>3</option><option>5</option>'.
2228: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 2229: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401 albertel 2230: $ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.119 ng 2231: $endform.=$ntstu.'student(s) ';
1.126 ng 2232: $endform.='<input type="button" value="Previous" '.
1.417 albertel 2233: 'onClick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> '."\n".
1.126 ng 2234: '<input type="button" value="Next" '.
1.417 albertel 2235: 'onClick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> ';
1.126 ng 2236: $endform.='(Next and Previous (student) do not save the scores.)'."\n" ;
1.349 albertel 2237: $endform.="<input type='hidden' value='".&get_increment().
1.348 bowersj2 2238: "' name='increment' />";
1.45 ng 2239: $endform.='</td><tr></table></form>';
1.324 albertel 2240: $endform.=&show_grading_menu_form($symb);
1.41 ng 2241: $request->print($endform);
2242: }
2243: return '';
1.38 ng 2244: }
2245:
1.464 albertel 2246: sub check_collaborators {
2247: my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
2248: my ($result,@col_fullnames);
2249: my ($classlist,undef,$fullname) = &getclasslist('all','0');
2250: foreach my $part (keys(%$handgrade)) {
2251: my $ncol = &Apache::lonnet::EXT('resource.'.$part.
2252: '.maxcollaborators',
2253: $symb,$udom,$uname);
2254: next if ($ncol <= 0);
2255: $part =~ s/\_/\./g;
2256: next if ($record->{'resource.'.$part.'.collaborators'} eq '');
2257: my (@good_collaborators, @bad_collaborators);
2258: foreach my $possible_collaborator
2259: (split(/,?\s+/,$record->{'resource.'.$part.'.collaborators'})) {
2260: $possible_collaborator =~ s/[\$\^\(\)]//g;
2261: next if ($possible_collaborator eq '');
2262: my ($co_name,$co_dom) = split(/\@|:/,$possible_collaborator);
2263: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
2264: next if ($co_name eq $uname && $co_dom eq $udom);
2265: # Doing this grep allows 'fuzzy' specification
2266: my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i,
2267: keys(%$classlist));
2268: if (! scalar(@matches)) {
2269: push(@bad_collaborators, $possible_collaborator);
2270: } else {
2271: push(@good_collaborators, @matches);
2272: }
2273: }
2274: if (scalar(@good_collaborators) != 0) {
1.466 albertel 2275: $result.='<br />'.&mt('Collaborators: ');
1.464 albertel 2276: foreach my $name (@good_collaborators) {
2277: my ($lastname,$givenn) = split(/,/,$$fullname{$name});
2278: push(@col_fullnames, $givenn.' '.$lastname);
2279: $result.=$fullname->{$name}.' ';
2280: }
2281: $result.='<br />'."\n";
1.466 albertel 2282: my ($part)=split(/\./,$part);
1.464 albertel 2283: $result.='<input type="hidden" name="collaborator'.$counter.
2284: '" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
2285: "\n";
2286: }
2287: if (scalar(@bad_collaborators) > 0) {
1.466 albertel 2288: $result.='<div class="LC_warning">';
1.464 albertel 2289: $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
2290: $result .= '</div>';
2291: }
2292: if (scalar(@bad_collaborators > $ncol)) {
1.466 albertel 2293: $result .= '<div class="LC_warning">';
1.464 albertel 2294: $result .= &mt('This student has submitted too many '.
2295: 'collaborators. Maximum is [_1].',$ncol);
2296: $result .= '</div>';
2297: }
2298: }
2299: return ($result,$fullname,\@col_fullnames);
2300: }
2301:
1.44 ng 2302: #--- Retrieve the last submission for all the parts
1.38 ng 2303: sub get_last_submission {
1.119 ng 2304: my ($returnhash)=@_;
1.46 ng 2305: my (@string,$timestamp);
1.119 ng 2306: if ($$returnhash{'version'}) {
1.46 ng 2307: my %lasthash=();
2308: my ($version);
1.119 ng 2309: for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397 albertel 2310: foreach my $key (sort(split(/\:/,
2311: $$returnhash{$version.':keys'}))) {
2312: $lasthash{$key}=$$returnhash{$version.':'.$key};
2313: $timestamp =
2314: scalar(localtime($$returnhash{$version.':timestamp'}));
1.46 ng 2315: }
2316: }
1.397 albertel 2317: foreach my $key (keys(%lasthash)) {
2318: next if ($key !~ /\.submission$/);
2319:
2320: my ($partid,$foo) = split(/submission$/,$key);
2321: my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
1.398 albertel 2322: '<span class="LC_warning">Draft Copy</span> ' : '';
1.397 albertel 2323: push(@string, join(':', $key, $draft.$lasthash{$key}));
1.41 ng 2324: }
2325: }
1.397 albertel 2326: if (!@string) {
2327: $string[0] =
1.398 albertel 2328: '<span class="LC_warning">Nothing submitted - no attempts.</span>';
1.397 albertel 2329: }
2330: return (\@string,\$timestamp);
1.38 ng 2331: }
1.35 ng 2332:
1.44 ng 2333: #--- High light keywords, with style choosen by user.
1.38 ng 2334: sub keywords_highlight {
1.44 ng 2335: my $string = shift;
1.257 albertel 2336: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2337: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2338: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2339: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.398 albertel 2340: foreach my $keyword (@keylist) {
2341: $string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41 ng 2342: }
2343: return $string;
1.38 ng 2344: }
1.36 ng 2345:
1.44 ng 2346: #--- Called from submission routine
1.38 ng 2347: sub processHandGrade {
1.41 ng 2348: my ($request) = shift;
1.324 albertel 2349: my $symb = &get_symb($request);
2350: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2351: my $button = $env{'form.gradeOpt'};
2352: my $ngrade = $env{'form.NCT'};
2353: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2354: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2355: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2356:
1.44 ng 2357: if ($button eq 'Save & Next') {
2358: my $ctr = 0;
2359: while ($ctr < $ngrade) {
1.257 albertel 2360: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324 albertel 2361: my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2362: if ($errorflag eq 'no_score') {
2363: $ctr++;
2364: next;
2365: }
1.104 albertel 2366: if ($errorflag eq 'not_allowed') {
1.398 albertel 2367: $request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
1.104 albertel 2368: $ctr++;
2369: next;
2370: }
1.257 albertel 2371: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2372: my ($subject,$message,$msgstatus) = ('','','');
1.418 albertel 2373: my $restitle = &Apache::lonnet::gettitle($symb);
2374: my ($feedurl,$showsymb) =
2375: &get_feedurl_and_symb($symb,$uname,$udom);
2376: my $messagetail;
1.62 albertel 2377: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2378: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2379: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386 raeburn 2380: $subject.=' ['.$restitle.']';
1.44 ng 2381: my (@msgnum) = split(/,/,$includemsg);
2382: foreach (@msgnum) {
1.257 albertel 2383: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2384: }
1.80 ng 2385: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2386: if ($env{'form.withgrades'.$ctr}) {
2387: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386 raeburn 2388: $messagetail = " for <a href=\"".
1.418 albertel 2389: $feedurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.386 raeburn 2390: }
2391: $msgstatus =
2392: &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
2393: $message.$messagetail,
1.418 albertel 2394: undef,$feedurl,undef,
1.386 raeburn 2395: undef,undef,$showsymb,
2396: $restitle);
2397: $request->print('<br />'.&mt('Sending message to [_1]:[_2]',$uname,$udom).': '.
1.296 www 2398: $msgstatus);
1.44 ng 2399: }
1.257 albertel 2400: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2401: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2402: foreach my $collabstr (@collabstrs) {
2403: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2404: foreach my $collaborator (@collaborators) {
1.150 albertel 2405: my ($errorflag,$pts,$wgt) =
1.324 albertel 2406: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2407: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2408: if ($errorflag eq 'not_allowed') {
1.362 albertel 2409: $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150 albertel 2410: next;
1.418 albertel 2411: } elsif ($message ne '') {
2412: my ($baseurl,$showsymb) =
2413: &get_feedurl_and_symb($symb,$collaborator,
2414: $udom);
2415: if ($env{'form.withgrades'.$ctr}) {
2416: $messagetail = " for <a href=\"".
1.386 raeburn 2417: $baseurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.150 albertel 2418: }
1.418 albertel 2419: $msgstatus =
2420: &Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104 albertel 2421: }
1.44 ng 2422: }
2423: }
2424: }
2425: $ctr++;
2426: }
2427: }
2428:
1.257 albertel 2429: if ($env{'form.handgrade'} eq 'yes') {
1.119 ng 2430: # Keywords sorted in alphabatical order
1.257 albertel 2431: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 2432: my %keyhash = ();
1.257 albertel 2433: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
2434: $env{'form.keywords'} =~ s/^\s+|\s+$//;
2435: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
2436: $env{'form.keywords'} = join(' ',@keywords);
2437: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
2438: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
2439: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
2440: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
2441: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 2442:
2443: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 2444: # New messages are saved in env for the next student.
1.119 ng 2445: # All messages are saved in nohist_handgrade.db
2446: my ($ctr,$idx) = (1,1);
1.257 albertel 2447: while ($ctr <= $env{'form.savemsgN'}) {
2448: if ($env{'form.savemsg'.$ctr} ne '') {
2449: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 2450: $idx++;
2451: }
2452: $ctr++;
1.41 ng 2453: }
1.119 ng 2454: $ctr = 0;
2455: while ($ctr < $ngrade) {
1.257 albertel 2456: if ($env{'form.newmsg'.$ctr} ne '') {
2457: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
2458: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 2459: $idx++;
2460: }
2461: $ctr++;
1.41 ng 2462: }
1.257 albertel 2463: $env{'form.savemsgN'} = --$idx;
2464: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 2465: my $putresult = &Apache::lonnet::put
1.301 albertel 2466: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 2467: }
1.44 ng 2468: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 2469: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
2470: if ($env{'form.refresh'} eq 'on') {
1.86 ng 2471: my ($ctr,$total) = (0,0);
2472: while ($ctr < $ngrade) {
1.257 albertel 2473: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 2474: $ctr++;
2475: }
1.257 albertel 2476: $env{'form.NTSTU'}=$ngrade;
1.86 ng 2477: $ctr = 0;
2478: while ($ctr < $total) {
1.257 albertel 2479: my $processUser = $env{'form.unamedom'.$ctr};
2480: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2481: $env{'form.fullname'} = $$fullname{$processUser};
1.86 ng 2482: &submission($request,$ctr,$total-1);
1.41 ng 2483: $ctr++;
2484: }
2485: return '';
2486: }
1.36 ng 2487:
1.121 ng 2488: # Go directly to grade student - from submission or link from chart page
1.120 ng 2489: if ($button eq 'Grade Student') {
1.324 albertel 2490: (undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
1.257 albertel 2491: my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
2492: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2493: $env{'form.fullname'} = $$fullname{$processUser};
1.120 ng 2494: &submission($request,0,0);
2495: return '';
2496: }
2497:
1.44 ng 2498: # Get the next/previous one or group of students
1.257 albertel 2499: my $firststu = $env{'form.unamedom0'};
2500: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 2501: my $ctr = 2;
1.41 ng 2502: while ($laststu eq '') {
1.257 albertel 2503: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 2504: $ctr++;
2505: $laststu = $firststu if ($ctr > $ngrade);
2506: }
1.44 ng 2507:
1.41 ng 2508: my (@parsedlist,@nextlist);
2509: my ($nextflg) = 0;
1.294 albertel 2510: foreach (sort
2511: {
2512: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2513: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2514: }
2515: return $a cmp $b;
2516: } (keys(%$fullname))) {
1.41 ng 2517: if ($nextflg == 1 && $button =~ /Next$/) {
2518: push @parsedlist,$_;
2519: }
2520: $nextflg = 1 if ($_ eq $laststu);
2521: if ($button eq 'Previous') {
2522: last if ($_ eq $firststu);
2523: push @parsedlist,$_;
2524: }
2525: }
2526: $ctr = 0;
2527: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.324 albertel 2528: my ($partlist) = &response_type($symb);
1.41 ng 2529: foreach my $student (@parsedlist) {
1.257 albertel 2530: my $submitonly=$env{'form.submitonly'};
1.41 ng 2531: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 2532:
2533: if ($submitonly eq 'queued') {
2534: my %queue_status =
2535: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
2536: $udom,$uname);
2537: next if (!defined($queue_status{'gradingqueue'}));
2538: }
2539:
1.156 albertel 2540: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 2541: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2542: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 2543: my $submitted = 0;
1.248 albertel 2544: my $ungraded = 0;
2545: my $incorrect = 0;
1.145 albertel 2546: foreach (keys(%status)) {
2547: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 2548: $ungraded = 1 if ($status{$_} =~ /^ungraded/);
2549: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1.145 albertel 2550: my ($foo,$partid,$foo1) = split(/\./,$_);
2551: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
2552: $submitted = 0;
2553: }
1.41 ng 2554: }
1.156 albertel 2555: next if (!$submitted && ($submitonly eq 'yes' ||
2556: $submitonly eq 'incorrect' ||
2557: $submitonly eq 'graded'));
1.248 albertel 2558: next if (!$ungraded && ($submitonly eq 'graded'));
2559: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 2560: }
2561: push @nextlist,$student if ($ctr < $ntstu);
1.129 ng 2562: last if ($ctr == $ntstu);
1.41 ng 2563: $ctr++;
2564: }
1.36 ng 2565:
1.41 ng 2566: $ctr = 0;
2567: my $total = scalar(@nextlist)-1;
1.39 ng 2568:
1.41 ng 2569: foreach (sort @nextlist) {
2570: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 2571: $env{'form.student'} = $uname;
2572: $env{'form.userdom'} = $udom;
2573: $env{'form.fullname'} = $$fullname{$_};
1.41 ng 2574: &submission($request,$ctr,$total);
2575: $ctr++;
2576: }
2577: if ($total < 0) {
1.398 albertel 2578: my $the_end = '<h3><span class="LC_info">LON-CAPA User Message</span></h3><br />'."\n";
1.41 ng 2579: $the_end.='<b>Message: </b> No more students for this section or class.<br /><br />'."\n";
2580: $the_end.='Click on the button below to return to the grading menu.<br /><br />'."\n";
1.324 albertel 2581: $the_end.=&show_grading_menu_form($symb);
1.41 ng 2582: $request->print($the_end);
2583: }
2584: return '';
1.38 ng 2585: }
1.36 ng 2586:
1.44 ng 2587: #---- Save the score and award for each student, if changed
1.38 ng 2588: sub saveHandGrade {
1.324 albertel 2589: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 2590: my @version_parts;
1.104 albertel 2591: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 2592: $env{'request.course.id'});
1.104 albertel 2593: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 2594: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 2595: my @parts_graded;
1.77 ng 2596: my %newrecord = ();
2597: my ($pts,$wgt) = ('','');
1.269 raeburn 2598: my %aggregate = ();
2599: my $aggregateflag = 0;
1.301 albertel 2600: my @parts = split(/:/,$env{'form.partlist'.$newflg});
2601: foreach my $new_part (@parts) {
1.337 banghart 2602: #collaborator ($submi may vary for different parts
1.259 banghart 2603: if ($submitter && $new_part ne $part) { next; }
2604: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 2605: if ($dropMenu eq 'excused') {
1.259 banghart 2606: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
2607: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
2608: if (exists($record{'resource.'.$new_part.'.awarded'})) {
2609: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 2610: }
1.364 banghart 2611: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 2612: }
1.125 ng 2613: } elsif ($dropMenu eq 'reset status'
1.259 banghart 2614: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.197 albertel 2615: foreach my $key (keys (%record)) {
1.259 banghart 2616: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 2617: }
1.259 banghart 2618: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2619: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 2620: my $totaltries = $record{'resource.'.$part.'.tries'};
2621:
2622: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
2623: [$new_part]);
2624: my $aggtries =$totaltries;
1.269 raeburn 2625: if ($last_resets{$new_part}) {
1.270 albertel 2626: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
2627: $new_part);
1.269 raeburn 2628: }
1.270 albertel 2629:
2630: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 2631: if ($aggtries > 0) {
1.327 albertel 2632: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 2633: $aggregateflag = 1;
2634: }
1.125 ng 2635: } elsif ($dropMenu eq '') {
1.259 banghart 2636: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
2637: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
2638: $env{'form.RADVAL'.$newflg.'_'.$new_part});
2639: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 2640: next;
2641: }
1.259 banghart 2642: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
2643: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 2644: my $partial= $pts/$wgt;
1.259 banghart 2645: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 2646: #do not update score for part if not changed.
1.346 banghart 2647: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 2648: next;
1.251 banghart 2649: } else {
1.259 banghart 2650: push @parts_graded, $new_part;
1.153 albertel 2651: }
1.259 banghart 2652: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
2653: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 2654: }
1.259 banghart 2655: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 2656: if ($partial == 0) {
1.153 albertel 2657: if ($record{$reckey} ne 'incorrect_by_override') {
2658: $newrecord{$reckey} = 'incorrect_by_override';
2659: }
1.41 ng 2660: } else {
1.153 albertel 2661: if ($record{$reckey} ne 'correct_by_override') {
2662: $newrecord{$reckey} = 'correct_by_override';
2663: }
2664: }
2665: if ($submitter &&
1.259 banghart 2666: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
2667: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 2668: }
1.259 banghart 2669: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2670: "$env{'user.name'}:$env{'user.domain'}";
1.41 ng 2671: }
1.259 banghart 2672: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 2673: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
2674: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
2675: $dropMenu eq 'reset status')
2676: {
1.342 banghart 2677: push (@version_parts,$new_part);
1.259 banghart 2678: }
1.41 ng 2679: }
1.301 albertel 2680: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2681: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2682:
1.344 albertel 2683: if (%newrecord) {
2684: if (@version_parts) {
1.364 banghart 2685: my @changed_keys = &version_portfiles(\%record, \@parts_graded,
2686: $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 2687: @newrecord{@changed_keys} = @record{@changed_keys};
1.367 albertel 2688: foreach my $new_part (@version_parts) {
2689: &handback_files($request,$symb,$stuname,$domain,$newflg,
2690: $new_part,\%newrecord);
2691: }
1.259 banghart 2692: }
1.44 ng 2693: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 2694: $env{'request.course.id'},$domain,$stuname);
1.380 albertel 2695: &check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
2696: $cdom,$cnum,$domain,$stuname);
1.41 ng 2697: }
1.269 raeburn 2698: if ($aggregateflag) {
2699: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 2700: $cdom,$cnum);
1.269 raeburn 2701: }
1.301 albertel 2702: return ('',$pts,$wgt);
1.36 ng 2703: }
1.322 albertel 2704:
1.380 albertel 2705: sub check_and_remove_from_queue {
2706: my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
2707: my @ungraded_parts;
2708: foreach my $part (@{$parts}) {
2709: if ( $record->{ 'resource.'.$part.'.awarded'} eq ''
2710: && $record->{ 'resource.'.$part.'.solved' } ne 'excused'
2711: && $newrecord->{'resource.'.$part.'.awarded'} eq ''
2712: && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
2713: ) {
2714: push(@ungraded_parts, $part);
2715: }
2716: }
2717: if ( !@ungraded_parts ) {
2718: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
2719: $cnum,$domain,$stuname);
2720: }
2721: }
2722:
1.337 banghart 2723: sub handback_files {
2724: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.359 www 2725: my $portfolio_root = &propath($domain,$stuname).'/userfiles/portfolio';
2726: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.375 albertel 2727:
2728: my @part_response_id = &flatten_responseType($responseType);
2729: foreach my $part_response_id (@part_response_id) {
2730: my ($part_id,$resp_id) = @{ $part_response_id };
2731: my $part_resp = join('_',@{ $part_response_id });
1.337 banghart 2732: if (($env{'form.'.$newflg.'_'.$part_resp.'_returndoc1'}) && ($new_part == $part_id)) {
2733: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
2734: my $file_counter = 1;
1.367 albertel 2735: my $file_msg;
1.337 banghart 2736: while ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter}) {
2737: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'.filename'};
1.338 banghart 2738: my ($directory,$answer_file) =
2739: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter} =~ /^(.*?)([^\/]*)$/);
2740: my ($answer_name,$answer_ver,$answer_ext) =
2741: &file_name_version_ext($answer_file);
1.355 banghart 2742: my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.341 banghart 2743: my @dir_list = &Apache::lonnet::dirlist($portfolio_path,$domain,$stuname,$portfolio_root);
1.338 banghart 2744: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.355 banghart 2745: # fix file name
2746: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
2747: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
2748: $newflg.'_'.$part_resp.'_returndoc'.$file_counter,
2749: $save_file_name);
1.337 banghart 2750: if ($result !~ m|^/uploaded/|) {
1.401 albertel 2751: $request->print('<span class="LC_error">An error occurred ('.$result.
1.398 albertel 2752: ') while trying to upload '.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'</span><br />');
1.356 banghart 2753: } else {
1.360 banghart 2754: # mark the file as read only
2755: my @files = ($save_file_name);
1.372 albertel 2756: my @what = ($symb,$env{'request.course.id'},'handback');
1.360 banghart 2757: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@files,\@what);
1.367 albertel 2758: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
2759: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
2760: }
2761: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
2762: $file_msg.= "\n".'<br /><span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span><br />";
2763:
1.337 banghart 2764: }
2765: $request->print("<br />".$fname." will be the uploaded file name");
1.354 albertel 2766: $request->print(" ".$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter});
1.337 banghart 2767: $file_counter++;
2768: }
1.367 albertel 2769: my $subject = "File Handed Back by Instructor ";
2770: my $message = "A file has been returned that was originally submitted in reponse to: <br />";
2771: $message .= "<strong>".&Apache::lonnet::gettitle($symb)."</strong><br />";
2772: $message .= ' The returned file(s) are named: '. $file_msg;
2773: $message .= " and can be found in your portfolio space.";
1.418 albertel 2774: my ($feedurl,$showsymb) =
2775: &get_feedurl_and_symb($symb,$domain,$stuname);
1.386 raeburn 2776: my $restitle = &Apache::lonnet::gettitle($symb);
2777: my $msgstatus =
2778: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject.
2779: ' (File Returned) ['.$restitle.']',$message,undef,
1.418 albertel 2780: $feedurl,undef,undef,undef,$showsymb,$restitle);
1.337 banghart 2781: }
2782: }
1.338 banghart 2783: return;
1.337 banghart 2784: }
2785:
1.418 albertel 2786: sub get_feedurl_and_symb {
2787: my ($symb,$uname,$udom) = @_;
2788: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
2789: $url = &Apache::lonnet::clutter($url);
2790: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
2791: $symb,$udom,$uname);
2792: if ($encrypturl =~ /^yes$/i) {
2793: &Apache::lonenc::encrypted(\$url,1);
2794: &Apache::lonenc::encrypted(\$symb,1);
2795: }
2796: return ($url,$symb);
2797: }
2798:
1.313 banghart 2799: sub get_submitted_files {
2800: my ($udom,$uname,$partid,$respid,$record) = @_;
2801: my @files;
2802: if ($$record{"resource.$partid.$respid.portfiles"}) {
2803: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
2804: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
2805: push(@files,$file_url.$file);
2806: }
2807: }
2808: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
2809: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
2810: }
2811: return (\@files);
2812: }
1.322 albertel 2813:
1.269 raeburn 2814: # ----------- Provides number of tries since last reset.
2815: sub get_num_tries {
2816: my ($record,$last_reset,$part) = @_;
2817: my $timestamp = '';
2818: my $num_tries = 0;
2819: if ($$record{'version'}) {
2820: for (my $version=$$record{'version'};$version>=1;$version--) {
2821: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
2822: $timestamp = $$record{$version.':timestamp'};
2823: if ($timestamp > $last_reset) {
2824: $num_tries ++;
2825: } else {
2826: last;
2827: }
2828: }
2829: }
2830: }
2831: return $num_tries;
2832: }
2833:
2834: # ----------- Determine decrements required in aggregate totals
2835: sub decrement_aggs {
2836: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
2837: my %decrement = (
2838: attempts => 0,
2839: users => 0,
2840: correct => 0
2841: );
2842: $decrement{'attempts'} = $aggtries;
2843: if ($solvedstatus =~ /^correct/) {
2844: $decrement{'correct'} = 1;
2845: }
2846: if ($aggtries == $totaltries) {
2847: $decrement{'users'} = 1;
2848: }
2849: foreach my $type (keys (%decrement)) {
2850: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
2851: }
2852: return;
2853: }
2854:
2855: # ----------- Determine timestamps for last reset of aggregate totals for parts
2856: sub get_last_resets {
1.270 albertel 2857: my ($symb,$courseid,$partids) =@_;
2858: my %last_resets;
1.269 raeburn 2859: my $cdom = $env{'course.'.$courseid.'.domain'};
2860: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 2861: my @keys;
2862: foreach my $part (@{$partids}) {
2863: push(@keys,"$symb\0$part\0resettime");
2864: }
2865: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
2866: $cdom,$cname);
2867: foreach my $part (@{$partids}) {
2868: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 2869: }
1.270 albertel 2870: return %last_resets;
1.269 raeburn 2871: }
2872:
1.251 banghart 2873: # ----------- Handles creating versions for portfolio files as answers
2874: sub version_portfiles {
1.343 banghart 2875: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 2876: my $version_parts = join('|',@$v_flag);
1.343 banghart 2877: my @returned_keys;
1.255 banghart 2878: my $parts = join('|', @$parts_graded);
1.359 www 2879: my $portfolio_root = &propath($domain,$stu_name).
2880: '/userfiles/portfolio';
1.277 albertel 2881: foreach my $key (keys(%$record)) {
1.259 banghart 2882: my $new_portfiles;
1.263 banghart 2883: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 2884: my @versioned_portfiles;
1.367 albertel 2885: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252 banghart 2886: foreach my $file (@portfiles) {
1.306 banghart 2887: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 2888: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
2889: my ($answer_name,$answer_ver,$answer_ext) =
2890: &file_name_version_ext($answer_file);
1.306 banghart 2891: my @dir_list = &Apache::lonnet::dirlist($directory,$domain,$stu_name,$portfolio_root);
1.342 banghart 2892: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.306 banghart 2893: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
2894: if ($new_answer ne 'problem getting file') {
1.342 banghart 2895: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 2896: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367 albertel 2897: [$directory.$new_answer],
1.306 banghart 2898: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 2899: }
1.252 banghart 2900: }
1.343 banghart 2901: $$record{$key} = join(',',@versioned_portfiles);
2902: push(@returned_keys,$key);
1.251 banghart 2903: }
2904: }
1.343 banghart 2905: return (@returned_keys);
1.305 banghart 2906: }
2907:
1.307 banghart 2908: sub get_next_version {
1.341 banghart 2909: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 2910: my $version;
2911: foreach my $row (@$dir_list) {
2912: my ($file) = split(/\&/,$row,2);
2913: my ($file_name,$file_version,$file_ext) =
2914: &file_name_version_ext($file);
2915: if (($file_name eq $answer_name) &&
2916: ($file_ext eq $answer_ext)) {
2917: # gets here if filename and extension match, regardless of version
2918: if ($file_version ne '') {
2919: # a versioned file is found so save it for later
2920: if ($file_version > $version) {
2921: $version = $file_version;
2922: }
2923: }
2924: }
2925: }
2926: $version ++;
2927: return($version);
2928: }
2929:
1.305 banghart 2930: sub version_selected_portfile {
1.306 banghart 2931: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
2932: my ($answer_name,$answer_ver,$answer_ext) =
2933: &file_name_version_ext($file_name);
2934: my $new_answer;
2935: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
2936: if($env{'form.copy'} eq '-1') {
2937: $new_answer = 'problem getting file';
2938: } else {
2939: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
2940: my $copy_result = &Apache::lonnet::finishuserfileupload(
2941: $stu_name,$domain,'copy',
2942: '/portfolio'.$directory.$new_answer);
2943: }
2944: return ($new_answer);
1.251 banghart 2945: }
2946:
1.304 albertel 2947: sub file_name_version_ext {
2948: my ($file)=@_;
2949: my @file_parts = split(/\./, $file);
2950: my ($name,$version,$ext);
2951: if (@file_parts > 1) {
2952: $ext=pop(@file_parts);
2953: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
2954: $version=pop(@file_parts);
2955: }
2956: $name=join('.',@file_parts);
2957: } else {
2958: $name=join('.',@file_parts);
2959: }
2960: return($name,$version,$ext);
2961: }
2962:
1.44 ng 2963: #--------------------------------------------------------------------------------------
2964: #
2965: #-------------------------- Next few routines handles grading by section or whole class
2966: #
2967: #--- Javascript to handle grading by section or whole class
1.42 ng 2968: sub viewgrades_js {
2969: my ($request) = shift;
2970:
1.41 ng 2971: $request->print(<<VIEWJAVASCRIPT);
2972: <script type="text/javascript" language="javascript">
1.45 ng 2973: function writePoint(partid,weight,point) {
1.125 ng 2974: var radioButton = document.classgrade["RADVAL_"+partid];
2975: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 2976: if (point == "textval") {
1.125 ng 2977: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 2978: if (isNaN(point) || parseFloat(point) < 0) {
2979: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.42 ng 2980: var resetbox = false;
2981: for (var i=0; i<radioButton.length; i++) {
2982: if (radioButton[i].checked) {
2983: textbox.value = i;
2984: resetbox = true;
2985: }
2986: }
2987: if (!resetbox) {
2988: textbox.value = "";
2989: }
2990: return;
2991: }
1.109 matthew 2992: if (parseFloat(point) > parseFloat(weight)) {
2993: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 2994: ") greater than the weight for the part. Accept?");
2995: if (resp == false) {
2996: textbox.value = "";
2997: return;
2998: }
2999: }
1.42 ng 3000: for (var i=0; i<radioButton.length; i++) {
3001: radioButton[i].checked=false;
1.109 matthew 3002: if (parseFloat(point) == i) {
1.42 ng 3003: radioButton[i].checked=true;
3004: }
3005: }
1.41 ng 3006:
1.42 ng 3007: } else {
1.125 ng 3008: textbox.value = parseFloat(point);
1.42 ng 3009: }
1.41 ng 3010: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3011: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3012: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3013: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3014: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3015: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3016: if (saveval != "correct") {
3017: scorename.value = point;
1.43 ng 3018: if (selname[0].selected != true) {
3019: selname[0].selected = true;
3020: }
1.42 ng 3021: }
3022: }
1.125 ng 3023: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3024: }
3025:
3026: function writeRadText(partid,weight) {
1.125 ng 3027: var selval = document.classgrade["SELVAL_"+partid];
3028: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3029: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3030: var textbox = document.classgrade["TEXTVAL_"+partid];
3031: if (selval[1].selected || selval[2].selected) {
1.42 ng 3032: for (var i=0; i<radioButton.length; i++) {
3033: radioButton[i].checked=false;
3034:
3035: }
3036: textbox.value = "";
3037:
3038: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3039: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3040: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3041: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3042: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3043: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3044: if ((saveval != "correct") || override) {
1.42 ng 3045: scorename.value = "";
1.125 ng 3046: if (selval[1].selected) {
3047: selname[1].selected = true;
3048: } else {
3049: selname[2].selected = true;
3050: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3051: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3052: }
1.42 ng 3053: }
3054: }
1.43 ng 3055: } else {
3056: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3057: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3058: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3059: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3060: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3061: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3062: if ((saveval != "correct") || override) {
1.125 ng 3063: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3064: selname[0].selected = true;
3065: }
3066: }
3067: }
1.42 ng 3068: }
3069:
3070: function changeSelect(partid,user) {
1.125 ng 3071: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3072: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3073: var point = textbox.value;
1.125 ng 3074: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3075:
1.109 matthew 3076: if (isNaN(point) || parseFloat(point) < 0) {
3077: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.44 ng 3078: textbox.value = "";
3079: return;
3080: }
1.109 matthew 3081: if (parseFloat(point) > parseFloat(weight)) {
3082: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3083: ") greater than the weight of the part. Accept?");
3084: if (resp == false) {
3085: textbox.value = "";
3086: return;
3087: }
3088: }
1.42 ng 3089: selval[0].selected = true;
3090: }
3091:
3092: function changeOneScore(partid,user) {
1.125 ng 3093: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3094: if (selval[1].selected || selval[2].selected) {
3095: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3096: if (selval[2].selected) {
3097: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3098: }
1.269 raeburn 3099: }
1.42 ng 3100: }
3101:
3102: function resetEntry(numpart) {
3103: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3104: var partid = document.classgrade["partid_"+ctpart].value;
3105: var radioButton = document.classgrade["RADVAL_"+partid];
3106: var textbox = document.classgrade["TEXTVAL_"+partid];
3107: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3108: for (var i=0; i<radioButton.length; i++) {
3109: radioButton[i].checked=false;
3110:
3111: }
3112: textbox.value = "";
3113: selval[0].selected = true;
3114:
3115: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3116: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3117: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3118: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3119: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3120: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3121: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3122: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3123: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3124: if (saveselval == "excused") {
1.43 ng 3125: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3126: } else {
1.43 ng 3127: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3128: }
3129: }
1.41 ng 3130: }
1.42 ng 3131: }
3132:
1.41 ng 3133: </script>
3134: VIEWJAVASCRIPT
1.42 ng 3135: }
3136:
1.44 ng 3137: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3138: sub viewgrades {
3139: my ($request) = shift;
3140: &viewgrades_js($request);
1.41 ng 3141:
1.324 albertel 3142: my ($symb) = &get_symb($request);
1.168 albertel 3143: #need to make sure we have the correct data for later EXT calls,
3144: #thus invalidate the cache
3145: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3146: $env{'course.'.$env{'request.course.id'}.'.num'},
3147: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3148: &Apache::lonnet::clear_EXT_cache_status();
3149:
1.398 albertel 3150: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
3151: $result.='<h4><b>Current Resource: </b>'.$env{'form.probTitle'}.'</h4>'."\n";
1.41 ng 3152:
3153: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3154: $result.=&jscriptNform($symb);
1.41 ng 3155:
1.44 ng 3156: #beginning of class grading form
1.442 banghart 3157: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3158: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3159: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3160: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3161: &build_section_inputs().
1.257 albertel 3162: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 3163: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.257 albertel 3164: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72 ng 3165:
1.126 ng 3166: my $sectionClass;
1.430 banghart 3167: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.257 albertel 3168: if ($env{'form.section'} eq 'all') {
1.126 ng 3169: $sectionClass='Class </h3>';
1.257 albertel 3170: } elsif ($env{'form.section'} eq 'none') {
1.431 banghart 3171: $sectionClass=&mt('Students in no Section').'</h3>';
1.52 albertel 3172: } else {
1.431 banghart 3173: $sectionClass=&mt('Students in Section(s) [_1]',$section_display).'</h3>';
1.52 albertel 3174: }
1.431 banghart 3175: $result.='<h3>'.&mt('Assign Common Grade To [_1]',$sectionClass);
1.474 albertel 3176: $result.= &Apache::loncommon::start_data_table();
1.44 ng 3177: #radio buttons/text box for assigning points for a section or class.
3178: #handles different parts of a problem
1.375 albertel 3179: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.42 ng 3180: my %weight = ();
3181: my $ctsparts = 0;
1.45 ng 3182: my %seen = ();
1.375 albertel 3183: my @part_response_id = &flatten_responseType($responseType);
3184: foreach my $part_response_id (@part_response_id) {
3185: my ($partid,$respid) = @{ $part_response_id };
3186: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3187: next if $seen{$partid};
3188: $seen{$partid}++;
1.375 albertel 3189: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3190: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3191: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3192:
1.474 albertel 3193: $result.=&Apache::loncommon::start_data_table_row().'<td>';
1.44 ng 3194: $result.='<input type="hidden" name="partid_'.
3195: $ctsparts.'" value="'.$partid.'" />'."\n";
3196: $result.='<input type="hidden" name="weight_'.
3197: $partid.'" value="'.$weight{$partid}.'" />'."\n";
1.324 albertel 3198: my $display_part=&get_display_part($partid,$symb);
1.474 albertel 3199: $result.=
3200: '<b>Part:</b> '.$display_part.' <b>Point:</b> </td><td>';
1.42 ng 3201: $result.='<table border="0"><tr>';
1.41 ng 3202: my $ctr = 0;
1.42 ng 3203: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.288 albertel 3204: $result.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3205: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3206: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3207: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3208: $ctr++;
3209: }
3210: $result.='</tr></table>';
1.44 ng 3211: $result.= '</td><td><b> or </b><input type="text" name="TEXTVAL_'.
1.54 albertel 3212: $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
3213: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.42 ng 3214: $weight{$partid}.' (problem weight)</td>'."\n";
1.474 albertel 3215: $result.= '<td><select name="SELVAL_'.$partid.'"'.
1.54 albertel 3216: 'onChange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 3217: $weight{$partid}.')"> '.
1.401 albertel 3218: '<option selected="selected"> </option>'.
1.125 ng 3219: '<option>excused</option>'.
1.265 www 3220: '<option>reset status</option></select></td>'.
1.474 albertel 3221: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" /> Override "Correct"</label></td>'.&Apache::loncommon::end_data_table_row()."\n";
1.42 ng 3222: $ctsparts++;
1.41 ng 3223: }
1.474 albertel 3224: $result.=&Apache::loncommon::end_data_table()."\n".
1.52 albertel 3225: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.391 banghart 3226: $result.='<input type="button" value="Revert to Default" '.
1.474 albertel 3227: 'onClick="javascript:resetEntry('.$ctsparts.');" />';
1.41 ng 3228:
1.44 ng 3229: #table listing all the students in a section/class
3230: #header of table
1.126 ng 3231: $result.= '<h3>Assign Grade to Specific Students in '.$sectionClass;
1.474 albertel 3232: $result.= &Apache::loncommon::start_data_table().
3233: &Apache::loncommon::start_data_table_header_row().
3234: '<th>No.</th>'.
3235: '<th>'.&nameUserString('header')."</th>\n";
1.324 albertel 3236: my (@parts) = sort(&getpartlist($symb));
3237: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3238: my @partids = ();
1.41 ng 3239: foreach my $part (@parts) {
3240: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.126 ng 3241: $display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
1.41 ng 3242: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3243: my ($partid) = &split_part_type($part);
1.269 raeburn 3244: push(@partids, $partid);
1.324 albertel 3245: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3246: if ($display =~ /^Partial Credit Factor/) {
1.474 albertel 3247: $result.='<th>Score Part: '.$display_part.
3248: ' <br />(weight = '.$weight{$partid}.')</th>'."\n";
1.41 ng 3249: next;
1.207 albertel 3250: } else {
3251: $display =~s/\[Part: \Q$partid\E\]/Part:<\/b> $display_part/;
1.41 ng 3252: }
1.53 albertel 3253: $display =~ s|Problem Status|Grade Status<br />|;
1.474 albertel 3254: $result.='<th>'.$display.'</th>'."\n";
1.41 ng 3255: }
1.474 albertel 3256: $result.=&Apache::loncommon::end_data_table_header_row();
1.44 ng 3257:
1.270 albertel 3258: my %last_resets =
3259: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3260:
1.41 ng 3261: #get info for each student
1.44 ng 3262: #list all the students - with points and grade status
1.257 albertel 3263: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41 ng 3264: my $ctr = 0;
1.294 albertel 3265: foreach (sort
3266: {
3267: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3268: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3269: }
3270: return $a cmp $b;
3271: } (keys(%$fullname))) {
1.126 ng 3272: $ctr++;
1.324 albertel 3273: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269 raeburn 3274: $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41 ng 3275: }
1.474 albertel 3276: $result.=&Apache::loncommon::end_data_table();
1.41 ng 3277: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.126 ng 3278: $result.='<input type="button" value="Save" '.
1.417 albertel 3279: 'onClick="javascript:submit();" target="_self" /></form>'."\n";
1.96 albertel 3280: if (scalar(%$fullname) eq 0) {
3281: my $colspan=3+scalar(@parts);
1.433 banghart 3282: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442 banghart 3283: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433 banghart 3284: $result='<span class="LC_warning">'.
3285: &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade',
1.442 banghart 3286: $section_display, $stu_status).
1.433 banghart 3287: '</span>';
1.96 albertel 3288: }
1.324 albertel 3289: $result.=&show_grading_menu_form($symb);
1.41 ng 3290: return $result;
3291: }
3292:
1.44 ng 3293: #--- call by previous routine to display each student
1.41 ng 3294: sub viewstudentgrade {
1.324 albertel 3295: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 3296: my ($uname,$udom) = split(/:/,$student);
3297: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269 raeburn 3298: my %aggregates = ();
1.474 albertel 3299: my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.233 albertel 3300: '<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
3301: "\n".$ctr.' </td><td> '.
1.44 ng 3302: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 3303: '\');" target="_self">'.$fullname.'</a> '.
1.398 albertel 3304: '<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281 albertel 3305: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 3306: foreach my $apart (@$parts) {
3307: my ($part,$type) = &split_part_type($apart);
1.41 ng 3308: my $score=$record{"resource.$part.$type"};
1.276 albertel 3309: $result.='<td align="center">';
1.269 raeburn 3310: my ($aggtries,$totaltries);
3311: unless (exists($aggregates{$part})) {
1.270 albertel 3312: $totaltries = $record{'resource.'.$part.'.tries'};
3313:
3314: $aggtries = $totaltries;
1.269 raeburn 3315: if ($$last_resets{$part}) {
1.270 albertel 3316: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
3317: $part);
3318: }
1.269 raeburn 3319: $result.='<input type="hidden" name="'.
3320: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
3321: $result.='<input type="hidden" name="'.
3322: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
3323: $aggregates{$part} = 1;
3324: }
1.41 ng 3325: if ($type eq 'awarded') {
1.320 albertel 3326: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 3327: $result.='<input type="hidden" name="'.
1.89 albertel 3328: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 3329: $result.='<input type="text" name="'.
1.89 albertel 3330: 'GD_'.$student.'_'.$part.'_awarded" '.
3331: 'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 3332: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 3333: } elsif ($type eq 'solved') {
3334: my ($status,$foo)=split(/_/,$score,2);
3335: $status = 'nothing' if ($status eq '');
1.89 albertel 3336: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 3337: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 3338: $result.=' <select name="'.
1.89 albertel 3339: 'GD_'.$student.'_'.$part.'_solved" '.
3340: 'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.401 albertel 3341: $result.= (($status eq 'excused') ? '<option> </option><option selected="selected">excused</option>'
3342: : '<option selected="selected"> </option><option>excused</option>')."\n";
1.125 ng 3343: $result.='<option>reset status</option>';
1.126 ng 3344: $result.="</select> </td>\n";
1.122 ng 3345: } else {
3346: $result.='<input type="hidden" name="'.
3347: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
3348: "\n";
1.233 albertel 3349: $result.='<input type="text" name="'.
1.122 ng 3350: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
3351: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 3352: }
3353: }
1.474 albertel 3354: $result.=&Apache::loncommon::end_data_table_row();
1.41 ng 3355: return $result;
1.38 ng 3356: }
3357:
1.44 ng 3358: #--- change scores for all the students in a section/class
3359: # record does not get update if unchanged
1.38 ng 3360: sub editgrades {
1.41 ng 3361: my ($request) = @_;
3362:
1.324 albertel 3363: my $symb=&get_symb($request);
1.433 banghart 3364: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477 albertel 3365: my $title='<h2>'.&mt('Current Grade Status').'</h2>';
3366: $title.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
1.433 banghart 3367: $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126 ng 3368:
1.477 albertel 3369: my $result= &Apache::loncommon::start_data_table().
3370: &Apache::loncommon::start_data_table_header_row().
3371: '<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
3372: '<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43 ng 3373: my %scoreptr = (
3374: 'correct' =>'correct_by_override',
3375: 'incorrect'=>'incorrect_by_override',
3376: 'excused' =>'excused',
3377: 'ungraded' =>'ungraded_attempted',
3378: 'nothing' => '',
3379: );
1.257 albertel 3380: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 3381:
1.44 ng 3382: my (@partid);
3383: my %weight = ();
1.54 albertel 3384: my %columns = ();
1.44 ng 3385: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 3386:
1.324 albertel 3387: my (@parts) = sort(&getpartlist($symb));
1.54 albertel 3388: my $header;
1.257 albertel 3389: while ($ctr < $env{'form.totalparts'}) {
3390: my $partid = $env{'form.partid_'.$ctr};
1.44 ng 3391: push @partid,$partid;
1.257 albertel 3392: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 3393: $ctr++;
1.54 albertel 3394: }
1.324 albertel 3395: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54 albertel 3396: foreach my $partid (@partid) {
1.478 ! albertel 3397: $header .= '<th align="center">'.&mt('Old Score').'</th>'.
! 3398: '<th align="center">'.&mt('New Score').'</th>';
1.54 albertel 3399: $columns{$partid}=2;
3400: foreach my $stores (@parts) {
3401: my ($part,$type) = &split_part_type($stores);
3402: if ($part !~ m/^\Q$partid\E/) { next;}
3403: if ($type eq 'awarded' || $type eq 'solved') { next; }
3404: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
3405: $display =~ s/\[Part: (\w)+\]//;
1.125 ng 3406: $display =~ s/Number of Attempts/Tries/;
1.478 ! albertel 3407: $header .= '<th align="center">'.&mt('Old '.$display).'</th>'.
! 3408: '<th align="center">'.&mt('New '.$display).'</th>';
1.54 albertel 3409: $columns{$partid}+=2;
3410: }
3411: }
3412: foreach my $partid (@partid) {
1.324 albertel 3413: my $display_part=&get_display_part($partid,$symb);
1.478 ! albertel 3414: $result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
! 3415: &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
! 3416: '</th>';
1.54 albertel 3417:
1.44 ng 3418: }
1.477 albertel 3419: $result .= &Apache::loncommon::end_data_table_header_row().
3420: &Apache::loncommon::start_data_table_header_row().
3421: $header.
3422: &Apache::loncommon::end_data_table_header_row();
3423: my @noupdate;
1.126 ng 3424: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 3425: for ($i=0; $i<$env{'form.total'}; $i++) {
1.93 albertel 3426: my $line;
1.257 albertel 3427: my $user = $env{'form.ctr'.$i};
1.281 albertel 3428: my ($uname,$udom)=split(/:/,$user);
1.44 ng 3429: my %newrecord;
3430: my $updateflag = 0;
1.281 albertel 3431: $line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108 albertel 3432: my $usec=$classlist->{"$uname:$udom"}[5];
1.105 albertel 3433: if (!&canmodify($usec)) {
1.126 ng 3434: my $numcols=scalar(@partid)*4+2;
1.477 albertel 3435: push(@noupdate,
1.478 ! albertel 3436: $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
! 3437: &mt('Not allowed to modify student')."</span></td></tr>");
1.105 albertel 3438: next;
3439: }
1.269 raeburn 3440: my %aggregate = ();
3441: my $aggregateflag = 0;
1.281 albertel 3442: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 3443: foreach (@partid) {
1.257 albertel 3444: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 3445: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
3446: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 3447: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
3448: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 3449: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
3450: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 3451: my $score;
3452: if ($partial eq '') {
1.257 albertel 3453: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 3454: } elsif ($partial > 0) {
3455: $score = 'correct_by_override';
3456: } elsif ($partial == 0) {
3457: $score = 'incorrect_by_override';
3458: }
1.257 albertel 3459: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 3460: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
3461:
1.292 albertel 3462: $newrecord{'resource.'.$_.'.regrader'}=
3463: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 3464: if ($dropMenu eq 'reset status' &&
3465: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 3466: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 3467: $newrecord{'resource.'.$_.'.solved'} = '';
3468: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 3469: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 3470: $updateflag = 1;
1.269 raeburn 3471: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
3472: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
3473: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
3474: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
3475: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
3476: $aggregateflag = 1;
3477: }
1.139 albertel 3478: } elsif (!($old_part eq $partial && $old_score eq $score)) {
3479: $updateflag = 1;
3480: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
3481: $newrecord{'resource.'.$_.'.solved'} = $score;
3482: $rec_update++;
1.125 ng 3483: }
3484:
1.93 albertel 3485: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 3486: '<td align="center">'.$awarded.
3487: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 3488:
1.54 albertel 3489:
3490: my $partid=$_;
3491: foreach my $stores (@parts) {
3492: my ($part,$type) = &split_part_type($stores);
3493: if ($part !~ m/^\Q$partid\E/) { next;}
3494: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 3495: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
3496: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 3497: if ($awarded ne '' && $awarded ne $old_aw) {
3498: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 3499: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 3500: $updateflag=1;
3501: }
1.93 albertel 3502: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 3503: '<td align="center">'.$awarded.' </td>';
3504: }
1.44 ng 3505: }
1.477 albertel 3506: $line.="\n";
1.301 albertel 3507:
3508: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3509: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3510:
1.44 ng 3511: if ($updateflag) {
3512: $count++;
1.257 albertel 3513: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 3514: $udom,$uname);
1.301 albertel 3515:
3516: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
3517: $cnum,$udom,$uname)) {
3518: # need to figure out if should be in queue.
3519: my %record =
3520: &Apache::lonnet::restore($symb,$env{'request.course.id'},
3521: $udom,$uname);
3522: my $all_graded = 1;
3523: my $none_graded = 1;
3524: foreach my $part (@parts) {
3525: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
3526: $all_graded = 0;
3527: } else {
3528: $none_graded = 0;
3529: }
3530: }
3531:
3532: if ($all_graded || $none_graded) {
3533: &Apache::bridgetask::remove_from_queue('gradingqueue',
3534: $symb,$cdom,$cnum,
3535: $udom,$uname);
3536: }
3537: }
3538:
1.477 albertel 3539: $result.=&Apache::loncommon::start_data_table_row().
3540: '<td align="right"> '.$updateCtr.' </td>'.$line.
3541: &Apache::loncommon::end_data_table_row();
1.126 ng 3542: $updateCtr++;
1.93 albertel 3543: } else {
1.477 albertel 3544: push(@noupdate,
3545: '<td align="right"> '.$noupdateCtr.' </td>'.$line);
1.126 ng 3546: $noupdateCtr++;
1.44 ng 3547: }
1.269 raeburn 3548: if ($aggregateflag) {
3549: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3550: $cdom,$cnum);
1.269 raeburn 3551: }
1.93 albertel 3552: }
1.477 albertel 3553: if (@noupdate) {
1.126 ng 3554: # my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
3555: my $numcols=scalar(@partid)*4+2;
1.477 albertel 3556: $result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478 ! albertel 3557: '<td align="center" colspan="'.$numcols.'">'.
! 3558: &mt('No Changes Occurred For the Students Below').
! 3559: '</td>'.
1.477 albertel 3560: &Apache::loncommon::end_data_table_row();
3561: foreach my $line (@noupdate) {
3562: $result.=
3563: &Apache::loncommon::start_data_table_row().
3564: $line.
3565: &Apache::loncommon::end_data_table_row();
3566: }
1.44 ng 3567: }
1.477 albertel 3568: $result .= &Apache::loncommon::end_data_table().
3569: &show_grading_menu_form($symb);
1.478 ! albertel 3570: my $msg = '<p><b>'.
! 3571: &mt('Number of records updated = [_1] for [quant,_2,student].',
! 3572: $rec_update,$count).'</b><br />'.
! 3573: '<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
! 3574: '</b></p>';
1.44 ng 3575: return $title.$msg.$result;
1.5 albertel 3576: }
1.54 albertel 3577:
3578: sub split_part_type {
3579: my ($partstr) = @_;
3580: my ($temp,@allparts)=split(/_/,$partstr);
3581: my $type=pop(@allparts);
1.439 albertel 3582: my $part=join('_',@allparts);
1.54 albertel 3583: return ($part,$type);
3584: }
3585:
1.44 ng 3586: #------------- end of section for handling grading by section/class ---------
3587: #
3588: #----------------------------------------------------------------------------
3589:
1.5 albertel 3590:
1.44 ng 3591: #----------------------------------------------------------------------------
3592: #
3593: #-------------------------- Next few routines handles grading by csv upload
3594: #
3595: #--- Javascript to handle csv upload
1.27 albertel 3596: sub csvupload_javascript_reverse_associate {
1.246 albertel 3597: my $error1=&mt('You need to specify the username or ID');
3598: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3599: return(<<ENDPICK);
3600: function verify(vf) {
3601: var foundsomething=0;
3602: var founduname=0;
1.243 albertel 3603: var foundID=0;
1.27 albertel 3604: for (i=0;i<=vf.nfields.value;i++) {
3605: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3606: if (i==0 && tw!=0) { foundID=1; }
3607: if (i==1 && tw!=0) { founduname=1; }
3608: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 3609: }
1.246 albertel 3610: if (founduname==0 && foundID==0) {
3611: alert('$error1');
3612: return;
1.27 albertel 3613: }
3614: if (foundsomething==0) {
1.246 albertel 3615: alert('$error2');
3616: return;
1.27 albertel 3617: }
3618: vf.submit();
3619: }
3620: function flip(vf,tf) {
3621: var nw=eval('vf.f'+tf+'.selectedIndex');
3622: var i;
3623: for (i=0;i<=vf.nfields.value;i++) {
3624: //can not pick the same destination field for both name and domain
3625: if (((i ==0)||(i ==1)) &&
3626: ((tf==0)||(tf==1)) &&
3627: (i!=tf) &&
3628: (eval('vf.f'+i+'.selectedIndex')==nw)) {
3629: eval('vf.f'+i+'.selectedIndex=0;')
3630: }
3631: }
3632: }
3633: ENDPICK
3634: }
3635:
3636: sub csvupload_javascript_forward_associate {
1.246 albertel 3637: my $error1=&mt('You need to specify the username or ID');
3638: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3639: return(<<ENDPICK);
3640: function verify(vf) {
3641: var foundsomething=0;
3642: var founduname=0;
1.243 albertel 3643: var foundID=0;
1.27 albertel 3644: for (i=0;i<=vf.nfields.value;i++) {
3645: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3646: if (tw==1) { foundID=1; }
3647: if (tw==2) { founduname=1; }
3648: if (tw>3) { foundsomething=1; }
1.27 albertel 3649: }
1.246 albertel 3650: if (founduname==0 && foundID==0) {
3651: alert('$error1');
3652: return;
1.27 albertel 3653: }
3654: if (foundsomething==0) {
1.246 albertel 3655: alert('$error2');
3656: return;
1.27 albertel 3657: }
3658: vf.submit();
3659: }
3660: function flip(vf,tf) {
3661: var nw=eval('vf.f'+tf+'.selectedIndex');
3662: var i;
3663: //can not pick the same destination field twice
3664: for (i=0;i<=vf.nfields.value;i++) {
3665: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
3666: eval('vf.f'+i+'.selectedIndex=0;')
3667: }
3668: }
3669: }
3670: ENDPICK
3671: }
3672:
1.26 albertel 3673: sub csvuploadmap_header {
1.324 albertel 3674: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 3675: my $javascript;
1.257 albertel 3676: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3677: $javascript=&csvupload_javascript_reverse_associate();
3678: } else {
3679: $javascript=&csvupload_javascript_forward_associate();
3680: }
1.45 ng 3681:
1.324 albertel 3682: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.257 albertel 3683: my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245 albertel 3684: my $ignore=&mt('Ignore First Line');
1.418 albertel 3685: $symb = &Apache::lonenc::check_encrypt($symb);
1.41 ng 3686: $request->print(<<ENDPICK);
1.26 albertel 3687: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 3688: <h3><span class="LC_info">Uploading Class Grades</span></h3>
1.45 ng 3689: $result
1.326 albertel 3690: <hr />
1.26 albertel 3691: <h3>Identify fields</h3>
3692: Total number of records found in file: $distotal <hr />
3693: Enter as many fields as you can. The system will inform you and bring you back
3694: to this page if the data selected is insufficient to run your class.<hr />
3695: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245 albertel 3696: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26 albertel 3697: <input type="hidden" name="associate" value="" />
3698: <input type="hidden" name="phase" value="three" />
3699: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 3700: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
3701: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 3702: <input type="hidden" name="upfile_associate"
1.257 albertel 3703: value="$env{'form.upfile_associate'}" />
1.26 albertel 3704: <input type="hidden" name="symb" value="$symb" />
1.257 albertel 3705: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
3706: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
1.246 albertel 3707: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 3708: <hr />
3709: <script type="text/javascript" language="Javascript">
3710: $javascript
3711: </script>
3712: ENDPICK
1.118 ng 3713: return '';
1.26 albertel 3714:
3715: }
3716:
3717: sub csvupload_fields {
1.324 albertel 3718: my ($symb) = @_;
3719: my (@parts) = &getpartlist($symb);
1.243 albertel 3720: my @fields=(['ID','Student ID'],
3721: ['username','Student Username'],
3722: ['domain','Student Domain']);
1.324 albertel 3723: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 3724: foreach my $part (sort(@parts)) {
3725: my @datum;
3726: my $display=&Apache::lonnet::metadata($url,$part.'.display');
3727: my $name=$part;
3728: if (!$display) { $display = $name; }
3729: @datum=($name,$display);
1.244 albertel 3730: if ($name=~/^stores_(.*)_awarded/) {
3731: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
3732: }
1.41 ng 3733: push(@fields,\@datum);
3734: }
3735: return (@fields);
1.26 albertel 3736: }
3737:
3738: sub csvuploadmap_footer {
1.41 ng 3739: my ($request,$i,$keyfields) =@_;
3740: $request->print(<<ENDPICK);
1.26 albertel 3741: </table>
3742: <input type="hidden" name="nfields" value="$i" />
3743: <input type="hidden" name="keyfields" value="$keyfields" />
3744: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
3745: </form>
3746: ENDPICK
3747: }
3748:
1.283 albertel 3749: sub checkforfile_js {
1.86 ng 3750: my $result =<<CSVFORMJS;
3751: <script type="text/javascript" language="javascript">
3752: function checkUpload(formname) {
3753: if (formname.upfile.value == "") {
3754: alert("Please use the browse button to select a file from your local directory.");
3755: return false;
3756: }
3757: formname.submit();
3758: }
3759: </script>
3760: CSVFORMJS
1.283 albertel 3761: return $result;
3762: }
3763:
3764: sub upcsvScores_form {
3765: my ($request) = shift;
1.324 albertel 3766: my ($symb)=&get_symb($request);
1.283 albertel 3767: if (!$symb) {return '';}
3768: my $result=&checkforfile_js();
1.257 albertel 3769: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.324 albertel 3770: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
1.118 ng 3771: $result.=$table;
1.326 albertel 3772: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
3773: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.370 www 3774: $result.=' <b>'.&mt('Specify a file containing the class scores for current resource').
1.86 ng 3775: '.</b></td></tr>'."\n";
3776: $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.370 www 3777: my $upload=&mt("Upload Scores");
1.86 ng 3778: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 3779: my $ignore=&mt('Ignore First Line');
1.418 albertel 3780: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 3781: $result.=<<ENDUPFORM;
1.106 albertel 3782: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 3783: <input type="hidden" name="symb" value="$symb" />
3784: <input type="hidden" name="command" value="csvuploadmap" />
1.257 albertel 3785: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
3786: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.86 ng 3787: $upfile_select
1.370 www 3788: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
1.283 albertel 3789: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86 ng 3790: </form>
3791: ENDUPFORM
1.370 www 3792: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
3793: &mt("How do I create a CSV file from a spreadsheet"))
3794: .'</td></tr></table>'."\n";
1.86 ng 3795: $result.='</td></tr></table><br /><br />'."\n";
1.324 albertel 3796: $result.=&show_grading_menu_form($symb);
1.86 ng 3797: return $result;
3798: }
3799:
3800:
1.26 albertel 3801: sub csvuploadmap {
1.41 ng 3802: my ($request)= @_;
1.324 albertel 3803: my ($symb)=&get_symb($request);
1.41 ng 3804: if (!$symb) {return '';}
1.72 ng 3805:
1.41 ng 3806: my $datatoken;
1.257 albertel 3807: if (!$env{'form.datatoken'}) {
1.41 ng 3808: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 3809: } else {
1.257 albertel 3810: $datatoken=$env{'form.datatoken'};
1.41 ng 3811: &Apache::loncommon::load_tmp_file($request);
1.26 albertel 3812: }
1.41 ng 3813: my @records=&Apache::loncommon::upfile_record_sep();
1.257 albertel 3814: if ($env{'form.noFirstLine'}) { shift(@records); }
1.324 albertel 3815: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 3816: my ($i,$keyfields);
3817: if (@records) {
1.324 albertel 3818: my @fields=&csvupload_fields($symb);
1.45 ng 3819:
1.257 albertel 3820: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3821: &Apache::loncommon::csv_print_samples($request,\@records);
3822: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
3823: \@fields);
3824: foreach (@fields) { $keyfields.=$_->[0].','; }
3825: chop($keyfields);
3826: } else {
3827: unshift(@fields,['none','']);
3828: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
3829: \@fields);
1.311 banghart 3830: foreach my $rec (@records) {
3831: my %temp = &Apache::loncommon::record_sep($rec);
3832: if (%temp) {
3833: $keyfields=join(',',sort(keys(%temp)));
3834: last;
3835: }
3836: }
1.41 ng 3837: }
3838: }
3839: &csvuploadmap_footer($request,$i,$keyfields);
1.324 albertel 3840: $request->print(&show_grading_menu_form($symb));
1.72 ng 3841:
1.41 ng 3842: return '';
1.27 albertel 3843: }
3844:
1.246 albertel 3845: sub csvuploadoptions {
1.41 ng 3846: my ($request)= @_;
1.324 albertel 3847: my ($symb)=&get_symb($request);
1.257 albertel 3848: my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246 albertel 3849: my $ignore=&mt('Ignore First Line');
3850: $request->print(<<ENDPICK);
3851: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 3852: <h3><span class="LC_info">Uploading Class Grade Options</span></h3>
1.246 albertel 3853: <input type="hidden" name="command" value="csvuploadassign" />
1.302 albertel 3854: <!--
1.246 albertel 3855: <p>
3856: <label>
3857: <input type="checkbox" name="show_full_results" />
3858: Show a table of all changes
3859: </label>
3860: </p>
1.302 albertel 3861: -->
1.246 albertel 3862: <p>
3863: <label>
3864: <input type="checkbox" name="overwite_scores" checked="checked" />
3865: Overwrite any existing score
3866: </label>
3867: </p>
3868: ENDPICK
3869: my %fields=&get_fields();
3870: if (!defined($fields{'domain'})) {
1.257 albertel 3871: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246 albertel 3872: $request->print("\n<p> Users are in domain: ".$domform."</p>\n");
3873: }
1.257 albertel 3874: foreach my $key (sort(keys(%env))) {
1.246 albertel 3875: if ($key !~ /^form\.(.*)$/) { next; }
3876: my $cleankey=$1;
3877: if ($cleankey eq 'command') { next; }
3878: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 3879: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 3880: }
3881: # FIXME do a check for any duplicated user ids...
3882: # FIXME do a check for any invalid user ids?...
1.290 albertel 3883: $request->print('<input type="submit" value="Assign Grades" /><br />
3884: <hr /></form>'."\n");
1.324 albertel 3885: $request->print(&show_grading_menu_form($symb));
1.246 albertel 3886: return '';
3887: }
3888:
3889: sub get_fields {
3890: my %fields;
1.257 albertel 3891: my @keyfields = split(/\,/,$env{'form.keyfields'});
3892: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
3893: if ($env{'form.upfile_associate'} eq 'reverse') {
3894: if ($env{'form.f'.$i} ne 'none') {
3895: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 3896: }
3897: } else {
1.257 albertel 3898: if ($env{'form.f'.$i} ne 'none') {
3899: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 3900: }
3901: }
1.27 albertel 3902: }
1.246 albertel 3903: return %fields;
3904: }
3905:
3906: sub csvuploadassign {
3907: my ($request)= @_;
1.324 albertel 3908: my ($symb)=&get_symb($request);
1.246 albertel 3909: if (!$symb) {return '';}
1.345 bowersj2 3910: my $error_msg = '';
1.246 albertel 3911: &Apache::loncommon::load_tmp_file($request);
3912: my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257 albertel 3913: if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246 albertel 3914: my %fields=&get_fields();
1.41 ng 3915: $request->print('<h3>Assigning Grades</h3>');
1.257 albertel 3916: my $courseid=$env{'request.course.id'};
1.97 albertel 3917: my ($classlist) = &getclasslist('all',0);
1.106 albertel 3918: my @notallowed;
1.41 ng 3919: my @skipped;
3920: my $countdone=0;
3921: foreach my $grade (@gradedata) {
3922: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 3923: my $domain;
3924: if ($entries{$fields{'domain'}}) {
3925: $domain=$entries{$fields{'domain'}};
3926: } else {
1.257 albertel 3927: $domain=$env{'form.default_domain'};
1.246 albertel 3928: }
1.243 albertel 3929: $domain=~s/\s//g;
1.41 ng 3930: my $username=$entries{$fields{'username'}};
1.160 albertel 3931: $username=~s/\s//g;
1.243 albertel 3932: if (!$username) {
3933: my $id=$entries{$fields{'ID'}};
1.247 albertel 3934: $id=~s/\s//g;
1.243 albertel 3935: my %ids=&Apache::lonnet::idget($domain,$id);
3936: $username=$ids{$id};
3937: }
1.41 ng 3938: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 3939: my $id=$entries{$fields{'ID'}};
3940: $id=~s/\s//g;
3941: if ($id) {
3942: push(@skipped,"$id:$domain");
3943: } else {
3944: push(@skipped,"$username:$domain");
3945: }
1.41 ng 3946: next;
3947: }
1.108 albertel 3948: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 3949: if (!&canmodify($usec)) {
3950: push(@notallowed,"$username:$domain");
3951: next;
3952: }
1.244 albertel 3953: my %points;
1.41 ng 3954: my %grades;
3955: foreach my $dest (keys(%fields)) {
1.244 albertel 3956: if ($dest eq 'ID' || $dest eq 'username' ||
3957: $dest eq 'domain') { next; }
3958: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
3959: if ($dest=~/stores_(.*)_points/) {
3960: my $part=$1;
3961: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
3962: $symb,$domain,$username);
1.345 bowersj2 3963: if ($wgt) {
3964: $entries{$fields{$dest}}=~s/\s//g;
3965: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 3966: my $award=($pcr == 0) ? 'incorrect_by_override'
3967: : 'correct_by_override';
1.345 bowersj2 3968: $grades{"resource.$part.awarded"}=$pcr;
3969: $grades{"resource.$part.solved"}=$award;
3970: $points{$part}=1;
3971: } else {
3972: $error_msg = "<br />" .
3973: &mt("Some point values were assigned"
3974: ." for problems with a weight "
3975: ."of zero. These values were "
3976: ."ignored.");
3977: }
1.244 albertel 3978: } else {
3979: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
3980: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
3981: my $store_key=$dest;
3982: $store_key=~s/^stores/resource/;
3983: $store_key=~s/_/\./g;
3984: $grades{$store_key}=$entries{$fields{$dest}};
3985: }
1.41 ng 3986: }
1.398 albertel 3987: if (! %grades) { push(@skipped,"$username:$domain no data to save"); }
1.257 albertel 3988: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
1.302 albertel 3989: my $result=&Apache::lonnet::cstore(\%grades,$symb,
3990: $env{'request.course.id'},
3991: $domain,$username);
3992: if ($result eq 'ok') {
3993: $request->print('.');
3994: } else {
3995: $request->print("<p>
1.398 albertel 3996: <span class=\"LC_error\">
3997: Failed to save student $username:$domain.
3998: Message when trying to save was ($result)
3999: </span>
1.302 albertel 4000: </p>" );
4001: }
1.41 ng 4002: $request->rflush();
4003: $countdone++;
4004: }
1.398 albertel 4005: $request->print("<br />Saved $countdone students\n");
1.41 ng 4006: if (@skipped) {
1.398 albertel 4007: $request->print('<p><h4><b>Skipped Students</b></h4></p>');
1.106 albertel 4008: foreach my $student (@skipped) { $request->print("$student<br />\n"); }
4009: }
4010: if (@notallowed) {
1.398 albertel 4011: $request->print('<p><span class="LC_error">Students Not Allowed to Modify</span></p>');
1.106 albertel 4012: foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
1.41 ng 4013: }
1.106 albertel 4014: $request->print("<br />\n");
1.324 albertel 4015: $request->print(&show_grading_menu_form($symb));
1.345 bowersj2 4016: return $error_msg;
1.26 albertel 4017: }
1.44 ng 4018: #------------- end of section for handling csv file upload ---------
4019: #
4020: #-------------------------------------------------------------------
4021: #
1.122 ng 4022: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4023: #
4024: #--- Select a page/sequence and a student to grade
1.68 ng 4025: sub pickStudentPage {
4026: my ($request) = shift;
4027:
4028: $request->print(<<LISTJAVASCRIPT);
4029: <script type="text/javascript" language="javascript">
4030:
4031: function checkPickOne(formname) {
1.76 ng 4032: if (radioSelection(formname.student) == null) {
1.68 ng 4033: alert("Please select the student you wish to grade.");
4034: return;
4035: }
1.125 ng 4036: ptr = pullDownSelection(formname.selectpage);
4037: formname.page.value = formname["page"+ptr].value;
4038: formname.title.value = formname["title"+ptr].value;
1.68 ng 4039: formname.submit();
4040: }
4041:
4042: </script>
4043: LISTJAVASCRIPT
1.118 ng 4044: &commonJSfunctions($request);
1.324 albertel 4045: my ($symb) = &get_symb($request);
1.257 albertel 4046: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4047: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4048: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4049:
1.398 albertel 4050: my $result='<h3><span class="LC_info"> '.
4051: 'Manual Grading by Page or Sequence</span></h3>';
1.68 ng 4052:
1.80 ng 4053: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.70 ng 4054: $result.=' <b>Problems from:</b> <select name="selectpage">'."\n";
1.423 albertel 4055: my ($titles,$symbx) = &getSymbMap();
1.137 albertel 4056: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4057: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4058: # my $type=($curpage =~ /\.(page|sequence)/);
1.70 ng 4059: my $ctr=0;
1.68 ng 4060: foreach (@$titles) {
4061: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.70 ng 4062: $result.='<option value="'.$ctr.'" '.
1.401 albertel 4063: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71 ng 4064: '>'.$showtitle.'</option>'."\n";
1.70 ng 4065: $ctr++;
1.68 ng 4066: }
1.326 albertel 4067: $result.= '</select>'."<br />\n";
1.70 ng 4068: $ctr=0;
4069: foreach (@$titles) {
4070: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4071: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4072: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4073: $ctr++;
4074: }
1.72 ng 4075: $result.='<input type="hidden" name="page" />'."\n".
4076: '<input type="hidden" name="title" />'."\n";
1.68 ng 4077:
1.401 albertel 4078: $result.=' <b>View Problems Text: </b><label><input type="radio" name="vProb" value="no" checked="checked" /> no </label>'."\n".
1.288 albertel 4079: '<label><input type="radio" name="vProb" value="yes" /> yes </label>'."<br />\n";
1.72 ng 4080:
1.71 ng 4081: $result.=' <b>Submission Details: </b>'.
1.288 albertel 4082: '<label><input type="radio" name="lastSub" value="none" /> none</label>'."\n".
1.401 albertel 4083: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> by dates and submissions</label>'."\n".
1.288 albertel 4084: '<label><input type="radio" name="lastSub" value="all" /> all details</label>'."\n";
1.432 banghart 4085:
4086: $result.=&build_section_inputs();
1.442 banghart 4087: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4088: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.72 ng 4089: '<input type="hidden" name="command" value="displayPage" />'."\n".
1.418 albertel 4090: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4091: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72 ng 4092:
1.382 albertel 4093: $result.=' <b>'.&mt('Use CODE:').' </b>'.
4094: '<input type="text" name="CODE" value="" /><br />'."\n";
4095:
1.80 ng 4096: $result.=' <input type="button" '.
1.126 ng 4097: 'onClick="javascript:checkPickOne(this.form);"value="Next->" /><br />'."\n";
1.72 ng 4098:
1.68 ng 4099: $request->print($result);
4100:
1.326 albertel 4101: my $studentTable.=' <b>Select a student you wish to grade and then click on the Next button.</b><br />'.
1.68 ng 4102: '<table border="0"><tr><td bgcolor="#777777">'.
4103: '<table border="0"><tr bgcolor="#e6ffff">'.
1.126 ng 4104: '<td align="right"> <b>No.</b></td>'.
1.129 ng 4105: '<td>'.&nameUserString('header').'</td>'.
1.126 ng 4106: '<td align="right"> <b>No.</b></td>'.
1.129 ng 4107: '<td>'.&nameUserString('header').'</td></tr>';
1.68 ng 4108:
1.76 ng 4109: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4110: my $ptr = 1;
1.294 albertel 4111: foreach my $student (sort
4112: {
4113: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4114: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4115: }
4116: return $a cmp $b;
4117: } (keys(%$fullname))) {
1.68 ng 4118: my ($uname,$udom) = split(/:/,$student);
1.126 ng 4119: $studentTable.=($ptr%2 == 1 ? '<tr bgcolor="#ffffe6">' : '</td>');
4120: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4121: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4122: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.126 ng 4123: $studentTable.=($ptr%2 == 0 ? '</td></tr>' : '');
1.68 ng 4124: $ptr++;
4125: }
1.381 albertel 4126: $studentTable.='</td><td> </td><td> </td></tr>' if ($ptr%2 == 0);
4127: $studentTable.='</table></td></tr></table>'."\n";
1.126 ng 4128: $studentTable.='<input type="button" '.
4129: 'onClick="javascript:checkPickOne(this.form);"value="Next->" /></form>'."\n";
1.68 ng 4130:
1.324 albertel 4131: $studentTable.=&show_grading_menu_form($symb);
1.68 ng 4132: $request->print($studentTable);
4133:
4134: return '';
4135: }
4136:
4137: sub getSymbMap {
1.132 bowersj2 4138: my $navmap = Apache::lonnavmaps::navmap->new();
1.68 ng 4139:
4140: my %symbx = ();
4141: my @titles = ();
1.117 bowersj2 4142: my $minder = 0;
4143:
4144: # Gather every sequence that has problems.
1.240 albertel 4145: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
4146: 1,0,1);
1.117 bowersj2 4147: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 4148: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 4149: my $title = $minder.'.'.
4150: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
4151: push(@titles, $title); # minder in case two titles are identical
4152: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 4153: $minder++;
1.241 albertel 4154: }
1.68 ng 4155: }
4156: return \@titles,\%symbx;
4157: }
4158:
1.72 ng 4159: #
4160: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 4161: sub displayPage {
4162: my ($request) = shift;
4163:
1.324 albertel 4164: my ($symb) = &get_symb($request);
1.257 albertel 4165: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4166: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4167: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4168: my $pageTitle = $env{'form.page'};
1.103 albertel 4169: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4170: my ($uname,$udom) = split(/:/,$env{'form.student'});
4171: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 4172:
4173: #need to make sure we have the correct data for later EXT calls,
4174: #thus invalidate the cache
4175: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 4176: $env{'course.'.$env{'request.course.id'}.'.num'},
4177: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 4178: &Apache::lonnet::clear_EXT_cache_status();
4179:
1.103 albertel 4180: if (!&canview($usec)) {
1.398 albertel 4181: $request->print('<span class="LC_warning">Unable to view requested student.('.$env{'form.student'}.')</span>');
1.324 albertel 4182: $request->print(&show_grading_menu_form($symb));
1.103 albertel 4183: return;
4184: }
1.398 albertel 4185: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.257 albertel 4186: $result.='<h3> Student: '.&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom).
1.129 ng 4187: '</h3>'."\n";
1.382 albertel 4188: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
4189: $result.='<h3> CODE: '.$env{'form.CODE'}.'</h3>'."\n";
4190: } else {
4191: delete($env{'form.CODE'});
4192: }
1.71 ng 4193: &sub_page_js($request);
4194: $request->print($result);
4195:
1.132 bowersj2 4196: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 4197: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 4198: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4199: if (!$map) {
1.398 albertel 4200: $request->print('<span class="LC_warning">Unable to view requested sequence. ('.$resUrl.')</span>');
1.324 albertel 4201: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4202: return;
4203: }
1.68 ng 4204: my $iterator = $navmap->getIterator($map->map_start(),
4205: $map->map_finish());
4206:
1.71 ng 4207: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 4208: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 4209: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
4210: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 4211: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 4212: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 4213: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.125 ng 4214: '<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257 albertel 4215: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71 ng 4216:
1.382 albertel 4217: if (defined($env{'form.CODE'})) {
4218: $studentTable.=
4219: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
4220: }
1.381 albertel 4221: my $checkIcon = '<img alt="'.&mt('Check Mark').
4222: '" src="'.$request->dir_config('lonIconsURL').
1.71 ng 4223: '/check.gif" height="16" border="0" />';
4224:
1.118 ng 4225: $studentTable.=' <b>Note:</b> Problems graded correct by the computer are marked with a '.$checkIcon.
4226: ' symbol.'."\n".
1.71 ng 4227: '<table border="0"><tr><td bgcolor="#777777">'.
4228: '<table border="0"><tr bgcolor="#e6ffff">'.
1.118 ng 4229: '<td align="center"><b> Prob. </b></td>'.
1.257 albertel 4230: '<td><b> '.($env{'form.vProb'} eq 'no' ? 'Title' : 'Problem Text').'/Grade</b></td></tr>';
1.71 ng 4231:
1.329 albertel 4232: &Apache::lonxml::clear_problem_counter();
1.196 albertel 4233: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 4234: $iterator->next(); # skip the first BEGIN_MAP
4235: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 4236: while ($depth > 0) {
1.68 ng 4237: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4238: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 4239:
1.385 albertel 4240: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4241: my $parts = $curRes->parts();
1.68 ng 4242: my $title = $curRes->compTitle();
1.71 ng 4243: my $symbx = $curRes->symb();
1.196 albertel 4244: $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326 albertel 4245: (scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).' parts)').'</td>';
1.71 ng 4246: $studentTable.='<td valign="top">';
1.382 albertel 4247: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 4248: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 4249: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 4250: undef,'both',\%form);
1.71 ng 4251: } else {
1.382 albertel 4252: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 4253: $companswer =~ s|<form(.*?)>||g;
4254: $companswer =~ s|</form>||g;
1.71 ng 4255: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 4256: # $companswer =~ s/$1/ /ms;
1.326 albertel 4257: # $request->print('match='.$1."<br />\n");
1.71 ng 4258: # }
1.116 ng 4259: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.326 albertel 4260: $studentTable.=' <b>'.$title.'</b> <br /> <b>Correct answer:</b><br />'.$companswer;
1.71 ng 4261: }
4262:
1.257 albertel 4263: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 4264:
1.257 albertel 4265: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 4266: if ($record{'version'} eq '') {
1.398 albertel 4267: $studentTable.='<br /> <span class="LC_warning">No recorded submission for this problem</span><br />';
1.71 ng 4268: } else {
1.116 ng 4269: my %responseType = ();
4270: foreach my $partid (@{$parts}) {
1.147 albertel 4271: my @responseIds =$curRes->responseIds($partid);
4272: my @responseType =$curRes->responseType($partid);
4273: my %responseIds;
4274: for (my $i=0;$i<=$#responseIds;$i++) {
4275: $responseIds{$responseIds[$i]}=$responseType[$i];
4276: }
4277: $responseType{$partid} = \%responseIds;
1.116 ng 4278: }
1.148 albertel 4279: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 4280:
1.71 ng 4281: }
1.257 albertel 4282: } elsif ($env{'form.lastSub'} eq 'all') {
4283: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71 ng 4284: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 4285: $env{'request.course.id'},
1.71 ng 4286: '','.submission');
4287:
4288: }
1.103 albertel 4289: if (&canmodify($usec)) {
4290: foreach my $partid (@{$parts}) {
4291: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
4292: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
4293: $question++;
4294: }
1.196 albertel 4295: $prob++;
1.71 ng 4296: }
4297: $studentTable.='</td></tr>';
1.68 ng 4298:
1.103 albertel 4299: }
1.68 ng 4300: $curRes = $iterator->next();
4301: }
4302:
1.381 albertel 4303: $studentTable.='</table></td></tr></table>'."\n".
1.125 ng 4304: '<input type="button" value="Save" '.
1.381 albertel 4305: 'onClick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
1.71 ng 4306: '</form>'."\n";
1.324 albertel 4307: $studentTable.=&show_grading_menu_form($symb);
1.71 ng 4308: $request->print($studentTable);
4309:
4310: return '';
1.119 ng 4311: }
4312:
4313: sub displaySubByDates {
1.148 albertel 4314: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 4315: my $isCODE=0;
1.335 albertel 4316: my $isTask = ($symb =~/\.task$/);
1.224 albertel 4317: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 4318: my $studentTable=&Apache::loncommon::start_data_table().
4319: &Apache::loncommon::start_data_table_header_row().
4320: '<th>'.&mt('Date/Time').'</th>'.
4321: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
4322: '<th>'.&mt('Submission').'</th>'.
4323: '<th>'.&mt('Status').'</th>'.
4324: &Apache::loncommon::end_data_table_header_row();
1.119 ng 4325: my ($version);
4326: my %mark;
1.148 albertel 4327: my %orders;
1.119 ng 4328: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 4329: if (!exists($$record{'1:timestamp'})) {
1.467 albertel 4330: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br />';
1.147 albertel 4331: }
1.335 albertel 4332:
4333: my $interaction;
1.119 ng 4334: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 4335: my $timestamp =
4336: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 4337: if (exists($$record{$version.':resource.0.version'})) {
4338: $interaction = $$record{$version.':resource.0.version'};
4339: }
4340:
4341: my $where = ($isTask ? "$version:resource.$interaction"
4342: : "$version:resource");
1.467 albertel 4343: $studentTable.=&Apache::loncommon::start_data_table_row().
4344: '<td>'.$timestamp.'</td>';
1.224 albertel 4345: if ($isCODE) {
4346: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
4347: }
1.119 ng 4348: my @versionKeys = split(/\:/,$$record{$version.':keys'});
4349: my @displaySub = ();
4350: foreach my $partid (@{$parts}) {
1.335 albertel 4351: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
4352: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
4353:
4354:
1.122 ng 4355: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 4356: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 4357: foreach my $matchKey (@matchKey) {
1.198 albertel 4358: if (exists($$record{$version.':'.$matchKey}) &&
4359: $$record{$version.':'.$matchKey} ne '') {
1.335 albertel 4360:
4361: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
4362: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.467 albertel 4363: $displaySub[0].='<b>'.&mt('Part:').'</b> '.$display_part.' ';
4364: $displaySub[0].='<span class="LC_internal_info">('.&mt('ID').' '.
1.398 albertel 4365: $responseId.')</span> <b>';
1.335 albertel 4366: if ($$record{"$where.$partid.tries"} eq '') {
1.467 albertel 4367: $displaySub[0].=&mt('Trial not counted');
1.147 albertel 4368: } else {
1.467 albertel 4369: $displaySub[0].=&mt('Trial [_1]',
4370: $$record{"$where.$partid.tries"});
1.147 albertel 4371: }
1.335 albertel 4372: my $responseType=($isTask ? 'Task'
4373: : $responseType->{$partid}->{$responseId});
1.148 albertel 4374: if (!exists($orders{$partid})) { $orders{$partid}={}; }
4375: if (!exists($orders{$partid}->{$responseId})) {
4376: $orders{$partid}->{$responseId}=
4377: &get_order($partid,$responseId,$symb,$uname,$udom);
4378: }
1.147 albertel 4379: $displaySub[0].='</b> '.
1.336 albertel 4380: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom).'<br />';
1.147 albertel 4381: }
4382: }
1.335 albertel 4383: if (exists($$record{"$where.$partid.checkedin"})) {
4384: $displaySub[1].='Checked in by '.
4385: $$record{"$where.$partid.checkedin"}.' into slot '.
4386: $$record{"$where.$partid.checkedin.slot"}.
4387: '<br />';
4388: }
4389: if (exists $$record{"$where.$partid.award"}) {
1.207 albertel 4390: $displaySub[1].='<b>Part:</b> '.$display_part.' '.
1.335 albertel 4391: lc($$record{"$where.$partid.award"}).' '.
4392: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 4393: '<br />';
4394: }
1.335 albertel 4395: if (exists $$record{"$where.$partid.regrader"}) {
4396: $displaySub[2].=$$record{"$where.$partid.regrader"}.
4397: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
4398: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
4399: $displaySub[2].=
4400: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 4401: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 4402: }
4403: }
4404: # needed because old essay regrader has not parts info
4405: if (exists $$record{"$version:resource.regrader"}) {
4406: $displaySub[2].=$$record{"$version:resource.regrader"};
4407: }
4408: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
4409: if ($displaySub[2]) {
1.467 albertel 4410: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 4411: }
1.467 albertel 4412: $studentTable.=' </td>'.
4413: &Apache::loncommon::end_data_table_row();
1.119 ng 4414: }
1.467 albertel 4415: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 4416: return $studentTable;
1.71 ng 4417: }
4418:
4419: sub updateGradeByPage {
4420: my ($request) = shift;
4421:
1.257 albertel 4422: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4423: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4424: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4425: my $pageTitle = $env{'form.page'};
1.103 albertel 4426: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4427: my ($uname,$udom) = split(/:/,$env{'form.student'});
4428: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 4429: if (!&canmodify($usec)) {
1.398 albertel 4430: $request->print('<span class="LC_warning">Unable to modify requested student.('.$env{'form.student'}.'</span>');
1.324 albertel 4431: $request->print(&show_grading_menu_form($env{'form.symb'}));
1.103 albertel 4432: return;
4433: }
1.398 albertel 4434: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.257 albertel 4435: $result.='<h3> Student: '.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 4436: '</h3>'."\n";
1.70 ng 4437:
1.68 ng 4438: $request->print($result);
4439:
1.132 bowersj2 4440: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 4441: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 4442: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4443: if (!$map) {
1.398 albertel 4444: $request->print('<span class="LC_warning">Unable to grade requested sequence. ('.$resUrl.')</span>');
1.324 albertel 4445: my ($symb)=&get_symb($request);
4446: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4447: return;
4448: }
1.71 ng 4449: my $iterator = $navmap->getIterator($map->map_start(),
4450: $map->map_finish());
1.70 ng 4451:
1.71 ng 4452: my $studentTable='<table border="0"><tr><td bgcolor="#777777">'.
1.68 ng 4453: '<table border="0"><tr bgcolor="#e6ffff">'.
1.125 ng 4454: '<td align="center"><b> Prob. </b></td>'.
1.71 ng 4455: '<td><b> Title </b></td>'.
4456: '<td><b> Previous Score </b></td>'.
4457: '<td><b> New Score </b></td></tr>';
4458:
4459: $iterator->next(); # skip the first BEGIN_MAP
4460: my $curRes = $iterator->next(); # for "current resource"
1.196 albertel 4461: my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101 albertel 4462: while ($depth > 0) {
1.71 ng 4463: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4464: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 4465:
1.385 albertel 4466: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4467: my $parts = $curRes->parts();
1.71 ng 4468: my $title = $curRes->compTitle();
4469: my $symbx = $curRes->symb();
1.196 albertel 4470: $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326 albertel 4471: (scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).' parts)').'</td>';
1.71 ng 4472: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
4473:
4474: my %newrecord=();
4475: my @displayPts=();
1.269 raeburn 4476: my %aggregate = ();
4477: my $aggregateflag = 0;
1.71 ng 4478: foreach my $partid (@{$parts}) {
1.257 albertel 4479: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
4480: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 4481:
1.257 albertel 4482: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
4483: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 4484: my $partial = $newpts/$wgt;
4485: my $score;
4486: if ($partial > 0) {
4487: $score = 'correct_by_override';
1.125 ng 4488: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 4489: $score = 'incorrect_by_override';
4490: }
1.257 albertel 4491: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 4492: if ($dropMenu eq 'excused') {
1.71 ng 4493: $partial = '';
4494: $score = 'excused';
1.125 ng 4495: } elsif ($dropMenu eq 'reset status'
1.257 albertel 4496: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 4497: $newrecord{'resource.'.$partid.'.tries'} = 0;
4498: $newrecord{'resource.'.$partid.'.solved'} = '';
4499: $newrecord{'resource.'.$partid.'.award'} = '';
4500: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 4501: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 4502: $changeflag++;
4503: $newpts = '';
1.269 raeburn 4504:
4505: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
4506: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
4507: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
4508: if ($aggtries > 0) {
4509: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
4510: $aggregateflag = 1;
4511: }
1.71 ng 4512: }
1.324 albertel 4513: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 4514: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.207 albertel 4515: $displayPts[0].=' <b>Part:</b> '.$display_part.' = '.
1.71 ng 4516: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 4517: ' <br />';
1.207 albertel 4518: $displayPts[1].=' <b>Part:</b> '.$display_part.' = '.
1.125 ng 4519: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 4520: ' <br />';
1.71 ng 4521: $question++;
1.380 albertel 4522: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 4523:
1.71 ng 4524: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 4525: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 4526: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 4527: if (scalar(keys(%newrecord)) > 0);
1.71 ng 4528:
4529: $changeflag++;
4530: }
4531: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 4532: my %record =
4533: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
4534: $udom,$uname);
4535:
4536: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
4537: $newrecord{'resource.CODE'} = $env{'form.CODE'};
4538: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
4539: $newrecord{'resource.CODE'} = '';
4540: }
1.257 albertel 4541: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 4542: $udom,$uname);
1.382 albertel 4543: %record = &Apache::lonnet::restore($symbx,
4544: $env{'request.course.id'},
4545: $udom,$uname);
1.380 albertel 4546: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
4547: $cdom,$cnum,$udom,$uname);
1.71 ng 4548: }
1.380 albertel 4549:
1.269 raeburn 4550: if ($aggregateflag) {
4551: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
4552: $env{'course.'.$env{'request.course.id'}.'.domain'},
4553: $env{'course.'.$env{'request.course.id'}.'.num'});
4554: }
1.125 ng 4555:
1.71 ng 4556: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
4557: '<td valign="top">'.$displayPts[1].'</td>'.
4558: '</tr>';
1.68 ng 4559:
1.196 albertel 4560: $prob++;
1.68 ng 4561: }
1.71 ng 4562: $curRes = $iterator->next();
1.68 ng 4563: }
1.98 albertel 4564:
1.71 ng 4565: $studentTable.='</td></tr></table></td></tr></table>';
1.324 albertel 4566: $studentTable.=&show_grading_menu_form($env{'form.symb'});
1.76 ng 4567: my $grademsg=($changeflag == 0 ? 'No score was changed or updated.' :
4568: 'The scores were changed for '.
4569: $changeflag.' problem'.($changeflag == 1 ? '.' : 's.'));
4570: $request->print($grademsg.$studentTable);
1.68 ng 4571:
1.70 ng 4572: return '';
4573: }
4574:
1.72 ng 4575: #-------- end of section for handling grading by page/sequence ---------
4576: #
4577: #-------------------------------------------------------------------
4578:
1.75 albertel 4579: #--------------------Scantron Grading-----------------------------------
4580: #
4581: #------ start of section for handling grading by page/sequence ---------
4582:
1.423 albertel 4583: =pod
4584:
4585: =head1 Bubble sheet grading routines
4586:
1.424 albertel 4587: For this documentation:
4588:
4589: 'scanline' refers to the full line of characters
4590: from the file that we are parsing that represents one entire sheet
4591:
4592: 'bubble line' refers to the data
4593: representing the line of bubbles that are on the physical bubble sheet
4594:
4595:
4596: The overall process is that a scanned in bubble sheet data is uploaded
4597: into a course. When a user wants to grade, they select a
4598: sequence/folder of resources, a file of bubble sheet info, and pick
4599: one of the predefined configurations for what each scanline looks
4600: like.
4601:
4602: Next each scanline is checked for any errors of either 'missing
1.435 foxr 4603: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 4604: because too light bubbling), 'double bubble' (each bubble line should
4605: have no more that one letter picked), invalid or duplicated CODE,
4606: invalid student ID
4607:
4608: If the CODE option is used that determines the randomization of the
4609: homework problems, either way the student ID is looked up into a
4610: username:domain.
4611:
4612: During the validation phase the instructor can choose to skip scanlines.
4613:
1.435 foxr 4614: After the validation phase, there are now 3 bubble sheet files
1.424 albertel 4615:
4616: scantron_original_filename (unmodified original file)
4617: scantron_corrected_filename (file where the corrected information has replaced the original information)
4618: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
4619:
4620: Also there is a separate hash nohist_scantrondata that contains extra
4621: correction information that isn't representable in the bubble sheet
4622: file (see &scantron_getfile() for more information)
4623:
4624: After all scanlines are either valid, marked as valid or skipped, then
4625: foreach line foreach problem in the picked sequence, an ssi request is
4626: made that simulates a user submitting their selected letter(s) against
4627: the homework problem.
1.423 albertel 4628:
4629: =over 4
4630:
4631:
4632:
4633: =item defaultFormData
4634:
4635: Returns html hidden inputs used to hold context/default values.
4636:
4637: Arguments:
4638: $symb - $symb of the current resource
4639:
4640: =cut
1.422 foxr 4641:
1.81 albertel 4642: sub defaultFormData {
1.324 albertel 4643: my ($symb)=@_;
1.447 foxr 4644: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4645: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
4646: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81 albertel 4647: }
4648:
1.447 foxr 4649:
1.423 albertel 4650: =pod
4651:
4652: =item getSequenceDropDown
4653:
4654: Return html dropdown of possible sequences to grade
4655:
4656: Arguments:
4657: $symb - $symb of the current resource
4658:
4659: =cut
1.422 foxr 4660:
1.75 albertel 4661: sub getSequenceDropDown {
1.423 albertel 4662: my ($symb)=@_;
1.75 albertel 4663: my $result='<select name="selectpage">'."\n";
1.423 albertel 4664: my ($titles,$symbx) = &getSymbMap();
1.137 albertel 4665: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 4666: my $ctr=0;
4667: foreach (@$titles) {
4668: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4669: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 4670: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 4671: '>'.$showtitle.'</option>'."\n";
4672: $ctr++;
4673: }
4674: $result.= '</select>';
4675: return $result;
4676: }
4677:
1.423 albertel 4678:
4679: =pod
4680:
4681: =item scantron_filenames
4682:
4683: Returns a list of the scantron files in the current course
4684:
4685: =cut
1.422 foxr 4686:
1.202 albertel 4687: sub scantron_filenames {
1.257 albertel 4688: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
4689: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.157 albertel 4690: my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
1.359 www 4691: &propath($cdom,$cname));
1.202 albertel 4692: my @possiblenames;
1.201 albertel 4693: foreach my $filename (sort(@files)) {
1.157 albertel 4694: ($filename)=split(/&/,$filename);
4695: if ($filename!~/^scantron_orig_/) { next ; }
4696: $filename=~s/^scantron_orig_//;
1.202 albertel 4697: push(@possiblenames,$filename);
4698: }
4699: return @possiblenames;
4700: }
4701:
1.423 albertel 4702: =pod
4703:
4704: =item scantron_uploads
4705:
4706: Returns html drop-down list of scantron files in current course.
4707:
4708: Arguments:
4709: $file2grade - filename to set as selected in the dropdown
4710:
4711: =cut
1.422 foxr 4712:
1.202 albertel 4713: sub scantron_uploads {
1.209 ng 4714: my ($file2grade) = @_;
1.202 albertel 4715: my $result= '<select name="scantron_selectfile">';
4716: $result.="<option></option>";
4717: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 4718: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 4719: }
4720: $result.="</select>";
4721: return $result;
4722: }
4723:
1.423 albertel 4724: =pod
4725:
4726: =item scantron_scantab
4727:
4728: Returns html drop down of the scantron formats in the scantronformat.tab
4729: file.
4730:
4731: =cut
1.422 foxr 4732:
1.82 albertel 4733: sub scantron_scantab {
4734: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
4735: my $result='<select name="scantron_format">'."\n";
1.191 albertel 4736: $result.='<option></option>'."\n";
1.82 albertel 4737: foreach my $line (<$fh>) {
4738: my ($name,$descrip)=split(/:/,$line);
4739: if ($name =~ /^\#/) { next; }
4740: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
4741: }
4742: $result.='</select>'."\n";
4743:
4744: return $result;
4745: }
4746:
1.423 albertel 4747: =pod
4748:
4749: =item scantron_CODElist
4750:
4751: Returns html drop down of the saved CODE lists from current course,
4752: generated from earlier printings.
4753:
4754: =cut
1.422 foxr 4755:
1.186 albertel 4756: sub scantron_CODElist {
1.257 albertel 4757: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
4758: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 4759: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
4760: my $namechoice='<option></option>';
1.225 albertel 4761: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 4762: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 4763: if ($name =~ /^type\0/) { next; }
1.186 albertel 4764: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
4765: }
4766: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
4767: return $namechoice;
4768: }
4769:
1.423 albertel 4770: =pod
4771:
4772: =item scantron_CODEunique
4773:
4774: Returns the html for "Each CODE to be used once" radio.
4775:
4776: =cut
1.422 foxr 4777:
1.186 albertel 4778: sub scantron_CODEunique {
1.381 albertel 4779: my $result='<span style="white-space: nowrap;">
1.272 albertel 4780: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 4781: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 4782: </span>
4783: <span style="white-space: nowrap;">
1.272 albertel 4784: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 4785: value="no" />'.&mt('No').' </label>
1.381 albertel 4786: </span>';
1.186 albertel 4787: return $result;
4788: }
1.423 albertel 4789:
4790: =pod
4791:
4792: =item scantron_selectphase
4793:
4794: Generates the initial screen to start the bubble sheet process.
4795: Allows for - starting a grading run.
1.424 albertel 4796: - downloading existing scan data (original, corrected
1.423 albertel 4797: or skipped info)
4798:
4799: - uploading new scan data
4800:
4801: Arguments:
4802: $r - The Apache request object
4803: $file2grade - name of the file that contain the scanned data to score
4804:
4805: =cut
1.186 albertel 4806:
1.75 albertel 4807: sub scantron_selectphase {
1.209 ng 4808: my ($r,$file2grade) = @_;
1.324 albertel 4809: my ($symb)=&get_symb($r);
1.75 albertel 4810: if (!$symb) {return '';}
1.423 albertel 4811: my $sequence_selector=&getSequenceDropDown($symb);
1.324 albertel 4812: my $default_form_data=&defaultFormData($symb);
4813: my $grading_menu_button=&show_grading_menu_form($symb);
1.209 ng 4814: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 4815: my $format_selector=&scantron_scantab();
1.186 albertel 4816: my $CODE_selector=&scantron_CODElist();
4817: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 4818: my $result;
1.422 foxr 4819:
4820: # Chunk of form to prompt for a file to grade and how:
4821:
1.75 albertel 4822: $result.= <<SCANTRONFORM;
1.162 albertel 4823: <table width="100%" border="0">
1.75 albertel 4824: <tr>
1.226 albertel 4825: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
1.75 albertel 4826: <td bgcolor="#777777">
1.203 albertel 4827: <input type="hidden" name="command" value="scantron_warning" />
1.162 albertel 4828: $default_form_data
1.75 albertel 4829: <table width="100%" border="0">
4830: <tr bgcolor="#e6ffff">
1.174 albertel 4831: <td colspan="2">
4832: <b>Specify file and which Folder/Sequence to grade</b>
1.75 albertel 4833: </td>
4834: </tr>
4835: <tr bgcolor="#ffffe6">
1.174 albertel 4836: <td> Sequence to grade: </td><td> $sequence_selector </td>
1.75 albertel 4837: </tr>
4838: <tr bgcolor="#ffffe6">
1.174 albertel 4839: <td> Filename of scoring office file: </td><td> $file_selector </td>
1.75 albertel 4840: </tr>
1.82 albertel 4841: <tr bgcolor="#ffffe6">
1.174 albertel 4842: <td> Format of data file: </td><td> $format_selector </td>
1.82 albertel 4843: </tr>
1.157 albertel 4844: <tr bgcolor="#ffffe6">
1.186 albertel 4845: <td> Saved CODEs to validate against: </td><td> $CODE_selector</td>
4846: </tr>
4847: <tr bgcolor="#ffffe6">
4848: <td> Each CODE is only to be used once:</td><td> $CODE_unique </td>
4849: </tr>
4850: <tr bgcolor="#ffffe6">
1.187 albertel 4851: <td> Options: </td>
4852: <td>
1.272 albertel 4853: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> Do only previously skipped records</label> <br />
1.424 albertel 4854: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> Remove all existing corrections</label> <br />
1.331 albertel 4855: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> Skip hidden resources when grading</label>
1.187 albertel 4856: </td>
4857: </tr>
4858: <tr bgcolor="#ffffe6">
1.174 albertel 4859: <td colspan="2">
1.265 www 4860: <input type="submit" value="Grading: Validate Scantron Records" />
1.162 albertel 4861: </td>
4862: </tr>
4863: </table>
1.226 albertel 4864: </td>
4865: </form>
1.162 albertel 4866: </tr>
4867: SCANTRONFORM
4868:
4869: $r->print($result);
4870:
1.257 albertel 4871: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
4872: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 4873:
1.422 foxr 4874: # Chunk of form to prompt for a scantron file upload.
4875:
1.162 albertel 4876: $r->print(<<SCANTRONFORM);
4877: <tr>
4878: <td bgcolor="#777777">
4879: <table width="100%" border="0">
4880: <tr bgcolor="#e6ffff">
4881: <td>
1.174 albertel 4882: <b>Specify a Scantron data file to upload.</b>
1.162 albertel 4883: </td>
4884: </tr>
4885: <tr bgcolor="#ffffe6">
4886: <td>
4887: SCANTRONFORM
1.324 albertel 4888: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 4889: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
4890: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.174 albertel 4891: $r->print(<<UPLOAD);
4892: <script type="text/javascript" language="javascript">
4893: function checkUpload(formname) {
4894: if (formname.upfile.value == "") {
4895: alert("Please use the browse button to select a file from your local directory.");
4896: return false;
4897: }
4898: formname.submit();
4899: }
4900: </script>
4901:
4902: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
4903: $default_form_data
4904: <input name='courseid' type='hidden' value='$cnum' />
4905: <input name='domainid' type='hidden' value='$cdom' />
4906: <input name='command' value='scantronupload_save' type='hidden' />
4907: File to upload:<input type="file" name="upfile" size="50" />
4908: <br />
4909: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
4910: </form>
4911: UPLOAD
1.162 albertel 4912:
4913: $r->print(<<SCANTRONFORM);
4914: </td>
4915: </tr>
1.75 albertel 4916: </table>
4917: </td>
4918: </tr>
1.162 albertel 4919: SCANTRONFORM
4920: }
1.422 foxr 4921:
4922: # Chunk of the form that prompts to view a scoring office file,
4923: # corrected file, skipped records in a file.
4924:
1.187 albertel 4925: $r->print(<<SCANTRONFORM);
4926: <tr>
1.226 albertel 4927: <form action='/adm/grades' name='scantron_download'>
4928: <td bgcolor="#777777">
1.379 albertel 4929: $default_form_data
1.187 albertel 4930: <input type="hidden" name="command" value="scantron_download" />
4931: <table width="100%" border="0">
4932: <tr bgcolor="#e6ffff">
4933: <td colspan="2">
4934: <b>Download a scoring office file</b>
4935: </td>
4936: </tr>
4937: <tr bgcolor="#ffffe6">
4938: <td> Filename of scoring office file: </td><td> $file_selector </td>
4939: </tr>
4940: <tr bgcolor="#ffffe6">
4941: <td colspan="2">
1.293 www 4942: <input type="submit" value="Download: Show List of Associated Files" />
1.187 albertel 4943: </td>
4944: </tr>
4945: </table>
1.226 albertel 4946: </td>
4947: </form>
1.187 albertel 4948: </tr>
4949: SCANTRONFORM
1.162 albertel 4950:
1.457 banghart 4951: $r->print('<tr><td bgcolor="#777777">');
4952: &Apache::lonpickcode::code_list($r,2);
4953: $r->print('</td></tr></table>');
4954: $r->print($grading_menu_button);
1.162 albertel 4955: return
1.75 albertel 4956: }
4957:
1.423 albertel 4958: =pod
4959:
4960: =item get_scantron_config
4961:
4962: Parse and return the scantron configuration line selected as a
4963: hash of configuration file fields.
4964:
4965: Arguments:
4966: which - the name of the configuration to parse from the file.
4967:
4968:
4969: Returns:
4970: If the named configuration is not in the file, an empty
4971: hash is returned.
4972: a hash with the fields
4973: name - internal name for the this configuration setup
4974: description - text to display to operator that describes this config
4975: CODElocation - if 0 or the string 'none'
4976: - no CODE exists for this config
4977: if -1 || the string 'letter'
4978: - a CODE exists for this config and is
4979: a string of letters
4980: Unsupported value (but planned for future support)
4981: if a positive integer
4982: - The CODE exists as the first n items from
4983: the question section of the form
4984: if the string 'number'
4985: - The CODE exists for this config and is
4986: a string of numbers
4987: CODEstart - (only matter if a CODE exists) column in the line where
4988: the CODE starts
4989: CODElength - length of the CODE
4990: IDstart - column where the student ID number starts
4991: IDlength - length of the student ID info
4992: Qstart - column where the information from the bubbled
4993: 'questions' start
4994: Qlength - number of columns comprising a single bubble line from
4995: the sheet. (usually either 1 or 10)
1.424 albertel 4996: Qon - either a single character representing the character used
1.423 albertel 4997: to signal a bubble was chosen in the positional setup, or
4998: the string 'letter' if the letter of the chosen bubble is
4999: in the final, or 'number' if a number representing the
5000: chosen bubble is in the file (1->A 0->J)
1.424 albertel 5001: Qoff - the character used to represent that a bubble was
5002: left blank
1.423 albertel 5003: PaperID - if the scanning process generates a unique number for each
5004: sheet scanned the column that this ID number starts in
5005: PaperIDlength - number of columns that comprise the unique ID number
5006: for the sheet of paper
1.424 albertel 5007: FirstName - column that the first name starts in
1.423 albertel 5008: FirstNameLength - number of columns that the first name spans
5009:
5010: LastName - column that the last name starts in
5011: LastNameLength - number of columns that the last name spans
5012:
5013: =cut
1.422 foxr 5014:
1.82 albertel 5015: sub get_scantron_config {
5016: my ($which) = @_;
5017: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
5018: my %config;
1.157 albertel 5019: #FIXME probably should move to XML it has already gotten a bit much now
1.82 albertel 5020: foreach my $line (<$fh>) {
5021: my ($name,$descrip)=split(/:/,$line);
5022: if ($name ne $which ) { next; }
5023: chomp($line);
5024: my @config=split(/:/,$line);
5025: $config{'name'}=$config[0];
5026: $config{'description'}=$config[1];
5027: $config{'CODElocation'}=$config[2];
5028: $config{'CODEstart'}=$config[3];
5029: $config{'CODElength'}=$config[4];
5030: $config{'IDstart'}=$config[5];
5031: $config{'IDlength'}=$config[6];
5032: $config{'Qstart'}=$config[7];
5033: $config{'Qlength'}=$config[8];
5034: $config{'Qoff'}=$config[9];
5035: $config{'Qon'}=$config[10];
1.157 albertel 5036: $config{'PaperID'}=$config[11];
5037: $config{'PaperIDlength'}=$config[12];
5038: $config{'FirstName'}=$config[13];
5039: $config{'FirstNamelength'}=$config[14];
5040: $config{'LastName'}=$config[15];
5041: $config{'LastNamelength'}=$config[16];
1.82 albertel 5042: last;
5043: }
5044: return %config;
5045: }
5046:
1.423 albertel 5047: =pod
5048:
5049: =item username_to_idmap
5050:
5051: creates a hash keyed by student id with values of the corresponding
5052: student username:domain.
5053:
5054: Arguments:
5055:
5056: $classlist - reference to the class list hash. This is a hash
5057: keyed by student name:domain whose elements are references
1.424 albertel 5058: to arrays containing various chunks of information
1.423 albertel 5059: about the student. (See loncoursedata for more info).
5060:
5061: Returns
5062: %idmap - the constructed hash
5063:
5064: =cut
5065:
1.82 albertel 5066: sub username_to_idmap {
5067: my ($classlist)= @_;
5068: my %idmap;
5069: foreach my $student (keys(%$classlist)) {
5070: $idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
5071: $student;
5072: }
5073: return %idmap;
5074: }
1.423 albertel 5075:
5076: =pod
5077:
1.424 albertel 5078: =item scantron_fixup_scanline
1.423 albertel 5079:
5080: Process a requested correction to a scanline.
5081:
5082: Arguments:
5083: $scantron_config - hash from &get_scantron_config()
5084: $scan_data - hash of correction information
5085: (see &scantron_getfile())
5086: $line - existing scanline
5087: $whichline - line number of the passed in scanline
5088: $field - type of change to process
5089: (either
5090: 'ID' -> correct the student ID number
5091: 'CODE' -> correct the CODE
5092: 'answer' -> fixup the submitted answers)
5093:
5094: $args - hash of additional info,
5095: - 'ID'
5096: 'newid' -> studentID to use in replacement
1.424 albertel 5097: of existing one
1.423 albertel 5098: - 'CODE'
5099: 'CODE_ignore_dup' - set to true if duplicates
5100: should be ignored.
5101: 'CODE' - is new code or 'use_unfound'
1.424 albertel 5102: if the existing unfound code should
1.423 albertel 5103: be used as is
5104: - 'answer'
5105: 'response' - new answer or 'none' if blank
5106: 'question' - the bubble line to change
5107:
5108: Returns:
5109: $line - the modified scanline
5110:
5111: Side effects:
5112: $scan_data - may be updated
5113:
5114: =cut
5115:
1.82 albertel 5116:
1.157 albertel 5117: sub scantron_fixup_scanline {
5118: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
1.423 albertel 5119:
1.157 albertel 5120: if ($field eq 'ID') {
5121: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 5122: return ($line,1,'New value too large');
1.157 albertel 5123: }
5124: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
5125: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
5126: $args->{'newid'});
5127: }
5128: substr($line,$$scantron_config{'IDstart'}-1,
5129: $$scantron_config{'IDlength'})=$args->{'newid'};
5130: if ($args->{'newid'}=~/^\s*$/) {
5131: &scan_data($scan_data,"$whichline.user",
5132: $args->{'username'}.':'.$args->{'domain'});
5133: }
1.186 albertel 5134: } elsif ($field eq 'CODE') {
1.192 albertel 5135: if ($args->{'CODE_ignore_dup'}) {
5136: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
5137: }
5138: &scan_data($scan_data,"$whichline.useCODE",'1');
5139: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 5140: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
5141: return ($line,1,'New CODE value too large');
5142: }
5143: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
5144: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
5145: }
5146: substr($line,$$scantron_config{'CODEstart'}-1,
5147: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 5148: }
1.157 albertel 5149: } elsif ($field eq 'answer') {
5150: my $length=$scantron_config->{'Qlength'};
5151: my $off=$scantron_config->{'Qoff'};
5152: my $on=$scantron_config->{'Qon'};
5153: my $answer=${off}x$length;
5154: if ($args->{'response'} eq 'none') {
5155: &scan_data($scan_data,
5156: "$whichline.no_bubble.".$args->{'question'},'1');
5157: } else {
1.274 albertel 5158: if ($on eq 'letter') {
5159: my @alphabet=('A'..'Z');
5160: $answer=$alphabet[$args->{'response'}];
5161: } elsif ($on eq 'number') {
5162: $answer=$args->{'response'}+1;
1.389 albertel 5163: if ($answer == 10) { $answer = '0'; }
1.274 albertel 5164: } else {
5165: substr($answer,$args->{'response'},1)=$on;
5166: }
1.157 albertel 5167: &scan_data($scan_data,
5168: "$whichline.no_bubble.".$args->{'question'},undef,'1');
5169: }
5170: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
5171: substr($line,$where-1,$length)=$answer;
5172: }
5173: return $line;
5174: }
1.423 albertel 5175:
5176: =pod
5177:
5178: =item scan_data
5179:
5180: Edit or look up an item in the scan_data hash.
5181:
5182: Arguments:
5183: $scan_data - The hash (see scantron_getfile)
5184: $key - shorthand of the key to edit (actual key is
1.424 albertel 5185: scantronfilename_key).
1.423 albertel 5186: $data - New value of the hash entry.
5187: $delete - If true, the entry is removed from the hash.
5188:
5189: Returns:
5190: The new value of the hash table field (undefined if deleted).
5191:
5192: =cut
5193:
5194:
1.157 albertel 5195: sub scan_data {
5196: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 5197: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 5198: if (defined($value)) {
5199: $scan_data->{$filename.'_'.$key} = $value;
5200: }
5201: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
5202: return $scan_data->{$filename.'_'.$key};
5203: }
1.423 albertel 5204:
5205: =pod
5206:
5207: =item scantron_parse_scanline
5208:
5209: Decodes a scanline from the selected scantron file
5210:
5211: Arguments:
5212: line - The text of the scantron file line to process
5213: whichline - Line number
5214: scantron_config - Hash describing the format of the scantron lines.
5215: scan_data - Hash of extra information about the scanline
5216: (see scantron_getfile for more information)
5217: just_header - True if should not process question answers but only
5218: the stuff to the left of the answers.
5219: Returns:
5220: Hash containing the result of parsing the scanline
5221:
5222: Keys are all proceeded by the string 'scantron.'
5223:
5224: CODE - the CODE in use for this scanline
5225: useCODE - 1 if the CODE is invalid but it usage has been forced
5226: by the operator
5227: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
5228: CODEs were selected, but the usage has been
5229: forced by the operator
5230: ID - student ID
5231: PaperID - if used, the ID number printed on the sheet when the
5232: paper was scanned
5233: FirstName - first name from the sheet
5234: LastName - last name from the sheet
5235:
5236: if just_header was not true these key may also exist
5237:
1.447 foxr 5238: missingerror - a list of bubble ranges that are considered to be answers
5239: to a single question that don't have any bubbles filled in.
5240: Of the form questionnumber:firstbubblenumber:count.
5241: doubleerror - a list of bubble ranges that are considered to be answers
5242: to a single question that have more than one bubble filled in.
5243: Of the form questionnumber::firstbubblenumber:count
5244:
5245: In the above, count is the number of bubble responses in the
5246: input line needed to represent the possible answers to the question.
5247: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
5248: per line would have count = 2.
5249:
1.423 albertel 5250: maxquest - the number of the last bubble line that was parsed
5251:
5252: (<number> starts at 1)
5253: <number>.answer - zero or more letters representing the selected
5254: letters from the scanline for the bubble line
5255: <number>.
5256: if blank there was either no bubble or there where
5257: multiple bubbles, (consult the keys missingerror and
5258: doubleerror if this is an error condition)
5259:
5260: =cut
5261:
1.82 albertel 5262: sub scantron_parse_scanline {
1.423 albertel 5263: my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470 foxr 5264:
1.82 albertel 5265: my %record;
1.422 foxr 5266: my $questions=substr($line,$$scantron_config{'Qstart'}-1); # Answers
5267: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # earlier stuff
1.278 albertel 5268: if (!($$scantron_config{'CODElocation'} eq 0 ||
5269: $$scantron_config{'CODElocation'} eq 'none')) {
5270: if ($$scantron_config{'CODElocation'} < 0 ||
5271: $$scantron_config{'CODElocation'} eq 'letter' ||
5272: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 5273: $record{'scantron.CODE'}=substr($data,
5274: $$scantron_config{'CODEstart'}-1,
1.83 albertel 5275: $$scantron_config{'CODElength'});
1.191 albertel 5276: if (&scan_data($scan_data,"$whichline.useCODE")) {
5277: $record{'scantron.useCODE'}=1;
5278: }
1.192 albertel 5279: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
5280: $record{'scantron.CODE_ignore_dup'}=1;
5281: }
1.82 albertel 5282: } else {
5283: #FIXME interpret first N questions
5284: }
5285: }
1.83 albertel 5286: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
5287: $$scantron_config{'IDlength'});
1.157 albertel 5288: $record{'scantron.PaperID'}=
5289: substr($data,$$scantron_config{'PaperID'}-1,
5290: $$scantron_config{'PaperIDlength'});
5291: $record{'scantron.FirstName'}=
5292: substr($data,$$scantron_config{'FirstName'}-1,
5293: $$scantron_config{'FirstNamelength'});
5294: $record{'scantron.LastName'}=
5295: substr($data,$$scantron_config{'LastName'}-1,
5296: $$scantron_config{'LastNamelength'});
1.423 albertel 5297: if ($just_header) { return \%record; }
1.194 albertel 5298:
1.82 albertel 5299: my @alphabet=('A'..'Z');
5300: my $questnum=0;
1.447 foxr 5301: my $ansnum =1; # Multiple 'answer lines'/question.
5302:
1.470 foxr 5303: chomp($questions); # Get rid of any trailing \n.
5304: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
5305: while (length($questions)) {
1.447 foxr 5306: my $answers_needed = $bubble_lines_per_response{$questnum};
5307: my $answer_length = $$scantron_config{'Qlength'} * $answers_needed;
5308:
5309:
5310:
1.82 albertel 5311: $questnum++;
1.447 foxr 5312: my $currentquest = substr($questions,0,$answer_length);
5313: $questions = substr($questions,0,$answer_length)='';
5314: if (length($currentquest) < $answer_length) { next; }
5315:
5316: # Qon letter implies for each slot in currentquest we have:
5317: # ? or * for doubles a letter in A-Z for a bubble and
5318: # about anything else (esp. a value of Qoff for missing
5319: # bubbles.
5320:
5321:
1.239 albertel 5322: if ($$scantron_config{'Qon'} eq 'letter') {
1.447 foxr 5323:
5324: if ($currentquest =~ /\?/
5325: || $currentquest =~ /\*/
5326: || (&occurence_count($currentquest, "[A-Z]") > 1)) {
1.274 albertel 5327: push(@{$record{'scantron.doubleerror'}},$questnum);
1.447 foxr 5328: for (my $ans = 0; $ans < $answers_needed; $ans++) {
1.460 foxr 5329: my $bubble = substr($currentquest, $ans, 1);
5330: if ($bubble =~ /[A-Z]/ ) {
5331: $record{"scantron.$ansnum.answer"} = $bubble;
5332: } else {
5333: $record{"scantron.$ansnum.answer"}='';
5334: }
1.447 foxr 5335: $ansnum++;
5336: }
5337:
1.389 albertel 5338: } elsif (!defined($currentquest)
1.447 foxr 5339: || (&occurence_count($currentquest, $$scantron_config{'Qoff'}) == length($currentquest))
5340: || (&occurence_count($currentquest, "[A-Z]") == 0)) {
5341: for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
5342: $record{"scantron.$ansnum.answer"}='';
5343: $ansnum++;
5344:
5345: }
1.239 albertel 5346: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
5347: push(@{$record{"scantron.missingerror"}},$questnum);
1.470 foxr 5348: # $ansnum += $answers_needed;
1.239 albertel 5349: }
5350: } else {
1.447 foxr 5351: for (my $ans = 0; $ans < $answers_needed; $ans++) {
5352: $record{"scantron.$ansnum.answer"} = substr($currentquest, $ans, 1);
5353: $ansnum++;
5354: }
1.239 albertel 5355: }
1.447 foxr 5356:
5357: # Qon 'number' implies each slot gives a digit that indexes the
5358: # the bubbles filled or Qoff or a non number for unbubbled lines.
5359: # and *? for double bubbles on a line.
5360: # these answers are also stored as letters.
5361:
1.239 albertel 5362: } elsif ($$scantron_config{'Qon'} eq 'number') {
1.447 foxr 5363: if ($currentquest =~ /\?/
5364: || $currentquest =~ /\*/
5365: || (&occurence_count($currentquest, '\d') > 1)) {
1.274 albertel 5366: push(@{$record{'scantron.doubleerror'}},$questnum);
1.447 foxr 5367: for (my $ans = 0; $ans < $answers_needed; $ans++) {
1.460 foxr 5368: my $bubble = substr($currentquest, $ans, 1);
5369: if ($bubble =~ /\d/) {
5370: $record{"scantron.$ansnum.answer"} = $alphabet[$bubble];
5371: } else {
1.461 foxr 5372: $record{"scantron.$ansnum.answer"}=' ';
1.460 foxr 5373: }
1.447 foxr 5374: $ansnum++;
5375: }
5376:
1.389 albertel 5377: } elsif (!defined($currentquest)
1.447 foxr 5378: || (&occurence_count($currentquest,$$scantron_config{'Qoff'}) == length($currentquest))
5379: || (&occurence_count($currentquest, '\d') == 0)) {
5380: for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
5381: $record{"scantron.$ansnum.answer"}='';
5382: $ansnum++;
5383:
5384: }
1.239 albertel 5385: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
5386: push(@{$record{"scantron.missingerror"}},$questnum);
1.447 foxr 5387: $ansnum += $answers_needed;
1.239 albertel 5388: }
1.447 foxr 5389:
1.239 albertel 5390: } else {
1.447 foxr 5391: $currentquest = &digits_to_letters($currentquest);
5392: for (my $ans =0; $ans < $answers_needed; $ans++) {
5393: $record{"scantron.$ansnum.answer"} = substr($currentquest, $ans, 1);
5394: $ansnum++;
1.371 albertel 5395: }
1.239 albertel 5396: }
1.82 albertel 5397: } else {
1.447 foxr 5398:
5399: # Otherwise there's a positional notation;
5400: # each bubble line requires Qlength items, and there are filled in
5401: # bubbles for each case where there 'Qon' characters.
5402: #
5403:
1.239 albertel 5404: my @array=split($$scantron_config{'Qon'},$currentquest,-1);
1.447 foxr 5405:
5406: # If the split only giveas us one element.. the full length of the
5407: # answser string, no bubbles are filled in:
5408:
5409: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
5410: for (my $ans = 0; $ans < $answers_needed; $ans++ ) {
5411: $record{"scantron.$ansnum.answer"}='';
5412: $ansnum++;
5413:
5414: }
1.239 albertel 5415: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
5416: push(@{$record{"scantron.missingerror"}},$questnum);
5417: }
1.447 foxr 5418: } elsif (scalar(@array) lt 2) {
5419:
1.459 foxr 5420: my $location = length($array[0]);
1.447 foxr 5421: my $line_num = $location / $$scantron_config{'Qlength'};
5422: my $bubble = $alphabet[$location % $$scantron_config{'Qlength'}];
5423:
5424: for (my $ans = 0; $ans < $answers_needed; $ans++) {
5425: if ($ans eq $line_num) {
5426: $record{"scantron.$ansnum.answer"} = $bubble;
5427: } else {
5428: $record{"scantron.$ansnum.answer"} = ' ';
5429: }
5430: $ansnum++;
5431: }
1.239 albertel 5432: }
1.447 foxr 5433: # If there's more than one instance of a bubble character
5434: # That's a double bubble; with positional notation we can
5435: # record all the bubbles filled in as well as the
5436: # fact this response consists of multiple bubbles.
5437: #
5438: else {
1.239 albertel 5439: push(@{$record{'scantron.doubleerror'}},$questnum);
1.447 foxr 5440:
5441: my $first_answer = $ansnum;
5442: for (my $ans =0; $ans < $answers_needed; $ans++) {
1.462 foxr 5443: my $item = $first_answer+$ans;
5444: $record{"scantron.$item.answer"} = '';
1.447 foxr 5445: }
5446:
1.239 albertel 5447: my @ans=@array;
1.462 foxr 5448: my $i=0;
5449: my $increment = 0;
1.239 albertel 5450: while ($#ans) {
1.462 foxr 5451: $i+=length($ans[0]) + $increment;
5452: my $line = int($i/$$scantron_config{'Qlength'} + $first_answer);
1.447 foxr 5453: my $bubble = $i%$$scantron_config{'Qlength'};
5454: $record{"scantron.$line.answer"}.=$alphabet[$bubble];
1.239 albertel 5455: shift(@ans);
1.462 foxr 5456: $increment = 1;
1.239 albertel 5457: }
1.462 foxr 5458: $ansnum += $answers_needed;
1.239 albertel 5459: }
1.82 albertel 5460: }
5461: }
1.83 albertel 5462: $record{'scantron.maxquest'}=$questnum;
5463: return \%record;
1.82 albertel 5464: }
5465:
1.423 albertel 5466: =pod
5467:
5468: =item scantron_add_delay
5469:
5470: Adds an error message that occurred during the grading phase to a
5471: queue of messages to be shown after grading pass is complete
5472:
5473: Arguments:
1.424 albertel 5474: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 5475: $scanline - the scanline that caused the error
5476: $errormesage - the error message
5477: $errorcode - a numeric code for the error
5478:
5479: Side Effects:
1.424 albertel 5480: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 5481:
5482: =cut
5483:
1.82 albertel 5484: sub scantron_add_delay {
1.140 albertel 5485: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
5486: push(@$delayqueue,
5487: {'line' => $scanline, 'emsg' => $errormessage,
5488: 'ecode' => $errorcode }
5489: );
1.82 albertel 5490: }
5491:
1.423 albertel 5492: =pod
5493:
5494: =item scantron_find_student
5495:
1.424 albertel 5496: Finds the username for the current scanline
5497:
5498: Arguments:
5499: $scantron_record - hash result from scantron_parse_scanline
5500: $scan_data - hash of correction information
5501: (see &scantron_getfile() form more information)
5502: $idmap - hash from &username_to_idmap()
5503: $line - number of current scanline
5504:
5505: Returns:
5506: Either 'username:domain' or undef if unknown
5507:
1.423 albertel 5508: =cut
5509:
1.82 albertel 5510: sub scantron_find_student {
1.157 albertel 5511: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 5512: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 5513: if ($scanID =~ /^\s*$/) {
5514: return &scan_data($scan_data,"$line.user");
5515: }
1.83 albertel 5516: foreach my $id (keys(%$idmap)) {
1.157 albertel 5517: if (lc($id) eq lc($scanID)) {
5518: return $$idmap{$id};
5519: }
1.83 albertel 5520: }
5521: return undef;
5522: }
5523:
1.423 albertel 5524: =pod
5525:
5526: =item scantron_filter
5527:
1.424 albertel 5528: Filter sub for lonnavmaps, filters out hidden resources if ignore
5529: hidden resources was selected
5530:
1.423 albertel 5531: =cut
5532:
1.83 albertel 5533: sub scantron_filter {
5534: my ($curres)=@_;
1.331 albertel 5535:
5536: if (ref($curres) && $curres->is_problem()) {
5537: # if the user has asked to not have either hidden
5538: # or 'randomout' controlled resources to be graded
5539: # don't include them
5540: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
5541: && $curres->randomout) {
5542: return 0;
5543: }
1.83 albertel 5544: return 1;
5545: }
5546: return 0;
1.82 albertel 5547: }
5548:
1.423 albertel 5549: =pod
5550:
5551: =item scantron_process_corrections
5552:
1.424 albertel 5553: Gets correction information out of submitted form data and corrects
5554: the scanline
5555:
1.423 albertel 5556: =cut
5557:
1.157 albertel 5558: sub scantron_process_corrections {
5559: my ($r) = @_;
1.257 albertel 5560: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 5561: my ($scanlines,$scan_data)=&scantron_getfile();
5562: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 5563: my $which=$env{'form.scantron_line'};
1.200 albertel 5564: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 5565: my ($skip,$err,$errmsg);
1.257 albertel 5566: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 5567: $skip=1;
1.257 albertel 5568: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
5569: my $newstudent=$env{'form.scantron_username'}.':'.
5570: $env{'form.scantron_domain'};
1.157 albertel 5571: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
5572: ($line,$err,$errmsg)=
5573: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
5574: 'ID',{'newid'=>$newid,
1.257 albertel 5575: 'username'=>$env{'form.scantron_username'},
5576: 'domain'=>$env{'form.scantron_domain'}});
5577: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
5578: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 5579: my $newCODE;
1.192 albertel 5580: my %args;
1.190 albertel 5581: if ($resolution eq 'use_unfound') {
1.191 albertel 5582: $newCODE='use_unfound';
1.190 albertel 5583: } elsif ($resolution eq 'use_found') {
1.257 albertel 5584: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 5585: } elsif ($resolution eq 'use_typed') {
1.257 albertel 5586: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 5587: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 5588: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 5589: }
1.257 albertel 5590: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 5591: $args{'CODE_ignore_dup'}=1;
5592: }
5593: $args{'CODE'}=$newCODE;
1.186 albertel 5594: ($line,$err,$errmsg)=
5595: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 5596: 'CODE',\%args);
1.257 albertel 5597: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
5598: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 5599: ($line,$err,$errmsg)=
5600: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
5601: $which,'answer',
5602: { 'question'=>$question,
1.257 albertel 5603: 'response'=>$env{"form.scantron_correct_Q_$question"}});
1.157 albertel 5604: if ($err) { last; }
5605: }
5606: }
5607: if ($err) {
1.398 albertel 5608: $r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157 albertel 5609: } else {
1.200 albertel 5610: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 5611: &scantron_putfile($scanlines,$scan_data);
5612: }
5613: }
5614:
1.423 albertel 5615: =pod
5616:
5617: =item reset_skipping_status
5618:
1.424 albertel 5619: Forgets the current set of remember skipped scanlines (and thus
5620: reverts back to considering all lines in the
5621: scantron_skipped_<filename> file)
5622:
1.423 albertel 5623: =cut
5624:
1.200 albertel 5625: sub reset_skipping_status {
5626: my ($scanlines,$scan_data)=&scantron_getfile();
5627: &scan_data($scan_data,'remember_skipping',undef,1);
5628: &scantron_putfile(undef,$scan_data);
5629: }
5630:
1.423 albertel 5631: =pod
5632:
5633: =item start_skipping
5634:
1.424 albertel 5635: Marks a scanline to be skipped.
5636:
1.423 albertel 5637: =cut
5638:
1.376 albertel 5639: sub start_skipping {
1.200 albertel 5640: my ($scan_data,$i)=@_;
5641: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 5642: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
5643: $remembered{$i}=2;
5644: } else {
5645: $remembered{$i}=1;
5646: }
1.200 albertel 5647: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
5648: }
5649:
1.423 albertel 5650: =pod
5651:
5652: =item should_be_skipped
5653:
1.424 albertel 5654: Checks whether a scanline should be skipped.
5655:
1.423 albertel 5656: =cut
5657:
1.200 albertel 5658: sub should_be_skipped {
1.376 albertel 5659: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 5660: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 5661: # not redoing old skips
1.376 albertel 5662: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 5663: return 0;
5664: }
5665: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 5666:
5667: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
5668: return 0;
5669: }
1.200 albertel 5670: return 1;
5671: }
5672:
1.423 albertel 5673: =pod
5674:
5675: =item remember_current_skipped
5676:
1.424 albertel 5677: Discovers what scanlines are in the scantron_skipped_<filename>
5678: file and remembers them into scan_data for later use.
5679:
1.423 albertel 5680: =cut
5681:
1.200 albertel 5682: sub remember_current_skipped {
5683: my ($scanlines,$scan_data)=&scantron_getfile();
5684: my %to_remember;
5685: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
5686: if ($scanlines->{'skipped'}[$i]) {
5687: $to_remember{$i}=1;
5688: }
5689: }
1.376 albertel 5690:
1.200 albertel 5691: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
5692: &scantron_putfile(undef,$scan_data);
5693: }
5694:
1.423 albertel 5695: =pod
5696:
5697: =item check_for_error
5698:
1.424 albertel 5699: Checks if there was an error when attempting to remove a specific
5700: scantron_.. bubble sheet data file. Prints out an error if
5701: something went wrong.
5702:
1.423 albertel 5703: =cut
5704:
1.200 albertel 5705: sub check_for_error {
5706: my ($r,$result)=@_;
5707: if ($result ne 'ok' && $result ne 'not_found' ) {
1.401 albertel 5708: $r->print("An error occurred ($result) when trying to Remove the existing corrections.");
1.200 albertel 5709: }
5710: }
1.157 albertel 5711:
1.423 albertel 5712: =pod
5713:
5714: =item scantron_warning_screen
5715:
1.424 albertel 5716: Interstitial screen to make sure the operator has selected the
5717: correct options before we start the validation phase.
5718:
1.423 albertel 5719: =cut
5720:
1.203 albertel 5721: sub scantron_warning_screen {
5722: my ($button_text)=@_;
1.257 albertel 5723: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 5724: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 5725: my $CODElist;
1.284 albertel 5726: if ($scantron_config{'CODElocation'} &&
5727: $scantron_config{'CODEstart'} &&
5728: $scantron_config{'CODElength'}) {
5729: $CODElist=$env{'form.scantron_CODElist'};
1.398 albertel 5730: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284 albertel 5731: $CODElist=
5732: '<tr><td><b>List of CODES to validate against:</b></td><td><tt>'.
1.373 albertel 5733: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 5734: }
1.203 albertel 5735: return (<<STUFF);
5736: <p>
1.398 albertel 5737: <span class="LC_warning">Please double check the information
5738: below before clicking on '$button_text'</span>
1.203 albertel 5739: </p>
5740: <table>
1.284 albertel 5741: <tr><td><b>Sequence to be Graded:</b></td><td>$title</td></tr>
1.257 albertel 5742: <tr><td><b>Data File that will be used:</b></td><td><tt>$env{'form.scantron_selectfile'}</tt></td></tr>
1.284 albertel 5743: $CODElist
1.203 albertel 5744: </table>
5745: <br />
5746: <p> If this information is correct, please click on '$button_text'.</p>
5747: <p> If something is incorrect, please click the 'Grading Menu' button to start over.</p>
5748:
5749: <br />
5750: STUFF
5751: }
5752:
1.423 albertel 5753: =pod
5754:
5755: =item scantron_do_warning
5756:
1.424 albertel 5757: Check if the operator has picked something for all required
5758: fields. Error out if something is missing.
5759:
1.423 albertel 5760: =cut
5761:
1.203 albertel 5762: sub scantron_do_warning {
5763: my ($r)=@_;
1.324 albertel 5764: my ($symb)=&get_symb($r);
1.203 albertel 5765: if (!$symb) {return '';}
1.324 albertel 5766: my $default_form_data=&defaultFormData($symb);
1.203 albertel 5767: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 5768: if ( $env{'form.selectpage'} eq '' ||
5769: $env{'form.scantron_selectfile'} eq '' ||
5770: $env{'form.scantron_format'} eq '' ) {
1.237 albertel 5771: $r->print("<p>You have forgetten to specify some information. Please go Back and try again.</p>");
1.257 albertel 5772: if ( $env{'form.selectpage'} eq '') {
1.398 albertel 5773: $r->print('<p><span class="LC_error">You have not selected a Sequence to grade</span></p>');
1.237 albertel 5774: }
1.257 albertel 5775: if ( $env{'form.scantron_selectfile'} eq '') {
1.398 albertel 5776: $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 5777: }
1.257 albertel 5778: if ( $env{'form.scantron_format'} eq '') {
1.398 albertel 5779: $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 5780: }
5781: } else {
1.265 www 5782: my $warning=&scantron_warning_screen('Grading: Validate Records');
1.237 albertel 5783: $r->print(<<STUFF);
1.203 albertel 5784: $warning
1.265 www 5785: <input type="submit" name="submit" value="Grading: Validate Records" />
1.203 albertel 5786: <input type="hidden" name="command" value="scantron_validate" />
5787: STUFF
1.237 albertel 5788: }
1.352 albertel 5789: $r->print("</form><br />".&show_grading_menu_form($symb));
1.203 albertel 5790: return '';
5791: }
5792:
1.423 albertel 5793: =pod
5794:
5795: =item scantron_form_start
5796:
1.424 albertel 5797: html hidden input for remembering all selected grading options
5798:
1.423 albertel 5799: =cut
5800:
1.203 albertel 5801: sub scantron_form_start {
5802: my ($max_bubble)=@_;
5803: my $result= <<SCANTRONFORM;
5804: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 5805: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
5806: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
5807: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 5808: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 5809: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
5810: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
5811: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
5812: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 5813: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 5814: SCANTRONFORM
1.447 foxr 5815:
5816: my $line = 0;
5817: while (defined($env{"form.scantron.bubblelines.$line"})) {
5818: my $chunk =
5819: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 5820: $chunk .=
5821: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.447 foxr 5822: $result .= $chunk;
5823: $line++;
5824: }
1.203 albertel 5825: return $result;
5826: }
5827:
1.423 albertel 5828: =pod
5829:
5830: =item scantron_validate_file
5831:
1.424 albertel 5832: Dispatch routine for doing validation of a bubble sheet data file.
5833:
5834: Also processes any necessary information resets that need to
5835: occur before validation begins (ignore previous corrections,
5836: restarting the skipped records processing)
5837:
1.423 albertel 5838: =cut
5839:
1.157 albertel 5840: sub scantron_validate_file {
5841: my ($r) = @_;
1.324 albertel 5842: my ($symb)=&get_symb($r);
1.157 albertel 5843: if (!$symb) {return '';}
1.324 albertel 5844: my $default_form_data=&defaultFormData($symb);
1.200 albertel 5845:
5846: # do the detection of only doing skipped records first befroe we delete
1.424 albertel 5847: # them when doing the corrections reset
1.257 albertel 5848: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 5849: &reset_skipping_status();
5850: }
1.257 albertel 5851: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 5852: &remember_current_skipped();
1.257 albertel 5853: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 5854: }
5855:
1.257 albertel 5856: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 5857: &check_for_error($r,&scantron_remove_file('corrected'));
5858: &check_for_error($r,&scantron_remove_file('skipped'));
5859: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 5860: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 5861: }
1.200 albertel 5862:
1.257 albertel 5863: if ($env{'form.scantron_corrections'}) {
1.157 albertel 5864: &scantron_process_corrections($r);
5865: }
1.424 albertel 5866: $r->print("<p>Gathering necessary info.</p>");$r->rflush();
1.157 albertel 5867: #get the student pick code ready
5868: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.330 albertel 5869: my $max_bubble=&scantron_get_maxbubble();
1.203 albertel 5870: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.157 albertel 5871: $r->print($result);
5872:
1.334 albertel 5873: my @validate_phases=( 'sequence',
5874: 'ID',
1.157 albertel 5875: 'CODE',
5876: 'doublebubble',
5877: 'missingbubbles');
1.257 albertel 5878: if (!$env{'form.validatepass'}) {
5879: $env{'form.validatepass'} = 0;
1.157 albertel 5880: }
1.257 albertel 5881: my $currentphase=$env{'form.validatepass'};
1.157 albertel 5882:
1.448 foxr 5883:
1.157 albertel 5884: my $stop=0;
5885: while (!$stop && $currentphase < scalar(@validate_phases)) {
5886: $r->print("<p> Validating ".$validate_phases[$currentphase]."</p>");
5887: $r->rflush();
5888: my $which="scantron_validate_".$validate_phases[$currentphase];
5889: {
5890: no strict 'refs';
5891: ($stop,$currentphase)=&$which($r,$currentphase);
5892: }
5893: }
5894: if (!$stop) {
1.203 albertel 5895: my $warning=&scantron_warning_screen('Start Grading');
5896: $r->print(<<STUFF);
5897: Validation process complete.<br />
5898: $warning
5899: <input type="submit" name="submit" value="Start Grading" />
5900: <input type="hidden" name="command" value="scantron_process" />
5901: STUFF
5902:
1.157 albertel 5903: } else {
5904: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
5905: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
5906: }
5907: if ($stop) {
1.334 albertel 5908: if ($validate_phases[$currentphase] eq 'sequence') {
5909: $r->print('<input type="submit" name="submit" value="Ignore -> " />');
5910: $r->print(' this error <br />');
5911:
5912: $r->print(" <p>Or click the 'Grading Menu' button to start over.</p>");
5913: } else {
5914: $r->print('<input type="submit" name="submit" value="Continue ->" />');
5915: $r->print(' using corrected info <br />');
5916: $r->print("<input type='submit' value='Skip' name='scantron_skip_record' />");
5917: $r->print(" this scanline saving it for later.");
5918: }
1.157 albertel 5919: }
1.352 albertel 5920: $r->print(" </form><br />".&show_grading_menu_form($symb));
1.157 albertel 5921: return '';
5922: }
5923:
1.423 albertel 5924:
5925: =pod
5926:
5927: =item scantron_remove_file
5928:
1.424 albertel 5929: Removes the requested bubble sheet data file, makes sure that
5930: scantron_original_<filename> is never removed
5931:
5932:
1.423 albertel 5933: =cut
5934:
1.200 albertel 5935: sub scantron_remove_file {
1.192 albertel 5936: my ($which)=@_;
1.257 albertel 5937: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
5938: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 5939: my $file='scantron_';
1.200 albertel 5940: if ($which eq 'corrected' || $which eq 'skipped') {
5941: $file.=$which.'_';
1.192 albertel 5942: } else {
5943: return 'refused';
5944: }
1.257 albertel 5945: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 5946: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
5947: }
5948:
1.423 albertel 5949:
5950: =pod
5951:
5952: =item scantron_remove_scan_data
5953:
1.424 albertel 5954: Removes all scan_data correction for the requested bubble sheet
5955: data file. (In the case that both the are doing skipped records we need
5956: to remember the old skipped lines for the time being so that element
5957: persists for a while.)
5958:
1.423 albertel 5959: =cut
5960:
1.200 albertel 5961: sub scantron_remove_scan_data {
1.257 albertel 5962: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
5963: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 5964: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
5965: my @todelete;
1.257 albertel 5966: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 5967: foreach my $key (@keys) {
5968: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 5969: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 5970: $key=~/remember_skipping/) {
5971: next;
5972: }
1.192 albertel 5973: push(@todelete,$key);
5974: }
5975: }
1.200 albertel 5976: my $result;
1.192 albertel 5977: if (@todelete) {
1.200 albertel 5978: $result=&Apache::lonnet::del('nohist_scantrondata',\@todelete,$cdom,$cname);
1.192 albertel 5979: }
5980: return $result;
5981: }
5982:
1.423 albertel 5983:
5984: =pod
5985:
5986: =item scantron_getfile
5987:
1.424 albertel 5988: Fetches the requested bubble sheet data file (all 3 versions), and
5989: the scan_data hash
5990:
5991: Arguments:
5992: None
5993:
5994: Returns:
5995: 2 hash references
5996:
5997: - first one has
5998: orig -
5999: corrected -
6000: skipped - each of which points to an array ref of the specified
6001: file broken up into individual lines
6002: count - number of scanlines
6003:
6004: - second is the scan_data hash possible keys are
1.425 albertel 6005: ($number refers to scanline numbered $number and thus the key affects
6006: only that scanline
6007: $bubline refers to the specific bubble line element and the aspects
6008: refers to that specific bubble line element)
6009:
6010: $number.user - username:domain to use
6011: $number.CODE_ignore_dup
6012: - ignore the duplicate CODE error
6013: $number.useCODE
6014: - use the CODE in the scanline as is
6015: $number.no_bubble.$bubline
6016: - it is valid that there is no bubbled in bubble
6017: at $number $bubline
6018: remember_skipping
6019: - a frozen hash containing keys of $number and values
6020: of either
6021: 1 - we are on a 'do skipped records pass' and plan
6022: on processing this line
6023: 2 - we are on a 'do skipped records pass' and this
6024: scanline has been marked to skip yet again
1.424 albertel 6025:
1.423 albertel 6026: =cut
6027:
1.157 albertel 6028: sub scantron_getfile {
1.200 albertel 6029: #FIXME really would prefer a scantron directory
1.257 albertel 6030: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6031: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 6032: my $lines;
6033: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6034: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 6035: my %scanlines;
6036: $scanlines{'orig'}=[(split("\n",$lines,-1))];
6037: my $temp=$scanlines{'orig'};
6038: $scanlines{'count'}=$#$temp;
6039:
6040: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6041: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 6042: if ($lines eq '-1') {
6043: $scanlines{'corrected'}=[];
6044: } else {
6045: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
6046: }
6047: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6048: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 6049: if ($lines eq '-1') {
6050: $scanlines{'skipped'}=[];
6051: } else {
6052: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
6053: }
1.175 albertel 6054: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 6055: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
6056: my %scan_data = @tmp;
6057: return (\%scanlines,\%scan_data);
6058: }
6059:
1.423 albertel 6060: =pod
6061:
6062: =item lonnet_putfile
6063:
1.424 albertel 6064: Wrapper routine to call &Apache::lonnet::finishuserfileupload
6065:
6066: Arguments:
6067: $contents - data to store
6068: $filename - filename to store $contents into
6069:
6070: Returns:
6071: result value from &Apache::lonnet::finishuserfileupload
6072:
1.423 albertel 6073: =cut
6074:
1.157 albertel 6075: sub lonnet_putfile {
6076: my ($contents,$filename)=@_;
1.257 albertel 6077: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
6078: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
6079: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 6080: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 6081:
6082: }
6083:
1.423 albertel 6084: =pod
6085:
6086: =item scantron_putfile
6087:
1.424 albertel 6088: Stores the current version of the bubble sheet data files, and the
6089: scan_data hash. (Does not modify the original version only the
6090: corrected and skipped versions.
6091:
6092: Arguments:
6093: $scanlines - hash ref that looks like the first return value from
6094: &scantron_getfile()
6095: $scan_data - hash ref that looks like the second return value from
6096: &scantron_getfile()
6097:
1.423 albertel 6098: =cut
6099:
1.157 albertel 6100: sub scantron_putfile {
6101: my ($scanlines,$scan_data) = @_;
1.200 albertel 6102: #FIXME really would prefer a scantron directory
1.257 albertel 6103: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6104: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 6105: if ($scanlines) {
6106: my $prefix='scantron_';
1.157 albertel 6107: # no need to update orig, shouldn't change
6108: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 6109: # $env{'form.scantron_selectfile'});
1.200 albertel 6110: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
6111: $prefix.'corrected_'.
1.257 albertel 6112: $env{'form.scantron_selectfile'});
1.200 albertel 6113: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
6114: $prefix.'skipped_'.
1.257 albertel 6115: $env{'form.scantron_selectfile'});
1.200 albertel 6116: }
1.175 albertel 6117: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 6118: }
6119:
1.423 albertel 6120: =pod
6121:
6122: =item scantron_get_line
6123:
1.424 albertel 6124: Returns the correct version of the scanline
6125:
6126: Arguments:
6127: $scanlines - hash ref that looks like the first return value from
6128: &scantron_getfile()
6129: $scan_data - hash ref that looks like the second return value from
6130: &scantron_getfile()
6131: $i - number of the requested line (starts at 0)
6132:
6133: Returns:
6134: A scanline, (either the original or the corrected one if it
6135: exists), or undef if the requested scanline should be
6136: skipped. (Either because it's an skipped scanline, or it's an
6137: unskipped scanline and we are not doing a 'do skipped scanlines'
6138: pass.
6139:
1.423 albertel 6140: =cut
6141:
1.157 albertel 6142: sub scantron_get_line {
1.200 albertel 6143: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 6144: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
6145: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 6146: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
6147: return $scanlines->{'orig'}[$i];
6148: }
6149:
1.423 albertel 6150: =pod
6151:
6152: =item scantron_todo_count
6153:
1.424 albertel 6154: Counts the number of scanlines that need processing.
6155:
6156: Arguments:
6157: $scanlines - hash ref that looks like the first return value from
6158: &scantron_getfile()
6159: $scan_data - hash ref that looks like the second return value from
6160: &scantron_getfile()
6161:
6162: Returns:
6163: $count - number of scanlines to process
6164:
1.423 albertel 6165: =cut
6166:
1.200 albertel 6167: sub get_todo_count {
6168: my ($scanlines,$scan_data)=@_;
6169: my $count=0;
6170: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6171: my $line=&scantron_get_line($scanlines,$scan_data,$i);
6172: if ($line=~/^[\s\cz]*$/) { next; }
6173: $count++;
6174: }
6175: return $count;
6176: }
6177:
1.423 albertel 6178: =pod
6179:
6180: =item scantron_put_line
6181:
1.424 albertel 6182: Updates the 'corrected' or 'skipped' versions of the bubble sheet
6183: data file.
6184:
6185: Arguments:
6186: $scanlines - hash ref that looks like the first return value from
6187: &scantron_getfile()
6188: $scan_data - hash ref that looks like the second return value from
6189: &scantron_getfile()
6190: $i - line number to update
6191: $newline - contents of the updated scanline
6192: $skip - if true make the line for skipping and update the
6193: 'skipped' file
6194:
1.423 albertel 6195: =cut
6196:
1.157 albertel 6197: sub scantron_put_line {
1.200 albertel 6198: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 6199: if ($skip) {
6200: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 6201: &start_skipping($scan_data,$i);
1.157 albertel 6202: return;
6203: }
6204: $scanlines->{'corrected'}[$i]=$newline;
6205: }
6206:
1.423 albertel 6207: =pod
6208:
6209: =item scantron_clear_skip
6210:
1.424 albertel 6211: Remove a line from the 'skipped' file
6212:
6213: Arguments:
6214: $scanlines - hash ref that looks like the first return value from
6215: &scantron_getfile()
6216: $scan_data - hash ref that looks like the second return value from
6217: &scantron_getfile()
6218: $i - line number to update
6219:
1.423 albertel 6220: =cut
6221:
1.376 albertel 6222: sub scantron_clear_skip {
6223: my ($scanlines,$scan_data,$i)=@_;
6224: if (exists($scanlines->{'skipped'}[$i])) {
6225: undef($scanlines->{'skipped'}[$i]);
6226: return 1;
6227: }
6228: return 0;
6229: }
6230:
1.423 albertel 6231: =pod
6232:
6233: =item scantron_filter_not_exam
6234:
1.424 albertel 6235: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
6236: filter out resources that are not marked as 'exam' mode
6237:
1.423 albertel 6238: =cut
6239:
1.334 albertel 6240: sub scantron_filter_not_exam {
6241: my ($curres)=@_;
6242:
6243: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
6244: # if the user has asked to not have either hidden
6245: # or 'randomout' controlled resources to be graded
6246: # don't include them
6247: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6248: && $curres->randomout) {
6249: return 0;
6250: }
6251: return 1;
6252: }
6253: return 0;
6254: }
6255:
1.423 albertel 6256: =pod
6257:
6258: =item scantron_validate_sequence
6259:
1.424 albertel 6260: Validates the selected sequence, checking for resource that are
6261: not set to exam mode.
6262:
1.423 albertel 6263: =cut
6264:
1.334 albertel 6265: sub scantron_validate_sequence {
6266: my ($r,$currentphase) = @_;
6267:
6268: my $navmap=Apache::lonnavmaps::navmap->new();
6269: my (undef,undef,$sequence)=
6270: &Apache::lonnet::decode_symb($env{'form.selectpage'});
6271:
6272: my $map=$navmap->getResourceByUrl($sequence);
6273:
6274: $r->print('<input type="hidden" name="validate_sequence_exam"
6275: value="ignore" />');
6276: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
6277: my @resources=
6278: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
6279: if (@resources) {
1.357 banghart 6280: $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 6281: return (1,$currentphase);
6282: }
6283: }
6284:
6285: return (0,$currentphase+1);
6286: }
6287:
1.423 albertel 6288: =pod
6289:
6290: =item scantron_validate_ID
6291:
1.424 albertel 6292: Validates all scanlines in the selected file to not have any
6293: invalid or underspecified student IDs
6294:
1.423 albertel 6295: =cut
6296:
1.157 albertel 6297: sub scantron_validate_ID {
6298: my ($r,$currentphase) = @_;
6299:
6300: #get student info
6301: my $classlist=&Apache::loncoursedata::get_classlist();
6302: my %idmap=&username_to_idmap($classlist);
6303:
6304: #get scantron line setup
1.257 albertel 6305: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6306: my ($scanlines,$scan_data)=&scantron_getfile();
1.447 foxr 6307:
6308: &scantron_get_maxbubble(); # parse needs the bubble_lines.. array.
1.157 albertel 6309:
6310: my %found=('ids'=>{},'usernames'=>{});
6311: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6312: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6313: if ($line=~/^[\s\cz]*$/) { next; }
6314: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6315: $scan_data);
6316: my $id=$$scan_record{'scantron.ID'};
6317: my $found;
6318: foreach my $checkid (keys(%idmap)) {
6319: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
6320: }
6321: if ($found) {
6322: my $username=$idmap{$found};
6323: if ($found{'ids'}{$found}) {
6324: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6325: $line,'duplicateID',$found);
1.194 albertel 6326: return(1,$currentphase);
1.157 albertel 6327: } elsif ($found{'usernames'}{$username}) {
6328: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6329: $line,'duplicateID',$username);
1.194 albertel 6330: return(1,$currentphase);
1.157 albertel 6331: }
1.186 albertel 6332: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 6333: $found{'ids'}{$found}++;
6334: $found{'usernames'}{$username}++;
6335: } else {
6336: if ($id =~ /^\s*$/) {
1.158 albertel 6337: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 6338: if (defined($username) && $found{'usernames'}{$username}) {
6339: &scantron_get_correction($r,$i,$scan_record,
6340: \%scantron_config,
6341: $line,'duplicateID',$username);
1.194 albertel 6342: return(1,$currentphase);
1.157 albertel 6343: } elsif (!defined($username)) {
6344: &scantron_get_correction($r,$i,$scan_record,
6345: \%scantron_config,
6346: $line,'incorrectID');
1.194 albertel 6347: return(1,$currentphase);
1.157 albertel 6348: }
6349: $found{'usernames'}{$username}++;
6350: } else {
6351: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6352: $line,'incorrectID');
1.194 albertel 6353: return(1,$currentphase);
1.157 albertel 6354: }
6355: }
6356: }
6357:
6358: return (0,$currentphase+1);
6359: }
6360:
1.423 albertel 6361: =pod
6362:
6363: =item scantron_get_correction
6364:
1.424 albertel 6365: Builds the interface screen to interact with the operator to fix a
6366: specific error condition in a specific scanline
6367:
6368: Arguments:
6369: $r - Apache request object
6370: $i - number of the current scanline
6371: $scan_record - hash ref as returned from &scantron_parse_scanline()
6372: $scan_config - hash ref as returned from &get_scantron_config()
6373: $line - full contents of the current scanline
6374: $error - error condition, valid values are
6375: 'incorrectCODE', 'duplicateCODE',
6376: 'doublebubble', 'missingbubble',
6377: 'duplicateID', 'incorrectID'
6378: $arg - extra information needed
6379: For errors:
6380: - duplicateID - paper number that this studentID was seen before on
6381: - duplicateCODE - array ref of the paper numbers this CODE was
6382: seen on before
6383: - incorrectCODE - current incorrect CODE
6384: - doublebubble - array ref of the bubble lines that have double
6385: bubble errors
6386: - missingbubble - array ref of the bubble lines that have missing
6387: bubble errors
6388:
1.423 albertel 6389: =cut
6390:
1.157 albertel 6391: sub scantron_get_correction {
6392: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
6393:
1.454 banghart 6394: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 6395: #to show both the current line and the previous one and allow skipping
6396: #the previous one or the current one
6397:
1.161 albertel 6398: $r->print("<p><b>An error was detected ($error)</b>");
1.333 albertel 6399: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.157 albertel 6400: $r->print(" for PaperID <tt>".
6401: $$scan_record{'scantron.PaperID'}."</tt> \n");
6402: } else {
6403: $r->print(" in scanline $i <pre>".
6404: $line."</pre> \n");
6405: }
1.242 albertel 6406: my $message="<p>The ID on the form is <tt>".
6407: $$scan_record{'scantron.ID'}."</tt><br />\n".
6408: "The name on the paper is ".
6409: $$scan_record{'scantron.LastName'}.",".
6410: $$scan_record{'scantron.FirstName'}."</p>";
6411:
1.157 albertel 6412: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
6413: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
6414: if ($error =~ /ID$/) {
1.186 albertel 6415: if ($error eq 'incorrectID') {
1.157 albertel 6416: $r->print("The encoded ID is not in the classlist</p>\n");
6417: } elsif ($error eq 'duplicateID') {
6418: $r->print("The encoded ID has also been used by a previous paper $arg</p>\n");
6419: }
1.242 albertel 6420: $r->print($message);
1.157 albertel 6421: $r->print("<p>How should I handle this? <br /> \n");
6422: $r->print("\n<ul><li> ");
6423: #FIXME it would be nice if this sent back the user ID and
6424: #could do partial userID matches
6425: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
6426: 'scantron_username','scantron_domain'));
6427: $r->print(": <input type='text' name='scantron_username' value='' />");
6428: $r->print("\n@".
1.257 albertel 6429: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 6430:
6431: $r->print('</li>');
1.186 albertel 6432: } elsif ($error =~ /CODE$/) {
6433: if ($error eq 'incorrectCODE') {
1.187 albertel 6434: $r->print("</p><p>The encoded CODE is not in the list of possible CODEs</p>\n");
1.186 albertel 6435: } elsif ($error eq 'duplicateCODE') {
1.194 albertel 6436: $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 6437: }
1.224 albertel 6438: $r->print("<p>The CODE on the form is <tt>'".
6439: $$scan_record{'scantron.CODE'}."'</tt><br />\n");
1.242 albertel 6440: $r->print($message);
1.186 albertel 6441: $r->print("<p>How should I handle this? <br /> \n");
1.187 albertel 6442: $r->print("\n<br /> ");
1.194 albertel 6443: my $i=0;
1.273 albertel 6444: if ($error eq 'incorrectCODE'
6445: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 6446: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 6447: if ($closest > 0) {
6448: foreach my $testcode (@{$closest}) {
6449: my $checked='';
1.401 albertel 6450: if (!$i) { $checked=' checked="checked" '; }
1.278 albertel 6451: $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' />");
6452: $r->print("\n<br />");
6453: $i++;
6454: }
1.194 albertel 6455: }
6456: }
1.273 albertel 6457: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.401 albertel 6458: my $checked; if (!$i) { $checked=' checked="checked" '; }
1.273 albertel 6459: $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>");
6460: $r->print("\n<br />");
6461: }
1.194 albertel 6462:
1.188 albertel 6463: $r->print(<<ENDSCRIPT);
6464: <script type="text/javascript">
6465: function change_radio(field) {
1.190 albertel 6466: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 6467: var i;
6468: for (i=0;i<slct.length;i++) {
6469: if (slct[i].value==field) { slct[i].checked=true; }
6470: }
6471: }
6472: </script>
6473: ENDSCRIPT
1.187 albertel 6474: my $href="/adm/pickcode?".
1.359 www 6475: "form=".&escape("scantronupload").
6476: "&scantron_format=".&escape($env{'form.scantron_format'}).
6477: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
6478: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
6479: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 6480: if ($env{'form.scantron_CODElist'} =~ /\S/) {
6481: $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')\" />");
6482: $r->print("\n<br />");
6483: }
1.272 albertel 6484: $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 6485: $r->print("\n<br /><br />");
1.157 albertel 6486: } elsif ($error eq 'doublebubble') {
6487: $r->print("<p>There have been multiple bubbles scanned for a some question(s)</p>\n");
6488: $r->print('<input type="hidden" name="scantron_questions" value="'.
6489: join(',',@{$arg}).'" />');
1.242 albertel 6490: $r->print($message);
1.157 albertel 6491: $r->print("<p>Please indicate which bubble should be used for grading</p>");
6492: foreach my $question (@{$arg}) {
1.447 foxr 6493: my $selected = &get_response_bubbles($scan_record, $question);
1.461 foxr 6494: my @select_array = split(/:/,$selected);
1.422 foxr 6495: &scantron_bubble_selector($r,$scan_config,$question,
1.460 foxr 6496: @select_array);
1.157 albertel 6497: }
6498: } elsif ($error eq 'missingbubble') {
6499: $r->print("<p>There have been <b>no</b> bubbles scanned for some question(s)</p>\n");
1.242 albertel 6500: $r->print($message);
1.157 albertel 6501: $r->print("<p>Please indicate which bubble should be used for grading</p>");
6502: $r->print("Some questions have no scanned bubbles\n");
6503: $r->print('<input type="hidden" name="scantron_questions" value="'.
6504: join(',',@{$arg}).'" />');
6505: foreach my $question (@{$arg}) {
1.448 foxr 6506: my $selected = &get_response_bubbles($scan_record, $question);
1.470 foxr 6507: my @select_array = split(/:/,$selected); # ought to be an array of empties.
6508: &scantron_bubble_selector($r,$scan_config,$question, @select_array);
1.157 albertel 6509: }
6510: } else {
6511: $r->print("\n<ul>");
6512: }
6513: $r->print("\n</li></ul>");
6514:
6515: }
1.423 albertel 6516:
6517: =pod
6518:
6519: =item scantron_bubble_selector
6520:
6521: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 6522: possibly showing the existing the selected bubbles if known
1.423 albertel 6523:
6524: Arguments:
6525: $r - Apache request object
6526: $scan_config - hash from &get_scantron_config()
6527: $quest - number of the bubble line to make a corrector for
1.470 foxr 6528: @lines - array of answer lines.
1.423 albertel 6529:
6530: =cut
6531:
1.157 albertel 6532: sub scantron_bubble_selector {
1.461 foxr 6533: my ($r,$scan_config,$quest,@lines)=@_;
1.157 albertel 6534: my $max=$$scan_config{'Qlength'};
1.274 albertel 6535:
1.461 foxr 6536:
1.274 albertel 6537: my $scmode=$$scan_config{'Qon'};
1.447 foxr 6538:
1.461 foxr 6539: my $bubble_length = scalar(@lines);
1.460 foxr 6540:
1.447 foxr 6541:
1.274 albertel 6542: if ($scmode eq 'number' || $scmode eq 'letter') { $max=10; }
6543:
1.448 foxr 6544: my $response = $quest-1;
6545: my $lines = $bubble_lines_per_response{$response};
1.447 foxr 6546:
1.422 foxr 6547: my $total_lines = $lines*2;
1.157 albertel 6548: my @alphabet=('A'..'Z');
1.422 foxr 6549: $r->print("<table border='1'><tr><td rowspan='".$total_lines."'>$quest</td>");
6550:
6551: for (my $l = 0; $l < $lines; $l++) {
6552: if ($l != 0) {
6553: $r->print('<tr>');
6554: }
1.462 foxr 6555: my @selected = split(//,$lines[$l]);
1.422 foxr 6556: for (my $i=0;$i<$max;$i++) {
6557: $r->print("\n".'<td align="center">');
6558: if ($selected[0] eq $alphabet[$i]) {
6559: $r->print('X');
6560: shift(@selected) ;
6561: } else {
6562: $r->print(' ');
6563: }
6564: $r->print('</td>');
6565:
6566: }
6567:
6568: if ($l == 0) {
6569: my $lspan = $total_lines * 2; # 2 table rows per bubble line.
6570:
6571: $r->print('<td rowspan='.$lspan.'><label><input type="radio" name="scantron_correct_Q_'.
6572: $quest.'" value="none" /> No bubble </label></td>');
6573:
6574: }
6575:
6576: $r->print('</tr><tr>');
6577:
6578: # FIXME: This may have to be a bit more clever for
6579: # multiline questions (different values e.g..).
6580:
6581: for (my $i=0;$i<$max;$i++) {
6582: $r->print("\n".
6583: '<td><label><input type="radio" name="scantron_correct_Q_'.
6584: $quest.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
6585: }
6586: $r->print('</tr>');
6587:
6588:
1.157 albertel 6589: }
1.422 foxr 6590: $r->print('</table>');
1.157 albertel 6591: }
6592:
1.423 albertel 6593: =pod
6594:
6595: =item num_matches
6596:
1.424 albertel 6597: Counts the number of characters that are the same between the two arguments.
6598:
6599: Arguments:
6600: $orig - CODE from the scanline
6601: $code - CODE to match against
6602:
6603: Returns:
6604: $count - integer count of the number of same characters between the
6605: two arguments
6606:
1.423 albertel 6607: =cut
6608:
1.194 albertel 6609: sub num_matches {
6610: my ($orig,$code) = @_;
6611: my @code=split(//,$code);
6612: my @orig=split(//,$orig);
6613: my $same=0;
6614: for (my $i=0;$i<scalar(@code);$i++) {
6615: if ($code[$i] eq $orig[$i]) { $same++; }
6616: }
6617: return $same;
6618: }
6619:
1.423 albertel 6620: =pod
6621:
6622: =item scantron_get_closely_matching_CODEs
6623:
1.424 albertel 6624: Cycles through all CODEs and finds the set that has the greatest
6625: number of same characters as the provided CODE
6626:
6627: Arguments:
6628: $allcodes - hash ref returned by &get_codes()
6629: $CODE - CODE from the current scanline
6630:
6631: Returns:
6632: 2 element list
6633: - first elements is number of how closely matching the best fit is
6634: (5 means best set has 5 matching characters)
6635: - second element is an arrary ref containing the set of valid CODEs
6636: that best fit the passed in CODE
6637:
1.423 albertel 6638: =cut
6639:
1.194 albertel 6640: sub scantron_get_closely_matching_CODEs {
6641: my ($allcodes,$CODE)=@_;
6642: my @CODEs;
6643: foreach my $testcode (sort(keys(%{$allcodes}))) {
6644: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
6645: }
6646:
6647: return ($#CODEs,$CODEs[-1]);
6648: }
6649:
1.423 albertel 6650: =pod
6651:
6652: =item get_codes
6653:
1.424 albertel 6654: Builds a hash which has keys of all of the valid CODEs from the selected
6655: set of remembered CODEs.
6656:
6657: Arguments:
6658: $old_name - name of the set of remembered CODEs
6659: $cdom - domain of the course
6660: $cnum - internal course name
6661:
6662: Returns:
6663: %allcodes - keys are the valid CODEs, values are all 1
6664:
1.423 albertel 6665: =cut
6666:
1.194 albertel 6667: sub get_codes {
1.280 foxr 6668: my ($old_name, $cdom, $cnum) = @_;
6669: if (!$old_name) {
6670: $old_name=$env{'form.scantron_CODElist'};
6671: }
6672: if (!$cdom) {
6673: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
6674: }
6675: if (!$cnum) {
6676: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
6677: }
1.278 albertel 6678: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
6679: $cdom,$cnum);
6680: my %allcodes;
6681: if ($result{"type\0$old_name"} eq 'number') {
6682: %allcodes=map {($_,1)} split(',',$result{$old_name});
6683: } else {
6684: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
6685: }
1.194 albertel 6686: return %allcodes;
6687: }
6688:
1.423 albertel 6689: =pod
6690:
6691: =item scantron_validate_CODE
6692:
1.424 albertel 6693: Validates all scanlines in the selected file to not have any
6694: invalid or underspecified CODEs and that none of the codes are
6695: duplicated if this was requested.
6696:
1.423 albertel 6697: =cut
6698:
1.157 albertel 6699: sub scantron_validate_CODE {
6700: my ($r,$currentphase) = @_;
1.257 albertel 6701: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 6702: if ($scantron_config{'CODElocation'} &&
6703: $scantron_config{'CODEstart'} &&
6704: $scantron_config{'CODElength'}) {
1.257 albertel 6705: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 6706: &FIXME_blow_up()
6707: }
6708: } else {
6709: return (0,$currentphase+1);
6710: }
6711:
6712: my %usedCODEs;
6713:
1.194 albertel 6714: my %allcodes=&get_codes();
1.186 albertel 6715:
1.447 foxr 6716: &scantron_get_maxbubble(); # parse needs the lines per response array.
6717:
1.186 albertel 6718: my ($scanlines,$scan_data)=&scantron_getfile();
6719: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6720: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 6721: if ($line=~/^[\s\cz]*$/) { next; }
6722: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6723: $scan_data);
6724: my $CODE=$$scan_record{'scantron.CODE'};
6725: my $error=0;
1.224 albertel 6726: if (!&Apache::lonnet::validCODE($CODE)) {
6727: &scantron_get_correction($r,$i,$scan_record,
6728: \%scantron_config,
6729: $line,'incorrectCODE',\%allcodes);
6730: return(1,$currentphase);
6731: }
1.221 albertel 6732: if (%allcodes && !exists($allcodes{$CODE})
6733: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 6734: &scantron_get_correction($r,$i,$scan_record,
6735: \%scantron_config,
1.194 albertel 6736: $line,'incorrectCODE',\%allcodes);
6737: return(1,$currentphase);
1.186 albertel 6738: }
1.214 albertel 6739: if (exists($usedCODEs{$CODE})
1.257 albertel 6740: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 6741: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 6742: &scantron_get_correction($r,$i,$scan_record,
6743: \%scantron_config,
1.194 albertel 6744: $line,'duplicateCODE',$usedCODEs{$CODE});
6745: return(1,$currentphase);
1.186 albertel 6746: }
1.194 albertel 6747: push (@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 6748: }
1.157 albertel 6749: return (0,$currentphase+1);
6750: }
6751:
1.423 albertel 6752: =pod
6753:
6754: =item scantron_validate_doublebubble
6755:
1.424 albertel 6756: Validates all scanlines in the selected file to not have any
6757: bubble lines with multiple bubbles marked.
6758:
1.423 albertel 6759: =cut
6760:
1.157 albertel 6761: sub scantron_validate_doublebubble {
6762: my ($r,$currentphase) = @_;
6763: #get student info
6764: my $classlist=&Apache::loncoursedata::get_classlist();
6765: my %idmap=&username_to_idmap($classlist);
6766:
6767: #get scantron line setup
1.257 albertel 6768: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6769: my ($scanlines,$scan_data)=&scantron_getfile();
1.447 foxr 6770:
6771: &scantron_get_maxbubble(); # parse needs the bubble line array.
6772:
1.157 albertel 6773: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6774: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6775: if ($line=~/^[\s\cz]*$/) { next; }
6776: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6777: $scan_data);
6778: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
6779: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
6780: 'doublebubble',
6781: $$scan_record{'scantron.doubleerror'});
6782: return (1,$currentphase);
6783: }
6784: return (0,$currentphase+1);
6785: }
6786:
1.423 albertel 6787: =pod
6788:
6789: =item scantron_get_maxbubble
6790:
1.424 albertel 6791: Returns the maximum number of bubble lines that are expected to
6792: occur. Does this by walking the selected sequence rendering the
6793: resource and then checking &Apache::lonxml::get_problem_counter()
6794: for what the current value of the problem counter is.
6795:
1.447 foxr 6796: Caches the results to $env{'form.scantron_maxbubble'},
6797: $env{'form.scantron.bubble_lines.n'} and
6798: $env{'form.scantron.first_bubble_line.n'}
6799: which are the total number of bubble, lines, the number of bubble
6800: lines for reponse n and number of the first bubble line for response n.
1.424 albertel 6801:
1.423 albertel 6802: =cut
6803:
1.330 albertel 6804: sub scantron_get_maxbubble {
1.257 albertel 6805: if (defined($env{'form.scantron_maxbubble'}) &&
6806: $env{'form.scantron_maxbubble'}) {
1.447 foxr 6807: &restore_bubble_lines();
1.257 albertel 6808: return $env{'form.scantron_maxbubble'};
1.191 albertel 6809: }
1.330 albertel 6810:
1.447 foxr 6811: my (undef, undef, $sequence) =
1.257 albertel 6812: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 6813:
1.447 foxr 6814: my $navmap=Apache::lonnavmaps::navmap->new();
1.191 albertel 6815: my $map=$navmap->getResourceByUrl($sequence);
6816: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.330 albertel 6817:
6818: &Apache::lonxml::clear_problem_counter();
6819:
1.435 foxr 6820: my $uname = $env{'form.student'};
6821: my $udom = $env{'form.userdom'};
6822: my $cid = $env{'request.course.id'};
6823: my $total_lines = 0;
6824: %bubble_lines_per_response = ();
1.447 foxr 6825: %first_bubble_line = ();
1.435 foxr 6826:
1.447 foxr 6827:
6828: my $response_number = 0;
6829: my $bubble_line = 0;
1.191 albertel 6830: foreach my $resource (@resources) {
1.435 foxr 6831: my $symb = $resource->symb();
1.447 foxr 6832: &Apache::lonxml::clear_bubble_lines_for_part();
1.330 albertel 6833: my $result=&Apache::lonnet::ssi($resource->src(),
1.435 foxr 6834: ('symb' => $resource->symb()),
6835: ('grade_target' => 'analyze'),
6836: ('grade_courseid' => $cid),
6837: ('grade_domain' => $udom),
6838: ('grade_username' => $uname));
1.436 albertel 6839: my (undef, $an) =
1.435 foxr 6840: split(/_HASH_REF__/,$result, 2);
6841:
6842: my %analysis = &Apache::lonnet::str2hash($an);
6843:
6844:
6845:
6846: foreach my $part_id (@{$analysis{'parts'}}) {
1.447 foxr 6847:
1.460 foxr 6848:
6849: my $lines = $analysis{"$part_id.bubble_lines"};;
1.447 foxr 6850:
6851: # TODO - make this a persistent hash not an array.
6852:
6853:
6854: $first_bubble_line{$response_number} = $bubble_line;
6855: $bubble_lines_per_response{$response_number} = $lines;
6856: $response_number++;
6857:
6858: $bubble_line += $lines;
6859: $total_lines += $lines;
1.435 foxr 6860: }
6861:
1.191 albertel 6862: }
6863: &Apache::lonnet::delenv('scantron\.');
1.447 foxr 6864:
6865: &save_bubble_lines();
1.330 albertel 6866: $env{'form.scantron_maxbubble'} =
1.435 foxr 6867: $total_lines;
1.257 albertel 6868: return $env{'form.scantron_maxbubble'};
1.191 albertel 6869: }
6870:
1.423 albertel 6871: =pod
6872:
6873: =item scantron_validate_missingbubbles
6874:
1.424 albertel 6875: Validates all scanlines in the selected file to not have any
1.447 foxr 6876: answers that don't have bubbles that have not been verified
6877: to be bubble free.
1.424 albertel 6878:
1.423 albertel 6879: =cut
6880:
1.157 albertel 6881: sub scantron_validate_missingbubbles {
6882: my ($r,$currentphase) = @_;
6883: #get student info
6884: my $classlist=&Apache::loncoursedata::get_classlist();
6885: my %idmap=&username_to_idmap($classlist);
6886:
6887: #get scantron line setup
1.257 albertel 6888: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6889: my ($scanlines,$scan_data)=&scantron_getfile();
1.191 albertel 6890: my $max_bubble=&scantron_get_maxbubble();
1.157 albertel 6891: if (!$max_bubble) { $max_bubble=2**31; }
6892: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6893: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6894: if ($line=~/^[\s\cz]*$/) { next; }
6895: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6896: $scan_data);
6897: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
6898: my @to_correct;
1.470 foxr 6899:
6900: # Probably here's where the error is...
6901:
1.157 albertel 6902: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
6903: if ($missing > $max_bubble) { next; }
6904: push(@to_correct,$missing);
6905: }
6906: if (@to_correct) {
6907: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6908: $line,'missingbubble',\@to_correct);
6909: return (1,$currentphase);
6910: }
6911:
6912: }
6913: return (0,$currentphase+1);
6914: }
6915:
1.423 albertel 6916: =pod
6917:
6918: =item scantron_process_students
6919:
6920: Routine that does the actual grading of the bubble sheet information.
6921:
6922: The parsed scanline hash is added to %env
6923:
6924: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
6925: foreach resource , with the form data of
6926:
6927: 'submitted' =>'scantron'
6928: 'grade_target' =>'grade',
6929: 'grade_username'=> username of student
6930: 'grade_domain' => domain of student
6931: 'grade_courseid'=> of course
6932: 'grade_symb' => symb of resource to grade
6933:
6934: This triggers a grading pass. The problem grading code takes care
6935: of converting the bubbled letter information (now in %env) into a
6936: valid submission.
6937:
6938: =cut
6939:
1.82 albertel 6940: sub scantron_process_students {
1.75 albertel 6941: my ($r) = @_;
1.257 albertel 6942: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.324 albertel 6943: my ($symb)=&get_symb($r);
1.81 albertel 6944: if (!$symb) {return '';}
1.324 albertel 6945: my $default_form_data=&defaultFormData($symb);
1.82 albertel 6946:
1.257 albertel 6947: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6948: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 6949: my $classlist=&Apache::loncoursedata::get_classlist();
6950: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 6951: my $navmap=Apache::lonnavmaps::navmap->new();
1.83 albertel 6952: my $map=$navmap->getResourceByUrl($sequence);
6953: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.140 albertel 6954: # $r->print("geto ".scalar(@resources)."<br />");
1.82 albertel 6955: my $result= <<SCANTRONFORM;
1.81 albertel 6956: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
6957: <input type="hidden" name="command" value="scantron_configphase" />
6958: $default_form_data
6959: SCANTRONFORM
1.82 albertel 6960: $r->print($result);
6961:
6962: my @delayqueue;
1.140 albertel 6963: my %completedstudents;
6964:
1.200 albertel 6965: my $count=&get_todo_count($scanlines,$scan_data);
1.157 albertel 6966: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
1.200 albertel 6967: 'Scantron Progress',$count,
1.195 albertel 6968: 'inline',undef,'scantronupload');
1.140 albertel 6969: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
6970: 'Processing first student');
6971: my $start=&Time::HiRes::time();
1.158 albertel 6972: my $i=-1;
1.200 albertel 6973: my ($uname,$udom,$started);
1.447 foxr 6974:
6975: &scantron_get_maxbubble(); # Need the bubble lines array to parse.
6976:
1.157 albertel 6977: while ($i<$scanlines->{'count'}) {
6978: ($uname,$udom)=('','');
6979: $i++;
1.200 albertel 6980: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6981: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 6982: if ($started) {
6983: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
6984: 'last student');
6985: }
6986: $started=1;
1.157 albertel 6987: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6988: $scan_data);
6989: unless ($uname=&scantron_find_student($scan_record,$scan_data,
6990: \%idmap,$i)) {
6991: &scantron_add_delay(\@delayqueue,$line,
6992: 'Unable to find a student that matches',1);
6993: next;
6994: }
6995: if (exists $completedstudents{$uname}) {
6996: &scantron_add_delay(\@delayqueue,$line,
6997: 'Student '.$uname.' has multiple sheets',2);
6998: next;
6999: }
7000: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 7001:
7002: &Apache::lonxml::clear_problem_counter();
1.157 albertel 7003: &Apache::lonnet::appenv(%$scan_record);
1.376 albertel 7004:
7005: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
7006: &scantron_putfile($scanlines,$scan_data);
7007: }
1.161 albertel 7008:
7009: my $i=0;
1.83 albertel 7010: foreach my $resource (@resources) {
1.85 albertel 7011: $i++;
1.193 albertel 7012: my %form=('submitted' =>'scantron',
7013: 'grade_target' =>'grade',
7014: 'grade_username'=>$uname,
7015: 'grade_domain' =>$udom,
1.257 albertel 7016: 'grade_courseid'=>$env{'request.course.id'},
1.193 albertel 7017: 'grade_symb' =>$resource->symb());
1.383 albertel 7018: if (exists($scan_record->{'scantron.CODE'})
7019: &&
7020: &Apache::lonnet::validCODE($scan_record->{'scantron.CODE'})) {
1.193 albertel 7021: $form{'CODE'}=$scan_record->{'scantron.CODE'};
1.224 albertel 7022: } else {
7023: $form{'CODE'}='';
1.193 albertel 7024: }
7025: my $result=&Apache::lonnet::ssi($resource->src(),%form);
1.227 albertel 7026: if ($result ne '') {
7027: }
1.213 albertel 7028: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.83 albertel 7029: }
1.140 albertel 7030: $completedstudents{$uname}={'line'=>$line};
1.213 albertel 7031: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 7032: } continue {
1.330 albertel 7033: &Apache::lonxml::clear_problem_counter();
1.83 albertel 7034: &Apache::lonnet::delenv('scantron\.');
1.82 albertel 7035: }
1.140 albertel 7036: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.172 albertel 7037: # my $lasttime = &Time::HiRes::time()-$start;
7038: # $r->print("<p>took $lasttime</p>");
1.140 albertel 7039:
1.200 albertel 7040: $r->print("</form>");
1.324 albertel 7041: $r->print(&show_grading_menu_form($symb));
1.157 albertel 7042: return '';
1.75 albertel 7043: }
1.157 albertel 7044:
1.423 albertel 7045: =pod
7046:
7047: =item scantron_upload_scantron_data
7048:
7049: Creates the screen for adding a new bubble sheet data file to a course.
7050:
7051: =cut
7052:
1.157 albertel 7053: sub scantron_upload_scantron_data {
7054: my ($r)=@_;
1.257 albertel 7055: $r->print(&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}));
1.157 albertel 7056: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 7057: 'domainid',
7058: 'coursename');
1.257 albertel 7059: my $domsel=&Apache::loncommon::select_dom_form($env{'request.role.domain'},
1.157 albertel 7060: 'domainid');
1.324 albertel 7061: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.157 albertel 7062: $r->print(<<UPLOAD);
7063: <script type="text/javascript" language="javascript">
7064: function checkUpload(formname) {
7065: if (formname.upfile.value == "") {
7066: alert("Please use the browse button to select a file from your local directory.");
7067: return false;
7068: }
7069: formname.submit();
7070: }
7071: </script>
7072:
7073: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
1.162 albertel 7074: $default_form_data
1.181 albertel 7075: <table>
7076: <tr><td>$select_link </td></tr>
7077: <tr><td>Course ID: </td><td><input name='courseid' type='text' /> </td></tr>
7078: <tr><td>Course Name: </td><td><input name='coursename' type='text' /></td></tr>
7079: <tr><td>Domain: </td><td>$domsel </td></tr>
7080: <tr><td>File to upload:</td><td><input type="file" name="upfile" size="50" /></td></tr>
7081: </table>
1.157 albertel 7082: <input name='command' value='scantronupload_save' type='hidden' />
7083: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
7084: </form>
7085: UPLOAD
7086: return '';
7087: }
7088:
1.423 albertel 7089: =pod
7090:
7091: =item scantron_upload_scantron_data_save
7092:
7093: Adds a provided bubble information data file to the course if user
7094: has the correct privileges to do so.
7095:
7096: =cut
7097:
1.157 albertel 7098: sub scantron_upload_scantron_data_save {
7099: my($r)=@_;
1.324 albertel 7100: my ($symb)=&get_symb($r,1);
1.182 albertel 7101: my $doanotherupload=
7102: '<br /><form action="/adm/grades" method="post">'."\n".
7103: '<input type="hidden" name="command" value="scantronupload" />'."\n".
7104: '<input type="submit" name="submit" value="Do Another Upload" />'."\n".
7105: '</form>'."\n";
1.257 albertel 7106: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 7107: !&Apache::lonnet::allowed('usc',
1.257 albertel 7108: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.162 albertel 7109: $r->print("You are not allowed to upload Scantron data to the requested course.<br />");
1.182 albertel 7110: if ($symb) {
1.324 albertel 7111: $r->print(&show_grading_menu_form($symb));
1.182 albertel 7112: } else {
7113: $r->print($doanotherupload);
7114: }
1.162 albertel 7115: return '';
7116: }
1.257 albertel 7117: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.211 ng 7118: $r->print("Doing upload to ".$coursedata{'description'}." <br />");
1.257 albertel 7119: my $fname=$env{'form.upfile.filename'};
1.157 albertel 7120: #FIXME
7121: #copied from lonnet::userfileupload()
7122: #make that function able to target a specified course
7123: # Replace Windows backslashes by forward slashes
7124: $fname=~s/\\/\//g;
7125: # Get rid of everything but the actual filename
7126: $fname=~s/^.*\/([^\/]+)$/$1/;
7127: # Replace spaces by underscores
7128: $fname=~s/\s+/\_/g;
7129: # Replace all other weird characters by nothing
7130: $fname=~s/[^\w\.\-]//g;
7131: # See if there is anything left
7132: unless ($fname) { return 'error: no uploaded file'; }
1.209 ng 7133: my $uploadedfile=$fname;
1.157 albertel 7134: $fname='scantron_orig_'.$fname;
1.257 albertel 7135: if (length($env{'form.upfile'}) < 2) {
1.398 albertel 7136: $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 7137: } else {
1.275 albertel 7138: my $result=&Apache::lonnet::finishuserfileupload($env{'form.courseid'},$env{'form.domainid'},'upfile',$fname);
1.210 albertel 7139: if ($result =~ m|^/uploaded/|) {
1.398 albertel 7140: $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 7141: } else {
1.398 albertel 7142: $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 7143: }
7144: }
1.174 albertel 7145: if ($symb) {
1.209 ng 7146: $r->print(&scantron_selectphase($r,$uploadedfile));
1.174 albertel 7147: } else {
1.182 albertel 7148: $r->print($doanotherupload);
1.174 albertel 7149: }
1.157 albertel 7150: return '';
7151: }
7152:
1.423 albertel 7153: =pod
7154:
7155: =item valid_file
7156:
1.424 albertel 7157: Validates that the requested bubble data file exists in the course.
1.423 albertel 7158:
7159: =cut
7160:
1.202 albertel 7161: sub valid_file {
7162: my ($requested_file)=@_;
7163: foreach my $filename (sort(&scantron_filenames())) {
7164: if ($requested_file eq $filename) { return 1; }
7165: }
7166: return 0;
7167: }
7168:
1.423 albertel 7169: =pod
7170:
7171: =item scantron_download_scantron_data
7172:
7173: Shows a list of the three internal files (original, corrected,
7174: skipped) for a specific bubble sheet data file that exists in the
7175: course.
7176:
7177: =cut
7178:
1.202 albertel 7179: sub scantron_download_scantron_data {
7180: my ($r)=@_;
1.324 albertel 7181: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 7182: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7183: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7184: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 7185: if (! &valid_file($file)) {
7186: $r->print(<<ERROR);
7187: <p>
7188: The requested file name was invalid.
7189: </p>
7190: ERROR
1.324 albertel 7191: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 7192: return;
7193: }
7194: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
7195: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
7196: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
7197: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
7198: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
7199: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
7200: $r->print(<<DOWNLOAD);
7201: <p>
7202: <a href="$orig">Original</a> file as uploaded by the scantron office.
7203: </p>
7204: <p>
7205: <a href="$corrected">Corrections</a>, a file of corrected records that were used in grading.
7206: </p>
7207: <p>
7208: <a href="$skipped">Skipped</a>, a file of records that were skipped.
7209: </p>
7210: DOWNLOAD
1.324 albertel 7211: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 7212: return '';
7213: }
1.157 albertel 7214:
1.423 albertel 7215: =pod
7216:
7217: =back
7218:
7219: =cut
7220:
1.75 albertel 7221: #-------- end of section for handling grading scantron forms -------
7222: #
7223: #-------------------------------------------------------------------
7224:
1.72 ng 7225: #-------------------------- Menu interface -------------------------
7226: #
7227: #--- Show a Grading Menu button - Calls the next routine ---
7228: sub show_grading_menu_form {
1.324 albertel 7229: my ($symb)=@_;
1.125 ng 7230: my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.418 albertel 7231: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 7232: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.72 ng 7233: '<input type="hidden" name="command" value="gradingmenu" />'."\n".
1.478 ! albertel 7234: '<input type="submit" name="submit" value="'.&mt('Grading Menu').'" />'."\n".
1.72 ng 7235: '</form>'."\n";
7236: return $result;
7237: }
7238:
1.77 ng 7239: # -- Retrieve choices for grading form
7240: sub savedState {
7241: my %savedState = ();
1.257 albertel 7242: if ($env{'form.saveState'}) {
7243: foreach (split(/:/,$env{'form.saveState'})) {
1.77 ng 7244: my ($key,$value) = split(/=/,$_,2);
7245: $savedState{$key} = $value;
7246: }
7247: }
7248: return \%savedState;
7249: }
1.76 ng 7250:
1.443 banghart 7251: sub grading_menu {
7252: my ($request) = @_;
7253: my ($symb)=&get_symb($request);
7254: if (!$symb) {return '';}
7255: my $probTitle = &Apache::lonnet::gettitle($symb);
7256: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
7257:
1.444 banghart 7258: $request->print($table);
1.443 banghart 7259: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
7260: 'handgrade'=>$hdgrade,
7261: 'probTitle'=>$probTitle,
7262: 'command'=>'submit_options',
7263: 'saveState'=>"",
7264: 'gradingMenu'=>1,
7265: 'showgrading'=>"yes");
7266: my $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7267: my @menu = ({ url => $url,
7268: name => &mt('Manual Grading/View Submissions'),
7269: short_description =>
7270: &mt('Start the process of hand grading submissions.'),
7271: });
7272: $fields{'command'} = 'csvform';
7273: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7274: push (@menu, { url => $url,
7275: name => &mt('Upload Scores'),
7276: short_description =>
7277: &mt('Specify a file containing the class scores for current resource.')});
7278: $fields{'command'} = 'processclicker';
7279: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7280: push (@menu, { url => $url,
7281: name => &mt('Process Clicker'),
7282: short_description =>
7283: &mt('Specify a file containing the clicker information for this resource.')});
7284: $fields{'command'} = 'scantron_selectphase';
7285: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7286: push (@menu, { url => $url,
1.454 banghart 7287: name => &mt('Grade/Manage Scantron Forms'),
7288: short_description =>
7289: &mt('')});
1.443 banghart 7290: $fields{'command'} = 'verify';
7291: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.445 banghart 7292: push (@menu, { url => "",
1.443 banghart 7293: name => &mt('Verify Receipt'),
7294: short_description =>
7295: &mt('')});
7296: #
7297: # Create the menu
7298: my $Str;
1.444 banghart 7299: # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
1.445 banghart 7300: $Str .= '<form method="post" action="" name="gradingMenu">';
7301: $Str .= '<input type="hidden" name="command" value="" />'.
7302: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
7303: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
1.476 albertel 7304: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.445 banghart 7305: '<input type="hidden" name="saveState" value="" />'."\n".
7306: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
7307: '<input type="hidden" name="showgrading" value="yes" />'."\n";
7308:
1.443 banghart 7309: foreach my $menudata (@menu) {
1.445 banghart 7310: if ($menudata->{'name'} ne &mt('Verify Receipt')) {
7311: $Str .=' <h3><a '.
7312: $menudata->{'jscript'}.
7313: ' href="'.
7314: $menudata->{'url'}.'" >'.
7315: $menudata->{'name'}."</a></h3>\n";
7316: } else {
1.458 banghart 7317: $Str .=' <h3><input type="button" value="Verify Receipt" '.
1.445 banghart 7318: $menudata->{'jscript'}.
1.458 banghart 7319: ' onClick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
7320: ' /></h3>';
1.446 banghart 7321: $Str .= (' 'x8).
7322: ' receipt: '.&Apache::lonnet::recprefix($env{'request.course.id'}).
1.445 banghart 7323: '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />';
1.444 banghart 7324: }
1.443 banghart 7325: $Str .= ' '.(' 'x8).$menudata->{'short_description'}.
7326: "\n";
7327: }
1.444 banghart 7328: $Str .="</form>\n";
1.443 banghart 7329: $request->print(<<GRADINGMENUJS);
7330: <script type="text/javascript" language="javascript">
7331: function checkChoice(formname,val,cmdx) {
7332: if (val <= 2) {
7333: var cmd = radioSelection(formname.radioChoice);
7334: var cmdsave = cmd;
7335: } else {
7336: cmd = cmdx;
7337: cmdsave = 'submission';
7338: }
7339: formname.command.value = cmd;
7340: if (val < 5) formname.submit();
7341: if (val == 5) {
1.458 banghart 7342: if (!checkReceiptNo(formname,'notOK')) {
7343: return false;
7344: } else {
7345: formname.submit();
7346: }
1.445 banghart 7347: }
7348: }
1.443 banghart 7349:
7350: function checkReceiptNo(formname,nospace) {
7351: var receiptNo = formname.receipt.value;
7352: var checkOpt = false;
7353: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
7354: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
7355: if (checkOpt) {
7356: alert("Please enter a receipt number given by a student in the receipt box.");
7357: formname.receipt.value = "";
7358: formname.receipt.focus();
7359: return false;
7360: }
7361: return true;
7362: }
7363: </script>
7364: GRADINGMENUJS
7365: &commonJSfunctions($request);
7366: return $Str;
7367: }
7368:
7369:
7370: #--- Displays the submissions first page -------
7371: sub submit_options {
1.72 ng 7372: my ($request) = @_;
1.324 albertel 7373: my ($symb)=&get_symb($request);
1.72 ng 7374: if (!$symb) {return '';}
1.76 ng 7375: my $probTitle = &Apache::lonnet::gettitle($symb);
1.72 ng 7376:
7377: $request->print(<<GRADINGMENUJS);
7378: <script type="text/javascript" language="javascript">
1.116 ng 7379: function checkChoice(formname,val,cmdx) {
7380: if (val <= 2) {
7381: var cmd = radioSelection(formname.radioChoice);
1.118 ng 7382: var cmdsave = cmd;
1.116 ng 7383: } else {
7384: cmd = cmdx;
1.118 ng 7385: cmdsave = 'submission';
1.116 ng 7386: }
7387: formname.command.value = cmd;
1.118 ng 7388: formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145 albertel 7389: ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116 ng 7390: if (val < 5) formname.submit();
7391: if (val == 5) {
1.72 ng 7392: if (!checkReceiptNo(formname,'notOK')) { return false;}
7393: formname.submit();
7394: }
1.238 albertel 7395: if (val < 7) formname.submit();
1.72 ng 7396: }
7397:
7398: function checkReceiptNo(formname,nospace) {
7399: var receiptNo = formname.receipt.value;
7400: var checkOpt = false;
7401: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
7402: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
7403: if (checkOpt) {
7404: alert("Please enter a receipt number given by a student in the receipt box.");
7405: formname.receipt.value = "";
7406: formname.receipt.focus();
7407: return false;
7408: }
7409: return true;
7410: }
7411: </script>
7412: GRADINGMENUJS
1.118 ng 7413: &commonJSfunctions($request);
1.324 albertel 7414: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
1.473 albertel 7415: my $result;
1.76 ng 7416: my (undef,$sections) = &getclasslist('all','0');
1.77 ng 7417: my $savedState = &savedState();
1.118 ng 7418: my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77 ng 7419: my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118 ng 7420: my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77 ng 7421: my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72 ng 7422:
7423: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.418 albertel 7424: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.72 ng 7425: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
7426: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.116 ng 7427: '<input type="hidden" name="command" value="" />'."\n".
1.77 ng 7428: '<input type="hidden" name="saveState" value="" />'."\n".
1.124 ng 7429: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72 ng 7430: '<input type="hidden" name="showgrading" value="yes" />'."\n";
7431:
1.472 albertel 7432: $result.='
7433: <div class="LC_grade_select_mode">
1.473 albertel 7434: <div class="LC_grade_select_mode_current">
7435: <h2>
7436: '.&mt('Grade Current Resource').'
7437: </h2>
7438: <div class="LC_grade_select_mode_body">
7439: <div class="LC_grades_resource_info">
7440: '.$table.'
7441: </div>
7442: <div class="LC_grade_select_mode_selector">
7443: <div class="LC_grade_select_mode_selector_header">
7444: '.&mt('Sections').'
7445: </div>
7446: <div class="LC_grade_select_mode_selector_body">
7447: <select name="section" multiple="multiple" size="5">'."\n";
1.116 ng 7448: if (ref($sections)) {
1.472 albertel 7449: foreach my $section (sort (@$sections)) {
7450: $result.='<option value="'.$section.'" '.
7451: ($saveSec eq $section ? 'selected="selected"':'').'>'.$section.'</option>'."\n";
1.155 albertel 7452: }
1.116 ng 7453: }
1.401 albertel 7454: $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> ';
1.472 albertel 7455: $result.='
1.473 albertel 7456: </div>
7457: </div>
7458: <div class="LC_grade_select_mode_selector">
7459: <div class="LC_grade_select_mode_selector_header">
7460: '.&mt('Groups').'
7461: </div>
7462: <div class="LC_grade_select_mode_selector_body">
7463: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
7464: </div>
1.472 albertel 7465: </div>
1.473 albertel 7466: <div class="LC_grade_select_mode_selector">
7467: <div class="LC_grade_select_mode_selector_header">
7468: '.&mt('Access Status').'
7469: </div>
7470: <div class="LC_grade_select_mode_selector_body">
7471: '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'
7472: </div>
1.472 albertel 7473: </div>
1.473 albertel 7474: <div class="LC_grade_select_mode_selector">
7475: <div class="LC_grade_select_mode_selector_header">
7476: '.&mt('Submission Status').'
7477: </div>
7478: <div class="LC_grade_select_mode_selector_body">
7479: <select name="submitonly" size="5">
7480: <option value="yes" '. ($saveSub eq 'yes' ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>
7481: <option value="queued" '. ($saveSub eq 'queued' ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>
7482: <option value="graded" '. ($saveSub eq 'graded' ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>
7483: <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>
7484: <option value="all" '. ($saveSub eq 'all' ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>
7485: </select>
7486: </div>
1.472 albertel 7487: </div>
1.473 albertel 7488: <div class="LC_grade_select_mode_type_body">
7489: <div class="LC_grade_select_mode_type">
7490: <label>
7491: <input type="radio" name="radioChoice" value="submission" '.
7492: ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.
7493: &mt('Select individual students to grade and view submissions.').'
7494: </label>
7495: </div>
7496: <div class="LC_grade_select_mode_type">
7497: <label>
7498: <input type="radio" name="radioChoice" value="viewgrades" '.
7499: ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
7500: &mt('Grade all selected students in a grading table.').'
7501: </label>
7502: </div>
7503: <div class="LC_grade_select_mode_type">
7504: <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next->').'" />
7505: </div>
1.472 albertel 7506: </div>
1.473 albertel 7507: </div>
7508: </div>
7509: <div class="LC_grade_select_mode_page">
7510: <h2>
7511: '.&mt('Grade Complete Folder for One Student').'
7512: </h2>
7513: <div class="LC_grades_select_mode_body">
7514: <div class="LC_grade_select_mode_type_body">
7515: <div class="LC_grade_select_mode_type">
7516: <label>
7517: <input type="radio" name="radioChoice" value="pickStudentPage" '.
7518: ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
7519: &mt('The <b>complete</b> page/sequence/folder: For one student').'
7520: </label>
7521: </div>
7522: <div class="LC_grade_select_mode_type">
7523: <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next->').'" />
7524: </div>
1.472 albertel 7525: </div>
7526: </div>
7527: </div>
7528: </div>
7529: </form>';
1.44 ng 7530: return $result;
1.2 albertel 7531: }
7532:
1.285 albertel 7533: sub reset_perm {
7534: undef(%perm);
7535: }
7536:
7537: sub init_perm {
7538: &reset_perm();
1.300 albertel 7539: foreach my $test_perm ('vgr','mgr','opa') {
7540:
7541: my $scope = $env{'request.course.id'};
7542: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
7543:
7544: $scope .= '/'.$env{'request.course.sec'};
7545: if ( $perm{$test_perm}=
7546: &Apache::lonnet::allowed($test_perm,$scope)) {
7547: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
7548: } else {
7549: delete($perm{$test_perm});
7550: }
1.285 albertel 7551: }
7552: }
7553: }
7554:
1.400 www 7555: sub gather_clicker_ids {
1.408 albertel 7556: my %clicker_ids;
1.400 www 7557:
7558: my $classlist = &Apache::loncoursedata::get_classlist();
7559:
7560: # Set up a couple variables.
1.407 albertel 7561: my $username_idx = &Apache::loncoursedata::CL_SNAME();
7562: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 7563: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 7564:
1.407 albertel 7565: foreach my $student (keys(%$classlist)) {
1.438 www 7566: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 7567: my $username = $classlist->{$student}->[$username_idx];
7568: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 7569: my $clickers =
1.408 albertel 7570: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 7571: foreach my $id (split(/\,/,$clickers)) {
1.414 www 7572: $id=~s/^[\#0]+//;
1.421 www 7573: $id=~s/[\-\:]//g;
1.407 albertel 7574: if (exists($clicker_ids{$id})) {
1.408 albertel 7575: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 7576: } else {
1.408 albertel 7577: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 7578: }
7579: }
7580: }
1.407 albertel 7581: return %clicker_ids;
1.400 www 7582: }
7583:
1.402 www 7584: sub gather_adv_clicker_ids {
1.408 albertel 7585: my %clicker_ids;
1.402 www 7586: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
7587: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7588: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 7589: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 7590: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
7591: my ($puname,$pudom)=split(/\:/,$person);
7592: my $clickers =
1.408 albertel 7593: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 7594: foreach my $id (split(/\,/,$clickers)) {
1.414 www 7595: $id=~s/^[\#0]+//;
1.421 www 7596: $id=~s/[\-\:]//g;
1.408 albertel 7597: if (exists($clicker_ids{$id})) {
7598: $clicker_ids{$id}.=','.$puname.':'.$pudom;
7599: } else {
7600: $clicker_ids{$id}=$puname.':'.$pudom;
7601: }
1.405 www 7602: }
1.402 www 7603: }
7604: }
1.407 albertel 7605: return %clicker_ids;
1.402 www 7606: }
7607:
1.413 www 7608: sub clicker_grading_parameters {
7609: return ('gradingmechanism' => 'scalar',
7610: 'upfiletype' => 'scalar',
7611: 'specificid' => 'scalar',
7612: 'pcorrect' => 'scalar',
7613: 'pincorrect' => 'scalar');
7614: }
7615:
1.400 www 7616: sub process_clicker {
7617: my ($r)=@_;
7618: my ($symb)=&get_symb($r);
7619: if (!$symb) {return '';}
7620: my $result=&checkforfile_js();
7621: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
7622: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
7623: $result.=$table;
7624: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
7625: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
7626: $result.=' <b>'.&mt('Specify a file containing the clicker information for this resource').
7627: '.</b></td></tr>'."\n";
7628: $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.413 www 7629: # Attempt to restore parameters from last session, set defaults if not present
7630: my %Saveable_Parameters=&clicker_grading_parameters();
7631: &Apache::loncommon::restore_course_settings('grades_clicker',
7632: \%Saveable_Parameters);
7633: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
7634: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
7635: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
7636: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
7637:
7638: my %checked;
7639: foreach my $gradingmechanism ('attendance','personnel','specific') {
7640: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
7641: $checked{$gradingmechanism}="checked='checked'";
7642: }
7643: }
7644:
1.400 www 7645: my $upload=&mt("Upload File");
7646: my $type=&mt("Type");
1.402 www 7647: my $attendance=&mt("Award points just for participation");
7648: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 7649: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.402 www 7650: my $pcorrect=&mt("Percentage points for correct solution");
7651: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 7652: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.419 www 7653: ('iclicker' => 'i>clicker',
7654: 'interwrite' => 'interwrite PRS'));
1.418 albertel 7655: $symb = &Apache::lonenc::check_encrypt($symb);
1.400 www 7656: $result.=<<ENDUPFORM;
1.402 www 7657: <script type="text/javascript">
7658: function sanitycheck() {
7659: // Accept only integer percentages
7660: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
7661: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
7662: // Find out grading choice
7663: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
7664: if (document.forms.gradesupload.gradingmechanism[i].checked) {
7665: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
7666: }
7667: }
7668: // By default, new choice equals user selection
7669: newgradingchoice=gradingchoice;
7670: // Not good to give more points for false answers than correct ones
7671: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
7672: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
7673: }
7674: // If new choice is attendance only, and old choice was correctness-based, restore defaults
7675: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
7676: document.forms.gradesupload.pcorrect.value=100;
7677: document.forms.gradesupload.pincorrect.value=100;
7678: }
7679: // If the values are different, cannot be attendance only
7680: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
7681: (gradingchoice=='attendance')) {
7682: newgradingchoice='personnel';
7683: }
7684: // Change grading choice to new one
7685: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
7686: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
7687: document.forms.gradesupload.gradingmechanism[i].checked=true;
7688: } else {
7689: document.forms.gradesupload.gradingmechanism[i].checked=false;
7690: }
7691: }
7692: // Remember the old state
7693: document.forms.gradesupload.waschecked.value=newgradingchoice;
7694: }
7695: </script>
1.400 www 7696: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
7697: <input type="hidden" name="symb" value="$symb" />
7698: <input type="hidden" name="command" value="processclickerfile" />
7699: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
7700: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
7701: <input type="file" name="upfile" size="50" />
7702: <br /><label>$type: $selectform</label>
1.451 albertel 7703: <br /><label><input type="radio" name="gradingmechanism" value="attendance" $checked{'attendance'} onClick="sanitycheck()" />$attendance </label>
7704: <br /><label><input type="radio" name="gradingmechanism" value="personnel" $checked{'personnel'} onClick="sanitycheck()" />$personnel</label>
7705: <br /><label><input type="radio" name="gradingmechanism" value="specific" $checked{'specific'} onClick="sanitycheck()" />$specific </label>
1.414 www 7706: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.413 www 7707: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
7708: <br /><label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onChange="sanitycheck()" /></label>
7709: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onChange="sanitycheck()" /></label>
1.400 www 7710: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
7711: </form>
7712: ENDUPFORM
7713: $result.='</td></tr></table>'."\n".
7714: '</td></tr></table><br /><br />'."\n";
7715: $result.=&show_grading_menu_form($symb);
7716: return $result;
7717: }
7718:
7719: sub process_clicker_file {
7720: my ($r)=@_;
7721: my ($symb)=&get_symb($r);
7722: if (!$symb) {return '';}
1.413 www 7723:
7724: my %Saveable_Parameters=&clicker_grading_parameters();
7725: &Apache::loncommon::store_course_settings('grades_clicker',
7726: \%Saveable_Parameters);
7727:
1.400 www 7728: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.404 www 7729: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 7730: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
7731: return $result.&show_grading_menu_form($symb);
1.404 www 7732: }
1.407 albertel 7733: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 7734: my %correct_ids;
1.404 www 7735: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 7736: %correct_ids=&gather_adv_clicker_ids();
1.404 www 7737: }
7738: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 7739: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
7740: $correct_id=~tr/a-z/A-Z/;
7741: $correct_id=~s/\s//gs;
7742: $correct_id=~s/^[\#0]+//;
1.421 www 7743: $correct_id=~s/[\-\:]//g;
1.414 www 7744: if ($correct_id) {
7745: $correct_ids{$correct_id}='specified';
7746: }
7747: }
1.400 www 7748: }
1.404 www 7749: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 7750: $result.=&mt('Score based on attendance only');
1.404 www 7751: } else {
1.408 albertel 7752: my $number=0;
1.411 www 7753: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 7754: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 7755: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 7756: if ($correct_ids{$id} eq 'specified') {
7757: $result.=&mt('specified');
7758: } else {
7759: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
7760: $result.=&Apache::loncommon::plainname($uname,$udom);
7761: }
7762: $number++;
7763: }
1.411 www 7764: $result.="</p>\n";
1.408 albertel 7765: if ($number==0) {
7766: $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
7767: return $result.&show_grading_menu_form($symb);
7768: }
1.404 www 7769: }
1.405 www 7770: if (length($env{'form.upfile'}) < 2) {
1.407 albertel 7771: $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
7772: '<span class="LC_error">',
7773: '</span>',
7774: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.405 www 7775: return $result.&show_grading_menu_form($symb);
7776: }
1.410 www 7777:
7778: # Were able to get all the info needed, now analyze the file
7779:
1.411 www 7780: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 7781: $symb = &Apache::lonenc::check_encrypt($symb);
1.410 www 7782: my $heading=&mt('Scanning clicker file');
7783: $result.=(<<ENDHEADER);
7784: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
7785: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
7786: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
7787: <form method="post" action="/adm/grades" name="clickeranalysis">
7788: <input type="hidden" name="symb" value="$symb" />
7789: <input type="hidden" name="command" value="assignclickergrades" />
7790: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
7791: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.411 www 7792: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
7793: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
7794: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 7795: ENDHEADER
1.408 albertel 7796: my %responses;
7797: my @questiontitles;
1.405 www 7798: my $errormsg='';
7799: my $number=0;
7800: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 7801: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 7802: }
1.419 www 7803: if ($env{'form.upfiletype'} eq 'interwrite') {
7804: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
7805: }
1.411 www 7806: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
7807: '<input type="hidden" name="number" value="'.$number.'" />'.
1.443 banghart 7808: &mt('Awarding [_1] percent for corrion(s)',$number).'<br />'.
7809: '<input type="hidden" name="number" value="'.$number.'" />'.
1.411 www 7810: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
7811: $env{'form.pcorrect'},$env{'form.pincorrect'}).
7812: '<br />';
1.414 www 7813: # Remember Question Titles
7814: # FIXME: Possibly need delimiter other than ":"
7815: for (my $i=0;$i<$number;$i++) {
7816: $result.='<input type="hidden" name="question:'.$i.'" value="'.
7817: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
7818: }
1.411 www 7819: my $correct_count=0;
7820: my $student_count=0;
7821: my $unknown_count=0;
1.414 www 7822: # Match answers with usernames
7823: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 7824: foreach my $id (keys(%responses)) {
1.410 www 7825: if ($correct_ids{$id}) {
1.414 www 7826: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 7827: $correct_count++;
1.410 www 7828: } elsif ($clicker_ids{$id}) {
1.437 www 7829: if ($clicker_ids{$id}=~/\,/) {
7830: # More than one user with the same clicker!
7831: $result.="\n<hr />".&mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
7832: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
7833: "<select name='multi".$id."'>";
7834: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
7835: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
7836: }
7837: $result.='</select>';
7838: $unknown_count++;
7839: } else {
7840: # Good: found one and only one user with the right clicker
7841: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
7842: $student_count++;
7843: }
1.410 www 7844: } else {
1.411 www 7845: $result.="\n<hr />".&mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
7846: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
7847: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
7848: "\n".&mt("Domain").": ".
7849: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
7850: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id);
7851: $unknown_count++;
1.410 www 7852: }
1.405 www 7853: }
1.412 www 7854: $result.='<hr />'.
7855: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
7856: if ($env{'form.gradingmechanism'} ne 'attendance') {
7857: if ($correct_count==0) {
7858: $errormsg.="Found no correct answers answers for grading!";
7859: } elsif ($correct_count>1) {
1.414 www 7860: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 7861: }
7862: }
1.428 www 7863: if ($number<1) {
7864: $errormsg.="Found no questions.";
7865: }
1.412 www 7866: if ($errormsg) {
7867: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
7868: } else {
7869: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
7870: }
7871: $result.='</form></td></tr></table>'."\n".
1.410 www 7872: '</td></tr></table><br /><br />'."\n";
1.404 www 7873: return $result.&show_grading_menu_form($symb);
1.400 www 7874: }
7875:
1.405 www 7876: sub iclicker_eval {
1.406 www 7877: my ($questiontitles,$responses)=@_;
1.405 www 7878: my $number=0;
7879: my $errormsg='';
7880: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 7881: my %components=&Apache::loncommon::record_sep($line);
7882: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 7883: if ($entries[0] eq 'Question') {
7884: for (my $i=3;$i<$#entries;$i+=6) {
7885: $$questiontitles[$number]=$entries[$i];
7886: $number++;
7887: }
7888: }
7889: if ($entries[0]=~/^\#/) {
7890: my $id=$entries[0];
7891: my @idresponses;
7892: $id=~s/^[\#0]+//;
7893: for (my $i=0;$i<$number;$i++) {
7894: my $idx=3+$i*6;
7895: push(@idresponses,$entries[$idx]);
7896: }
7897: $$responses{$id}=join(',',@idresponses);
7898: }
1.405 www 7899: }
7900: return ($errormsg,$number);
7901: }
7902:
1.419 www 7903: sub interwrite_eval {
7904: my ($questiontitles,$responses)=@_;
7905: my $number=0;
7906: my $errormsg='';
1.420 www 7907: my $skipline=1;
7908: my $questionnumber=0;
7909: my %idresponses=();
1.419 www 7910: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
7911: my %components=&Apache::loncommon::record_sep($line);
7912: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 7913: if ($entries[1] eq 'Time') { $skipline=0; next; }
7914: if ($entries[1] eq 'Response') { $skipline=1; }
7915: next if $skipline;
7916: if ($entries[0]!=$questionnumber) {
7917: $questionnumber=$entries[0];
7918: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
7919: $number++;
1.419 www 7920: }
1.420 www 7921: my $id=$entries[4];
7922: $id=~s/^[\#0]+//;
1.421 www 7923: $id=~s/^v\d*\://i;
7924: $id=~s/[\-\:]//g;
1.420 www 7925: $idresponses{$id}[$number]=$entries[6];
7926: }
7927: foreach my $id (keys %idresponses) {
7928: $$responses{$id}=join(',',@{$idresponses{$id}});
7929: $$responses{$id}=~s/^\s*\,//;
1.419 www 7930: }
7931: return ($errormsg,$number);
7932: }
7933:
1.414 www 7934: sub assign_clicker_grades {
7935: my ($r)=@_;
7936: my ($symb)=&get_symb($r);
7937: if (!$symb) {return '';}
1.416 www 7938: # See which part we are saving to
7939: my ($partlist,$handgrade,$responseType) = &response_type($symb);
7940: # FIXME: This should probably look for the first handgradeable part
7941: my $part=$$partlist[0];
7942: # Start screen output
1.414 www 7943: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.416 www 7944:
1.414 www 7945: my $heading=&mt('Assigning grades based on clicker file');
7946: $result.=(<<ENDHEADER);
7947: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
7948: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
7949: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
7950: ENDHEADER
7951: # Get correct result
7952: # FIXME: Possibly need delimiter other than ":"
7953: my @correct=();
1.415 www 7954: my $gradingmechanism=$env{'form.gradingmechanism'};
7955: my $number=$env{'form.number'};
7956: if ($gradingmechanism ne 'attendance') {
1.414 www 7957: foreach my $key (keys(%env)) {
7958: if ($key=~/^form\.correct\:/) {
7959: my @input=split(/\,/,$env{$key});
7960: for (my $i=0;$i<=$#input;$i++) {
7961: if (($correct[$i]) && ($input[$i]) &&
7962: ($correct[$i] ne $input[$i])) {
7963: $result.='<br /><span class="LC_warning">'.
7964: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
7965: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
7966: } elsif ($input[$i]) {
7967: $correct[$i]=$input[$i];
7968: }
7969: }
7970: }
7971: }
1.415 www 7972: for (my $i=0;$i<$number;$i++) {
1.414 www 7973: if (!$correct[$i]) {
7974: $result.='<br /><span class="LC_error">'.
7975: &mt('No correct result given for question "[_1]"!',
7976: $env{'form.question:'.$i}).'</span>';
7977: }
7978: }
7979: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ($_?$_:'-') } @correct));
7980: }
7981: # Start grading
1.415 www 7982: my $pcorrect=$env{'form.pcorrect'};
7983: my $pincorrect=$env{'form.pincorrect'};
1.416 www 7984: my $storecount=0;
1.415 www 7985: foreach my $key (keys(%env)) {
1.420 www 7986: my $user='';
1.415 www 7987: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 7988: $user=$1;
7989: }
7990: if ($key=~/^form\.unknown\:(.*)$/) {
7991: my $id=$1;
7992: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
7993: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 7994: } elsif ($env{'form.multi'.$id}) {
7995: $user=$env{'form.multi'.$id};
1.420 www 7996: }
7997: }
7998: if ($user) {
1.415 www 7999: my @answer=split(/\,/,$env{$key});
8000: my $sum=0;
8001: for (my $i=0;$i<$number;$i++) {
8002: if ($answer[$i]) {
8003: if ($gradingmechanism eq 'attendance') {
8004: $sum+=$pcorrect;
8005: } else {
8006: if ($answer[$i] eq $correct[$i]) {
8007: $sum+=$pcorrect;
8008: } else {
8009: $sum+=$pincorrect;
8010: }
8011: }
8012: }
8013: }
1.416 www 8014: my $ave=$sum/(100*$number);
8015: # Store
8016: my ($username,$domain)=split(/\:/,$user);
8017: my %grades=();
8018: $grades{"resource.$part.solved"}='correct_by_override';
8019: $grades{"resource.$part.awarded"}=$ave;
8020: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
8021: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
8022: $env{'request.course.id'},
8023: $domain,$username);
8024: if ($returncode ne 'ok') {
8025: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
8026: } else {
8027: $storecount++;
8028: }
1.415 www 8029: }
8030: }
8031: # We are done
1.416 www 8032: $result.='<br />'.&mt('Successfully stored grades for [_1] student(s).',$storecount).
8033: '</td></tr></table>'."\n".
1.414 www 8034: '</td></tr></table><br /><br />'."\n";
8035: return $result.&show_grading_menu_form($symb);
8036: }
8037:
1.1 albertel 8038: sub handler {
1.41 ng 8039: my $request=$_[0];
1.434 albertel 8040: &reset_caches();
1.257 albertel 8041: if ($env{'browser.mathml'}) {
1.141 www 8042: &Apache::loncommon::content_type($request,'text/xml');
1.41 ng 8043: } else {
1.141 www 8044: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 8045: }
8046: $request->send_http_header;
1.44 ng 8047: return '' if $request->header_only;
1.41 ng 8048: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.324 albertel 8049: my $symb=&get_symb($request,1);
1.160 albertel 8050: my @commands=&Apache::loncommon::get_env_multiple('form.command');
8051: my $command=$commands[0];
1.447 foxr 8052:
1.160 albertel 8053: if ($#commands > 0) {
8054: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
8055: }
1.447 foxr 8056:
8057:
1.353 albertel 8058: $request->print(&Apache::loncommon::start_page('Grading'));
1.324 albertel 8059: if ($symb eq '' && $command eq '') {
1.257 albertel 8060: if ($env{'user.adv'}) {
8061: if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
8062: ($env{'form.codethree'})) {
8063: my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
8064: $env{'form.codethree'};
1.41 ng 8065: my ($tsymb,$tuname,$tudom,$tcrsid)=
8066: &Apache::lonnet::checkin($token);
8067: if ($tsymb) {
1.137 albertel 8068: my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41 ng 8069: if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.99 albertel 8070: $request->print(&Apache::lonnet::ssi_body('/res/'.$url,
8071: ('grade_username' => $tuname,
8072: 'grade_domain' => $tudom,
8073: 'grade_courseid' => $tcrsid,
8074: 'grade_symb' => $tsymb)));
1.41 ng 8075: } else {
1.45 ng 8076: $request->print('<h3>Not authorized: '.$token.'</h3>');
1.99 albertel 8077: }
1.41 ng 8078: } else {
1.45 ng 8079: $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41 ng 8080: }
1.14 www 8081: } else {
1.41 ng 8082: $request->print(&Apache::lonxml::tokeninputfield());
8083: }
8084: }
8085: } else {
1.285 albertel 8086: &init_perm();
1.104 albertel 8087: if ($command eq 'submission' && $perm{'vgr'}) {
1.257 albertel 8088: ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.103 albertel 8089: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68 ng 8090: &pickStudentPage($request);
1.103 albertel 8091: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68 ng 8092: &displayPage($request);
1.104 albertel 8093: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71 ng 8094: &updateGradeByPage($request);
1.104 albertel 8095: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41 ng 8096: &processGroup($request);
1.104 albertel 8097: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.443 banghart 8098: $request->print(&grading_menu($request));
8099: } elsif ($command eq 'submit_options' && $perm{'vgr'}) {
8100: $request->print(&submit_options($request));
1.104 albertel 8101: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41 ng 8102: $request->print(&viewgrades($request));
1.104 albertel 8103: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41 ng 8104: $request->print(&processHandGrade($request));
1.106 albertel 8105: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41 ng 8106: $request->print(&editgrades($request));
1.106 albertel 8107: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41 ng 8108: $request->print(&verifyreceipt($request));
1.400 www 8109: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
8110: $request->print(&process_clicker($request));
8111: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
8112: $request->print(&process_clicker_file($request));
1.414 www 8113: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
8114: $request->print(&assign_clicker_grades($request));
1.106 albertel 8115: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72 ng 8116: $request->print(&upcsvScores_form($request));
1.106 albertel 8117: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41 ng 8118: $request->print(&csvupload($request));
1.106 albertel 8119: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41 ng 8120: $request->print(&csvuploadmap($request));
1.246 albertel 8121: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 8122: if ($env{'form.associate'} ne 'Reverse Association') {
1.246 albertel 8123: $request->print(&csvuploadoptions($request));
1.41 ng 8124: } else {
1.257 albertel 8125: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
8126: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 8127: } else {
1.257 albertel 8128: $env{'form.upfile_associate'} = 'forward';
1.41 ng 8129: }
8130: $request->print(&csvuploadmap($request));
8131: }
1.246 albertel 8132: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
8133: $request->print(&csvuploadassign($request));
1.106 albertel 8134: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75 albertel 8135: $request->print(&scantron_selectphase($request));
1.203 albertel 8136: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
8137: $request->print(&scantron_do_warning($request));
1.142 albertel 8138: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
8139: $request->print(&scantron_validate_file($request));
1.106 albertel 8140: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82 albertel 8141: $request->print(&scantron_process_students($request));
1.157 albertel 8142: } elsif ($command eq 'scantronupload' &&
1.257 albertel 8143: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
8144: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162 albertel 8145: $request->print(&scantron_upload_scantron_data($request));
1.157 albertel 8146: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 8147: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
8148: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157 albertel 8149: $request->print(&scantron_upload_scantron_data_save($request));
1.202 albertel 8150: } elsif ($command eq 'scantron_download' &&
1.257 albertel 8151: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 8152: $request->print(&scantron_download_scantron_data($request));
1.106 albertel 8153: } elsif ($command) {
1.157 albertel 8154: $request->print("Access Denied ($command)");
1.26 albertel 8155: }
1.2 albertel 8156: }
1.353 albertel 8157: $request->print(&Apache::loncommon::end_page());
1.434 albertel 8158: &reset_caches();
1.44 ng 8159: return '';
8160: }
8161:
1.1 albertel 8162: 1;
8163:
1.13 albertel 8164: __END__;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>