Annotation of loncom/homework/grades.pm, revision 1.518
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.518 ! raeburn 4: # $Id: grades.pm,v 1.517 2008/04/16 23:30:03 raeburn Exp $
1.17 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.1 albertel 28:
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:
1.513 foxr 50:
1.435 foxr 51: my %perm=();
1.447 foxr 52:
1.513 foxr 53: # These variables are used to recover from ssi errors
54:
55: my $ssi_retries = 5;
56: my $ssi_error;
57: my $ssi_error_resource;
58: my $ssi_error_message;
59:
60:
61: # Do an ssi with retries:
62: # While I'd love to factor out this with the vesrion in lonprintout,
63: # that would either require a data coupling between modules, which I refuse to perpetuate
64: # (there's quite enough of that already), or would require the invention of another infrastructure
65: # I'm not quite ready to invent (e.g. an ssi_with_retry object).
66: #
67: # At least the logic that drives this has been pulled out into loncommon.
68:
69:
70: #
71: # ssi_with_retries - Does the server side include of a resource.
72: # if the ssi call returns an error we'll retry it up to
73: # the number of times requested by the caller.
74: # If we still have a proble, no text is appended to the
75: # output and we set some global variables.
1.516 raeburn 76: # to indicate to the caller an SSI error occurred.
1.513 foxr 77: # All of this is supposed to deal with the issues described
78: # in LonCAPA BZ 5631 see:
79: # http://bugs.lon-capa.org/show_bug.cgi?id=5631
80: # by informing the user that this happened.
81: #
82: # Parameters:
83: # resource - The resource to include. This is passed directly, without
84: # interpretation to lonnet::ssi.
85: # form - The form hash parameters that guide the interpretation of the resource
86: #
87: # retries - Number of retries allowed before giving up completely.
88: # Returns:
89: # On success, returns the rendered resource identified by the resource parameter.
90: # Side Effects:
91: # The following global variables can be set:
1.516 raeburn 92: # ssi_error - If an unrecoverable error occurred this becomes true.
1.513 foxr 93: # It is up to the caller to initialize this to false
94: # if desired.
1.516 raeburn 95: # ssi_error_resource - If an unrecoverable error occurred, this is the value
1.513 foxr 96: # of the resource that could not be rendered by the ssi
97: # call.
1.516 raeburn 98: # ssi_error_message - The error string fetched from the ssi response
1.513 foxr 99: # in the event of an error.
100: #
101: sub ssi_with_retries {
102: my ($resource, $retries, %form) = @_;
103: my ($content, $response) = &Apache::loncommon::ssi_with_retries($resource, $retries, %form);
104: if ($response->is_error) {
105: $ssi_error = 1;
106: $ssi_error_resource = $resource;
107: $ssi_error_message = $response->code . " " . $response->message;
108: }
109:
110: return $content;
111:
112: }
113: #
114: # Prodcuces an ssi retry failure error message to the user:
115: #
116:
117: sub ssi_print_error {
118: my ($r) = @_;
1.516 raeburn 119: my $helpurl = &Apache::loncommon::top_nav_help('Helpdesk');
120: $r->print('
121: <br />
122: <h2>'.&mt('An unrecoverable network error occurred:').'</h2>
123: <p>
124: '.&mt('Unable to retrieve a resource from a server:').'<br />
125: '.&mt('Resource:').' '.$ssi_error_resource.'<br />
126: '.&mt('Error:').' '.$ssi_error_message.'
127: </p>
128: <p>'.
129: &mt('It is recommended that you try again later, as this error may mean the server was just temporarily unavailable, or is down for maintenance.').'<br />'.
130: &mt('If the error persists, please contact the [_1] for assistance.',$helpurl).
131: '</p>');
132: return;
1.513 foxr 133: }
134:
1.44 ng 135: #
1.146 albertel 136: # --- Retrieve the parts from the metadata file.---
1.44 ng 137: sub getpartlist {
1.324 albertel 138: my ($symb) = @_;
1.439 albertel 139:
140: my $navmap = Apache::lonnavmaps::navmap->new();
141: my $res = $navmap->getBySymb($symb);
142: my $partlist = $res->parts();
143: my $url = $res->src();
144: my @metakeys = split(/,/,&Apache::lonnet::metadata($url,'keys'));
145:
1.146 albertel 146: my @stores;
1.439 albertel 147: foreach my $part (@{ $partlist }) {
1.146 albertel 148: foreach my $key (@metakeys) {
149: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
150: }
151: }
152: return @stores;
1.2 albertel 153: }
154:
1.44 ng 155: # --- Get the symbolic name of a problem and the url
1.324 albertel 156: sub get_symb {
1.173 albertel 157: my ($request,$silent) = @_;
1.257 albertel 158: (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
159: my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
1.173 albertel 160: if ($symb eq '') {
161: if (!$silent) {
162: $request->print("Unable to handle ambiguous references:$url:.");
163: return ();
164: }
165: }
1.418 albertel 166: &Apache::lonenc::check_decrypt(\$symb);
1.324 albertel 167: return ($symb);
1.32 ng 168: }
169:
1.129 ng 170: #--- Format fullname, username:domain if different for display
171: #--- Use anywhere where the student names are listed
172: sub nameUserString {
173: my ($type,$fullname,$uname,$udom) = @_;
174: if ($type eq 'header') {
1.485 albertel 175: return '<b> '.&mt('Fullname').' </b><span class="LC_internal_info">('.&mt('Username').')</span>';
1.129 ng 176: } else {
1.398 albertel 177: return ' '.$fullname.'<span class="LC_internal_info"> ('.$uname.
178: ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</span>';
1.129 ng 179: }
180: }
181:
1.44 ng 182: #--- Get the partlist and the response type for a given problem. ---
183: #--- Indicate if a response type is coded handgraded or not. ---
1.39 ng 184: sub response_type {
1.324 albertel 185: my ($symb) = shift;
1.377 albertel 186:
187: my $navmap = Apache::lonnavmaps::navmap->new();
188: my $res = $navmap->getBySymb($symb);
189: my $partlist = $res->parts();
1.392 albertel 190: my %vPart =
191: map { $_ => 1 } (&Apache::loncommon::get_env_multiple('form.vPart'));
1.377 albertel 192: my (%response_types,%handgrade);
193: foreach my $part (@{ $partlist }) {
1.392 albertel 194: next if (%vPart && !exists($vPart{$part}));
195:
1.377 albertel 196: my @types = $res->responseType($part);
197: my @ids = $res->responseIds($part);
198: for (my $i=0; $i < scalar(@ids); $i++) {
199: $response_types{$part}{$ids[$i]} = $types[$i];
200: $handgrade{$part.'_'.$ids[$i]} =
201: &Apache::lonnet::EXT('resource.'.$part.'_'.$ids[$i].
202: '.handgrade',$symb);
1.41 ng 203: }
204: }
1.377 albertel 205: return ($partlist,\%handgrade,\%response_types);
1.39 ng 206: }
207:
1.375 albertel 208: sub flatten_responseType {
209: my ($responseType) = @_;
210: my @part_response_id =
211: map {
212: my $part = $_;
213: map {
214: [$part,$_]
215: } sort(keys(%{ $responseType->{$part} }));
216: } sort(keys(%$responseType));
217: return @part_response_id;
218: }
219:
1.207 albertel 220: sub get_display_part {
1.324 albertel 221: my ($partID,$symb)=@_;
1.207 albertel 222: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
223: if (defined($display) and $display ne '') {
1.398 albertel 224: $display.= " (<span class=\"LC_internal_info\">id $partID</span>)";
1.207 albertel 225: } else {
226: $display=$partID;
227: }
228: return $display;
229: }
1.269 raeburn 230:
1.118 ng 231: #--- Show resource title
232: #--- and parts and response type
233: sub showResourceInfo {
1.324 albertel 234: my ($symb,$probTitle,$checkboxes) = @_;
1.154 albertel 235: my $col=3;
236: if ($checkboxes) { $col=4; }
1.398 albertel 237: my $result = '<h3>'.&mt('Current Resource').': '.$probTitle.'</h3>'."\n";
238: $result .='<table border="0">';
1.324 albertel 239: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.126 ng 240: my %resptype = ();
1.122 ng 241: my $hdgrade='no';
1.154 albertel 242: my %partsseen;
1.375 albertel 243: foreach my $partID (sort keys(%$responseType)) {
244: foreach my $resID (sort keys(%{ $responseType->{$partID} })) {
245: my $handgrade=$$handgrade{$partID.'_'.$resID};
246: my $responsetype = $responseType->{$partID}->{$resID};
247: $hdgrade = $handgrade if ($handgrade eq 'yes');
248: $result.='<tr>';
249: if ($checkboxes) {
250: if (exists($partsseen{$partID})) {
251: $result.="<td> </td>";
252: } else {
1.401 albertel 253: $result.="<td><input type='checkbox' name='vPart' value='$partID' checked='checked' /></td>";
1.375 albertel 254: }
255: $partsseen{$partID}=1;
1.154 albertel 256: }
1.375 albertel 257: my $display_part=&get_display_part($partID,$symb);
1.485 albertel 258: $result.='<td>'.&mt('<b>Part: </b>[_1]',$display_part).' <span class="LC_internal_info">'.
1.398 albertel 259: $resID.'</span></td>'.
1.485 albertel 260: '<td>'.&mt('<b>Type: </b>[_1]',$responsetype).'</td></tr>';
261: # '<td>'.&mt('<b>Handgrade: </b>[_1]',$handgrade).'</td></tr>';
1.154 albertel 262: }
1.118 ng 263: }
264: $result.='</table>'."\n";
1.147 albertel 265: return $result,$responseType,$hdgrade,$partlist,$handgrade;
1.118 ng 266: }
267:
1.434 albertel 268: sub reset_caches {
269: &reset_analyze_cache();
270: &reset_perm();
271: }
272:
273: {
274: my %analyze_cache;
1.148 albertel 275:
1.434 albertel 276: sub reset_analyze_cache {
277: undef(%analyze_cache);
278: }
279:
280: sub get_analyze {
281: my ($symb,$uname,$udom)=@_;
282: my $key = "$symb\0$uname\0$udom";
283: return $analyze_cache{$key} if (exists($analyze_cache{$key}));
284:
285: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
286: $url=&Apache::lonnet::clutter($url);
1.513 foxr 287: my $subresult=&ssi_with_retries($url, $ssi_retries,
1.516 raeburn 288: ('grade_target' => 'analyze',
289: 'grade_domain' => $udom,
290: 'grade_symb' => $symb,
291: 'grade_courseid' =>
292: $env{'request.course.id'},
293: 'grade_username' => $uname));
1.434 albertel 294: (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
295: my %analyze=&Apache::lonnet::str2hash($subresult);
296: return $analyze_cache{$key} = \%analyze;
297: }
298:
299: sub get_order {
300: my ($partid,$respid,$symb,$uname,$udom)=@_;
301: my $analyze = &get_analyze($symb,$uname,$udom);
302: return $analyze->{"$partid.$respid.shown"};
303: }
304:
305: sub get_radiobutton_correct_foil {
306: my ($partid,$respid,$symb,$uname,$udom)=@_;
307: my $analyze = &get_analyze($symb,$uname,$udom);
308: foreach my $foil (@{&get_order($partid,$respid,$symb,$uname,$udom)}) {
309: if ($analyze->{"$partid.$respid.foil.value.$foil"} eq 'true') {
310: return $foil;
311: }
312: }
313: }
1.148 albertel 314: }
1.434 albertel 315:
1.118 ng 316: #--- Clean response type for display
1.335 albertel 317: #--- Currently filters option/rank/radiobutton/match/essay/Task
318: # response types only.
1.118 ng 319: sub cleanRecord {
1.336 albertel 320: my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
321: $uname,$udom) = @_;
1.398 albertel 322: my $grayFont = '<span class="LC_internal_info">';
1.148 albertel 323: if ($response =~ /^(option|rank)$/) {
324: my %answer=&Apache::lonnet::str2hash($answer);
325: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
326: my ($toprow,$bottomrow);
327: foreach my $foil (@$order) {
328: if ($grading{$foil} == 1) {
329: $toprow.='<td><b>'.$answer{$foil}.' </b></td>';
330: } else {
331: $toprow.='<td><i>'.$answer{$foil}.' </i></td>';
332: }
1.398 albertel 333: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 334: }
335: return '<blockquote><table border="1">'.
1.466 albertel 336: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
337: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148 albertel 338: $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
339: } elsif ($response eq 'match') {
340: my %answer=&Apache::lonnet::str2hash($answer);
341: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
342: my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
343: my ($toprow,$middlerow,$bottomrow);
344: foreach my $foil (@$order) {
345: my $item=shift(@items);
346: if ($grading{$foil} == 1) {
347: $toprow.='<td><b>'.$item.' </b></td>';
1.398 albertel 348: $middlerow.='<td><b>'.$grayFont.$answer{$foil}.' </span></b></td>';
1.148 albertel 349: } else {
350: $toprow.='<td><i>'.$item.' </i></td>';
1.398 albertel 351: $middlerow.='<td><i>'.$grayFont.$answer{$foil}.' </span></i></td>';
1.148 albertel 352: }
1.398 albertel 353: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.118 ng 354: }
1.126 ng 355: return '<blockquote><table border="1">'.
1.466 albertel 356: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
357: '<tr valign="top"><td>'.$grayFont.&mt('Item ID').'</span></td>'.
1.148 albertel 358: $middlerow.'</tr>'.
1.466 albertel 359: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148 albertel 360: $bottomrow.'</tr>'.'</table></blockquote>';
361: } elsif ($response eq 'radiobutton') {
362: my %answer=&Apache::lonnet::str2hash($answer);
363: my ($toprow,$bottomrow);
1.434 albertel 364: my $correct =
365: &get_radiobutton_correct_foil($partid,$respid,$symb,$uname,$udom);
366: foreach my $foil (@$order) {
1.148 albertel 367: if (exists($answer{$foil})) {
1.434 albertel 368: if ($foil eq $correct) {
1.466 albertel 369: $toprow.='<td><b>'.&mt('true').'</b></td>';
1.148 albertel 370: } else {
1.466 albertel 371: $toprow.='<td><i>'.&mt('true').'</i></td>';
1.148 albertel 372: }
373: } else {
1.466 albertel 374: $toprow.='<td>'.&mt('false').'</td>';
1.148 albertel 375: }
1.398 albertel 376: $bottomrow.='<td>'.$grayFont.$foil.'</span> </td>';
1.148 albertel 377: }
378: return '<blockquote><table border="1">'.
1.466 albertel 379: '<tr valign="top"><td>'.&mt('Answer').'</td>'.$toprow.'</tr>'.
380: '<tr valign="top"><td>'.$grayFont.&mt('Option ID').'</span></td>'.
1.148 albertel 381: $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
382: } elsif ($response eq 'essay') {
1.257 albertel 383: if (! exists ($env{'form.'.$symb})) {
1.122 ng 384: my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 385: $env{'course.'.$env{'request.course.id'}.'.domain'},
386: $env{'course.'.$env{'request.course.id'}.'.num'});
1.122 ng 387:
1.257 albertel 388: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
389: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
390: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
391: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
392: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
393: $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 394: }
1.166 albertel 395: $answer =~ s-\n-<br />-g;
396: return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268 albertel 397: } elsif ( $response eq 'organic') {
398: my $result='Smile representation: "<tt>'.$answer.'</tt>"';
399: my $jme=$record->{$version."resource.$partid.$respid.molecule"};
400: $result.=&Apache::chemresponse::jme_img($jme,$answer,400);
401: return $result;
1.335 albertel 402: } elsif ( $response eq 'Task') {
403: if ( $answer eq 'SUBMITTED') {
404: my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336 albertel 405: my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335 albertel 406: return $result;
407: } elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
408: my @matches = grep(/^\Q$version\E.*?\.instance$/,
409: keys(%{$record}));
410: return join('<br />',($version,@matches));
411:
412:
413: } else {
414: my $result =
415: '<p>'
416: .&mt('Overall result: [_1]',
417: $record->{$version."resource.$respid.$partid.status"})
418: .'</p>';
419:
420: $result .= '<ul>';
421: my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
422: keys(%{$record}));
423: foreach my $grade (sort(@grade)) {
424: my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
425: $result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
426: $dim, $record->{$grade}).
427: '</li>';
428: }
429: $result.='</ul>';
430: return $result;
431: }
1.440 albertel 432: } elsif ( $response =~ m/(?:numerical|formula)/) {
433: $answer =
434: &Apache::loncommon::format_previous_attempt_value('submission',
435: $answer);
1.122 ng 436: }
1.118 ng 437: return $answer;
438: }
439:
440: #-- A couple of common js functions
441: sub commonJSfunctions {
442: my $request = shift;
443: $request->print(<<COMMONJSFUNCTIONS);
444: <script type="text/javascript" language="javascript">
445: function radioSelection(radioButton) {
446: var selection=null;
447: if (radioButton.length > 1) {
448: for (var i=0; i<radioButton.length; i++) {
449: if (radioButton[i].checked) {
450: return radioButton[i].value;
451: }
452: }
453: } else {
454: if (radioButton.checked) return radioButton.value;
455: }
456: return selection;
457: }
458:
459: function pullDownSelection(selectOne) {
460: var selection="";
461: if (selectOne.length > 1) {
462: for (var i=0; i<selectOne.length; i++) {
463: if (selectOne[i].selected) {
464: return selectOne[i].value;
465: }
466: }
467: } else {
1.138 albertel 468: // only one value it must be the selected one
469: return selectOne.value;
1.118 ng 470: }
471: }
472: </script>
473: COMMONJSFUNCTIONS
474: }
475:
1.44 ng 476: #--- Dumps the class list with usernames,list of sections,
477: #--- section, ids and fullnames for each user.
478: sub getclasslist {
1.449 banghart 479: my ($getsec,$filterlist,$getgroup) = @_;
1.291 albertel 480: my @getsec;
1.450 banghart 481: my @getgroup;
1.442 banghart 482: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.291 albertel 483: if (!ref($getsec)) {
484: if ($getsec ne '' && $getsec ne 'all') {
485: @getsec=($getsec);
486: }
487: } else {
488: @getsec=@{$getsec};
489: }
490: if (grep(/^all$/,@getsec)) { undef(@getsec); }
1.450 banghart 491: if (!ref($getgroup)) {
492: if ($getgroup ne '' && $getgroup ne 'all') {
493: @getgroup=($getgroup);
494: }
495: } else {
496: @getgroup=@{$getgroup};
497: }
498: if (grep(/^all$/,@getgroup)) { undef(@getgroup); }
1.291 albertel 499:
1.449 banghart 500: my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist();
1.49 albertel 501: # Bail out if we were unable to get the classlist
1.56 matthew 502: return if (! defined($classlist));
1.449 banghart 503: &Apache::loncoursedata::get_group_memberships($classlist,$keylist);
1.56 matthew 504: #
505: my %sections;
506: my %fullnames;
1.205 matthew 507: foreach my $student (keys(%$classlist)) {
508: my $end =
509: $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
510: my $start =
511: $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
512: my $id =
513: $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
514: my $section =
515: $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
516: my $fullname =
517: $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
518: my $status =
519: $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.449 banghart 520: my $group =
521: $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.76 ng 522: # filter students according to status selected
1.442 banghart 523: if ($filterlist && (!($stu_status =~ /Any/))) {
524: if (!($stu_status =~ $status)) {
1.450 banghart 525: delete($classlist->{$student});
1.76 ng 526: next;
527: }
528: }
1.450 banghart 529: # filter students according to groups selected
1.453 banghart 530: my @stu_groups = split(/,/,$group);
1.450 banghart 531: if (@getgroup) {
532: my $exclude = 1;
1.454 banghart 533: foreach my $grp (@getgroup) {
534: foreach my $stu_group (@stu_groups) {
1.453 banghart 535: if ($stu_group eq $grp) {
536: $exclude = 0;
537: }
1.450 banghart 538: }
1.453 banghart 539: if (($grp eq 'none') && !$group) {
540: $exclude = 0;
541: }
1.450 banghart 542: }
543: if ($exclude) {
544: delete($classlist->{$student});
545: }
546: }
1.205 matthew 547: $section = ($section ne '' ? $section : 'none');
1.106 albertel 548: if (&canview($section)) {
1.291 albertel 549: if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103 albertel 550: $sections{$section}++;
1.450 banghart 551: if ($classlist->{$student}) {
552: $fullnames{$student}=$fullname;
553: }
1.103 albertel 554: } else {
1.205 matthew 555: delete($classlist->{$student});
1.103 albertel 556: }
557: } else {
1.205 matthew 558: delete($classlist->{$student});
1.103 albertel 559: }
1.44 ng 560: }
561: my %seen = ();
1.56 matthew 562: my @sections = sort(keys(%sections));
563: return ($classlist,\@sections,\%fullnames);
1.44 ng 564: }
565:
1.103 albertel 566: sub canmodify {
567: my ($sec)=@_;
568: if ($perm{'mgr'}) {
569: if (!defined($perm{'mgr_section'})) {
570: # can modify whole class
571: return 1;
572: } else {
573: if ($sec eq $perm{'mgr_section'}) {
574: #can modify the requested section
575: return 1;
576: } else {
577: # can't modify the request section
578: return 0;
579: }
580: }
581: }
582: #can't modify
583: return 0;
584: }
585:
586: sub canview {
587: my ($sec)=@_;
588: if ($perm{'vgr'}) {
589: if (!defined($perm{'vgr_section'})) {
590: # can modify whole class
591: return 1;
592: } else {
593: if ($sec eq $perm{'vgr_section'}) {
594: #can modify the requested section
595: return 1;
596: } else {
597: # can't modify the request section
598: return 0;
599: }
600: }
601: }
602: #can't modify
603: return 0;
604: }
605:
1.44 ng 606: #--- Retrieve the grade status of a student for all the parts
607: sub student_gradeStatus {
1.324 albertel 608: my ($symb,$udom,$uname,$partlist) = @_;
1.257 albertel 609: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44 ng 610: my %partstatus = ();
611: foreach (@$partlist) {
1.128 ng 612: my ($status,undef) = split(/_/,$record{"resource.$_.solved"},2);
1.44 ng 613: $status = 'nothing' if ($status eq '');
614: $partstatus{$_} = $status;
615: my $subkey = "resource.$_.submitted_by";
616: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
617: }
618: return %partstatus;
619: }
620:
1.45 ng 621: # hidden form and javascript that calls the form
622: # Use by verifyscript and viewgrades
623: # Shows a student's view of problem and submission
624: sub jscriptNform {
1.324 albertel 625: my ($symb) = @_;
1.442 banghart 626: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.45 ng 627: my $jscript='<script type="text/javascript" language="javascript">'."\n".
628: ' function viewOneStudent(user,domain) {'."\n".
629: ' document.onestudent.student.value = user;'."\n".
630: ' document.onestudent.userdom.value = domain;'."\n".
631: ' document.onestudent.submit();'."\n".
632: ' }'."\n".
633: '</script>'."\n";
634: $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
1.418 albertel 635: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 636: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
637: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.442 banghart 638: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.45 ng 639: '<input type="hidden" name="command" value="submission" />'."\n".
640: '<input type="hidden" name="student" value="" />'."\n".
641: '<input type="hidden" name="userdom" value="" />'."\n".
642: '</form>'."\n";
643: return $jscript;
644: }
1.39 ng 645:
1.447 foxr 646:
647:
1.315 bowersj2 648: # Given the score (as a number [0-1] and the weight) what is the final
649: # point value? This function will round to the nearest tenth, third,
650: # or quarter if one of those is within the tolerance of .00001.
1.316 albertel 651: sub compute_points {
1.315 bowersj2 652: my ($score, $weight) = @_;
653:
654: my $tolerance = .00001;
655: my $points = $score * $weight;
656:
657: # Check for nearness to 1/x.
658: my $check_for_nearness = sub {
659: my ($factor) = @_;
660: my $num = ($points * $factor) + $tolerance;
661: my $floored_num = floor($num);
1.316 albertel 662: if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315 bowersj2 663: return $floored_num / $factor;
664: }
665: return $points;
666: };
667:
668: $points = $check_for_nearness->(10);
669: $points = $check_for_nearness->(3);
670: $points = $check_for_nearness->(4);
671:
672: return $points;
673: }
674:
1.44 ng 675: #------------------ End of general use routines --------------------
1.87 www 676:
677: #
678: # Find most similar essay
679: #
680:
681: sub most_similar {
1.426 albertel 682: my ($uname,$udom,$uessay,$old_essays)=@_;
1.87 www 683:
684: # ignore spaces and punctuation
685:
686: $uessay=~s/\W+/ /gs;
687:
1.282 www 688: # ignore empty submissions (occuring when only files are sent)
689:
690: unless ($uessay=~/\w+/) { return ''; }
691:
1.87 www 692: # these will be returned. Do not care if not at least 50 percent similar
1.88 www 693: my $limit=0.6;
1.87 www 694: my $sname='';
695: my $sdom='';
696: my $scrsid='';
697: my $sessay='';
698: # go through all essays ...
1.426 albertel 699: foreach my $tkey (keys(%$old_essays)) {
700: my ($tname,$tdom,$tcrsid)=map {&unescape($_)} (split(/\./,$tkey));
1.87 www 701: # ... except the same student
1.426 albertel 702: next if (($tname eq $uname) && ($tdom eq $udom));
703: my $tessay=$old_essays->{$tkey};
704: $tessay=~s/\W+/ /gs;
1.87 www 705: # String similarity gives up if not even limit
1.426 albertel 706: my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87 www 707: # Found one
1.426 albertel 708: if ($tsimilar>$limit) {
709: $limit=$tsimilar;
710: $sname=$tname;
711: $sdom=$tdom;
712: $scrsid=$tcrsid;
713: $sessay=$old_essays->{$tkey};
714: }
1.87 www 715: }
1.88 www 716: if ($limit>0.6) {
1.87 www 717: return ($sname,$sdom,$scrsid,$sessay,$limit);
718: } else {
719: return ('','','','',0);
720: }
721: }
722:
1.44 ng 723: #-------------------------------------------------------------------
724:
725: #------------------------------------ Receipt Verification Routines
1.45 ng 726: #
1.44 ng 727: #--- Check whether a receipt number is valid.---
728: sub verifyreceipt {
729: my $request = shift;
730:
1.257 albertel 731: my $courseid = $env{'request.course.id'};
1.184 www 732: my $receipt = &Apache::lonnet::recprefix($courseid).'-'.
1.257 albertel 733: $env{'form.receipt'};
1.44 ng 734: $receipt =~ s/[^\-\d]//g;
1.378 albertel 735: my ($symb) = &get_symb($request);
1.44 ng 736:
1.487 albertel 737: my $title.=
738: '<h3><span class="LC_info">'.
739: &mt('Verifying Submission Receipt [_1]',$receipt).
740: '</span></h3>'."\n".
741: '<h4>'.&mt('<b>Resource: </b>[_1]',$env{'form.probTitle'}).
742: '</h4>'."\n";
1.44 ng 743:
744: my ($string,$contents,$matches) = ('','',0);
1.56 matthew 745: my (undef,undef,$fullname) = &getclasslist('all','0');
1.177 albertel 746:
747: my $receiptparts=0;
1.390 albertel 748: if ($env{"course.$courseid.receiptalg"} eq 'receipt2' ||
749: $env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; }
1.177 albertel 750: my $parts=['0'];
1.324 albertel 751: if ($receiptparts) { ($parts)=&response_type($symb); }
1.486 albertel 752:
753: my $header =
754: &Apache::loncommon::start_data_table().
755: &Apache::loncommon::start_data_table_header_row().
1.487 albertel 756: '<th> '.&mt('Fullname').' </th>'."\n".
757: '<th> '.&mt('Username').' </th>'."\n".
758: '<th> '.&mt('Domain').' </th>';
1.486 albertel 759: if ($receiptparts) {
1.487 albertel 760: $header.='<th> '.&mt('Problem Part').' </th>';
1.486 albertel 761: }
762: $header.=
763: &Apache::loncommon::end_data_table_header_row();
764:
1.294 albertel 765: foreach (sort
766: {
767: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
768: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
769: }
770: return $a cmp $b;
771: } (keys(%$fullname))) {
1.44 ng 772: my ($uname,$udom)=split(/\:/);
1.177 albertel 773: foreach my $part (@$parts) {
774: if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
1.486 albertel 775: $contents.=
776: &Apache::loncommon::start_data_table_row().
777: '<td> '."\n".
1.177 albertel 778: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 779: '\');" target="_self">'.$$fullname{$_}.'</a> </td>'."\n".
1.177 albertel 780: '<td> '.$uname.' </td>'.
781: '<td> '.$udom.' </td>';
782: if ($receiptparts) {
783: $contents.='<td> '.$part.' </td>';
784: }
1.486 albertel 785: $contents.=
786: &Apache::loncommon::end_data_table_row()."\n";
1.177 albertel 787:
788: $matches++;
789: }
1.44 ng 790: }
791: }
792: if ($matches == 0) {
1.487 albertel 793: $string = $title.&mt('No match found for the above receipt.');
1.44 ng 794: } else {
1.324 albertel 795: $string = &jscriptNform($symb).$title.
1.487 albertel 796: '<p>'.
797: &mt('The above receipt matches the following [numerate,_1,student].',$matches).
798: '</p>'.
1.486 albertel 799: $header.
800: $contents.
801: &Apache::loncommon::end_data_table()."\n";
1.44 ng 802: }
1.324 albertel 803: return $string.&show_grading_menu_form($symb);
1.44 ng 804: }
805:
806: #--- This is called by a number of programs.
807: #--- Called from the Grading Menu - View/Grade an individual student
808: #--- Also called directly when one clicks on the subm button
809: # on the problem page.
1.30 ng 810: sub listStudents {
1.41 ng 811: my ($request) = shift;
1.49 albertel 812:
1.324 albertel 813: my ($symb) = &get_symb($request);
1.257 albertel 814: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
815: my $cnum = $env{"course.$env{'request.course.id'}.num"};
816: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.449 banghart 817: my $getgroup = $env{'form.group'} eq '' ? 'all' : $env{'form.group'};
1.257 albertel 818: my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
819: my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
820: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
821: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.49 albertel 822:
1.485 albertel 823: my $result='<h3><span class="LC_info"> '.
824: &mt($viewgrade.' Submissions for a Student or a Group of Students')
825: .'</span></h3>';
1.118 ng 826:
1.324 albertel 827: my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($symb,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
1.49 albertel 828:
1.485 albertel 829: my %lt = ( 'multiple' =>
830: "Please select a student or group of students before clicking on the Next button.",
831: 'single' =>
832: "Please select the student before clicking on the Next button.",
833: );
834: %lt = &Apache::lonlocal::texthash(%lt);
1.45 ng 835: $request->print(<<LISTJAVASCRIPT);
836: <script type="text/javascript" language="javascript">
1.110 ng 837: function checkSelect(checkBox) {
838: var ctr=0;
839: var sense="";
840: if (checkBox.length > 1) {
841: for (var i=0; i<checkBox.length; i++) {
842: if (checkBox[i].checked) {
843: ctr++;
844: }
845: }
1.485 albertel 846: sense = '$lt{'multiple'}';
1.110 ng 847: } else {
848: if (checkBox.checked) {
849: ctr = 1;
850: }
1.485 albertel 851: sense = '$lt{'single'}';
1.110 ng 852: }
853: if (ctr == 0) {
1.485 albertel 854: alert(sense);
1.110 ng 855: return false;
856: }
857: document.gradesub.submit();
858: }
859:
860: function reLoadList(formname) {
1.112 ng 861: if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110 ng 862: formname.command.value = 'submission';
863: formname.submit();
864: }
1.45 ng 865: </script>
866: LISTJAVASCRIPT
867:
1.118 ng 868: &commonJSfunctions($request);
1.41 ng 869: $request->print($result);
1.39 ng 870:
1.401 albertel 871: my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked="checked"' : '';
872: my $checklastsub = $checkhdgrade eq '' ? 'checked="checked"' : '';
1.154 albertel 873: my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
1.485 albertel 874: "\n".$table;
875:
876: $gradeTable .=
877: ' '.
878: &mt('<b>View Problem Text: </b>[_1]',
879: '<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
880: '<label><input type="radio" name="vProb" value="yes" /> '.&mt('one student').' </label>'."\n".
881: '<label><input type="radio" name="vProb" value="all" /> '.&mt('all students').' </label>').'<br />'."\n";
882: $gradeTable .=
883: ' '.
884: &mt('<b>View Answer: </b>[_1]',
885: '<label><input type="radio" name="vAns" value="no" /> '.&mt('no').' </label>'."\n".
886: '<label><input type="radio" name="vAns" value="yes" /> '.&mt('one student').' </label>'."\n".
887: '<label><input type="radio" name="vAns" value="all" checked="checked" /> '.&mt('all students').' </label>').'<br />'."\n";
888:
889: my $submission_options;
1.257 albertel 890: if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
1.485 albertel 891: $submission_options.=
892: '<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> '.&mt('essay part only').' </label>'."\n";
1.49 albertel 893: }
1.442 banghart 894: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
895: my $saveStatus = $stu_status eq '' ? 'Active' : $stu_status;
1.257 albertel 896: $env{'form.Status'} = $saveStatus;
1.485 albertel 897: $submission_options.=
898: '<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> '.&mt('last submission only').' </label>'."\n".
899: '<label><input type="radio" name="lastSub" value="last" /> '.&mt('last submission & parts info').' </label>'."\n".
900: '<label><input type="radio" name="lastSub" value="datesub" /> '.&mt('by dates and submissions').' </label>'."\n".
901: '<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').'</label>';
902: $gradeTable .=
903: ' '.
904: &mt('<b>Submissions: </b>[_1]',$submission_options).'<br />'."\n";
905:
906: $gradeTable .=
907: ' '.
908: &mt('<b>Grading Increments:</b> [_1]',
909: '<select name="increment">'.
910: '<option value="1">'.&mt('Whole Points').'</option>'.
911: '<option value=".5">'.&mt('Half Points').'</option>'.
912: '<option value=".25">'.&mt('Quarter Points').'</option>'.
913: '<option value=".1">'.&mt('Tenths of a Point').'</option>'.
914: '</select>');
915:
916: $gradeTable .=
1.432 banghart 917: &build_section_inputs().
1.45 ng 918: '<input type="hidden" name="submitonly" value="'.$submitonly.'" />'."\n".
1.257 albertel 919: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" /><br />'."\n".
920: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
921: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
922: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.418 albertel 923: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.110 ng 924: '<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
925:
1.257 albertel 926: if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
1.442 banghart 927: $gradeTable.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n";
1.124 ng 928: } else {
1.485 albertel 929: $gradeTable.=&mt('<b>Student Status:</b> [_1]',
930: &Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,'javascript:reLoadList(this.form);')).'<br />';
1.124 ng 931: }
1.112 ng 932:
1.485 albertel 933: $gradeTable.=&mt('To '.lc($viewgrade).' a submission or a group of submissions, click on the check box(es) '.
934: 'next to the student\'s name(s). Then click on the Next button.').'<br />'."\n".
1.110 ng 935: '<input type="hidden" name="command" value="processGroup" />'."\n";
1.249 albertel 936:
937: # checkall buttons
938: $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110 ng 939: $gradeTable.='<input type="button" '."\n".
1.45 ng 940: 'onClick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1.485 albertel 941: 'value="'.&mt('Next->').'" /> <br />'."\n";
1.249 albertel 942: $gradeTable.=&check_buttons();
1.485 albertel 943: $gradeTable.='<label><input type="checkbox" name="checkPlag" checked="checked" />'.&mt('Check For Plagiarism').'</label>';
1.450 banghart 944: my ($classlist, undef, $fullname) = &getclasslist($getsec,'1',$getgroup);
1.474 albertel 945: $gradeTable.= &Apache::loncommon::start_data_table().
946: &Apache::loncommon::start_data_table_header_row();
1.110 ng 947: my $loop = 0;
948: while ($loop < 2) {
1.485 albertel 949: $gradeTable.='<th>'.&mt('No.').'</th><th>'.&mt('Select').'</th>'.
950: '<th>'.&nameUserString('header').' '.&mt('Section/Group').'</th>';
1.301 albertel 951: if ($env{'form.showgrading'} eq 'yes'
952: && $submitonly ne 'queued'
953: && $submitonly ne 'all') {
1.485 albertel 954: foreach my $part (sort(@$partlist)) {
955: my $display_part=
956: &get_display_part((split(/_/,$part))[0],$symb);
957: $gradeTable.=
958: '<th>'.&mt('Part: [_1] Status',$display_part).'</th>';
1.110 ng 959: }
1.301 albertel 960: } elsif ($submitonly eq 'queued') {
1.474 albertel 961: $gradeTable.='<th>'.&mt('Queue Status').' </th>';
1.110 ng 962: }
963: $loop++;
1.126 ng 964: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 965: }
1.474 albertel 966: $gradeTable.=&Apache::loncommon::end_data_table_header_row()."\n";
1.41 ng 967:
1.45 ng 968: my $ctr = 0;
1.294 albertel 969: foreach my $student (sort
970: {
971: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
972: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
973: }
974: return $a cmp $b;
975: }
976: (keys(%$fullname))) {
1.41 ng 977: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 978:
1.110 ng 979: my %status = ();
1.301 albertel 980:
981: if ($submitonly eq 'queued') {
982: my %queue_status =
983: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
984: $udom,$uname);
985: next if (!defined($queue_status{'gradingqueue'}));
986: $status{'gradingqueue'} = $queue_status{'gradingqueue'};
987: }
988:
989: if ($env{'form.showgrading'} eq 'yes'
990: && $submitonly ne 'queued'
991: && $submitonly ne 'all') {
1.324 albertel 992: (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 993: my $submitted = 0;
1.164 albertel 994: my $graded = 0;
1.248 albertel 995: my $incorrect = 0;
1.110 ng 996: foreach (keys(%status)) {
1.145 albertel 997: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 998: $graded = 1 if ($status{$_} =~ /^ungraded/);
999: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1000:
1.110 ng 1001: my ($foo,$partid,$foo1) = split(/\./,$_);
1002: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145 albertel 1003: $submitted = 0;
1.150 albertel 1004: my ($part)=split(/\./,$partid);
1.110 ng 1005: $gradeTable.='<input type="hidden" name="'.
1.150 albertel 1006: $student.':'.$part.':submitted_by" value="'.
1.110 ng 1007: $status{'resource.'.$partid.'.submitted_by'}.'" />';
1008: }
1.41 ng 1009: }
1.248 albertel 1010:
1.156 albertel 1011: next if (!$submitted && ($submitonly eq 'yes' ||
1012: $submitonly eq 'incorrect' ||
1013: $submitonly eq 'graded'));
1.248 albertel 1014: next if (!$graded && ($submitonly eq 'graded'));
1015: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 1016: }
1.34 ng 1017:
1.45 ng 1018: $ctr++;
1.249 albertel 1019: my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
1.452 banghart 1020: my $group = $classlist->{$student}->[&Apache::loncoursedata::CL_GROUP()];
1.104 albertel 1021: if ( $perm{'vgr'} eq 'F' ) {
1.474 albertel 1022: if ($ctr%2 ==1) {
1023: $gradeTable.= &Apache::loncommon::start_data_table_row();
1024: }
1.126 ng 1025: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.249 albertel 1026: '<td align="center"><label><input type=checkbox name="stuinfo" value="'.
1027: $student.':'.$$fullname{$student}.':::SECTION'.$section.
1028: ') " /> </label></td>'."\n".'<td>'.
1029: &nameUserString(undef,$$fullname{$student},$uname,$udom).
1.474 albertel 1030: ' '.$section.($group ne '' ?'/'.$group:'').'</td>'."\n";
1.110 ng 1031:
1.257 albertel 1032: if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.110 ng 1033: foreach (sort keys(%status)) {
1.485 albertel 1034: next if ($_ =~ /^resource.*?submitted_by$/);
1035: $gradeTable.='<td align="center"> '.&mt($status{$_}).' </td>'."\n";
1.110 ng 1036: }
1.41 ng 1037: }
1.126 ng 1038: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.474 albertel 1039: if ($ctr%2 ==0) {
1040: $gradeTable.=&Apache::loncommon::end_data_table_row()."\n";
1041: }
1.41 ng 1042: }
1043: }
1.110 ng 1044: if ($ctr%2 ==1) {
1.126 ng 1045: $gradeTable.='<td> </td><td> </td><td> </td>';
1.301 albertel 1046: if ($env{'form.showgrading'} eq 'yes'
1047: && $submitonly ne 'queued'
1048: && $submitonly ne 'all') {
1.110 ng 1049: foreach (@$partlist) {
1050: $gradeTable.='<td> </td>';
1051: }
1.301 albertel 1052: } elsif ($submitonly eq 'queued') {
1053: $gradeTable.='<td> </td>';
1.110 ng 1054: }
1.474 albertel 1055: $gradeTable.=&Apache::loncommon::end_data_table_row();
1.110 ng 1056: }
1057:
1.474 albertel 1058: $gradeTable.=&Apache::loncommon::end_data_table()."\n".
1.45 ng 1059: '<input type="button" '.
1060: 'onClick="javascript:checkSelect(this.form.stuinfo);" '.
1.485 albertel 1061: 'value="'.&mt('Next->').'" /></form>'."\n";
1.45 ng 1062: if ($ctr == 0) {
1.96 albertel 1063: my $num_students=(scalar(keys(%$fullname)));
1064: if ($num_students eq 0) {
1.485 albertel 1065: $gradeTable='<br /> <span class="LC_warning">'.&mt('There are no students currently enrolled.').'</span>';
1.96 albertel 1066: } else {
1.171 albertel 1067: my $submissions='submissions';
1068: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
1069: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 1070: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.398 albertel 1071: $gradeTable='<br /> <span class="LC_warning">'.
1.485 albertel 1072: &mt('No '.$submissions.' found for this resource for any students. ([_1] students checked for '.$submissions.')',
1073: $num_students).
1074: '</span><br />';
1.96 albertel 1075: }
1.46 ng 1076: } elsif ($ctr == 1) {
1.474 albertel 1077: $gradeTable =~ s/type="checkbox"/type="checkbox" checked="checked"/;
1.45 ng 1078: }
1.324 albertel 1079: $gradeTable.=&show_grading_menu_form($symb);
1.45 ng 1080: $request->print($gradeTable);
1.44 ng 1081: return '';
1.10 ng 1082: }
1083:
1.44 ng 1084: #---- Called from the listStudents routine
1.249 albertel 1085:
1086: sub check_script {
1087: my ($form, $type)=@_;
1088: my $chkallscript='<script type="text/javascript">
1089: function checkall() {
1090: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1091: ele = document.forms.'.$form.'.elements[i];
1092: if (ele.name == "'.$type.'") {
1093: document.forms.'.$form.'.elements[i].checked=true;
1094: }
1095: }
1096: }
1097:
1098: function checksec() {
1099: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1100: ele = document.forms.'.$form.'.elements[i];
1101: string = document.forms.'.$form.'.chksec.value;
1102: if
1103: (ele.value.indexOf(":::SECTION"+string)>0) {
1104: document.forms.'.$form.'.elements[i].checked=true;
1105: }
1106: }
1107: }
1108:
1109:
1110: function uncheckall() {
1111: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
1112: ele = document.forms.'.$form.'.elements[i];
1113: if (ele.name == "'.$type.'") {
1114: document.forms.'.$form.'.elements[i].checked=false;
1115: }
1116: }
1117: }
1118:
1119: </script>'."\n";
1120: return $chkallscript;
1121: }
1122:
1123: sub check_buttons {
1.485 albertel 1124: my $buttons.='<input type="button" onclick="checkall()" value="'.&mt('Check All').'" />';
1125: $buttons.='<input type="button" onclick="uncheckall()" value="'.&mt('Uncheck All').'" /> ';
1126: $buttons.='<input type="button" onclick="checksec()" value="'.&mt('Check Section/Group').'" />';
1.249 albertel 1127: $buttons.='<input type="text" size="5" name="chksec" /> ';
1128: return $buttons;
1129: }
1130:
1.44 ng 1131: # Displays the submissions for one student or a group of students
1.34 ng 1132: sub processGroup {
1.41 ng 1133: my ($request) = shift;
1134: my $ctr = 0;
1.155 albertel 1135: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 1136: my $total = scalar(@stuchecked)-1;
1.45 ng 1137:
1.396 banghart 1138: foreach my $student (@stuchecked) {
1139: my ($uname,$udom,$fullname) = split(/:/,$student);
1.257 albertel 1140: $env{'form.student'} = $uname;
1141: $env{'form.userdom'} = $udom;
1142: $env{'form.fullname'} = $fullname;
1.41 ng 1143: &submission($request,$ctr,$total);
1144: $ctr++;
1145: }
1146: return '';
1.35 ng 1147: }
1.34 ng 1148:
1.44 ng 1149: #------------------------------------------------------------------------------------
1150: #
1151: #-------------------------- Next few routines handles grading by student, essentially
1152: # handles essay response type problem/part
1153: #
1154: #--- Javascript to handle the submission page functionality ---
1155: sub sub_page_js {
1156: my $request = shift;
1157: $request->print(<<SUBJAVASCRIPT);
1158: <script type="text/javascript" language="javascript">
1.71 ng 1159: function updateRadio(formname,id,weight) {
1.125 ng 1160: var gradeBox = formname["GD_BOX"+id];
1161: var radioButton = formname["RADVAL"+id];
1162: var oldpts = formname["oldpts"+id].value;
1.72 ng 1163: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 1164: gradeBox.value = pts;
1165: var resetbox = false;
1166: if (isNaN(pts) || pts < 0) {
1167: alert("A number equal or greater than 0 is expected. Entered value = "+pts);
1168: for (var i=0; i<radioButton.length; i++) {
1169: if (radioButton[i].checked) {
1170: gradeBox.value = i;
1171: resetbox = true;
1172: }
1173: }
1174: if (!resetbox) {
1175: formtextbox.value = "";
1176: }
1177: return;
1.44 ng 1178: }
1.71 ng 1179:
1180: if (pts > weight) {
1181: var resp = confirm("You entered a value ("+pts+
1182: ") greater than the weight for the part. Accept?");
1183: if (resp == false) {
1.125 ng 1184: gradeBox.value = oldpts;
1.71 ng 1185: return;
1186: }
1.44 ng 1187: }
1.13 albertel 1188:
1.71 ng 1189: for (var i=0; i<radioButton.length; i++) {
1190: radioButton[i].checked=false;
1191: if (pts == i && pts != "") {
1192: radioButton[i].checked=true;
1193: }
1194: }
1195: updateSelect(formname,id);
1.125 ng 1196: formname["stores"+id].value = "0";
1.41 ng 1197: }
1.5 albertel 1198:
1.72 ng 1199: function writeBox(formname,id,pts) {
1.125 ng 1200: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1201: if (checkSolved(formname,id) == 'update') {
1202: gradeBox.value = pts;
1203: } else {
1.125 ng 1204: var oldpts = formname["oldpts"+id].value;
1.72 ng 1205: gradeBox.value = oldpts;
1.125 ng 1206: var radioButton = formname["RADVAL"+id];
1.71 ng 1207: for (var i=0; i<radioButton.length; i++) {
1208: radioButton[i].checked=false;
1.72 ng 1209: if (i == oldpts) {
1.71 ng 1210: radioButton[i].checked=true;
1211: }
1212: }
1.41 ng 1213: }
1.125 ng 1214: formname["stores"+id].value = "0";
1.71 ng 1215: updateSelect(formname,id);
1216: return;
1.41 ng 1217: }
1.44 ng 1218:
1.71 ng 1219: function clearRadBox(formname,id) {
1220: if (checkSolved(formname,id) == 'noupdate') {
1221: updateSelect(formname,id);
1222: return;
1223: }
1.125 ng 1224: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1225: for (var i=0; i<gradeSelect.length; i++) {
1226: if (gradeSelect[i].selected) {
1227: var selectx=i;
1228: }
1229: }
1.125 ng 1230: var stores = formname["stores"+id];
1.71 ng 1231: if (selectx == stores.value) { return };
1.125 ng 1232: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1233: gradeBox.value = "";
1.125 ng 1234: var radioButton = formname["RADVAL"+id];
1.71 ng 1235: for (var i=0; i<radioButton.length; i++) {
1236: radioButton[i].checked=false;
1237: }
1238: stores.value = selectx;
1239: }
1.5 albertel 1240:
1.71 ng 1241: function checkSolved(formname,id) {
1.125 ng 1242: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1243: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1244: if (!reply) {return "noupdate";}
1.120 ng 1245: formname.overRideScore.value = 'yes';
1.41 ng 1246: }
1.71 ng 1247: return "update";
1.13 albertel 1248: }
1.71 ng 1249:
1250: function updateSelect(formname,id) {
1.125 ng 1251: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1252: return;
1.41 ng 1253: }
1.33 ng 1254:
1.121 ng 1255: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1256: function checksubmit(formname,val,total,parttot) {
1.121 ng 1257: formname.gradeOpt.value = val;
1.71 ng 1258: if (val == "Save & Next") {
1259: for (i=0;i<=total;i++) {
1260: for (j=0;j<parttot;j++) {
1.125 ng 1261: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1262: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1263: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1264: if (points == "") {
1.125 ng 1265: var name = formname["name"+i].value;
1.129 ng 1266: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1267: var resp = confirm("You did not assign a score for "+studentID+
1268: ", part "+partid+". Continue?");
1.71 ng 1269: if (resp == false) {
1.125 ng 1270: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1271: return false;
1272: }
1273: }
1274: }
1275:
1276: }
1277: }
1278:
1279: }
1.121 ng 1280: if (val == "Grade Student") {
1281: formname.showgrading.value = "yes";
1282: if (formname.Status.value == "") {
1283: formname.Status.value = "Active";
1284: }
1285: formname.studentNo.value = total;
1286: }
1.120 ng 1287: formname.submit();
1288: }
1289:
1.71 ng 1290: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1291: function checkSubmitPage(formname,total) {
1292: noscore = new Array(100);
1293: var ptr = 0;
1294: for (i=1;i<total;i++) {
1.125 ng 1295: var partid = formname["q_"+i].value;
1.127 ng 1296: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1297: var points = formname["GD_BOX"+i+"_"+partid].value;
1298: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1299: if (points == "" && status != "correct_by_student") {
1300: noscore[ptr] = i;
1301: ptr++;
1302: }
1303: }
1304: }
1305: if (ptr != 0) {
1306: var sense = ptr == 1 ? ": " : "s: ";
1307: var prolist = "";
1308: if (ptr == 1) {
1309: prolist = noscore[0];
1310: } else {
1311: var i = 0;
1312: while (i < ptr-1) {
1313: prolist += noscore[i]+", ";
1314: i++;
1315: }
1316: prolist += "and "+noscore[i];
1317: }
1318: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1319: if (resp == false) {
1320: return false;
1321: }
1322: }
1.45 ng 1323:
1.71 ng 1324: formname.submit();
1325: }
1326: </script>
1327: SUBJAVASCRIPT
1328: }
1.45 ng 1329:
1.71 ng 1330: #--- javascript for essay type problem --
1331: sub sub_page_kw_js {
1332: my $request = shift;
1.80 ng 1333: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1334: &commonJSfunctions($request);
1.350 albertel 1335:
1.351 albertel 1336: my $inner_js_msg_central=<<INNERJS;
1.350 albertel 1337: <script text="text/javascript">
1338: function checkInput() {
1339: opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);
1340: var nmsg = opener.document.SCORE.savemsgN.value;
1341: var usrctr = document.msgcenter.usrctr.value;
1342: var newval = opener.document.SCORE["newmsg"+usrctr];
1343: newval.value = opener.checkEntities(document.msgcenter.newmsg.value);
1344:
1345: var msgchk = "";
1346: if (document.msgcenter.subchk.checked) {
1347: msgchk = "msgsub,";
1348: }
1349: var includemsg = 0;
1350: for (var i=1; i<=nmsg; i++) {
1351: var opnmsg = opener.document.SCORE["savemsg"+i];
1352: var frmmsg = document.msgcenter["msg"+i];
1353: opnmsg.value = opener.checkEntities(frmmsg.value);
1354: var showflg = opener.document.SCORE["shownOnce"+i];
1355: showflg.value = "1";
1356: var chkbox = document.msgcenter["msgn"+i];
1357: if (chkbox.checked) {
1358: msgchk += "savemsg"+i+",";
1359: includemsg = 1;
1360: }
1361: }
1362: if (document.msgcenter.newmsgchk.checked) {
1363: msgchk += "newmsg"+usrctr;
1364: includemsg = 1;
1365: }
1366: imgformname = opener.document.SCORE["mailicon"+usrctr];
1367: imgformname.src = "$iconpath/"+((includemsg) ? "mailto.gif" : "mailbkgrd.gif");
1368: var includemsg = opener.document.SCORE["includemsg"+usrctr];
1369: includemsg.value = msgchk;
1370:
1371: self.close()
1372:
1373: }
1374: </script>
1375: INNERJS
1376:
1.351 albertel 1377: my $inner_js_highlight_central=<<INNERJS;
1378: <script type="text/javascript">
1379: function updateChoice(flag) {
1380: opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);
1381: opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);
1382: opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);
1383: opener.document.SCORE.refresh.value = "on";
1384: if (opener.document.SCORE.keywords.value!=""){
1385: opener.document.SCORE.submit();
1386: }
1387: self.close()
1388: }
1389: </script>
1390: INNERJS
1391:
1392: my $start_page_msg_central =
1393: &Apache::loncommon::start_page('Message Central',$inner_js_msg_central,
1394: {'js_ready' => 1,
1395: 'only_body' => 1,
1396: 'bgcolor' =>'#FFFFFF',});
1397: my $end_page_msg_central =
1398: &Apache::loncommon::end_page({'js_ready' => 1});
1399:
1400:
1401: my $start_page_highlight_central =
1402: &Apache::loncommon::start_page('Highlight Central',
1403: $inner_js_highlight_central,
1.350 albertel 1404: {'js_ready' => 1,
1405: 'only_body' => 1,
1406: 'bgcolor' =>'#FFFFFF',});
1.351 albertel 1407: my $end_page_highlight_central =
1.350 albertel 1408: &Apache::loncommon::end_page({'js_ready' => 1});
1409:
1.219 www 1410: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1411: $docopen=~s/^document\.//;
1.71 ng 1412: $request->print(<<SUBJAVASCRIPT);
1413: <script type="text/javascript" language="javascript">
1.45 ng 1414:
1.44 ng 1415: //===================== Show list of keywords ====================
1.122 ng 1416: function keywords(formname) {
1417: var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
1.44 ng 1418: if (nret==null) return;
1.122 ng 1419: formname.keywords.value = nret;
1.44 ng 1420:
1.122 ng 1421: if (formname.keywords.value != "") {
1.128 ng 1422: formname.refresh.value = "on";
1.122 ng 1423: formname.submit();
1.44 ng 1424: }
1425: return;
1426: }
1427:
1428: //===================== Script to view submitted by ==================
1429: function viewSubmitter(submitter) {
1430: document.SCORE.refresh.value = "on";
1431: document.SCORE.NCT.value = "1";
1432: document.SCORE.unamedom0.value = submitter;
1433: document.SCORE.submit();
1434: return;
1435: }
1436:
1437: //===================== Script to add keyword(s) ==================
1438: function getSel() {
1439: if (document.getSelection) txt = document.getSelection();
1440: else if (document.selection) txt = document.selection.createRange().text;
1441: else return;
1442: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1443: if (cleantxt=="") {
1.46 ng 1444: alert("Please select a word or group of words from document and then click this link.");
1.44 ng 1445: return;
1446: }
1447: var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
1448: if (nret==null) return;
1.127 ng 1449: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1450: if (document.SCORE.keywords.value != "") {
1.127 ng 1451: document.SCORE.refresh.value = "on";
1.44 ng 1452: document.SCORE.submit();
1453: }
1454: return;
1455: }
1456:
1457: //====================== Script for composing message ==============
1.80 ng 1458: // preload images
1459: img1 = new Image();
1460: img1.src = "$iconpath/mailbkgrd.gif";
1461: img2 = new Image();
1462: img2.src = "$iconpath/mailto.gif";
1463:
1.44 ng 1464: function msgCenter(msgform,usrctr,fullname) {
1465: var Nmsg = msgform.savemsgN.value;
1466: savedMsgHeader(Nmsg,usrctr,fullname);
1467: var subject = msgform.msgsub.value;
1.127 ng 1468: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1469: re = /msgsub/;
1470: var shwsel = "";
1471: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1472: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1473: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1474: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1475: var testmsg = "savemsg"+i+",";
1476: re = new RegExp(testmsg,"g");
1.44 ng 1477: shwsel = "";
1478: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1479: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1480: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1481: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1482: //any < is already converted to <, etc. However, only once!!
1.44 ng 1483: }
1.125 ng 1484: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1485: shwsel = "";
1486: re = /newmsg/;
1487: if (re.test(msgchk)) { shwsel = "checked" }
1488: newMsg(newmsg,shwsel);
1489: msgTail();
1490: return;
1491: }
1492:
1.123 ng 1493: function checkEntities(strx) {
1494: if (strx.length == 0) return strx;
1495: var orgStr = ["&", "<", ">", '"'];
1496: var newStr = ["&", "<", ">", """];
1497: var counter = 0;
1498: while (counter < 4) {
1499: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1500: counter++;
1501: }
1502: return strx;
1503: }
1504:
1505: function strReplace(strx, orgStr, newStr) {
1506: return strx.split(orgStr).join(newStr);
1507: }
1508:
1.44 ng 1509: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1510: var height = 70*Nmsg+250;
1.44 ng 1511: var scrollbar = "no";
1512: if (height > 600) {
1513: height = 600;
1514: scrollbar = "yes";
1515: }
1.118 ng 1516: var xpos = (screen.width-600)/2;
1517: xpos = (xpos < 0) ? '0' : xpos;
1518: var ypos = (screen.height-height)/2-30;
1519: ypos = (ypos < 0) ? '0' : ypos;
1520:
1.206 albertel 1521: pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
1.76 ng 1522: pWin.focus();
1523: pDoc = pWin.document;
1.219 www 1524: pDoc.$docopen;
1.351 albertel 1525: pDoc.write('$start_page_msg_central');
1.76 ng 1526:
1527: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1528: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.465 albertel 1529: pDoc.write("<h3><span class=\\"LC_info\\"> Compose Message for \"+fullname+\"<\\/span><\\/h3><br /><br />");
1.76 ng 1530:
1531: pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1532: pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465 albertel 1533: pDoc.write("<td><b>Type<\\/b><\\/td><td><b>Include<\\/b><\\/td><td><b>Message<\\/td><\\/tr>");
1.44 ng 1534: }
1535: function displaySubject(msg,shwsel) {
1.76 ng 1536: pDoc = pWin.document;
1537: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1538: pDoc.write("<td>Subject<\\/td>");
1539: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1540: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"><\\/td><\\/tr>");
1.44 ng 1541: }
1542:
1.72 ng 1543: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1544: pDoc = pWin.document;
1545: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1546: pDoc.write("<td align=\\"center\\">"+ctr+"<\\/td>");
1547: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1548: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1549: }
1550:
1551: function newMsg(newmsg,shwsel) {
1.76 ng 1552: pDoc = pWin.document;
1553: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1.465 albertel 1554: pDoc.write("<td align=\\"center\\">New<\\/td>");
1555: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"><\\/td>");
1556: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"<\\/textarea><\\/td><\\/tr>");
1.44 ng 1557: }
1558:
1559: function msgTail() {
1.76 ng 1560: pDoc = pWin.document;
1.465 albertel 1561: pDoc.write("<\\/table>");
1562: pDoc.write("<\\/td><\\/tr><\\/table> ");
1.76 ng 1563: pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\"> ");
1.326 albertel 1564: pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465 albertel 1565: pDoc.write("<\\/form>");
1.351 albertel 1566: pDoc.write('$end_page_msg_central');
1.128 ng 1567: pDoc.close();
1.44 ng 1568: }
1569:
1570: //====================== Script for keyword highlight options ==============
1571: function kwhighlight() {
1572: var kwclr = document.SCORE.kwclr.value;
1573: var kwsize = document.SCORE.kwsize.value;
1574: var kwstyle = document.SCORE.kwstyle.value;
1575: var redsel = "";
1576: var grnsel = "";
1577: var blusel = "";
1578: if (kwclr=="red") {var redsel="checked"};
1579: if (kwclr=="green") {var grnsel="checked"};
1580: if (kwclr=="blue") {var blusel="checked"};
1581: var sznsel = "";
1582: var sz1sel = "";
1583: var sz2sel = "";
1584: if (kwsize=="0") {var sznsel="checked"};
1585: if (kwsize=="+1") {var sz1sel="checked"};
1586: if (kwsize=="+2") {var sz2sel="checked"};
1587: var synsel = "";
1588: var syisel = "";
1589: var sybsel = "";
1590: if (kwstyle=="") {var synsel="checked"};
1591: if (kwstyle=="<i>") {var syisel="checked"};
1592: if (kwstyle=="<b>") {var sybsel="checked"};
1593: highlightCentral();
1594: highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
1595: highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
1596: highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
1597: highlightend();
1598: return;
1599: }
1600:
1601: function highlightCentral() {
1.76 ng 1602: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1603: var xpos = (screen.width-400)/2;
1604: xpos = (xpos < 0) ? '0' : xpos;
1605: var ypos = (screen.height-330)/2-30;
1606: ypos = (ypos < 0) ? '0' : ypos;
1607:
1.206 albertel 1608: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1609: hwdWin.focus();
1610: var hDoc = hwdWin.document;
1.219 www 1611: hDoc.$docopen;
1.351 albertel 1612: hDoc.write('$start_page_highlight_central');
1.76 ng 1613: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.465 albertel 1614: hDoc.write("<h3><span class=\\"LC_info\\"> Keyword Highlight Options<\\/span><\\/h3><br /><br />");
1.76 ng 1615:
1616: hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1617: hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1.465 albertel 1618: hDoc.write("<td><b>Text Color<\\/b><\\/td><td><b>Font Size<\\/b><\\/td><td><b>Font Style<\\/td><\\/tr>");
1.44 ng 1619: }
1620:
1621: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1622: var hDoc = hwdWin.document;
1623: hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1624: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1625: hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+"> "+clrtxt+"<\\/td>");
1.76 ng 1626: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1627: hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+"> "+sztxt+"<\\/td>");
1.76 ng 1628: hDoc.write("<td align=\\"left\\">");
1.465 albertel 1629: hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+"> "+sytxt+"<\\/td>");
1630: hDoc.write("<\\/tr>");
1.44 ng 1631: }
1632:
1633: function highlightend() {
1.76 ng 1634: var hDoc = hwdWin.document;
1.465 albertel 1635: hDoc.write("<\\/table>");
1636: hDoc.write("<\\/td><\\/tr><\\/table> ");
1.76 ng 1637: hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\"> ");
1.326 albertel 1638: hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.465 albertel 1639: hDoc.write("<\\/form>");
1.351 albertel 1640: hDoc.write('$end_page_highlight_central');
1.128 ng 1641: hDoc.close();
1.44 ng 1642: }
1643:
1644: </script>
1645: SUBJAVASCRIPT
1646: }
1647:
1.349 albertel 1648: sub get_increment {
1.348 bowersj2 1649: my $increment = $env{'form.increment'};
1650: if ($increment != 1 && $increment != .5 && $increment != .25 &&
1651: $increment != .1) {
1652: $increment = 1;
1653: }
1654: return $increment;
1655: }
1656:
1.71 ng 1657: #--- displays the grading box, used in essay type problem and grading by page/sequence
1658: sub gradeBox {
1.322 albertel 1659: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.381 albertel 1660: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 1661: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 1662: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1.466 albertel 1663: my $wgtmsg = ($wgt > 0) ? &mt('(problem weight)')
1664: : '<span class="LC_info">'.&mt('problem weight assigned by computer').'</span>';
1.71 ng 1665: $wgt = ($wgt > 0 ? $wgt : '1');
1666: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1667: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71 ng 1668: my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.466 albertel 1669: my $display_part= &get_display_part($partid,$symb);
1.270 albertel 1670: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1671: [$partid]);
1672: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1673: if ($last_resets{$partid}) {
1674: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1675: }
1.485 albertel 1676: $result.='<table border="0"><tr>';
1.71 ng 1677: my $ctr = 0;
1.348 bowersj2 1678: my $thisweight = 0;
1.349 albertel 1679: my $increment = &get_increment();
1.485 albertel 1680:
1681: my $radio.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1.348 bowersj2 1682: while ($thisweight<=$wgt) {
1.485 albertel 1683: $radio.= '<td><span style="white-space: nowrap;"><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.71 ng 1684: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.348 bowersj2 1685: $thisweight.')" value="'.$thisweight.'" '.
1.401 albertel 1686: ($score eq $thisweight ? 'checked="checked"':'').' /> '.$thisweight."</label></span></td>\n";
1.485 albertel 1687: $radio.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1.348 bowersj2 1688: $thisweight += $increment;
1.71 ng 1689: $ctr++;
1690: }
1.485 albertel 1691: $radio.='</tr></table>';
1692:
1693: my $line.='<input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1.71 ng 1694: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1695: 'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1696: $wgt.')" /></td>'."\n";
1.485 albertel 1697: $line.='<td>/'.$wgt.' '.$wgtmsg.
1.71 ng 1698: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1699: ' </td><td>'."\n";
1.485 albertel 1700: $line.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
1.71 ng 1701: 'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1702: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1.485 albertel 1703: $line.='<option></option>'.
1704: '<option value="excused" selected="selected">'.&mt('excused').'</option>';
1.71 ng 1705: } else {
1.485 albertel 1706: $line.='<option selected="selected"></option>'.
1707: '<option value="excused" >'.&mt('excused').'</option>';
1.71 ng 1708: }
1.485 albertel 1709: $line.='<option value="reset status">'.&mt('reset status').'</option></select>'."\n";
1710:
1711:
1712: $result .=
1713: &mt('<td><b>Part:</b></td><td>[_1]</td><td><b>Points:</b></td><td>[_2]</td><td>or</td><td>[_3]</td>',$display_part,$radio,$line);
1714:
1715:
1716: $result.='</tr></table>'."\n";
1.71 ng 1717: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1718: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1719: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1720: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1721: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1722: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1723: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1724: $aggtries.'" />'."\n";
1.323 banghart 1725: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record);
1.318 banghart 1726: return $result;
1727: }
1.322 albertel 1728:
1729: sub handback_box {
1.323 banghart 1730: my ($symb,$uname,$udom,$counter,$partid,$record) = @_;
1.324 albertel 1731: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.323 banghart 1732: my (@respids);
1.375 albertel 1733: my @part_response_id = &flatten_responseType($responseType);
1734: foreach my $part_response_id (@part_response_id) {
1735: my ($part,$resp) = @{ $part_response_id };
1.323 banghart 1736: if ($part eq $partid) {
1.375 albertel 1737: push(@respids,$resp);
1.323 banghart 1738: }
1739: }
1.318 banghart 1740: my $result;
1.323 banghart 1741: foreach my $respid (@respids) {
1.322 albertel 1742: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1743: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1744: next if (!@$files);
1745: my $file_counter = 1;
1.313 banghart 1746: foreach my $file (@$files) {
1.368 banghart 1747: if ($file =~ /\/portfolio\//) {
1748: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
1749: my ($name,$version,$ext) = &file_name_version_ext($file_disp);
1750: $file_disp = "$name.$ext";
1751: $file = $file_path.$file_disp;
1752: $result.=&mt('Return commented version of [_1] to student.',
1753: '<span class="LC_filename">'.$file_disp.'</span>');
1754: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1755: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />';
1.485 albertel 1756: $result.='('.&mt('File will be uploaded when you click on Save & Next below.').')<br />';
1.368 banghart 1757: $file_counter++;
1758: }
1.322 albertel 1759: }
1.313 banghart 1760: }
1.318 banghart 1761: return $result;
1.71 ng 1762: }
1.44 ng 1763:
1.58 albertel 1764: sub show_problem {
1.382 albertel 1765: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode,$form) = @_;
1.144 albertel 1766: my $rendered;
1.382 albertel 1767: my %form = ((ref($form) eq 'HASH')? %{$form} : ());
1.329 albertel 1768: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1769: if ($mode eq 'both' or $mode eq 'text') {
1770: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.382 albertel 1771: $env{'request.course.id'},
1772: undef,\%form);
1.144 albertel 1773: }
1.58 albertel 1774: if ($removeform) {
1775: $rendered=~s|<form(.*?)>||g;
1776: $rendered=~s|</form>||g;
1.374 albertel 1777: $rendered=~s|(<input[^>]*name\s*=\s*"?)(\w+)("?)|$1would_have_been_$2$3|g;
1.58 albertel 1778: }
1.144 albertel 1779: my $companswer;
1780: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1781: &Apache::lonxml::restore_problem_counter();
1.382 albertel 1782: $companswer=
1783: &Apache::loncommon::get_student_answers($symb,$uname,$udom,
1784: $env{'request.course.id'},
1785: %form);
1.144 albertel 1786: }
1.58 albertel 1787: if ($removeform) {
1788: $companswer=~s|<form(.*?)>||g;
1789: $companswer=~s|</form>||g;
1.144 albertel 1790: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1791: }
1.468 albertel 1792: $rendered=
1793: '<div class="LC_grade_show_problem_header">'.
1794: &mt('View of the problem').
1795: '</div><div class="LC_grade_show_problem_problem">'.
1796: $rendered.
1797: '</div>';
1798: $companswer=
1799: '<div class="LC_grade_show_problem_header">'.
1800: &mt('Correct answer').
1801: '</div><div class="LC_grade_show_problem_problem">'.
1802: $companswer.
1803: '</div>';
1804: my $result;
1.144 albertel 1805: if ($mode eq 'both') {
1.468 albertel 1806: $result=$rendered.$companswer;
1.144 albertel 1807: } elsif ($mode eq 'text') {
1.468 albertel 1808: $result=$rendered;
1.144 albertel 1809: } elsif ($mode eq 'answer') {
1.468 albertel 1810: $result=$companswer;
1.144 albertel 1811: }
1.468 albertel 1812: $result='<div class="LC_grade_show_problem">'.$result.'</div>';
1.71 ng 1813: return $result;
1.58 albertel 1814: }
1.397 albertel 1815:
1.396 banghart 1816: sub files_exist {
1817: my ($r, $symb) = @_;
1818: my @students = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.397 albertel 1819:
1.396 banghart 1820: foreach my $student (@students) {
1821: my ($uname,$udom,$fullname) = split(/:/,$student);
1.397 albertel 1822: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},
1823: $udom,$uname);
1.396 banghart 1824: my ($string,$timestamp)= &get_last_submission(\%record);
1.397 albertel 1825: foreach my $submission (@$string) {
1826: my ($partid,$respid) =
1827: ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1828: my $files=&get_submitted_files($udom,$uname,$partid,$respid,
1829: \%record);
1830: return 1 if (@$files);
1.396 banghart 1831: }
1832: }
1.397 albertel 1833: return 0;
1.396 banghart 1834: }
1.397 albertel 1835:
1.394 banghart 1836: sub download_all_link {
1837: my ($r,$symb) = @_;
1.395 albertel 1838: my $all_students =
1839: join("\n", &Apache::loncommon::get_env_multiple('form.stuinfo'));
1840:
1841: my $parts =
1842: join("\n",&Apache::loncommon::get_env_multiple('form.vPart'));
1843:
1.394 banghart 1844: my $identifier = &Apache::loncommon::get_cgi_id();
1.514 raeburn 1845: &Apache::lonnet::appenv({'cgi.'.$identifier.'.students' => $all_students,
1846: 'cgi.'.$identifier.'.symb' => $symb,
1847: 'cgi.'.$identifier.'.parts' => $parts,});
1.395 albertel 1848: $r->print('<a href="/cgi-bin/multidownload.pl?'.$identifier.'">'.
1849: &mt('Download All Submitted Documents').'</a>');
1.394 banghart 1850: return
1851: }
1.395 albertel 1852:
1.432 banghart 1853: sub build_section_inputs {
1854: my $section_inputs;
1855: if ($env{'form.section'} eq '') {
1856: $section_inputs .= '<input type="hidden" name="section" value="all" />'."\n";
1857: } else {
1858: my @sections = &Apache::loncommon::get_env_multiple('form.section');
1.434 albertel 1859: foreach my $section (@sections) {
1.432 banghart 1860: $section_inputs .= '<input type="hidden" name="section" value="'.$section.'" />'."\n";
1861: }
1862: }
1863: return $section_inputs;
1864: }
1865:
1.44 ng 1866: # --------------------------- show submissions of a student, option to grade
1867: sub submission {
1868: my ($request,$counter,$total) = @_;
1.257 albertel 1869: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
1870: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
1871: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
1872: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.324 albertel 1873: my $symb = &get_symb($request);
1874: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104 albertel 1875:
1876: if (!&canview($usec)) {
1.398 albertel 1877: $request->print('<span class="LC_warning">Unable to view requested student.('.
1878: $uname.':'.$udom.' in section '.$usec.' in course id '.
1879: $env{'request.course.id'}.')</span>');
1.324 albertel 1880: $request->print(&show_grading_menu_form($symb));
1.104 albertel 1881: return;
1882: }
1883:
1.257 albertel 1884: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
1885: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
1886: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
1887: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.381 albertel 1888: my $checkIcon = '<img alt="'.&mt('Check Mark').
1889: '" src="'.$request->dir_config('lonIconsURL').
1.122 ng 1890: '/check.gif" height="16" border="0" />';
1.41 ng 1891:
1.426 albertel 1892: my %old_essays;
1.41 ng 1893: # header info
1894: if ($counter == 0) {
1895: &sub_page_js($request);
1.257 albertel 1896: &sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
1897: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
1898: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.397 albertel 1899: if ($env{'form.handgrade'} eq 'yes' && &files_exist($request, $symb)) {
1.396 banghart 1900: &download_all_link($request, $symb);
1901: }
1.485 albertel 1902: $request->print('<h3> <span class="LC_info">'.&mt('Submission Record').'</span></h3>'."\n".
1903: '<h4> '.&mt('<b>Resource: </b> [_1]',$env{'form.probTitle'}).'</h4>'."\n");
1.118 ng 1904:
1.44 ng 1905: # option to display problem, only once else it cause problems
1906: # with the form later since the problem has a form.
1.257 albertel 1907: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 1908: my $mode;
1.257 albertel 1909: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 1910: $mode='both';
1.257 albertel 1911: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 1912: $mode='text';
1.257 albertel 1913: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 1914: $mode='answer';
1915: }
1.329 albertel 1916: &Apache::lonxml::clear_problem_counter();
1.144 albertel 1917: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 1918: }
1.441 www 1919:
1.44 ng 1920: # kwclr is the only variable that is guaranteed to be non blank
1921: # if this subroutine has been called once.
1.41 ng 1922: my %keyhash = ();
1.257 albertel 1923: if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41 ng 1924: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 1925: $env{'course.'.$env{'request.course.id'}.'.domain'},
1926: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 1927:
1.257 albertel 1928: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1929: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
1930: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
1931: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
1932: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
1933: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
1934: $keyhash{$symb.'_subject'} : $env{'form.probTitle'};
1935: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 1936: }
1.257 albertel 1937: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.442 banghart 1938: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.303 banghart 1939: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 1940: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.257 albertel 1941: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 1942: '<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.120 ng 1943: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257 albertel 1944: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.41 ng 1945: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 1946: '<input type="hidden" name="studentNo" value="" />'."\n".
1947: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.418 albertel 1948: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 1949: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
1950: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
1951: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
1952: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.432 banghart 1953: &build_section_inputs().
1.326 albertel 1954: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
1955: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" />'."\n".
1.41 ng 1956: '<input type="hidden" name="NCT"'.
1.257 albertel 1957: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
1958: if ($env{'form.handgrade'} eq 'yes') {
1959: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
1960: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
1961: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
1962: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
1963: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 1964: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 1965: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 1966: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
1967: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
1968: }
1.123 ng 1969: }
1.41 ng 1970:
1971: my ($cts,$prnmsg) = (1,'');
1.257 albertel 1972: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 1973: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 1974: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 1975: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 1976: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 1977: '" />'."\n".
1978: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 1979: $cts++;
1980: }
1981: $request->print($prnmsg);
1.32 ng 1982:
1.257 albertel 1983: if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.88 www 1984: #
1985: # Print out the keyword options line
1986: #
1.41 ng 1987: $request->print(<<KEYWORDS);
1.38 ng 1988: <b>Keyword Options:</b>
1.417 albertel 1989: <a href="javascript:keywords(document.SCORE);" target="_self">List</a>
1.38 ng 1990: <a href="#" onMouseDown="javascript:getSel(); return false"
1991: CLASS="page">Paste Selection to List</a>
1.417 albertel 1992: <a href="javascript:kwhighlight();" target="_self">Highlight Attribute</a><br /><br />
1.38 ng 1993: KEYWORDS
1.88 www 1994: #
1995: # Load the other essays for similarity check
1996: #
1.324 albertel 1997: my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.384 albertel 1998: my ($adom,$aname,$apath)=($essayurl=~/^($LONCAPA::domain_re)\/($LONCAPA::username_re)\/(.*)$/);
1.359 www 1999: $apath=&escape($apath);
1.88 www 2000: $apath=~s/\W/\_/gs;
1.426 albertel 2001: %old_essays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
1.41 ng 2002: }
2003: }
1.44 ng 2004:
1.441 www 2005: # This is where output for one specific student would start
1.468 albertel 2006: my $add_class = ($counter%2) ? 'LC_grade_show_user_odd_row' : '';
1.441 www 2007: $request->print("\n\n".
1.468 albertel 2008: '<div class="LC_grade_show_user '.$add_class.'">'.
2009: '<div class="LC_grade_user_name">'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'</div>'.
2010: '<div class="LC_grade_show_user_body">'."\n");
1.441 www 2011:
1.257 albertel 2012: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.144 albertel 2013: my $mode;
1.257 albertel 2014: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 2015: $mode='both';
1.257 albertel 2016: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 2017: $mode='text';
1.257 albertel 2018: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 2019: $mode='answer';
2020: }
1.329 albertel 2021: &Apache::lonxml::clear_problem_counter();
1.475 albertel 2022: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode,{'request.prefix' => 'ctr'.$counter}));
1.58 albertel 2023: }
1.144 albertel 2024:
1.257 albertel 2025: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2026: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.41 ng 2027:
1.44 ng 2028: # Display student info
1.41 ng 2029: $request->print(($counter == 0 ? '' : '<br />'));
1.468 albertel 2030: my $result='<div class="LC_grade_submissions">';
2031:
2032: $result.='<div class="LC_grade_submissions_header">';
2033: $result.= &mt('Submissions');
1.45 ng 2034: $result.='<input type="hidden" name="name'.$counter.
1.257 albertel 2035: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.469 albertel 2036: if ($env{'form.handgrade'} eq 'no') {
2037: $result.='<span class="LC_grade_check_note">'.
2038: &mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)."</span>\n";
2039:
2040: }
2041:
2042:
1.41 ng 2043:
1.118 ng 2044: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.464 albertel 2045: my $fullname;
2046: my $col_fullnames = [];
1.257 albertel 2047: if ($env{'form.handgrade'} eq 'yes') {
1.464 albertel 2048: (my $sub_result,$fullname,$col_fullnames)=
2049: &check_collaborators($symb,$uname,$udom,\%record,$handgrade,
2050: $counter);
2051: $result.=$sub_result;
1.41 ng 2052: }
1.44 ng 2053: $request->print($result."\n");
1.468 albertel 2054: $request->print('</div>'."\n");
1.44 ng 2055: # print student answer/submission
2056: # Options are (1) Handgaded submission only
2057: # (2) Last submission, includes submission that is not handgraded
2058: # (for multi-response type part)
2059: # (3) Last submission plus the parts info
2060: # (4) The whole record for this student
1.257 albertel 2061: if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151 albertel 2062: my ($string,$timestamp)= &get_last_submission(\%record);
1.468 albertel 2063:
2064: my $lastsubonly;
2065:
1.151 albertel 2066: if ($$timestamp eq '') {
1.468 albertel 2067: $lastsubonly.='<div class="LC_grade_submissions_body">'.$$string[0].'</div>';
1.151 albertel 2068: } else {
1.468 albertel 2069: $lastsubonly = '<div class="LC_grade_submissions_body"> <b>Date Submitted:</b> '.$$timestamp."\n";
2070:
1.151 albertel 2071: my %seenparts;
1.375 albertel 2072: my @part_response_id = &flatten_responseType($responseType);
2073: foreach my $part (@part_response_id) {
1.393 albertel 2074: next if ($env{'form.lastSub'} eq 'hdgrade'
2075: && $$handgrade{$$part[0].'_'.$$part[1]} ne 'yes');
2076:
1.375 albertel 2077: my ($partid,$respid) = @{ $part };
1.324 albertel 2078: my $display_part=&get_display_part($partid,$symb);
1.257 albertel 2079: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151 albertel 2080: if (exists($seenparts{$partid})) { next; }
2081: $seenparts{$partid}=1;
1.207 albertel 2082: my $submitby='<b>Part:</b> '.$display_part.
2083: ' <b>Collaborative submission by:</b> '.
1.151 albertel 2084: '<a href="javascript:viewSubmitter(\''.
1.257 albertel 2085: $env{"form.$uname:$udom:$partid:submitted_by"}.
1.417 albertel 2086: '\');" target="_self">'.
1.257 albertel 2087: $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151 albertel 2088: $request->print($submitby);
2089: next;
2090: }
2091: my $responsetype = $responseType->{$partid}->{$respid};
2092: if (!exists($record{"resource.$partid.$respid.submission"})) {
1.468 albertel 2093: $lastsubonly.="\n".'<div class="LC_grade_submission_part"><b>Part:</b> '.
1.398 albertel 2094: $display_part.' <span class="LC_internal_info">( ID '.$respid.
2095: ' )</span> '.
1.468 albertel 2096: '<span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br /><br /></div>';
1.151 albertel 2097: next;
2098: }
1.468 albertel 2099: foreach my $submission (@$string) {
2100: my ($partid,$respid) = ($submission =~ /^resource\.([^\.]*)\.([^\.]*)\.submission/);
1.375 albertel 2101: if (join('_',@{$part}) ne ($partid.'_'.$respid)) { next; }
1.468 albertel 2102: my ($ressub,$subval) = split(/:/,$submission,2);
1.151 albertel 2103: # Similarity check
2104: my $similar='';
1.257 albertel 2105: if($env{'form.checkPlag'}){
1.151 albertel 2106: my ($oname,$odom,$ocrsid,$oessay,$osim)=
1.426 albertel 2107: &most_similar($uname,$udom,$subval,\%old_essays);
1.151 albertel 2108: if ($osim) {
2109: $osim=int($osim*100.0);
1.426 albertel 2110: my %old_course_desc =
2111: &Apache::lonnet::coursedescription($ocrsid,
2112: {'one_time' => 1});
2113:
2114: $similar="<hr /><h3><span class=\"LC_warning\">".
1.427 albertel 2115: &mt('Essay is [_1]% similar to an essay by [_2] ([_3]:[_4]) in course [_5] (course id [_6]:[_7])',
1.426 albertel 2116: $osim,
2117: &Apache::loncommon::plainname($oname,$odom),
1.427 albertel 2118: $oname,$odom,
1.426 albertel 2119: $old_course_desc{'description'},
1.427 albertel 2120: $old_course_desc{'num'},
1.426 albertel 2121: $old_course_desc{'domain'}).
1.398 albertel 2122: '</span></h3><blockquote><i>'.
1.151 albertel 2123: &keywords_highlight($oessay).
2124: '</i></blockquote><hr />';
2125: }
1.150 albertel 2126: }
1.151 albertel 2127: my $order=&get_order($partid,$respid,$symb,$uname,$udom);
1.257 albertel 2128: if ($env{'form.lastSub'} eq 'lastonly' ||
2129: ($env{'form.lastSub'} eq 'hdgrade' &&
1.377 albertel 2130: $$handgrade{$$part[0].'_'.$$part[1]} eq 'yes')) {
1.324 albertel 2131: my $display_part=&get_display_part($partid,$symb);
1.468 albertel 2132: $lastsubonly.='<div class="LC_grade_submission_part"><b>Part:</b> '.
1.403 albertel 2133: $display_part.' <span class="LC_internal_info">( ID '.$respid.
1.398 albertel 2134: ' )</span> ';
1.313 banghart 2135: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
2136: if (@$files) {
1.468 albertel 2137: $lastsubonly.='<br /><span class="LC_warning">'.&mt('Like all files provided by users, this file may contain virusses').'</span><br />';
1.303 banghart 2138: my $file_counter = 0;
1.313 banghart 2139: foreach my $file (@$files) {
1.468 albertel 2140: $file_counter++;
1.232 albertel 2141: &Apache::lonnet::allowuploaded('/adm/grades',$file);
1.335 albertel 2142: $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border=0"> '.$file.'</a>';
1.232 albertel 2143: }
1.236 albertel 2144: $lastsubonly.='<br />';
1.41 ng 2145: }
1.468 albertel 2146: $lastsubonly.='<b>'.&mt('Submitted Answer:').' </b>'.
1.151 albertel 2147: &cleanRecord($subval,$responsetype,$symb,$partid,
2148: $respid,\%record,$order);
2149: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.468 albertel 2150: $lastsubonly.='</div>';
1.41 ng 2151: }
2152: }
2153: }
1.468 albertel 2154: $lastsubonly.='</div>'."\n";
1.151 albertel 2155: }
2156: $request->print($lastsubonly);
1.468 albertel 2157: } elsif ($env{'form.lastSub'} eq 'datesub') {
1.324 albertel 2158: my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
1.148 albertel 2159: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257 albertel 2160: } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41 ng 2161: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 2162: $env{'request.course.id'},
1.44 ng 2163: $last,'.submission',
2164: 'Apache::grades::keywords_highlight'));
1.41 ng 2165: }
1.120 ng 2166:
1.121 ng 2167: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
2168: .$udom.'" />'."\n");
1.44 ng 2169: # return if view submission with no grading option
1.257 albertel 2170: if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120 ng 2171: my $toGrade.='<input type="button" value="Grade Student" '.
1.121 ng 2172: 'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
1.417 albertel 2173: .$counter.'\');" target="_self" /> '."\n" if (&canmodify($usec));
1.468 albertel 2174: $toGrade.='</div>'."\n";
1.257 albertel 2175: if (($env{'form.command'} eq 'submission') ||
2176: ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.324 albertel 2177: $toGrade.='</form>'.&show_grading_menu_form($symb);
1.169 albertel 2178: }
1.180 albertel 2179: $request->print($toGrade);
1.41 ng 2180: return;
1.180 albertel 2181: } else {
1.468 albertel 2182: $request->print('</div>'."\n");
1.41 ng 2183: }
1.33 ng 2184:
1.121 ng 2185: # essay grading message center
1.257 albertel 2186: if ($env{'form.handgrade'} eq 'yes') {
1.468 albertel 2187: my $result='<div class="LC_grade_message_center">';
2188:
2189: $result.='<div class="LC_grade_message_center_header">'.
2190: &mt('Send Message').'</div><div class="LC_grade_message_center_body">';
1.257 albertel 2191: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 2192: my $msgfor = $givenn.' '.$lastname;
1.464 albertel 2193: if (scalar(@$col_fullnames) > 0) {
2194: my $lastone = pop(@$col_fullnames);
2195: $msgfor .= ', '.(join ', ',@$col_fullnames).' and '.$lastone.'.';
1.118 ng 2196: }
2197: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.468 albertel 2198: $result.='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1.121 ng 2199: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
2200: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.417 albertel 2201: ',\''.$msgfor.'\');" target="_self">'.
1.464 albertel 2202: &mt('Compose message to student').(scalar(@$col_fullnames) >= 1 ? 's' : '').'</a><label> ('.
1.350 albertel 2203: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" /></label>)'.
1.118 ng 2204: '<img src="'.$request->dir_config('lonIconsURL').
2205: '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298 www 2206: '<br /> ('.
1.468 albertel 2207: &mt('Message will be sent when you click on Save & Next below.').")\n";
2208: $result.='</div></div>';
1.121 ng 2209: $request->print($result);
1.118 ng 2210: }
1.41 ng 2211:
2212: my %seen = ();
2213: my @partlist;
1.129 ng 2214: my @gradePartRespid;
1.375 albertel 2215: my @part_response_id = &flatten_responseType($responseType);
1.468 albertel 2216: $request->print('<div class="LC_grade_assign">'.
2217:
2218: '<div class="LC_grade_assign_header">'.
2219: &mt('Assign Grades').'</div>'.
2220: '<div class="LC_grade_assign_body">');
1.375 albertel 2221: foreach my $part_response_id (@part_response_id) {
2222: my ($partid,$respid) = @{ $part_response_id };
2223: my $part_resp = join('_',@{ $part_response_id });
1.322 albertel 2224: next if ($seen{$partid} > 0);
1.41 ng 2225: $seen{$partid}++;
1.393 albertel 2226: next if ($$handgrade{$part_resp} ne 'yes'
2227: && $env{'form.lastSub'} eq 'hdgrade');
1.41 ng 2228: push @partlist,$partid;
1.129 ng 2229: push @gradePartRespid,$partid.'.'.$respid;
1.322 albertel 2230: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 2231: }
1.468 albertel 2232: $request->print('</div></div>');
2233:
2234: $request->print('<div class="LC_grade_info_links">');
2235: if ($perm{'vgr'}) {
2236: $request->print(
2237: &Apache::loncommon::track_student_link(&mt('View recent activity'),
2238: $uname,$udom,'check'));
2239: }
2240: if ($perm{'opa'}) {
2241: $request->print(
2242: &Apache::loncommon::pprmlink(&mt('Set/Change parameters'),
2243: $uname,$udom,$symb,'check'));
2244: }
2245: $request->print('</div>');
2246:
1.45 ng 2247: $result='<input type="hidden" name="partlist'.$counter.
2248: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 2249: $result.='<input type="hidden" name="gradePartRespid'.
2250: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 2251: my $ctr = 0;
2252: while ($ctr < scalar(@partlist)) {
2253: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
2254: $partlist[$ctr].'" />'."\n";
2255: $ctr++;
2256: }
1.468 albertel 2257: $request->print($result.''."\n");
1.41 ng 2258:
1.441 www 2259: # Done with printing info for one student
2260:
1.468 albertel 2261: $request->print('</div>');#LC_grade_show_user_body
2262: $request->print('</div>');#LC_grade_show_user
1.441 www 2263:
2264:
1.41 ng 2265: # print end of form
2266: if ($counter == $total) {
1.297 www 2267: my $endform='<table border="0"><tr><td>'."\n";
1.485 albertel 2268: $endform.='<input type="button" value="'.&mt('Save & Next').'" '.
1.119 ng 2269: 'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
1.417 albertel 2270: $total.','.scalar(@partlist).');" target="_self" /> '."\n";
1.119 ng 2271: my $ntstu ='<select name="NTSTU">'.
2272: '<option>1</option><option>2</option>'.
2273: '<option>3</option><option>5</option>'.
2274: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 2275: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.401 albertel 2276: $ntstu =~ s/<option>$nsel</<option selected="selected">$nsel</;
1.485 albertel 2277: $endform.=&mt('[_1]student(s)',$ntstu);
2278: $endform.=' <input type="button" value="'.&mt('Previous').'" '.
1.417 albertel 2279: 'onClick="javascript:checksubmit(this.form,\'Previous\');" target="_self" /> '."\n".
1.485 albertel 2280: '<input type="button" value="'.&mt('Next').'" '.
1.417 albertel 2281: 'onClick="javascript:checksubmit(this.form,\'Next\');" target="_self" /> ';
1.485 albertel 2282: $endform.=&mt('(Next and Previous (student) do not save the scores.)')."\n" ;
1.349 albertel 2283: $endform.="<input type='hidden' value='".&get_increment().
1.348 bowersj2 2284: "' name='increment' />";
1.485 albertel 2285: $endform.='</td></tr></table></form>';
1.324 albertel 2286: $endform.=&show_grading_menu_form($symb);
1.41 ng 2287: $request->print($endform);
2288: }
2289: return '';
1.38 ng 2290: }
2291:
1.464 albertel 2292: sub check_collaborators {
2293: my ($symb,$uname,$udom,$record,$handgrade,$counter) = @_;
2294: my ($result,@col_fullnames);
2295: my ($classlist,undef,$fullname) = &getclasslist('all','0');
2296: foreach my $part (keys(%$handgrade)) {
2297: my $ncol = &Apache::lonnet::EXT('resource.'.$part.
2298: '.maxcollaborators',
2299: $symb,$udom,$uname);
2300: next if ($ncol <= 0);
2301: $part =~ s/\_/\./g;
2302: next if ($record->{'resource.'.$part.'.collaborators'} eq '');
2303: my (@good_collaborators, @bad_collaborators);
2304: foreach my $possible_collaborator
2305: (split(/,?\s+/,$record->{'resource.'.$part.'.collaborators'})) {
2306: $possible_collaborator =~ s/[\$\^\(\)]//g;
2307: next if ($possible_collaborator eq '');
2308: my ($co_name,$co_dom) = split(/\@|:/,$possible_collaborator);
2309: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
2310: next if ($co_name eq $uname && $co_dom eq $udom);
2311: # Doing this grep allows 'fuzzy' specification
2312: my @matches = grep(/^\Q$co_name\E:\Q$co_dom\E$/i,
2313: keys(%$classlist));
2314: if (! scalar(@matches)) {
2315: push(@bad_collaborators, $possible_collaborator);
2316: } else {
2317: push(@good_collaborators, @matches);
2318: }
2319: }
2320: if (scalar(@good_collaborators) != 0) {
1.466 albertel 2321: $result.='<br />'.&mt('Collaborators: ');
1.464 albertel 2322: foreach my $name (@good_collaborators) {
2323: my ($lastname,$givenn) = split(/,/,$$fullname{$name});
2324: push(@col_fullnames, $givenn.' '.$lastname);
2325: $result.=$fullname->{$name}.' ';
2326: }
2327: $result.='<br />'."\n";
1.466 albertel 2328: my ($part)=split(/\./,$part);
1.464 albertel 2329: $result.='<input type="hidden" name="collaborator'.$counter.
2330: '" value="'.$part.':'.(join ':',@good_collaborators).'" />'.
2331: "\n";
2332: }
2333: if (scalar(@bad_collaborators) > 0) {
1.466 albertel 2334: $result.='<div class="LC_warning">';
1.464 albertel 2335: $result.=&mt('This student has submitted [quant,_1,invalid collaborator]: [_2]',scalar(@bad_collaborators),join(', ',@bad_collaborators));
2336: $result .= '</div>';
2337: }
2338: if (scalar(@bad_collaborators > $ncol)) {
1.466 albertel 2339: $result .= '<div class="LC_warning">';
1.464 albertel 2340: $result .= &mt('This student has submitted too many '.
2341: 'collaborators. Maximum is [_1].',$ncol);
2342: $result .= '</div>';
2343: }
2344: }
2345: return ($result,$fullname,\@col_fullnames);
2346: }
2347:
1.44 ng 2348: #--- Retrieve the last submission for all the parts
1.38 ng 2349: sub get_last_submission {
1.119 ng 2350: my ($returnhash)=@_;
1.46 ng 2351: my (@string,$timestamp);
1.119 ng 2352: if ($$returnhash{'version'}) {
1.46 ng 2353: my %lasthash=();
2354: my ($version);
1.119 ng 2355: for ($version=1;$version<=$$returnhash{'version'};$version++) {
1.397 albertel 2356: foreach my $key (sort(split(/\:/,
2357: $$returnhash{$version.':keys'}))) {
2358: $lasthash{$key}=$$returnhash{$version.':'.$key};
2359: $timestamp =
2360: scalar(localtime($$returnhash{$version.':timestamp'}));
1.46 ng 2361: }
2362: }
1.397 albertel 2363: foreach my $key (keys(%lasthash)) {
2364: next if ($key !~ /\.submission$/);
2365:
2366: my ($partid,$foo) = split(/submission$/,$key);
2367: my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
1.398 albertel 2368: '<span class="LC_warning">Draft Copy</span> ' : '';
1.397 albertel 2369: push(@string, join(':', $key, $draft.$lasthash{$key}));
1.41 ng 2370: }
2371: }
1.397 albertel 2372: if (!@string) {
2373: $string[0] =
1.398 albertel 2374: '<span class="LC_warning">Nothing submitted - no attempts.</span>';
1.397 albertel 2375: }
2376: return (\@string,\$timestamp);
1.38 ng 2377: }
1.35 ng 2378:
1.44 ng 2379: #--- High light keywords, with style choosen by user.
1.38 ng 2380: sub keywords_highlight {
1.44 ng 2381: my $string = shift;
1.257 albertel 2382: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2383: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2384: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2385: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.398 albertel 2386: foreach my $keyword (@keylist) {
2387: $string =~ s/\b\Q$keyword\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$keyword$styleoff<\/font>/gi;
1.41 ng 2388: }
2389: return $string;
1.38 ng 2390: }
1.36 ng 2391:
1.44 ng 2392: #--- Called from submission routine
1.38 ng 2393: sub processHandGrade {
1.41 ng 2394: my ($request) = shift;
1.324 albertel 2395: my $symb = &get_symb($request);
2396: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2397: my $button = $env{'form.gradeOpt'};
2398: my $ngrade = $env{'form.NCT'};
2399: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2400: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2401: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2402:
1.44 ng 2403: if ($button eq 'Save & Next') {
2404: my $ctr = 0;
2405: while ($ctr < $ngrade) {
1.257 albertel 2406: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324 albertel 2407: my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2408: if ($errorflag eq 'no_score') {
2409: $ctr++;
2410: next;
2411: }
1.104 albertel 2412: if ($errorflag eq 'not_allowed') {
1.398 albertel 2413: $request->print("<span class=\"LC_warning\">Not allowed to modify grades for $uname:$udom</span>");
1.104 albertel 2414: $ctr++;
2415: next;
2416: }
1.257 albertel 2417: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2418: my ($subject,$message,$msgstatus) = ('','','');
1.418 albertel 2419: my $restitle = &Apache::lonnet::gettitle($symb);
2420: my ($feedurl,$showsymb) =
2421: &get_feedurl_and_symb($symb,$uname,$udom);
2422: my $messagetail;
1.62 albertel 2423: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2424: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2425: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.386 raeburn 2426: $subject.=' ['.$restitle.']';
1.44 ng 2427: my (@msgnum) = split(/,/,$includemsg);
2428: foreach (@msgnum) {
1.257 albertel 2429: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2430: }
1.80 ng 2431: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2432: if ($env{'form.withgrades'.$ctr}) {
2433: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
1.386 raeburn 2434: $messagetail = " for <a href=\"".
1.418 albertel 2435: $feedurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.386 raeburn 2436: }
2437: $msgstatus =
2438: &Apache::lonmsg::user_normal_msg($uname,$udom,$subject,
2439: $message.$messagetail,
1.418 albertel 2440: undef,$feedurl,undef,
1.386 raeburn 2441: undef,undef,$showsymb,
2442: $restitle);
2443: $request->print('<br />'.&mt('Sending message to [_1]:[_2]',$uname,$udom).': '.
1.296 www 2444: $msgstatus);
1.44 ng 2445: }
1.257 albertel 2446: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2447: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2448: foreach my $collabstr (@collabstrs) {
2449: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2450: foreach my $collaborator (@collaborators) {
1.150 albertel 2451: my ($errorflag,$pts,$wgt) =
1.324 albertel 2452: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2453: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2454: if ($errorflag eq 'not_allowed') {
1.362 albertel 2455: $request->print("<span class=\"LC_error\">".&mt('Not allowed to modify grades for [_1]',"$collaborator:$udom")."</span>");
1.150 albertel 2456: next;
1.418 albertel 2457: } elsif ($message ne '') {
2458: my ($baseurl,$showsymb) =
2459: &get_feedurl_and_symb($symb,$collaborator,
2460: $udom);
2461: if ($env{'form.withgrades'.$ctr}) {
2462: $messagetail = " for <a href=\"".
1.386 raeburn 2463: $baseurl."?symb=$showsymb\">$env{'form.probTitle'}</a>";
1.150 albertel 2464: }
1.418 albertel 2465: $msgstatus =
2466: &Apache::lonmsg::user_normal_msg($collaborator,$udom,$subject,$message.$messagetail,undef,$baseurl,undef,undef,undef,$showsymb,$restitle);
1.104 albertel 2467: }
1.44 ng 2468: }
2469: }
2470: }
2471: $ctr++;
2472: }
2473: }
2474:
1.257 albertel 2475: if ($env{'form.handgrade'} eq 'yes') {
1.119 ng 2476: # Keywords sorted in alphabatical order
1.257 albertel 2477: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 2478: my %keyhash = ();
1.257 albertel 2479: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
2480: $env{'form.keywords'} =~ s/^\s+|\s+$//;
2481: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
2482: $env{'form.keywords'} = join(' ',@keywords);
2483: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
2484: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
2485: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
2486: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
2487: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 2488:
2489: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 2490: # New messages are saved in env for the next student.
1.119 ng 2491: # All messages are saved in nohist_handgrade.db
2492: my ($ctr,$idx) = (1,1);
1.257 albertel 2493: while ($ctr <= $env{'form.savemsgN'}) {
2494: if ($env{'form.savemsg'.$ctr} ne '') {
2495: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 2496: $idx++;
2497: }
2498: $ctr++;
1.41 ng 2499: }
1.119 ng 2500: $ctr = 0;
2501: while ($ctr < $ngrade) {
1.257 albertel 2502: if ($env{'form.newmsg'.$ctr} ne '') {
2503: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
2504: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 2505: $idx++;
2506: }
2507: $ctr++;
1.41 ng 2508: }
1.257 albertel 2509: $env{'form.savemsgN'} = --$idx;
2510: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 2511: my $putresult = &Apache::lonnet::put
1.301 albertel 2512: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 2513: }
1.44 ng 2514: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 2515: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
2516: if ($env{'form.refresh'} eq 'on') {
1.86 ng 2517: my ($ctr,$total) = (0,0);
2518: while ($ctr < $ngrade) {
1.257 albertel 2519: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 2520: $ctr++;
2521: }
1.257 albertel 2522: $env{'form.NTSTU'}=$ngrade;
1.86 ng 2523: $ctr = 0;
2524: while ($ctr < $total) {
1.257 albertel 2525: my $processUser = $env{'form.unamedom'.$ctr};
2526: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2527: $env{'form.fullname'} = $$fullname{$processUser};
1.86 ng 2528: &submission($request,$ctr,$total-1);
1.41 ng 2529: $ctr++;
2530: }
2531: return '';
2532: }
1.36 ng 2533:
1.121 ng 2534: # Go directly to grade student - from submission or link from chart page
1.120 ng 2535: if ($button eq 'Grade Student') {
1.324 albertel 2536: (undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
1.257 albertel 2537: my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
2538: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2539: $env{'form.fullname'} = $$fullname{$processUser};
1.120 ng 2540: &submission($request,0,0);
2541: return '';
2542: }
2543:
1.44 ng 2544: # Get the next/previous one or group of students
1.257 albertel 2545: my $firststu = $env{'form.unamedom0'};
2546: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 2547: my $ctr = 2;
1.41 ng 2548: while ($laststu eq '') {
1.257 albertel 2549: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 2550: $ctr++;
2551: $laststu = $firststu if ($ctr > $ngrade);
2552: }
1.44 ng 2553:
1.41 ng 2554: my (@parsedlist,@nextlist);
2555: my ($nextflg) = 0;
1.294 albertel 2556: foreach (sort
2557: {
2558: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2559: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2560: }
2561: return $a cmp $b;
2562: } (keys(%$fullname))) {
1.41 ng 2563: if ($nextflg == 1 && $button =~ /Next$/) {
2564: push @parsedlist,$_;
2565: }
2566: $nextflg = 1 if ($_ eq $laststu);
2567: if ($button eq 'Previous') {
2568: last if ($_ eq $firststu);
2569: push @parsedlist,$_;
2570: }
2571: }
2572: $ctr = 0;
2573: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.324 albertel 2574: my ($partlist) = &response_type($symb);
1.41 ng 2575: foreach my $student (@parsedlist) {
1.257 albertel 2576: my $submitonly=$env{'form.submitonly'};
1.41 ng 2577: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 2578:
2579: if ($submitonly eq 'queued') {
2580: my %queue_status =
2581: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
2582: $udom,$uname);
2583: next if (!defined($queue_status{'gradingqueue'}));
2584: }
2585:
1.156 albertel 2586: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 2587: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2588: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 2589: my $submitted = 0;
1.248 albertel 2590: my $ungraded = 0;
2591: my $incorrect = 0;
1.145 albertel 2592: foreach (keys(%status)) {
2593: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 2594: $ungraded = 1 if ($status{$_} =~ /^ungraded/);
2595: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1.145 albertel 2596: my ($foo,$partid,$foo1) = split(/\./,$_);
2597: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
2598: $submitted = 0;
2599: }
1.41 ng 2600: }
1.156 albertel 2601: next if (!$submitted && ($submitonly eq 'yes' ||
2602: $submitonly eq 'incorrect' ||
2603: $submitonly eq 'graded'));
1.248 albertel 2604: next if (!$ungraded && ($submitonly eq 'graded'));
2605: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 2606: }
2607: push @nextlist,$student if ($ctr < $ntstu);
1.129 ng 2608: last if ($ctr == $ntstu);
1.41 ng 2609: $ctr++;
2610: }
1.36 ng 2611:
1.41 ng 2612: $ctr = 0;
2613: my $total = scalar(@nextlist)-1;
1.39 ng 2614:
1.41 ng 2615: foreach (sort @nextlist) {
2616: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 2617: $env{'form.student'} = $uname;
2618: $env{'form.userdom'} = $udom;
2619: $env{'form.fullname'} = $$fullname{$_};
1.41 ng 2620: &submission($request,$ctr,$total);
2621: $ctr++;
2622: }
2623: if ($total < 0) {
1.485 albertel 2624: my $the_end = '<h3><span class="LC_info">'.&mt('LON-CAPA User Message').'</span></h3><br />'."\n";
2625: $the_end.=&mt('<b>Message: </b> No more students for this section or class.').'<br /><br />'."\n";
2626: $the_end.=&mt('Click on the button below to return to the grading menu.').'<br /><br />'."\n";
1.324 albertel 2627: $the_end.=&show_grading_menu_form($symb);
1.41 ng 2628: $request->print($the_end);
2629: }
2630: return '';
1.38 ng 2631: }
1.36 ng 2632:
1.44 ng 2633: #---- Save the score and award for each student, if changed
1.38 ng 2634: sub saveHandGrade {
1.324 albertel 2635: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 2636: my @version_parts;
1.104 albertel 2637: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 2638: $env{'request.course.id'});
1.104 albertel 2639: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 2640: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 2641: my @parts_graded;
1.77 ng 2642: my %newrecord = ();
2643: my ($pts,$wgt) = ('','');
1.269 raeburn 2644: my %aggregate = ();
2645: my $aggregateflag = 0;
1.301 albertel 2646: my @parts = split(/:/,$env{'form.partlist'.$newflg});
2647: foreach my $new_part (@parts) {
1.337 banghart 2648: #collaborator ($submi may vary for different parts
1.259 banghart 2649: if ($submitter && $new_part ne $part) { next; }
2650: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 2651: if ($dropMenu eq 'excused') {
1.259 banghart 2652: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
2653: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
2654: if (exists($record{'resource.'.$new_part.'.awarded'})) {
2655: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 2656: }
1.364 banghart 2657: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 2658: }
1.125 ng 2659: } elsif ($dropMenu eq 'reset status'
1.259 banghart 2660: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.197 albertel 2661: foreach my $key (keys (%record)) {
1.259 banghart 2662: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 2663: }
1.259 banghart 2664: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2665: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 2666: my $totaltries = $record{'resource.'.$part.'.tries'};
2667:
2668: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
2669: [$new_part]);
2670: my $aggtries =$totaltries;
1.269 raeburn 2671: if ($last_resets{$new_part}) {
1.270 albertel 2672: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
2673: $new_part);
1.269 raeburn 2674: }
1.270 albertel 2675:
2676: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 2677: if ($aggtries > 0) {
1.327 albertel 2678: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 2679: $aggregateflag = 1;
2680: }
1.125 ng 2681: } elsif ($dropMenu eq '') {
1.259 banghart 2682: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
2683: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
2684: $env{'form.RADVAL'.$newflg.'_'.$new_part});
2685: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 2686: next;
2687: }
1.259 banghart 2688: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
2689: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 2690: my $partial= $pts/$wgt;
1.259 banghart 2691: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 2692: #do not update score for part if not changed.
1.346 banghart 2693: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 2694: next;
1.251 banghart 2695: } else {
1.259 banghart 2696: push @parts_graded, $new_part;
1.153 albertel 2697: }
1.259 banghart 2698: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
2699: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 2700: }
1.259 banghart 2701: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 2702: if ($partial == 0) {
1.153 albertel 2703: if ($record{$reckey} ne 'incorrect_by_override') {
2704: $newrecord{$reckey} = 'incorrect_by_override';
2705: }
1.41 ng 2706: } else {
1.153 albertel 2707: if ($record{$reckey} ne 'correct_by_override') {
2708: $newrecord{$reckey} = 'correct_by_override';
2709: }
2710: }
2711: if ($submitter &&
1.259 banghart 2712: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
2713: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 2714: }
1.259 banghart 2715: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2716: "$env{'user.name'}:$env{'user.domain'}";
1.41 ng 2717: }
1.259 banghart 2718: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 2719: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
2720: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
2721: $dropMenu eq 'reset status')
2722: {
1.342 banghart 2723: push (@version_parts,$new_part);
1.259 banghart 2724: }
1.41 ng 2725: }
1.301 albertel 2726: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2727: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2728:
1.344 albertel 2729: if (%newrecord) {
2730: if (@version_parts) {
1.364 banghart 2731: my @changed_keys = &version_portfiles(\%record, \@parts_graded,
2732: $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 2733: @newrecord{@changed_keys} = @record{@changed_keys};
1.367 albertel 2734: foreach my $new_part (@version_parts) {
2735: &handback_files($request,$symb,$stuname,$domain,$newflg,
2736: $new_part,\%newrecord);
2737: }
1.259 banghart 2738: }
1.44 ng 2739: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 2740: $env{'request.course.id'},$domain,$stuname);
1.380 albertel 2741: &check_and_remove_from_queue(\@parts,\%record,\%newrecord,$symb,
2742: $cdom,$cnum,$domain,$stuname);
1.41 ng 2743: }
1.269 raeburn 2744: if ($aggregateflag) {
2745: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 2746: $cdom,$cnum);
1.269 raeburn 2747: }
1.301 albertel 2748: return ('',$pts,$wgt);
1.36 ng 2749: }
1.322 albertel 2750:
1.380 albertel 2751: sub check_and_remove_from_queue {
2752: my ($parts,$record,$newrecord,$symb,$cdom,$cnum,$domain,$stuname) = @_;
2753: my @ungraded_parts;
2754: foreach my $part (@{$parts}) {
2755: if ( $record->{ 'resource.'.$part.'.awarded'} eq ''
2756: && $record->{ 'resource.'.$part.'.solved' } ne 'excused'
2757: && $newrecord->{'resource.'.$part.'.awarded'} eq ''
2758: && $newrecord->{'resource.'.$part.'.solved' } ne 'excused'
2759: ) {
2760: push(@ungraded_parts, $part);
2761: }
2762: }
2763: if ( !@ungraded_parts ) {
2764: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
2765: $cnum,$domain,$stuname);
2766: }
2767: }
2768:
1.337 banghart 2769: sub handback_files {
2770: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.517 raeburn 2771: my $portfolio_root = '/userfiles/portfolio';
1.359 www 2772: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.375 albertel 2773:
2774: my @part_response_id = &flatten_responseType($responseType);
2775: foreach my $part_response_id (@part_response_id) {
2776: my ($part_id,$resp_id) = @{ $part_response_id };
2777: my $part_resp = join('_',@{ $part_response_id });
1.337 banghart 2778: if (($env{'form.'.$newflg.'_'.$part_resp.'_returndoc1'}) && ($new_part == $part_id)) {
2779: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
2780: my $file_counter = 1;
1.367 albertel 2781: my $file_msg;
1.337 banghart 2782: while ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter}) {
2783: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'.filename'};
1.338 banghart 2784: my ($directory,$answer_file) =
2785: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter} =~ /^(.*?)([^\/]*)$/);
2786: my ($answer_name,$answer_ver,$answer_ext) =
2787: &file_name_version_ext($answer_file);
1.355 banghart 2788: my ($portfolio_path) = ($directory =~ /^.+$stuname\/portfolio(.*)/);
1.517 raeburn 2789: my $getpropath = 1;
2790: my @dir_list = &Apache::lonnet::dirlist($portfolio_root.$portfolio_path,$domain,$stuname,$getpropath);
1.338 banghart 2791: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.355 banghart 2792: # fix file name
2793: my ($save_file_name) = (($directory.$answer_name.".$version.".$answer_ext) =~ /^.+\/${stuname}\/(.*)/);
2794: my $result=&Apache::lonnet::finishuserfileupload($stuname,$domain,
2795: $newflg.'_'.$part_resp.'_returndoc'.$file_counter,
2796: $save_file_name);
1.337 banghart 2797: if ($result !~ m|^/uploaded/|) {
1.401 albertel 2798: $request->print('<span class="LC_error">An error occurred ('.$result.
1.398 albertel 2799: ') while trying to upload '.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'</span><br />');
1.356 banghart 2800: } else {
1.360 banghart 2801: # mark the file as read only
2802: my @files = ($save_file_name);
1.372 albertel 2803: my @what = ($symb,$env{'request.course.id'},'handback');
1.360 banghart 2804: &Apache::lonnet::mark_as_readonly($domain,$stuname,\@files,\@what);
1.367 albertel 2805: if (exists($$newrecord{"resource.$new_part.$resp_id.handback"})) {
2806: $$newrecord{"resource.$new_part.$resp_id.handback"}.=',';
2807: }
2808: $$newrecord{"resource.$new_part.$resp_id.handback"} .= $save_file_name;
2809: $file_msg.= "\n".'<br /><span class="LC_filename"><a href="/uploaded/'."$domain/$stuname/".$save_file_name.'">'.$save_file_name."</a></span><br />";
2810:
1.337 banghart 2811: }
2812: $request->print("<br />".$fname." will be the uploaded file name");
1.354 albertel 2813: $request->print(" ".$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter});
1.337 banghart 2814: $file_counter++;
2815: }
1.367 albertel 2816: my $subject = "File Handed Back by Instructor ";
2817: my $message = "A file has been returned that was originally submitted in reponse to: <br />";
2818: $message .= "<strong>".&Apache::lonnet::gettitle($symb)."</strong><br />";
2819: $message .= ' The returned file(s) are named: '. $file_msg;
2820: $message .= " and can be found in your portfolio space.";
1.418 albertel 2821: my ($feedurl,$showsymb) =
2822: &get_feedurl_and_symb($symb,$domain,$stuname);
1.386 raeburn 2823: my $restitle = &Apache::lonnet::gettitle($symb);
2824: my $msgstatus =
2825: &Apache::lonmsg::user_normal_msg($stuname,$domain,$subject.
2826: ' (File Returned) ['.$restitle.']',$message,undef,
1.418 albertel 2827: $feedurl,undef,undef,undef,$showsymb,$restitle);
1.337 banghart 2828: }
2829: }
1.338 banghart 2830: return;
1.337 banghart 2831: }
2832:
1.418 albertel 2833: sub get_feedurl_and_symb {
2834: my ($symb,$uname,$udom) = @_;
2835: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
2836: $url = &Apache::lonnet::clutter($url);
2837: my $encrypturl=&Apache::lonnet::EXT('resource.0.encrypturl',
2838: $symb,$udom,$uname);
2839: if ($encrypturl =~ /^yes$/i) {
2840: &Apache::lonenc::encrypted(\$url,1);
2841: &Apache::lonenc::encrypted(\$symb,1);
2842: }
2843: return ($url,$symb);
2844: }
2845:
1.313 banghart 2846: sub get_submitted_files {
2847: my ($udom,$uname,$partid,$respid,$record) = @_;
2848: my @files;
2849: if ($$record{"resource.$partid.$respid.portfiles"}) {
2850: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
2851: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
2852: push(@files,$file_url.$file);
2853: }
2854: }
2855: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
2856: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
2857: }
2858: return (\@files);
2859: }
1.322 albertel 2860:
1.269 raeburn 2861: # ----------- Provides number of tries since last reset.
2862: sub get_num_tries {
2863: my ($record,$last_reset,$part) = @_;
2864: my $timestamp = '';
2865: my $num_tries = 0;
2866: if ($$record{'version'}) {
2867: for (my $version=$$record{'version'};$version>=1;$version--) {
2868: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
2869: $timestamp = $$record{$version.':timestamp'};
2870: if ($timestamp > $last_reset) {
2871: $num_tries ++;
2872: } else {
2873: last;
2874: }
2875: }
2876: }
2877: }
2878: return $num_tries;
2879: }
2880:
2881: # ----------- Determine decrements required in aggregate totals
2882: sub decrement_aggs {
2883: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
2884: my %decrement = (
2885: attempts => 0,
2886: users => 0,
2887: correct => 0
2888: );
2889: $decrement{'attempts'} = $aggtries;
2890: if ($solvedstatus =~ /^correct/) {
2891: $decrement{'correct'} = 1;
2892: }
2893: if ($aggtries == $totaltries) {
2894: $decrement{'users'} = 1;
2895: }
2896: foreach my $type (keys (%decrement)) {
2897: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
2898: }
2899: return;
2900: }
2901:
2902: # ----------- Determine timestamps for last reset of aggregate totals for parts
2903: sub get_last_resets {
1.270 albertel 2904: my ($symb,$courseid,$partids) =@_;
2905: my %last_resets;
1.269 raeburn 2906: my $cdom = $env{'course.'.$courseid.'.domain'};
2907: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 2908: my @keys;
2909: foreach my $part (@{$partids}) {
2910: push(@keys,"$symb\0$part\0resettime");
2911: }
2912: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
2913: $cdom,$cname);
2914: foreach my $part (@{$partids}) {
2915: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 2916: }
1.270 albertel 2917: return %last_resets;
1.269 raeburn 2918: }
2919:
1.251 banghart 2920: # ----------- Handles creating versions for portfolio files as answers
2921: sub version_portfiles {
1.343 banghart 2922: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 2923: my $version_parts = join('|',@$v_flag);
1.343 banghart 2924: my @returned_keys;
1.255 banghart 2925: my $parts = join('|', @$parts_graded);
1.517 raeburn 2926: my $portfolio_root = '/userfiles/portfolio';
1.277 albertel 2927: foreach my $key (keys(%$record)) {
1.259 banghart 2928: my $new_portfiles;
1.263 banghart 2929: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 2930: my @versioned_portfiles;
1.367 albertel 2931: my @portfiles = split(/\s*,\s*/,$$record{$key});
1.252 banghart 2932: foreach my $file (@portfiles) {
1.306 banghart 2933: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 2934: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
2935: my ($answer_name,$answer_ver,$answer_ext) =
2936: &file_name_version_ext($answer_file);
1.517 raeburn 2937: my $getpropath = 1;
2938: my @dir_list = &Apache::lonnet::dirlist($portfolio_root.$directory,$domain,$stu_name,$getpropath);
1.342 banghart 2939: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.306 banghart 2940: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
2941: if ($new_answer ne 'problem getting file') {
1.342 banghart 2942: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 2943: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
1.367 albertel 2944: [$directory.$new_answer],
1.306 banghart 2945: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 2946: }
1.252 banghart 2947: }
1.343 banghart 2948: $$record{$key} = join(',',@versioned_portfiles);
2949: push(@returned_keys,$key);
1.251 banghart 2950: }
2951: }
1.343 banghart 2952: return (@returned_keys);
1.305 banghart 2953: }
2954:
1.307 banghart 2955: sub get_next_version {
1.341 banghart 2956: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 2957: my $version;
2958: foreach my $row (@$dir_list) {
2959: my ($file) = split(/\&/,$row,2);
2960: my ($file_name,$file_version,$file_ext) =
2961: &file_name_version_ext($file);
2962: if (($file_name eq $answer_name) &&
2963: ($file_ext eq $answer_ext)) {
2964: # gets here if filename and extension match, regardless of version
2965: if ($file_version ne '') {
2966: # a versioned file is found so save it for later
2967: if ($file_version > $version) {
2968: $version = $file_version;
2969: }
2970: }
2971: }
2972: }
2973: $version ++;
2974: return($version);
2975: }
2976:
1.305 banghart 2977: sub version_selected_portfile {
1.306 banghart 2978: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
2979: my ($answer_name,$answer_ver,$answer_ext) =
2980: &file_name_version_ext($file_name);
2981: my $new_answer;
2982: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
2983: if($env{'form.copy'} eq '-1') {
2984: $new_answer = 'problem getting file';
2985: } else {
2986: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
2987: my $copy_result = &Apache::lonnet::finishuserfileupload(
2988: $stu_name,$domain,'copy',
2989: '/portfolio'.$directory.$new_answer);
2990: }
2991: return ($new_answer);
1.251 banghart 2992: }
2993:
1.304 albertel 2994: sub file_name_version_ext {
2995: my ($file)=@_;
2996: my @file_parts = split(/\./, $file);
2997: my ($name,$version,$ext);
2998: if (@file_parts > 1) {
2999: $ext=pop(@file_parts);
3000: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
3001: $version=pop(@file_parts);
3002: }
3003: $name=join('.',@file_parts);
3004: } else {
3005: $name=join('.',@file_parts);
3006: }
3007: return($name,$version,$ext);
3008: }
3009:
1.44 ng 3010: #--------------------------------------------------------------------------------------
3011: #
3012: #-------------------------- Next few routines handles grading by section or whole class
3013: #
3014: #--- Javascript to handle grading by section or whole class
1.42 ng 3015: sub viewgrades_js {
3016: my ($request) = shift;
3017:
1.41 ng 3018: $request->print(<<VIEWJAVASCRIPT);
3019: <script type="text/javascript" language="javascript">
1.45 ng 3020: function writePoint(partid,weight,point) {
1.125 ng 3021: var radioButton = document.classgrade["RADVAL_"+partid];
3022: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 3023: if (point == "textval") {
1.125 ng 3024: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 3025: if (isNaN(point) || parseFloat(point) < 0) {
3026: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.42 ng 3027: var resetbox = false;
3028: for (var i=0; i<radioButton.length; i++) {
3029: if (radioButton[i].checked) {
3030: textbox.value = i;
3031: resetbox = true;
3032: }
3033: }
3034: if (!resetbox) {
3035: textbox.value = "";
3036: }
3037: return;
3038: }
1.109 matthew 3039: if (parseFloat(point) > parseFloat(weight)) {
3040: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3041: ") greater than the weight for the part. Accept?");
3042: if (resp == false) {
3043: textbox.value = "";
3044: return;
3045: }
3046: }
1.42 ng 3047: for (var i=0; i<radioButton.length; i++) {
3048: radioButton[i].checked=false;
1.109 matthew 3049: if (parseFloat(point) == i) {
1.42 ng 3050: radioButton[i].checked=true;
3051: }
3052: }
1.41 ng 3053:
1.42 ng 3054: } else {
1.125 ng 3055: textbox.value = parseFloat(point);
1.42 ng 3056: }
1.41 ng 3057: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3058: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3059: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3060: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3061: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3062: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3063: if (saveval != "correct") {
3064: scorename.value = point;
1.43 ng 3065: if (selname[0].selected != true) {
3066: selname[0].selected = true;
3067: }
1.42 ng 3068: }
3069: }
1.125 ng 3070: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 3071: }
3072:
3073: function writeRadText(partid,weight) {
1.125 ng 3074: var selval = document.classgrade["SELVAL_"+partid];
3075: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 3076: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 3077: var textbox = document.classgrade["TEXTVAL_"+partid];
3078: if (selval[1].selected || selval[2].selected) {
1.42 ng 3079: for (var i=0; i<radioButton.length; i++) {
3080: radioButton[i].checked=false;
3081:
3082: }
3083: textbox.value = "";
3084:
3085: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3086: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3087: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3088: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3089: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3090: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3091: if ((saveval != "correct") || override) {
1.42 ng 3092: scorename.value = "";
1.125 ng 3093: if (selval[1].selected) {
3094: selname[1].selected = true;
3095: } else {
3096: selname[2].selected = true;
3097: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
3098: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
3099: }
1.42 ng 3100: }
3101: }
1.43 ng 3102: } else {
3103: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3104: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3105: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3106: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3107: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3108: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 3109: if ((saveval != "correct") || override) {
1.125 ng 3110: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 3111: selname[0].selected = true;
3112: }
3113: }
3114: }
1.42 ng 3115: }
3116:
3117: function changeSelect(partid,user) {
1.125 ng 3118: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3119: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 3120: var point = textbox.value;
1.125 ng 3121: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 3122:
1.109 matthew 3123: if (isNaN(point) || parseFloat(point) < 0) {
3124: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.44 ng 3125: textbox.value = "";
3126: return;
3127: }
1.109 matthew 3128: if (parseFloat(point) > parseFloat(weight)) {
3129: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 3130: ") greater than the weight of the part. Accept?");
3131: if (resp == false) {
3132: textbox.value = "";
3133: return;
3134: }
3135: }
1.42 ng 3136: selval[0].selected = true;
3137: }
3138:
3139: function changeOneScore(partid,user) {
1.125 ng 3140: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
3141: if (selval[1].selected || selval[2].selected) {
3142: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
3143: if (selval[2].selected) {
3144: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
3145: }
1.269 raeburn 3146: }
1.42 ng 3147: }
3148:
3149: function resetEntry(numpart) {
3150: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 3151: var partid = document.classgrade["partid_"+ctpart].value;
3152: var radioButton = document.classgrade["RADVAL_"+partid];
3153: var textbox = document.classgrade["TEXTVAL_"+partid];
3154: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 3155: for (var i=0; i<radioButton.length; i++) {
3156: radioButton[i].checked=false;
3157:
3158: }
3159: textbox.value = "";
3160: selval[0].selected = true;
3161:
3162: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 3163: var user = document.classgrade["ctr"+i].value;
1.289 albertel 3164: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 3165: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
3166: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
3167: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
3168: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
3169: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
3170: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 3171: if (saveselval == "excused") {
1.43 ng 3172: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 3173: } else {
1.43 ng 3174: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 3175: }
3176: }
1.41 ng 3177: }
1.42 ng 3178: }
3179:
1.41 ng 3180: </script>
3181: VIEWJAVASCRIPT
1.42 ng 3182: }
3183:
1.44 ng 3184: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 3185: sub viewgrades {
3186: my ($request) = shift;
3187: &viewgrades_js($request);
1.41 ng 3188:
1.324 albertel 3189: my ($symb) = &get_symb($request);
1.168 albertel 3190: #need to make sure we have the correct data for later EXT calls,
3191: #thus invalidate the cache
3192: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3193: $env{'course.'.$env{'request.course.id'}.'.num'},
3194: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3195: &Apache::lonnet::clear_EXT_cache_status();
3196:
1.398 albertel 3197: my $result='<h3><span class="LC_info">'.&mt('Manual Grading').'</span></h3>';
1.485 albertel 3198: $result.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
1.41 ng 3199:
3200: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 3201: $result.=&jscriptNform($symb);
1.41 ng 3202:
1.44 ng 3203: #beginning of class grading form
1.442 banghart 3204: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
1.41 ng 3205: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.418 albertel 3206: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.38 ng 3207: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.432 banghart 3208: &build_section_inputs().
1.257 albertel 3209: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.442 banghart 3210: '<input type="hidden" name="Status" value="'.$env{'stu_status'}.'" />'."\n".
1.257 albertel 3211: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72 ng 3212:
1.126 ng 3213: my $sectionClass;
1.430 banghart 3214: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.257 albertel 3215: if ($env{'form.section'} eq 'all') {
1.485 albertel 3216: $sectionClass='Class';
1.257 albertel 3217: } elsif ($env{'form.section'} eq 'none') {
1.485 albertel 3218: $sectionClass='Students in no Section';
1.52 albertel 3219: } else {
1.485 albertel 3220: $sectionClass='Students in Section(s) [_1]';
1.52 albertel 3221: }
1.485 albertel 3222: $result.=
3223: '<h3>'.
3224: &mt("Assign Common Grade To $sectionClass",$section_display).'</h3>';
1.474 albertel 3225: $result.= &Apache::loncommon::start_data_table();
1.44 ng 3226: #radio buttons/text box for assigning points for a section or class.
3227: #handles different parts of a problem
1.375 albertel 3228: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.42 ng 3229: my %weight = ();
3230: my $ctsparts = 0;
1.45 ng 3231: my %seen = ();
1.375 albertel 3232: my @part_response_id = &flatten_responseType($responseType);
3233: foreach my $part_response_id (@part_response_id) {
3234: my ($partid,$respid) = @{ $part_response_id };
3235: my $part_resp = join('_',@{ $part_response_id });
1.45 ng 3236: next if $seen{$partid};
3237: $seen{$partid}++;
1.375 albertel 3238: my $handgrade=$$handgrade{$part_resp};
1.42 ng 3239: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
3240: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
3241:
1.324 albertel 3242: my $display_part=&get_display_part($partid,$symb);
1.485 albertel 3243: my $radio.='<table border="0"><tr>';
1.41 ng 3244: my $ctr = 0;
1.42 ng 3245: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.485 albertel 3246: $radio.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 3247: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 3248: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 3249: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
3250: $ctr++;
3251: }
1.485 albertel 3252: $radio.='</tr></table>';
3253: my $line = '<input type="text" name="TEXTVAL_'.
1.54 albertel 3254: $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
3255: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.42 ng 3256: $weight{$partid}.' (problem weight)</td>'."\n";
1.485 albertel 3257: $line.= '<td><select name="SELVAL_'.$partid.'"'.
1.54 albertel 3258: 'onChange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 3259: $weight{$partid}.')"> '.
1.401 albertel 3260: '<option selected="selected"> </option>'.
1.485 albertel 3261: '<option value="excused">'.&mt('excused').'</option>'.
3262: '<option value="reset status">'.&mt('reset status').'</option>'.
3263: '</select></td>'.
3264: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" />'.&mt('Override "Correct"').'</label>';
3265: $line.='<input type="hidden" name="partid_'.
3266: $ctsparts.'" value="'.$partid.'" />'."\n";
3267: $line.='<input type="hidden" name="weight_'.
3268: $partid.'" value="'.$weight{$partid}.'" />'."\n";
3269:
3270: $result.=
3271: &Apache::loncommon::start_data_table_row()."\n".
3272: &mt('<td><b>Part:</b></td><td>[_1]</td><td><b>Points:</b></td><td>[_2]</td><td>or</td><td>[_3]</td>',$display_part,$radio,$line).
3273: &Apache::loncommon::end_data_table_row()."\n";
1.42 ng 3274: $ctsparts++;
1.41 ng 3275: }
1.474 albertel 3276: $result.=&Apache::loncommon::end_data_table()."\n".
1.52 albertel 3277: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.485 albertel 3278: $result.='<input type="button" value="'.&mt('Revert to Default').'" '.
1.474 albertel 3279: 'onClick="javascript:resetEntry('.$ctsparts.');" />';
1.41 ng 3280:
1.44 ng 3281: #table listing all the students in a section/class
3282: #header of table
1.485 albertel 3283: $result.= '<h3>'.&mt('Assign Grade to Specific Students in '.$sectionClass,
3284: $section_display).'</h3>';
1.474 albertel 3285: $result.= &Apache::loncommon::start_data_table().
3286: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 3287: '<th>'.&mt('No.').'</th>'.
1.474 albertel 3288: '<th>'.&nameUserString('header')."</th>\n";
1.324 albertel 3289: my (@parts) = sort(&getpartlist($symb));
3290: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 3291: my @partids = ();
1.41 ng 3292: foreach my $part (@parts) {
3293: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.126 ng 3294: $display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
1.41 ng 3295: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 3296: my ($partid) = &split_part_type($part);
1.269 raeburn 3297: push(@partids, $partid);
1.324 albertel 3298: my $display_part=&get_display_part($partid,$symb);
1.41 ng 3299: if ($display =~ /^Partial Credit Factor/) {
1.485 albertel 3300: $result.='<th>'.
3301: &mt('Score Part: [_1]<br /> (weight = [_2])',
3302: $display_part,$weight{$partid}).'</th>'."\n";
1.41 ng 3303: next;
1.485 albertel 3304:
1.207 albertel 3305: } else {
1.485 albertel 3306: if ($display =~ /Problem Status/) {
3307: my $grade_status_mt = &mt('Grade Status');
3308: $display =~ s{Problem Status}{$grade_status_mt<br />};
3309: }
3310: my $part_mt = &mt('Part:');
3311: $display =~s{\[Part: \Q$partid\E\]}{$part_mt $display_part};
1.41 ng 3312: }
1.485 albertel 3313:
1.474 albertel 3314: $result.='<th>'.$display.'</th>'."\n";
1.41 ng 3315: }
1.474 albertel 3316: $result.=&Apache::loncommon::end_data_table_header_row();
1.44 ng 3317:
1.270 albertel 3318: my %last_resets =
3319: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 3320:
1.41 ng 3321: #get info for each student
1.44 ng 3322: #list all the students - with points and grade status
1.257 albertel 3323: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41 ng 3324: my $ctr = 0;
1.294 albertel 3325: foreach (sort
3326: {
3327: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3328: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3329: }
3330: return $a cmp $b;
3331: } (keys(%$fullname))) {
1.126 ng 3332: $ctr++;
1.324 albertel 3333: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269 raeburn 3334: $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41 ng 3335: }
1.474 albertel 3336: $result.=&Apache::loncommon::end_data_table();
1.41 ng 3337: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.485 albertel 3338: $result.='<input type="button" value="'.&mt('Save').'" '.
1.417 albertel 3339: 'onClick="javascript:submit();" target="_self" /></form>'."\n";
1.96 albertel 3340: if (scalar(%$fullname) eq 0) {
3341: my $colspan=3+scalar(@parts);
1.433 banghart 3342: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.442 banghart 3343: my $stu_status = join(' or ',&Apache::loncommon::get_env_multiple('form.Status'));
1.433 banghart 3344: $result='<span class="LC_warning">'.
1.485 albertel 3345: &mt('There are no students in section(s) [_1] with enrollment status [_2] to modify or grade.',
1.442 banghart 3346: $section_display, $stu_status).
1.433 banghart 3347: '</span>';
1.96 albertel 3348: }
1.324 albertel 3349: $result.=&show_grading_menu_form($symb);
1.41 ng 3350: return $result;
3351: }
3352:
1.44 ng 3353: #--- call by previous routine to display each student
1.41 ng 3354: sub viewstudentgrade {
1.324 albertel 3355: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 3356: my ($uname,$udom) = split(/:/,$student);
3357: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269 raeburn 3358: my %aggregates = ();
1.474 albertel 3359: my $result=&Apache::loncommon::start_data_table_row().'<td align="right">'.
1.233 albertel 3360: '<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
3361: "\n".$ctr.' </td><td> '.
1.44 ng 3362: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.417 albertel 3363: '\');" target="_self">'.$fullname.'</a> '.
1.398 albertel 3364: '<span class="LC_internal_info">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</span></td>'."\n";
1.281 albertel 3365: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 3366: foreach my $apart (@$parts) {
3367: my ($part,$type) = &split_part_type($apart);
1.41 ng 3368: my $score=$record{"resource.$part.$type"};
1.276 albertel 3369: $result.='<td align="center">';
1.269 raeburn 3370: my ($aggtries,$totaltries);
3371: unless (exists($aggregates{$part})) {
1.270 albertel 3372: $totaltries = $record{'resource.'.$part.'.tries'};
3373:
3374: $aggtries = $totaltries;
1.269 raeburn 3375: if ($$last_resets{$part}) {
1.270 albertel 3376: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
3377: $part);
3378: }
1.269 raeburn 3379: $result.='<input type="hidden" name="'.
3380: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
3381: $result.='<input type="hidden" name="'.
3382: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
3383: $aggregates{$part} = 1;
3384: }
1.41 ng 3385: if ($type eq 'awarded') {
1.320 albertel 3386: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 3387: $result.='<input type="hidden" name="'.
1.89 albertel 3388: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 3389: $result.='<input type="text" name="'.
1.89 albertel 3390: 'GD_'.$student.'_'.$part.'_awarded" '.
3391: 'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 3392: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 3393: } elsif ($type eq 'solved') {
3394: my ($status,$foo)=split(/_/,$score,2);
3395: $status = 'nothing' if ($status eq '');
1.89 albertel 3396: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 3397: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 3398: $result.=' <select name="'.
1.89 albertel 3399: 'GD_'.$student.'_'.$part.'_solved" '.
3400: 'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.485 albertel 3401: $result.= (($status eq 'excused') ? '<option> </option><option selected="selected" value="excused">'.&mt('excused').'</option>'
3402: : '<option selected="selected"> </option><option value="excused">'.&mt('excused').'</option>')."\n";
3403: $result.='<option value="reset status">'.&mt('reset status').'</option>';
1.126 ng 3404: $result.="</select> </td>\n";
1.122 ng 3405: } else {
3406: $result.='<input type="hidden" name="'.
3407: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
3408: "\n";
1.233 albertel 3409: $result.='<input type="text" name="'.
1.122 ng 3410: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
3411: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 3412: }
3413: }
1.474 albertel 3414: $result.=&Apache::loncommon::end_data_table_row();
1.41 ng 3415: return $result;
1.38 ng 3416: }
3417:
1.44 ng 3418: #--- change scores for all the students in a section/class
3419: # record does not get update if unchanged
1.38 ng 3420: sub editgrades {
1.41 ng 3421: my ($request) = @_;
3422:
1.324 albertel 3423: my $symb=&get_symb($request);
1.433 banghart 3424: my $section_display = join (", ",&Apache::loncommon::get_env_multiple('form.section'));
1.477 albertel 3425: my $title='<h2>'.&mt('Current Grade Status').'</h2>';
3426: $title.='<h4>'.&mt('<b>Current Resource: </b>[_1]',$env{'form.probTitle'}).'</h4>'."\n";
1.433 banghart 3427: $title.='<h4>'.&mt('<b>Section: </b>[_1]',$section_display).'</h4>'."\n";
1.126 ng 3428:
1.477 albertel 3429: my $result= &Apache::loncommon::start_data_table().
3430: &Apache::loncommon::start_data_table_header_row().
3431: '<th rowspan="2" valign="middle">'.&mt('No.').'</th>'.
3432: '<th rowspan="2" valign="middle">'.&nameUserString('header')."</th>\n";
1.43 ng 3433: my %scoreptr = (
3434: 'correct' =>'correct_by_override',
3435: 'incorrect'=>'incorrect_by_override',
3436: 'excused' =>'excused',
3437: 'ungraded' =>'ungraded_attempted',
3438: 'nothing' => '',
3439: );
1.257 albertel 3440: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 3441:
1.44 ng 3442: my (@partid);
3443: my %weight = ();
1.54 albertel 3444: my %columns = ();
1.44 ng 3445: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 3446:
1.324 albertel 3447: my (@parts) = sort(&getpartlist($symb));
1.54 albertel 3448: my $header;
1.257 albertel 3449: while ($ctr < $env{'form.totalparts'}) {
3450: my $partid = $env{'form.partid_'.$ctr};
1.44 ng 3451: push @partid,$partid;
1.257 albertel 3452: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 3453: $ctr++;
1.54 albertel 3454: }
1.324 albertel 3455: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54 albertel 3456: foreach my $partid (@partid) {
1.478 albertel 3457: $header .= '<th align="center">'.&mt('Old Score').'</th>'.
3458: '<th align="center">'.&mt('New Score').'</th>';
1.54 albertel 3459: $columns{$partid}=2;
3460: foreach my $stores (@parts) {
3461: my ($part,$type) = &split_part_type($stores);
3462: if ($part !~ m/^\Q$partid\E/) { next;}
3463: if ($type eq 'awarded' || $type eq 'solved') { next; }
3464: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
3465: $display =~ s/\[Part: (\w)+\]//;
1.125 ng 3466: $display =~ s/Number of Attempts/Tries/;
1.478 albertel 3467: $header .= '<th align="center">'.&mt('Old '.$display).'</th>'.
3468: '<th align="center">'.&mt('New '.$display).'</th>';
1.54 albertel 3469: $columns{$partid}+=2;
3470: }
3471: }
3472: foreach my $partid (@partid) {
1.324 albertel 3473: my $display_part=&get_display_part($partid,$symb);
1.478 albertel 3474: $result .= '<th colspan="'.$columns{$partid}.'" align="center">'.
3475: &mt('Part: [_1] (Weight = [_2])',$display_part,$weight{$partid}).
3476: '</th>';
1.54 albertel 3477:
1.44 ng 3478: }
1.477 albertel 3479: $result .= &Apache::loncommon::end_data_table_header_row().
3480: &Apache::loncommon::start_data_table_header_row().
3481: $header.
3482: &Apache::loncommon::end_data_table_header_row();
3483: my @noupdate;
1.126 ng 3484: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 3485: for ($i=0; $i<$env{'form.total'}; $i++) {
1.93 albertel 3486: my $line;
1.257 albertel 3487: my $user = $env{'form.ctr'.$i};
1.281 albertel 3488: my ($uname,$udom)=split(/:/,$user);
1.44 ng 3489: my %newrecord;
3490: my $updateflag = 0;
1.281 albertel 3491: $line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108 albertel 3492: my $usec=$classlist->{"$uname:$udom"}[5];
1.105 albertel 3493: if (!&canmodify($usec)) {
1.126 ng 3494: my $numcols=scalar(@partid)*4+2;
1.477 albertel 3495: push(@noupdate,
1.478 albertel 3496: $line."<td colspan=\"$numcols\"><span class=\"LC_warning\">".
3497: &mt('Not allowed to modify student')."</span></td></tr>");
1.105 albertel 3498: next;
3499: }
1.269 raeburn 3500: my %aggregate = ();
3501: my $aggregateflag = 0;
1.281 albertel 3502: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 3503: foreach (@partid) {
1.257 albertel 3504: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 3505: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
3506: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 3507: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
3508: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 3509: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
3510: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 3511: my $score;
3512: if ($partial eq '') {
1.257 albertel 3513: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 3514: } elsif ($partial > 0) {
3515: $score = 'correct_by_override';
3516: } elsif ($partial == 0) {
3517: $score = 'incorrect_by_override';
3518: }
1.257 albertel 3519: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 3520: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
3521:
1.292 albertel 3522: $newrecord{'resource.'.$_.'.regrader'}=
3523: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 3524: if ($dropMenu eq 'reset status' &&
3525: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 3526: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 3527: $newrecord{'resource.'.$_.'.solved'} = '';
3528: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 3529: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 3530: $updateflag = 1;
1.269 raeburn 3531: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
3532: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
3533: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
3534: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
3535: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
3536: $aggregateflag = 1;
3537: }
1.139 albertel 3538: } elsif (!($old_part eq $partial && $old_score eq $score)) {
3539: $updateflag = 1;
3540: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
3541: $newrecord{'resource.'.$_.'.solved'} = $score;
3542: $rec_update++;
1.125 ng 3543: }
3544:
1.93 albertel 3545: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 3546: '<td align="center">'.$awarded.
3547: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 3548:
1.54 albertel 3549:
3550: my $partid=$_;
3551: foreach my $stores (@parts) {
3552: my ($part,$type) = &split_part_type($stores);
3553: if ($part !~ m/^\Q$partid\E/) { next;}
3554: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 3555: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
3556: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 3557: if ($awarded ne '' && $awarded ne $old_aw) {
3558: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 3559: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 3560: $updateflag=1;
3561: }
1.93 albertel 3562: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 3563: '<td align="center">'.$awarded.' </td>';
3564: }
1.44 ng 3565: }
1.477 albertel 3566: $line.="\n";
1.301 albertel 3567:
3568: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3569: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3570:
1.44 ng 3571: if ($updateflag) {
3572: $count++;
1.257 albertel 3573: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 3574: $udom,$uname);
1.301 albertel 3575:
3576: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
3577: $cnum,$udom,$uname)) {
3578: # need to figure out if should be in queue.
3579: my %record =
3580: &Apache::lonnet::restore($symb,$env{'request.course.id'},
3581: $udom,$uname);
3582: my $all_graded = 1;
3583: my $none_graded = 1;
3584: foreach my $part (@parts) {
3585: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
3586: $all_graded = 0;
3587: } else {
3588: $none_graded = 0;
3589: }
3590: }
3591:
3592: if ($all_graded || $none_graded) {
3593: &Apache::bridgetask::remove_from_queue('gradingqueue',
3594: $symb,$cdom,$cnum,
3595: $udom,$uname);
3596: }
3597: }
3598:
1.477 albertel 3599: $result.=&Apache::loncommon::start_data_table_row().
3600: '<td align="right"> '.$updateCtr.' </td>'.$line.
3601: &Apache::loncommon::end_data_table_row();
1.126 ng 3602: $updateCtr++;
1.93 albertel 3603: } else {
1.477 albertel 3604: push(@noupdate,
3605: '<td align="right"> '.$noupdateCtr.' </td>'.$line);
1.126 ng 3606: $noupdateCtr++;
1.44 ng 3607: }
1.269 raeburn 3608: if ($aggregateflag) {
3609: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3610: $cdom,$cnum);
1.269 raeburn 3611: }
1.93 albertel 3612: }
1.477 albertel 3613: if (@noupdate) {
1.126 ng 3614: # my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
3615: my $numcols=scalar(@partid)*4+2;
1.477 albertel 3616: $result .= &Apache::loncommon::start_data_table_row('LC_empty_row').
1.478 albertel 3617: '<td align="center" colspan="'.$numcols.'">'.
3618: &mt('No Changes Occurred For the Students Below').
3619: '</td>'.
1.477 albertel 3620: &Apache::loncommon::end_data_table_row();
3621: foreach my $line (@noupdate) {
3622: $result.=
3623: &Apache::loncommon::start_data_table_row().
3624: $line.
3625: &Apache::loncommon::end_data_table_row();
3626: }
1.44 ng 3627: }
1.477 albertel 3628: $result .= &Apache::loncommon::end_data_table().
3629: &show_grading_menu_form($symb);
1.478 albertel 3630: my $msg = '<p><b>'.
3631: &mt('Number of records updated = [_1] for [quant,_2,student].',
3632: $rec_update,$count).'</b><br />'.
3633: '<b>'.&mt('Total number of students = [_1]',$env{'form.total'}).
3634: '</b></p>';
1.44 ng 3635: return $title.$msg.$result;
1.5 albertel 3636: }
1.54 albertel 3637:
3638: sub split_part_type {
3639: my ($partstr) = @_;
3640: my ($temp,@allparts)=split(/_/,$partstr);
3641: my $type=pop(@allparts);
1.439 albertel 3642: my $part=join('_',@allparts);
1.54 albertel 3643: return ($part,$type);
3644: }
3645:
1.44 ng 3646: #------------- end of section for handling grading by section/class ---------
3647: #
3648: #----------------------------------------------------------------------------
3649:
1.5 albertel 3650:
1.44 ng 3651: #----------------------------------------------------------------------------
3652: #
3653: #-------------------------- Next few routines handles grading by csv upload
3654: #
3655: #--- Javascript to handle csv upload
1.27 albertel 3656: sub csvupload_javascript_reverse_associate {
1.246 albertel 3657: my $error1=&mt('You need to specify the username or ID');
3658: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3659: return(<<ENDPICK);
3660: function verify(vf) {
3661: var foundsomething=0;
3662: var founduname=0;
1.243 albertel 3663: var foundID=0;
1.27 albertel 3664: for (i=0;i<=vf.nfields.value;i++) {
3665: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3666: if (i==0 && tw!=0) { foundID=1; }
3667: if (i==1 && tw!=0) { founduname=1; }
3668: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 3669: }
1.246 albertel 3670: if (founduname==0 && foundID==0) {
3671: alert('$error1');
3672: return;
1.27 albertel 3673: }
3674: if (foundsomething==0) {
1.246 albertel 3675: alert('$error2');
3676: return;
1.27 albertel 3677: }
3678: vf.submit();
3679: }
3680: function flip(vf,tf) {
3681: var nw=eval('vf.f'+tf+'.selectedIndex');
3682: var i;
3683: for (i=0;i<=vf.nfields.value;i++) {
3684: //can not pick the same destination field for both name and domain
3685: if (((i ==0)||(i ==1)) &&
3686: ((tf==0)||(tf==1)) &&
3687: (i!=tf) &&
3688: (eval('vf.f'+i+'.selectedIndex')==nw)) {
3689: eval('vf.f'+i+'.selectedIndex=0;')
3690: }
3691: }
3692: }
3693: ENDPICK
3694: }
3695:
3696: sub csvupload_javascript_forward_associate {
1.246 albertel 3697: my $error1=&mt('You need to specify the username or ID');
3698: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3699: return(<<ENDPICK);
3700: function verify(vf) {
3701: var foundsomething=0;
3702: var founduname=0;
1.243 albertel 3703: var foundID=0;
1.27 albertel 3704: for (i=0;i<=vf.nfields.value;i++) {
3705: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3706: if (tw==1) { foundID=1; }
3707: if (tw==2) { founduname=1; }
3708: if (tw>3) { foundsomething=1; }
1.27 albertel 3709: }
1.246 albertel 3710: if (founduname==0 && foundID==0) {
3711: alert('$error1');
3712: return;
1.27 albertel 3713: }
3714: if (foundsomething==0) {
1.246 albertel 3715: alert('$error2');
3716: return;
1.27 albertel 3717: }
3718: vf.submit();
3719: }
3720: function flip(vf,tf) {
3721: var nw=eval('vf.f'+tf+'.selectedIndex');
3722: var i;
3723: //can not pick the same destination field twice
3724: for (i=0;i<=vf.nfields.value;i++) {
3725: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
3726: eval('vf.f'+i+'.selectedIndex=0;')
3727: }
3728: }
3729: }
3730: ENDPICK
3731: }
3732:
1.26 albertel 3733: sub csvuploadmap_header {
1.324 albertel 3734: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 3735: my $javascript;
1.257 albertel 3736: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3737: $javascript=&csvupload_javascript_reverse_associate();
3738: } else {
3739: $javascript=&csvupload_javascript_forward_associate();
3740: }
1.45 ng 3741:
1.324 albertel 3742: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.257 albertel 3743: my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245 albertel 3744: my $ignore=&mt('Ignore First Line');
1.418 albertel 3745: $symb = &Apache::lonenc::check_encrypt($symb);
1.41 ng 3746: $request->print(<<ENDPICK);
1.26 albertel 3747: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 3748: <h3><span class="LC_info">Uploading Class Grades</span></h3>
1.45 ng 3749: $result
1.326 albertel 3750: <hr />
1.26 albertel 3751: <h3>Identify fields</h3>
3752: Total number of records found in file: $distotal <hr />
3753: Enter as many fields as you can. The system will inform you and bring you back
3754: to this page if the data selected is insufficient to run your class.<hr />
3755: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245 albertel 3756: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26 albertel 3757: <input type="hidden" name="associate" value="" />
3758: <input type="hidden" name="phase" value="three" />
3759: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 3760: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
3761: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 3762: <input type="hidden" name="upfile_associate"
1.257 albertel 3763: value="$env{'form.upfile_associate'}" />
1.26 albertel 3764: <input type="hidden" name="symb" value="$symb" />
1.257 albertel 3765: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
3766: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
1.246 albertel 3767: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 3768: <hr />
3769: <script type="text/javascript" language="Javascript">
3770: $javascript
3771: </script>
3772: ENDPICK
1.118 ng 3773: return '';
1.26 albertel 3774:
3775: }
3776:
3777: sub csvupload_fields {
1.324 albertel 3778: my ($symb) = @_;
3779: my (@parts) = &getpartlist($symb);
1.243 albertel 3780: my @fields=(['ID','Student ID'],
3781: ['username','Student Username'],
3782: ['domain','Student Domain']);
1.324 albertel 3783: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 3784: foreach my $part (sort(@parts)) {
3785: my @datum;
3786: my $display=&Apache::lonnet::metadata($url,$part.'.display');
3787: my $name=$part;
3788: if (!$display) { $display = $name; }
3789: @datum=($name,$display);
1.244 albertel 3790: if ($name=~/^stores_(.*)_awarded/) {
3791: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
3792: }
1.41 ng 3793: push(@fields,\@datum);
3794: }
3795: return (@fields);
1.26 albertel 3796: }
3797:
3798: sub csvuploadmap_footer {
1.41 ng 3799: my ($request,$i,$keyfields) =@_;
3800: $request->print(<<ENDPICK);
1.26 albertel 3801: </table>
3802: <input type="hidden" name="nfields" value="$i" />
3803: <input type="hidden" name="keyfields" value="$keyfields" />
3804: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
3805: </form>
3806: ENDPICK
3807: }
3808:
1.283 albertel 3809: sub checkforfile_js {
1.86 ng 3810: my $result =<<CSVFORMJS;
3811: <script type="text/javascript" language="javascript">
3812: function checkUpload(formname) {
3813: if (formname.upfile.value == "") {
3814: alert("Please use the browse button to select a file from your local directory.");
3815: return false;
3816: }
3817: formname.submit();
3818: }
3819: </script>
3820: CSVFORMJS
1.283 albertel 3821: return $result;
3822: }
3823:
3824: sub upcsvScores_form {
3825: my ($request) = shift;
1.324 albertel 3826: my ($symb)=&get_symb($request);
1.283 albertel 3827: if (!$symb) {return '';}
3828: my $result=&checkforfile_js();
1.257 albertel 3829: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.324 albertel 3830: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
1.118 ng 3831: $result.=$table;
1.326 albertel 3832: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
3833: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.370 www 3834: $result.=' <b>'.&mt('Specify a file containing the class scores for current resource').
1.86 ng 3835: '.</b></td></tr>'."\n";
3836: $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.370 www 3837: my $upload=&mt("Upload Scores");
1.86 ng 3838: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 3839: my $ignore=&mt('Ignore First Line');
1.418 albertel 3840: $symb = &Apache::lonenc::check_encrypt($symb);
1.86 ng 3841: $result.=<<ENDUPFORM;
1.106 albertel 3842: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 3843: <input type="hidden" name="symb" value="$symb" />
3844: <input type="hidden" name="command" value="csvuploadmap" />
1.257 albertel 3845: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
3846: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.86 ng 3847: $upfile_select
1.370 www 3848: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
1.283 albertel 3849: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86 ng 3850: </form>
3851: ENDUPFORM
1.370 www 3852: $result.=&Apache::loncommon::help_open_topic("Course_Convert_To_CSV",
3853: &mt("How do I create a CSV file from a spreadsheet"))
3854: .'</td></tr></table>'."\n";
1.86 ng 3855: $result.='</td></tr></table><br /><br />'."\n";
1.324 albertel 3856: $result.=&show_grading_menu_form($symb);
1.86 ng 3857: return $result;
3858: }
3859:
3860:
1.26 albertel 3861: sub csvuploadmap {
1.41 ng 3862: my ($request)= @_;
1.324 albertel 3863: my ($symb)=&get_symb($request);
1.41 ng 3864: if (!$symb) {return '';}
1.72 ng 3865:
1.41 ng 3866: my $datatoken;
1.257 albertel 3867: if (!$env{'form.datatoken'}) {
1.41 ng 3868: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 3869: } else {
1.257 albertel 3870: $datatoken=$env{'form.datatoken'};
1.41 ng 3871: &Apache::loncommon::load_tmp_file($request);
1.26 albertel 3872: }
1.41 ng 3873: my @records=&Apache::loncommon::upfile_record_sep();
1.257 albertel 3874: if ($env{'form.noFirstLine'}) { shift(@records); }
1.324 albertel 3875: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 3876: my ($i,$keyfields);
3877: if (@records) {
1.324 albertel 3878: my @fields=&csvupload_fields($symb);
1.45 ng 3879:
1.257 albertel 3880: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3881: &Apache::loncommon::csv_print_samples($request,\@records);
3882: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
3883: \@fields);
3884: foreach (@fields) { $keyfields.=$_->[0].','; }
3885: chop($keyfields);
3886: } else {
3887: unshift(@fields,['none','']);
3888: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
3889: \@fields);
1.311 banghart 3890: foreach my $rec (@records) {
3891: my %temp = &Apache::loncommon::record_sep($rec);
3892: if (%temp) {
3893: $keyfields=join(',',sort(keys(%temp)));
3894: last;
3895: }
3896: }
1.41 ng 3897: }
3898: }
3899: &csvuploadmap_footer($request,$i,$keyfields);
1.324 albertel 3900: $request->print(&show_grading_menu_form($symb));
1.72 ng 3901:
1.41 ng 3902: return '';
1.27 albertel 3903: }
3904:
1.246 albertel 3905: sub csvuploadoptions {
1.41 ng 3906: my ($request)= @_;
1.324 albertel 3907: my ($symb)=&get_symb($request);
1.257 albertel 3908: my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246 albertel 3909: my $ignore=&mt('Ignore First Line');
3910: $request->print(<<ENDPICK);
3911: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.398 albertel 3912: <h3><span class="LC_info">Uploading Class Grade Options</span></h3>
1.246 albertel 3913: <input type="hidden" name="command" value="csvuploadassign" />
1.302 albertel 3914: <!--
1.246 albertel 3915: <p>
3916: <label>
3917: <input type="checkbox" name="show_full_results" />
3918: Show a table of all changes
3919: </label>
3920: </p>
1.302 albertel 3921: -->
1.246 albertel 3922: <p>
3923: <label>
3924: <input type="checkbox" name="overwite_scores" checked="checked" />
3925: Overwrite any existing score
3926: </label>
3927: </p>
3928: ENDPICK
3929: my %fields=&get_fields();
3930: if (!defined($fields{'domain'})) {
1.257 albertel 3931: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246 albertel 3932: $request->print("\n<p> Users are in domain: ".$domform."</p>\n");
3933: }
1.257 albertel 3934: foreach my $key (sort(keys(%env))) {
1.246 albertel 3935: if ($key !~ /^form\.(.*)$/) { next; }
3936: my $cleankey=$1;
3937: if ($cleankey eq 'command') { next; }
3938: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 3939: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 3940: }
3941: # FIXME do a check for any duplicated user ids...
3942: # FIXME do a check for any invalid user ids?...
1.290 albertel 3943: $request->print('<input type="submit" value="Assign Grades" /><br />
3944: <hr /></form>'."\n");
1.324 albertel 3945: $request->print(&show_grading_menu_form($symb));
1.246 albertel 3946: return '';
3947: }
3948:
3949: sub get_fields {
3950: my %fields;
1.257 albertel 3951: my @keyfields = split(/\,/,$env{'form.keyfields'});
3952: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
3953: if ($env{'form.upfile_associate'} eq 'reverse') {
3954: if ($env{'form.f'.$i} ne 'none') {
3955: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 3956: }
3957: } else {
1.257 albertel 3958: if ($env{'form.f'.$i} ne 'none') {
3959: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 3960: }
3961: }
1.27 albertel 3962: }
1.246 albertel 3963: return %fields;
3964: }
3965:
3966: sub csvuploadassign {
3967: my ($request)= @_;
1.324 albertel 3968: my ($symb)=&get_symb($request);
1.246 albertel 3969: if (!$symb) {return '';}
1.345 bowersj2 3970: my $error_msg = '';
1.246 albertel 3971: &Apache::loncommon::load_tmp_file($request);
3972: my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257 albertel 3973: if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246 albertel 3974: my %fields=&get_fields();
1.41 ng 3975: $request->print('<h3>Assigning Grades</h3>');
1.257 albertel 3976: my $courseid=$env{'request.course.id'};
1.97 albertel 3977: my ($classlist) = &getclasslist('all',0);
1.106 albertel 3978: my @notallowed;
1.41 ng 3979: my @skipped;
3980: my $countdone=0;
3981: foreach my $grade (@gradedata) {
3982: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 3983: my $domain;
3984: if ($entries{$fields{'domain'}}) {
3985: $domain=$entries{$fields{'domain'}};
3986: } else {
1.257 albertel 3987: $domain=$env{'form.default_domain'};
1.246 albertel 3988: }
1.243 albertel 3989: $domain=~s/\s//g;
1.41 ng 3990: my $username=$entries{$fields{'username'}};
1.160 albertel 3991: $username=~s/\s//g;
1.243 albertel 3992: if (!$username) {
3993: my $id=$entries{$fields{'ID'}};
1.247 albertel 3994: $id=~s/\s//g;
1.243 albertel 3995: my %ids=&Apache::lonnet::idget($domain,$id);
3996: $username=$ids{$id};
3997: }
1.41 ng 3998: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 3999: my $id=$entries{$fields{'ID'}};
4000: $id=~s/\s//g;
4001: if ($id) {
4002: push(@skipped,"$id:$domain");
4003: } else {
4004: push(@skipped,"$username:$domain");
4005: }
1.41 ng 4006: next;
4007: }
1.108 albertel 4008: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 4009: if (!&canmodify($usec)) {
4010: push(@notallowed,"$username:$domain");
4011: next;
4012: }
1.244 albertel 4013: my %points;
1.41 ng 4014: my %grades;
4015: foreach my $dest (keys(%fields)) {
1.244 albertel 4016: if ($dest eq 'ID' || $dest eq 'username' ||
4017: $dest eq 'domain') { next; }
4018: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
4019: if ($dest=~/stores_(.*)_points/) {
4020: my $part=$1;
4021: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
4022: $symb,$domain,$username);
1.345 bowersj2 4023: if ($wgt) {
4024: $entries{$fields{$dest}}=~s/\s//g;
4025: my $pcr=$entries{$fields{$dest}} / $wgt;
1.463 albertel 4026: my $award=($pcr == 0) ? 'incorrect_by_override'
4027: : 'correct_by_override';
1.345 bowersj2 4028: $grades{"resource.$part.awarded"}=$pcr;
4029: $grades{"resource.$part.solved"}=$award;
4030: $points{$part}=1;
4031: } else {
4032: $error_msg = "<br />" .
4033: &mt("Some point values were assigned"
4034: ." for problems with a weight "
4035: ."of zero. These values were "
4036: ."ignored.");
4037: }
1.244 albertel 4038: } else {
4039: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
4040: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
4041: my $store_key=$dest;
4042: $store_key=~s/^stores/resource/;
4043: $store_key=~s/_/\./g;
4044: $grades{$store_key}=$entries{$fields{$dest}};
4045: }
1.41 ng 4046: }
1.508 www 4047: if (! %grades) {
4048: push(@skipped,&mt("[_1]: no data to save","$username:$domain"));
4049: } else {
4050: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
4051: my $result=&Apache::lonnet::cstore(\%grades,$symb,
1.302 albertel 4052: $env{'request.course.id'},
4053: $domain,$username);
1.508 www 4054: if ($result eq 'ok') {
4055: $request->print('.');
4056: } else {
4057: $request->print("<p><span class=\"LC_error\">".
4058: &mt("Failed to save data for student [_1]. Message when trying to save was: [_2]",
4059: "$username:$domain",$result)."</span></p>");
4060: }
4061: $request->rflush();
4062: $countdone++;
4063: }
1.41 ng 4064: }
1.508 www 4065: $request->print('<br /><span class="LC_info">'.&mt("Saved [_1] students",$countdone)."</span>\n");
1.41 ng 4066: if (@skipped) {
1.508 www 4067: $request->print('<p><span class="LC_warning">'.&mt('Skipped Students').'</span></p>');
1.106 albertel 4068: foreach my $student (@skipped) { $request->print("$student<br />\n"); }
4069: }
4070: if (@notallowed) {
1.508 www 4071: $request->print('<p><span class="LC_error">'.&mt('Students Not Allowed to Modify').'</span></p>');
1.106 albertel 4072: foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
1.41 ng 4073: }
1.106 albertel 4074: $request->print("<br />\n");
1.324 albertel 4075: $request->print(&show_grading_menu_form($symb));
1.345 bowersj2 4076: return $error_msg;
1.26 albertel 4077: }
1.44 ng 4078: #------------- end of section for handling csv file upload ---------
4079: #
4080: #-------------------------------------------------------------------
4081: #
1.122 ng 4082: #-------------- Next few routines handle grading by page/sequence
1.72 ng 4083: #
4084: #--- Select a page/sequence and a student to grade
1.68 ng 4085: sub pickStudentPage {
4086: my ($request) = shift;
4087:
4088: $request->print(<<LISTJAVASCRIPT);
4089: <script type="text/javascript" language="javascript">
4090:
4091: function checkPickOne(formname) {
1.76 ng 4092: if (radioSelection(formname.student) == null) {
1.68 ng 4093: alert("Please select the student you wish to grade.");
4094: return;
4095: }
1.125 ng 4096: ptr = pullDownSelection(formname.selectpage);
4097: formname.page.value = formname["page"+ptr].value;
4098: formname.title.value = formname["title"+ptr].value;
1.68 ng 4099: formname.submit();
4100: }
4101:
4102: </script>
4103: LISTJAVASCRIPT
1.118 ng 4104: &commonJSfunctions($request);
1.324 albertel 4105: my ($symb) = &get_symb($request);
1.257 albertel 4106: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4107: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4108: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 4109:
1.398 albertel 4110: my $result='<h3><span class="LC_info"> '.
1.485 albertel 4111: &mt('Manual Grading by Page or Sequence').'</span></h3>';
1.68 ng 4112:
1.80 ng 4113: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.423 albertel 4114: my ($titles,$symbx) = &getSymbMap();
1.137 albertel 4115: my ($curpage) =&Apache::lonnet::decode_symb($symb);
4116: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
4117: # my $type=($curpage =~ /\.(page|sequence)/);
1.485 albertel 4118: my $select = '<select name="selectpage">'."\n";
1.70 ng 4119: my $ctr=0;
1.68 ng 4120: foreach (@$titles) {
4121: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.485 albertel 4122: $select.='<option value="'.$ctr.'" '.
1.401 albertel 4123: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.71 ng 4124: '>'.$showtitle.'</option>'."\n";
1.70 ng 4125: $ctr++;
1.68 ng 4126: }
1.485 albertel 4127: $select.= '</select>';
4128: $result.=&mt(' <b>Problems from:</b> [_1]',$select)."<br />\n";
4129:
1.70 ng 4130: $ctr=0;
4131: foreach (@$titles) {
4132: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4133: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
4134: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
4135: $ctr++;
4136: }
1.72 ng 4137: $result.='<input type="hidden" name="page" />'."\n".
4138: '<input type="hidden" name="title" />'."\n";
1.68 ng 4139:
1.485 albertel 4140: my $options =
4141: '<label><input type="radio" name="vProb" value="no" checked="checked" /> '.&mt('no').' </label>'."\n".
4142: '<label><input type="radio" name="vProb" value="yes" /> '.&mt('yes').' </label>'."<br />\n";
4143: $result.=' '.&mt('<b>View Problems Text: </b> [_1]',$options);
4144:
4145: $options =
4146: '<label><input type="radio" name="lastSub" value="none" /> '.&mt('none').' </label>'."\n".
4147: '<label><input type="radio" name="lastSub" value="datesub" checked="checked" /> '.&mt('by dates and submissions').'</label>'."\n".
4148: '<label><input type="radio" name="lastSub" value="all" /> '.&mt('all details').' </label>'."\n";
4149: $result.=' '.&mt('<b>Submission Details: </b>[_1]',$options);
1.432 banghart 4150:
4151: $result.=&build_section_inputs();
1.442 banghart 4152: my $stu_status = join(':',&Apache::loncommon::get_env_multiple('form.Status'));
4153: $result.='<input type="hidden" name="Status" value="'.$stu_status.'" />'."\n".
1.72 ng 4154: '<input type="hidden" name="command" value="displayPage" />'."\n".
1.418 albertel 4155: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4156: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72 ng 4157:
1.485 albertel 4158: $result.=' '.&mt('<b>Use CODE: [_1] </b>',
4159: '<input type="text" name="CODE" value="" />').
4160: '<br />'."\n";
1.382 albertel 4161:
1.80 ng 4162: $result.=' <input type="button" '.
1.485 albertel 4163: 'onClick="javascript:checkPickOne(this.form);" value="'.&mt('Next->').'" /><br />'."\n";
1.72 ng 4164:
1.68 ng 4165: $request->print($result);
4166:
1.485 albertel 4167: my $studentTable.=' <b>'.&mt('Select a student you wish to grade and then click on the Next button.').'</b><br />'.
1.484 albertel 4168: &Apache::loncommon::start_data_table().
4169: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4170: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4171: '<th>'.&nameUserString('header').'</th>'.
1.485 albertel 4172: '<th align="right"> '.&mt('No.').'</th>'.
1.484 albertel 4173: '<th>'.&nameUserString('header').'</th>'.
4174: &Apache::loncommon::end_data_table_header_row();
1.68 ng 4175:
1.76 ng 4176: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 4177: my $ptr = 1;
1.294 albertel 4178: foreach my $student (sort
4179: {
4180: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
4181: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
4182: }
4183: return $a cmp $b;
4184: } (keys(%$fullname))) {
1.68 ng 4185: my ($uname,$udom) = split(/:/,$student);
1.484 albertel 4186: $studentTable.=($ptr%2==1 ? &Apache::loncommon::start_data_table_row()
4187: : '</td>');
1.126 ng 4188: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 4189: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
4190: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.484 albertel 4191: $studentTable.=
4192: ($ptr%2 == 0 ? '</td>'.&Apache::loncommon::end_data_table_row()
4193: : '');
1.68 ng 4194: $ptr++;
4195: }
1.484 albertel 4196: if ($ptr%2 == 0) {
4197: $studentTable.='</td><td> </td><td> </td>'.
4198: &Apache::loncommon::end_data_table_row();
4199: }
4200: $studentTable.=&Apache::loncommon::end_data_table()."\n";
1.126 ng 4201: $studentTable.='<input type="button" '.
1.485 albertel 4202: 'onClick="javascript:checkPickOne(this.form);" value="'.&mt('Next->').'" /></form>'."\n";
1.68 ng 4203:
1.324 albertel 4204: $studentTable.=&show_grading_menu_form($symb);
1.68 ng 4205: $request->print($studentTable);
4206:
4207: return '';
4208: }
4209:
4210: sub getSymbMap {
1.132 bowersj2 4211: my $navmap = Apache::lonnavmaps::navmap->new();
1.68 ng 4212:
4213: my %symbx = ();
4214: my @titles = ();
1.117 bowersj2 4215: my $minder = 0;
4216:
4217: # Gather every sequence that has problems.
1.240 albertel 4218: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
4219: 1,0,1);
1.117 bowersj2 4220: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 4221: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.381 albertel 4222: my $title = $minder.'.'.
4223: &HTML::Entities::encode($sequence->compTitle(),'"\'&');
4224: push(@titles, $title); # minder in case two titles are identical
4225: $symbx{$title} = &HTML::Entities::encode($sequence->symb(),'"\'&');
1.117 bowersj2 4226: $minder++;
1.241 albertel 4227: }
1.68 ng 4228: }
4229: return \@titles,\%symbx;
4230: }
4231:
1.72 ng 4232: #
4233: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 4234: sub displayPage {
4235: my ($request) = shift;
4236:
1.324 albertel 4237: my ($symb) = &get_symb($request);
1.257 albertel 4238: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4239: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4240: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4241: my $pageTitle = $env{'form.page'};
1.103 albertel 4242: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4243: my ($uname,$udom) = split(/:/,$env{'form.student'});
4244: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 4245:
4246: #need to make sure we have the correct data for later EXT calls,
4247: #thus invalidate the cache
4248: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 4249: $env{'course.'.$env{'request.course.id'}.'.num'},
4250: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 4251: &Apache::lonnet::clear_EXT_cache_status();
4252:
1.103 albertel 4253: if (!&canview($usec)) {
1.485 albertel 4254: $request->print('<span class="LC_warning">'.&mt('Unable to view requested student. ([_1])',$env{'form.student'}).'</span>');
1.324 albertel 4255: $request->print(&show_grading_menu_form($symb));
1.103 albertel 4256: return;
4257: }
1.398 albertel 4258: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.485 albertel 4259: $result.='<h3> '.&mt('Student: [_1]',&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom)).
1.129 ng 4260: '</h3>'."\n";
1.500 albertel 4261: $env{'form.CODE'} = uc($env{'form.CODE'});
1.501 foxr 4262: if (&Apache::lonnet::validCODE(uc($env{'form.CODE'}))) {
1.485 albertel 4263: $result.='<h3> '.&mt('CODE: [_1]',$env{'form.CODE'}).'</h3>'."\n";
1.382 albertel 4264: } else {
4265: delete($env{'form.CODE'});
4266: }
1.71 ng 4267: &sub_page_js($request);
4268: $request->print($result);
4269:
1.132 bowersj2 4270: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 4271: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 4272: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4273: if (!$map) {
1.485 albertel 4274: $request->print('<span class="LC_warning">'.&mt('Unable to view requested sequence. ([_1])',$resUrl).'</span>');
1.324 albertel 4275: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4276: return;
4277: }
1.68 ng 4278: my $iterator = $navmap->getIterator($map->map_start(),
4279: $map->map_finish());
4280:
1.71 ng 4281: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 4282: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 4283: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
4284: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 4285: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 4286: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.418 albertel 4287: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.125 ng 4288: '<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257 albertel 4289: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71 ng 4290:
1.382 albertel 4291: if (defined($env{'form.CODE'})) {
4292: $studentTable.=
4293: '<input type="hidden" name="CODE" value="'.$env{'form.CODE'}.'" />'."\n";
4294: }
1.381 albertel 4295: my $checkIcon = '<img alt="'.&mt('Check Mark').
1.485 albertel 4296: '" src="'.&Apache::loncommon::lonhttpdurl($request->dir_config('lonIconsURL').'/check.gif').'" height="16" border="0" />';
1.71 ng 4297:
1.485 albertel 4298: $studentTable.=' '.&mt('<b>Note:</b> Problems graded correct by the computer are marked with a [_1] symbol.',$checkIcon)."\n".
1.484 albertel 4299: &Apache::loncommon::start_data_table().
4300: &Apache::loncommon::start_data_table_header_row().
4301: '<th align="center"> Prob. </th>'.
1.485 albertel 4302: '<th> '.($env{'form.vProb'} eq 'no' ? &mt('Title') : &mt('Problem Text')).'/'.&mt('Grade').'</th>'.
1.484 albertel 4303: &Apache::loncommon::end_data_table_header_row();
1.71 ng 4304:
1.329 albertel 4305: &Apache::lonxml::clear_problem_counter();
1.196 albertel 4306: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 4307: $iterator->next(); # skip the first BEGIN_MAP
4308: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 4309: while ($depth > 0) {
1.68 ng 4310: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4311: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 4312:
1.385 albertel 4313: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4314: my $parts = $curRes->parts();
1.68 ng 4315: my $title = $curRes->compTitle();
1.71 ng 4316: my $symbx = $curRes->symb();
1.484 albertel 4317: $studentTable.=
4318: &Apache::loncommon::start_data_table_row().
4319: '<td align="center" valign="top" >'.$prob.
1.485 albertel 4320: (scalar(@{$parts}) == 1 ? ''
4321: : '<br />('.&mt('[_1] parts)',
4322: scalar(@{$parts}))
4323: ).
4324: '</td>';
1.71 ng 4325: $studentTable.='<td valign="top">';
1.382 albertel 4326: my %form = ('CODE' => $env{'form.CODE'},);
1.257 albertel 4327: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 4328: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
1.383 albertel 4329: undef,'both',\%form);
1.71 ng 4330: } else {
1.382 albertel 4331: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'},%form);
1.80 ng 4332: $companswer =~ s|<form(.*?)>||g;
4333: $companswer =~ s|</form>||g;
1.71 ng 4334: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 4335: # $companswer =~ s/$1/ /ms;
1.326 albertel 4336: # $request->print('match='.$1."<br />\n");
1.71 ng 4337: # }
1.116 ng 4338: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.485 albertel 4339: $studentTable.=' <b>'.$title.'</b> <br /> '.&mt('<b>Correct answer:</b><br />[_1]',$companswer);
1.71 ng 4340: }
4341:
1.257 albertel 4342: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 4343:
1.257 albertel 4344: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 4345: if ($record{'version'} eq '') {
1.485 albertel 4346: $studentTable.='<br /> <span class="LC_warning">'.&mt('No recorded submission for this problem.').'</span><br />';
1.71 ng 4347: } else {
1.116 ng 4348: my %responseType = ();
4349: foreach my $partid (@{$parts}) {
1.147 albertel 4350: my @responseIds =$curRes->responseIds($partid);
4351: my @responseType =$curRes->responseType($partid);
4352: my %responseIds;
4353: for (my $i=0;$i<=$#responseIds;$i++) {
4354: $responseIds{$responseIds[$i]}=$responseType[$i];
4355: }
4356: $responseType{$partid} = \%responseIds;
1.116 ng 4357: }
1.148 albertel 4358: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 4359:
1.71 ng 4360: }
1.257 albertel 4361: } elsif ($env{'form.lastSub'} eq 'all') {
4362: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71 ng 4363: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 4364: $env{'request.course.id'},
1.71 ng 4365: '','.submission');
4366:
4367: }
1.103 albertel 4368: if (&canmodify($usec)) {
4369: foreach my $partid (@{$parts}) {
4370: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
4371: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
4372: $question++;
4373: }
1.196 albertel 4374: $prob++;
1.71 ng 4375: }
4376: $studentTable.='</td></tr>';
1.68 ng 4377:
1.103 albertel 4378: }
1.68 ng 4379: $curRes = $iterator->next();
4380: }
4381:
1.485 albertel 4382: $studentTable.='</table>'."\n".
4383: '<input type="button" value="'.&mt('Save').'" '.
1.381 albertel 4384: 'onClick="javascript:checkSubmitPage(this.form,'.$question.');" />'.
1.71 ng 4385: '</form>'."\n";
1.324 albertel 4386: $studentTable.=&show_grading_menu_form($symb);
1.71 ng 4387: $request->print($studentTable);
4388:
4389: return '';
1.119 ng 4390: }
4391:
4392: sub displaySubByDates {
1.148 albertel 4393: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 4394: my $isCODE=0;
1.335 albertel 4395: my $isTask = ($symb =~/\.task$/);
1.224 albertel 4396: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.467 albertel 4397: my $studentTable=&Apache::loncommon::start_data_table().
4398: &Apache::loncommon::start_data_table_header_row().
4399: '<th>'.&mt('Date/Time').'</th>'.
4400: ($isCODE?'<th>'.&mt('CODE').'</th>':'').
4401: '<th>'.&mt('Submission').'</th>'.
4402: '<th>'.&mt('Status').'</th>'.
4403: &Apache::loncommon::end_data_table_header_row();
1.119 ng 4404: my ($version);
4405: my %mark;
1.148 albertel 4406: my %orders;
1.119 ng 4407: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 4408: if (!exists($$record{'1:timestamp'})) {
1.467 albertel 4409: return '<br /> <span class="LC_warning">'.&mt('Nothing submitted - no attempts').'</span><br />';
1.147 albertel 4410: }
1.335 albertel 4411:
4412: my $interaction;
1.119 ng 4413: for ($version=1;$version<=$$record{'version'};$version++) {
1.467 albertel 4414: my $timestamp =
4415: &Apache::lonlocal::locallocaltime($$record{$version.':timestamp'});
1.335 albertel 4416: if (exists($$record{$version.':resource.0.version'})) {
4417: $interaction = $$record{$version.':resource.0.version'};
4418: }
4419:
4420: my $where = ($isTask ? "$version:resource.$interaction"
4421: : "$version:resource");
1.467 albertel 4422: $studentTable.=&Apache::loncommon::start_data_table_row().
4423: '<td>'.$timestamp.'</td>';
1.224 albertel 4424: if ($isCODE) {
4425: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
4426: }
1.119 ng 4427: my @versionKeys = split(/\:/,$$record{$version.':keys'});
4428: my @displaySub = ();
4429: foreach my $partid (@{$parts}) {
1.335 albertel 4430: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
4431: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
4432:
4433:
1.122 ng 4434: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 4435: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 4436: foreach my $matchKey (@matchKey) {
1.198 albertel 4437: if (exists($$record{$version.':'.$matchKey}) &&
4438: $$record{$version.':'.$matchKey} ne '') {
1.335 albertel 4439:
4440: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
4441: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
1.467 albertel 4442: $displaySub[0].='<b>'.&mt('Part:').'</b> '.$display_part.' ';
4443: $displaySub[0].='<span class="LC_internal_info">('.&mt('ID').' '.
1.398 albertel 4444: $responseId.')</span> <b>';
1.335 albertel 4445: if ($$record{"$where.$partid.tries"} eq '') {
1.467 albertel 4446: $displaySub[0].=&mt('Trial not counted');
1.147 albertel 4447: } else {
1.467 albertel 4448: $displaySub[0].=&mt('Trial [_1]',
4449: $$record{"$where.$partid.tries"});
1.147 albertel 4450: }
1.335 albertel 4451: my $responseType=($isTask ? 'Task'
4452: : $responseType->{$partid}->{$responseId});
1.148 albertel 4453: if (!exists($orders{$partid})) { $orders{$partid}={}; }
4454: if (!exists($orders{$partid}->{$responseId})) {
4455: $orders{$partid}->{$responseId}=
4456: &get_order($partid,$responseId,$symb,$uname,$udom);
4457: }
1.147 albertel 4458: $displaySub[0].='</b> '.
1.336 albertel 4459: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom).'<br />';
1.147 albertel 4460: }
4461: }
1.335 albertel 4462: if (exists($$record{"$where.$partid.checkedin"})) {
1.485 albertel 4463: $displaySub[1].=&mt('Checked in by [_1] into slot [_2]',
4464: $$record{"$where.$partid.checkedin"},
4465: $$record{"$where.$partid.checkedin.slot"}).
4466: '<br />';
1.335 albertel 4467: }
4468: if (exists $$record{"$where.$partid.award"}) {
1.485 albertel 4469: $displaySub[1].='<b>'.&mt('Part:').'</b> '.$display_part.' '.
1.335 albertel 4470: lc($$record{"$where.$partid.award"}).' '.
4471: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 4472: '<br />';
4473: }
1.335 albertel 4474: if (exists $$record{"$where.$partid.regrader"}) {
4475: $displaySub[2].=$$record{"$where.$partid.regrader"}.
4476: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
4477: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
4478: $displaySub[2].=
4479: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 4480: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 4481: }
4482: }
4483: # needed because old essay regrader has not parts info
4484: if (exists $$record{"$version:resource.regrader"}) {
4485: $displaySub[2].=$$record{"$version:resource.regrader"};
4486: }
4487: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
4488: if ($displaySub[2]) {
1.467 albertel 4489: $studentTable.=&mt('Manually graded by [_1]',$displaySub[2]);
1.147 albertel 4490: }
1.467 albertel 4491: $studentTable.=' </td>'.
4492: &Apache::loncommon::end_data_table_row();
1.119 ng 4493: }
1.467 albertel 4494: $studentTable.=&Apache::loncommon::end_data_table();
1.119 ng 4495: return $studentTable;
1.71 ng 4496: }
4497:
4498: sub updateGradeByPage {
4499: my ($request) = shift;
4500:
1.257 albertel 4501: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4502: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4503: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4504: my $pageTitle = $env{'form.page'};
1.103 albertel 4505: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4506: my ($uname,$udom) = split(/:/,$env{'form.student'});
4507: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 4508: if (!&canmodify($usec)) {
1.398 albertel 4509: $request->print('<span class="LC_warning">Unable to modify requested student.('.$env{'form.student'}.'</span>');
1.324 albertel 4510: $request->print(&show_grading_menu_form($env{'form.symb'}));
1.103 albertel 4511: return;
4512: }
1.398 albertel 4513: my $result='<h3><span class="LC_info"> '.$env{'form.title'}.'</span></h3>';
1.257 albertel 4514: $result.='<h3> Student: '.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 4515: '</h3>'."\n";
1.70 ng 4516:
1.68 ng 4517: $request->print($result);
4518:
1.132 bowersj2 4519: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 4520: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 4521: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4522: if (!$map) {
1.398 albertel 4523: $request->print('<span class="LC_warning">Unable to grade requested sequence. ('.$resUrl.')</span>');
1.324 albertel 4524: my ($symb)=&get_symb($request);
4525: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4526: return;
4527: }
1.71 ng 4528: my $iterator = $navmap->getIterator($map->map_start(),
4529: $map->map_finish());
1.70 ng 4530:
1.484 albertel 4531: my $studentTable=
4532: &Apache::loncommon::start_data_table().
4533: &Apache::loncommon::start_data_table_header_row().
1.485 albertel 4534: '<th align="center"> '.&mt('Prob.').' </th>'.
4535: '<th> '.&mt('Title').' </th>'.
4536: '<th> '.&mt('Previous Score').' </th>'.
4537: '<th> '.&mt('New Score').' </th>'.
1.484 albertel 4538: &Apache::loncommon::end_data_table_header_row();
1.71 ng 4539:
4540: $iterator->next(); # skip the first BEGIN_MAP
4541: my $curRes = $iterator->next(); # for "current resource"
1.196 albertel 4542: my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101 albertel 4543: while ($depth > 0) {
1.71 ng 4544: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4545: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 4546:
1.385 albertel 4547: if (ref($curRes) && $curRes->is_problem()) {
1.91 albertel 4548: my $parts = $curRes->parts();
1.71 ng 4549: my $title = $curRes->compTitle();
4550: my $symbx = $curRes->symb();
1.484 albertel 4551: $studentTable.=
4552: &Apache::loncommon::start_data_table_row().
4553: '<td align="center" valign="top" >'.$prob.
1.485 albertel 4554: (scalar(@{$parts}) == 1 ? ''
4555: : '<br />('.&mt('[quant,_1, parts]',scalar(@{$parts}))
4556: ).')</td>';
1.71 ng 4557: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
4558:
4559: my %newrecord=();
4560: my @displayPts=();
1.269 raeburn 4561: my %aggregate = ();
4562: my $aggregateflag = 0;
1.71 ng 4563: foreach my $partid (@{$parts}) {
1.257 albertel 4564: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
4565: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 4566:
1.257 albertel 4567: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
4568: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 4569: my $partial = $newpts/$wgt;
4570: my $score;
4571: if ($partial > 0) {
4572: $score = 'correct_by_override';
1.125 ng 4573: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 4574: $score = 'incorrect_by_override';
4575: }
1.257 albertel 4576: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 4577: if ($dropMenu eq 'excused') {
1.71 ng 4578: $partial = '';
4579: $score = 'excused';
1.125 ng 4580: } elsif ($dropMenu eq 'reset status'
1.257 albertel 4581: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 4582: $newrecord{'resource.'.$partid.'.tries'} = 0;
4583: $newrecord{'resource.'.$partid.'.solved'} = '';
4584: $newrecord{'resource.'.$partid.'.award'} = '';
4585: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 4586: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 4587: $changeflag++;
4588: $newpts = '';
1.269 raeburn 4589:
4590: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
4591: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
4592: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
4593: if ($aggtries > 0) {
4594: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
4595: $aggregateflag = 1;
4596: }
1.71 ng 4597: }
1.324 albertel 4598: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 4599: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.207 albertel 4600: $displayPts[0].=' <b>Part:</b> '.$display_part.' = '.
1.71 ng 4601: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 4602: ' <br />';
1.207 albertel 4603: $displayPts[1].=' <b>Part:</b> '.$display_part.' = '.
1.125 ng 4604: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 4605: ' <br />';
1.71 ng 4606: $question++;
1.380 albertel 4607: next if ($dropMenu eq 'reset status' || ($newpts eq $oldpts && $score ne 'excused'));
1.125 ng 4608:
1.71 ng 4609: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 4610: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 4611: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 4612: if (scalar(keys(%newrecord)) > 0);
1.71 ng 4613:
4614: $changeflag++;
4615: }
4616: if (scalar(keys(%newrecord)) > 0) {
1.382 albertel 4617: my %record =
4618: &Apache::lonnet::restore($symbx,$env{'request.course.id'},
4619: $udom,$uname);
4620:
4621: if (&Apache::lonnet::validCODE($env{'form.CODE'})) {
4622: $newrecord{'resource.CODE'} = $env{'form.CODE'};
4623: } elsif (&Apache::lonnet::validCODE($record{'resource.CODE'})) {
4624: $newrecord{'resource.CODE'} = '';
4625: }
1.257 albertel 4626: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 4627: $udom,$uname);
1.382 albertel 4628: %record = &Apache::lonnet::restore($symbx,
4629: $env{'request.course.id'},
4630: $udom,$uname);
1.380 albertel 4631: &check_and_remove_from_queue($parts,\%record,undef,$symbx,
4632: $cdom,$cnum,$udom,$uname);
1.71 ng 4633: }
1.380 albertel 4634:
1.269 raeburn 4635: if ($aggregateflag) {
4636: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
4637: $env{'course.'.$env{'request.course.id'}.'.domain'},
4638: $env{'course.'.$env{'request.course.id'}.'.num'});
4639: }
1.125 ng 4640:
1.71 ng 4641: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
4642: '<td valign="top">'.$displayPts[1].'</td>'.
1.484 albertel 4643: &Apache::loncommon::end_data_table_row();
1.68 ng 4644:
1.196 albertel 4645: $prob++;
1.68 ng 4646: }
1.71 ng 4647: $curRes = $iterator->next();
1.68 ng 4648: }
1.98 albertel 4649:
1.484 albertel 4650: $studentTable.=&Apache::loncommon::end_data_table();
1.324 albertel 4651: $studentTable.=&show_grading_menu_form($env{'form.symb'});
1.76 ng 4652: my $grademsg=($changeflag == 0 ? 'No score was changed or updated.' :
4653: 'The scores were changed for '.
4654: $changeflag.' problem'.($changeflag == 1 ? '.' : 's.'));
4655: $request->print($grademsg.$studentTable);
1.68 ng 4656:
1.70 ng 4657: return '';
4658: }
4659:
1.72 ng 4660: #-------- end of section for handling grading by page/sequence ---------
4661: #
4662: #-------------------------------------------------------------------
4663:
1.75 albertel 4664: #--------------------Scantron Grading-----------------------------------
4665: #
4666: #------ start of section for handling grading by page/sequence ---------
4667:
1.423 albertel 4668: =pod
4669:
4670: =head1 Bubble sheet grading routines
4671:
1.424 albertel 4672: For this documentation:
4673:
4674: 'scanline' refers to the full line of characters
4675: from the file that we are parsing that represents one entire sheet
4676:
4677: 'bubble line' refers to the data
4678: representing the line of bubbles that are on the physical bubble sheet
4679:
4680:
4681: The overall process is that a scanned in bubble sheet data is uploaded
4682: into a course. When a user wants to grade, they select a
4683: sequence/folder of resources, a file of bubble sheet info, and pick
4684: one of the predefined configurations for what each scanline looks
4685: like.
4686:
4687: Next each scanline is checked for any errors of either 'missing
1.435 foxr 4688: bubbles' (it's an error because it may have been mis-scanned
1.424 albertel 4689: because too light bubbling), 'double bubble' (each bubble line should
4690: have no more that one letter picked), invalid or duplicated CODE,
4691: invalid student ID
4692:
4693: If the CODE option is used that determines the randomization of the
4694: homework problems, either way the student ID is looked up into a
4695: username:domain.
4696:
4697: During the validation phase the instructor can choose to skip scanlines.
4698:
1.435 foxr 4699: After the validation phase, there are now 3 bubble sheet files
1.424 albertel 4700:
4701: scantron_original_filename (unmodified original file)
4702: scantron_corrected_filename (file where the corrected information has replaced the original information)
4703: scantron_skipped_filename (contains the exact text of scanlines that where skipped)
4704:
4705: Also there is a separate hash nohist_scantrondata that contains extra
4706: correction information that isn't representable in the bubble sheet
4707: file (see &scantron_getfile() for more information)
4708:
4709: After all scanlines are either valid, marked as valid or skipped, then
4710: foreach line foreach problem in the picked sequence, an ssi request is
4711: made that simulates a user submitting their selected letter(s) against
4712: the homework problem.
1.423 albertel 4713:
4714: =over 4
4715:
4716:
4717:
4718: =item defaultFormData
4719:
4720: Returns html hidden inputs used to hold context/default values.
4721:
4722: Arguments:
4723: $symb - $symb of the current resource
4724:
4725: =cut
1.422 foxr 4726:
1.81 albertel 4727: sub defaultFormData {
1.324 albertel 4728: my ($symb)=@_;
1.447 foxr 4729: return '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 4730: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
4731: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81 albertel 4732: }
4733:
1.447 foxr 4734:
1.423 albertel 4735: =pod
4736:
4737: =item getSequenceDropDown
4738:
4739: Return html dropdown of possible sequences to grade
4740:
4741: Arguments:
4742: $symb - $symb of the current resource
4743:
4744: =cut
1.422 foxr 4745:
1.75 albertel 4746: sub getSequenceDropDown {
1.423 albertel 4747: my ($symb)=@_;
1.75 albertel 4748: my $result='<select name="selectpage">'."\n";
1.423 albertel 4749: my ($titles,$symbx) = &getSymbMap();
1.137 albertel 4750: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 4751: my $ctr=0;
4752: foreach (@$titles) {
4753: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4754: $result.='<option value="'.$$symbx{$_}.'" '.
1.401 albertel 4755: ($$symbx{$_} =~ /$curpage$/ ? 'selected="selected"' : '').
1.75 albertel 4756: '>'.$showtitle.'</option>'."\n";
4757: $ctr++;
4758: }
4759: $result.= '</select>';
4760: return $result;
4761: }
4762:
1.495 albertel 4763: my %bubble_lines_per_response; # no. bubble lines for each response.
4764: # index is "symb.part_id"
4765:
4766: my %first_bubble_line; # First bubble line no. for each bubble.
4767:
1.509 raeburn 4768: my %subdivided_bubble_lines; # no. bubble lines for optionresponse,
4769: # matchresponse or rankresponse, where
4770: # an individual response can have multiple
4771: # lines
1.503 raeburn 4772:
4773: my %responsetype_per_response; # responsetype for each response
4774:
1.495 albertel 4775: # Save and restore the bubble lines array to the form env.
4776:
4777:
4778: sub save_bubble_lines {
4779: foreach my $line (keys(%bubble_lines_per_response)) {
4780: $env{"form.scantron.bubblelines.$line"} = $bubble_lines_per_response{$line};
4781: $env{"form.scantron.first_bubble_line.$line"} =
4782: $first_bubble_line{$line};
1.503 raeburn 4783: $env{"form.scantron.sub_bubblelines.$line"} =
4784: $subdivided_bubble_lines{$line};
4785: $env{"form.scantron.responsetype.$line"} =
4786: $responsetype_per_response{$line};
1.495 albertel 4787: }
4788: }
4789:
4790:
4791: sub restore_bubble_lines {
4792: my $line = 0;
4793: %bubble_lines_per_response = ();
4794: while ($env{"form.scantron.bubblelines.$line"}) {
4795: my $value = $env{"form.scantron.bubblelines.$line"};
4796: $bubble_lines_per_response{$line} = $value;
4797: $first_bubble_line{$line} =
4798: $env{"form.scantron.first_bubble_line.$line"};
1.503 raeburn 4799: $subdivided_bubble_lines{$line} =
4800: $env{"form.scantron.sub_bubblelines.$line"};
4801: $responsetype_per_response{$line} =
4802: $env{"form.scantron.responsetype.$line"};
1.495 albertel 4803: $line++;
4804: }
4805:
4806: }
4807:
4808: # Given the parsed scanline, get the response for
4809: # 'answer' number n:
4810:
4811: sub get_response_bubbles {
4812: my ($parsed_line, $response) = @_;
4813:
4814:
4815: my $bubble_line = $first_bubble_line{$response-1} +1;
4816: my $bubble_lines= $bubble_lines_per_response{$response-1};
4817:
4818: my $selected = "";
4819:
4820: for (my $bline = 0; $bline < $bubble_lines; $bline++) {
4821: $selected .= $$parsed_line{"scantron.$bubble_line.answer"}.":";
4822: $bubble_line++;
4823: }
4824: return $selected;
4825: }
1.423 albertel 4826:
4827: =pod
4828:
4829: =item scantron_filenames
4830:
4831: Returns a list of the scantron files in the current course
4832:
4833: =cut
1.422 foxr 4834:
1.202 albertel 4835: sub scantron_filenames {
1.257 albertel 4836: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
4837: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.517 raeburn 4838: my $getpropath = 1;
1.157 albertel 4839: my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
1.517 raeburn 4840: $getpropath);
1.202 albertel 4841: my @possiblenames;
1.201 albertel 4842: foreach my $filename (sort(@files)) {
1.157 albertel 4843: ($filename)=split(/&/,$filename);
4844: if ($filename!~/^scantron_orig_/) { next ; }
4845: $filename=~s/^scantron_orig_//;
1.202 albertel 4846: push(@possiblenames,$filename);
4847: }
4848: return @possiblenames;
4849: }
4850:
1.423 albertel 4851: =pod
4852:
4853: =item scantron_uploads
4854:
4855: Returns html drop-down list of scantron files in current course.
4856:
4857: Arguments:
4858: $file2grade - filename to set as selected in the dropdown
4859:
4860: =cut
1.422 foxr 4861:
1.202 albertel 4862: sub scantron_uploads {
1.209 ng 4863: my ($file2grade) = @_;
1.202 albertel 4864: my $result= '<select name="scantron_selectfile">';
4865: $result.="<option></option>";
4866: foreach my $filename (sort(&scantron_filenames())) {
1.401 albertel 4867: $result.="<option".($filename eq $file2grade ? ' selected="selected"':'').">$filename</option>\n";
1.81 albertel 4868: }
4869: $result.="</select>";
4870: return $result;
4871: }
4872:
1.423 albertel 4873: =pod
4874:
4875: =item scantron_scantab
4876:
4877: Returns html drop down of the scantron formats in the scantronformat.tab
4878: file.
4879:
4880: =cut
1.422 foxr 4881:
1.82 albertel 4882: sub scantron_scantab {
4883: my $result='<select name="scantron_format">'."\n";
1.191 albertel 4884: $result.='<option></option>'."\n";
1.518 ! raeburn 4885: my @lines = &get_scantronformat_file();
! 4886: if (@lines > 0) {
! 4887: foreach my $line (@lines) {
! 4888: next if (($line =~ /^\#/) || ($line eq ''));
! 4889: my ($name,$descrip)=split(/:/,$line);
! 4890: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
! 4891: }
1.82 albertel 4892: }
4893: $result.='</select>'."\n";
1.518 ! raeburn 4894: return $result;
! 4895: }
! 4896:
! 4897: =pod
! 4898:
! 4899: =item get_scantronformat_file
! 4900:
! 4901: Returns an array containing lines from the scantron format file for
! 4902: the domain of the course.
! 4903:
! 4904: If a url for a custom.tab file is listed in domain's configuration.db,
! 4905: lines are from this file.
! 4906:
! 4907: Otherwise, if a default.tab has been published in RES space by the
! 4908: domainconfig user, lines are from this file.
! 4909:
! 4910: Otherwise, fall back to getting lines from the legacy file on the
! 4911: local server: /home/httpd/lonTabs/scantronformat.tab
1.82 albertel 4912:
1.518 ! raeburn 4913: =cut
! 4914:
! 4915: sub get_scantronformat_file {
! 4916: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
! 4917: my %domconfig = &Apache::lonnet::get_dom('configuration',['scantron'],$cdom);
! 4918: my $gottab = 0;
! 4919: my @lines;
! 4920: if (ref($domconfig{'scantron'}) eq 'HASH') {
! 4921: if ($domconfig{'scantron'}{'scantronformat'} ne '') {
! 4922: my $formatfile = &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
! 4923: if ($formatfile ne '-1') {
! 4924: @lines = split("\n",$formatfile,-1);
! 4925: $gottab = 1;
! 4926: }
! 4927: }
! 4928: }
! 4929: if (!$gottab) {
! 4930: my $confname = $cdom.'-domainconfig';
! 4931: my $default = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
! 4932: my $formatfile = &Apache::lonnet::getfile($default);
! 4933: if ($formatfile ne '-1') {
! 4934: @lines = split("\n",$formatfile,-1);
! 4935: $gottab = 1;
! 4936: }
! 4937: }
! 4938: if (!$gottab) {
! 4939: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
! 4940: @lines = <$fh>;
! 4941: close($fh);
! 4942: }
! 4943: return @lines;
1.82 albertel 4944: }
4945:
1.423 albertel 4946: =pod
4947:
4948: =item scantron_CODElist
4949:
4950: Returns html drop down of the saved CODE lists from current course,
4951: generated from earlier printings.
4952:
4953: =cut
1.422 foxr 4954:
1.186 albertel 4955: sub scantron_CODElist {
1.257 albertel 4956: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
4957: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 4958: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
4959: my $namechoice='<option></option>';
1.225 albertel 4960: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 4961: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 4962: if ($name =~ /^type\0/) { next; }
1.186 albertel 4963: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
4964: }
4965: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
4966: return $namechoice;
4967: }
4968:
1.423 albertel 4969: =pod
4970:
4971: =item scantron_CODEunique
4972:
4973: Returns the html for "Each CODE to be used once" radio.
4974:
4975: =cut
1.422 foxr 4976:
1.186 albertel 4977: sub scantron_CODEunique {
1.381 albertel 4978: my $result='<span style="white-space: nowrap;">
1.272 albertel 4979: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 4980: value="yes" checked="checked" />'.&mt('Yes').' </label>
1.381 albertel 4981: </span>
4982: <span style="white-space: nowrap;">
1.272 albertel 4983: <label><input type="radio" name="scantron_CODEunique"
1.423 albertel 4984: value="no" />'.&mt('No').' </label>
1.381 albertel 4985: </span>';
1.186 albertel 4986: return $result;
4987: }
1.423 albertel 4988:
4989: =pod
4990:
4991: =item scantron_selectphase
4992:
4993: Generates the initial screen to start the bubble sheet process.
4994: Allows for - starting a grading run.
1.424 albertel 4995: - downloading existing scan data (original, corrected
1.423 albertel 4996: or skipped info)
4997:
4998: - uploading new scan data
4999:
5000: Arguments:
5001: $r - The Apache request object
5002: $file2grade - name of the file that contain the scanned data to score
5003:
5004: =cut
1.186 albertel 5005:
1.75 albertel 5006: sub scantron_selectphase {
1.209 ng 5007: my ($r,$file2grade) = @_;
1.324 albertel 5008: my ($symb)=&get_symb($r);
1.75 albertel 5009: if (!$symb) {return '';}
1.423 albertel 5010: my $sequence_selector=&getSequenceDropDown($symb);
1.324 albertel 5011: my $default_form_data=&defaultFormData($symb);
5012: my $grading_menu_button=&show_grading_menu_form($symb);
1.209 ng 5013: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 5014: my $format_selector=&scantron_scantab();
1.186 albertel 5015: my $CODE_selector=&scantron_CODElist();
5016: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 5017: my $result;
1.422 foxr 5018:
1.513 foxr 5019: $ssi_error = 0;
5020:
1.422 foxr 5021: # Chunk of form to prompt for a file to grade and how:
5022:
1.489 albertel 5023: $result.= '
5024: <br />
5025: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
5026: <input type="hidden" name="command" value="scantron_warning" />
5027: '.$default_form_data.'
5028: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5029: '.&Apache::loncommon::start_data_table_header_row().'
5030: <th colspan="2">
1.492 albertel 5031: '.&mt('Specify file and which Folder/Sequence to grade').'
1.489 albertel 5032: </th>
5033: '.&Apache::loncommon::end_data_table_header_row().'
5034: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5035: <td> '.&mt('Sequence to grade:').' </td><td> '.$sequence_selector.' </td>
1.489 albertel 5036: '.&Apache::loncommon::end_data_table_row().'
5037: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5038: <td> '.&mt('Filename of scoring office file:').' </td><td> '.$file_selector.' </td>
1.489 albertel 5039: '.&Apache::loncommon::end_data_table_row().'
5040: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5041: <td> '.&mt('Format of data file:').' </td><td> '.$format_selector.' </td>
1.489 albertel 5042: '.&Apache::loncommon::end_data_table_row().'
5043: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5044: <td> '.&mt('Saved CODEs to validate against:').' </td><td> '.$CODE_selector.' </td>
1.489 albertel 5045: '.&Apache::loncommon::end_data_table_row().'
5046: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5047: <td> '.&mt('Each CODE is only to be used once:').'</td><td> '.$CODE_unique.' </td>
1.489 albertel 5048: '.&Apache::loncommon::end_data_table_row().'
5049: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5050: <td> '.&mt('Options:').' </td>
1.187 albertel 5051: <td>
1.492 albertel 5052: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> '.&mt('Do only previously skipped records').'</label> <br />
5053: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> '.&mt('Remove all existing corrections').'</label> <br />
5054: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> '.&mt('Skip hidden resources when grading').'</label>
1.187 albertel 5055: </td>
1.489 albertel 5056: '.&Apache::loncommon::end_data_table_row().'
5057: '.&Apache::loncommon::start_data_table_row().'
1.174 albertel 5058: <td colspan="2">
1.492 albertel 5059: <input type="submit" value="'.&mt('Grading: Validate Scantron Records').'" />
1.162 albertel 5060: </td>
1.489 albertel 5061: '.&Apache::loncommon::end_data_table_row().'
5062: '.&Apache::loncommon::end_data_table().'
5063: </form>
5064: ';
1.162 albertel 5065:
5066: $r->print($result);
5067:
1.257 albertel 5068: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
5069: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 5070:
1.422 foxr 5071: # Chunk of form to prompt for a scantron file upload.
5072:
1.489 albertel 5073: $r->print('
5074: <br />
5075: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5076: '.&Apache::loncommon::start_data_table_header_row().'
5077: <th>
1.492 albertel 5078: '.&mt('Specify a Scantron data file to upload.').'
1.489 albertel 5079: </th>
5080: '.&Apache::loncommon::end_data_table_header_row().'
5081: '.&Apache::loncommon::start_data_table_row().'
1.162 albertel 5082: <td>
1.489 albertel 5083: ');
1.324 albertel 5084: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 5085: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
5086: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.492 albertel 5087: $r->print('
1.174 albertel 5088: <script type="text/javascript" language="javascript">
5089: function checkUpload(formname) {
5090: if (formname.upfile.value == "") {
1.492 albertel 5091: alert("'.&mt('Please use the browse button to select a file from your local directory.').'");
1.174 albertel 5092: return false;
5093: }
5094: formname.submit();
5095: }
5096: </script>
5097:
1.492 albertel 5098: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
5099: '.$default_form_data.'
5100: <input name="courseid" type="hidden" value="'.$cnum.'" />
5101: <input name="domainid" type="hidden" value="'.$cdom.'" />
5102: <input name="command" value="scantronupload_save" type="hidden" />
5103: '.&mt('File to upload: [_1]','<input type="file" name="upfile" size="50" />').'
1.174 albertel 5104: <br />
1.492 albertel 5105: <input type="button" onClick="javascript:checkUpload(this.form);" value="'.&mt('Upload Scantron Data').'" />
1.174 albertel 5106: </form>
1.492 albertel 5107: ');
1.162 albertel 5108:
1.489 albertel 5109: $r->print('
1.162 albertel 5110: </td>
1.489 albertel 5111: '.&Apache::loncommon::end_data_table_row().'
5112: '.&Apache::loncommon::end_data_table().'
5113: ');
1.162 albertel 5114: }
1.422 foxr 5115:
5116: # Chunk of the form that prompts to view a scoring office file,
5117: # corrected file, skipped records in a file.
5118:
1.489 albertel 5119: $r->print('
5120: <br />
5121: <form action="/adm/grades" name="scantron_download">
5122: '.$default_form_data.'
5123: <input type="hidden" name="command" value="scantron_download" />
5124: '.&Apache::loncommon::start_data_table('LC_scantron_action').'
5125: '.&Apache::loncommon::start_data_table_header_row().'
5126: <th>
1.492 albertel 5127: '.&mt('Download a scoring office file').'
1.489 albertel 5128: </th>
5129: '.&Apache::loncommon::end_data_table_header_row().'
5130: '.&Apache::loncommon::start_data_table_row().'
1.492 albertel 5131: <td> '.&mt('Filename of scoring office file: [_1]',$file_selector).'
1.489 albertel 5132: <br />
1.492 albertel 5133: <input type="submit" value="'.&mt('Download: Show List of Associated Files').'" />
1.489 albertel 5134: '.&Apache::loncommon::end_data_table_row().'
5135: '.&Apache::loncommon::end_data_table().'
5136: </form>
5137: <br />
5138: ');
1.162 albertel 5139:
1.457 banghart 5140: &Apache::lonpickcode::code_list($r,2);
5141: $r->print($grading_menu_button);
1.162 albertel 5142: return
1.75 albertel 5143: }
5144:
1.423 albertel 5145: =pod
5146:
5147: =item get_scantron_config
5148:
5149: Parse and return the scantron configuration line selected as a
5150: hash of configuration file fields.
5151:
5152: Arguments:
5153: which - the name of the configuration to parse from the file.
5154:
5155:
5156: Returns:
5157: If the named configuration is not in the file, an empty
5158: hash is returned.
5159: a hash with the fields
5160: name - internal name for the this configuration setup
5161: description - text to display to operator that describes this config
5162: CODElocation - if 0 or the string 'none'
5163: - no CODE exists for this config
5164: if -1 || the string 'letter'
5165: - a CODE exists for this config and is
5166: a string of letters
5167: Unsupported value (but planned for future support)
5168: if a positive integer
5169: - The CODE exists as the first n items from
5170: the question section of the form
5171: if the string 'number'
5172: - The CODE exists for this config and is
5173: a string of numbers
5174: CODEstart - (only matter if a CODE exists) column in the line where
5175: the CODE starts
5176: CODElength - length of the CODE
5177: IDstart - column where the student ID number starts
5178: IDlength - length of the student ID info
5179: Qstart - column where the information from the bubbled
5180: 'questions' start
5181: Qlength - number of columns comprising a single bubble line from
5182: the sheet. (usually either 1 or 10)
1.424 albertel 5183: Qon - either a single character representing the character used
1.423 albertel 5184: to signal a bubble was chosen in the positional setup, or
5185: the string 'letter' if the letter of the chosen bubble is
5186: in the final, or 'number' if a number representing the
5187: chosen bubble is in the file (1->A 0->J)
1.424 albertel 5188: Qoff - the character used to represent that a bubble was
5189: left blank
1.423 albertel 5190: PaperID - if the scanning process generates a unique number for each
5191: sheet scanned the column that this ID number starts in
5192: PaperIDlength - number of columns that comprise the unique ID number
5193: for the sheet of paper
1.424 albertel 5194: FirstName - column that the first name starts in
1.423 albertel 5195: FirstNameLength - number of columns that the first name spans
5196:
5197: LastName - column that the last name starts in
5198: LastNameLength - number of columns that the last name spans
5199:
5200: =cut
1.422 foxr 5201:
1.82 albertel 5202: sub get_scantron_config {
5203: my ($which) = @_;
1.518 ! raeburn 5204: my @lines = &get_scantronformat_file();
1.82 albertel 5205: my %config;
1.157 albertel 5206: #FIXME probably should move to XML it has already gotten a bit much now
1.518 ! raeburn 5207: foreach my $line (@lines) {
1.82 albertel 5208: my ($name,$descrip)=split(/:/,$line);
5209: if ($name ne $which ) { next; }
5210: chomp($line);
5211: my @config=split(/:/,$line);
5212: $config{'name'}=$config[0];
5213: $config{'description'}=$config[1];
5214: $config{'CODElocation'}=$config[2];
5215: $config{'CODEstart'}=$config[3];
5216: $config{'CODElength'}=$config[4];
5217: $config{'IDstart'}=$config[5];
5218: $config{'IDlength'}=$config[6];
5219: $config{'Qstart'}=$config[7];
1.497 foxr 5220: $config{'Qlength'}=$config[8];
1.82 albertel 5221: $config{'Qoff'}=$config[9];
5222: $config{'Qon'}=$config[10];
1.157 albertel 5223: $config{'PaperID'}=$config[11];
5224: $config{'PaperIDlength'}=$config[12];
5225: $config{'FirstName'}=$config[13];
5226: $config{'FirstNamelength'}=$config[14];
5227: $config{'LastName'}=$config[15];
5228: $config{'LastNamelength'}=$config[16];
1.82 albertel 5229: last;
5230: }
5231: return %config;
5232: }
5233:
1.423 albertel 5234: =pod
5235:
5236: =item username_to_idmap
5237:
5238: creates a hash keyed by student id with values of the corresponding
5239: student username:domain.
5240:
5241: Arguments:
5242:
5243: $classlist - reference to the class list hash. This is a hash
5244: keyed by student name:domain whose elements are references
1.424 albertel 5245: to arrays containing various chunks of information
1.423 albertel 5246: about the student. (See loncoursedata for more info).
5247:
5248: Returns
5249: %idmap - the constructed hash
5250:
5251: =cut
5252:
1.82 albertel 5253: sub username_to_idmap {
5254: my ($classlist)= @_;
5255: my %idmap;
5256: foreach my $student (keys(%$classlist)) {
5257: $idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
5258: $student;
5259: }
5260: return %idmap;
5261: }
1.423 albertel 5262:
5263: =pod
5264:
1.424 albertel 5265: =item scantron_fixup_scanline
1.423 albertel 5266:
5267: Process a requested correction to a scanline.
5268:
5269: Arguments:
5270: $scantron_config - hash from &get_scantron_config()
5271: $scan_data - hash of correction information
5272: (see &scantron_getfile())
5273: $line - existing scanline
5274: $whichline - line number of the passed in scanline
5275: $field - type of change to process
5276: (either
5277: 'ID' -> correct the student ID number
5278: 'CODE' -> correct the CODE
5279: 'answer' -> fixup the submitted answers)
5280:
5281: $args - hash of additional info,
5282: - 'ID'
5283: 'newid' -> studentID to use in replacement
1.424 albertel 5284: of existing one
1.423 albertel 5285: - 'CODE'
5286: 'CODE_ignore_dup' - set to true if duplicates
5287: should be ignored.
5288: 'CODE' - is new code or 'use_unfound'
1.424 albertel 5289: if the existing unfound code should
1.423 albertel 5290: be used as is
5291: - 'answer'
5292: 'response' - new answer or 'none' if blank
5293: 'question' - the bubble line to change
1.503 raeburn 5294: 'questionnum' - the question identifier,
5295: may include subquestion.
1.423 albertel 5296:
5297: Returns:
5298: $line - the modified scanline
5299:
5300: Side effects:
5301: $scan_data - may be updated
5302:
5303: =cut
5304:
1.82 albertel 5305:
1.157 albertel 5306: sub scantron_fixup_scanline {
5307: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
5308: if ($field eq 'ID') {
5309: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 5310: return ($line,1,'New value too large');
1.157 albertel 5311: }
5312: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
5313: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
5314: $args->{'newid'});
5315: }
5316: substr($line,$$scantron_config{'IDstart'}-1,
5317: $$scantron_config{'IDlength'})=$args->{'newid'};
5318: if ($args->{'newid'}=~/^\s*$/) {
5319: &scan_data($scan_data,"$whichline.user",
5320: $args->{'username'}.':'.$args->{'domain'});
5321: }
1.186 albertel 5322: } elsif ($field eq 'CODE') {
1.192 albertel 5323: if ($args->{'CODE_ignore_dup'}) {
5324: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
5325: }
5326: &scan_data($scan_data,"$whichline.useCODE",'1');
5327: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 5328: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
5329: return ($line,1,'New CODE value too large');
5330: }
5331: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
5332: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
5333: }
5334: substr($line,$$scantron_config{'CODEstart'}-1,
5335: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 5336: }
1.157 albertel 5337: } elsif ($field eq 'answer') {
1.497 foxr 5338: my $length=$scantron_config->{'Qlength'};
1.157 albertel 5339: my $off=$scantron_config->{'Qoff'};
5340: my $on=$scantron_config->{'Qon'};
1.497 foxr 5341: my $answer=${off}x$length;
5342: if ($args->{'response'} eq 'none') {
5343: &scan_data($scan_data,
1.503 raeburn 5344: "$whichline.no_bubble.".$args->{'questionnum'},'1');
1.497 foxr 5345: } else {
5346: if ($on eq 'letter') {
5347: my @alphabet=('A'..'Z');
5348: $answer=$alphabet[$args->{'response'}];
5349: } elsif ($on eq 'number') {
5350: $answer=$args->{'response'}+1;
5351: if ($answer == 10) { $answer = '0'; }
1.274 albertel 5352: } else {
1.497 foxr 5353: substr($answer,$args->{'response'},1)=$on;
1.274 albertel 5354: }
1.497 foxr 5355: &scan_data($scan_data,
1.503 raeburn 5356: "$whichline.no_bubble.".$args->{'questionnum'},undef,'1');
1.157 albertel 5357: }
1.497 foxr 5358: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
5359: substr($line,$where-1,$length)=$answer;
1.157 albertel 5360: }
5361: return $line;
5362: }
1.423 albertel 5363:
5364: =pod
5365:
5366: =item scan_data
5367:
5368: Edit or look up an item in the scan_data hash.
5369:
5370: Arguments:
5371: $scan_data - The hash (see scantron_getfile)
5372: $key - shorthand of the key to edit (actual key is
1.424 albertel 5373: scantronfilename_key).
1.423 albertel 5374: $data - New value of the hash entry.
5375: $delete - If true, the entry is removed from the hash.
5376:
5377: Returns:
5378: The new value of the hash table field (undefined if deleted).
5379:
5380: =cut
5381:
5382:
1.157 albertel 5383: sub scan_data {
5384: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 5385: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 5386: if (defined($value)) {
5387: $scan_data->{$filename.'_'.$key} = $value;
5388: }
5389: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
5390: return $scan_data->{$filename.'_'.$key};
5391: }
1.423 albertel 5392:
1.495 albertel 5393: # ----- These first few routines are general use routines.----
5394:
5395: # Return the number of occurences of a pattern in a string.
5396:
5397: sub occurence_count {
5398: my ($string, $pattern) = @_;
5399:
5400: my @matches = ($string =~ /$pattern/g);
5401:
5402: return scalar(@matches);
5403: }
5404:
5405:
5406: # Take a string known to have digits and convert all the
5407: # digits into letters in the range J,A..I.
5408:
5409: sub digits_to_letters {
5410: my ($input) = @_;
5411:
5412: my @alphabet = ('J', 'A'..'I');
5413:
5414: my @input = split(//, $input);
5415: my $output ='';
5416: for (my $i = 0; $i < scalar(@input); $i++) {
5417: if ($input[$i] =~ /\d/) {
5418: $output .= $alphabet[$input[$i]];
5419: } else {
5420: $output .= $input[$i];
5421: }
5422: }
5423: return $output;
5424: }
5425:
1.423 albertel 5426: =pod
5427:
5428: =item scantron_parse_scanline
5429:
5430: Decodes a scanline from the selected scantron file
5431:
5432: Arguments:
5433: line - The text of the scantron file line to process
5434: whichline - Line number
5435: scantron_config - Hash describing the format of the scantron lines.
5436: scan_data - Hash of extra information about the scanline
5437: (see scantron_getfile for more information)
5438: just_header - True if should not process question answers but only
5439: the stuff to the left of the answers.
5440: Returns:
5441: Hash containing the result of parsing the scanline
5442:
5443: Keys are all proceeded by the string 'scantron.'
5444:
5445: CODE - the CODE in use for this scanline
5446: useCODE - 1 if the CODE is invalid but it usage has been forced
5447: by the operator
5448: CODE_ignore_dup - 1 if the CODE is a duplicated use when unique
5449: CODEs were selected, but the usage has been
5450: forced by the operator
5451: ID - student ID
5452: PaperID - if used, the ID number printed on the sheet when the
5453: paper was scanned
5454: FirstName - first name from the sheet
5455: LastName - last name from the sheet
5456:
5457: if just_header was not true these key may also exist
5458:
1.447 foxr 5459: missingerror - a list of bubble ranges that are considered to be answers
5460: to a single question that don't have any bubbles filled in.
5461: Of the form questionnumber:firstbubblenumber:count.
5462: doubleerror - a list of bubble ranges that are considered to be answers
5463: to a single question that have more than one bubble filled in.
5464: Of the form questionnumber::firstbubblenumber:count
5465:
5466: In the above, count is the number of bubble responses in the
5467: input line needed to represent the possible answers to the question.
5468: e.g. a radioresponse with 15 choices in an answer sheet with 10 choices
5469: per line would have count = 2.
5470:
1.423 albertel 5471: maxquest - the number of the last bubble line that was parsed
5472:
5473: (<number> starts at 1)
5474: <number>.answer - zero or more letters representing the selected
5475: letters from the scanline for the bubble line
5476: <number>.
5477: if blank there was either no bubble or there where
5478: multiple bubbles, (consult the keys missingerror and
5479: doubleerror if this is an error condition)
5480:
5481: =cut
5482:
1.82 albertel 5483: sub scantron_parse_scanline {
1.423 albertel 5484: my ($line,$whichline,$scantron_config,$scan_data,$just_header)=@_;
1.470 foxr 5485:
1.82 albertel 5486: my %record;
1.422 foxr 5487: my $questions=substr($line,$$scantron_config{'Qstart'}-1); # Answers
5488: my $data=substr($line,0,$$scantron_config{'Qstart'}-1); # earlier stuff
1.278 albertel 5489: if (!($$scantron_config{'CODElocation'} eq 0 ||
5490: $$scantron_config{'CODElocation'} eq 'none')) {
5491: if ($$scantron_config{'CODElocation'} < 0 ||
5492: $$scantron_config{'CODElocation'} eq 'letter' ||
5493: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 5494: $record{'scantron.CODE'}=substr($data,
5495: $$scantron_config{'CODEstart'}-1,
1.83 albertel 5496: $$scantron_config{'CODElength'});
1.191 albertel 5497: if (&scan_data($scan_data,"$whichline.useCODE")) {
5498: $record{'scantron.useCODE'}=1;
5499: }
1.192 albertel 5500: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
5501: $record{'scantron.CODE_ignore_dup'}=1;
5502: }
1.82 albertel 5503: } else {
5504: #FIXME interpret first N questions
5505: }
5506: }
1.83 albertel 5507: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
5508: $$scantron_config{'IDlength'});
1.157 albertel 5509: $record{'scantron.PaperID'}=
5510: substr($data,$$scantron_config{'PaperID'}-1,
5511: $$scantron_config{'PaperIDlength'});
5512: $record{'scantron.FirstName'}=
5513: substr($data,$$scantron_config{'FirstName'}-1,
5514: $$scantron_config{'FirstNamelength'});
5515: $record{'scantron.LastName'}=
5516: substr($data,$$scantron_config{'LastName'}-1,
5517: $$scantron_config{'LastNamelength'});
1.423 albertel 5518: if ($just_header) { return \%record; }
1.194 albertel 5519:
1.82 albertel 5520: my @alphabet=('A'..'Z');
5521: my $questnum=0;
1.447 foxr 5522: my $ansnum =1; # Multiple 'answer lines'/question.
5523:
1.470 foxr 5524: chomp($questions); # Get rid of any trailing \n.
5525: $questions =~ s/\r$//; # Get rid of trailing \r too (MAC or Win uploads).
5526: while (length($questions)) {
1.447 foxr 5527: my $answers_needed = $bubble_lines_per_response{$questnum};
1.503 raeburn 5528: my $answer_length = ($$scantron_config{'Qlength'} * $answers_needed)
5529: || 1;
5530: $questnum++;
5531: my $quest_id = $questnum;
5532: my $currentquest = substr($questions,0,$answer_length);
5533: $questions = substr($questions,$answer_length);
5534: if (length($currentquest) < $answer_length) { next; }
5535:
5536: if ($subdivided_bubble_lines{$questnum-1} =~ /,/) {
5537: my $subquestnum = 1;
5538: my $subquestions = $currentquest;
5539: my @subanswers_needed =
5540: split(/,/,$subdivided_bubble_lines{$questnum-1});
5541: foreach my $subans (@subanswers_needed) {
5542: my $subans_length =
5543: ($$scantron_config{'Qlength'} * $subans) || 1;
5544: my $currsubquest = substr($subquestions,0,$subans_length);
5545: $subquestions = substr($subquestions,$subans_length);
5546: $quest_id = "$questnum.$subquestnum";
5547: if (($$scantron_config{'Qon'} eq 'letter') ||
5548: ($$scantron_config{'Qon'} eq 'number')) {
5549: $ansnum = &scantron_validator_lettnum($ansnum,
5550: $questnum,$quest_id,$subans,$currsubquest,$whichline,
5551: \@alphabet,\%record,$scantron_config,$scan_data);
5552: } else {
5553: $ansnum = &scantron_validator_positional($ansnum,
5554: $questnum,$quest_id,$subans,$currsubquest,$whichline, \@alphabet,\%record,$scantron_config,$scan_data);
5555: }
5556: $subquestnum ++;
5557: }
5558: } else {
5559: if (($$scantron_config{'Qon'} eq 'letter') ||
5560: ($$scantron_config{'Qon'} eq 'number')) {
5561: $ansnum = &scantron_validator_lettnum($ansnum,$questnum,
5562: $quest_id,$answers_needed,$currentquest,$whichline,
5563: \@alphabet,\%record,$scantron_config,$scan_data);
5564: } else {
5565: $ansnum = &scantron_validator_positional($ansnum,$questnum,
5566: $quest_id,$answers_needed,$currentquest,$whichline,
5567: \@alphabet,\%record,$scantron_config,$scan_data);
5568: }
5569: }
5570: }
5571: $record{'scantron.maxquest'}=$questnum;
5572: return \%record;
5573: }
1.447 foxr 5574:
1.503 raeburn 5575: sub scantron_validator_lettnum {
5576: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,$whichline,
5577: $alphabet,$record,$scantron_config,$scan_data) = @_;
5578:
5579: # Qon 'letter' implies for each slot in currquest we have:
5580: # ? or * for doubles, a letter in A-Z for a bubble, and
5581: # about anything else (esp. a value of Qoff) for missing
5582: # bubbles.
5583: #
5584: # Qon 'number' implies each slot gives a digit that indexes the
5585: # bubbles filled, or Qoff, or a non-number for unbubbled lines,
5586: # and * or ? for double bubbles on a single line.
5587: #
1.447 foxr 5588:
1.503 raeburn 5589: my $matchon;
5590: if ($$scantron_config{'Qon'} eq 'letter') {
5591: $matchon = '[A-Z]';
5592: } elsif ($$scantron_config{'Qon'} eq 'number') {
5593: $matchon = '\d';
5594: }
5595: my $occurrences = 0;
5596: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
5597: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 5598: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
5599: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
5600: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
5601: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 5602: my @singlelines = split('',$currquest);
5603: foreach my $entry (@singlelines) {
5604: $occurrences = &occurence_count($entry,$matchon);
5605: if ($occurrences > 1) {
5606: last;
5607: }
5608: }
5609: } else {
5610: $occurrences = &occurence_count($currquest,$matchon);
5611: }
5612: if (($currquest =~ /\?/ || $currquest =~ /\*/) || ($occurrences > 1)) {
5613: push(@{$record->{'scantron.doubleerror'}},$quest_id);
5614: for (my $ans=0; $ans<$answers_needed; $ans++) {
5615: my $bubble = substr($currquest,$ans,1);
5616: if ($bubble =~ /$matchon/ ) {
5617: if ($$scantron_config{'Qon'} eq 'number') {
5618: if ($bubble == 0) {
5619: $bubble = 10;
5620: }
5621: $record->{"scantron.$ansnum.answer"} =
5622: $alphabet->[$bubble-1];
5623: } else {
5624: $record->{"scantron.$ansnum.answer"} = $bubble;
5625: }
5626: } else {
5627: $record->{"scantron.$ansnum.answer"}='';
5628: }
5629: $ansnum++;
5630: }
5631: } elsif (!defined($currquest)
5632: || (&occurence_count($currquest, $$scantron_config{'Qoff'}) == length($currquest))
5633: || (&occurence_count($currquest,$matchon) == 0)) {
5634: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
5635: $record->{"scantron.$ansnum.answer"}='';
5636: $ansnum++;
5637: }
5638: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
5639: push(@{$record->{'scantron.missingerror'}},$quest_id);
5640: }
5641: } else {
5642: if ($$scantron_config{'Qon'} eq 'number') {
5643: $currquest = &digits_to_letters($currquest);
5644: }
5645: for (my $ans=0; $ans<$answers_needed; $ans++) {
5646: my $bubble = substr($currquest,$ans,1);
5647: $record->{"scantron.$ansnum.answer"} = $bubble;
5648: $ansnum++;
5649: }
5650: }
5651: return $ansnum;
5652: }
1.447 foxr 5653:
1.503 raeburn 5654: sub scantron_validator_positional {
5655: my ($ansnum,$questnum,$quest_id,$answers_needed,$currquest,
5656: $whichline,$alphabet,$record,$scantron_config,$scan_data) = @_;
1.447 foxr 5657:
1.503 raeburn 5658: # Otherwise there's a positional notation;
5659: # each bubble line requires Qlength items, and there are filled in
5660: # bubbles for each case where there 'Qon' characters.
5661: #
1.447 foxr 5662:
1.503 raeburn 5663: my @array=split($$scantron_config{'Qon'},$currquest,-1);
1.447 foxr 5664:
1.503 raeburn 5665: # If the split only gives us one element.. the full length of the
5666: # answer string, no bubbles are filled in:
1.447 foxr 5667:
1.507 raeburn 5668: if ($answers_needed eq '') {
5669: return;
5670: }
5671:
1.503 raeburn 5672: if (length($array[0]) eq $$scantron_config{'Qlength'}*$answers_needed) {
5673: for (my $ans=0; $ans<$answers_needed; $ans++ ) {
5674: $record->{"scantron.$ansnum.answer"}='';
5675: $ansnum++;
5676: }
5677: if (!&scan_data($scan_data,"$whichline.no_bubble.$quest_id")) {
5678: push(@{$record->{"scantron.missingerror"}},$quest_id);
5679: }
5680: } elsif (scalar(@array) == 2) {
5681: my $location = length($array[0]);
5682: my $line_num = int($location / $$scantron_config{'Qlength'});
5683: my $bubble = $alphabet->[$location % $$scantron_config{'Qlength'}];
5684: for (my $ans=0; $ans<$answers_needed; $ans++) {
5685: if ($ans eq $line_num) {
5686: $record->{"scantron.$ansnum.answer"} = $bubble;
5687: } else {
5688: $record->{"scantron.$ansnum.answer"} = ' ';
5689: }
5690: $ansnum++;
5691: }
5692: } else {
5693: # If there's more than one instance of a bubble character
5694: # That's a double bubble; with positional notation we can
5695: # record all the bubbles filled in as well as the
5696: # fact this response consists of multiple bubbles.
5697: #
5698: if (($responsetype_per_response{$questnum-1} eq 'essayresponse') ||
5699: ($responsetype_per_response{$questnum-1} eq 'formularesponse') ||
1.510 raeburn 5700: ($responsetype_per_response{$questnum-1} eq 'stringresponse') ||
5701: ($responsetype_per_response{$questnum-1} eq 'imageresponse') ||
5702: ($responsetype_per_response{$questnum-1} eq 'reactionresponse') ||
5703: ($responsetype_per_response{$questnum-1} eq 'organicresponse')) {
1.503 raeburn 5704: my $doubleerror = 0;
5705: while (($currquest >= $$scantron_config{'Qlength'}) &&
5706: (!$doubleerror)) {
5707: my $currline = substr($currquest,0,$$scantron_config{'Qlength'});
5708: $currquest = substr($currquest,$$scantron_config{'Qlength'});
5709: my @currarray = split($$scantron_config{'Qon'},$currline,-1);
5710: if (length(@currarray) > 2) {
5711: $doubleerror = 1;
5712: }
5713: }
5714: if ($doubleerror) {
5715: push(@{$record->{'scantron.doubleerror'}},$quest_id);
5716: }
5717: } else {
5718: push(@{$record->{'scantron.doubleerror'}},$quest_id);
5719: }
5720: my $item = $ansnum;
5721: for (my $ans=0; $ans<$answers_needed; $ans++) {
5722: $record->{"scantron.$item.answer"} = '';
5723: $item ++;
5724: }
1.447 foxr 5725:
1.503 raeburn 5726: my @ans=@array;
5727: my $i=0;
5728: my $increment = 0;
5729: while ($#ans) {
5730: $i+=length($ans[0]) + $increment;
5731: my $line = int($i/$$scantron_config{'Qlength'} + $ansnum);
5732: my $bubble = $i%$$scantron_config{'Qlength'};
5733: $record->{"scantron.$line.answer"}.=$alphabet->[$bubble];
5734: shift(@ans);
5735: $increment = 1;
5736: }
5737: $ansnum += $answers_needed;
1.82 albertel 5738: }
1.503 raeburn 5739: return $ansnum;
1.82 albertel 5740: }
5741:
1.423 albertel 5742: =pod
5743:
5744: =item scantron_add_delay
5745:
5746: Adds an error message that occurred during the grading phase to a
5747: queue of messages to be shown after grading pass is complete
5748:
5749: Arguments:
1.424 albertel 5750: $delayqueue - arrary ref of hash ref of error messages
1.423 albertel 5751: $scanline - the scanline that caused the error
5752: $errormesage - the error message
5753: $errorcode - a numeric code for the error
5754:
5755: Side Effects:
1.424 albertel 5756: updates the $delayqueue to have a new hash ref of the error
1.423 albertel 5757:
5758: =cut
5759:
1.82 albertel 5760: sub scantron_add_delay {
1.140 albertel 5761: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
5762: push(@$delayqueue,
5763: {'line' => $scanline, 'emsg' => $errormessage,
5764: 'ecode' => $errorcode }
5765: );
1.82 albertel 5766: }
5767:
1.423 albertel 5768: =pod
5769:
5770: =item scantron_find_student
5771:
1.424 albertel 5772: Finds the username for the current scanline
5773:
5774: Arguments:
5775: $scantron_record - hash result from scantron_parse_scanline
5776: $scan_data - hash of correction information
5777: (see &scantron_getfile() form more information)
5778: $idmap - hash from &username_to_idmap()
5779: $line - number of current scanline
5780:
5781: Returns:
5782: Either 'username:domain' or undef if unknown
5783:
1.423 albertel 5784: =cut
5785:
1.82 albertel 5786: sub scantron_find_student {
1.157 albertel 5787: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 5788: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 5789: if ($scanID =~ /^\s*$/) {
5790: return &scan_data($scan_data,"$line.user");
5791: }
1.83 albertel 5792: foreach my $id (keys(%$idmap)) {
1.157 albertel 5793: if (lc($id) eq lc($scanID)) {
5794: return $$idmap{$id};
5795: }
1.83 albertel 5796: }
5797: return undef;
5798: }
5799:
1.423 albertel 5800: =pod
5801:
5802: =item scantron_filter
5803:
1.424 albertel 5804: Filter sub for lonnavmaps, filters out hidden resources if ignore
5805: hidden resources was selected
5806:
1.423 albertel 5807: =cut
5808:
1.83 albertel 5809: sub scantron_filter {
5810: my ($curres)=@_;
1.331 albertel 5811:
5812: if (ref($curres) && $curres->is_problem()) {
5813: # if the user has asked to not have either hidden
5814: # or 'randomout' controlled resources to be graded
5815: # don't include them
5816: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
5817: && $curres->randomout) {
5818: return 0;
5819: }
1.83 albertel 5820: return 1;
5821: }
5822: return 0;
1.82 albertel 5823: }
5824:
1.423 albertel 5825: =pod
5826:
5827: =item scantron_process_corrections
5828:
1.424 albertel 5829: Gets correction information out of submitted form data and corrects
5830: the scanline
5831:
1.423 albertel 5832: =cut
5833:
1.157 albertel 5834: sub scantron_process_corrections {
5835: my ($r) = @_;
1.257 albertel 5836: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 5837: my ($scanlines,$scan_data)=&scantron_getfile();
5838: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 5839: my $which=$env{'form.scantron_line'};
1.200 albertel 5840: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 5841: my ($skip,$err,$errmsg);
1.257 albertel 5842: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 5843: $skip=1;
1.257 albertel 5844: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
5845: my $newstudent=$env{'form.scantron_username'}.':'.
5846: $env{'form.scantron_domain'};
1.157 albertel 5847: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
5848: ($line,$err,$errmsg)=
5849: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
5850: 'ID',{'newid'=>$newid,
1.257 albertel 5851: 'username'=>$env{'form.scantron_username'},
5852: 'domain'=>$env{'form.scantron_domain'}});
5853: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
5854: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 5855: my $newCODE;
1.192 albertel 5856: my %args;
1.190 albertel 5857: if ($resolution eq 'use_unfound') {
1.191 albertel 5858: $newCODE='use_unfound';
1.190 albertel 5859: } elsif ($resolution eq 'use_found') {
1.257 albertel 5860: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 5861: } elsif ($resolution eq 'use_typed') {
1.257 albertel 5862: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 5863: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 5864: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 5865: }
1.257 albertel 5866: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 5867: $args{'CODE_ignore_dup'}=1;
5868: }
5869: $args{'CODE'}=$newCODE;
1.186 albertel 5870: ($line,$err,$errmsg)=
5871: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 5872: 'CODE',\%args);
1.257 albertel 5873: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
5874: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 5875: ($line,$err,$errmsg)=
5876: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
5877: $which,'answer',
5878: { 'question'=>$question,
1.503 raeburn 5879: 'response'=>$env{"form.scantron_correct_Q_$question"},
5880: 'questionnum'=>$env{"form.scantron_questionnum_Q_$question"}});
1.157 albertel 5881: if ($err) { last; }
5882: }
5883: }
5884: if ($err) {
1.398 albertel 5885: $r->print("<span class=\"LC_warning\">Unable to accept last correction, an error occurred :$errmsg:</span>");
1.157 albertel 5886: } else {
1.200 albertel 5887: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 5888: &scantron_putfile($scanlines,$scan_data);
5889: }
5890: }
5891:
1.423 albertel 5892: =pod
5893:
5894: =item reset_skipping_status
5895:
1.424 albertel 5896: Forgets the current set of remember skipped scanlines (and thus
5897: reverts back to considering all lines in the
5898: scantron_skipped_<filename> file)
5899:
1.423 albertel 5900: =cut
5901:
1.200 albertel 5902: sub reset_skipping_status {
5903: my ($scanlines,$scan_data)=&scantron_getfile();
5904: &scan_data($scan_data,'remember_skipping',undef,1);
5905: &scantron_putfile(undef,$scan_data);
5906: }
5907:
1.423 albertel 5908: =pod
5909:
5910: =item start_skipping
5911:
1.424 albertel 5912: Marks a scanline to be skipped.
5913:
1.423 albertel 5914: =cut
5915:
1.376 albertel 5916: sub start_skipping {
1.200 albertel 5917: my ($scan_data,$i)=@_;
5918: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 5919: if ($env{'form.scantron_options_redo'} =~ /^redo_/) {
5920: $remembered{$i}=2;
5921: } else {
5922: $remembered{$i}=1;
5923: }
1.200 albertel 5924: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
5925: }
5926:
1.423 albertel 5927: =pod
5928:
5929: =item should_be_skipped
5930:
1.424 albertel 5931: Checks whether a scanline should be skipped.
5932:
1.423 albertel 5933: =cut
5934:
1.200 albertel 5935: sub should_be_skipped {
1.376 albertel 5936: my ($scanlines,$scan_data,$i)=@_;
1.257 albertel 5937: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 5938: # not redoing old skips
1.376 albertel 5939: if ($scanlines->{'skipped'}[$i]) { return 1; }
1.200 albertel 5940: return 0;
5941: }
5942: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
1.376 albertel 5943:
5944: if (exists($remembered{$i}) && $remembered{$i} != 2 ) {
5945: return 0;
5946: }
1.200 albertel 5947: return 1;
5948: }
5949:
1.423 albertel 5950: =pod
5951:
5952: =item remember_current_skipped
5953:
1.424 albertel 5954: Discovers what scanlines are in the scantron_skipped_<filename>
5955: file and remembers them into scan_data for later use.
5956:
1.423 albertel 5957: =cut
5958:
1.200 albertel 5959: sub remember_current_skipped {
5960: my ($scanlines,$scan_data)=&scantron_getfile();
5961: my %to_remember;
5962: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
5963: if ($scanlines->{'skipped'}[$i]) {
5964: $to_remember{$i}=1;
5965: }
5966: }
1.376 albertel 5967:
1.200 albertel 5968: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
5969: &scantron_putfile(undef,$scan_data);
5970: }
5971:
1.423 albertel 5972: =pod
5973:
5974: =item check_for_error
5975:
1.424 albertel 5976: Checks if there was an error when attempting to remove a specific
5977: scantron_.. bubble sheet data file. Prints out an error if
5978: something went wrong.
5979:
1.423 albertel 5980: =cut
5981:
1.200 albertel 5982: sub check_for_error {
5983: my ($r,$result)=@_;
5984: if ($result ne 'ok' && $result ne 'not_found' ) {
1.492 albertel 5985: $r->print(&mt("An error occurred ([_1]) when trying to remove the existing corrections.",$result));
1.200 albertel 5986: }
5987: }
1.157 albertel 5988:
1.423 albertel 5989: =pod
5990:
5991: =item scantron_warning_screen
5992:
1.424 albertel 5993: Interstitial screen to make sure the operator has selected the
5994: correct options before we start the validation phase.
5995:
1.423 albertel 5996: =cut
5997:
1.203 albertel 5998: sub scantron_warning_screen {
5999: my ($button_text)=@_;
1.257 albertel 6000: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 6001: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.373 albertel 6002: my $CODElist;
1.284 albertel 6003: if ($scantron_config{'CODElocation'} &&
6004: $scantron_config{'CODEstart'} &&
6005: $scantron_config{'CODElength'}) {
6006: $CODElist=$env{'form.scantron_CODElist'};
1.398 albertel 6007: if ($env{'form.scantron_CODElist'} eq '') { $CODElist='<span class="LC_warning">None</span>'; }
1.284 albertel 6008: $CODElist=
1.492 albertel 6009: '<tr><td><b>'.&mt('List of CODES to validate against:').'</b></td><td><tt>'.
1.373 albertel 6010: $env{'form.scantron_CODElist'}.'</tt></td></tr>';
1.284 albertel 6011: }
1.492 albertel 6012: return ('
1.203 albertel 6013: <p>
1.492 albertel 6014: <span class="LC_warning">
6015: '.&mt('Please double check the information below before clicking on \'[_1]\'',&mt($button_text)).'</span>
1.203 albertel 6016: </p>
6017: <table>
1.492 albertel 6018: <tr><td><b>'.&mt('Sequence to be Graded:').'</b></td><td>'.$title.'</td></tr>
6019: <tr><td><b>'.&mt('Data File that will be used:').'</b></td><td><tt>'.$env{'form.scantron_selectfile'}.'</tt></td></tr>
6020: '.$CODElist.'
1.203 albertel 6021: </table>
6022: <br />
1.492 albertel 6023: <p> '.&mt('If this information is correct, please click on \'[_1]\'.',&mt($button_text)).'</p>
6024: <p> '.&mt('If something is incorrect, please click the \'Grading Menu\' button to start over.').'</p>
1.203 albertel 6025:
6026: <br />
1.492 albertel 6027: ');
1.203 albertel 6028: }
6029:
1.423 albertel 6030: =pod
6031:
6032: =item scantron_do_warning
6033:
1.424 albertel 6034: Check if the operator has picked something for all required
6035: fields. Error out if something is missing.
6036:
1.423 albertel 6037: =cut
6038:
1.203 albertel 6039: sub scantron_do_warning {
6040: my ($r)=@_;
1.324 albertel 6041: my ($symb)=&get_symb($r);
1.203 albertel 6042: if (!$symb) {return '';}
1.324 albertel 6043: my $default_form_data=&defaultFormData($symb);
1.203 albertel 6044: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 6045: if ( $env{'form.selectpage'} eq '' ||
6046: $env{'form.scantron_selectfile'} eq '' ||
6047: $env{'form.scantron_format'} eq '' ) {
1.492 albertel 6048: $r->print("<p>".&mt('You have forgetten to specify some information. Please go Back and try again.')."</p>");
1.257 albertel 6049: if ( $env{'form.selectpage'} eq '') {
1.492 albertel 6050: $r->print('<p><span class="LC_error">'.&mt('You have not selected a Sequence to grade').'</span></p>');
1.237 albertel 6051: }
1.257 albertel 6052: if ( $env{'form.scantron_selectfile'} eq '') {
1.492 albertel 6053: $r->print('<p><span class="LC_error">'.&mt('You have not selected a file that contains the student\'s response data.').'</span></p>');
1.237 albertel 6054: }
1.257 albertel 6055: if ( $env{'form.scantron_format'} eq '') {
1.492 albertel 6056: $r->print('<p><span class="LC_error">'.&mt('You have not selected a the format of the student\'s response data.').'</span></p>');
1.237 albertel 6057: }
6058: } else {
1.265 www 6059: my $warning=&scantron_warning_screen('Grading: Validate Records');
1.492 albertel 6060: $r->print('
6061: '.$warning.'
6062: <input type="submit" name="submit" value="'.&mt('Grading: Validate Records').'" />
1.203 albertel 6063: <input type="hidden" name="command" value="scantron_validate" />
1.492 albertel 6064: ');
1.237 albertel 6065: }
1.352 albertel 6066: $r->print("</form><br />".&show_grading_menu_form($symb));
1.203 albertel 6067: return '';
6068: }
6069:
1.423 albertel 6070: =pod
6071:
6072: =item scantron_form_start
6073:
1.424 albertel 6074: html hidden input for remembering all selected grading options
6075:
1.423 albertel 6076: =cut
6077:
1.203 albertel 6078: sub scantron_form_start {
6079: my ($max_bubble)=@_;
6080: my $result= <<SCANTRONFORM;
6081: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 6082: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
6083: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
6084: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 6085: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 6086: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
6087: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
6088: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
6089: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 6090: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 6091: SCANTRONFORM
1.447 foxr 6092:
6093: my $line = 0;
6094: while (defined($env{"form.scantron.bubblelines.$line"})) {
6095: my $chunk =
6096: '<input type="hidden" name="scantron.bubblelines.'.$line.'" value="'.$env{"form.scantron.bubblelines.$line"}.'" />'."\n";
1.448 foxr 6097: $chunk .=
6098: '<input type="hidden" name="scantron.first_bubble_line.'.$line.'" value="'.$env{"form.scantron.first_bubble_line.$line"}.'" />'."\n";
1.503 raeburn 6099: $chunk .=
6100: '<input type="hidden" name="scantron.sub_bubblelines.'.$line.'" value="'.$env{"form.scantron.sub_bubblelines.$line"}.'" />'."\n";
1.504 raeburn 6101: $chunk .=
6102: '<input type="hidden" name="scantron.responsetype.'.$line.'" value="'.$env{"form.scantron.responsetype.$line"}.'" />'."\n";
1.447 foxr 6103: $result .= $chunk;
6104: $line++;
6105: }
1.203 albertel 6106: return $result;
6107: }
6108:
1.423 albertel 6109: =pod
6110:
6111: =item scantron_validate_file
6112:
1.424 albertel 6113: Dispatch routine for doing validation of a bubble sheet data file.
6114:
6115: Also processes any necessary information resets that need to
6116: occur before validation begins (ignore previous corrections,
6117: restarting the skipped records processing)
6118:
1.423 albertel 6119: =cut
6120:
1.157 albertel 6121: sub scantron_validate_file {
6122: my ($r) = @_;
1.324 albertel 6123: my ($symb)=&get_symb($r);
1.157 albertel 6124: if (!$symb) {return '';}
1.324 albertel 6125: my $default_form_data=&defaultFormData($symb);
1.200 albertel 6126:
6127: # do the detection of only doing skipped records first befroe we delete
1.424 albertel 6128: # them when doing the corrections reset
1.257 albertel 6129: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 6130: &reset_skipping_status();
6131: }
1.257 albertel 6132: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 6133: &remember_current_skipped();
1.257 albertel 6134: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 6135: }
6136:
1.257 albertel 6137: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 6138: &check_for_error($r,&scantron_remove_file('corrected'));
6139: &check_for_error($r,&scantron_remove_file('skipped'));
6140: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 6141: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 6142: }
1.200 albertel 6143:
1.257 albertel 6144: if ($env{'form.scantron_corrections'}) {
1.157 albertel 6145: &scantron_process_corrections($r);
6146: }
1.503 raeburn 6147: $r->print('<p>'.&mt('Gathering necessary information.').'</p>');$r->rflush();
1.157 albertel 6148: #get the student pick code ready
6149: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.330 albertel 6150: my $max_bubble=&scantron_get_maxbubble();
1.203 albertel 6151: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.157 albertel 6152: $r->print($result);
6153:
1.334 albertel 6154: my @validate_phases=( 'sequence',
6155: 'ID',
1.157 albertel 6156: 'CODE',
6157: 'doublebubble',
6158: 'missingbubbles');
1.257 albertel 6159: if (!$env{'form.validatepass'}) {
6160: $env{'form.validatepass'} = 0;
1.157 albertel 6161: }
1.257 albertel 6162: my $currentphase=$env{'form.validatepass'};
1.157 albertel 6163:
1.448 foxr 6164:
1.157 albertel 6165: my $stop=0;
6166: while (!$stop && $currentphase < scalar(@validate_phases)) {
1.503 raeburn 6167: $r->print(&mt('Validating '.$validate_phases[$currentphase]).'<br />');
1.157 albertel 6168: $r->rflush();
6169: my $which="scantron_validate_".$validate_phases[$currentphase];
6170: {
6171: no strict 'refs';
6172: ($stop,$currentphase)=&$which($r,$currentphase);
6173: }
6174: }
6175: if (!$stop) {
1.203 albertel 6176: my $warning=&scantron_warning_screen('Start Grading');
1.512 www 6177: $r->print(&mt('Validation process complete.').'<br />
1.492 albertel 6178: '.$warning.'
6179: <input type="submit" name="submit" value="'.&mt('Start Grading').'" />
1.203 albertel 6180: <input type="hidden" name="command" value="scantron_process" />
1.492 albertel 6181: ');
1.203 albertel 6182:
1.157 albertel 6183: } else {
6184: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
6185: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
6186: }
6187: if ($stop) {
1.334 albertel 6188: if ($validate_phases[$currentphase] eq 'sequence') {
1.492 albertel 6189: $r->print('<input type="submit" name="submit" value="'.&mt('Ignore ->').' " />');
6190: $r->print(' '.&mt('this error').' <br />');
1.334 albertel 6191:
1.492 albertel 6192: $r->print(" <p>".&mt("Or click the 'Grading Menu' button to start over.")."</p>");
1.334 albertel 6193: } else {
1.503 raeburn 6194: if ($validate_phases[$currentphase] eq 'doublebubble' || $validate_phases[$currentphase] eq 'missingbubbles') {
6195: $r->print('<input type="button" name="submitbutton" value="'.&mt('Continue ->').'" onclick="javascript:verify_bubble_radio(this.form)" />');
6196: } else {
6197: $r->print('<input type="submit" name="submit" value="'.&mt('Continue ->').'" />');
6198: }
1.492 albertel 6199: $r->print(' '.&mt('using corrected info').' <br />');
6200: $r->print("<input type='submit' value='".&mt("Skip")."' name='scantron_skip_record' />");
6201: $r->print(" ".&mt("this scanline saving it for later."));
1.334 albertel 6202: }
1.157 albertel 6203: }
1.352 albertel 6204: $r->print(" </form><br />".&show_grading_menu_form($symb));
1.157 albertel 6205: return '';
6206: }
6207:
1.423 albertel 6208:
6209: =pod
6210:
6211: =item scantron_remove_file
6212:
1.424 albertel 6213: Removes the requested bubble sheet data file, makes sure that
6214: scantron_original_<filename> is never removed
6215:
6216:
1.423 albertel 6217: =cut
6218:
1.200 albertel 6219: sub scantron_remove_file {
1.192 albertel 6220: my ($which)=@_;
1.257 albertel 6221: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6222: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6223: my $file='scantron_';
1.200 albertel 6224: if ($which eq 'corrected' || $which eq 'skipped') {
6225: $file.=$which.'_';
1.192 albertel 6226: } else {
6227: return 'refused';
6228: }
1.257 albertel 6229: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 6230: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
6231: }
6232:
1.423 albertel 6233:
6234: =pod
6235:
6236: =item scantron_remove_scan_data
6237:
1.424 albertel 6238: Removes all scan_data correction for the requested bubble sheet
6239: data file. (In the case that both the are doing skipped records we need
6240: to remember the old skipped lines for the time being so that element
6241: persists for a while.)
6242:
1.423 albertel 6243: =cut
6244:
1.200 albertel 6245: sub scantron_remove_scan_data {
1.257 albertel 6246: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6247: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 6248: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
6249: my @todelete;
1.257 albertel 6250: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 6251: foreach my $key (@keys) {
6252: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 6253: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 6254: $key=~/remember_skipping/) {
6255: next;
6256: }
1.192 albertel 6257: push(@todelete,$key);
6258: }
6259: }
1.200 albertel 6260: my $result;
1.192 albertel 6261: if (@todelete) {
1.491 albertel 6262: $result = &Apache::lonnet::del('nohist_scantrondata',
6263: \@todelete,$cdom,$cname);
6264: } else {
6265: $result = 'ok';
1.192 albertel 6266: }
6267: return $result;
6268: }
6269:
1.423 albertel 6270:
6271: =pod
6272:
6273: =item scantron_getfile
6274:
1.424 albertel 6275: Fetches the requested bubble sheet data file (all 3 versions), and
6276: the scan_data hash
6277:
6278: Arguments:
6279: None
6280:
6281: Returns:
6282: 2 hash references
6283:
6284: - first one has
6285: orig -
6286: corrected -
6287: skipped - each of which points to an array ref of the specified
6288: file broken up into individual lines
6289: count - number of scanlines
6290:
6291: - second is the scan_data hash possible keys are
1.425 albertel 6292: ($number refers to scanline numbered $number and thus the key affects
6293: only that scanline
6294: $bubline refers to the specific bubble line element and the aspects
6295: refers to that specific bubble line element)
6296:
6297: $number.user - username:domain to use
6298: $number.CODE_ignore_dup
6299: - ignore the duplicate CODE error
6300: $number.useCODE
6301: - use the CODE in the scanline as is
6302: $number.no_bubble.$bubline
6303: - it is valid that there is no bubbled in bubble
6304: at $number $bubline
6305: remember_skipping
6306: - a frozen hash containing keys of $number and values
6307: of either
6308: 1 - we are on a 'do skipped records pass' and plan
6309: on processing this line
6310: 2 - we are on a 'do skipped records pass' and this
6311: scanline has been marked to skip yet again
1.424 albertel 6312:
1.423 albertel 6313: =cut
6314:
1.157 albertel 6315: sub scantron_getfile {
1.200 albertel 6316: #FIXME really would prefer a scantron directory
1.257 albertel 6317: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6318: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 6319: my $lines;
6320: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6321: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 6322: my %scanlines;
6323: $scanlines{'orig'}=[(split("\n",$lines,-1))];
6324: my $temp=$scanlines{'orig'};
6325: $scanlines{'count'}=$#$temp;
6326:
6327: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6328: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 6329: if ($lines eq '-1') {
6330: $scanlines{'corrected'}=[];
6331: } else {
6332: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
6333: }
6334: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 6335: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 6336: if ($lines eq '-1') {
6337: $scanlines{'skipped'}=[];
6338: } else {
6339: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
6340: }
1.175 albertel 6341: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 6342: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
6343: my %scan_data = @tmp;
6344: return (\%scanlines,\%scan_data);
6345: }
6346:
1.423 albertel 6347: =pod
6348:
6349: =item lonnet_putfile
6350:
1.424 albertel 6351: Wrapper routine to call &Apache::lonnet::finishuserfileupload
6352:
6353: Arguments:
6354: $contents - data to store
6355: $filename - filename to store $contents into
6356:
6357: Returns:
6358: result value from &Apache::lonnet::finishuserfileupload
6359:
1.423 albertel 6360: =cut
6361:
1.157 albertel 6362: sub lonnet_putfile {
6363: my ($contents,$filename)=@_;
1.257 albertel 6364: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
6365: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
6366: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 6367: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 6368:
6369: }
6370:
1.423 albertel 6371: =pod
6372:
6373: =item scantron_putfile
6374:
1.424 albertel 6375: Stores the current version of the bubble sheet data files, and the
6376: scan_data hash. (Does not modify the original version only the
6377: corrected and skipped versions.
6378:
6379: Arguments:
6380: $scanlines - hash ref that looks like the first return value from
6381: &scantron_getfile()
6382: $scan_data - hash ref that looks like the second return value from
6383: &scantron_getfile()
6384:
1.423 albertel 6385: =cut
6386:
1.157 albertel 6387: sub scantron_putfile {
6388: my ($scanlines,$scan_data) = @_;
1.200 albertel 6389: #FIXME really would prefer a scantron directory
1.257 albertel 6390: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
6391: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 6392: if ($scanlines) {
6393: my $prefix='scantron_';
1.157 albertel 6394: # no need to update orig, shouldn't change
6395: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 6396: # $env{'form.scantron_selectfile'});
1.200 albertel 6397: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
6398: $prefix.'corrected_'.
1.257 albertel 6399: $env{'form.scantron_selectfile'});
1.200 albertel 6400: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
6401: $prefix.'skipped_'.
1.257 albertel 6402: $env{'form.scantron_selectfile'});
1.200 albertel 6403: }
1.175 albertel 6404: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 6405: }
6406:
1.423 albertel 6407: =pod
6408:
6409: =item scantron_get_line
6410:
1.424 albertel 6411: Returns the correct version of the scanline
6412:
6413: Arguments:
6414: $scanlines - hash ref that looks like the first return value from
6415: &scantron_getfile()
6416: $scan_data - hash ref that looks like the second return value from
6417: &scantron_getfile()
6418: $i - number of the requested line (starts at 0)
6419:
6420: Returns:
6421: A scanline, (either the original or the corrected one if it
6422: exists), or undef if the requested scanline should be
6423: skipped. (Either because it's an skipped scanline, or it's an
6424: unskipped scanline and we are not doing a 'do skipped scanlines'
6425: pass.
6426:
1.423 albertel 6427: =cut
6428:
1.157 albertel 6429: sub scantron_get_line {
1.200 albertel 6430: my ($scanlines,$scan_data,$i)=@_;
1.376 albertel 6431: if (&should_be_skipped($scanlines,$scan_data,$i)) { return undef; }
6432: #if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 6433: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
6434: return $scanlines->{'orig'}[$i];
6435: }
6436:
1.423 albertel 6437: =pod
6438:
6439: =item scantron_todo_count
6440:
1.424 albertel 6441: Counts the number of scanlines that need processing.
6442:
6443: Arguments:
6444: $scanlines - hash ref that looks like the first return value from
6445: &scantron_getfile()
6446: $scan_data - hash ref that looks like the second return value from
6447: &scantron_getfile()
6448:
6449: Returns:
6450: $count - number of scanlines to process
6451:
1.423 albertel 6452: =cut
6453:
1.200 albertel 6454: sub get_todo_count {
6455: my ($scanlines,$scan_data)=@_;
6456: my $count=0;
6457: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
6458: my $line=&scantron_get_line($scanlines,$scan_data,$i);
6459: if ($line=~/^[\s\cz]*$/) { next; }
6460: $count++;
6461: }
6462: return $count;
6463: }
6464:
1.423 albertel 6465: =pod
6466:
6467: =item scantron_put_line
6468:
1.424 albertel 6469: Updates the 'corrected' or 'skipped' versions of the bubble sheet
6470: data file.
6471:
6472: Arguments:
6473: $scanlines - hash ref that looks like the first return value from
6474: &scantron_getfile()
6475: $scan_data - hash ref that looks like the second return value from
6476: &scantron_getfile()
6477: $i - line number to update
6478: $newline - contents of the updated scanline
6479: $skip - if true make the line for skipping and update the
6480: 'skipped' file
6481:
1.423 albertel 6482: =cut
6483:
1.157 albertel 6484: sub scantron_put_line {
1.200 albertel 6485: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 6486: if ($skip) {
6487: $scanlines->{'skipped'}[$i]=$newline;
1.376 albertel 6488: &start_skipping($scan_data,$i);
1.157 albertel 6489: return;
6490: }
6491: $scanlines->{'corrected'}[$i]=$newline;
6492: }
6493:
1.423 albertel 6494: =pod
6495:
6496: =item scantron_clear_skip
6497:
1.424 albertel 6498: Remove a line from the 'skipped' file
6499:
6500: Arguments:
6501: $scanlines - hash ref that looks like the first return value from
6502: &scantron_getfile()
6503: $scan_data - hash ref that looks like the second return value from
6504: &scantron_getfile()
6505: $i - line number to update
6506:
1.423 albertel 6507: =cut
6508:
1.376 albertel 6509: sub scantron_clear_skip {
6510: my ($scanlines,$scan_data,$i)=@_;
6511: if (exists($scanlines->{'skipped'}[$i])) {
6512: undef($scanlines->{'skipped'}[$i]);
6513: return 1;
6514: }
6515: return 0;
6516: }
6517:
1.423 albertel 6518: =pod
6519:
6520: =item scantron_filter_not_exam
6521:
1.424 albertel 6522: Filter routine used by &Apache::lonnavmaps::retrieveResources(), to
6523: filter out resources that are not marked as 'exam' mode
6524:
1.423 albertel 6525: =cut
6526:
1.334 albertel 6527: sub scantron_filter_not_exam {
6528: my ($curres)=@_;
6529:
6530: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
6531: # if the user has asked to not have either hidden
6532: # or 'randomout' controlled resources to be graded
6533: # don't include them
6534: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
6535: && $curres->randomout) {
6536: return 0;
6537: }
6538: return 1;
6539: }
6540: return 0;
6541: }
6542:
1.423 albertel 6543: =pod
6544:
6545: =item scantron_validate_sequence
6546:
1.424 albertel 6547: Validates the selected sequence, checking for resource that are
6548: not set to exam mode.
6549:
1.423 albertel 6550: =cut
6551:
1.334 albertel 6552: sub scantron_validate_sequence {
6553: my ($r,$currentphase) = @_;
6554:
6555: my $navmap=Apache::lonnavmaps::navmap->new();
6556: my (undef,undef,$sequence)=
6557: &Apache::lonnet::decode_symb($env{'form.selectpage'});
6558:
6559: my $map=$navmap->getResourceByUrl($sequence);
6560:
6561: $r->print('<input type="hidden" name="validate_sequence_exam"
6562: value="ignore" />');
6563: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
6564: my @resources=
6565: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
6566: if (@resources) {
1.357 banghart 6567: $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 6568: return (1,$currentphase);
6569: }
6570: }
6571:
6572: return (0,$currentphase+1);
6573: }
6574:
1.423 albertel 6575: =pod
6576:
6577: =item scantron_validate_ID
6578:
1.424 albertel 6579: Validates all scanlines in the selected file to not have any
6580: invalid or underspecified student IDs
6581:
1.423 albertel 6582: =cut
6583:
1.157 albertel 6584: sub scantron_validate_ID {
6585: my ($r,$currentphase) = @_;
6586:
6587: #get student info
6588: my $classlist=&Apache::loncoursedata::get_classlist();
6589: my %idmap=&username_to_idmap($classlist);
6590:
6591: #get scantron line setup
1.257 albertel 6592: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 6593: my ($scanlines,$scan_data)=&scantron_getfile();
1.447 foxr 6594:
6595: &scantron_get_maxbubble(); # parse needs the bubble_lines.. array.
1.157 albertel 6596:
6597: my %found=('ids'=>{},'usernames'=>{});
6598: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 6599: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 6600: if ($line=~/^[\s\cz]*$/) { next; }
6601: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
6602: $scan_data);
6603: my $id=$$scan_record{'scantron.ID'};
6604: my $found;
6605: foreach my $checkid (keys(%idmap)) {
6606: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
6607: }
6608: if ($found) {
6609: my $username=$idmap{$found};
6610: if ($found{'ids'}{$found}) {
6611: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6612: $line,'duplicateID',$found);
1.194 albertel 6613: return(1,$currentphase);
1.157 albertel 6614: } elsif ($found{'usernames'}{$username}) {
6615: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6616: $line,'duplicateID',$username);
1.194 albertel 6617: return(1,$currentphase);
1.157 albertel 6618: }
1.186 albertel 6619: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 6620: $found{'ids'}{$found}++;
6621: $found{'usernames'}{$username}++;
6622: } else {
6623: if ($id =~ /^\s*$/) {
1.158 albertel 6624: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 6625: if (defined($username) && $found{'usernames'}{$username}) {
6626: &scantron_get_correction($r,$i,$scan_record,
6627: \%scantron_config,
6628: $line,'duplicateID',$username);
1.194 albertel 6629: return(1,$currentphase);
1.157 albertel 6630: } elsif (!defined($username)) {
6631: &scantron_get_correction($r,$i,$scan_record,
6632: \%scantron_config,
6633: $line,'incorrectID');
1.194 albertel 6634: return(1,$currentphase);
1.157 albertel 6635: }
6636: $found{'usernames'}{$username}++;
6637: } else {
6638: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
6639: $line,'incorrectID');
1.194 albertel 6640: return(1,$currentphase);
1.157 albertel 6641: }
6642: }
6643: }
6644:
6645: return (0,$currentphase+1);
6646: }
6647:
1.423 albertel 6648: =pod
6649:
6650: =item scantron_get_correction
6651:
1.424 albertel 6652: Builds the interface screen to interact with the operator to fix a
6653: specific error condition in a specific scanline
6654:
6655: Arguments:
6656: $r - Apache request object
6657: $i - number of the current scanline
6658: $scan_record - hash ref as returned from &scantron_parse_scanline()
6659: $scan_config - hash ref as returned from &get_scantron_config()
6660: $line - full contents of the current scanline
6661: $error - error condition, valid values are
6662: 'incorrectCODE', 'duplicateCODE',
6663: 'doublebubble', 'missingbubble',
6664: 'duplicateID', 'incorrectID'
6665: $arg - extra information needed
6666: For errors:
6667: - duplicateID - paper number that this studentID was seen before on
6668: - duplicateCODE - array ref of the paper numbers this CODE was
6669: seen on before
6670: - incorrectCODE - current incorrect CODE
6671: - doublebubble - array ref of the bubble lines that have double
6672: bubble errors
6673: - missingbubble - array ref of the bubble lines that have missing
6674: bubble errors
6675:
1.423 albertel 6676: =cut
6677:
1.157 albertel 6678: sub scantron_get_correction {
6679: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
1.454 banghart 6680: #FIXME in the case of a duplicated ID the previous line, probably need
1.157 albertel 6681: #to show both the current line and the previous one and allow skipping
6682: #the previous one or the current one
6683:
1.333 albertel 6684: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.492 albertel 6685: $r->print("<p>".&mt("<b>An error was detected ($error)</b>".
6686: " for PaperID <tt>[_1]</tt>",
6687: $$scan_record{'scantron.PaperID'})."</p> \n");
1.157 albertel 6688: } else {
1.492 albertel 6689: $r->print("<p>".&mt("<b>An error was detected ($error)</b>".
6690: " in scanline [_1] <pre>[_2]</pre>",
6691: $i,$line)."</p> \n");
6692: }
6693: my $message="<p>".&mt("The ID on the form is <tt>[_1]</tt><br />".
6694: "The name on the paper is [_2],[_3]",
6695: $$scan_record{'scantron.ID'},
6696: $$scan_record{'scantron.LastName'},
6697: $$scan_record{'scantron.FirstName'})."</p>";
1.242 albertel 6698:
1.157 albertel 6699: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
6700: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
1.503 raeburn 6701: # Array populated for doublebubble or
6702: my @lines_to_correct; # missingbubble errors to build javascript
6703: # to validate radio button checking
6704:
1.157 albertel 6705: if ($error =~ /ID$/) {
1.186 albertel 6706: if ($error eq 'incorrectID') {
1.492 albertel 6707: $r->print("<p>".&mt("The encoded ID is not in the classlist").
6708: "</p>\n");
1.157 albertel 6709: } elsif ($error eq 'duplicateID') {
1.492 albertel 6710: $r->print("<p>".&mt("The encoded ID has also been used by a previous paper [_1]",$arg)."</p>\n");
1.157 albertel 6711: }
1.242 albertel 6712: $r->print($message);
1.492 albertel 6713: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.157 albertel 6714: $r->print("\n<ul><li> ");
6715: #FIXME it would be nice if this sent back the user ID and
6716: #could do partial userID matches
6717: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
6718: 'scantron_username','scantron_domain'));
6719: $r->print(": <input type='text' name='scantron_username' value='' />");
6720: $r->print("\n@".
1.257 albertel 6721: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 6722:
6723: $r->print('</li>');
1.186 albertel 6724: } elsif ($error =~ /CODE$/) {
6725: if ($error eq 'incorrectCODE') {
1.492 albertel 6726: $r->print("<p>".&mt("The encoded CODE is not in the list of possible CODEs.")."</p>\n");
1.186 albertel 6727: } elsif ($error eq 'duplicateCODE') {
1.492 albertel 6728: $r->print("<p>".&mt("The encoded CODE has also been used by a previous paper [_1], and CODEs are supposed to be unique.",join(', ',@{$arg}))."</p>\n");
1.186 albertel 6729: }
1.492 albertel 6730: $r->print("<p>".&mt("The CODE on the form is <tt>'[_1]'</tt>",
6731: $$scan_record{'scantron.CODE'})."<br />\n");
1.242 albertel 6732: $r->print($message);
1.492 albertel 6733: $r->print("<p>".&mt("How should I handle this?")." <br /> \n");
1.187 albertel 6734: $r->print("\n<br /> ");
1.194 albertel 6735: my $i=0;
1.273 albertel 6736: if ($error eq 'incorrectCODE'
6737: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 6738: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 6739: if ($closest > 0) {
6740: foreach my $testcode (@{$closest}) {
6741: my $checked='';
1.401 albertel 6742: if (!$i) { $checked=' checked="checked" '; }
1.492 albertel 6743: $r->print("
6744: <label>
6745: <input type='radio' name='scantron_CODE_resolution' value='use_closest_$i' $checked />
6746: ".&mt("Use the similar CODE [_1] instead.",
6747: "<b><tt>".$testcode."</tt></b>")."
6748: </label>
6749: <input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
1.278 albertel 6750: $r->print("\n<br />");
6751: $i++;
6752: }
1.194 albertel 6753: }
6754: }
1.273 albertel 6755: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
1.401 albertel 6756: my $checked; if (!$i) { $checked=' checked="checked" '; }
1.492 albertel 6757: $r->print("
6758: <label>
6759: <input type='radio' name='scantron_CODE_resolution' value='use_unfound' $checked />
6760: ".&mt("Use the CODE [_1] that is was on the paper, ignoring the error.",
6761: "<b><tt>".$$scan_record{'scantron.CODE'}."</tt></b>")."
6762: </label>");
1.273 albertel 6763: $r->print("\n<br />");
6764: }
1.194 albertel 6765:
1.188 albertel 6766: $r->print(<<ENDSCRIPT);
6767: <script type="text/javascript">
6768: function change_radio(field) {
1.190 albertel 6769: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 6770: var i;
6771: for (i=0;i<slct.length;i++) {
6772: if (slct[i].value==field) { slct[i].checked=true; }
6773: }
6774: }
6775: </script>
6776: ENDSCRIPT
1.187 albertel 6777: my $href="/adm/pickcode?".
1.359 www 6778: "form=".&escape("scantronupload").
6779: "&scantron_format=".&escape($env{'form.scantron_format'}).
6780: "&scantron_CODElist=".&escape($env{'form.scantron_CODElist'}).
6781: "&curCODE=".&escape($$scan_record{'scantron.CODE'}).
6782: "&scantron_selectfile=".&escape($env{'form.scantron_selectfile'});
1.332 albertel 6783: if ($env{'form.scantron_CODElist'} =~ /\S/) {
1.492 albertel 6784: $r->print("
6785: <label>
6786: <input type='radio' name='scantron_CODE_resolution' value='use_found' />
6787: ".&mt("[_1]Select[_2] a CODE from the list of all CODEs and use it.",
6788: "<a target='_blank' href='$href'>","</a>")."
6789: </label>
6790: ".&mt("Selected CODE is [_1]","<input readonly='true' type='text' size='8' name='scantron_CODE_selectedvalue' onfocus=\"javascript:change_radio('use_found')\" onchange=\"javascript:change_radio('use_found')\" />"));
1.332 albertel 6791: $r->print("\n<br />");
6792: }
1.492 albertel 6793: $r->print("
6794: <label>
6795: <input type='radio' name='scantron_CODE_resolution' value='use_typed' />
6796: ".&mt("Use [_1] as the CODE.",
6797: "</label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" />"));
1.187 albertel 6798: $r->print("\n<br /><br />");
1.157 albertel 6799: } elsif ($error eq 'doublebubble') {
1.503 raeburn 6800: $r->print("<p>".&mt("There have been multiple bubbles scanned for some question(s)")."</p>\n");
1.497 foxr 6801:
6802: # The form field scantron_questions is acutally a list of line numbers.
6803: # represented by this form so:
6804:
6805: my $line_list = &questions_to_line_list($arg);
6806:
1.157 albertel 6807: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 6808: $line_list.'" />');
1.242 albertel 6809: $r->print($message);
1.492 albertel 6810: $r->print("<p>".&mt("Please indicate which bubble should be used for grading")."</p>");
1.157 albertel 6811: foreach my $question (@{$arg}) {
1.503 raeburn 6812: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
6813: $scan_record, $error);
6814: push (@lines_to_correct,@linenums);
1.157 albertel 6815: }
1.503 raeburn 6816: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 6817: } elsif ($error eq 'missingbubble') {
1.492 albertel 6818: $r->print("<p>".&mt("There have been <b>no</b> bubbles scanned for some question(s)")."</p>\n");
1.242 albertel 6819: $r->print($message);
1.492 albertel 6820: $r->print("<p>".&mt("Please indicate which bubble should be used for grading.")."</p>");
1.503 raeburn 6821: $r->print(&mt("Some questions have no scanned bubbles.")."\n");
1.497 foxr 6822:
1.503 raeburn 6823: # The form field scantron_questions is actually a list of line numbers not
1.497 foxr 6824: # a list of question numbers. Therefore:
6825: #
6826:
6827: my $line_list = &questions_to_line_list($arg);
6828:
1.157 albertel 6829: $r->print('<input type="hidden" name="scantron_questions" value="'.
1.497 foxr 6830: $line_list.'" />');
1.157 albertel 6831: foreach my $question (@{$arg}) {
1.503 raeburn 6832: my @linenums = &prompt_for_corrections($r,$question,$scan_config,
6833: $scan_record, $error);
6834: push (@lines_to_correct,@linenums);
1.157 albertel 6835: }
1.503 raeburn 6836: $r->print(&verify_bubbles_checked(@lines_to_correct));
1.157 albertel 6837: } else {
6838: $r->print("\n<ul>");
6839: }
6840: $r->print("\n</li></ul>");
1.497 foxr 6841: }
6842:
1.503 raeburn 6843: sub verify_bubbles_checked {
6844: my (@ansnums) = @_;
6845: my $ansnumstr = join('","',@ansnums);
6846: my $warning = &mt("A bubble or 'No bubble' selection has not been made for one or more lines.");
6847: my $output = (<<ENDSCRIPT);
6848: <script type="text/javascript">
6849: function verify_bubble_radio(form) {
6850: var ansnumArray = new Array ("$ansnumstr");
6851: var need_bubble_count = 0;
6852: for (var i=0; i<ansnumArray.length; i++) {
6853: if (form.elements["scantron_correct_Q_"+ansnumArray[i]].length > 1) {
6854: var bubble_picked = 0;
6855: for (var j=0; j<form.elements["scantron_correct_Q_"+ansnumArray[i]].length; j++) {
6856: if (form.elements["scantron_correct_Q_"+ansnumArray[i]][j].checked == true) {
6857: bubble_picked = 1;
6858: }
6859: }
6860: if (bubble_picked == 0) {
6861: need_bubble_count ++;
6862: }
6863: }
6864: }
6865: if (need_bubble_count) {
6866: alert("$warning");
6867: return;
6868: }
6869: form.submit();
6870: }
6871: </script>
6872: ENDSCRIPT
6873: return $output;
6874: }
6875:
1.497 foxr 6876: =pod
6877:
6878: =item questions_to_line_list
1.157 albertel 6879:
1.497 foxr 6880: Converts a list of questions into a string of comma separated
6881: line numbers in the answer sheet used by the questions. This is
6882: used to fill in the scantron_questions form field.
6883:
6884: Arguments:
6885: questions - Reference to an array of questions.
6886:
6887: =cut
6888:
6889:
6890: sub questions_to_line_list {
6891: my ($questions) = @_;
6892: my @lines;
6893:
1.503 raeburn 6894: foreach my $item (@{$questions}) {
6895: my $question = $item;
6896: my ($first,$count,$last);
6897: if ($item =~ /^(\d+)\.(\d+)$/) {
6898: $question = $1;
6899: my $subquestion = $2;
6900: $first = $first_bubble_line{$question-1} + 1;
6901: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
6902: my $subcount = 1;
6903: while ($subcount<$subquestion) {
6904: $first += $subans[$subcount-1];
6905: $subcount ++;
6906: }
6907: $count = $subans[$subquestion-1];
6908: } else {
6909: $first = $first_bubble_line{$question-1} + 1;
6910: $count = $bubble_lines_per_response{$question-1};
6911: }
1.506 raeburn 6912: $last = $first+$count-1;
1.503 raeburn 6913: push(@lines, ($first..$last));
1.497 foxr 6914: }
6915: return join(',', @lines);
6916: }
6917:
6918: =pod
6919:
6920: =item prompt_for_corrections
6921:
6922: Prompts for a potentially multiline correction to the
6923: user's bubbling (factors out common code from scantron_get_correction
6924: for multi and missing bubble cases).
6925:
6926: Arguments:
6927: $r - Apache request object.
6928: $question - The question number to prompt for.
6929: $scan_config - The scantron file configuration hash.
6930: $scan_record - Reference to the hash that has the the parsed scanlines.
1.503 raeburn 6931: $error - Type of error
1.497 foxr 6932:
6933: Implicit inputs:
6934: %bubble_lines_per_response - Starting line numbers for each question.
6935: Numbered from 0 (but question numbers are from
6936: 1.
6937: %first_bubble_line - Starting bubble line for each question.
1.509 raeburn 6938: %subdivided_bubble_lines - optionresponse, matchresponse and rankresponse
6939: type problems render as separate sub-questions,
1.503 raeburn 6940: in exam mode. This hash contains a
6941: comma-separated list of the lines per
6942: sub-question.
1.510 raeburn 6943: %responsetype_per_response - essayresponse, formularesponse,
6944: stringresponse, imageresponse, reactionresponse,
6945: and organicresponse type problem parts can have
1.503 raeburn 6946: multiple lines per response if the weight
6947: assigned exceeds 10. In this case, only
6948: one bubble per line is permitted, but more
6949: than one line might contain bubbles, e.g.
6950: bubbling of: line 1 - J, line 2 - J,
6951: line 3 - B would assign 22 points.
1.497 foxr 6952:
6953: =cut
6954:
6955: sub prompt_for_corrections {
1.503 raeburn 6956: my ($r, $question, $scan_config, $scan_record, $error) = @_;
6957: my ($current_line,$lines);
6958: my @linenums;
6959: my $questionnum = $question;
6960: if ($question =~ /^(\d+)\.(\d+)$/) {
6961: $question = $1;
6962: $current_line = $first_bubble_line{$question-1} + 1 ;
6963: my $subquestion = $2;
6964: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
6965: my $subcount = 1;
6966: while ($subcount<$subquestion) {
6967: $current_line += $subans[$subcount-1];
6968: $subcount ++;
6969: }
6970: $lines = $subans[$subquestion-1];
6971: } else {
6972: $current_line = $first_bubble_line{$question-1} + 1 ;
6973: $lines = $bubble_lines_per_response{$question-1};
6974: }
1.497 foxr 6975: if ($lines > 1) {
1.503 raeburn 6976: $r->print(&mt('The group of bubble lines below responds to a single question.').'<br />');
6977: if (($responsetype_per_response{$question-1} eq 'essayresponse') ||
6978: ($responsetype_per_response{$question-1} eq 'formularesponse') ||
1.510 raeburn 6979: ($responsetype_per_response{$question-1} eq 'stringresponse') ||
6980: ($responsetype_per_response{$question-1} eq 'imageresponse') ||
6981: ($responsetype_per_response{$question-1} eq 'reactionresponse') ||
6982: ($responsetype_per_response{$question-1} eq 'organicresponse')) {
1.503 raeburn 6983: $r->print(&mt("Although this particular question type requires handgrading, the instructions for this question in the exam directed students to leave [quant,_1,line] blank on their scantron sheets.",$lines).'<br /><br />'.&mt('A non-zero score can be assigned to the student during scantron grading by selecting a bubble in at least one line.').'<br />'.&mt('The score for this question will be a sum of the numeric values for the selected bubbles from each line, where A=1 point, B=2 points etc.').'<br />'.&mt("To assign a score of zero for this question, mark all lines as 'No bubble'.").'<br /><br />');
6984: } else {
6985: $r->print(&mt("Select at most one bubble in a single line and select 'No Bubble' in all the other lines. ")."<br />");
6986: }
1.497 foxr 6987: }
6988: for (my $i =0; $i < $lines; $i++) {
1.503 raeburn 6989: my $selected = $$scan_record{"scantron.$current_line.answer"};
6990: &scantron_bubble_selector($r,$scan_config,$current_line,
6991: $questionnum,$error,split('', $selected));
6992: push (@linenums,$current_line);
1.497 foxr 6993: $current_line++;
6994: }
6995: if ($lines > 1) {
6996: $r->print("<hr /><br />");
6997: }
1.503 raeburn 6998: return @linenums;
1.157 albertel 6999: }
1.423 albertel 7000:
7001: =pod
7002:
7003: =item scantron_bubble_selector
7004:
7005: Generates the html radiobuttons to correct a single bubble line
1.424 albertel 7006: possibly showing the existing the selected bubbles if known
1.423 albertel 7007:
7008: Arguments:
7009: $r - Apache request object
7010: $scan_config - hash from &get_scantron_config()
1.497 foxr 7011: $line - Number of the line being displayed.
1.503 raeburn 7012: $questionnum - Question number (may include subquestion)
7013: $error - Type of error.
1.497 foxr 7014: @selected - Array of bubbles picked on this line.
1.423 albertel 7015:
7016: =cut
7017:
1.157 albertel 7018: sub scantron_bubble_selector {
1.503 raeburn 7019: my ($r,$scan_config,$line,$questionnum,$error,@selected)=@_;
1.157 albertel 7020: my $max=$$scan_config{'Qlength'};
1.274 albertel 7021:
7022: my $scmode=$$scan_config{'Qon'};
7023: if ($scmode eq 'number' || $scmode eq 'letter') { $max=10; }
7024:
1.157 albertel 7025: my @alphabet=('A'..'Z');
1.503 raeburn 7026: $r->print(&Apache::loncommon::start_data_table().
7027: &Apache::loncommon::start_data_table_row());
7028: $r->print('<td rowspan="2" class="LC_leftcol_header">'.$line.'</td>');
1.497 foxr 7029: for (my $i=0;$i<$max+1;$i++) {
7030: $r->print("\n".'<td align="center">');
7031: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
7032: else { $r->print(' '); }
7033: $r->print('</td>');
7034: }
1.503 raeburn 7035: $r->print(&Apache::loncommon::end_data_table_row().
7036: &Apache::loncommon::start_data_table_row());
1.497 foxr 7037: for (my $i=0;$i<$max;$i++) {
7038: $r->print("\n".
7039: '<td><label><input type="radio" name="scantron_correct_Q_'.
7040: $line.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
7041: }
1.503 raeburn 7042: my $nobub_checked = ' ';
7043: if ($error eq 'missingbubble') {
7044: $nobub_checked = ' checked = "checked" ';
7045: }
7046: $r->print("\n".'<td><label><input type="radio" name="scantron_correct_Q_'.
7047: $line.'" value="none"'.$nobub_checked.'/>'.&mt('No bubble').
7048: '</label>'."\n".'<input type="hidden" name="scantron_questionnum_Q_'.
7049: $line.'" value="'.$questionnum.'" /></td>');
7050: $r->print(&Apache::loncommon::end_data_table_row().
7051: &Apache::loncommon::end_data_table());
1.157 albertel 7052: }
7053:
1.423 albertel 7054: =pod
7055:
7056: =item num_matches
7057:
1.424 albertel 7058: Counts the number of characters that are the same between the two arguments.
7059:
7060: Arguments:
7061: $orig - CODE from the scanline
7062: $code - CODE to match against
7063:
7064: Returns:
7065: $count - integer count of the number of same characters between the
7066: two arguments
7067:
1.423 albertel 7068: =cut
7069:
1.194 albertel 7070: sub num_matches {
7071: my ($orig,$code) = @_;
7072: my @code=split(//,$code);
7073: my @orig=split(//,$orig);
7074: my $same=0;
7075: for (my $i=0;$i<scalar(@code);$i++) {
7076: if ($code[$i] eq $orig[$i]) { $same++; }
7077: }
7078: return $same;
7079: }
7080:
1.423 albertel 7081: =pod
7082:
7083: =item scantron_get_closely_matching_CODEs
7084:
1.424 albertel 7085: Cycles through all CODEs and finds the set that has the greatest
7086: number of same characters as the provided CODE
7087:
7088: Arguments:
7089: $allcodes - hash ref returned by &get_codes()
7090: $CODE - CODE from the current scanline
7091:
7092: Returns:
7093: 2 element list
7094: - first elements is number of how closely matching the best fit is
7095: (5 means best set has 5 matching characters)
7096: - second element is an arrary ref containing the set of valid CODEs
7097: that best fit the passed in CODE
7098:
1.423 albertel 7099: =cut
7100:
1.194 albertel 7101: sub scantron_get_closely_matching_CODEs {
7102: my ($allcodes,$CODE)=@_;
7103: my @CODEs;
7104: foreach my $testcode (sort(keys(%{$allcodes}))) {
7105: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
7106: }
7107:
7108: return ($#CODEs,$CODEs[-1]);
7109: }
7110:
1.423 albertel 7111: =pod
7112:
7113: =item get_codes
7114:
1.424 albertel 7115: Builds a hash which has keys of all of the valid CODEs from the selected
7116: set of remembered CODEs.
7117:
7118: Arguments:
7119: $old_name - name of the set of remembered CODEs
7120: $cdom - domain of the course
7121: $cnum - internal course name
7122:
7123: Returns:
7124: %allcodes - keys are the valid CODEs, values are all 1
7125:
1.423 albertel 7126: =cut
7127:
1.194 albertel 7128: sub get_codes {
1.280 foxr 7129: my ($old_name, $cdom, $cnum) = @_;
7130: if (!$old_name) {
7131: $old_name=$env{'form.scantron_CODElist'};
7132: }
7133: if (!$cdom) {
7134: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
7135: }
7136: if (!$cnum) {
7137: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
7138: }
1.278 albertel 7139: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
7140: $cdom,$cnum);
7141: my %allcodes;
7142: if ($result{"type\0$old_name"} eq 'number') {
7143: %allcodes=map {($_,1)} split(',',$result{$old_name});
7144: } else {
7145: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
7146: }
1.194 albertel 7147: return %allcodes;
7148: }
7149:
1.423 albertel 7150: =pod
7151:
7152: =item scantron_validate_CODE
7153:
1.424 albertel 7154: Validates all scanlines in the selected file to not have any
7155: invalid or underspecified CODEs and that none of the codes are
7156: duplicated if this was requested.
7157:
1.423 albertel 7158: =cut
7159:
1.157 albertel 7160: sub scantron_validate_CODE {
7161: my ($r,$currentphase) = @_;
1.257 albertel 7162: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 7163: if ($scantron_config{'CODElocation'} &&
7164: $scantron_config{'CODEstart'} &&
7165: $scantron_config{'CODElength'}) {
1.257 albertel 7166: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 7167: &FIXME_blow_up()
7168: }
7169: } else {
7170: return (0,$currentphase+1);
7171: }
7172:
7173: my %usedCODEs;
7174:
1.194 albertel 7175: my %allcodes=&get_codes();
1.186 albertel 7176:
1.447 foxr 7177: &scantron_get_maxbubble(); # parse needs the lines per response array.
7178:
1.186 albertel 7179: my ($scanlines,$scan_data)=&scantron_getfile();
7180: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7181: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 7182: if ($line=~/^[\s\cz]*$/) { next; }
7183: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7184: $scan_data);
7185: my $CODE=$$scan_record{'scantron.CODE'};
7186: my $error=0;
1.224 albertel 7187: if (!&Apache::lonnet::validCODE($CODE)) {
7188: &scantron_get_correction($r,$i,$scan_record,
7189: \%scantron_config,
7190: $line,'incorrectCODE',\%allcodes);
7191: return(1,$currentphase);
7192: }
1.221 albertel 7193: if (%allcodes && !exists($allcodes{$CODE})
7194: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 7195: &scantron_get_correction($r,$i,$scan_record,
7196: \%scantron_config,
1.194 albertel 7197: $line,'incorrectCODE',\%allcodes);
7198: return(1,$currentphase);
1.186 albertel 7199: }
1.214 albertel 7200: if (exists($usedCODEs{$CODE})
1.257 albertel 7201: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 7202: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 7203: &scantron_get_correction($r,$i,$scan_record,
7204: \%scantron_config,
1.194 albertel 7205: $line,'duplicateCODE',$usedCODEs{$CODE});
7206: return(1,$currentphase);
1.186 albertel 7207: }
1.194 albertel 7208: push (@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 7209: }
1.157 albertel 7210: return (0,$currentphase+1);
7211: }
7212:
1.423 albertel 7213: =pod
7214:
7215: =item scantron_validate_doublebubble
7216:
1.424 albertel 7217: Validates all scanlines in the selected file to not have any
7218: bubble lines with multiple bubbles marked.
7219:
1.423 albertel 7220: =cut
7221:
1.157 albertel 7222: sub scantron_validate_doublebubble {
7223: my ($r,$currentphase) = @_;
7224: #get student info
7225: my $classlist=&Apache::loncoursedata::get_classlist();
7226: my %idmap=&username_to_idmap($classlist);
7227:
7228: #get scantron line setup
1.257 albertel 7229: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7230: my ($scanlines,$scan_data)=&scantron_getfile();
1.447 foxr 7231: &scantron_get_maxbubble(); # parse needs the bubble line array.
7232:
1.157 albertel 7233: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7234: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7235: if ($line=~/^[\s\cz]*$/) { next; }
7236: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7237: $scan_data);
7238: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
7239: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
7240: 'doublebubble',
7241: $$scan_record{'scantron.doubleerror'});
7242: return (1,$currentphase);
7243: }
7244: return (0,$currentphase+1);
7245: }
7246:
1.423 albertel 7247: =pod
7248:
7249: =item scantron_get_maxbubble
7250:
1.424 albertel 7251: Returns the maximum number of bubble lines that are expected to
7252: occur. Does this by walking the selected sequence rendering the
7253: resource and then checking &Apache::lonxml::get_problem_counter()
7254: for what the current value of the problem counter is.
7255:
1.447 foxr 7256: Caches the results to $env{'form.scantron_maxbubble'},
1.503 raeburn 7257: $env{'form.scantron.bubble_lines.n'},
7258: $env{'form.scantron.first_bubble_line.n'} and
7259: $env{"form.scantron.sub_bubblelines.n"}
1.447 foxr 7260: which are the total number of bubble, lines, the number of bubble
1.503 raeburn 7261: lines for response n and number of the first bubble line for response n,
7262: and a comma separated list of numbers of bubble lines for sub-questions
1.509 raeburn 7263: (for optionresponse, matchresponse, and rankresponse items), for response n.
1.424 albertel 7264:
1.423 albertel 7265: =cut
7266:
1.503 raeburn 7267: sub scantron_get_maxbubble {
1.257 albertel 7268: if (defined($env{'form.scantron_maxbubble'}) &&
7269: $env{'form.scantron_maxbubble'}) {
1.447 foxr 7270: &restore_bubble_lines();
1.257 albertel 7271: return $env{'form.scantron_maxbubble'};
1.191 albertel 7272: }
1.330 albertel 7273:
1.447 foxr 7274: my (undef, undef, $sequence) =
1.257 albertel 7275: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 7276:
1.447 foxr 7277: my $navmap=Apache::lonnavmaps::navmap->new();
1.191 albertel 7278: my $map=$navmap->getResourceByUrl($sequence);
7279: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.330 albertel 7280:
7281: &Apache::lonxml::clear_problem_counter();
7282:
1.435 foxr 7283: my $uname = $env{'form.student'};
7284: my $udom = $env{'form.userdom'};
7285: my $cid = $env{'request.course.id'};
7286: my $total_lines = 0;
7287: %bubble_lines_per_response = ();
1.447 foxr 7288: %first_bubble_line = ();
1.503 raeburn 7289: %subdivided_bubble_lines = ();
7290: %responsetype_per_response = ();
1.447 foxr 7291:
7292: my $response_number = 0;
7293: my $bubble_line = 0;
1.191 albertel 7294: foreach my $resource (@resources) {
1.515 raeburn 7295: my $symb = $resource->symb();
1.510 raeburn 7296: # Need to retrieve part IDs and response IDs because essayresponse,
7297: # reactionresponse and organicresponse items are not included in
7298: # $analysis{'parts'} from lonnet::ssi.
1.503 raeburn 7299: my %possible_part_ids;
7300: if (ref($resource->parts()) eq 'ARRAY') {
7301: foreach my $part (@{$resource->parts()}) {
1.515 raeburn 7302: if (!&Apache::loncommon::check_if_partid_hidden($part,$symb,$udom,$uname)) {
7303: my @resp_ids = $resource->responseIds($part);
7304: foreach my $id (@resp_ids) {
7305: $possible_part_ids{$part.'.'.$id} = 1;
7306: }
1.503 raeburn 7307: }
7308: }
7309: }
1.513 foxr 7310: my $result=&ssi_with_retries($resource->src(), $ssi_retries,
1.516 raeburn 7311: ('symb' => $symb,
7312: 'grade_target' => 'analyze',
7313: 'grade_courseid' => $cid,
7314: 'grade_domain' => $udom,
7315: 'grade_username' => $uname));
1.436 albertel 7316: my (undef, $an) =
1.435 foxr 7317: split(/_HASH_REF__/,$result, 2);
7318:
1.503 raeburn 7319: my @parts;
7320:
1.435 foxr 7321: my %analysis = &Apache::lonnet::str2hash($an);
7322:
1.503 raeburn 7323: if (ref($analysis{'parts'}) eq 'ARRAY') {
1.515 raeburn 7324: foreach my $part (@{$analysis{'parts'}}) {
7325: my ($id,$respid) = split(/\./,$part);
7326: if (!&Apache::loncommon::check_if_partid_hidden($id,$symb,$udom,$uname)) {
7327: push(@parts,$part);
7328: }
7329: }
1.503 raeburn 7330: }
7331: # Add part_ids for any essayresponse items.
7332: foreach my $part_id (keys(%possible_part_ids)) {
1.510 raeburn 7333: if (($analysis{$part_id.'.type'} eq 'essayresponse') ||
7334: ($analysis{$part_id.'.type'} eq 'reactionresponse') ||
7335: ($analysis{$part_id.'.type'} eq 'organicresponse')) {
1.503 raeburn 7336: if (!grep(/^\Q$part_id\E$/,@parts)) {
7337: push (@parts,$part_id);
7338: }
7339: }
7340: }
1.435 foxr 7341:
1.503 raeburn 7342: foreach my $part_id (@parts) {
7343: my $lines = $analysis{"$part_id.bubble_lines"};
1.447 foxr 7344:
7345: # TODO - make this a persistent hash not an array.
7346:
1.509 raeburn 7347: # optionresponse, matchresponse and rankresponse type items
7348: # render as separate sub-questions in exam mode.
1.503 raeburn 7349: if (($analysis{$part_id.'.type'} eq 'optionresponse') ||
1.509 raeburn 7350: ($analysis{$part_id.'.type'} eq 'matchresponse') ||
7351: ($analysis{$part_id.'.type'} eq 'rankresponse')) {
1.503 raeburn 7352: my ($numbub,$numshown);
7353: if ($analysis{$part_id.'.type'} eq 'optionresponse') {
7354: if (ref($analysis{$part_id.'.options'}) eq 'ARRAY') {
7355: $numbub = scalar(@{$analysis{$part_id.'.options'}});
7356: }
7357: } elsif ($analysis{$part_id.'.type'} eq 'matchresponse') {
7358: if (ref($analysis{$part_id.'.items'}) eq 'ARRAY') {
7359: $numbub = scalar(@{$analysis{$part_id.'.items'}});
7360: }
1.509 raeburn 7361: } elsif ($analysis{$part_id.'.type'} eq 'rankresponse') {
7362: if (ref($analysis{$part_id.'.foils'}) eq 'ARRAY') {
7363: $numbub = scalar(@{$analysis{$part_id.'.foils'}});
7364: }
1.503 raeburn 7365: }
7366: if (ref($analysis{$part_id.'.shown'}) eq 'ARRAY') {
7367: $numshown = scalar(@{$analysis{$part_id.'.shown'}});
7368: }
7369: my $bubbles_per_line = 10;
7370: my $inner_bubble_lines = int($numshown/$bubbles_per_line);
7371: if (($numshown % $bubbles_per_line) != 0) {
7372: $inner_bubble_lines++;
7373: }
7374: for (my $i=0; $i<$numshown; $i++) {
7375: $subdivided_bubble_lines{$response_number} .=
7376: $inner_bubble_lines.',';
7377: }
7378: $subdivided_bubble_lines{$response_number} =~ s/,$//;
7379: }
1.447 foxr 7380:
1.503 raeburn 7381: $first_bubble_line{$response_number} = $bubble_line;
7382: $bubble_lines_per_response{$response_number} = $lines;
7383: $responsetype_per_response{$response_number} =
7384: $analysis{$part_id.'.type'};
1.447 foxr 7385: $response_number++;
7386:
7387: $bubble_line += $lines;
7388: $total_lines += $lines;
1.435 foxr 7389: }
7390:
1.191 albertel 7391: }
7392: &Apache::lonnet::delenv('scantron\.');
1.447 foxr 7393:
7394: &save_bubble_lines();
1.330 albertel 7395: $env{'form.scantron_maxbubble'} =
1.435 foxr 7396: $total_lines;
1.257 albertel 7397: return $env{'form.scantron_maxbubble'};
1.191 albertel 7398: }
7399:
1.423 albertel 7400: =pod
7401:
7402: =item scantron_validate_missingbubbles
7403:
1.424 albertel 7404: Validates all scanlines in the selected file to not have any
1.447 foxr 7405: answers that don't have bubbles that have not been verified
7406: to be bubble free.
1.424 albertel 7407:
1.423 albertel 7408: =cut
7409:
1.157 albertel 7410: sub scantron_validate_missingbubbles {
7411: my ($r,$currentphase) = @_;
7412: #get student info
7413: my $classlist=&Apache::loncoursedata::get_classlist();
7414: my %idmap=&username_to_idmap($classlist);
7415:
7416: #get scantron line setup
1.257 albertel 7417: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7418: my ($scanlines,$scan_data)=&scantron_getfile();
1.191 albertel 7419: my $max_bubble=&scantron_get_maxbubble();
1.157 albertel 7420: if (!$max_bubble) { $max_bubble=2**31; }
7421: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 7422: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7423: if ($line=~/^[\s\cz]*$/) { next; }
7424: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7425: $scan_data);
7426: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
7427: my @to_correct;
1.470 foxr 7428:
7429: # Probably here's where the error is...
7430:
1.157 albertel 7431: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
1.505 raeburn 7432: my $lastbubble;
7433: if ($missing =~ /^(\d+)\.(\d+)$/) {
7434: my $question = $1;
7435: my $subquestion = $2;
7436: if (!defined($first_bubble_line{$question -1})) { next; }
7437: my $first = $first_bubble_line{$question-1};
7438: my @subans = split(/,/,$subdivided_bubble_lines{$question-1});
7439: my $subcount = 1;
7440: while ($subcount<$subquestion) {
7441: $first += $subans[$subcount-1];
7442: $subcount ++;
7443: }
7444: my $count = $subans[$subquestion-1];
7445: $lastbubble = $first + $count;
7446: } else {
7447: if (!defined($first_bubble_line{$missing - 1})) { next; }
7448: $lastbubble = $first_bubble_line{$missing - 1} + $bubble_lines_per_response{$missing - 1};
7449: }
7450: if ($lastbubble > $max_bubble) { next; }
1.157 albertel 7451: push(@to_correct,$missing);
7452: }
7453: if (@to_correct) {
7454: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
7455: $line,'missingbubble',\@to_correct);
7456: return (1,$currentphase);
7457: }
7458:
7459: }
7460: return (0,$currentphase+1);
7461: }
7462:
1.423 albertel 7463: =pod
7464:
7465: =item scantron_process_students
7466:
7467: Routine that does the actual grading of the bubble sheet information.
7468:
7469: The parsed scanline hash is added to %env
7470:
7471: Then foreach unskipped scanline it does an &Apache::lonnet::ssi()
7472: foreach resource , with the form data of
7473:
7474: 'submitted' =>'scantron'
7475: 'grade_target' =>'grade',
7476: 'grade_username'=> username of student
7477: 'grade_domain' => domain of student
7478: 'grade_courseid'=> of course
7479: 'grade_symb' => symb of resource to grade
7480:
7481: This triggers a grading pass. The problem grading code takes care
7482: of converting the bubbled letter information (now in %env) into a
7483: valid submission.
7484:
7485: =cut
7486:
1.82 albertel 7487: sub scantron_process_students {
1.75 albertel 7488: my ($r) = @_;
1.513 foxr 7489:
1.257 albertel 7490: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.324 albertel 7491: my ($symb)=&get_symb($r);
1.513 foxr 7492: if (!$symb) {
7493: return '';
7494: }
1.324 albertel 7495: my $default_form_data=&defaultFormData($symb);
1.82 albertel 7496:
1.257 albertel 7497: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 7498: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 7499: my $classlist=&Apache::loncoursedata::get_classlist();
7500: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 7501: my $navmap=Apache::lonnavmaps::navmap->new();
1.83 albertel 7502: my $map=$navmap->getResourceByUrl($sequence);
7503: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.140 albertel 7504: # $r->print("geto ".scalar(@resources)."<br />");
1.82 albertel 7505: my $result= <<SCANTRONFORM;
1.81 albertel 7506: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
7507: <input type="hidden" name="command" value="scantron_configphase" />
7508: $default_form_data
7509: SCANTRONFORM
1.82 albertel 7510: $r->print($result);
7511:
7512: my @delayqueue;
1.140 albertel 7513: my %completedstudents;
7514:
1.200 albertel 7515: my $count=&get_todo_count($scanlines,$scan_data);
1.157 albertel 7516: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
1.200 albertel 7517: 'Scantron Progress',$count,
1.195 albertel 7518: 'inline',undef,'scantronupload');
1.140 albertel 7519: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
7520: 'Processing first student');
7521: my $start=&Time::HiRes::time();
1.158 albertel 7522: my $i=-1;
1.200 albertel 7523: my ($uname,$udom,$started);
1.447 foxr 7524:
7525: &scantron_get_maxbubble(); # Need the bubble lines array to parse.
1.513 foxr 7526:
7527:
7528: # If an ssi failed in scantron_get_maxbubble, put an error message out to
7529: # the user and return.
7530:
7531: if ($ssi_error) {
7532: $r->print("</form>");
7533: &ssi_print_error($r);
7534: $r->print(&show_grading_menu_form($symb));
7535: return ''; # Dunno why the other returns return '' rather than just returning.
7536: }
1.447 foxr 7537:
1.157 albertel 7538: while ($i<$scanlines->{'count'}) {
7539: ($uname,$udom)=('','');
7540: $i++;
1.200 albertel 7541: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 7542: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 7543: if ($started) {
7544: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
7545: 'last student');
7546: }
7547: $started=1;
1.157 albertel 7548: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
7549: $scan_data);
7550: unless ($uname=&scantron_find_student($scan_record,$scan_data,
7551: \%idmap,$i)) {
7552: &scantron_add_delay(\@delayqueue,$line,
7553: 'Unable to find a student that matches',1);
7554: next;
7555: }
7556: if (exists $completedstudents{$uname}) {
7557: &scantron_add_delay(\@delayqueue,$line,
7558: 'Student '.$uname.' has multiple sheets',2);
7559: next;
7560: }
7561: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 7562:
7563: &Apache::lonxml::clear_problem_counter();
1.514 raeburn 7564: &Apache::lonnet::appenv($scan_record);
1.376 albertel 7565:
7566: if (&scantron_clear_skip($scanlines,$scan_data,$i)) {
7567: &scantron_putfile($scanlines,$scan_data);
7568: }
1.161 albertel 7569:
7570: my $i=0;
1.83 albertel 7571: foreach my $resource (@resources) {
1.85 albertel 7572: $i++;
1.193 albertel 7573: my %form=('submitted' =>'scantron',
7574: 'grade_target' =>'grade',
7575: 'grade_username'=>$uname,
7576: 'grade_domain' =>$udom,
1.257 albertel 7577: 'grade_courseid'=>$env{'request.course.id'},
1.193 albertel 7578: 'grade_symb' =>$resource->symb());
1.383 albertel 7579: if (exists($scan_record->{'scantron.CODE'})
7580: &&
7581: &Apache::lonnet::validCODE($scan_record->{'scantron.CODE'})) {
1.193 albertel 7582: $form{'CODE'}=$scan_record->{'scantron.CODE'};
1.224 albertel 7583: } else {
7584: $form{'CODE'}='';
1.513 foxr 7585: }
7586: my $result=&ssi_with_retries($resource->src(), $ssi_retries, %form);
7587: if ($ssi_error) {
7588: $ssi_error = 0; # So end of handler error message does not trigger.
7589: $r->print("</form>");
7590: &ssi_print_error($r);
7591: $r->print(&show_grading_menu_form($symb));
7592: return ''; # Why return ''? Beats me.
1.193 albertel 7593: }
1.513 foxr 7594:
1.213 albertel 7595: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.83 albertel 7596: }
1.140 albertel 7597: $completedstudents{$uname}={'line'=>$line};
1.213 albertel 7598: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 7599: } continue {
1.330 albertel 7600: &Apache::lonxml::clear_problem_counter();
1.83 albertel 7601: &Apache::lonnet::delenv('scantron\.');
1.82 albertel 7602: }
1.140 albertel 7603: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.172 albertel 7604: # my $lasttime = &Time::HiRes::time()-$start;
7605: # $r->print("<p>took $lasttime</p>");
1.140 albertel 7606:
1.200 albertel 7607: $r->print("</form>");
1.324 albertel 7608: $r->print(&show_grading_menu_form($symb));
1.157 albertel 7609: return '';
1.75 albertel 7610: }
1.157 albertel 7611:
1.423 albertel 7612: =pod
7613:
7614: =item scantron_upload_scantron_data
7615:
7616: Creates the screen for adding a new bubble sheet data file to a course.
7617:
7618: =cut
7619:
1.157 albertel 7620: sub scantron_upload_scantron_data {
7621: my ($r)=@_;
1.257 albertel 7622: $r->print(&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}));
1.157 albertel 7623: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 7624: 'domainid',
7625: 'coursename');
1.257 albertel 7626: my $domsel=&Apache::loncommon::select_dom_form($env{'request.role.domain'},
1.157 albertel 7627: 'domainid');
1.324 albertel 7628: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.492 albertel 7629: $r->print('
1.157 albertel 7630: <script type="text/javascript" language="javascript">
7631: function checkUpload(formname) {
7632: if (formname.upfile.value == "") {
7633: alert("Please use the browse button to select a file from your local directory.");
7634: return false;
7635: }
7636: formname.submit();
7637: }
7638: </script>
7639:
1.492 albertel 7640: <form enctype="multipart/form-data" action="/adm/grades" name="rules" method="post">
7641: '.$default_form_data.'
1.181 albertel 7642: <table>
1.492 albertel 7643: <tr><td>'.$select_link.' </td></tr>
7644: <tr><td>'.&mt('Course ID:').' </td>
7645: <td><input name="courseid" type="text" /> </td></tr>
7646: <tr><td>'.&mt('Course Name:').' </td>
7647: <td><input name="coursename" type="text" /> </td></tr>
7648: <tr><td>'.&mt('Domain:').' </td>
7649: <td>'.$domsel.' </td></tr>
7650: <tr><td>'.&mt('File to upload:').'</td>
7651: <td><input type="file" name="upfile" size="50" /></td></tr>
1.181 albertel 7652: </table>
1.492 albertel 7653: <input name="command" value="scantronupload_save" type="hidden" />
7654: <input type="button" onClick="javascript:checkUpload(this.form);" value="'.&mt('Upload Scantron Data').'" />
1.157 albertel 7655: </form>
1.492 albertel 7656: ');
1.157 albertel 7657: return '';
7658: }
7659:
1.423 albertel 7660: =pod
7661:
7662: =item scantron_upload_scantron_data_save
7663:
7664: Adds a provided bubble information data file to the course if user
7665: has the correct privileges to do so.
7666:
7667: =cut
7668:
1.157 albertel 7669: sub scantron_upload_scantron_data_save {
7670: my($r)=@_;
1.324 albertel 7671: my ($symb)=&get_symb($r,1);
1.182 albertel 7672: my $doanotherupload=
7673: '<br /><form action="/adm/grades" method="post">'."\n".
7674: '<input type="hidden" name="command" value="scantronupload" />'."\n".
1.492 albertel 7675: '<input type="submit" name="submit" value="'.&mt('Do Another Upload').'" />'."\n".
1.182 albertel 7676: '</form>'."\n";
1.257 albertel 7677: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 7678: !&Apache::lonnet::allowed('usc',
1.257 albertel 7679: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.492 albertel 7680: $r->print(&mt("You are not allowed to upload Scantron data to the requested course.")."<br />");
1.182 albertel 7681: if ($symb) {
1.324 albertel 7682: $r->print(&show_grading_menu_form($symb));
1.182 albertel 7683: } else {
7684: $r->print($doanotherupload);
7685: }
1.162 albertel 7686: return '';
7687: }
1.257 albertel 7688: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.492 albertel 7689: $r->print(&mt("Doing upload to [_1]",$coursedata{'description'})." <br />");
1.257 albertel 7690: my $fname=$env{'form.upfile.filename'};
1.157 albertel 7691: #FIXME
7692: #copied from lonnet::userfileupload()
7693: #make that function able to target a specified course
7694: # Replace Windows backslashes by forward slashes
7695: $fname=~s/\\/\//g;
7696: # Get rid of everything but the actual filename
7697: $fname=~s/^.*\/([^\/]+)$/$1/;
7698: # Replace spaces by underscores
7699: $fname=~s/\s+/\_/g;
7700: # Replace all other weird characters by nothing
7701: $fname=~s/[^\w\.\-]//g;
7702: # See if there is anything left
7703: unless ($fname) { return 'error: no uploaded file'; }
1.209 ng 7704: my $uploadedfile=$fname;
1.157 albertel 7705: $fname='scantron_orig_'.$fname;
1.257 albertel 7706: if (length($env{'form.upfile'}) < 2) {
1.492 albertel 7707: $r->print(&mt("<span class=\"LC_error\">Error:</span> The file you attempted to upload, [_1] contained no information. Please check that you entered the correct filename.",'<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</span>"));
1.183 albertel 7708: } else {
1.275 albertel 7709: my $result=&Apache::lonnet::finishuserfileupload($env{'form.courseid'},$env{'form.domainid'},'upfile',$fname);
1.210 albertel 7710: if ($result =~ m|^/uploaded/|) {
1.492 albertel 7711: $r->print(&mt("<span class=\"LC_success\">Success:</span> Successfully uploaded [_1] bytes of data into location [_2]",
7712: (length($env{'form.upfile'})-1),
7713: '<span class="LC_filename">'.$result."</span>"));
1.210 albertel 7714: } else {
1.492 albertel 7715: $r->print(&mt("<span class=\"LC_error\">Error:</span> An error ([_1]) occurred when attempting to upload the file, [_2]",
7716: $result,
7717: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</span>"));
7718:
1.183 albertel 7719: }
7720: }
1.174 albertel 7721: if ($symb) {
1.209 ng 7722: $r->print(&scantron_selectphase($r,$uploadedfile));
1.174 albertel 7723: } else {
1.182 albertel 7724: $r->print($doanotherupload);
1.174 albertel 7725: }
1.157 albertel 7726: return '';
7727: }
7728:
1.423 albertel 7729: =pod
7730:
7731: =item valid_file
7732:
1.424 albertel 7733: Validates that the requested bubble data file exists in the course.
1.423 albertel 7734:
7735: =cut
7736:
1.202 albertel 7737: sub valid_file {
7738: my ($requested_file)=@_;
7739: foreach my $filename (sort(&scantron_filenames())) {
7740: if ($requested_file eq $filename) { return 1; }
7741: }
7742: return 0;
7743: }
7744:
1.423 albertel 7745: =pod
7746:
7747: =item scantron_download_scantron_data
7748:
7749: Shows a list of the three internal files (original, corrected,
7750: skipped) for a specific bubble sheet data file that exists in the
7751: course.
7752:
7753: =cut
7754:
1.202 albertel 7755: sub scantron_download_scantron_data {
7756: my ($r)=@_;
1.324 albertel 7757: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 7758: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7759: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
7760: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 7761: if (! &valid_file($file)) {
1.492 albertel 7762: $r->print('
1.202 albertel 7763: <p>
1.492 albertel 7764: '.&mt('The requested file name was invalid.').'
1.202 albertel 7765: </p>
1.492 albertel 7766: ');
1.324 albertel 7767: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 7768: return;
7769: }
7770: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
7771: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
7772: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
7773: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
7774: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
7775: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
1.492 albertel 7776: $r->print('
1.202 albertel 7777: <p>
1.492 albertel 7778: '.&mt('[_1]Original[_2] file as uploaded by the scantron office.',
7779: '<a href="'.$orig.'">','</a>').'
1.202 albertel 7780: </p>
7781: <p>
1.492 albertel 7782: '.&mt('[_1]Corrections[_2], a file of corrected records that were used in grading.',
7783: '<a href="'.$corrected.'">','</a>').'
1.202 albertel 7784: </p>
7785: <p>
1.492 albertel 7786: '.&mt('[_1]Skipped[_2], a file of records that were skipped.',
7787: '<a href="'.$skipped.'">','</a>').'
1.202 albertel 7788: </p>
1.492 albertel 7789: ');
1.324 albertel 7790: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 7791: return '';
7792: }
1.157 albertel 7793:
1.423 albertel 7794: =pod
7795:
7796: =back
7797:
7798: =cut
7799:
1.75 albertel 7800: #-------- end of section for handling grading scantron forms -------
7801: #
7802: #-------------------------------------------------------------------
7803:
1.72 ng 7804: #-------------------------- Menu interface -------------------------
7805: #
7806: #--- Show a Grading Menu button - Calls the next routine ---
7807: sub show_grading_menu_form {
1.324 albertel 7808: my ($symb)=@_;
1.125 ng 7809: my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.418 albertel 7810: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.257 albertel 7811: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.72 ng 7812: '<input type="hidden" name="command" value="gradingmenu" />'."\n".
1.478 albertel 7813: '<input type="submit" name="submit" value="'.&mt('Grading Menu').'" />'."\n".
1.72 ng 7814: '</form>'."\n";
7815: return $result;
7816: }
7817:
1.77 ng 7818: # -- Retrieve choices for grading form
7819: sub savedState {
7820: my %savedState = ();
1.257 albertel 7821: if ($env{'form.saveState'}) {
7822: foreach (split(/:/,$env{'form.saveState'})) {
1.77 ng 7823: my ($key,$value) = split(/=/,$_,2);
7824: $savedState{$key} = $value;
7825: }
7826: }
7827: return \%savedState;
7828: }
1.76 ng 7829:
1.443 banghart 7830: sub grading_menu {
7831: my ($request) = @_;
7832: my ($symb)=&get_symb($request);
7833: if (!$symb) {return '';}
7834: my $probTitle = &Apache::lonnet::gettitle($symb);
7835: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
7836:
1.444 banghart 7837: $request->print($table);
1.443 banghart 7838: my %fields = ('symb'=>&Apache::lonenc::check_encrypt($symb),
7839: 'handgrade'=>$hdgrade,
7840: 'probTitle'=>$probTitle,
7841: 'command'=>'submit_options',
7842: 'saveState'=>"",
7843: 'gradingMenu'=>1,
7844: 'showgrading'=>"yes");
7845: my $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7846: my @menu = ({ url => $url,
7847: name => &mt('Manual Grading/View Submissions'),
7848: short_description =>
7849: &mt('Start the process of hand grading submissions.'),
7850: });
7851: $fields{'command'} = 'csvform';
7852: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7853: push (@menu, { url => $url,
7854: name => &mt('Upload Scores'),
7855: short_description =>
7856: &mt('Specify a file containing the class scores for current resource.')});
7857: $fields{'command'} = 'processclicker';
7858: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7859: push (@menu, { url => $url,
7860: name => &mt('Process Clicker'),
7861: short_description =>
7862: &mt('Specify a file containing the clicker information for this resource.')});
7863: $fields{'command'} = 'scantron_selectphase';
7864: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
7865: push (@menu, { url => $url,
1.454 banghart 7866: name => &mt('Grade/Manage Scantron Forms'),
7867: short_description =>
7868: &mt('')});
1.443 banghart 7869: $fields{'command'} = 'verify';
7870: $url = &Apache::lonhtmlcommon::build_url('grades/',\%fields);
1.445 banghart 7871: push (@menu, { url => "",
1.443 banghart 7872: name => &mt('Verify Receipt'),
7873: short_description =>
7874: &mt('')});
7875: #
7876: # Create the menu
7877: my $Str;
1.444 banghart 7878: # $Str .= '<h2>'.&mt('Please select a grading task').'</h2>';
1.445 banghart 7879: $Str .= '<form method="post" action="" name="gradingMenu">';
7880: $Str .= '<input type="hidden" name="command" value="" />'.
7881: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
7882: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
1.476 albertel 7883: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.445 banghart 7884: '<input type="hidden" name="saveState" value="" />'."\n".
7885: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
7886: '<input type="hidden" name="showgrading" value="yes" />'."\n";
7887:
1.443 banghart 7888: foreach my $menudata (@menu) {
1.445 banghart 7889: if ($menudata->{'name'} ne &mt('Verify Receipt')) {
7890: $Str .=' <h3><a '.
7891: $menudata->{'jscript'}.
7892: ' href="'.
7893: $menudata->{'url'}.'" >'.
7894: $menudata->{'name'}."</a></h3>\n";
7895: } else {
1.511 www 7896: $Str .='<hr /><input type="button" value="'.&mt('Verify Receipt').'" '.
1.445 banghart 7897: $menudata->{'jscript'}.
1.458 banghart 7898: ' onClick="javascript:checkChoice(document.forms.gradingMenu,\'5\',\'verify\')" '.
1.511 www 7899: ' /> '.
7900: &Apache::lonnet::recprefix($env{'request.course.id'}).
7901: '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />';
1.444 banghart 7902: }
1.443 banghart 7903: $Str .= ' '.(' 'x8).$menudata->{'short_description'}.
7904: "\n";
7905: }
1.444 banghart 7906: $Str .="</form>\n";
1.443 banghart 7907: $request->print(<<GRADINGMENUJS);
7908: <script type="text/javascript" language="javascript">
7909: function checkChoice(formname,val,cmdx) {
7910: if (val <= 2) {
7911: var cmd = radioSelection(formname.radioChoice);
7912: var cmdsave = cmd;
7913: } else {
7914: cmd = cmdx;
7915: cmdsave = 'submission';
7916: }
7917: formname.command.value = cmd;
7918: if (val < 5) formname.submit();
7919: if (val == 5) {
1.458 banghart 7920: if (!checkReceiptNo(formname,'notOK')) {
7921: return false;
7922: } else {
7923: formname.submit();
7924: }
1.445 banghart 7925: }
7926: }
1.443 banghart 7927:
7928: function checkReceiptNo(formname,nospace) {
7929: var receiptNo = formname.receipt.value;
7930: var checkOpt = false;
7931: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
7932: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
7933: if (checkOpt) {
7934: alert("Please enter a receipt number given by a student in the receipt box.");
7935: formname.receipt.value = "";
7936: formname.receipt.focus();
7937: return false;
7938: }
7939: return true;
7940: }
7941: </script>
7942: GRADINGMENUJS
7943: &commonJSfunctions($request);
7944: return $Str;
7945: }
7946:
7947:
7948: #--- Displays the submissions first page -------
7949: sub submit_options {
1.72 ng 7950: my ($request) = @_;
1.324 albertel 7951: my ($symb)=&get_symb($request);
1.72 ng 7952: if (!$symb) {return '';}
1.76 ng 7953: my $probTitle = &Apache::lonnet::gettitle($symb);
1.72 ng 7954:
7955: $request->print(<<GRADINGMENUJS);
7956: <script type="text/javascript" language="javascript">
1.116 ng 7957: function checkChoice(formname,val,cmdx) {
7958: if (val <= 2) {
7959: var cmd = radioSelection(formname.radioChoice);
1.118 ng 7960: var cmdsave = cmd;
1.116 ng 7961: } else {
7962: cmd = cmdx;
1.118 ng 7963: cmdsave = 'submission';
1.116 ng 7964: }
7965: formname.command.value = cmd;
1.118 ng 7966: formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145 albertel 7967: ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116 ng 7968: if (val < 5) formname.submit();
7969: if (val == 5) {
1.72 ng 7970: if (!checkReceiptNo(formname,'notOK')) { return false;}
7971: formname.submit();
7972: }
1.238 albertel 7973: if (val < 7) formname.submit();
1.72 ng 7974: }
7975:
7976: function checkReceiptNo(formname,nospace) {
7977: var receiptNo = formname.receipt.value;
7978: var checkOpt = false;
7979: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
7980: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
7981: if (checkOpt) {
7982: alert("Please enter a receipt number given by a student in the receipt box.");
7983: formname.receipt.value = "";
7984: formname.receipt.focus();
7985: return false;
7986: }
7987: return true;
7988: }
7989: </script>
7990: GRADINGMENUJS
1.118 ng 7991: &commonJSfunctions($request);
1.324 albertel 7992: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
1.473 albertel 7993: my $result;
1.76 ng 7994: my (undef,$sections) = &getclasslist('all','0');
1.77 ng 7995: my $savedState = &savedState();
1.118 ng 7996: my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77 ng 7997: my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118 ng 7998: my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77 ng 7999: my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72 ng 8000:
8001: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
1.418 albertel 8002: '<input type="hidden" name="symb" value="'.&Apache::lonenc::check_encrypt($symb).'" />'."\n".
1.72 ng 8003: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
8004: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.116 ng 8005: '<input type="hidden" name="command" value="" />'."\n".
1.77 ng 8006: '<input type="hidden" name="saveState" value="" />'."\n".
1.124 ng 8007: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72 ng 8008: '<input type="hidden" name="showgrading" value="yes" />'."\n";
8009:
1.472 albertel 8010: $result.='
8011: <div class="LC_grade_select_mode">
1.473 albertel 8012: <div class="LC_grade_select_mode_current">
8013: <h2>
8014: '.&mt('Grade Current Resource').'
8015: </h2>
8016: <div class="LC_grade_select_mode_body">
8017: <div class="LC_grades_resource_info">
8018: '.$table.'
8019: </div>
8020: <div class="LC_grade_select_mode_selector">
8021: <div class="LC_grade_select_mode_selector_header">
8022: '.&mt('Sections').'
8023: </div>
8024: <div class="LC_grade_select_mode_selector_body">
8025: <select name="section" multiple="multiple" size="5">'."\n";
1.116 ng 8026: if (ref($sections)) {
1.472 albertel 8027: foreach my $section (sort (@$sections)) {
8028: $result.='<option value="'.$section.'" '.
8029: ($saveSec eq $section ? 'selected="selected"':'').'>'.$section.'</option>'."\n";
1.155 albertel 8030: }
1.116 ng 8031: }
1.401 albertel 8032: $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="selected"' : ''). '>all</option></select> ';
1.472 albertel 8033: $result.='
1.473 albertel 8034: </div>
8035: </div>
8036: <div class="LC_grade_select_mode_selector">
8037: <div class="LC_grade_select_mode_selector_header">
8038: '.&mt('Groups').'
8039: </div>
8040: <div class="LC_grade_select_mode_selector_body">
8041: '.&Apache::lonstatistics::GroupSelect('group','multiple',5).'
8042: </div>
1.472 albertel 8043: </div>
1.473 albertel 8044: <div class="LC_grade_select_mode_selector">
8045: <div class="LC_grade_select_mode_selector_header">
8046: '.&mt('Access Status').'
8047: </div>
8048: <div class="LC_grade_select_mode_selector_body">
8049: '.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,5,undef,'mult').'
8050: </div>
1.472 albertel 8051: </div>
1.473 albertel 8052: <div class="LC_grade_select_mode_selector">
8053: <div class="LC_grade_select_mode_selector_header">
8054: '.&mt('Submission Status').'
8055: </div>
8056: <div class="LC_grade_select_mode_selector_body">
8057: <select name="submitonly" size="5">
8058: <option value="yes" '. ($saveSub eq 'yes' ? 'selected="selected"' : '').'>'.&mt('with submissions').'</option>
8059: <option value="queued" '. ($saveSub eq 'queued' ? 'selected="selected"' : '').'>'.&mt('in grading queue').'</option>
8060: <option value="graded" '. ($saveSub eq 'graded' ? 'selected="selected"' : '').'>'.&mt('with ungraded submissions').'</option>
8061: <option value="incorrect" '.($saveSub eq 'incorrect' ? 'selected="selected"' : '').'>'.&mt('with incorrect submissions').'</option>
8062: <option value="all" '. ($saveSub eq 'all' ? 'selected="selected"' : '').'>'.&mt('with any status').'</option>
8063: </select>
8064: </div>
1.472 albertel 8065: </div>
1.473 albertel 8066: <div class="LC_grade_select_mode_type_body">
8067: <div class="LC_grade_select_mode_type">
8068: <label>
8069: <input type="radio" name="radioChoice" value="submission" '.
8070: ($saveCmd eq 'submission' ? 'checked="checked"' : '').' /> '.
8071: &mt('Select individual students to grade and view submissions.').'
8072: </label>
8073: </div>
8074: <div class="LC_grade_select_mode_type">
8075: <label>
8076: <input type="radio" name="radioChoice" value="viewgrades" '.
8077: ($saveCmd eq 'viewgrades' ? 'checked="checked"' : '').' /> '.
8078: &mt('Grade all selected students in a grading table.').'
8079: </label>
8080: </div>
8081: <div class="LC_grade_select_mode_type">
8082: <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next->').'" />
8083: </div>
1.472 albertel 8084: </div>
1.473 albertel 8085: </div>
8086: </div>
8087: <div class="LC_grade_select_mode_page">
8088: <h2>
8089: '.&mt('Grade Complete Folder for One Student').'
8090: </h2>
8091: <div class="LC_grades_select_mode_body">
8092: <div class="LC_grade_select_mode_type_body">
8093: <div class="LC_grade_select_mode_type">
8094: <label>
8095: <input type="radio" name="radioChoice" value="pickStudentPage" '.
8096: ($saveCmd eq 'pickStudentPage' ? 'checked="checked"' : '').' /> '.
8097: &mt('The <b>complete</b> page/sequence/folder: For one student').'
8098: </label>
8099: </div>
8100: <div class="LC_grade_select_mode_type">
8101: <input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="'.&mt('Next->').'" />
8102: </div>
1.472 albertel 8103: </div>
8104: </div>
8105: </div>
8106: </div>
8107: </form>';
1.499 albertel 8108: $result .= &show_grading_menu_form($symb);
1.44 ng 8109: return $result;
1.2 albertel 8110: }
8111:
1.285 albertel 8112: sub reset_perm {
8113: undef(%perm);
8114: }
8115:
8116: sub init_perm {
8117: &reset_perm();
1.300 albertel 8118: foreach my $test_perm ('vgr','mgr','opa') {
8119:
8120: my $scope = $env{'request.course.id'};
8121: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
8122:
8123: $scope .= '/'.$env{'request.course.sec'};
8124: if ( $perm{$test_perm}=
8125: &Apache::lonnet::allowed($test_perm,$scope)) {
8126: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
8127: } else {
8128: delete($perm{$test_perm});
8129: }
1.285 albertel 8130: }
8131: }
8132: }
8133:
1.400 www 8134: sub gather_clicker_ids {
1.408 albertel 8135: my %clicker_ids;
1.400 www 8136:
8137: my $classlist = &Apache::loncoursedata::get_classlist();
8138:
8139: # Set up a couple variables.
1.407 albertel 8140: my $username_idx = &Apache::loncoursedata::CL_SNAME();
8141: my $domain_idx = &Apache::loncoursedata::CL_SDOM();
1.438 www 8142: my $status_idx = &Apache::loncoursedata::CL_STATUS();
1.400 www 8143:
1.407 albertel 8144: foreach my $student (keys(%$classlist)) {
1.438 www 8145: if ($classlist->{$student}->[$status_idx] ne 'Active') { next; }
1.407 albertel 8146: my $username = $classlist->{$student}->[$username_idx];
8147: my $domain = $classlist->{$student}->[$domain_idx];
1.400 www 8148: my $clickers =
1.408 albertel 8149: (&Apache::lonnet::userenvironment($domain,$username,'clickers'))[1];
1.400 www 8150: foreach my $id (split(/\,/,$clickers)) {
1.414 www 8151: $id=~s/^[\#0]+//;
1.421 www 8152: $id=~s/[\-\:]//g;
1.407 albertel 8153: if (exists($clicker_ids{$id})) {
1.408 albertel 8154: $clicker_ids{$id}.=','.$username.':'.$domain;
1.400 www 8155: } else {
1.408 albertel 8156: $clicker_ids{$id}=$username.':'.$domain;
1.400 www 8157: }
8158: }
8159: }
1.407 albertel 8160: return %clicker_ids;
1.400 www 8161: }
8162:
1.402 www 8163: sub gather_adv_clicker_ids {
1.408 albertel 8164: my %clicker_ids;
1.402 www 8165: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
8166: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
8167: my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum);
1.409 albertel 8168: foreach my $element (sort(keys(%coursepersonnel))) {
1.402 www 8169: foreach my $person (split(/\,/,$coursepersonnel{$element})) {
8170: my ($puname,$pudom)=split(/\:/,$person);
8171: my $clickers =
1.408 albertel 8172: (&Apache::lonnet::userenvironment($pudom,$puname,'clickers'))[1];
1.405 www 8173: foreach my $id (split(/\,/,$clickers)) {
1.414 www 8174: $id=~s/^[\#0]+//;
1.421 www 8175: $id=~s/[\-\:]//g;
1.408 albertel 8176: if (exists($clicker_ids{$id})) {
8177: $clicker_ids{$id}.=','.$puname.':'.$pudom;
8178: } else {
8179: $clicker_ids{$id}=$puname.':'.$pudom;
8180: }
1.405 www 8181: }
1.402 www 8182: }
8183: }
1.407 albertel 8184: return %clicker_ids;
1.402 www 8185: }
8186:
1.413 www 8187: sub clicker_grading_parameters {
8188: return ('gradingmechanism' => 'scalar',
8189: 'upfiletype' => 'scalar',
8190: 'specificid' => 'scalar',
8191: 'pcorrect' => 'scalar',
8192: 'pincorrect' => 'scalar');
8193: }
8194:
1.400 www 8195: sub process_clicker {
8196: my ($r)=@_;
8197: my ($symb)=&get_symb($r);
8198: if (!$symb) {return '';}
8199: my $result=&checkforfile_js();
8200: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
8201: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
8202: $result.=$table;
8203: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
8204: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
8205: $result.=' <b>'.&mt('Specify a file containing the clicker information for this resource').
8206: '.</b></td></tr>'."\n";
8207: $result.='<tr bgcolor=#ffffe6><td>'."\n";
1.413 www 8208: # Attempt to restore parameters from last session, set defaults if not present
8209: my %Saveable_Parameters=&clicker_grading_parameters();
8210: &Apache::loncommon::restore_course_settings('grades_clicker',
8211: \%Saveable_Parameters);
8212: if (!$env{'form.pcorrect'}) { $env{'form.pcorrect'}=100; }
8213: if (!$env{'form.pincorrect'}) { $env{'form.pincorrect'}=100; }
8214: if (!$env{'form.gradingmechanism'}) { $env{'form.gradingmechanism'}='attendance'; }
8215: if (!$env{'form.upfiletype'}) { $env{'form.upfiletype'}='iclicker'; }
8216:
8217: my %checked;
8218: foreach my $gradingmechanism ('attendance','personnel','specific') {
8219: if ($env{'form.gradingmechanism'} eq $gradingmechanism) {
8220: $checked{$gradingmechanism}="checked='checked'";
8221: }
8222: }
8223:
1.400 www 8224: my $upload=&mt("Upload File");
8225: my $type=&mt("Type");
1.402 www 8226: my $attendance=&mt("Award points just for participation");
8227: my $personnel=&mt("Correctness determined from response by course personnel");
1.414 www 8228: my $specific=&mt("Correctness determined from response with clicker ID(s)");
1.402 www 8229: my $pcorrect=&mt("Percentage points for correct solution");
8230: my $pincorrect=&mt("Percentage points for incorrect solution");
1.413 www 8231: my $selectform=&Apache::loncommon::select_form($env{'form.upfiletype'},'upfiletype',
1.419 www 8232: ('iclicker' => 'i>clicker',
8233: 'interwrite' => 'interwrite PRS'));
1.418 albertel 8234: $symb = &Apache::lonenc::check_encrypt($symb);
1.400 www 8235: $result.=<<ENDUPFORM;
1.402 www 8236: <script type="text/javascript">
8237: function sanitycheck() {
8238: // Accept only integer percentages
8239: document.forms.gradesupload.pcorrect.value=Math.round(document.forms.gradesupload.pcorrect.value);
8240: document.forms.gradesupload.pincorrect.value=Math.round(document.forms.gradesupload.pincorrect.value);
8241: // Find out grading choice
8242: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
8243: if (document.forms.gradesupload.gradingmechanism[i].checked) {
8244: gradingchoice=document.forms.gradesupload.gradingmechanism[i].value;
8245: }
8246: }
8247: // By default, new choice equals user selection
8248: newgradingchoice=gradingchoice;
8249: // Not good to give more points for false answers than correct ones
8250: if (Math.round(document.forms.gradesupload.pcorrect.value)<Math.round(document.forms.gradesupload.pincorrect.value)) {
8251: document.forms.gradesupload.pcorrect.value=document.forms.gradesupload.pincorrect.value;
8252: }
8253: // If new choice is attendance only, and old choice was correctness-based, restore defaults
8254: if ((gradingchoice=='attendance') && (document.forms.gradesupload.waschecked.value!='attendance')) {
8255: document.forms.gradesupload.pcorrect.value=100;
8256: document.forms.gradesupload.pincorrect.value=100;
8257: }
8258: // If the values are different, cannot be attendance only
8259: if ((Math.round(document.forms.gradesupload.pcorrect.value)!=Math.round(document.forms.gradesupload.pincorrect.value)) &&
8260: (gradingchoice=='attendance')) {
8261: newgradingchoice='personnel';
8262: }
8263: // Change grading choice to new one
8264: for (i=0; i<document.forms.gradesupload.gradingmechanism.length; i++) {
8265: if (document.forms.gradesupload.gradingmechanism[i].value==newgradingchoice) {
8266: document.forms.gradesupload.gradingmechanism[i].checked=true;
8267: } else {
8268: document.forms.gradesupload.gradingmechanism[i].checked=false;
8269: }
8270: }
8271: // Remember the old state
8272: document.forms.gradesupload.waschecked.value=newgradingchoice;
8273: }
8274: </script>
1.400 www 8275: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
8276: <input type="hidden" name="symb" value="$symb" />
8277: <input type="hidden" name="command" value="processclickerfile" />
8278: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
8279: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
8280: <input type="file" name="upfile" size="50" />
8281: <br /><label>$type: $selectform</label>
1.451 albertel 8282: <br /><label><input type="radio" name="gradingmechanism" value="attendance" $checked{'attendance'} onClick="sanitycheck()" />$attendance </label>
8283: <br /><label><input type="radio" name="gradingmechanism" value="personnel" $checked{'personnel'} onClick="sanitycheck()" />$personnel</label>
8284: <br /><label><input type="radio" name="gradingmechanism" value="specific" $checked{'specific'} onClick="sanitycheck()" />$specific </label>
1.414 www 8285: <input type="text" name="specificid" value="$env{'form.specificid'}" size="20" />
1.413 www 8286: <input type="hidden" name="waschecked" value="$env{'form.gradingmechanism'}" />
8287: <br /><label>$pcorrect: <input type="text" name="pcorrect" size="4" value="$env{'form.pcorrect'}" onChange="sanitycheck()" /></label>
8288: <br /><label>$pincorrect: <input type="text" name="pincorrect" size="4" value="$env{'form.pincorrect'}" onChange="sanitycheck()" /></label>
1.400 www 8289: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="$upload" />
8290: </form>
8291: ENDUPFORM
8292: $result.='</td></tr></table>'."\n".
8293: '</td></tr></table><br /><br />'."\n";
8294: $result.=&show_grading_menu_form($symb);
8295: return $result;
8296: }
8297:
8298: sub process_clicker_file {
8299: my ($r)=@_;
8300: my ($symb)=&get_symb($r);
8301: if (!$symb) {return '';}
1.413 www 8302:
8303: my %Saveable_Parameters=&clicker_grading_parameters();
8304: &Apache::loncommon::store_course_settings('grades_clicker',
8305: \%Saveable_Parameters);
8306:
1.400 www 8307: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.404 www 8308: if (($env{'form.gradingmechanism'} eq 'specific') && ($env{'form.specificid'}!~/\w/)) {
1.408 albertel 8309: $result.='<span class="LC_error">'.&mt('You need to specify a clicker ID for the correct answer').'</span>';
8310: return $result.&show_grading_menu_form($symb);
1.404 www 8311: }
1.407 albertel 8312: my %clicker_ids=&gather_clicker_ids();
1.408 albertel 8313: my %correct_ids;
1.404 www 8314: if ($env{'form.gradingmechanism'} eq 'personnel') {
1.408 albertel 8315: %correct_ids=&gather_adv_clicker_ids();
1.404 www 8316: }
8317: if ($env{'form.gradingmechanism'} eq 'specific') {
1.414 www 8318: foreach my $correct_id (split(/[\s\,]/,$env{'form.specificid'})) {;
8319: $correct_id=~tr/a-z/A-Z/;
8320: $correct_id=~s/\s//gs;
8321: $correct_id=~s/^[\#0]+//;
1.421 www 8322: $correct_id=~s/[\-\:]//g;
1.414 www 8323: if ($correct_id) {
8324: $correct_ids{$correct_id}='specified';
8325: }
8326: }
1.400 www 8327: }
1.404 www 8328: if ($env{'form.gradingmechanism'} eq 'attendance') {
1.408 albertel 8329: $result.=&mt('Score based on attendance only');
1.404 www 8330: } else {
1.408 albertel 8331: my $number=0;
1.411 www 8332: $result.='<p><b>'.&mt('Correctness determined by the following IDs').'</b>';
1.408 albertel 8333: foreach my $id (sort(keys(%correct_ids))) {
1.411 www 8334: $result.='<br /><tt>'.$id.'</tt> - ';
1.408 albertel 8335: if ($correct_ids{$id} eq 'specified') {
8336: $result.=&mt('specified');
8337: } else {
8338: my ($uname,$udom)=split(/\:/,$correct_ids{$id});
8339: $result.=&Apache::loncommon::plainname($uname,$udom);
8340: }
8341: $number++;
8342: }
1.411 www 8343: $result.="</p>\n";
1.408 albertel 8344: if ($number==0) {
8345: $result.='<span class="LC_error">'.&mt('No IDs found to determine correct answer').'</span>';
8346: return $result.&show_grading_menu_form($symb);
8347: }
1.404 www 8348: }
1.405 www 8349: if (length($env{'form.upfile'}) < 2) {
1.407 albertel 8350: $result.=&mt('[_1] Error: [_2] The file you attempted to upload, [_3] contained no information. Please check that you entered the correct filename.',
8351: '<span class="LC_error">',
8352: '</span>',
8353: '<span class="LC_filename">'.&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"').'</span>');
1.405 www 8354: return $result.&show_grading_menu_form($symb);
8355: }
1.410 www 8356:
8357: # Were able to get all the info needed, now analyze the file
8358:
1.411 www 8359: $result.=&Apache::loncommon::studentbrowser_javascript();
1.418 albertel 8360: $symb = &Apache::lonenc::check_encrypt($symb);
1.410 www 8361: my $heading=&mt('Scanning clicker file');
8362: $result.=(<<ENDHEADER);
8363: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
8364: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
8365: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
8366: <form method="post" action="/adm/grades" name="clickeranalysis">
8367: <input type="hidden" name="symb" value="$symb" />
8368: <input type="hidden" name="command" value="assignclickergrades" />
8369: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
8370: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.411 www 8371: <input type="hidden" name="gradingmechanism" value="$env{'form.gradingmechanism'}" />
8372: <input type="hidden" name="pcorrect" value="$env{'form.pcorrect'}" />
8373: <input type="hidden" name="pincorrect" value="$env{'form.pincorrect'}" />
1.410 www 8374: ENDHEADER
1.408 albertel 8375: my %responses;
8376: my @questiontitles;
1.405 www 8377: my $errormsg='';
8378: my $number=0;
8379: if ($env{'form.upfiletype'} eq 'iclicker') {
1.408 albertel 8380: ($errormsg,$number)=&iclicker_eval(\@questiontitles,\%responses);
1.406 www 8381: }
1.419 www 8382: if ($env{'form.upfiletype'} eq 'interwrite') {
8383: ($errormsg,$number)=&interwrite_eval(\@questiontitles,\%responses);
8384: }
1.411 www 8385: $result.='<br />'.&mt('Found [_1] question(s)',$number).'<br />'.
8386: '<input type="hidden" name="number" value="'.$number.'" />'.
8387: &mt('Awarding [_1] percent for correct and [_2] percent for incorrect responses',
8388: $env{'form.pcorrect'},$env{'form.pincorrect'}).
8389: '<br />';
1.414 www 8390: # Remember Question Titles
8391: # FIXME: Possibly need delimiter other than ":"
8392: for (my $i=0;$i<$number;$i++) {
8393: $result.='<input type="hidden" name="question:'.$i.'" value="'.
8394: &HTML::Entities::encode($questiontitles[$i],'"&<>').'" />';
8395: }
1.411 www 8396: my $correct_count=0;
8397: my $student_count=0;
8398: my $unknown_count=0;
1.414 www 8399: # Match answers with usernames
8400: # FIXME: Possibly need delimiter other than ":"
1.409 albertel 8401: foreach my $id (keys(%responses)) {
1.410 www 8402: if ($correct_ids{$id}) {
1.414 www 8403: $result.="\n".'<input type="hidden" name="correct:'.$correct_count.':'.$correct_ids{$id}.'" value="'.$responses{$id}.'" />';
1.411 www 8404: $correct_count++;
1.410 www 8405: } elsif ($clicker_ids{$id}) {
1.437 www 8406: if ($clicker_ids{$id}=~/\,/) {
8407: # More than one user with the same clicker!
8408: $result.="\n<hr />".&mt('Clicker registered more than once').": <tt>".$id."</tt><br />";
8409: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
8410: "<select name='multi".$id."'>";
8411: foreach my $reguser (sort(split(/\,/,$clicker_ids{$id}))) {
8412: $result.="<option value='".$reguser."'>".&Apache::loncommon::plainname(split(/\:/,$reguser)).' ('.$reguser.')</option>';
8413: }
8414: $result.='</select>';
8415: $unknown_count++;
8416: } else {
8417: # Good: found one and only one user with the right clicker
8418: $result.="\n".'<input type="hidden" name="student:'.$clicker_ids{$id}.'" value="'.$responses{$id}.'" />';
8419: $student_count++;
8420: }
1.410 www 8421: } else {
1.411 www 8422: $result.="\n<hr />".&mt('Unregistered Clicker')." <tt>".$id."</tt><br />";
8423: $result.="\n".'<input type="hidden" name="unknown:'.$id.'" value="'.$responses{$id}.'" />'.
8424: "\n".&mt("Username").": <input type='text' name='uname".$id."' /> ".
8425: "\n".&mt("Domain").": ".
8426: &Apache::loncommon::select_dom_form($env{'course.'.$env{'request.course.id'}.'.domain'},'udom'.$id).' '.
8427: &Apache::loncommon::selectstudent_link('clickeranalysis','uname'.$id,'udom'.$id);
8428: $unknown_count++;
1.410 www 8429: }
1.405 www 8430: }
1.412 www 8431: $result.='<hr />'.
8432: &mt('Found [_1] registered and [_2] unregistered clickers.',$student_count,$unknown_count);
8433: if ($env{'form.gradingmechanism'} ne 'attendance') {
8434: if ($correct_count==0) {
8435: $errormsg.="Found no correct answers answers for grading!";
8436: } elsif ($correct_count>1) {
1.414 www 8437: $result.='<br /><span class="LC_warning">'.&mt("Found [_1] entries for grading!",$correct_count).'</span>';
1.412 www 8438: }
8439: }
1.428 www 8440: if ($number<1) {
8441: $errormsg.="Found no questions.";
8442: }
1.412 www 8443: if ($errormsg) {
8444: $result.='<br /><span class="LC_error">'.&mt($errormsg).'</span>';
8445: } else {
8446: $result.='<br /><input type="submit" name="finalize" value="'.&mt('Finalize Grading').'" />';
8447: }
8448: $result.='</form></td></tr></table>'."\n".
1.410 www 8449: '</td></tr></table><br /><br />'."\n";
1.404 www 8450: return $result.&show_grading_menu_form($symb);
1.400 www 8451: }
8452:
1.405 www 8453: sub iclicker_eval {
1.406 www 8454: my ($questiontitles,$responses)=@_;
1.405 www 8455: my $number=0;
8456: my $errormsg='';
8457: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
1.410 www 8458: my %components=&Apache::loncommon::record_sep($line);
8459: my @entries=map {$components{$_}} (sort(keys(%components)));
1.408 albertel 8460: if ($entries[0] eq 'Question') {
8461: for (my $i=3;$i<$#entries;$i+=6) {
8462: $$questiontitles[$number]=$entries[$i];
8463: $number++;
8464: }
8465: }
8466: if ($entries[0]=~/^\#/) {
8467: my $id=$entries[0];
8468: my @idresponses;
8469: $id=~s/^[\#0]+//;
8470: for (my $i=0;$i<$number;$i++) {
8471: my $idx=3+$i*6;
8472: push(@idresponses,$entries[$idx]);
8473: }
8474: $$responses{$id}=join(',',@idresponses);
8475: }
1.405 www 8476: }
8477: return ($errormsg,$number);
8478: }
8479:
1.419 www 8480: sub interwrite_eval {
8481: my ($questiontitles,$responses)=@_;
8482: my $number=0;
8483: my $errormsg='';
1.420 www 8484: my $skipline=1;
8485: my $questionnumber=0;
8486: my %idresponses=();
1.419 www 8487: foreach my $line (split(/[\n\r]/,$env{'form.upfile'})) {
8488: my %components=&Apache::loncommon::record_sep($line);
8489: my @entries=map {$components{$_}} (sort(keys(%components)));
1.420 www 8490: if ($entries[1] eq 'Time') { $skipline=0; next; }
8491: if ($entries[1] eq 'Response') { $skipline=1; }
8492: next if $skipline;
8493: if ($entries[0]!=$questionnumber) {
8494: $questionnumber=$entries[0];
8495: $$questiontitles[$number]=&mt('Question [_1]',$questionnumber);
8496: $number++;
1.419 www 8497: }
1.420 www 8498: my $id=$entries[4];
8499: $id=~s/^[\#0]+//;
1.421 www 8500: $id=~s/^v\d*\://i;
8501: $id=~s/[\-\:]//g;
1.420 www 8502: $idresponses{$id}[$number]=$entries[6];
8503: }
8504: foreach my $id (keys %idresponses) {
8505: $$responses{$id}=join(',',@{$idresponses{$id}});
8506: $$responses{$id}=~s/^\s*\,//;
1.419 www 8507: }
8508: return ($errormsg,$number);
8509: }
8510:
1.414 www 8511: sub assign_clicker_grades {
8512: my ($r)=@_;
8513: my ($symb)=&get_symb($r);
8514: if (!$symb) {return '';}
1.416 www 8515: # See which part we are saving to
8516: my ($partlist,$handgrade,$responseType) = &response_type($symb);
8517: # FIXME: This should probably look for the first handgradeable part
8518: my $part=$$partlist[0];
8519: # Start screen output
1.414 www 8520: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.416 www 8521:
1.414 www 8522: my $heading=&mt('Assigning grades based on clicker file');
8523: $result.=(<<ENDHEADER);
8524: <br /><table width="100%" border="0"><tr><td bgcolor="#777777">
8525: <table width="100%" border="0"><tr bgcolor="#e6ffff"><td>
8526: <b>$heading</b></td></tr><tr bgcolor=#ffffe6><td>
8527: ENDHEADER
8528: # Get correct result
8529: # FIXME: Possibly need delimiter other than ":"
8530: my @correct=();
1.415 www 8531: my $gradingmechanism=$env{'form.gradingmechanism'};
8532: my $number=$env{'form.number'};
8533: if ($gradingmechanism ne 'attendance') {
1.414 www 8534: foreach my $key (keys(%env)) {
8535: if ($key=~/^form\.correct\:/) {
8536: my @input=split(/\,/,$env{$key});
8537: for (my $i=0;$i<=$#input;$i++) {
8538: if (($correct[$i]) && ($input[$i]) &&
8539: ($correct[$i] ne $input[$i])) {
8540: $result.='<br /><span class="LC_warning">'.
8541: &mt('More than one correct result given for question "[_1]": [_2] versus [_3].',
8542: $env{'form.question:'.$i},$correct[$i],$input[$i]).'</span>';
8543: } elsif ($input[$i]) {
8544: $correct[$i]=$input[$i];
8545: }
8546: }
8547: }
8548: }
1.415 www 8549: for (my $i=0;$i<$number;$i++) {
1.414 www 8550: if (!$correct[$i]) {
8551: $result.='<br /><span class="LC_error">'.
8552: &mt('No correct result given for question "[_1]"!',
8553: $env{'form.question:'.$i}).'</span>';
8554: }
8555: }
8556: $result.='<br />'.&mt("Correct answer: [_1]",join(', ',map { ($_?$_:'-') } @correct));
8557: }
8558: # Start grading
1.415 www 8559: my $pcorrect=$env{'form.pcorrect'};
8560: my $pincorrect=$env{'form.pincorrect'};
1.416 www 8561: my $storecount=0;
1.415 www 8562: foreach my $key (keys(%env)) {
1.420 www 8563: my $user='';
1.415 www 8564: if ($key=~/^form\.student\:(.*)$/) {
1.420 www 8565: $user=$1;
8566: }
8567: if ($key=~/^form\.unknown\:(.*)$/) {
8568: my $id=$1;
8569: if (($env{'form.uname'.$id}) && ($env{'form.udom'.$id})) {
8570: $user=$env{'form.uname'.$id}.':'.$env{'form.udom'.$id};
1.437 www 8571: } elsif ($env{'form.multi'.$id}) {
8572: $user=$env{'form.multi'.$id};
1.420 www 8573: }
8574: }
8575: if ($user) {
1.415 www 8576: my @answer=split(/\,/,$env{$key});
8577: my $sum=0;
8578: for (my $i=0;$i<$number;$i++) {
8579: if ($answer[$i]) {
8580: if ($gradingmechanism eq 'attendance') {
8581: $sum+=$pcorrect;
8582: } else {
8583: if ($answer[$i] eq $correct[$i]) {
8584: $sum+=$pcorrect;
8585: } else {
8586: $sum+=$pincorrect;
8587: }
8588: }
8589: }
8590: }
1.416 www 8591: my $ave=$sum/(100*$number);
8592: # Store
8593: my ($username,$domain)=split(/\:/,$user);
8594: my %grades=();
8595: $grades{"resource.$part.solved"}='correct_by_override';
8596: $grades{"resource.$part.awarded"}=$ave;
8597: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
8598: my $returncode=&Apache::lonnet::cstore(\%grades,$symb,
8599: $env{'request.course.id'},
8600: $domain,$username);
8601: if ($returncode ne 'ok') {
8602: $result.="<br /><span class=\"LC_error\">Failed to save student $username:$domain. Message when trying to save was ($returncode)</span>";
8603: } else {
8604: $storecount++;
8605: }
1.415 www 8606: }
8607: }
8608: # We are done
1.416 www 8609: $result.='<br />'.&mt('Successfully stored grades for [_1] student(s).',$storecount).
8610: '</td></tr></table>'."\n".
1.414 www 8611: '</td></tr></table><br /><br />'."\n";
8612: return $result.&show_grading_menu_form($symb);
8613: }
8614:
1.1 albertel 8615: sub handler {
1.41 ng 8616: my $request=$_[0];
1.434 albertel 8617: &reset_caches();
1.257 albertel 8618: if ($env{'browser.mathml'}) {
1.141 www 8619: &Apache::loncommon::content_type($request,'text/xml');
1.41 ng 8620: } else {
1.141 www 8621: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 8622: }
8623: $request->send_http_header;
1.44 ng 8624: return '' if $request->header_only;
1.41 ng 8625: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.324 albertel 8626: my $symb=&get_symb($request,1);
1.160 albertel 8627: my @commands=&Apache::loncommon::get_env_multiple('form.command');
8628: my $command=$commands[0];
1.447 foxr 8629:
1.160 albertel 8630: if ($#commands > 0) {
8631: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
8632: }
1.447 foxr 8633:
1.513 foxr 8634: $ssi_error = 0;
1.353 albertel 8635: $request->print(&Apache::loncommon::start_page('Grading'));
1.324 albertel 8636: if ($symb eq '' && $command eq '') {
1.257 albertel 8637: if ($env{'user.adv'}) {
8638: if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
8639: ($env{'form.codethree'})) {
8640: my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
8641: $env{'form.codethree'};
1.41 ng 8642: my ($tsymb,$tuname,$tudom,$tcrsid)=
8643: &Apache::lonnet::checkin($token);
8644: if ($tsymb) {
1.137 albertel 8645: my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41 ng 8646: if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.513 foxr 8647: $request->print(&ssi_with_retries('/res/'.$url, $ssi_retries,
1.99 albertel 8648: ('grade_username' => $tuname,
8649: 'grade_domain' => $tudom,
8650: 'grade_courseid' => $tcrsid,
8651: 'grade_symb' => $tsymb)));
1.41 ng 8652: } else {
1.45 ng 8653: $request->print('<h3>Not authorized: '.$token.'</h3>');
1.99 albertel 8654: }
1.41 ng 8655: } else {
1.45 ng 8656: $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41 ng 8657: }
1.14 www 8658: } else {
1.41 ng 8659: $request->print(&Apache::lonxml::tokeninputfield());
8660: }
8661: }
8662: } else {
1.285 albertel 8663: &init_perm();
1.104 albertel 8664: if ($command eq 'submission' && $perm{'vgr'}) {
1.257 albertel 8665: ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.103 albertel 8666: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68 ng 8667: &pickStudentPage($request);
1.103 albertel 8668: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68 ng 8669: &displayPage($request);
1.104 albertel 8670: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71 ng 8671: &updateGradeByPage($request);
1.104 albertel 8672: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41 ng 8673: &processGroup($request);
1.104 albertel 8674: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.443 banghart 8675: $request->print(&grading_menu($request));
8676: } elsif ($command eq 'submit_options' && $perm{'vgr'}) {
8677: $request->print(&submit_options($request));
1.104 albertel 8678: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41 ng 8679: $request->print(&viewgrades($request));
1.104 albertel 8680: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41 ng 8681: $request->print(&processHandGrade($request));
1.106 albertel 8682: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41 ng 8683: $request->print(&editgrades($request));
1.106 albertel 8684: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41 ng 8685: $request->print(&verifyreceipt($request));
1.400 www 8686: } elsif ($command eq 'processclicker' && $perm{'mgr'}) {
8687: $request->print(&process_clicker($request));
8688: } elsif ($command eq 'processclickerfile' && $perm{'mgr'}) {
8689: $request->print(&process_clicker_file($request));
1.414 www 8690: } elsif ($command eq 'assignclickergrades' && $perm{'mgr'}) {
8691: $request->print(&assign_clicker_grades($request));
1.106 albertel 8692: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72 ng 8693: $request->print(&upcsvScores_form($request));
1.106 albertel 8694: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41 ng 8695: $request->print(&csvupload($request));
1.106 albertel 8696: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41 ng 8697: $request->print(&csvuploadmap($request));
1.246 albertel 8698: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 8699: if ($env{'form.associate'} ne 'Reverse Association') {
1.246 albertel 8700: $request->print(&csvuploadoptions($request));
1.41 ng 8701: } else {
1.257 albertel 8702: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
8703: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 8704: } else {
1.257 albertel 8705: $env{'form.upfile_associate'} = 'forward';
1.41 ng 8706: }
8707: $request->print(&csvuploadmap($request));
8708: }
1.246 albertel 8709: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
8710: $request->print(&csvuploadassign($request));
1.106 albertel 8711: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75 albertel 8712: $request->print(&scantron_selectphase($request));
1.203 albertel 8713: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
8714: $request->print(&scantron_do_warning($request));
1.142 albertel 8715: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
8716: $request->print(&scantron_validate_file($request));
1.106 albertel 8717: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82 albertel 8718: $request->print(&scantron_process_students($request));
1.157 albertel 8719: } elsif ($command eq 'scantronupload' &&
1.257 albertel 8720: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
8721: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162 albertel 8722: $request->print(&scantron_upload_scantron_data($request));
1.157 albertel 8723: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 8724: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
8725: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157 albertel 8726: $request->print(&scantron_upload_scantron_data_save($request));
1.202 albertel 8727: } elsif ($command eq 'scantron_download' &&
1.257 albertel 8728: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 8729: $request->print(&scantron_download_scantron_data($request));
1.106 albertel 8730: } elsif ($command) {
1.157 albertel 8731: $request->print("Access Denied ($command)");
1.26 albertel 8732: }
1.2 albertel 8733: }
1.513 foxr 8734: if ($ssi_error) {
8735: &ssi_print_error($request);
8736: }
1.353 albertel 8737: $request->print(&Apache::loncommon::end_page());
1.434 albertel 8738: &reset_caches();
1.44 ng 8739: return '';
8740: }
8741:
1.1 albertel 8742: 1;
8743:
1.13 albertel 8744: __END__;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>