Annotation of loncom/homework/grades.pm, revision 1.347
1.17 albertel 1: # The LearningOnline Network with CAPA
1.13 albertel 2: # The LON-CAPA Grading handler
1.17 albertel 3: #
1.347 ! banghart 4: # $Id: grades.pm,v 1.346 2006/04/03 19:00:27 banghart 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.55 matthew 38: use Apache::loncoursedata;
1.38 ng 39: use Apache::lonmsg qw(:user_normal_msg);
1.1 albertel 40: use Apache::Constants qw(:common);
1.167 sakharuk 41: use Apache::lonlocal;
1.170 albertel 42: use String::Similarity;
1.315 bowersj2 43: use POSIX qw(floor);
1.87 www 44:
45: my %oldessays=();
1.103 albertel 46: my %perm=();
1.1 albertel 47:
1.68 ng 48: # ----- These first few routines are general use routines.----
1.44 ng 49: #
1.146 albertel 50: # --- Retrieve the parts from the metadata file.---
1.44 ng 51: sub getpartlist {
1.324 albertel 52: my ($symb) = @_;
53: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.146 albertel 54: my $partorder = &Apache::lonnet::metadata($url, 'partorder');
55: my @parts;
56: if ($partorder) {
57: for my $part (split (/,/,$partorder)) {
58: if (!&Apache::loncommon::check_if_partid_hidden($part,$symb)) {
59: push(@parts, $part);
60: }
61: }
62: } else {
63: my $metadata = &Apache::lonnet::metadata($url, 'packages');
64: foreach (split(/\,/,$metadata)) {
65: if ($_ =~ /^part_(.*)$/) {
66: if (!&Apache::loncommon::check_if_partid_hidden($1,$symb)) {
67: push(@parts, $1);
68: }
69: }
1.41 ng 70: }
1.16 albertel 71: }
1.146 albertel 72: my @stores;
73: foreach my $part (@parts) {
74: my (@metakeys) = split(/,/,&Apache::lonnet::metadata($url,'keys'));
75: foreach my $key (@metakeys) {
76: if ($key =~ m/^stores_\Q$part\E_/) { push(@stores,$key); }
77: }
78: }
79: return @stores;
1.2 albertel 80: }
81:
1.44 ng 82: # --- Get the symbolic name of a problem and the url
1.324 albertel 83: sub get_symb {
1.173 albertel 84: my ($request,$silent) = @_;
1.257 albertel 85: (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
86: my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
1.173 albertel 87: if ($symb eq '') {
88: if (!$silent) {
89: $request->print("Unable to handle ambiguous references:$url:.");
90: return ();
91: }
92: }
1.324 albertel 93: return ($symb);
1.32 ng 94: }
95:
1.129 ng 96: #--- Format fullname, username:domain if different for display
97: #--- Use anywhere where the student names are listed
98: sub nameUserString {
99: my ($type,$fullname,$uname,$udom) = @_;
100: if ($type eq 'header') {
1.250 albertel 101: return '<b> Fullname </b><font color="#999999">(Username)</font>';
1.129 ng 102: } else {
103: return ' '.$fullname.'<font color="#999999"> ('.$uname.
1.257 albertel 104: ($env{'user.domain'} eq $udom ? '' : ' ('.$udom.')').')</font>';
1.129 ng 105: }
106: }
107:
1.44 ng 108: #--- Get the partlist and the response type for a given problem. ---
109: #--- Indicate if a response type is coded handgraded or not. ---
1.39 ng 110: sub response_type {
1.324 albertel 111: my ($symb) = shift;
112: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 113: my $allkeys = &Apache::lonnet::metadata($url,'keys');
1.154 albertel 114: my %vPart;
115: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
116: $vPart{$partid}=1;
117: }
1.41 ng 118: my %seen = ();
1.147 albertel 119: my (@partlist,%handgrade,%responseType);
1.41 ng 120: foreach (split(/,/,&Apache::lonnet::metadata($url,'packages'))) {
1.335 albertel 121: if (/^\w+response_.*/ || /^Task_/) {
1.41 ng 122: my ($responsetype,$part) = split(/_/,$_,2);
123: my ($partid,$respid) = split(/_/,$part);
1.335 albertel 124: if ($responsetype eq 'Task') { $respid='0'; }
1.146 albertel 125: if (&Apache::loncommon::check_if_partid_hidden($partid,$symb)) {
126: next;
127: }
1.154 albertel 128: if (%vPart && !exists($vPart{$partid})) {
129: next;
130: }
1.118 ng 131: $responsetype =~ s/response$//; # make it compatible w/ navmaps - should move to that!!
1.127 ng 132: my ($value) = &Apache::lonnet::EXT('resource.'.$part.'.handgrade',$symb);
1.147 albertel 133: $handgrade{$part} = ($value eq 'yes' ? 'yes' : 'no');
134: if (!exists($responseType{$partid})) { $responseType{$partid}={}; }
135: $responseType{$partid}->{$respid}=$responsetype;
1.41 ng 136: next if ($seen{$partid} > 0);
137: $seen{$partid}++;
138: push @partlist,$partid;
139: }
140: }
1.324 albertel 141: return (\@partlist,\%handgrade,\%responseType);
1.39 ng 142: }
143:
1.207 albertel 144: sub get_display_part {
1.324 albertel 145: my ($partID,$symb)=@_;
1.207 albertel 146: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',$symb);
147: if (defined($display) and $display ne '') {
148: $display.= " (<font color=\"#999900\">id $partID</font>)";
149: } else {
150: $display=$partID;
151: }
152: return $display;
153: }
1.269 raeburn 154:
1.118 ng 155: #--- Show resource title
156: #--- and parts and response type
157: sub showResourceInfo {
1.324 albertel 158: my ($symb,$probTitle,$checkboxes) = @_;
1.154 albertel 159: my $col=3;
160: if ($checkboxes) { $col=4; }
1.118 ng 161: my $result ='<table border="0">'.
1.167 sakharuk 162: '<tr><td colspan="'.$col.'"><font size="+1"><b>'.&mt('Current Resource').': </b>'.
1.154 albertel 163: $probTitle.'</font></td></tr>'."\n";
1.324 albertel 164: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.126 ng 165: my %resptype = ();
1.122 ng 166: my $hdgrade='no';
1.154 albertel 167: my %partsseen;
1.147 albertel 168: for my $part_resID (sort keys(%$handgrade)) {
169: my $handgrade=$$handgrade{$part_resID};
170: my ($partID,$resID) = split(/_/,$part_resID);
171: my $responsetype = $responseType->{$partID}->{$resID};
1.118 ng 172: $hdgrade = $handgrade if ($handgrade eq 'yes');
1.154 albertel 173: $result.='<tr>';
174: if ($checkboxes) {
175: if (exists($partsseen{$partID})) {
176: $result.="<td> </td>";
177: } else {
178: $result.="<td><input type='checkbox' name='vPart' value='$partID' checked='on' /></td>";
179: }
180: $partsseen{$partID}=1;
181: }
1.324 albertel 182: my $display_part=&get_display_part($partID,$symb);
1.207 albertel 183: $result.='<td><b>Part: </b>'.$display_part.' <font color="#999999">'.
1.147 albertel 184: $resID.'</font></td>'.
1.118 ng 185: '<td><b>Type: </b>'.$responsetype.'</td></tr>';
186: # '<td><b>Handgrade: </b>'.$handgrade.'</td></tr>';
187: }
188: $result.='</table>'."\n";
1.147 albertel 189: return $result,$responseType,$hdgrade,$partlist,$handgrade;
1.118 ng 190: }
191:
1.148 albertel 192:
193: sub get_order {
194: my ($partid,$respid,$symb,$uname,$udom)=@_;
195: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
196: $url=&Apache::lonnet::clutter($url);
197: my $subresult=&Apache::lonnet::ssi($url,
198: ('grade_target' => 'analyze'),
199: ('grade_domain' => $udom),
200: ('grade_symb' => $symb),
201: ('grade_courseid' =>
1.257 albertel 202: $env{'request.course.id'}),
1.148 albertel 203: ('grade_username' => $uname));
1.149 albertel 204: (undef,$subresult)=split(/_HASH_REF__/,$subresult,2);
1.148 albertel 205: my %analyze=&Apache::lonnet::str2hash($subresult);
206: return ($analyze{"$partid.$respid.shown"});
207: }
1.118 ng 208: #--- Clean response type for display
1.335 albertel 209: #--- Currently filters option/rank/radiobutton/match/essay/Task
210: # response types only.
1.118 ng 211: sub cleanRecord {
1.336 albertel 212: my ($answer,$response,$symb,$partid,$respid,$record,$order,$version,
213: $uname,$udom) = @_;
1.148 albertel 214: my $grayFont = '<font color="#999999">';
215: if ($response =~ /^(option|rank)$/) {
216: my %answer=&Apache::lonnet::str2hash($answer);
217: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
218: my ($toprow,$bottomrow);
219: foreach my $foil (@$order) {
220: if ($grading{$foil} == 1) {
221: $toprow.='<td><b>'.$answer{$foil}.' </b></td>';
222: } else {
223: $toprow.='<td><i>'.$answer{$foil}.' </i></td>';
224: }
225: $bottomrow.='<td>'.$grayFont.$foil.'</font> </td>';
226: }
227: return '<blockquote><table border="1">'.
228: '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
229: '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
230: $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
231: } elsif ($response eq 'match') {
232: my %answer=&Apache::lonnet::str2hash($answer);
233: my %grading=&Apache::lonnet::str2hash($record->{$version."resource.$partid.$respid.submissiongrading"});
234: my @items=&Apache::lonnet::str2array($record->{$version."resource.$partid.$respid.submissionitems"});
235: my ($toprow,$middlerow,$bottomrow);
236: foreach my $foil (@$order) {
237: my $item=shift(@items);
238: if ($grading{$foil} == 1) {
239: $toprow.='<td><b>'.$item.' </b></td>';
240: $middlerow.='<td><b>'.$grayFont.$answer{$foil}.' </font></b></td>';
241: } else {
242: $toprow.='<td><i>'.$item.' </i></td>';
243: $middlerow.='<td><i>'.$grayFont.$answer{$foil}.' </font></i></td>';
244: }
245: $bottomrow.='<td>'.$grayFont.$foil.'</font> </td>';
1.118 ng 246: }
1.126 ng 247: return '<blockquote><table border="1">'.
1.148 albertel 248: '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
249: '<tr valign="top"><td>'.$grayFont.'Item ID</font></td>'.
250: $middlerow.'</tr>'.
251: '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
252: $bottomrow.'</tr>'.'</table></blockquote>';
253: } elsif ($response eq 'radiobutton') {
254: my %answer=&Apache::lonnet::str2hash($answer);
255: my ($toprow,$bottomrow);
256: my $correct=($order->[0])+1;
257: for (my $i=1;$i<=$#$order;$i++) {
258: my $foil=$order->[$i];
259: if (exists($answer{$foil})) {
260: if ($i == $correct) {
261: $toprow.='<td><b>true</b></td>';
262: } else {
263: $toprow.='<td><i>true</i></td>';
264: }
265: } else {
266: $toprow.='<td>false</td>';
267: }
268: $bottomrow.='<td>'.$grayFont.$foil.'</font> </td>';
269: }
270: return '<blockquote><table border="1">'.
271: '<tr valign="top"><td>Answer</td>'.$toprow.'</tr>'.
272: '<tr valign="top"><td>'.$grayFont.'Option ID</font></td>'.
273: $grayFont.$bottomrow.'</tr>'.'</table></blockquote>';
274: } elsif ($response eq 'essay') {
1.257 albertel 275: if (! exists ($env{'form.'.$symb})) {
1.122 ng 276: my (%keyhash) = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 277: $env{'course.'.$env{'request.course.id'}.'.domain'},
278: $env{'course.'.$env{'request.course.id'}.'.num'});
1.122 ng 279:
1.257 albertel 280: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
281: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
282: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
283: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
284: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
285: $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 286: }
1.166 albertel 287: $answer =~ s-\n-<br />-g;
288: return '<br /><br /><blockquote><tt>'.&keywords_highlight($answer).'</tt></blockquote>';
1.268 albertel 289: } elsif ( $response eq 'organic') {
290: my $result='Smile representation: "<tt>'.$answer.'</tt>"';
291: my $jme=$record->{$version."resource.$partid.$respid.molecule"};
292: $result.=&Apache::chemresponse::jme_img($jme,$answer,400);
293: return $result;
1.335 albertel 294: } elsif ( $response eq 'Task') {
295: if ( $answer eq 'SUBMITTED') {
296: my $files = $record->{$version."resource.$respid.$partid.bridgetask.portfiles"};
1.336 albertel 297: my $result = &Apache::bridgetask::file_list($files,$uname,$udom);
1.335 albertel 298: return $result;
299: } elsif ( grep(/^\Q$version\E.*?\.instance$/, keys(%{$record})) ) {
300: my @matches = grep(/^\Q$version\E.*?\.instance$/,
301: keys(%{$record}));
302: return join('<br />',($version,@matches));
303:
304:
305: } else {
306: my $result =
307: '<p>'
308: .&mt('Overall result: [_1]',
309: $record->{$version."resource.$respid.$partid.status"})
310: .'</p>';
311:
312: $result .= '<ul>';
313: my @grade = grep(/^\Q${version}resource.$respid.$partid.\E[^.]*[.]status$/,
314: keys(%{$record}));
315: foreach my $grade (sort(@grade)) {
316: my ($dim) = ($grade =~/[.]([^.]+)[.]status$/);
317: $result.= '<li>'.&mt("Dimension: [_1], status [_2] ",
318: $dim, $record->{$grade}).
319: '</li>';
320: }
321: $result.='</ul>';
322: return $result;
323: }
324:
1.122 ng 325: }
1.118 ng 326: return $answer;
327: }
328:
329: #-- A couple of common js functions
330: sub commonJSfunctions {
331: my $request = shift;
332: $request->print(<<COMMONJSFUNCTIONS);
333: <script type="text/javascript" language="javascript">
334: function radioSelection(radioButton) {
335: var selection=null;
336: if (radioButton.length > 1) {
337: for (var i=0; i<radioButton.length; i++) {
338: if (radioButton[i].checked) {
339: return radioButton[i].value;
340: }
341: }
342: } else {
343: if (radioButton.checked) return radioButton.value;
344: }
345: return selection;
346: }
347:
348: function pullDownSelection(selectOne) {
349: var selection="";
350: if (selectOne.length > 1) {
351: for (var i=0; i<selectOne.length; i++) {
352: if (selectOne[i].selected) {
353: return selectOne[i].value;
354: }
355: }
356: } else {
1.138 albertel 357: // only one value it must be the selected one
358: return selectOne.value;
1.118 ng 359: }
360: }
361: </script>
362: COMMONJSFUNCTIONS
363: }
364:
1.44 ng 365: #--- Dumps the class list with usernames,list of sections,
366: #--- section, ids and fullnames for each user.
367: sub getclasslist {
1.76 ng 368: my ($getsec,$filterlist) = @_;
1.291 albertel 369: my @getsec;
370: if (!ref($getsec)) {
371: if ($getsec ne '' && $getsec ne 'all') {
372: @getsec=($getsec);
373: }
374: } else {
375: @getsec=@{$getsec};
376: }
377: if (grep(/^all$/,@getsec)) { undef(@getsec); }
378:
1.56 matthew 379: my $classlist=&Apache::loncoursedata::get_classlist();
1.49 albertel 380: # Bail out if we were unable to get the classlist
1.56 matthew 381: return if (! defined($classlist));
382: #
383: my %sections;
384: my %fullnames;
1.205 matthew 385: foreach my $student (keys(%$classlist)) {
386: my $end =
387: $classlist->{$student}->[&Apache::loncoursedata::CL_END()];
388: my $start =
389: $classlist->{$student}->[&Apache::loncoursedata::CL_START()];
390: my $id =
391: $classlist->{$student}->[&Apache::loncoursedata::CL_ID()];
392: my $section =
393: $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
394: my $fullname =
395: $classlist->{$student}->[&Apache::loncoursedata::CL_FULLNAME()];
396: my $status =
397: $classlist->{$student}->[&Apache::loncoursedata::CL_STATUS()];
1.76 ng 398: # filter students according to status selected
1.257 albertel 399: if ($filterlist && $env{'form.Status'} ne 'Any') {
400: if ($env{'form.Status'} ne $status) {
1.205 matthew 401: delete ($classlist->{$student});
1.76 ng 402: next;
403: }
404: }
1.205 matthew 405: $section = ($section ne '' ? $section : 'none');
1.106 albertel 406: if (&canview($section)) {
1.291 albertel 407: if (!@getsec || grep(/^\Q$section\E$/,@getsec)) {
1.103 albertel 408: $sections{$section}++;
1.205 matthew 409: $fullnames{$student}=$fullname;
1.103 albertel 410: } else {
1.205 matthew 411: delete($classlist->{$student});
1.103 albertel 412: }
413: } else {
1.205 matthew 414: delete($classlist->{$student});
1.103 albertel 415: }
1.44 ng 416: }
417: my %seen = ();
1.56 matthew 418: my @sections = sort(keys(%sections));
419: return ($classlist,\@sections,\%fullnames);
1.44 ng 420: }
421:
1.103 albertel 422: sub canmodify {
423: my ($sec)=@_;
424: if ($perm{'mgr'}) {
425: if (!defined($perm{'mgr_section'})) {
426: # can modify whole class
427: return 1;
428: } else {
429: if ($sec eq $perm{'mgr_section'}) {
430: #can modify the requested section
431: return 1;
432: } else {
433: # can't modify the request section
434: return 0;
435: }
436: }
437: }
438: #can't modify
439: return 0;
440: }
441:
442: sub canview {
443: my ($sec)=@_;
444: if ($perm{'vgr'}) {
445: if (!defined($perm{'vgr_section'})) {
446: # can modify whole class
447: return 1;
448: } else {
449: if ($sec eq $perm{'vgr_section'}) {
450: #can modify the requested section
451: return 1;
452: } else {
453: # can't modify the request section
454: return 0;
455: }
456: }
457: }
458: #can't modify
459: return 0;
460: }
461:
1.44 ng 462: #--- Retrieve the grade status of a student for all the parts
463: sub student_gradeStatus {
1.324 albertel 464: my ($symb,$udom,$uname,$partlist) = @_;
1.257 albertel 465: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.44 ng 466: my %partstatus = ();
467: foreach (@$partlist) {
1.128 ng 468: my ($status,undef) = split(/_/,$record{"resource.$_.solved"},2);
1.44 ng 469: $status = 'nothing' if ($status eq '');
470: $partstatus{$_} = $status;
471: my $subkey = "resource.$_.submitted_by";
472: $partstatus{$subkey} = $record{$subkey} if ($record{$subkey} ne '');
473: }
474: return %partstatus;
475: }
476:
1.45 ng 477: # hidden form and javascript that calls the form
478: # Use by verifyscript and viewgrades
479: # Shows a student's view of problem and submission
480: sub jscriptNform {
1.324 albertel 481: my ($symb) = @_;
1.45 ng 482: my $jscript='<script type="text/javascript" language="javascript">'."\n".
483: ' function viewOneStudent(user,domain) {'."\n".
484: ' document.onestudent.student.value = user;'."\n".
485: ' document.onestudent.userdom.value = domain;'."\n".
486: ' document.onestudent.submit();'."\n".
487: ' }'."\n".
488: '</script>'."\n";
489: $jscript.= '<form action="/adm/grades" method="post" name="onestudent">'."\n".
490: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.257 albertel 491: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
492: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
493: '<input type="hidden" name="Status" value="'.$env{'form.Status'}.'" />'."\n".
1.45 ng 494: '<input type="hidden" name="command" value="submission" />'."\n".
495: '<input type="hidden" name="student" value="" />'."\n".
496: '<input type="hidden" name="userdom" value="" />'."\n".
497: '</form>'."\n";
498: return $jscript;
499: }
1.39 ng 500:
1.315 bowersj2 501: # Given the score (as a number [0-1] and the weight) what is the final
502: # point value? This function will round to the nearest tenth, third,
503: # or quarter if one of those is within the tolerance of .00001.
1.316 albertel 504: sub compute_points {
1.315 bowersj2 505: my ($score, $weight) = @_;
506:
507: my $tolerance = .00001;
508: my $points = $score * $weight;
509:
510: # Check for nearness to 1/x.
511: my $check_for_nearness = sub {
512: my ($factor) = @_;
513: my $num = ($points * $factor) + $tolerance;
514: my $floored_num = floor($num);
1.316 albertel 515: if ($num - $floored_num < 2 * $tolerance * $factor) {
1.315 bowersj2 516: return $floored_num / $factor;
517: }
518: return $points;
519: };
520:
521: $points = $check_for_nearness->(10);
522: $points = $check_for_nearness->(3);
523: $points = $check_for_nearness->(4);
524:
525: return $points;
526: }
527:
1.44 ng 528: #------------------ End of general use routines --------------------
1.87 www 529:
530: #
531: # Find most similar essay
532: #
533:
534: sub most_similar {
535: my ($uname,$udom,$uessay)=@_;
536:
537: # ignore spaces and punctuation
538:
539: $uessay=~s/\W+/ /gs;
540:
1.282 www 541: # ignore empty submissions (occuring when only files are sent)
542:
543: unless ($uessay=~/\w+/) { return ''; }
544:
1.87 www 545: # these will be returned. Do not care if not at least 50 percent similar
1.88 www 546: my $limit=0.6;
1.87 www 547: my $sname='';
548: my $sdom='';
549: my $scrsid='';
550: my $sessay='';
551: # go through all essays ...
552: foreach my $tkey (keys %oldessays) {
553: my ($tname,$tdom,$tcrsid)=split(/\./,$tkey);
554: # ... except the same student
1.88 www 555: if (($tname ne $uname) || ($tdom ne $udom)) {
1.87 www 556: my $tessay=$oldessays{$tkey};
557: $tessay=~s/\W+/ /gs;
558: # String similarity gives up if not even limit
1.88 www 559: my $tsimilar=&String::Similarity::similarity($uessay,$tessay,$limit);
1.87 www 560: # Found one
561: if ($tsimilar>$limit) {
562: $limit=$tsimilar;
563: $sname=$tname;
1.88 www 564: $sdom=$tdom;
1.87 www 565: $scrsid=$tcrsid;
566: $sessay=$oldessays{$tkey};
567: }
568: }
569: }
1.88 www 570: if ($limit>0.6) {
1.87 www 571: return ($sname,$sdom,$scrsid,$sessay,$limit);
572: } else {
573: return ('','','','',0);
574: }
575: }
576:
1.44 ng 577: #-------------------------------------------------------------------
578:
579: #------------------------------------ Receipt Verification Routines
1.45 ng 580: #
1.44 ng 581: #--- Check whether a receipt number is valid.---
582: sub verifyreceipt {
583: my $request = shift;
584:
1.257 albertel 585: my $courseid = $env{'request.course.id'};
1.184 www 586: my $receipt = &Apache::lonnet::recprefix($courseid).'-'.
1.257 albertel 587: $env{'form.receipt'};
1.44 ng 588: $receipt =~ s/[^\-\d]//g;
1.324 albertel 589: my $symb = &Apache::lonnet::symbread();
1.44 ng 590:
1.45 ng 591: my $title.='<h3><font color="#339933">Verifying Submission Receipt '.
592: $receipt.'</h3></font>'."\n".
1.326 albertel 593: '<font size=+1><b>Resource: </b>'.$env{'form.probTitle'}.'</font><br /><br />'."\n";
1.44 ng 594:
595: my ($string,$contents,$matches) = ('','',0);
1.56 matthew 596: my (undef,undef,$fullname) = &getclasslist('all','0');
1.177 albertel 597:
598: my $receiptparts=0;
1.257 albertel 599: if ($env{"course.$courseid.receiptalg"} eq 'receipt2') { $receiptparts=1; }
1.177 albertel 600: my $parts=['0'];
1.324 albertel 601: if ($receiptparts) { ($parts)=&response_type($symb); }
1.294 albertel 602: foreach (sort
603: {
604: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
605: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
606: }
607: return $a cmp $b;
608: } (keys(%$fullname))) {
1.44 ng 609: my ($uname,$udom)=split(/\:/);
1.177 albertel 610: foreach my $part (@$parts) {
611: if ($receipt eq &Apache::lonnet::ireceipt($uname,$udom,$courseid,$symb,$part)) {
612: $contents.='<tr bgcolor="#ffffe6"><td> '."\n".
613: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
614: '\')"; TARGET=_self>'.$$fullname{$_}.'</a> </td>'."\n".
615: '<td> '.$uname.' </td>'.
616: '<td> '.$udom.' </td>';
617: if ($receiptparts) {
618: $contents.='<td> '.$part.' </td>';
619: }
620: $contents.='</tr>'."\n";
621:
622: $matches++;
623: }
1.44 ng 624: }
625: }
626: if ($matches == 0) {
627: $string = $title.'No match found for the above receipt.';
628: } else {
1.324 albertel 629: $string = &jscriptNform($symb).$title.
1.44 ng 630: 'The above receipt matches the following student'.
631: ($matches <= 1 ? '.' : 's.')."\n".
632: '<table border="0"><tr><td bgcolor="#777777">'."\n".
633: '<table border="0"><tr bgcolor="#e6ffff">'."\n".
634: '<td><b> Fullname </b></td>'."\n".
635: '<td><b> Username </b></td>'."\n".
1.177 albertel 636: '<td><b> Domain </b></td>';
637: if ($receiptparts) {
638: $string.='<td> Problem Part </td>';
639: }
640: $string.='</tr>'."\n".$contents.
1.44 ng 641: '</table></td></tr></table>'."\n";
642: }
1.324 albertel 643: return $string.&show_grading_menu_form($symb);
1.44 ng 644: }
645:
646: #--- This is called by a number of programs.
647: #--- Called from the Grading Menu - View/Grade an individual student
648: #--- Also called directly when one clicks on the subm button
649: # on the problem page.
1.30 ng 650: sub listStudents {
1.41 ng 651: my ($request) = shift;
1.49 albertel 652:
1.324 albertel 653: my ($symb) = &get_symb($request);
1.257 albertel 654: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
655: my $cnum = $env{"course.$env{'request.course.id'}.num"};
656: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
657: my $submitonly= $env{'form.submitonly'} eq '' ? 'all' : $env{'form.submitonly'};
658:
659: my $viewgrade = $env{'form.showgrading'} eq 'yes' ? 'View/Grade/Regrade' : 'View';
660: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
661: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.49 albertel 662:
1.118 ng 663: my $result='<h3><font color="#339933"> '.$viewgrade.
664: ' Submissions for a Student or a Group of Students</font></h3>';
665:
1.324 albertel 666: my ($table,undef,$hdgrade,$partlist,$handgrade) = &showResourceInfo($symb,$env{'form.probTitle'},($env{'form.showgrading'} eq 'yes'));
1.49 albertel 667:
1.45 ng 668: $request->print(<<LISTJAVASCRIPT);
669: <script type="text/javascript" language="javascript">
1.110 ng 670: function checkSelect(checkBox) {
671: var ctr=0;
672: var sense="";
673: if (checkBox.length > 1) {
674: for (var i=0; i<checkBox.length; i++) {
675: if (checkBox[i].checked) {
676: ctr++;
677: }
678: }
679: sense = "a student or group of students";
680: } else {
681: if (checkBox.checked) {
682: ctr = 1;
683: }
684: sense = "the student";
685: }
686: if (ctr == 0) {
1.126 ng 687: alert("Please select "+sense+" before clicking on the Next button.");
1.110 ng 688: return false;
689: }
690: document.gradesub.submit();
691: }
692:
693: function reLoadList(formname) {
1.112 ng 694: if (formname.saveStatusOld.value == pullDownSelection(formname.Status)) {return;}
1.110 ng 695: formname.command.value = 'submission';
696: formname.submit();
697: }
1.45 ng 698: </script>
699: LISTJAVASCRIPT
700:
1.118 ng 701: &commonJSfunctions($request);
1.41 ng 702: $request->print($result);
1.39 ng 703:
1.257 albertel 704: my $checkhdgrade = ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1 ) ? 'checked' : '';
1.119 ng 705: my $checklastsub = $checkhdgrade eq '' ? 'checked' : '';
1.154 albertel 706: my $gradeTable='<form action="/adm/grades" method="post" name="gradesub">'.
707: "\n".$table.
1.267 albertel 708: ' <b>View Problem Text: </b><label><input type="radio" name="vProb" value="no" checked="on" /> no </label>'."\n".
709: '<label><input type="radio" name="vProb" value="yes" /> one student </label>'."\n".
710: '<label><input type="radio" name="vProb" value="all" /> all students </label><br />'."\n".
711: ' <b>View Answer: </b><label><input type="radio" name="vAns" value="no" /> no </label>'."\n".
712: '<label><input type="radio" name="vAns" value="yes" /> one student </label>'."\n".
713: '<label><input type="radio" name="vAns" value="all" checked="on" /> all students </label><br />'."\n".
1.49 albertel 714: ' <b>Submissions: </b>'."\n";
1.257 albertel 715: if ($env{'form.handgrade'} eq 'yes' && scalar(@$partlist) > 1) {
1.267 albertel 716: $gradeTable.='<label><input type="radio" name="lastSub" value="hdgrade" '.$checkhdgrade.' /> essay part only </label>'."\n";
1.49 albertel 717: }
1.110 ng 718:
1.257 albertel 719: my $saveStatus = $env{'form.Status'} eq '' ? 'Active' : $env{'form.Status'};
720: $env{'form.Status'} = $saveStatus;
1.110 ng 721:
1.267 albertel 722: $gradeTable.='<label><input type="radio" name="lastSub" value="lastonly" '.$checklastsub.' /> last submission only </label>'."\n".
723: '<label><input type="radio" name="lastSub" value="last" /> last submission & parts info </label>'."\n".
724: '<label><input type="radio" name="lastSub" value="datesub" /> by dates and submissions </label>'."\n".
725: '<label><input type="radio" name="lastSub" value="all" /> all details</label>'."\n".
1.45 ng 726: '<input type="hidden" name="section" value="'.$getsec.'" />'."\n".
727: '<input type="hidden" name="submitonly" value="'.$submitonly.'" />'."\n".
1.257 albertel 728: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" /><br />'."\n".
729: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" /><br />'."\n".
730: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
731: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.48 albertel 732: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.110 ng 733: '<input type="hidden" name="saveStatusOld" value="'.$saveStatus.'" />'."\n";
734:
1.257 albertel 735: if (exists($env{'form.gradingMenu'}) && exists($env{'form.Status'})) {
736: $gradeTable.='<input type="hidden" name="Status" value="'.$env{'form.Status'}.'" />'."\n";
1.124 ng 737: } else {
738: $gradeTable.='<b>Student Status:</b> '.
739: &Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,'javascript:reLoadList(this.form);').'<br />';
740: }
1.112 ng 741:
1.126 ng 742: $gradeTable.='To '.lc($viewgrade).' a submission or a group of submissions, click on the check box(es) '.
743: 'next to the student\'s name(s). Then click on the Next button.<br />'."\n".
1.110 ng 744: '<input type="hidden" name="command" value="processGroup" />'."\n";
1.249 albertel 745:
746: # checkall buttons
747: $gradeTable.=&check_script('gradesub', 'stuinfo');
1.110 ng 748: $gradeTable.='<input type="button" '."\n".
1.45 ng 749: 'onClick="javascript:checkSelect(this.form.stuinfo);" '."\n".
1.249 albertel 750: 'value="Next->" /> <br />'."\n";
751: $gradeTable.=&check_buttons();
1.267 albertel 752: $gradeTable.='<label><input type="checkbox" name="checkPlag" checked="on" />Check For Plagiarism</label>';
1.249 albertel 753: my ($classlist, undef, $fullname) = &getclasslist($getsec,'1');
1.45 ng 754: $gradeTable.='<table border="0"><tr><td bgcolor="#777777">'.
1.110 ng 755: '<table border="0"><tr bgcolor="#e6ffff">';
756: my $loop = 0;
757: while ($loop < 2) {
1.126 ng 758: $gradeTable.='<td><b> No.</b> </td><td><b> Select </b></td>'.
1.250 albertel 759: '<td>'.&nameUserString('header').' Section/Group</td>';
1.301 albertel 760: if ($env{'form.showgrading'} eq 'yes'
761: && $submitonly ne 'queued'
762: && $submitonly ne 'all') {
1.110 ng 763: foreach (sort(@$partlist)) {
1.324 albertel 764: my $display_part=&get_display_part((split(/_/))[0],$symb);
1.207 albertel 765: $gradeTable.='<td><b> Part: '.$display_part.
766: ' Status </b></td>';
1.110 ng 767: }
1.301 albertel 768: } elsif ($submitonly eq 'queued') {
769: $gradeTable.='<td><b> '.&mt('Queue Status').' </b></td>';
1.110 ng 770: }
771: $loop++;
1.126 ng 772: # $gradeTable.='<td></td>' if ($loop%2 ==1);
1.41 ng 773: }
1.45 ng 774: $gradeTable.='</tr>'."\n";
1.41 ng 775:
1.45 ng 776: my $ctr = 0;
1.294 albertel 777: foreach my $student (sort
778: {
779: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
780: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
781: }
782: return $a cmp $b;
783: }
784: (keys(%$fullname))) {
1.41 ng 785: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 786:
1.110 ng 787: my %status = ();
1.301 albertel 788:
789: if ($submitonly eq 'queued') {
790: my %queue_status =
791: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
792: $udom,$uname);
793: next if (!defined($queue_status{'gradingqueue'}));
794: $status{'gradingqueue'} = $queue_status{'gradingqueue'};
795: }
796:
797: if ($env{'form.showgrading'} eq 'yes'
798: && $submitonly ne 'queued'
799: && $submitonly ne 'all') {
1.324 albertel 800: (%status) =&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 801: my $submitted = 0;
1.164 albertel 802: my $graded = 0;
1.248 albertel 803: my $incorrect = 0;
1.110 ng 804: foreach (keys(%status)) {
1.145 albertel 805: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 806: $graded = 1 if ($status{$_} =~ /^ungraded/);
807: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
808:
1.110 ng 809: my ($foo,$partid,$foo1) = split(/\./,$_);
810: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
1.145 albertel 811: $submitted = 0;
1.150 albertel 812: my ($part)=split(/\./,$partid);
1.110 ng 813: $gradeTable.='<input type="hidden" name="'.
1.150 albertel 814: $student.':'.$part.':submitted_by" value="'.
1.110 ng 815: $status{'resource.'.$partid.'.submitted_by'}.'" />';
816: }
1.41 ng 817: }
1.248 albertel 818:
1.156 albertel 819: next if (!$submitted && ($submitonly eq 'yes' ||
820: $submitonly eq 'incorrect' ||
821: $submitonly eq 'graded'));
1.248 albertel 822: next if (!$graded && ($submitonly eq 'graded'));
823: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 824: }
1.34 ng 825:
1.45 ng 826: $ctr++;
1.249 albertel 827: my $section = $classlist->{$student}->[&Apache::loncoursedata::CL_SECTION()];
828:
1.104 albertel 829: if ( $perm{'vgr'} eq 'F' ) {
1.110 ng 830: $gradeTable.='<tr bgcolor="#ffffe6">' if ($ctr%2 ==1);
1.126 ng 831: $gradeTable.='<td align="right">'.$ctr.' </td>'.
1.249 albertel 832: '<td align="center"><label><input type=checkbox name="stuinfo" value="'.
833: $student.':'.$$fullname{$student}.':::SECTION'.$section.
834: ') " /> </label></td>'."\n".'<td>'.
835: &nameUserString(undef,$$fullname{$student},$uname,$udom).
836: ' '.$section.'</td>'."\n";
1.110 ng 837:
1.257 albertel 838: if ($env{'form.showgrading'} eq 'yes' && $submitonly ne 'all') {
1.110 ng 839: foreach (sort keys(%status)) {
840: next if (/^resource.*?submitted_by$/);
1.276 albertel 841: $gradeTable.='<td align="center"> '.$status{$_}.' </td>'."\n";
1.110 ng 842: }
1.41 ng 843: }
1.126 ng 844: # $gradeTable.='<td></td>' if ($ctr%2 ==1);
1.110 ng 845: $gradeTable.='</tr>'."\n" if ($ctr%2 ==0);
1.41 ng 846: }
847: }
1.110 ng 848: if ($ctr%2 ==1) {
1.126 ng 849: $gradeTable.='<td> </td><td> </td><td> </td>';
1.301 albertel 850: if ($env{'form.showgrading'} eq 'yes'
851: && $submitonly ne 'queued'
852: && $submitonly ne 'all') {
1.110 ng 853: foreach (@$partlist) {
854: $gradeTable.='<td> </td>';
855: }
1.301 albertel 856: } elsif ($submitonly eq 'queued') {
857: $gradeTable.='<td> </td>';
1.110 ng 858: }
859: $gradeTable.='</tr>';
860: }
861:
1.249 albertel 862: $gradeTable.='</table></td></tr></table>'."\n".
1.45 ng 863: '<input type="button" '.
864: 'onClick="javascript:checkSelect(this.form.stuinfo);" '.
1.126 ng 865: 'value="Next->" /></form>'."\n";
1.45 ng 866: if ($ctr == 0) {
1.96 albertel 867: my $num_students=(scalar(keys(%$fullname)));
868: if ($num_students eq 0) {
869: $gradeTable='<br /> <font color="red">There are no students currently enrolled.</font>';
870: } else {
1.171 albertel 871: my $submissions='submissions';
872: if ($submitonly eq 'incorrect') { $submissions = 'incorrect submissions'; }
873: if ($submitonly eq 'graded' ) { $submissions = 'ungraded submissions'; }
1.301 albertel 874: if ($submitonly eq 'queued' ) { $submissions = 'queued submissions'; }
1.96 albertel 875: $gradeTable='<br /> <font color="red">'.
1.171 albertel 876: 'No '.$submissions.' found for this resource for any students. ('.$num_students.
877: ' students checked for '.$submissions.')</font><br />';
1.96 albertel 878: }
1.46 ng 879: } elsif ($ctr == 1) {
880: $gradeTable =~ s/type=checkbox/type=checkbox checked/;
1.45 ng 881: }
1.324 albertel 882: $gradeTable.=&show_grading_menu_form($symb);
1.45 ng 883: $request->print($gradeTable);
1.44 ng 884: return '';
1.10 ng 885: }
886:
1.44 ng 887: #---- Called from the listStudents routine
1.249 albertel 888:
889: sub check_script {
890: my ($form, $type)=@_;
891: my $chkallscript='<script type="text/javascript">
892: function checkall() {
893: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
894: ele = document.forms.'.$form.'.elements[i];
895: if (ele.name == "'.$type.'") {
896: document.forms.'.$form.'.elements[i].checked=true;
897: }
898: }
899: }
900:
901: function checksec() {
902: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
903: ele = document.forms.'.$form.'.elements[i];
904: string = document.forms.'.$form.'.chksec.value;
905: if
906: (ele.value.indexOf(":::SECTION"+string)>0) {
907: document.forms.'.$form.'.elements[i].checked=true;
908: }
909: }
910: }
911:
912:
913: function uncheckall() {
914: for (i=0; i<document.forms.'.$form.'.elements.length; i++) {
915: ele = document.forms.'.$form.'.elements[i];
916: if (ele.name == "'.$type.'") {
917: document.forms.'.$form.'.elements[i].checked=false;
918: }
919: }
920: }
921:
922: </script>'."\n";
923: return $chkallscript;
924: }
925:
926: sub check_buttons {
927: my $buttons.='<input type="button" onclick="checkall()" value="Check All" />';
928: $buttons.='<input type="button" onclick="uncheckall()" value="Uncheck All" /> ';
929: $buttons.='<input type="button" onclick="checksec()" value="Check Section/Group" />';
930: $buttons.='<input type="text" size="5" name="chksec" /> ';
931: return $buttons;
932: }
933:
1.44 ng 934: # Displays the submissions for one student or a group of students
1.34 ng 935: sub processGroup {
1.41 ng 936: my ($request) = shift;
937: my $ctr = 0;
1.155 albertel 938: my @stuchecked = &Apache::loncommon::get_env_multiple('form.stuinfo');
1.41 ng 939: my $total = scalar(@stuchecked)-1;
1.45 ng 940:
1.41 ng 941: foreach (@stuchecked) {
942: my ($uname,$udom,$fullname) = split(/:/);
1.257 albertel 943: $env{'form.student'} = $uname;
944: $env{'form.userdom'} = $udom;
945: $env{'form.fullname'} = $fullname;
1.41 ng 946: &submission($request,$ctr,$total);
947: $ctr++;
948: }
949: return '';
1.35 ng 950: }
1.34 ng 951:
1.44 ng 952: #------------------------------------------------------------------------------------
953: #
954: #-------------------------- Next few routines handles grading by student, essentially
955: # handles essay response type problem/part
956: #
957: #--- Javascript to handle the submission page functionality ---
958: sub sub_page_js {
959: my $request = shift;
960: $request->print(<<SUBJAVASCRIPT);
961: <script type="text/javascript" language="javascript">
1.71 ng 962: function updateRadio(formname,id,weight) {
1.125 ng 963: var gradeBox = formname["GD_BOX"+id];
964: var radioButton = formname["RADVAL"+id];
965: var oldpts = formname["oldpts"+id].value;
1.72 ng 966: var pts = checkSolved(formname,id) == 'update' ? gradeBox.value : oldpts;
1.71 ng 967: gradeBox.value = pts;
968: var resetbox = false;
969: if (isNaN(pts) || pts < 0) {
970: alert("A number equal or greater than 0 is expected. Entered value = "+pts);
971: for (var i=0; i<radioButton.length; i++) {
972: if (radioButton[i].checked) {
973: gradeBox.value = i;
974: resetbox = true;
975: }
976: }
977: if (!resetbox) {
978: formtextbox.value = "";
979: }
980: return;
1.44 ng 981: }
1.71 ng 982:
983: if (pts > weight) {
984: var resp = confirm("You entered a value ("+pts+
985: ") greater than the weight for the part. Accept?");
986: if (resp == false) {
1.125 ng 987: gradeBox.value = oldpts;
1.71 ng 988: return;
989: }
1.44 ng 990: }
1.13 albertel 991:
1.71 ng 992: for (var i=0; i<radioButton.length; i++) {
993: radioButton[i].checked=false;
994: if (pts == i && pts != "") {
995: radioButton[i].checked=true;
996: }
997: }
998: updateSelect(formname,id);
1.125 ng 999: formname["stores"+id].value = "0";
1.41 ng 1000: }
1.5 albertel 1001:
1.72 ng 1002: function writeBox(formname,id,pts) {
1.125 ng 1003: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1004: if (checkSolved(formname,id) == 'update') {
1005: gradeBox.value = pts;
1006: } else {
1.125 ng 1007: var oldpts = formname["oldpts"+id].value;
1.72 ng 1008: gradeBox.value = oldpts;
1.125 ng 1009: var radioButton = formname["RADVAL"+id];
1.71 ng 1010: for (var i=0; i<radioButton.length; i++) {
1011: radioButton[i].checked=false;
1.72 ng 1012: if (i == oldpts) {
1.71 ng 1013: radioButton[i].checked=true;
1014: }
1015: }
1.41 ng 1016: }
1.125 ng 1017: formname["stores"+id].value = "0";
1.71 ng 1018: updateSelect(formname,id);
1019: return;
1.41 ng 1020: }
1.44 ng 1021:
1.71 ng 1022: function clearRadBox(formname,id) {
1023: if (checkSolved(formname,id) == 'noupdate') {
1024: updateSelect(formname,id);
1025: return;
1026: }
1.125 ng 1027: gradeSelect = formname["GD_SEL"+id];
1.71 ng 1028: for (var i=0; i<gradeSelect.length; i++) {
1029: if (gradeSelect[i].selected) {
1030: var selectx=i;
1031: }
1032: }
1.125 ng 1033: var stores = formname["stores"+id];
1.71 ng 1034: if (selectx == stores.value) { return };
1.125 ng 1035: var gradeBox = formname["GD_BOX"+id];
1.71 ng 1036: gradeBox.value = "";
1.125 ng 1037: var radioButton = formname["RADVAL"+id];
1.71 ng 1038: for (var i=0; i<radioButton.length; i++) {
1039: radioButton[i].checked=false;
1040: }
1041: stores.value = selectx;
1042: }
1.5 albertel 1043:
1.71 ng 1044: function checkSolved(formname,id) {
1.125 ng 1045: if (formname["solved"+id].value == "correct_by_student" && formname.overRideScore.value == 'no') {
1.118 ng 1046: var reply = confirm("This problem has been graded correct by the computer. Do you want to change the score?");
1047: if (!reply) {return "noupdate";}
1.120 ng 1048: formname.overRideScore.value = 'yes';
1.41 ng 1049: }
1.71 ng 1050: return "update";
1.13 albertel 1051: }
1.71 ng 1052:
1053: function updateSelect(formname,id) {
1.125 ng 1054: formname["GD_SEL"+id][0].selected = true;
1.71 ng 1055: return;
1.41 ng 1056: }
1.33 ng 1057:
1.121 ng 1058: //=========== Check that a point is assigned for all the parts ============
1.71 ng 1059: function checksubmit(formname,val,total,parttot) {
1.121 ng 1060: formname.gradeOpt.value = val;
1.71 ng 1061: if (val == "Save & Next") {
1062: for (i=0;i<=total;i++) {
1063: for (j=0;j<parttot;j++) {
1.125 ng 1064: var partid = formname["partid"+i+"_"+j].value;
1.127 ng 1065: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1066: var points = formname["GD_BOX"+i+"_"+partid].value;
1.71 ng 1067: if (points == "") {
1.125 ng 1068: var name = formname["name"+i].value;
1.129 ng 1069: var studentID = (name != '' ? name : formname["unamedom"+i].value);
1070: var resp = confirm("You did not assign a score for "+studentID+
1071: ", part "+partid+". Continue?");
1.71 ng 1072: if (resp == false) {
1.125 ng 1073: formname["GD_BOX"+i+"_"+partid].focus();
1.71 ng 1074: return false;
1075: }
1076: }
1077: }
1078:
1079: }
1080: }
1081:
1082: }
1.121 ng 1083: if (val == "Grade Student") {
1084: formname.showgrading.value = "yes";
1085: if (formname.Status.value == "") {
1086: formname.Status.value = "Active";
1087: }
1088: formname.studentNo.value = total;
1089: }
1.120 ng 1090: formname.submit();
1091: }
1092:
1.71 ng 1093: //======= Check that a score is assigned for all the problems (page/sequence grading only) =========
1094: function checkSubmitPage(formname,total) {
1095: noscore = new Array(100);
1096: var ptr = 0;
1097: for (i=1;i<total;i++) {
1.125 ng 1098: var partid = formname["q_"+i].value;
1.127 ng 1099: if (formname["GD_SEL"+i+"_"+partid][0].selected) {
1.125 ng 1100: var points = formname["GD_BOX"+i+"_"+partid].value;
1101: var status = formname["solved"+i+"_"+partid].value;
1.71 ng 1102: if (points == "" && status != "correct_by_student") {
1103: noscore[ptr] = i;
1104: ptr++;
1105: }
1106: }
1107: }
1108: if (ptr != 0) {
1109: var sense = ptr == 1 ? ": " : "s: ";
1110: var prolist = "";
1111: if (ptr == 1) {
1112: prolist = noscore[0];
1113: } else {
1114: var i = 0;
1115: while (i < ptr-1) {
1116: prolist += noscore[i]+", ";
1117: i++;
1118: }
1119: prolist += "and "+noscore[i];
1120: }
1121: var resp = confirm("You did not assign any score for the following problem"+sense+prolist+". Continue?");
1122: if (resp == false) {
1123: return false;
1124: }
1125: }
1.45 ng 1126:
1.71 ng 1127: formname.submit();
1128: }
1129: </script>
1130: SUBJAVASCRIPT
1131: }
1.45 ng 1132:
1.71 ng 1133: #--- javascript for essay type problem --
1134: sub sub_page_kw_js {
1135: my $request = shift;
1.80 ng 1136: my $iconpath = $request->dir_config('lonIconsURL');
1.118 ng 1137: &commonJSfunctions($request);
1.219 www 1138: my $docopen=&Apache::lonhtmlcommon::javascript_docopen();
1.236 albertel 1139: $docopen=~s/^document\.//;
1.71 ng 1140: $request->print(<<SUBJAVASCRIPT);
1141: <script type="text/javascript" language="javascript">
1.45 ng 1142:
1.44 ng 1143: //===================== Show list of keywords ====================
1.122 ng 1144: function keywords(formname) {
1145: var nret = prompt("Keywords list, separated by a space. Add/delete to list if desired.",formname.keywords.value);
1.44 ng 1146: if (nret==null) return;
1.122 ng 1147: formname.keywords.value = nret;
1.44 ng 1148:
1.122 ng 1149: if (formname.keywords.value != "") {
1.128 ng 1150: formname.refresh.value = "on";
1.122 ng 1151: formname.submit();
1.44 ng 1152: }
1153: return;
1154: }
1155:
1156: //===================== Script to view submitted by ==================
1157: function viewSubmitter(submitter) {
1158: document.SCORE.refresh.value = "on";
1159: document.SCORE.NCT.value = "1";
1160: document.SCORE.unamedom0.value = submitter;
1161: document.SCORE.submit();
1162: return;
1163: }
1164:
1165: //===================== Script to add keyword(s) ==================
1166: function getSel() {
1167: if (document.getSelection) txt = document.getSelection();
1168: else if (document.selection) txt = document.selection.createRange().text;
1169: else return;
1170: var cleantxt = txt.replace(new RegExp('([\\f\\n\\r\\t\\v ])+', 'g')," ");
1171: if (cleantxt=="") {
1.46 ng 1172: alert("Please select a word or group of words from document and then click this link.");
1.44 ng 1173: return;
1174: }
1175: var nret = prompt("Add selection to keyword list? Edit if desired.",cleantxt);
1176: if (nret==null) return;
1.127 ng 1177: document.SCORE.keywords.value = document.SCORE.keywords.value+" "+nret;
1.44 ng 1178: if (document.SCORE.keywords.value != "") {
1.127 ng 1179: document.SCORE.refresh.value = "on";
1.44 ng 1180: document.SCORE.submit();
1181: }
1182: return;
1183: }
1184:
1185: //====================== Script for composing message ==============
1.80 ng 1186: // preload images
1187: img1 = new Image();
1188: img1.src = "$iconpath/mailbkgrd.gif";
1189: img2 = new Image();
1190: img2.src = "$iconpath/mailto.gif";
1191:
1.44 ng 1192: function msgCenter(msgform,usrctr,fullname) {
1193: var Nmsg = msgform.savemsgN.value;
1194: savedMsgHeader(Nmsg,usrctr,fullname);
1195: var subject = msgform.msgsub.value;
1.127 ng 1196: var msgchk = document.SCORE["includemsg"+usrctr].value;
1.44 ng 1197: re = /msgsub/;
1198: var shwsel = "";
1199: if (re.test(msgchk)) { shwsel = "checked" }
1.123 ng 1200: subject = (document.SCORE.shownSub.value == 0 ? checkEntities(subject) : subject);
1201: displaySubject(checkEntities(subject),shwsel);
1.44 ng 1202: for (var i=1; i<=Nmsg; i++) {
1.123 ng 1203: var testmsg = "savemsg"+i+",";
1204: re = new RegExp(testmsg,"g");
1.44 ng 1205: shwsel = "";
1206: if (re.test(msgchk)) { shwsel = "checked" }
1.125 ng 1207: var message = document.SCORE["savemsg"+i].value;
1.126 ng 1208: message = (document.SCORE["shownOnce"+i].value == 0 ? checkEntities(message) : message);
1.123 ng 1209: displaySavedMsg(i,message,shwsel); //I do not get it. w/o checkEntities on saved messages,
1210: //any < is already converted to <, etc. However, only once!!
1.44 ng 1211: }
1.125 ng 1212: newmsg = document.SCORE["newmsg"+usrctr].value;
1.44 ng 1213: shwsel = "";
1214: re = /newmsg/;
1215: if (re.test(msgchk)) { shwsel = "checked" }
1216: newMsg(newmsg,shwsel);
1217: msgTail();
1218: return;
1219: }
1220:
1.123 ng 1221: function checkEntities(strx) {
1222: if (strx.length == 0) return strx;
1223: var orgStr = ["&", "<", ">", '"'];
1224: var newStr = ["&", "<", ">", """];
1225: var counter = 0;
1226: while (counter < 4) {
1227: strx = strReplace(strx,orgStr[counter],newStr[counter]);
1228: counter++;
1229: }
1230: return strx;
1231: }
1232:
1233: function strReplace(strx, orgStr, newStr) {
1234: return strx.split(orgStr).join(newStr);
1235: }
1236:
1.44 ng 1237: function savedMsgHeader(Nmsg,usrctr,fullname) {
1.76 ng 1238: var height = 70*Nmsg+250;
1.44 ng 1239: var scrollbar = "no";
1240: if (height > 600) {
1241: height = 600;
1242: scrollbar = "yes";
1243: }
1.118 ng 1244: var xpos = (screen.width-600)/2;
1245: xpos = (xpos < 0) ? '0' : xpos;
1246: var ypos = (screen.height-height)/2-30;
1247: ypos = (ypos < 0) ? '0' : ypos;
1248:
1.206 albertel 1249: pWin = window.open('', 'MessageCenter', 'resizable=yes,toolbar=no,location=no,scrollbars='+scrollbar+',screenx='+xpos+',screeny='+ypos+',width=600,height='+height);
1.76 ng 1250: pWin.focus();
1251: pDoc = pWin.document;
1.219 www 1252: pDoc.$docopen;
1.76 ng 1253: pDoc.write("<html><head>");
1254: pDoc.write("<title>Message Central</title>");
1255:
1256: pDoc.write("<script language=javascript>");
1257: pDoc.write("function checkInput() {");
1.123 ng 1258: pDoc.write(" opener.document.SCORE.msgsub.value = opener.checkEntities(document.msgcenter.msgsub.value);");
1.76 ng 1259: pDoc.write(" var nmsg = opener.document.SCORE.savemsgN.value;");
1260: pDoc.write(" var usrctr = document.msgcenter.usrctr.value;");
1.125 ng 1261: pDoc.write(" var newval = opener.document.SCORE[\\"newmsg\\"+usrctr];");
1.123 ng 1262: pDoc.write(" newval.value = opener.checkEntities(document.msgcenter.newmsg.value);");
1.76 ng 1263:
1264: pDoc.write(" var msgchk = \\"\\";");
1265: pDoc.write(" if (document.msgcenter.subchk.checked) {");
1266: pDoc.write(" msgchk = \\"msgsub,\\";");
1267: pDoc.write(" }");
1.80 ng 1268: pDoc.write(" var includemsg = 0;");
1269: pDoc.write(" for (var i=1; i<=nmsg; i++) {");
1.125 ng 1270: pDoc.write(" var opnmsg = opener.document.SCORE[\\"savemsg\\"+i];");
1271: pDoc.write(" var frmmsg = document.msgcenter[\\"msg\\"+i];");
1.123 ng 1272: pDoc.write(" opnmsg.value = opener.checkEntities(frmmsg.value);");
1.125 ng 1273: pDoc.write(" var showflg = opener.document.SCORE[\\"shownOnce\\"+i];");
1.123 ng 1274: pDoc.write(" showflg.value = \\"1\\";");
1.125 ng 1275: pDoc.write(" var chkbox = document.msgcenter[\\"msgn\\"+i];");
1.76 ng 1276: pDoc.write(" if (chkbox.checked) {");
1277: pDoc.write(" msgchk += \\"savemsg\\"+i+\\",\\";");
1.80 ng 1278: pDoc.write(" includemsg = 1;");
1.76 ng 1279: pDoc.write(" }");
1280: pDoc.write(" }");
1281: pDoc.write(" if (document.msgcenter.newmsgchk.checked) {");
1282: pDoc.write(" msgchk += \\"newmsg\\"+usrctr;");
1.80 ng 1283: pDoc.write(" includemsg = 1;");
1284: pDoc.write(" }");
1.125 ng 1285: pDoc.write(" imgformname = opener.document.SCORE[\\"mailicon\\"+usrctr];");
1.84 ng 1286: pDoc.write(" imgformname.src = \\"$iconpath/\\"+((includemsg) ? \\"mailto.gif\\" : \\"mailbkgrd.gif\\");");
1.125 ng 1287: pDoc.write(" var includemsg = opener.document.SCORE[\\"includemsg\\"+usrctr];");
1.76 ng 1288: pDoc.write(" includemsg.value = msgchk;");
1289:
1290: pDoc.write(" self.close()");
1291:
1292: pDoc.write("}");
1293:
1294: pDoc.write("<");
1295: pDoc.write("/script>");
1296:
1297: pDoc.write("</head><body bgcolor=white>");
1298:
1299: pDoc.write("<form action=\\"inactive\\" name=\\"msgcenter\\">");
1300: pDoc.write("<input value=\\""+usrctr+"\\" name=\\"usrctr\\" type=\\"hidden\\">");
1.326 albertel 1301: pDoc.write("<font color=\\"green\\" size=+1> Compose Message for \"+fullname+\"</font><br /><br />");
1.76 ng 1302:
1303: pDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1304: pDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1305: pDoc.write("<td><b>Type</b></td><td><b>Include</b></td><td><b>Message</td></tr>");
1.44 ng 1306: }
1307: function displaySubject(msg,shwsel) {
1.76 ng 1308: pDoc = pWin.document;
1309: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1310: pDoc.write("<td>Subject</td>");
1311: pDoc.write("<td align=\\"center\\"><input name=\\"subchk\\" type=\\"checkbox\\"" +shwsel+"></td>");
1312: pDoc.write("<td><input name=\\"msgsub\\" type=\\"text\\" value=\\""+msg+"\\"size=\\"60\\" maxlength=\\"80\\"></td></tr>");
1.44 ng 1313: }
1314:
1.72 ng 1315: function displaySavedMsg(ctr,msg,shwsel) {
1.76 ng 1316: pDoc = pWin.document;
1317: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1318: pDoc.write("<td align=\\"center\\">"+ctr+"</td>");
1319: pDoc.write("<td align=\\"center\\"><input name=\\"msgn"+ctr+"\\" type=\\"checkbox\\"" +shwsel+"></td>");
1320: pDoc.write("<td><textarea name=\\"msg"+ctr+"\\" cols=\\"60\\" rows=\\"3\\">"+msg+"</textarea></td></tr>");
1.44 ng 1321: }
1322:
1323: function newMsg(newmsg,shwsel) {
1.76 ng 1324: pDoc = pWin.document;
1325: pDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1326: pDoc.write("<td align=\\"center\\">New</td>");
1327: pDoc.write("<td align=\\"center\\"><input name=\\"newmsgchk\\" type=\\"checkbox\\"" +shwsel+"></td>");
1328: pDoc.write("<td><textarea name=\\"newmsg\\" cols=\\"60\\" rows=\\"3\\" onchange=\\"javascript:this.form.newmsgchk.checked=true\\" >"+newmsg+"</textarea></td></tr>");
1.44 ng 1329: }
1330:
1331: function msgTail() {
1.76 ng 1332: pDoc = pWin.document;
1333: pDoc.write("</table>");
1334: pDoc.write("</td></tr></table> ");
1335: pDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:checkInput()\\"> ");
1.326 albertel 1336: pDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.76 ng 1337: pDoc.write("</form>");
1338: pDoc.write("</body></html>");
1.128 ng 1339: pDoc.close();
1.44 ng 1340: }
1341:
1342: //====================== Script for keyword highlight options ==============
1343: function kwhighlight() {
1344: var kwclr = document.SCORE.kwclr.value;
1345: var kwsize = document.SCORE.kwsize.value;
1346: var kwstyle = document.SCORE.kwstyle.value;
1347: var redsel = "";
1348: var grnsel = "";
1349: var blusel = "";
1350: if (kwclr=="red") {var redsel="checked"};
1351: if (kwclr=="green") {var grnsel="checked"};
1352: if (kwclr=="blue") {var blusel="checked"};
1353: var sznsel = "";
1354: var sz1sel = "";
1355: var sz2sel = "";
1356: if (kwsize=="0") {var sznsel="checked"};
1357: if (kwsize=="+1") {var sz1sel="checked"};
1358: if (kwsize=="+2") {var sz2sel="checked"};
1359: var synsel = "";
1360: var syisel = "";
1361: var sybsel = "";
1362: if (kwstyle=="") {var synsel="checked"};
1363: if (kwstyle=="<i>") {var syisel="checked"};
1364: if (kwstyle=="<b>") {var sybsel="checked"};
1365: highlightCentral();
1366: highlightbody('red','red',redsel,'0','normal',sznsel,'','normal',synsel);
1367: highlightbody('green','green',grnsel,'+1','+1',sz1sel,'<i>','italic',syisel);
1368: highlightbody('blue','blue',blusel,'+2','+2',sz2sel,'<b>','bold',sybsel);
1369: highlightend();
1370: return;
1371: }
1372:
1373: function highlightCentral() {
1.76 ng 1374: // if (window.hwdWin) window.hwdWin.close();
1.118 ng 1375: var xpos = (screen.width-400)/2;
1376: xpos = (xpos < 0) ? '0' : xpos;
1377: var ypos = (screen.height-330)/2-30;
1378: ypos = (ypos < 0) ? '0' : ypos;
1379:
1.206 albertel 1380: hwdWin = window.open('', 'KeywordHighlightCentral', 'resizeable=yes,toolbar=no,location=no,scrollbars=no,width=400,height=300,screenx='+xpos+',screeny='+ypos);
1.76 ng 1381: hwdWin.focus();
1382: var hDoc = hwdWin.document;
1.219 www 1383: hDoc.$docopen;
1.76 ng 1384: hDoc.write("<html><head>");
1385: hDoc.write("<title>Highlight Central</title>");
1386:
1387: hDoc.write("<script language=javascript>");
1388: hDoc.write("function updateChoice(flag) {");
1.118 ng 1389: hDoc.write(" opener.document.SCORE.kwclr.value = opener.radioSelection(document.hlCenter.kwdclr);");
1390: hDoc.write(" opener.document.SCORE.kwsize.value = opener.radioSelection(document.hlCenter.kwdsize);");
1391: hDoc.write(" opener.document.SCORE.kwstyle.value = opener.radioSelection(document.hlCenter.kwdstyle);");
1.76 ng 1392: hDoc.write(" opener.document.SCORE.refresh.value = \\"on\\";");
1393: hDoc.write(" if (opener.document.SCORE.keywords.value!=\\"\\"){");
1394: hDoc.write(" opener.document.SCORE.submit();");
1395: hDoc.write(" }");
1396: hDoc.write(" self.close()");
1397: hDoc.write("}");
1398:
1399: hDoc.write("<");
1400: hDoc.write("/script>");
1401:
1402: hDoc.write("</head><body bgcolor=white>");
1403:
1404: hDoc.write("<form action=\\"inactive\\" name=\\"hlCenter\\">");
1.326 albertel 1405: hDoc.write("<font color=\\"green\\" size=+1> Keyword Highlight Options</font><br /><br />");
1.76 ng 1406:
1407: hDoc.write("<table border=0 width=100%><tr><td bgcolor=\\"#777777\\">");
1408: hDoc.write("<table border=0 width=100%><tr bgcolor=\\"#ddffff\\">");
1409: hDoc.write("<td><b>Text Color</b></td><td><b>Font Size</b></td><td><b>Font Style</td></tr>");
1.44 ng 1410: }
1411:
1412: function highlightbody(clrval,clrtxt,clrsel,szval,sztxt,szsel,syval,sytxt,sysel) {
1.76 ng 1413: var hDoc = hwdWin.document;
1414: hDoc.write("<tr bgcolor=\\"#ffffdd\\">");
1415: hDoc.write("<td align=\\"left\\">");
1416: hDoc.write("<input name=\\"kwdclr\\" type=\\"radio\\" value=\\""+clrval+"\\" "+clrsel+"> "+clrtxt+"</td>");
1417: hDoc.write("<td align=\\"left\\">");
1418: hDoc.write("<input name=\\"kwdsize\\" type=\\"radio\\" value=\\""+szval+"\\" "+szsel+"> "+sztxt+"</td>");
1419: hDoc.write("<td align=\\"left\\">");
1420: hDoc.write("<input name=\\"kwdstyle\\" type=\\"radio\\" value=\\""+syval+"\\" "+sysel+"> "+sytxt+"</td>");
1421: hDoc.write("</tr>");
1.44 ng 1422: }
1423:
1424: function highlightend() {
1.76 ng 1425: var hDoc = hwdWin.document;
1426: hDoc.write("</table>");
1427: hDoc.write("</td></tr></table> ");
1428: hDoc.write("<input type=\\"button\\" value=\\"Save\\" onClick=\\"javascript:updateChoice(1)\\"> ");
1.326 albertel 1429: hDoc.write("<input type=\\"button\\" value=\\"Cancel\\" onClick=\\"self.close()\\"><br /><br />");
1.76 ng 1430: hDoc.write("</form>");
1431: hDoc.write("</body></html>");
1.128 ng 1432: hDoc.close();
1.44 ng 1433: }
1434:
1435: </script>
1436: SUBJAVASCRIPT
1437: }
1438:
1.71 ng 1439: #--- displays the grading box, used in essay type problem and grading by page/sequence
1440: sub gradeBox {
1.322 albertel 1441: my ($request,$symb,$uname,$udom,$counter,$partid,$record) = @_;
1.71 ng 1442: my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
1443: '/check.gif" height="16" border="0" />';
1444: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb,$udom,$uname);
1445: my $wgtmsg = ($wgt > 0 ? '(problem weight)' :
1446: '<font color="red">problem weight assigned by computer</font>');
1447: $wgt = ($wgt > 0 ? $wgt : '1');
1448: my $score = ($$record{'resource.'.$partid.'.awarded'} eq '' ?
1.320 albertel 1449: '' : &compute_points($$record{'resource.'.$partid.'.awarded'},$wgt));
1.71 ng 1450: my $result='<input type="hidden" name="WGT'.$counter.'_'.$partid.'" value="'.$wgt.'" />'."\n";
1.324 albertel 1451: my $display_part=&get_display_part($partid,$symb);
1.270 albertel 1452: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
1453: [$partid]);
1454: my $aggtries = $$record{'resource.'.$partid.'.tries'};
1.269 raeburn 1455: if ($last_resets{$partid}) {
1456: $aggtries = &get_num_tries($record,$last_resets{$partid},$partid);
1457: }
1.71 ng 1458: $result.='<table border="0"><tr><td>'.
1.207 albertel 1459: '<b>Part: </b>'.$display_part.' <b>Points: </b></td><td>'."\n";
1.71 ng 1460: my $ctr = 0;
1461: $result.='<table border="0"><tr>'."\n"; # display radio buttons in a nice table 10 across
1462: while ($ctr<=$wgt) {
1.288 albertel 1463: $result.= '<td><nobr><label><input type="radio" name="RADVAL'.$counter.'_'.$partid.'" '.
1.71 ng 1464: 'onclick="javascript:writeBox(this.form,\''.$counter.'_'.$partid.'\','.
1.72 ng 1465: $ctr.')" value="'.$ctr.'" '.
1.288 albertel 1466: ($score eq $ctr ? 'checked':'').' /> '.$ctr."</label></nobr></td>\n";
1.71 ng 1467: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
1468: $ctr++;
1469: }
1470: $result.='</tr></table>';
1471: $result.='</td><td> <b>or</b> </td>'."\n";
1472: $result.='<td><input type="text" name="GD_BOX'.$counter.'_'.$partid.'"'.
1473: ($score ne ''? ' value = "'.$score.'"':'').' size="4" '.
1474: 'onChange="javascript:updateRadio(this.form,\''.$counter.'_'.$partid.'\','.
1475: $wgt.')" /></td>'."\n";
1476: $result.='<td>/'.$wgt.' '.$wgtmsg.
1477: ($$record{'resource.'.$partid.'.solved'} eq 'correct_by_student' ? ' '.$checkIcon : '').
1478: ' </td><td>'."\n";
1479: $result.='<select name="GD_SEL'.$counter.'_'.$partid.'" '.
1480: 'onChange="javascript:clearRadBox(this.form,\''.$counter.'_'.$partid.'\')" >'."\n";
1481: if ($$record{'resource.'.$partid.'.solved'} eq 'excused') {
1482: $result.='<option> </option>'.
1.125 ng 1483: '<option selected="on">excused</option>';
1.71 ng 1484: } else {
1485: $result.='<option selected="on"> </option>'.
1.125 ng 1486: '<option>excused</option>';
1.71 ng 1487: }
1.125 ng 1488: $result.='<option>reset status</option></select>'."\n";
1.71 ng 1489: $result.="  \n";
1490: $result.='<input type="hidden" name="stores'.$counter.'_'.$partid.'" value="" />'."\n".
1491: '<input type="hidden" name="oldpts'.$counter.'_'.$partid.'" value="'.$score.'" />'."\n".
1492: '<input type="hidden" name="solved'.$counter.'_'.$partid.'" value="'.
1.269 raeburn 1493: $$record{'resource.'.$partid.'.solved'}.'" />'."\n".
1494: '<input type="hidden" name="totaltries'.$counter.'_'.$partid.'" value="'.
1495: $$record{'resource.'.$partid.'.tries'}.'" />'."\n".
1496: '<input type="hidden" name="aggtries'.$counter.'_'.$partid.'" value="'.
1497: $aggtries.'" />'."\n";
1.71 ng 1498: $result.='</td></tr></table>'."\n";
1.323 banghart 1499: $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record);
1.318 banghart 1500: return $result;
1501: }
1.322 albertel 1502:
1503: sub handback_box {
1.323 banghart 1504: my ($symb,$uname,$udom,$counter,$partid,$record) = @_;
1.324 albertel 1505: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.323 banghart 1506: my (@respids);
1507: foreach my $part_resp (sort(keys(%$handgrade))) {
1508: my ($part,$resp) = split(/_/,$part_resp);
1509: if ($part eq $partid) {
1510: push @respids,$resp;
1511: }
1512: }
1.318 banghart 1513: my $result;
1.323 banghart 1514: foreach my $respid (@respids) {
1.322 albertel 1515: my $prefix = $counter.'_'.$partid.'_'.$respid.'_';
1516: my $files=&get_submitted_files($udom,$uname,$partid,$respid,$record);
1517: next if (!@$files);
1518: my $file_counter = 1;
1.313 banghart 1519: foreach my $file (@$files) {
1.347 ! banghart 1520: my ($file_path, $file_disp) = ($file =~ m|(.+/)(.+)$|);
! 1521: my ($name,$version,$ext) = &file_name_version_ext($file_disp);
! 1522: $file_disp = "$name.$ext";
! 1523: $file = $file_path.$file_disp;
1.322 albertel 1524: $result.=&mt('Return commented version of [_1] to student.',
1525: '<span class="filename">'.$file_disp.'</span>');
1.323 banghart 1526: $result.='<input type="file" name="'.$prefix.'returndoc'.$file_counter.'" />'."\n";
1527: $result.='<input type="hidden" name="'.$prefix.'origdoc'.$file_counter.'" value="'.$file.'" /><br />';
1.322 albertel 1528: $file_counter++;
1529: }
1.313 banghart 1530: }
1.318 banghart 1531: return $result;
1.71 ng 1532: }
1.44 ng 1533:
1.58 albertel 1534: sub show_problem {
1.144 albertel 1535: my ($request,$symb,$uname,$udom,$removeform,$viewon,$mode) = @_;
1536: my $rendered;
1.329 albertel 1537: &Apache::lonxml::remember_problem_counter();
1.144 albertel 1538: if ($mode eq 'both' or $mode eq 'text') {
1539: $rendered=&Apache::loncommon::get_student_view($symb,$uname,$udom,
1.257 albertel 1540: $env{'request.course.id'});
1.144 albertel 1541: }
1.58 albertel 1542: if ($removeform) {
1543: $rendered=~s|<form(.*?)>||g;
1544: $rendered=~s|</form>||g;
1545: $rendered=~s|name="submit"|name="would_have_been_submit"|g;
1546: }
1.144 albertel 1547: my $companswer;
1548: if ($mode eq 'both' or $mode eq 'answer') {
1.329 albertel 1549: &Apache::lonxml::restore_problem_counter();
1.144 albertel 1550: $companswer=&Apache::loncommon::get_student_answers($symb,$uname,$udom,
1.257 albertel 1551: $env{'request.course.id'});
1.144 albertel 1552: }
1.58 albertel 1553: if ($removeform) {
1554: $companswer=~s|<form(.*?)>||g;
1555: $companswer=~s|</form>||g;
1.144 albertel 1556: $companswer=~s|name="submit"|name="would_have_been_submit"|g;
1.58 albertel 1557: }
1558: my $result.='<table border="0" width="100%"><tr><td bgcolor="#777777">';
1.71 ng 1559: $result.='<table border="0" width="100%">';
1.144 albertel 1560: if ($viewon) {
1561: $result.='<tr><td bgcolor="#e6ffff"><b> ';
1562: if ($mode eq 'both' or $mode eq 'text') {
1563: $result.='View of the problem - ';
1564: } else {
1565: $result.='Correct answer: ';
1566: }
1.257 albertel 1567: $result.=$env{'form.fullname'}.'</b></td></tr>';
1.144 albertel 1568: }
1569: if ($mode eq 'both') {
1570: $result.='<tr><td bgcolor="#ffffff">'.$rendered.'<br />';
1571: $result.='<b>Correct answer:</b><br />'.$companswer;
1572: } elsif ($mode eq 'text') {
1573: $result.='<tr><td bgcolor="#ffffff">'.$rendered;
1574: } elsif ($mode eq 'answer') {
1575: $result.='<tr><td bgcolor="#ffffff">'.$companswer;
1576: }
1.58 albertel 1577: $result.='</td></tr></table>';
1578: $result.='</td></tr></table><br />';
1.71 ng 1579: return $result;
1.58 albertel 1580: }
1581:
1.44 ng 1582: # --------------------------- show submissions of a student, option to grade
1583: sub submission {
1584: my ($request,$counter,$total) = @_;
1585:
1.257 albertel 1586: my ($uname,$udom) = ($env{'form.student'},$env{'form.userdom'});
1587: $udom = ($udom eq '' ? $env{'user.domain'} : $udom); #has form.userdom changed for a student?
1588: my $usec = &Apache::lonnet::getsection($udom,$uname,$env{'request.course.id'});
1589: $env{'form.fullname'} = &Apache::loncommon::plainname($uname,$udom,'lastname') if $env{'form.fullname'} eq '';
1.41 ng 1590:
1.324 albertel 1591: my $symb = &get_symb($request);
1592: if ($symb eq '') { $request->print("Unable to handle ambiguous references:."); return ''; }
1.104 albertel 1593:
1594: if (!&canview($usec)) {
1.116 ng 1595: $request->print('<font color="red">Unable to view requested student.('.
1.222 albertel 1596: $uname.'@'.$udom.' in section '.$usec.' in course id '.
1.257 albertel 1597: $env{'request.course.id'}.')</font>');
1.324 albertel 1598: $request->print(&show_grading_menu_form($symb));
1.104 albertel 1599: return;
1600: }
1601:
1.257 albertel 1602: if (!$env{'form.lastSub'}) { $env{'form.lastSub'} = 'datesub'; }
1603: if (!$env{'form.vProb'}) { $env{'form.vProb'} = 'yes'; }
1604: if (!$env{'form.vAns'}) { $env{'form.vAns'} = 'yes'; }
1605: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.122 ng 1606: my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
1607: '/check.gif" height="16" border="0" />';
1.41 ng 1608:
1609: # header info
1610: if ($counter == 0) {
1611: &sub_page_js($request);
1.257 albertel 1612: &sub_page_kw_js($request) if ($env{'form.handgrade'} eq 'yes');
1613: $env{'form.probTitle'} = $env{'form.probTitle'} eq '' ?
1614: &Apache::lonnet::gettitle($symb) : $env{'form.probTitle'};
1.76 ng 1615:
1.45 ng 1616: $request->print('<h3> <font color="#339933">Submission Record</font></h3>'."\n".
1.257 albertel 1617: '<font size=+1> <b>Resource: </b>'.$env{'form.probTitle'}.'</font>'."\n");
1.118 ng 1618:
1.257 albertel 1619: if ($env{'form.handgrade'} eq 'no') {
1.118 ng 1620: my $checkMark='<br /><br /> <b>Note:</b> Part(s) graded correct by the computer is marked with a '.
1621: $checkIcon.' symbol.'."\n";
1622: $request->print($checkMark);
1623: }
1.41 ng 1624:
1.44 ng 1625: # option to display problem, only once else it cause problems
1626: # with the form later since the problem has a form.
1.257 albertel 1627: if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
1.144 albertel 1628: my $mode;
1.257 albertel 1629: if ($env{'form.vProb'} eq 'yes' && $env{'form.vAns'} eq 'yes') {
1.144 albertel 1630: $mode='both';
1.257 albertel 1631: } elsif ($env{'form.vProb'} eq 'yes') {
1.144 albertel 1632: $mode='text';
1.257 albertel 1633: } elsif ($env{'form.vAns'} eq 'yes') {
1.144 albertel 1634: $mode='answer';
1635: }
1.329 albertel 1636: &Apache::lonxml::clear_problem_counter();
1.144 albertel 1637: $request->print(&show_problem($request,$symb,$uname,$udom,0,1,$mode));
1.41 ng 1638: }
1639:
1.44 ng 1640: # kwclr is the only variable that is guaranteed to be non blank
1641: # if this subroutine has been called once.
1.41 ng 1642: my %keyhash = ();
1.257 albertel 1643: if ($env{'form.kwclr'} eq '' && $env{'form.handgrade'} eq 'yes') {
1.41 ng 1644: %keyhash = &Apache::lonnet::dump('nohist_handgrade',
1.257 albertel 1645: $env{'course.'.$env{'request.course.id'}.'.domain'},
1646: $env{'course.'.$env{'request.course.id'}.'.num'});
1.41 ng 1647:
1.257 albertel 1648: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1649: $env{'form.keywords'} = $keyhash{$symb.'_keywords'} ne '' ? $keyhash{$symb.'_keywords'} : '';
1650: $env{'form.kwclr'} = $keyhash{$loginuser.'_kwclr'} ne '' ? $keyhash{$loginuser.'_kwclr'} : 'red';
1651: $env{'form.kwsize'} = $keyhash{$loginuser.'_kwsize'} ne '' ? $keyhash{$loginuser.'_kwsize'} : '0';
1652: $env{'form.kwstyle'} = $keyhash{$loginuser.'_kwstyle'} ne '' ? $keyhash{$loginuser.'_kwstyle'} : '';
1653: $env{'form.msgsub'} = $keyhash{$symb.'_subject'} ne '' ?
1654: $keyhash{$symb.'_subject'} : $env{'form.probTitle'};
1655: $env{'form.savemsgN'} = $keyhash{$symb.'_savemsgN'} ne '' ? $keyhash{$symb.'_savemsgN'} : '0';
1.41 ng 1656: }
1.257 albertel 1657: my $overRideScore = $env{'form.overRideScore'} eq '' ? 'no' : $env{'form.overRideScore'};
1.44 ng 1658:
1.303 banghart 1659: $request->print('<form action="/adm/grades" method="post" name="SCORE" enctype="multipart/form-data">'."\n".
1.41 ng 1660: '<input type="hidden" name="command" value="handgrade" />'."\n".
1.257 albertel 1661: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1662: '<input type="hidden" name="Status" value="'.$env{'form.Status'}.'" />'."\n".
1.120 ng 1663: '<input type="hidden" name="overRideScore" value="'.$overRideScore.'" />'."\n".
1.257 albertel 1664: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n".
1.41 ng 1665: '<input type="hidden" name="refresh" value="off" />'."\n".
1.120 ng 1666: '<input type="hidden" name="studentNo" value="" />'."\n".
1667: '<input type="hidden" name="gradeOpt" value="" />'."\n".
1.41 ng 1668: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.257 albertel 1669: '<input type="hidden" name="showgrading" value="'.$env{'form.showgrading'}.'" />'."\n".
1670: '<input type="hidden" name="vProb" value="'.$env{'form.vProb'}.'" />'."\n".
1671: '<input type="hidden" name="vAns" value="'.$env{'form.vAns'}.'" />'."\n".
1672: '<input type="hidden" name="lastSub" value="'.$env{'form.lastSub'}.'" />'."\n".
1.326 albertel 1673: '<input type="hidden" name="section" value="'.$env{'form.section'}.'" />'."\n".
1674: '<input type="hidden" name="submitonly" value="'.$env{'form.submitonly'}.'" />'."\n".
1675: '<input type="hidden" name="handgrade" value="'.$env{'form.handgrade'}.'" />'."\n".
1.41 ng 1676: '<input type="hidden" name="NCT"'.
1.257 albertel 1677: ' value="'.($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : $total+1).'" />'."\n");
1678: if ($env{'form.handgrade'} eq 'yes') {
1679: $request->print('<input type="hidden" name="keywords" value="'.$env{'form.keywords'}.'" />'."\n".
1680: '<input type="hidden" name="kwclr" value="'.$env{'form.kwclr'}.'" />'."\n".
1681: '<input type="hidden" name="kwsize" value="'.$env{'form.kwsize'}.'" />'."\n".
1682: '<input type="hidden" name="kwstyle" value="'.$env{'form.kwstyle'}.'" />'."\n".
1683: '<input type="hidden" name="msgsub" value="'.$env{'form.msgsub'}.'" />'."\n".
1.123 ng 1684: '<input type="hidden" name="shownSub" value="0" />'."\n".
1.257 albertel 1685: '<input type="hidden" name="savemsgN" value="'.$env{'form.savemsgN'}.'" />'."\n");
1.154 albertel 1686: foreach my $partid (&Apache::loncommon::get_env_multiple('form.vPart')) {
1687: $request->print('<input type="hidden" name="vPart" value="'.$partid.'" />'."\n");
1688: }
1.123 ng 1689: }
1.41 ng 1690:
1691: my ($cts,$prnmsg) = (1,'');
1.257 albertel 1692: while ($cts <= $env{'form.savemsgN'}) {
1.41 ng 1693: $prnmsg.='<input type="hidden" name="savemsg'.$cts.'" value="'.
1.123 ng 1694: (!exists($keyhash{$symb.'_savemsg'.$cts}) ?
1.257 albertel 1695: &Apache::lonfeedback::clear_out_html($env{'form.savemsg'.$cts}) :
1.80 ng 1696: &Apache::lonfeedback::clear_out_html($keyhash{$symb.'_savemsg'.$cts})).
1.123 ng 1697: '" />'."\n".
1698: '<input type="hidden" name="shownOnce'.$cts.'" value="0" />'."\n";
1.41 ng 1699: $cts++;
1700: }
1701: $request->print($prnmsg);
1.32 ng 1702:
1.257 albertel 1703: if ($env{'form.handgrade'} eq 'yes' && $env{'form.showgrading'} eq 'yes') {
1.88 www 1704: #
1705: # Print out the keyword options line
1706: #
1.41 ng 1707: $request->print(<<KEYWORDS);
1.38 ng 1708: <b>Keyword Options:</b>
1.122 ng 1709: <a href="javascript:keywords(document.SCORE)"; TARGET=_self>List</a>
1.38 ng 1710: <a href="#" onMouseDown="javascript:getSel(); return false"
1711: CLASS="page">Paste Selection to List</a>
1712: <a href="javascript:kwhighlight()"; TARGET=_self>Highlight Attribute</a><br /><br />
1713: KEYWORDS
1.88 www 1714: #
1715: # Load the other essays for similarity check
1716: #
1.324 albertel 1717: my (undef,undef,$essayurl) = &Apache::lonnet::decode_symb($symb);
1.88 www 1718: my ($adom,$aname,$apath)=($essayurl=~/^(\w+)\/(\w+)\/(.*)$/);
1719: $apath=&Apache::lonnet::escape($apath);
1720: $apath=~s/\W/\_/gs;
1721: %oldessays=&Apache::lonnet::dump('nohist_essay_'.$apath,$adom,$aname);
1.41 ng 1722: }
1723: }
1.44 ng 1724:
1.257 albertel 1725: if ($env{'form.vProb'} eq 'all' or $env{'form.vAns'} eq 'all') {
1.71 ng 1726: $request->print('<br /><br /><br />') if ($counter > 0);
1.144 albertel 1727: my $mode;
1.257 albertel 1728: if ($env{'form.vProb'} eq 'all' && $env{'form.vAns'} eq 'all') {
1.144 albertel 1729: $mode='both';
1.257 albertel 1730: } elsif ($env{'form.vProb'} eq 'all' ) {
1.144 albertel 1731: $mode='text';
1.257 albertel 1732: } elsif ($env{'form.vAns'} eq 'all') {
1.144 albertel 1733: $mode='answer';
1734: }
1.329 albertel 1735: &Apache::lonxml::clear_problem_counter();
1.144 albertel 1736: $request->print(&show_problem($request,$symb,$uname,$udom,1,1,$mode));
1.58 albertel 1737: }
1.144 albertel 1738:
1.257 albertel 1739: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 1740: my ($partlist,$handgrade,$responseType) = &response_type($symb);
1.41 ng 1741:
1.44 ng 1742: # Display student info
1.41 ng 1743: $request->print(($counter == 0 ? '' : '<br />'));
1.326 albertel 1744: my $result='<table border="0" width="100%"><tr><td bgcolor="#777777">'."\n".
1745: '<table border="0" width="100%"><tr bgcolor="#edffff"><td>'."\n";
1.44 ng 1746:
1.257 albertel 1747: $result.='<b>Fullname: </b>'.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).'<br />'."\n";
1.45 ng 1748: $result.='<input type="hidden" name="name'.$counter.
1.257 albertel 1749: '" value="'.$env{'form.fullname'}.'" />'."\n";
1.41 ng 1750:
1.118 ng 1751: # If any part of the problem is an essay-response (handgraded), then check for collaborators
1.45 ng 1752: my @col_fullnames;
1.56 matthew 1753: my ($classlist,$fullname);
1.257 albertel 1754: if ($env{'form.handgrade'} eq 'yes') {
1.80 ng 1755: ($classlist,undef,$fullname) = &getclasslist('all','0');
1.41 ng 1756: for (keys (%$handgrade)) {
1.44 ng 1757: my $ncol = &Apache::lonnet::EXT('resource.'.$_.
1.57 matthew 1758: '.maxcollaborators',
1759: $symb,$udom,$uname);
1760: next if ($ncol <= 0);
1761: s/\_/\./g;
1762: next if ($record{'resource.'.$_.'.collaborators'} eq '');
1.86 ng 1763: my @goodcollaborators = ();
1764: my @badcollaborators = ();
1765: foreach (split(/,?\s+/,$record{'resource.'.$_.'.collaborators'})) {
1766: $_ =~ s/[\$\^\(\)]//g;
1767: next if ($_ eq '');
1.80 ng 1768: my ($co_name,$co_dom) = split /\@|:/,$_;
1.86 ng 1769: $co_dom = $udom if (! defined($co_dom) || $co_dom =~ /^domain$/i);
1.80 ng 1770: next if ($co_name eq $uname && $co_dom eq $udom);
1.86 ng 1771: # Doing this grep allows 'fuzzy' specification
1772: my @Matches = grep /^$co_name:$co_dom$/i,keys %$classlist;
1773: if (! scalar(@Matches)) {
1774: push @badcollaborators,$_;
1775: } else {
1776: push @goodcollaborators, @Matches;
1777: }
1.80 ng 1778: }
1.86 ng 1779: if (scalar(@goodcollaborators) != 0) {
1.57 matthew 1780: $result.='<b>Collaborators: </b>';
1.86 ng 1781: foreach (@goodcollaborators) {
1782: my ($lastname,$givenn) = split(/,/,$$fullname{$_});
1783: push @col_fullnames, $givenn.' '.$lastname;
1784: $result.=$$fullname{$_}.' ';
1785: }
1.57 matthew 1786: $result.='<br />'."\n";
1.150 albertel 1787: my ($part)=split(/\./,$_);
1.86 ng 1788: $result.='<input type="hidden" name="collaborator'.$counter.
1.150 albertel 1789: '" value="'.$part.':'.(join ':',@goodcollaborators).'" />'.
1790: "\n";
1.86 ng 1791: }
1792: if (scalar(@badcollaborators) > 0) {
1793: $result.='<table border="0"><tr bgcolor="#ffbbbb"><td>';
1794: $result.='This student has submitted ';
1795: $result.=(scalar(@badcollaborators) == 1) ? 'an invalid collaborator' : 'invalid collaborators';
1796: $result .= ': '.join(', ',@badcollaborators);
1797: $result .= '</td></tr></table>';
1798: }
1799: if (scalar(@badcollaborators > $ncol)) {
1800: $result .= '<table border="0"><tr bgcolor="#ffbbbb"><td>';
1801: $result .= 'This student has submitted too many '.
1802: 'collaborators. Maximum is '.$ncol.'.';
1803: $result .= '</td></tr></table>';
1804: }
1.41 ng 1805: }
1806: }
1.44 ng 1807: $request->print($result."\n");
1.33 ng 1808:
1.44 ng 1809: # print student answer/submission
1810: # Options are (1) Handgaded submission only
1811: # (2) Last submission, includes submission that is not handgraded
1812: # (for multi-response type part)
1813: # (3) Last submission plus the parts info
1814: # (4) The whole record for this student
1.257 albertel 1815: if ($env{'form.lastSub'} =~ /^(lastonly|hdgrade)$/) {
1.151 albertel 1816: my ($string,$timestamp)= &get_last_submission(\%record);
1817: my $lastsubonly=''.
1818: ($$timestamp eq '' ? '' : '<b>Date Submitted:</b> '.
1819: $$timestamp)."</td></tr>\n";
1820: if ($$timestamp eq '') {
1821: $lastsubonly.='<tr><td bgcolor="#ffffe6">'.$$string[0];
1822: } else {
1823: my %seenparts;
1824: for my $part (sort keys(%$handgrade)) {
1825: my ($partid,$respid) = split(/_/,$part);
1.324 albertel 1826: my $display_part=&get_display_part($partid,$symb);
1.257 albertel 1827: if ($env{"form.$uname:$udom:$partid:submitted_by"}) {
1.151 albertel 1828: if (exists($seenparts{$partid})) { next; }
1829: $seenparts{$partid}=1;
1.207 albertel 1830: my $submitby='<b>Part:</b> '.$display_part.
1831: ' <b>Collaborative submission by:</b> '.
1.151 albertel 1832: '<a href="javascript:viewSubmitter(\''.
1.257 albertel 1833: $env{"form.$uname:$udom:$partid:submitted_by"}.
1.151 albertel 1834: '\')"; TARGET=_self>'.
1.257 albertel 1835: $$fullname{$env{"form.$uname:$udom:$partid:submitted_by"}}.'</a><br />';
1.151 albertel 1836: $request->print($submitby);
1837: next;
1838: }
1839: my $responsetype = $responseType->{$partid}->{$respid};
1840: if (!exists($record{"resource.$partid.$respid.submission"})) {
1.207 albertel 1841: $lastsubonly.='<tr><td bgcolor="#ffffe6"><b>Part:</b> '.
1842: $display_part.' <font color="#999999">( ID '.$respid.
1.151 albertel 1843: ' )</font> '.
1844: '<font color="red">Nothing submitted - no attempts</font><br /><br />';
1845: next;
1846: }
1847: foreach (@$string) {
1848: my ($partid,$respid) = /^resource\.([^\.]*)\.([^\.]*)\.submission/;
1849: if ($part ne ($partid.'_'.$respid)) { next; }
1850: my ($ressub,$subval) = split(/:/,$_,2);
1851: # Similarity check
1852: my $similar='';
1.257 albertel 1853: if($env{'form.checkPlag'}){
1.151 albertel 1854: my ($oname,$odom,$ocrsid,$oessay,$osim)=
1855: &most_similar($uname,$udom,$subval);
1856: if ($osim) {
1857: $osim=int($osim*100.0);
1858: $similar="<hr /><h3><font color=\"#FF0000\">Essay".
1859: " is $osim% similar to an essay by ".
1860: &Apache::loncommon::plainname($oname,$odom).
1861: '</font></h3><blockquote><i>'.
1862: &keywords_highlight($oessay).
1863: '</i></blockquote><hr />';
1864: }
1.150 albertel 1865: }
1.151 albertel 1866: my $order=&get_order($partid,$respid,$symb,$uname,$udom);
1.257 albertel 1867: if ($env{'form.lastSub'} eq 'lastonly' ||
1868: ($env{'form.lastSub'} eq 'hdgrade' &&
1.151 albertel 1869: $$handgrade{$part} eq 'yes')) {
1.324 albertel 1870: my $display_part=&get_display_part($partid,$symb);
1.207 albertel 1871: $lastsubonly.='<tr><td bgcolor="#ffffe6"><b>Part:</b> '.
1872: $display_part.' <font color="#999999">( ID '.$respid.
1.151 albertel 1873: ' )</font> ';
1.313 banghart 1874: my $files=&get_submitted_files($udom,$uname,$partid,$respid,\%record);
1875: if (@$files) {
1.232 albertel 1876: $lastsubonly.='<br /><font color="red" size="1">Like all files provided by users, this file may contain virusses</font><br />';
1.303 banghart 1877: my $file_counter = 0;
1.313 banghart 1878: foreach my $file (@$files) {
1.303 banghart 1879: $file_counter ++;
1.232 albertel 1880: &Apache::lonnet::allowuploaded('/adm/grades',$file);
1.335 albertel 1881: $lastsubonly.='<br /><a href="'.$file.'?rawmode=1" target="lonGRDs"><img src="'.&Apache::loncommon::icon($file).'" border=0"> '.$file.'</a>';
1.232 albertel 1882: }
1.236 albertel 1883: $lastsubonly.='<br />';
1.41 ng 1884: }
1.151 albertel 1885: $lastsubonly.='<b>Submitted Answer: </b>'.
1886: &cleanRecord($subval,$responsetype,$symb,$partid,
1887: $respid,\%record,$order);
1888: if ($similar) {$lastsubonly.="<br /><br />$similar\n";}
1.41 ng 1889: }
1890: }
1891: }
1.151 albertel 1892: }
1893: $lastsubonly.='</td></tr><tr bgcolor="#ffffff"><td>'."\n";
1894: $request->print($lastsubonly);
1.257 albertel 1895: } elsif ($env{'form.lastSub'} eq 'datesub') {
1.324 albertel 1896: my (undef,$responseType,undef,$parts) = &showResourceInfo($symb);
1.148 albertel 1897: $request->print(&displaySubByDates($symb,\%record,$parts,$responseType,$checkIcon,$uname,$udom));
1.257 albertel 1898: } elsif ($env{'form.lastSub'} =~ /^(last|all)$/) {
1.41 ng 1899: $request->print(&Apache::loncommon::get_previous_attempt($symb,$uname,$udom,
1.257 albertel 1900: $env{'request.course.id'},
1.44 ng 1901: $last,'.submission',
1902: 'Apache::grades::keywords_highlight'));
1.41 ng 1903: }
1.120 ng 1904:
1.121 ng 1905: $request->print('<input type="hidden" name="unamedom'.$counter.'" value="'.$uname.':'
1906: .$udom.'" />'."\n");
1.41 ng 1907:
1.44 ng 1908: # return if view submission with no grading option
1.257 albertel 1909: if ($env{'form.showgrading'} eq '' || (!&canmodify($usec))) {
1.120 ng 1910: my $toGrade.='<input type="button" value="Grade Student" '.
1.121 ng 1911: 'onClick="javascript:checksubmit(this.form,\'Grade Student\',\''
1912: .$counter.'\');" TARGET=_self> '."\n" if (&canmodify($usec));
1.169 albertel 1913: $toGrade.='</td></tr></table></td></tr></table>'."\n";
1.257 albertel 1914: if (($env{'form.command'} eq 'submission') ||
1915: ($env{'form.command'} eq 'processGroup' && $counter == $total)) {
1.324 albertel 1916: $toGrade.='</form>'.&show_grading_menu_form($symb);
1.169 albertel 1917: }
1.180 albertel 1918: $request->print($toGrade);
1.41 ng 1919: return;
1.180 albertel 1920: } else {
1921: $request->print('</td></tr></table></td></tr></table>'."\n");
1.41 ng 1922: }
1.33 ng 1923:
1.121 ng 1924: # essay grading message center
1.257 albertel 1925: if ($env{'form.handgrade'} eq 'yes') {
1926: my ($lastname,$givenn) = split(/,/,$env{'form.fullname'});
1.118 ng 1927: my $msgfor = $givenn.' '.$lastname;
1928: if (scalar(@col_fullnames) > 0) {
1929: my $lastone = pop @col_fullnames;
1930: $msgfor .= ', '.(join ', ',@col_fullnames).' and '.$lastone.'.';
1931: }
1932: $msgfor =~ s/\'/\\'/g; #' stupid emacs - no! javascript
1.121 ng 1933: $result='<input type="hidden" name="includemsg'.$counter.'" value="" />'."\n".
1934: '<input type="hidden" name="newmsg'.$counter.'" value="" />'."\n";
1935: $result.=' <a href="javascript:msgCenter(document.SCORE,'.$counter.
1.118 ng 1936: ',\''.$msgfor.'\')"; TARGET=_self>'.
1.298 www 1937: &mt('Compose message to student').(scalar(@col_fullnames) >= 1 ? 's' : '').'</a> ('.
1938: &mt('incl. grades').' <input type="checkbox" name="withgrades'.$counter.'" />)'.
1.118 ng 1939: '<img src="'.$request->dir_config('lonIconsURL').
1940: '/mailbkgrd.gif" width="14" height="10" name="mailicon'.$counter.'" />'."\n".
1.298 www 1941: '<br /> ('.
1942: &mt('Message will be sent when you click on Save & Next below.').")\n";
1.121 ng 1943: $request->print($result);
1.118 ng 1944: }
1.300 albertel 1945: if ($perm{'vgr'}) {
1.297 www 1946: $request->print('<br />'.
1.300 albertel 1947: &Apache::loncommon::track_student_link(&mt('View recent activity'),
1948: $uname,$udom,'check'));
1.297 www 1949: }
1.300 albertel 1950: if ($perm{'opa'}) {
1.297 www 1951: $request->print('<br />'.
1.300 albertel 1952: &Apache::loncommon::pprmlink(&mt('Set/Change parameters'),
1953: $uname,$udom,$symb,'check'));
1.297 www 1954: }
1.41 ng 1955:
1956: my %seen = ();
1957: my @partlist;
1.129 ng 1958: my @gradePartRespid;
1.322 albertel 1959: for my $part_resp (sort(keys(%$handgrade))) {
1.317 banghart 1960: my ($partid,$respid) = split(/_/, $part_resp);
1.322 albertel 1961: next if ($seen{$partid} > 0);
1.41 ng 1962: $seen{$partid}++;
1.317 banghart 1963: next if ($$handgrade{$part_resp} =~ /:no$/ && $env{'form.lastSub'} =~ /^(hdgrade)$/);
1.41 ng 1964: push @partlist,$partid;
1.129 ng 1965: push @gradePartRespid,$partid.'.'.$respid;
1.322 albertel 1966: $request->print(&gradeBox($request,$symb,$uname,$udom,$counter,$partid,\%record));
1.41 ng 1967: }
1.45 ng 1968: $result='<input type="hidden" name="partlist'.$counter.
1969: '" value="'.(join ":",@partlist).'" />'."\n";
1.129 ng 1970: $result.='<input type="hidden" name="gradePartRespid'.
1971: '" value="'.(join ":",@gradePartRespid).'" />'."\n" if ($counter == 0);
1.45 ng 1972: my $ctr = 0;
1973: while ($ctr < scalar(@partlist)) {
1974: $result.='<input type="hidden" name="partid'.$counter.'_'.$ctr.'" value="'.
1975: $partlist[$ctr].'" />'."\n";
1976: $ctr++;
1977: }
1978: $request->print($result.'</td></tr></table></td></tr></table>'."\n");
1.41 ng 1979:
1980: # print end of form
1981: if ($counter == $total) {
1.297 www 1982: my $endform='<table border="0"><tr><td>'."\n";
1.119 ng 1983: $endform.='<input type="button" value="Save & Next" '.
1984: 'onClick="javascript:checksubmit(this.form,\'Save & Next\','.
1985: $total.','.scalar(@partlist).');" TARGET=_self> '."\n";
1986: my $ntstu ='<select name="NTSTU">'.
1987: '<option>1</option><option>2</option>'.
1988: '<option>3</option><option>5</option>'.
1989: '<option>7</option><option>10</option></select>'."\n";
1.257 albertel 1990: my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1');
1.119 ng 1991: $ntstu =~ s/<option>$nsel</<option selected="on">$nsel</;
1992: $endform.=$ntstu.'student(s) ';
1.126 ng 1993: $endform.='<input type="button" value="Previous" '.
1994: 'onClick="javascript:checksubmit(this.form,\'Previous\');" TARGET=_self> '."\n".
1995: '<input type="button" value="Next" '.
1996: 'onClick="javascript:checksubmit(this.form,\'Next\');" TARGET=_self> ';
1997: $endform.='(Next and Previous (student) do not save the scores.)'."\n" ;
1.45 ng 1998: $endform.='</td><tr></table></form>';
1.324 albertel 1999: $endform.=&show_grading_menu_form($symb);
1.41 ng 2000: $request->print($endform);
2001: }
2002: return '';
1.38 ng 2003: }
2004:
1.44 ng 2005: #--- Retrieve the last submission for all the parts
1.38 ng 2006: sub get_last_submission {
1.119 ng 2007: my ($returnhash)=@_;
1.46 ng 2008: my (@string,$timestamp);
1.119 ng 2009: if ($$returnhash{'version'}) {
1.46 ng 2010: my %lasthash=();
2011: my ($version);
1.119 ng 2012: for ($version=1;$version<=$$returnhash{'version'};$version++) {
2013: foreach (sort(split(/\:/,$$returnhash{$version.':keys'}))) {
2014: $lasthash{$_}=$$returnhash{$version.':'.$_};
2015: $timestamp = scalar(localtime($$returnhash{$version.':timestamp'}));
1.46 ng 2016: }
2017: }
2018: foreach ((keys %lasthash)) {
2019: if ($_ =~ /\.submission$/) {
2020: my ($partid,$foo) = split(/submission$/,$_);
2021: my $draft = $lasthash{$partid.'awarddetail'} eq 'DRAFT' ?
2022: '<font color="red">Draft Copy</font> ' : '';
2023: push @string, (join(':',$_,$draft.$lasthash{$_}));
1.41 ng 2024: }
2025: }
2026: }
1.125 ng 2027: @string = $string[0] eq '' ? '<font color="red">Nothing submitted - no attempts.</font>' : @string;
1.46 ng 2028: return \@string,\$timestamp;
1.38 ng 2029: }
1.35 ng 2030:
1.44 ng 2031: #--- High light keywords, with style choosen by user.
1.38 ng 2032: sub keywords_highlight {
1.44 ng 2033: my $string = shift;
1.257 albertel 2034: my $size = $env{'form.kwsize'} eq '0' ? '' : 'size='.$env{'form.kwsize'};
2035: my $styleon = $env{'form.kwstyle'} eq '' ? '' : $env{'form.kwstyle'};
1.41 ng 2036: (my $styleoff = $styleon) =~ s/\</\<\//;
1.257 albertel 2037: my @keylist = split(/[,\s+]/,$env{'form.keywords'});
1.41 ng 2038: foreach (@keylist) {
1.257 albertel 2039: $string =~ s/\b\Q$_\E(\b|\.)/<font color\=$env{'form.kwclr'} $size\>$styleon$_$styleoff<\/font>/gi;
1.41 ng 2040: }
2041: return $string;
1.38 ng 2042: }
1.36 ng 2043:
1.44 ng 2044: #--- Called from submission routine
1.38 ng 2045: sub processHandGrade {
1.41 ng 2046: my ($request) = shift;
1.324 albertel 2047: my $symb = &get_symb($request);
2048: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.257 albertel 2049: my $button = $env{'form.gradeOpt'};
2050: my $ngrade = $env{'form.NCT'};
2051: my $ntstu = $env{'form.NTSTU'};
1.301 albertel 2052: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2053: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2054:
1.44 ng 2055: if ($button eq 'Save & Next') {
2056: my $ctr = 0;
2057: while ($ctr < $ngrade) {
1.257 albertel 2058: my ($uname,$udom) = split(/:/,$env{'form.unamedom'.$ctr});
1.324 albertel 2059: my ($errorflag,$pts,$wgt) = &saveHandGrade($request,$symb,$uname,$udom,$ctr);
1.71 ng 2060: if ($errorflag eq 'no_score') {
2061: $ctr++;
2062: next;
2063: }
1.104 albertel 2064: if ($errorflag eq 'not_allowed') {
2065: $request->print("<font color=\"red\">Not allowed to modify grades for $uname:$udom</font>");
2066: $ctr++;
2067: next;
2068: }
1.257 albertel 2069: my $includemsg = $env{'form.includemsg'.$ctr};
1.44 ng 2070: my ($subject,$message,$msgstatus) = ('','','');
1.62 albertel 2071: if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
1.298 www 2072: $subject = $env{'form.msgsub'} if ($includemsg =~ /msgsub/);
1.295 www 2073: unless ($subject=~/\w/) { $subject=&mt('Grading Feedback'); }
1.44 ng 2074: my (@msgnum) = split(/,/,$includemsg);
2075: foreach (@msgnum) {
1.257 albertel 2076: $message.=$env{'form.'.$_} if ($_ =~ /savemsg|newmsg/ && $_ ne '');
1.44 ng 2077: }
1.80 ng 2078: $message =&Apache::lonfeedback::clear_out_html($message);
1.298 www 2079: if ($env{'form.withgrades'.$ctr}) {
2080: $message.="\n\nPoint".($pts > 1 ? 's':'').' awarded = '.$pts.' out of '.$wgt;
2081: $message.=" for <a href=\"".
1.80 ng 2082: &Apache::lonnet::clutter($url).
1.257 albertel 2083: "?symb=$symb\">$env{'form.probTitle'}</a>";
1.298 www 2084: }
1.324 albertel 2085: $msgstatus = &Apache::lonmsg::user_normal_msg($uname,$udom,
2086: $subject.' ['.
2087: &Apache::lonnet::declutter($url).']',$message);
1.296 www 2088: $request->print('<br />'.&mt('Sending message to [_1]@[_2]',$uname,$udom).': '.
2089: $msgstatus);
1.44 ng 2090: }
1.257 albertel 2091: if ($env{'form.collaborator'.$ctr}) {
1.155 albertel 2092: my @collabstrs=&Apache::loncommon::get_env_multiple("form.collaborator$ctr");
1.150 albertel 2093: foreach my $collabstr (@collabstrs) {
2094: my ($part,@collaborators) = split(/:/,$collabstr);
1.310 banghart 2095: foreach my $collaborator (@collaborators) {
1.150 albertel 2096: my ($errorflag,$pts,$wgt) =
1.324 albertel 2097: &saveHandGrade($request,$symb,$collaborator,$udom,$ctr,
1.257 albertel 2098: $env{'form.unamedom'.$ctr},$part);
1.150 albertel 2099: if ($errorflag eq 'not_allowed') {
1.310 banghart 2100: $request->print("<font color=\"red\">Not allowed to modify grades for $collaborator:$udom</font>");
1.150 albertel 2101: next;
2102: } else {
2103: if ($message ne '') {
1.310 banghart 2104: $msgstatus = &Apache::lonmsg::user_normal_msg($collaborator,$udom,$env{'form.msgsub'},$message);
1.150 albertel 2105: }
1.104 albertel 2106: }
1.44 ng 2107: }
2108: }
2109: }
2110: $ctr++;
2111: }
2112: }
2113:
1.257 albertel 2114: if ($env{'form.handgrade'} eq 'yes') {
1.119 ng 2115: # Keywords sorted in alphabatical order
1.257 albertel 2116: my $loginuser = $env{'user.name'}.':'.$env{'user.domain'};
1.119 ng 2117: my %keyhash = ();
1.257 albertel 2118: $env{'form.keywords'} =~ s/,\s{0,}|\s+/ /g;
2119: $env{'form.keywords'} =~ s/^\s+|\s+$//;
2120: my (@keywords) = sort(split(/\s+/,$env{'form.keywords'}));
2121: $env{'form.keywords'} = join(' ',@keywords);
2122: $keyhash{$symb.'_keywords'} = $env{'form.keywords'};
2123: $keyhash{$symb.'_subject'} = $env{'form.msgsub'};
2124: $keyhash{$loginuser.'_kwclr'} = $env{'form.kwclr'};
2125: $keyhash{$loginuser.'_kwsize'} = $env{'form.kwsize'};
2126: $keyhash{$loginuser.'_kwstyle'} = $env{'form.kwstyle'};
1.119 ng 2127:
2128: # message center - Order of message gets changed. Blank line is eliminated.
1.257 albertel 2129: # New messages are saved in env for the next student.
1.119 ng 2130: # All messages are saved in nohist_handgrade.db
2131: my ($ctr,$idx) = (1,1);
1.257 albertel 2132: while ($ctr <= $env{'form.savemsgN'}) {
2133: if ($env{'form.savemsg'.$ctr} ne '') {
2134: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.savemsg'.$ctr};
1.119 ng 2135: $idx++;
2136: }
2137: $ctr++;
1.41 ng 2138: }
1.119 ng 2139: $ctr = 0;
2140: while ($ctr < $ngrade) {
1.257 albertel 2141: if ($env{'form.newmsg'.$ctr} ne '') {
2142: $keyhash{$symb.'_savemsg'.$idx} = $env{'form.newmsg'.$ctr};
2143: $env{'form.savemsg'.$idx} = $env{'form.newmsg'.$ctr};
1.119 ng 2144: $idx++;
2145: }
2146: $ctr++;
1.41 ng 2147: }
1.257 albertel 2148: $env{'form.savemsgN'} = --$idx;
2149: $keyhash{$symb.'_savemsgN'} = $env{'form.savemsgN'};
1.119 ng 2150: my $putresult = &Apache::lonnet::put
1.301 albertel 2151: ('nohist_handgrade',\%keyhash,$cdom,$cnum);
1.41 ng 2152: }
1.44 ng 2153: # Called by Save & Refresh from Highlight Attribute Window
1.257 albertel 2154: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
2155: if ($env{'form.refresh'} eq 'on') {
1.86 ng 2156: my ($ctr,$total) = (0,0);
2157: while ($ctr < $ngrade) {
1.257 albertel 2158: $total++ if $env{'form.unamedom'.$ctr} ne '';
1.86 ng 2159: $ctr++;
2160: }
1.257 albertel 2161: $env{'form.NTSTU'}=$ngrade;
1.86 ng 2162: $ctr = 0;
2163: while ($ctr < $total) {
1.257 albertel 2164: my $processUser = $env{'form.unamedom'.$ctr};
2165: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2166: $env{'form.fullname'} = $$fullname{$processUser};
1.86 ng 2167: &submission($request,$ctr,$total-1);
1.41 ng 2168: $ctr++;
2169: }
2170: return '';
2171: }
1.36 ng 2172:
1.121 ng 2173: # Go directly to grade student - from submission or link from chart page
1.120 ng 2174: if ($button eq 'Grade Student') {
1.324 albertel 2175: (undef,undef,$env{'form.handgrade'},undef,undef) = &showResourceInfo($symb);
1.257 albertel 2176: my $processUser = $env{'form.unamedom'.$env{'form.studentNo'}};
2177: ($env{'form.student'},$env{'form.userdom'}) = split(/:/,$processUser);
2178: $env{'form.fullname'} = $$fullname{$processUser};
1.120 ng 2179: &submission($request,0,0);
2180: return '';
2181: }
2182:
1.44 ng 2183: # Get the next/previous one or group of students
1.257 albertel 2184: my $firststu = $env{'form.unamedom0'};
2185: my $laststu = $env{'form.unamedom'.($ngrade-1)};
1.119 ng 2186: my $ctr = 2;
1.41 ng 2187: while ($laststu eq '') {
1.257 albertel 2188: $laststu = $env{'form.unamedom'.($ngrade-$ctr)};
1.41 ng 2189: $ctr++;
2190: $laststu = $firststu if ($ctr > $ngrade);
2191: }
1.44 ng 2192:
1.41 ng 2193: my (@parsedlist,@nextlist);
2194: my ($nextflg) = 0;
1.294 albertel 2195: foreach (sort
2196: {
2197: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2198: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2199: }
2200: return $a cmp $b;
2201: } (keys(%$fullname))) {
1.41 ng 2202: if ($nextflg == 1 && $button =~ /Next$/) {
2203: push @parsedlist,$_;
2204: }
2205: $nextflg = 1 if ($_ eq $laststu);
2206: if ($button eq 'Previous') {
2207: last if ($_ eq $firststu);
2208: push @parsedlist,$_;
2209: }
2210: }
2211: $ctr = 0;
2212: @parsedlist = reverse @parsedlist if ($button eq 'Previous');
1.324 albertel 2213: my ($partlist) = &response_type($symb);
1.41 ng 2214: foreach my $student (@parsedlist) {
1.257 albertel 2215: my $submitonly=$env{'form.submitonly'};
1.41 ng 2216: my ($uname,$udom) = split(/:/,$student);
1.301 albertel 2217:
2218: if ($submitonly eq 'queued') {
2219: my %queue_status =
2220: &Apache::bridgetask::get_student_status($symb,$cdom,$cnum,
2221: $udom,$uname);
2222: next if (!defined($queue_status{'gradingqueue'}));
2223: }
2224:
1.156 albertel 2225: if ($submitonly =~ /^(yes|graded|incorrect)$/) {
1.257 albertel 2226: # my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname);
1.324 albertel 2227: my %status=&student_gradeStatus($symb,$udom,$uname,$partlist);
1.145 albertel 2228: my $submitted = 0;
1.248 albertel 2229: my $ungraded = 0;
2230: my $incorrect = 0;
1.145 albertel 2231: foreach (keys(%status)) {
2232: $submitted = 1 if ($status{$_} ne 'nothing');
1.248 albertel 2233: $ungraded = 1 if ($status{$_} =~ /^ungraded/);
2234: $incorrect = 1 if ($status{$_} =~ /^incorrect/);
1.145 albertel 2235: my ($foo,$partid,$foo1) = split(/\./,$_);
2236: if ($status{'resource.'.$partid.'.submitted_by'} ne '') {
2237: $submitted = 0;
2238: }
1.41 ng 2239: }
1.156 albertel 2240: next if (!$submitted && ($submitonly eq 'yes' ||
2241: $submitonly eq 'incorrect' ||
2242: $submitonly eq 'graded'));
1.248 albertel 2243: next if (!$ungraded && ($submitonly eq 'graded'));
2244: next if (!$incorrect && $submitonly eq 'incorrect');
1.41 ng 2245: }
2246: push @nextlist,$student if ($ctr < $ntstu);
1.129 ng 2247: last if ($ctr == $ntstu);
1.41 ng 2248: $ctr++;
2249: }
1.36 ng 2250:
1.41 ng 2251: $ctr = 0;
2252: my $total = scalar(@nextlist)-1;
1.39 ng 2253:
1.41 ng 2254: foreach (sort @nextlist) {
2255: my ($uname,$udom,$submitter) = split(/:/);
1.257 albertel 2256: $env{'form.student'} = $uname;
2257: $env{'form.userdom'} = $udom;
2258: $env{'form.fullname'} = $$fullname{$_};
1.41 ng 2259: &submission($request,$ctr,$total);
2260: $ctr++;
2261: }
2262: if ($total < 0) {
2263: my $the_end = '<h3><font color="red">LON-CAPA User Message</font></h3><br />'."\n";
2264: $the_end.='<b>Message: </b> No more students for this section or class.<br /><br />'."\n";
2265: $the_end.='Click on the button below to return to the grading menu.<br /><br />'."\n";
1.324 albertel 2266: $the_end.=&show_grading_menu_form($symb);
1.41 ng 2267: $request->print($the_end);
2268: }
2269: return '';
1.38 ng 2270: }
1.36 ng 2271:
1.44 ng 2272: #---- Save the score and award for each student, if changed
1.38 ng 2273: sub saveHandGrade {
1.324 albertel 2274: my ($request,$symb,$stuname,$domain,$newflg,$submitter,$part) = @_;
1.342 banghart 2275: my @version_parts;
1.104 albertel 2276: my $usec = &Apache::lonnet::getsection($domain,$stuname,
1.257 albertel 2277: $env{'request.course.id'});
1.104 albertel 2278: if (!&canmodify($usec)) { return('not_allowed'); }
1.337 banghart 2279: my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$domain,$stuname);
1.251 banghart 2280: my @parts_graded;
1.77 ng 2281: my %newrecord = ();
2282: my ($pts,$wgt) = ('','');
1.269 raeburn 2283: my %aggregate = ();
2284: my $aggregateflag = 0;
1.301 albertel 2285: my @parts = split(/:/,$env{'form.partlist'.$newflg});
2286: foreach my $new_part (@parts) {
1.337 banghart 2287: #collaborator ($submi may vary for different parts
1.259 banghart 2288: if ($submitter && $new_part ne $part) { next; }
2289: my $dropMenu = $env{'form.GD_SEL'.$newflg.'_'.$new_part};
1.125 ng 2290: if ($dropMenu eq 'excused') {
1.259 banghart 2291: if ($record{'resource.'.$new_part.'.solved'} ne 'excused') {
2292: $newrecord{'resource.'.$new_part.'.solved'} = 'excused';
2293: if (exists($record{'resource.'.$new_part.'.awarded'})) {
2294: $newrecord{'resource.'.$new_part.'.awarded'} = '';
1.58 albertel 2295: }
1.259 banghart 2296: $newrecord{'resource.'.$new_part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.58 albertel 2297: }
1.125 ng 2298: } elsif ($dropMenu eq 'reset status'
1.259 banghart 2299: && exists($record{'resource.'.$new_part.'.solved'})) { #don't bother if no old records -> no attempts
1.197 albertel 2300: foreach my $key (keys (%record)) {
1.259 banghart 2301: if ($key=~/^resource\.\Q$new_part\E\./) { $newrecord{$key} = ''; }
1.197 albertel 2302: }
1.259 banghart 2303: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2304: "$env{'user.name'}:$env{'user.domain'}";
1.270 albertel 2305: my $totaltries = $record{'resource.'.$part.'.tries'};
2306:
2307: my %last_resets = &get_last_resets($symb,$env{'request.course.id'},
2308: [$new_part]);
2309: my $aggtries =$totaltries;
1.269 raeburn 2310: if ($last_resets{$new_part}) {
1.270 albertel 2311: $aggtries = &get_num_tries(\%record,$last_resets{$new_part},
2312: $new_part);
1.269 raeburn 2313: }
1.270 albertel 2314:
2315: my $solvedstatus = $record{'resource.'.$new_part.'.solved'};
1.269 raeburn 2316: if ($aggtries > 0) {
1.327 albertel 2317: &decrement_aggs($symb,$new_part,\%aggregate,$aggtries,$totaltries,$solvedstatus);
1.269 raeburn 2318: $aggregateflag = 1;
2319: }
1.125 ng 2320: } elsif ($dropMenu eq '') {
1.259 banghart 2321: $pts = ($env{'form.GD_BOX'.$newflg.'_'.$new_part} ne '' ?
2322: $env{'form.GD_BOX'.$newflg.'_'.$new_part} :
2323: $env{'form.RADVAL'.$newflg.'_'.$new_part});
2324: if ($pts eq '' && $env{'form.GD_SEL'.$newflg.'_'.$new_part} eq '') {
1.153 albertel 2325: next;
2326: }
1.259 banghart 2327: $wgt = $env{'form.WGT'.$newflg.'_'.$new_part} eq '' ? 1 :
2328: $env{'form.WGT'.$newflg.'_'.$new_part};
1.41 ng 2329: my $partial= $pts/$wgt;
1.259 banghart 2330: if ($partial eq $record{'resource.'.$new_part.'.awarded'}) {
1.153 albertel 2331: #do not update score for part if not changed.
1.346 banghart 2332: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.153 albertel 2333: next;
1.251 banghart 2334: } else {
1.259 banghart 2335: push @parts_graded, $new_part;
1.153 albertel 2336: }
1.259 banghart 2337: if ($record{'resource.'.$new_part.'.awarded'} ne $partial) {
2338: $newrecord{'resource.'.$new_part.'.awarded'} = $partial;
1.153 albertel 2339: }
1.259 banghart 2340: my $reckey = 'resource.'.$new_part.'.solved';
1.41 ng 2341: if ($partial == 0) {
1.153 albertel 2342: if ($record{$reckey} ne 'incorrect_by_override') {
2343: $newrecord{$reckey} = 'incorrect_by_override';
2344: }
1.41 ng 2345: } else {
1.153 albertel 2346: if ($record{$reckey} ne 'correct_by_override') {
2347: $newrecord{$reckey} = 'correct_by_override';
2348: }
2349: }
2350: if ($submitter &&
1.259 banghart 2351: ($record{'resource.'.$new_part.'.submitted_by'} ne $submitter)) {
2352: $newrecord{'resource.'.$new_part.'.submitted_by'} = $submitter;
1.41 ng 2353: }
1.259 banghart 2354: $newrecord{'resource.'.$new_part.'.regrader'}=
1.257 albertel 2355: "$env{'user.name'}:$env{'user.domain'}";
1.337 banghart 2356: &handback_files($request,$symb,$stuname,$domain,$newflg,$new_part,\%newrecord);
1.41 ng 2357: }
1.259 banghart 2358: # unless problem has been graded, set flag to version the submitted files
1.305 banghart 2359: unless ($record{'resource.'.$new_part.'.solved'} =~ /^correct_/ ||
2360: $record{'resource.'.$new_part.'.solved'} eq 'incorrect_by_override' ||
2361: $dropMenu eq 'reset status')
2362: {
1.342 banghart 2363: push (@version_parts,$new_part);
1.259 banghart 2364: }
1.41 ng 2365: }
1.301 albertel 2366: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2367: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2368:
1.344 albertel 2369: if (%newrecord) {
2370: if (@version_parts) {
1.343 banghart 2371: my @changed_keys = &version_portfiles(\%record, \@parts_graded, $env{'request.course.id'}, $symb, $domain, $stuname, \@version_parts);
1.344 albertel 2372: @newrecord{@changed_keys} = @record{@changed_keys};
1.259 banghart 2373: }
1.44 ng 2374: &Apache::lonnet::cstore(\%newrecord,$symb,
1.257 albertel 2375: $env{'request.course.id'},$domain,$stuname);
1.301 albertel 2376: my @ungraded_parts;
2377: foreach my $part (@parts) {
2378: if ( !defined($record{'resource.'.$part.'.awarded'})
2379: && !defined($newrecord{'resource.'.$part.'.awarded'}) ) {
2380: push(@ungraded_parts, $part);
2381: }
2382: }
2383: if ( !@ungraded_parts ) {
2384: &Apache::bridgetask::remove_from_queue('gradingqueue',$symb,$cdom,
2385: $cnum,$domain,$stuname);
2386: }
1.41 ng 2387: }
1.269 raeburn 2388: if ($aggregateflag) {
2389: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 2390: $cdom,$cnum);
1.269 raeburn 2391: }
1.301 albertel 2392: return ('',$pts,$wgt);
1.36 ng 2393: }
1.322 albertel 2394:
1.337 banghart 2395: sub handback_files {
2396: my ($request,$symb,$stuname,$domain,$newflg,$new_part,$newrecord) = @_;
1.338 banghart 2397: my $portfolio_root = &Apache::loncommon::propath($domain,
2398: $stuname).
2399: '/userfiles/portfolio';
1.337 banghart 2400: my ($partlist,$handgrade,$responseType) = &response_type($symb);
2401: foreach my $part_resp (sort(keys(%$handgrade))) {
2402: my ($part_id, $resp_id) = split(/_/,$part_resp);
2403: if (($env{'form.'.$newflg.'_'.$part_resp.'_returndoc1'}) && ($new_part == $part_id)) {
2404: # if multiple files are uploaded names will be 'returndoc2','returndoc3'
2405: my $file_counter = 1;
2406: while ($env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter}) {
2407: my $fname=$env{'form.'.$newflg.'_'.$part_resp.'_returndoc'.$file_counter.'.filename'};
1.338 banghart 2408: my ($directory,$answer_file) =
2409: ($env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter} =~ /^(.*?)([^\/]*)$/);
2410: my ($answer_name,$answer_ver,$answer_ext) =
2411: &file_name_version_ext($answer_file);
1.341 banghart 2412: $directory =~ /^.+$stuname\/portfolio(.*)/;
2413: my $portfolio_path = $1;
2414: my @dir_list = &Apache::lonnet::dirlist($portfolio_path,$domain,$stuname,$portfolio_root);
1.338 banghart 2415: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.341 banghart 2416: my $new_answer = &version_selected_portfile($domain, $stuname, $portfolio_path, $answer_file, $version);
1.338 banghart 2417: $$newrecord{"resource.$new_part.$resp_id.handback"} = $new_answer;
1.337 banghart 2418: # set the filename to match the submitted file name
2419: $env{'form.'.$newflg.'_'.$part_resp.'_returndoc1.filename'} = $env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter};
2420: my $result=&Apache::lonnet::userfileupload($newflg.'_'.$part_resp.'_returndoc'.$file_counter,'',
1.338 banghart 2421: 'portfolio',undef,undef,undef,$stuname,$domain);
1.337 banghart 2422: if ($result !~ m|^/uploaded/|) {
2423: $request->print('<font color="red"> An errror occured ('.$result.
2424: ') while trying to upload '.&display_file().'</font><br />');
2425: # $request->print(&done('Back'));
2426: }
2427: $request->print("<br />".$fname." will be the uploaded file name");
1.338 banghart 2428: $request->print("<font color=\"red\">Will upload document </font>".$env{'form.'.$newflg.'_'.$part_resp.'_origdoc'.$file_counter});
1.337 banghart 2429: $file_counter++;
2430: }
2431: }
2432: }
1.338 banghart 2433: return;
1.337 banghart 2434: }
2435:
1.313 banghart 2436: sub get_submitted_files {
2437: my ($udom,$uname,$partid,$respid,$record) = @_;
2438: my @files;
2439: if ($$record{"resource.$partid.$respid.portfiles"}) {
2440: my $file_url = '/uploaded/'.$udom.'/'.$uname.'/portfolio';
2441: foreach my $file (split(',',$$record{"resource.$partid.$respid.portfiles"})) {
2442: push(@files,$file_url.$file);
2443: }
2444: }
2445: if ($$record{"resource.$partid.$respid.uploadedurl"}) {
2446: push(@files,$$record{"resource.$partid.$respid.uploadedurl"});
2447: }
2448: return (\@files);
2449: }
1.322 albertel 2450:
1.269 raeburn 2451: # ----------- Provides number of tries since last reset.
2452: sub get_num_tries {
2453: my ($record,$last_reset,$part) = @_;
2454: my $timestamp = '';
2455: my $num_tries = 0;
2456: if ($$record{'version'}) {
2457: for (my $version=$$record{'version'};$version>=1;$version--) {
2458: if (exists($$record{$version.':resource.'.$part.'.solved'})) {
2459: $timestamp = $$record{$version.':timestamp'};
2460: if ($timestamp > $last_reset) {
2461: $num_tries ++;
2462: } else {
2463: last;
2464: }
2465: }
2466: }
2467: }
2468: return $num_tries;
2469: }
2470:
2471: # ----------- Determine decrements required in aggregate totals
2472: sub decrement_aggs {
2473: my ($symb,$part,$aggregate,$aggtries,$totaltries,$solvedstatus) = @_;
2474: my %decrement = (
2475: attempts => 0,
2476: users => 0,
2477: correct => 0
2478: );
2479: $decrement{'attempts'} = $aggtries;
2480: if ($solvedstatus =~ /^correct/) {
2481: $decrement{'correct'} = 1;
2482: }
2483: if ($aggtries == $totaltries) {
2484: $decrement{'users'} = 1;
2485: }
2486: foreach my $type (keys (%decrement)) {
2487: $$aggregate{$symb."\0".$part."\0".$type} = -$decrement{$type};
2488: }
2489: return;
2490: }
2491:
2492: # ----------- Determine timestamps for last reset of aggregate totals for parts
2493: sub get_last_resets {
1.270 albertel 2494: my ($symb,$courseid,$partids) =@_;
2495: my %last_resets;
1.269 raeburn 2496: my $cdom = $env{'course.'.$courseid.'.domain'};
2497: my $cname = $env{'course.'.$courseid.'.num'};
1.271 albertel 2498: my @keys;
2499: foreach my $part (@{$partids}) {
2500: push(@keys,"$symb\0$part\0resettime");
2501: }
2502: my %results=&Apache::lonnet::get('nohist_resourcetracker',\@keys,
2503: $cdom,$cname);
2504: foreach my $part (@{$partids}) {
2505: $last_resets{$part}=$results{"$symb\0$part\0resettime"};
1.269 raeburn 2506: }
1.270 albertel 2507: return %last_resets;
1.269 raeburn 2508: }
2509:
1.251 banghart 2510: # ----------- Handles creating versions for portfolio files as answers
2511: sub version_portfiles {
1.343 banghart 2512: my ($record, $parts_graded, $courseid, $symb, $domain, $stu_name, $v_flag) = @_;
1.263 banghart 2513: my $version_parts = join('|',@$v_flag);
1.343 banghart 2514: my @returned_keys;
1.255 banghart 2515: my $parts = join('|', @$parts_graded);
1.252 banghart 2516: my $portfolio_root = &Apache::loncommon::propath($domain,
1.306 banghart 2517: $stu_name).
1.252 banghart 2518: '/userfiles/portfolio';
1.277 albertel 2519: foreach my $key (keys(%$record)) {
1.259 banghart 2520: my $new_portfiles;
1.263 banghart 2521: if ($key =~ /^resource\.($version_parts)\./ && $key =~ /\.portfiles$/ ) {
1.342 banghart 2522: my @versioned_portfiles;
1.255 banghart 2523: my @portfiles = split(/,/,$$record{$key});
1.252 banghart 2524: foreach my $file (@portfiles) {
1.306 banghart 2525: &Apache::lonnet::unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
1.304 albertel 2526: my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
2527: my ($answer_name,$answer_ver,$answer_ext) =
2528: &file_name_version_ext($answer_file);
1.306 banghart 2529: my @dir_list = &Apache::lonnet::dirlist($directory,$domain,$stu_name,$portfolio_root);
1.342 banghart 2530: my $version = &get_next_version($answer_name, $answer_ext, \@dir_list);
1.306 banghart 2531: my $new_answer = &version_selected_portfile($domain, $stu_name, $directory, $answer_file, $version);
2532: if ($new_answer ne 'problem getting file') {
1.342 banghart 2533: push(@versioned_portfiles, $directory.$new_answer);
1.306 banghart 2534: &Apache::lonnet::mark_as_readonly($domain,$stu_name,
2535: ['/portfolio'.$directory.$new_answer],
2536: [$symb,$env{'request.course.id'},'graded']);
1.259 banghart 2537: }
1.252 banghart 2538: }
1.343 banghart 2539: $$record{$key} = join(',',@versioned_portfiles);
2540: push(@returned_keys,$key);
1.251 banghart 2541: }
2542: }
1.343 banghart 2543: return (@returned_keys);
1.305 banghart 2544: }
2545:
1.307 banghart 2546: sub get_next_version {
1.341 banghart 2547: my ($answer_name, $answer_ext, $dir_list) = @_;
1.307 banghart 2548: my $version;
2549: foreach my $row (@$dir_list) {
2550: my ($file) = split(/\&/,$row,2);
2551: my ($file_name,$file_version,$file_ext) =
2552: &file_name_version_ext($file);
2553: if (($file_name eq $answer_name) &&
2554: ($file_ext eq $answer_ext)) {
2555: # gets here if filename and extension match, regardless of version
2556: if ($file_version ne '') {
2557: # a versioned file is found so save it for later
2558: if ($file_version > $version) {
2559: $version = $file_version;
2560: }
2561: }
2562: }
2563: }
2564: $version ++;
2565: return($version);
2566: }
2567:
1.305 banghart 2568: sub version_selected_portfile {
1.306 banghart 2569: my ($domain,$stu_name,$directory,$file_name,$version) = @_;
2570: my ($answer_name,$answer_ver,$answer_ext) =
2571: &file_name_version_ext($file_name);
2572: my $new_answer;
2573: $env{'form.copy'} = &Apache::lonnet::getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
2574: if($env{'form.copy'} eq '-1') {
2575: &Apache::lonnet::logthis('problem getting file '.$file_name);
2576: $new_answer = 'problem getting file';
2577: } else {
2578: $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
2579: my $copy_result = &Apache::lonnet::finishuserfileupload(
2580: $stu_name,$domain,'copy',
2581: '/portfolio'.$directory.$new_answer);
2582: }
2583: return ($new_answer);
1.251 banghart 2584: }
2585:
1.304 albertel 2586: sub file_name_version_ext {
2587: my ($file)=@_;
2588: my @file_parts = split(/\./, $file);
2589: my ($name,$version,$ext);
2590: if (@file_parts > 1) {
2591: $ext=pop(@file_parts);
2592: if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
2593: $version=pop(@file_parts);
2594: }
2595: $name=join('.',@file_parts);
2596: } else {
2597: $name=join('.',@file_parts);
2598: }
2599: return($name,$version,$ext);
2600: }
2601:
1.44 ng 2602: #--------------------------------------------------------------------------------------
2603: #
2604: #-------------------------- Next few routines handles grading by section or whole class
2605: #
2606: #--- Javascript to handle grading by section or whole class
1.42 ng 2607: sub viewgrades_js {
2608: my ($request) = shift;
2609:
1.41 ng 2610: $request->print(<<VIEWJAVASCRIPT);
2611: <script type="text/javascript" language="javascript">
1.45 ng 2612: function writePoint(partid,weight,point) {
1.125 ng 2613: var radioButton = document.classgrade["RADVAL_"+partid];
2614: var textbox = document.classgrade["TEXTVAL_"+partid];
1.42 ng 2615: if (point == "textval") {
1.125 ng 2616: point = document.classgrade["TEXTVAL_"+partid].value;
1.109 matthew 2617: if (isNaN(point) || parseFloat(point) < 0) {
2618: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.42 ng 2619: var resetbox = false;
2620: for (var i=0; i<radioButton.length; i++) {
2621: if (radioButton[i].checked) {
2622: textbox.value = i;
2623: resetbox = true;
2624: }
2625: }
2626: if (!resetbox) {
2627: textbox.value = "";
2628: }
2629: return;
2630: }
1.109 matthew 2631: if (parseFloat(point) > parseFloat(weight)) {
2632: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 2633: ") greater than the weight for the part. Accept?");
2634: if (resp == false) {
2635: textbox.value = "";
2636: return;
2637: }
2638: }
1.42 ng 2639: for (var i=0; i<radioButton.length; i++) {
2640: radioButton[i].checked=false;
1.109 matthew 2641: if (parseFloat(point) == i) {
1.42 ng 2642: radioButton[i].checked=true;
2643: }
2644: }
1.41 ng 2645:
1.42 ng 2646: } else {
1.125 ng 2647: textbox.value = parseFloat(point);
1.42 ng 2648: }
1.41 ng 2649: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 2650: var user = document.classgrade["ctr"+i].value;
1.289 albertel 2651: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 2652: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
2653: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
2654: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 2655: if (saveval != "correct") {
2656: scorename.value = point;
1.43 ng 2657: if (selname[0].selected != true) {
2658: selname[0].selected = true;
2659: }
1.42 ng 2660: }
2661: }
1.125 ng 2662: document.classgrade["SELVAL_"+partid][0].selected = true;
1.42 ng 2663: }
2664:
2665: function writeRadText(partid,weight) {
1.125 ng 2666: var selval = document.classgrade["SELVAL_"+partid];
2667: var radioButton = document.classgrade["RADVAL_"+partid];
1.265 www 2668: var override = document.classgrade["FORCE_"+partid].checked;
1.125 ng 2669: var textbox = document.classgrade["TEXTVAL_"+partid];
2670: if (selval[1].selected || selval[2].selected) {
1.42 ng 2671: for (var i=0; i<radioButton.length; i++) {
2672: radioButton[i].checked=false;
2673:
2674: }
2675: textbox.value = "";
2676:
2677: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 2678: var user = document.classgrade["ctr"+i].value;
1.289 albertel 2679: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 2680: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
2681: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
2682: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 2683: if ((saveval != "correct") || override) {
1.42 ng 2684: scorename.value = "";
1.125 ng 2685: if (selval[1].selected) {
2686: selname[1].selected = true;
2687: } else {
2688: selname[2].selected = true;
2689: if (Number(document.classgrade["GD_"+user+"_"+partid+"_tries"].value))
2690: {document.classgrade["GD_"+user+"_"+partid+"_tries"].value = '0';}
2691: }
1.42 ng 2692: }
2693: }
1.43 ng 2694: } else {
2695: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 2696: var user = document.classgrade["ctr"+i].value;
1.289 albertel 2697: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 2698: var scorename = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
2699: var saveval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
2700: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.265 www 2701: if ((saveval != "correct") || override) {
1.125 ng 2702: scorename.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
1.43 ng 2703: selname[0].selected = true;
2704: }
2705: }
2706: }
1.42 ng 2707: }
2708:
2709: function changeSelect(partid,user) {
1.125 ng 2710: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
2711: var textbox = document.classgrade["GD_"+user+'_'+partid+"_awarded"];
1.44 ng 2712: var point = textbox.value;
1.125 ng 2713: var weight = document.classgrade["weight_"+partid].value;
1.44 ng 2714:
1.109 matthew 2715: if (isNaN(point) || parseFloat(point) < 0) {
2716: alert("A number equal or greater than 0 is expected. Entered value = "+parseFloat(point));
1.44 ng 2717: textbox.value = "";
2718: return;
2719: }
1.109 matthew 2720: if (parseFloat(point) > parseFloat(weight)) {
2721: var resp = confirm("You entered a value ("+parseFloat(point)+
1.44 ng 2722: ") greater than the weight of the part. Accept?");
2723: if (resp == false) {
2724: textbox.value = "";
2725: return;
2726: }
2727: }
1.42 ng 2728: selval[0].selected = true;
2729: }
2730:
2731: function changeOneScore(partid,user) {
1.125 ng 2732: var selval = document.classgrade["GD_"+user+'_'+partid+"_solved"];
2733: if (selval[1].selected || selval[2].selected) {
2734: document.classgrade["GD_"+user+'_'+partid+"_awarded"].value = "";
2735: if (selval[2].selected) {
2736: document.classgrade["GD_"+user+'_'+partid+"_tries"].value = "0";
2737: }
1.269 raeburn 2738: }
1.42 ng 2739: }
2740:
2741: function resetEntry(numpart) {
2742: for (ctpart=0;ctpart<numpart;ctpart++) {
1.125 ng 2743: var partid = document.classgrade["partid_"+ctpart].value;
2744: var radioButton = document.classgrade["RADVAL_"+partid];
2745: var textbox = document.classgrade["TEXTVAL_"+partid];
2746: var selval = document.classgrade["SELVAL_"+partid];
1.42 ng 2747: for (var i=0; i<radioButton.length; i++) {
2748: radioButton[i].checked=false;
2749:
2750: }
2751: textbox.value = "";
2752: selval[0].selected = true;
2753:
2754: for (i=0;i<document.classgrade.total.value;i++) {
1.125 ng 2755: var user = document.classgrade["ctr"+i].value;
1.289 albertel 2756: user = user.replace(new RegExp(':', 'g'),"_");
1.125 ng 2757: var resetscore = document.classgrade["GD_"+user+"_"+partid+"_awarded"];
2758: resetscore.value = document.classgrade["GD_"+user+"_"+partid+"_awarded_s"].value;
2759: var resettries = document.classgrade["GD_"+user+"_"+partid+"_tries"];
2760: resettries.value = document.classgrade["GD_"+user+"_"+partid+"_tries_s"].value;
2761: var saveselval = document.classgrade["GD_"+user+"_"+partid+"_solved_s"].value;
2762: var selname = document.classgrade["GD_"+user+"_"+partid+"_solved"];
1.42 ng 2763: if (saveselval == "excused") {
1.43 ng 2764: if (selname[1].selected == false) { selname[1].selected = true;}
1.42 ng 2765: } else {
1.43 ng 2766: if (selname[0].selected == false) {selname[0].selected = true};
1.42 ng 2767: }
2768: }
1.41 ng 2769: }
1.42 ng 2770: }
2771:
1.41 ng 2772: </script>
2773: VIEWJAVASCRIPT
1.42 ng 2774: }
2775:
1.44 ng 2776: #--- show scores for a section or whole class w/ option to change/update a score
1.42 ng 2777: sub viewgrades {
2778: my ($request) = shift;
2779: &viewgrades_js($request);
1.41 ng 2780:
1.324 albertel 2781: my ($symb) = &get_symb($request);
1.168 albertel 2782: #need to make sure we have the correct data for later EXT calls,
2783: #thus invalidate the cache
2784: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 2785: $env{'course.'.$env{'request.course.id'}.'.num'},
2786: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 2787: &Apache::lonnet::clear_EXT_cache_status();
2788:
1.167 sakharuk 2789: my $result='<h3><font color="#339933">'.&mt('Manual Grading').'</font></h3>';
1.257 albertel 2790: $result.='<font size=+1><b>Current Resource: </b>'.$env{'form.probTitle'}.'</font>'."\n";
1.41 ng 2791:
2792: #view individual student submission form - called using Javascript viewOneStudent
1.324 albertel 2793: $result.=&jscriptNform($symb);
1.41 ng 2794:
1.44 ng 2795: #beginning of class grading form
1.41 ng 2796: $result.= '<form action="/adm/grades" method="post" name="classgrade">'."\n".
1.106 albertel 2797: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.38 ng 2798: '<input type="hidden" name="command" value="editgrades" />'."\n".
1.257 albertel 2799: '<input type="hidden" name="section" value="'.$env{'form.section'}.'" />'."\n".
2800: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
2801: '<input type="hidden" name="Status" value="'.$env{'form.Status'}.'" />'."\n".
2802: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.72 ng 2803:
1.126 ng 2804: my $sectionClass;
1.257 albertel 2805: if ($env{'form.section'} eq 'all') {
1.126 ng 2806: $sectionClass='Class </h3>';
1.257 albertel 2807: } elsif ($env{'form.section'} eq 'none') {
1.126 ng 2808: $sectionClass='Students in no Section </h3>';
1.52 albertel 2809: } else {
1.257 albertel 2810: $sectionClass='Students in Section '.$env{'form.section'}.'</h3>';
1.52 albertel 2811: }
1.126 ng 2812: $result.='<h3>Assign Common Grade To '.$sectionClass;
1.52 albertel 2813: $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
2814: '<table border=0><tr bgcolor="#ffffdd"><td>';
1.44 ng 2815: #radio buttons/text box for assigning points for a section or class.
2816: #handles different parts of a problem
1.324 albertel 2817: my ($partlist,$handgrade) = &response_type($symb);
1.42 ng 2818: my %weight = ();
2819: my $ctsparts = 0;
1.41 ng 2820: $result.='<table border="0">';
1.45 ng 2821: my %seen = ();
1.42 ng 2822: for (sort keys(%$handgrade)) {
1.54 albertel 2823: my ($partid,$respid) = split (/_/,$_,2);
1.45 ng 2824: next if $seen{$partid};
2825: $seen{$partid}++;
1.147 albertel 2826: my $handgrade=$$handgrade{$_};
1.42 ng 2827: my $wgt = &Apache::lonnet::EXT('resource.'.$partid.'.weight',$symb);
2828: $weight{$partid} = $wgt eq '' ? '1' : $wgt;
2829:
1.44 ng 2830: $result.='<input type="hidden" name="partid_'.
2831: $ctsparts.'" value="'.$partid.'" />'."\n";
2832: $result.='<input type="hidden" name="weight_'.
2833: $partid.'" value="'.$weight{$partid}.'" />'."\n";
1.324 albertel 2834: my $display_part=&get_display_part($partid,$symb);
1.207 albertel 2835: $result.='<tr><td><b>Part:</b> '.$display_part.' <b>Point:</b> </td><td>';
1.42 ng 2836: $result.='<table border="0"><tr>';
1.41 ng 2837: my $ctr = 0;
1.42 ng 2838: while ($ctr<=$weight{$partid}) { # display radio buttons in a nice table 10 across
1.288 albertel 2839: $result.= '<td><label><input type="radio" name="RADVAL_'.$partid.'" '.
1.54 albertel 2840: 'onclick="javascript:writePoint(\''.$partid.'\','.$weight{$partid}.
1.288 albertel 2841: ','.$ctr.')" />'.$ctr."</label></td>\n";
1.41 ng 2842: $result.=(($ctr+1)%10 == 0 ? '</tr><tr>' : '');
2843: $ctr++;
2844: }
2845: $result.='</tr></table>';
1.44 ng 2846: $result.= '</td><td><b> or </b><input type="text" name="TEXTVAL_'.
1.54 albertel 2847: $partid.'" size="4" '.'onChange="javascript:writePoint(\''.
2848: $partid.'\','.$weight{$partid}.',\'textval\')" /> /'.
1.42 ng 2849: $weight{$partid}.' (problem weight)</td>'."\n";
2850: $result.= '</td><td><select name="SELVAL_'.$partid.'"'.
1.54 albertel 2851: 'onChange="javascript:writeRadText(\''.$partid.'\','.
1.59 albertel 2852: $weight{$partid}.')"> '.
1.42 ng 2853: '<option selected="on"> </option>'.
1.125 ng 2854: '<option>excused</option>'.
1.265 www 2855: '<option>reset status</option></select></td>'.
1.266 albertel 2856: '<td><label><input type="checkbox" name="FORCE_'.$partid.'" /> Override "Correct"</label></td></tr>'."\n";
1.42 ng 2857: $ctsparts++;
1.41 ng 2858: }
1.52 albertel 2859: $result.='</table>'.'</td></tr></table>'.'</td></tr></table>'."\n".
2860: '<input type="hidden" name="totalparts" value="'.$ctsparts.'" />';
1.42 ng 2861: $result.='<input type="button" value="Reset" '.
1.111 ng 2862: 'onClick="javascript:resetEntry('.$ctsparts.');" TARGET=_self>';
1.41 ng 2863:
1.44 ng 2864: #table listing all the students in a section/class
2865: #header of table
1.126 ng 2866: $result.= '<h3>Assign Grade to Specific Students in '.$sectionClass;
1.42 ng 2867: $result.= '<table border=0><tr><td bgcolor="#777777">'."\n".
1.126 ng 2868: '<table border=0><tr bgcolor="#deffff"><td> <b>No.</b> </td>'.
1.129 ng 2869: '<td>'.&nameUserString('header')."</td>\n";
1.324 albertel 2870: my (@parts) = sort(&getpartlist($symb));
2871: my (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
1.269 raeburn 2872: my @partids = ();
1.41 ng 2873: foreach my $part (@parts) {
2874: my $display=&Apache::lonnet::metadata($url,$part.'.display');
1.126 ng 2875: $display =~ s|^Number of Attempts|Tries<br />|; # makes the column narrower
1.41 ng 2876: if (!$display) { $display = &Apache::lonnet::metadata($url,$part.'.name'); }
1.207 albertel 2877: my ($partid) = &split_part_type($part);
1.269 raeburn 2878: push(@partids, $partid);
1.324 albertel 2879: my $display_part=&get_display_part($partid,$symb);
1.41 ng 2880: if ($display =~ /^Partial Credit Factor/) {
1.207 albertel 2881: $result.='<td><b>Score Part:</b> '.$display_part.
2882: ' <br /><b>(weight = '.$weight{$partid}.')</b></td>'."\n";
1.41 ng 2883: next;
1.207 albertel 2884: } else {
2885: $display =~s/\[Part: \Q$partid\E\]/Part:<\/b> $display_part/;
1.41 ng 2886: }
1.53 albertel 2887: $display =~ s|Problem Status|Grade Status<br />|;
1.207 albertel 2888: $result.='<td><b>'.$display.'</td>'."\n";
1.41 ng 2889: }
2890: $result.='</tr>';
1.44 ng 2891:
1.270 albertel 2892: my %last_resets =
2893: &get_last_resets($symb,$env{'request.course.id'},\@partids);
1.269 raeburn 2894:
1.41 ng 2895: #get info for each student
1.44 ng 2896: #list all the students - with points and grade status
1.257 albertel 2897: my (undef,undef,$fullname) = &getclasslist($env{'form.section'},'1');
1.41 ng 2898: my $ctr = 0;
1.294 albertel 2899: foreach (sort
2900: {
2901: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
2902: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
2903: }
2904: return $a cmp $b;
2905: } (keys(%$fullname))) {
1.126 ng 2906: $ctr++;
1.324 albertel 2907: $result.=&viewstudentgrade($symb,$env{'request.course.id'},
1.269 raeburn 2908: $_,$$fullname{$_},\@parts,\%weight,$ctr,\%last_resets);
1.41 ng 2909: }
2910: $result.='</table></td></tr></table>';
2911: $result.='<input type="hidden" name="total" value="'.$ctr.'" />'."\n";
1.126 ng 2912: $result.='<input type="button" value="Save" '.
1.45 ng 2913: 'onClick="javascript:submit();" TARGET=_self /></form>'."\n";
1.96 albertel 2914: if (scalar(%$fullname) eq 0) {
2915: my $colspan=3+scalar(@parts);
1.257 albertel 2916: $result='<font color="red">There are no students in section "'.$env{'form.section'}.
2917: '" with enrollment status "'.$env{'form.Status'}.'" to modify or grade.</font>';
1.96 albertel 2918: }
1.324 albertel 2919: $result.=&show_grading_menu_form($symb);
1.41 ng 2920: return $result;
2921: }
2922:
1.44 ng 2923: #--- call by previous routine to display each student
1.41 ng 2924: sub viewstudentgrade {
1.324 albertel 2925: my ($symb,$courseid,$student,$fullname,$parts,$weight,$ctr,$last_resets) = @_;
1.44 ng 2926: my ($uname,$udom) = split(/:/,$student);
2927: my %record=&Apache::lonnet::restore($symb,$courseid,$udom,$uname);
1.269 raeburn 2928: my %aggregates = ();
1.233 albertel 2929: my $result='<tr bgcolor="#ffffdd"><td align="right">'.
2930: '<input type="hidden" name="ctr'.($ctr-1).'" value="'.$student.'" />'.
2931: "\n".$ctr.' </td><td> '.
1.44 ng 2932: '<a href="javascript:viewOneStudent(\''.$uname.'\',\''.$udom.
1.112 ng 2933: '\')"; TARGET=_self>'.$fullname.'</a> '.
1.257 albertel 2934: '<font color="#999999">('.$uname.($env{'user.domain'} eq $udom ? '' : ':'.$udom).')</font></td>'."\n";
1.281 albertel 2935: $student=~s/:/_/; # colon doen't work in javascript for names
1.63 albertel 2936: foreach my $apart (@$parts) {
2937: my ($part,$type) = &split_part_type($apart);
1.41 ng 2938: my $score=$record{"resource.$part.$type"};
1.276 albertel 2939: $result.='<td align="center">';
1.269 raeburn 2940: my ($aggtries,$totaltries);
2941: unless (exists($aggregates{$part})) {
1.270 albertel 2942: $totaltries = $record{'resource.'.$part.'.tries'};
2943:
2944: $aggtries = $totaltries;
1.269 raeburn 2945: if ($$last_resets{$part}) {
1.270 albertel 2946: $aggtries = &get_num_tries(\%record,$$last_resets{$part},
2947: $part);
2948: }
1.269 raeburn 2949: $result.='<input type="hidden" name="'.
2950: 'GD_'.$student.'_'.$part.'_aggtries" value="'.$aggtries.'" />'."\n";
2951: $result.='<input type="hidden" name="'.
2952: 'GD_'.$student.'_'.$part.'_totaltries" value="'.$totaltries.'" />'."\n";
2953: $aggregates{$part} = 1;
2954: }
1.41 ng 2955: if ($type eq 'awarded') {
1.320 albertel 2956: my $pts = $score eq '' ? '' : &compute_points($score,$$weight{$part});
1.42 ng 2957: $result.='<input type="hidden" name="'.
1.89 albertel 2958: 'GD_'.$student.'_'.$part.'_awarded_s" value="'.$pts.'" />'."\n";
1.233 albertel 2959: $result.='<input type="text" name="'.
1.89 albertel 2960: 'GD_'.$student.'_'.$part.'_awarded" '.
2961: 'onChange="javascript:changeSelect(\''.$part.'\',\''.$student.
1.44 ng 2962: '\')" value="'.$pts.'" size="4" /></td>'."\n";
1.41 ng 2963: } elsif ($type eq 'solved') {
2964: my ($status,$foo)=split(/_/,$score,2);
2965: $status = 'nothing' if ($status eq '');
1.89 albertel 2966: $result.='<input type="hidden" name="'.'GD_'.$student.'_'.
1.54 albertel 2967: $part.'_solved_s" value="'.$status.'" />'."\n";
1.233 albertel 2968: $result.=' <select name="'.
1.89 albertel 2969: 'GD_'.$student.'_'.$part.'_solved" '.
2970: 'onChange="javascript:changeOneScore(\''.$part.'\',\''.$student.'\')" >'."\n";
1.125 ng 2971: $result.= (($status eq 'excused') ? '<option> </option><option selected="on">excused</option>'
2972: : '<option selected="on"> </option><option>excused</option>')."\n";
2973: $result.='<option>reset status</option>';
1.126 ng 2974: $result.="</select> </td>\n";
1.122 ng 2975: } else {
2976: $result.='<input type="hidden" name="'.
2977: 'GD_'.$student.'_'.$part.'_'.$type.'_s" value="'.$score.'" />'.
2978: "\n";
1.233 albertel 2979: $result.='<input type="text" name="'.
1.122 ng 2980: 'GD_'.$student.'_'.$part.'_'.$type.'" '.
2981: 'value="'.$score.'" size="4" /></td>'."\n";
1.41 ng 2982: }
2983: }
2984: $result.='</tr>';
2985: return $result;
1.38 ng 2986: }
2987:
1.44 ng 2988: #--- change scores for all the students in a section/class
2989: # record does not get update if unchanged
1.38 ng 2990: sub editgrades {
1.41 ng 2991: my ($request) = @_;
2992:
1.324 albertel 2993: my $symb=&get_symb($request);
1.45 ng 2994: my $title='<h3><font color="#339933">Current Grade Status</font></h3>';
1.257 albertel 2995: $title.='<font size=+1><b>Current Resource: </b>'.$env{'form.probTitle'}.'</font><br />'."\n";
2996: $title.='<font size=+1><b>Section: </b>'.$env{'form.section'}.'</font>'."\n";
1.126 ng 2997:
1.44 ng 2998: my $result= '<table border="0"><tr><td bgcolor="#777777">'."\n";
1.129 ng 2999: $result.= '<table border="0"><tr bgcolor="#deffff">'.
3000: '<td rowspan=2 valign="center"> <b>No.</b> </td>'.
3001: '<td rowspan=2 valign="center">'.&nameUserString('header')."</td>\n";
1.43 ng 3002:
3003: my %scoreptr = (
3004: 'correct' =>'correct_by_override',
3005: 'incorrect'=>'incorrect_by_override',
3006: 'excused' =>'excused',
3007: 'ungraded' =>'ungraded_attempted',
3008: 'nothing' => '',
3009: );
1.257 albertel 3010: my ($classlist,undef,$fullname) = &getclasslist($env{'form.section'},'0');
1.34 ng 3011:
1.44 ng 3012: my (@partid);
3013: my %weight = ();
1.54 albertel 3014: my %columns = ();
1.44 ng 3015: my ($i,$ctr,$count,$rec_update) = (0,0,0,0);
1.54 albertel 3016:
1.324 albertel 3017: my (@parts) = sort(&getpartlist($symb));
1.54 albertel 3018: my $header;
1.257 albertel 3019: while ($ctr < $env{'form.totalparts'}) {
3020: my $partid = $env{'form.partid_'.$ctr};
1.44 ng 3021: push @partid,$partid;
1.257 albertel 3022: $weight{$partid} = $env{'form.weight_'.$partid};
1.44 ng 3023: $ctr++;
1.54 albertel 3024: }
1.324 albertel 3025: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.54 albertel 3026: foreach my $partid (@partid) {
3027: $header .= '<td align="center"> <b>Old Score</b> </td>'.
3028: '<td align="center"> <b>New Score</b> </td>';
3029: $columns{$partid}=2;
3030: foreach my $stores (@parts) {
3031: my ($part,$type) = &split_part_type($stores);
3032: if ($part !~ m/^\Q$partid\E/) { next;}
3033: if ($type eq 'awarded' || $type eq 'solved') { next; }
3034: my $display=&Apache::lonnet::metadata($url,$stores.'.display');
3035: $display =~ s/\[Part: (\w)+\]//;
1.125 ng 3036: $display =~ s/Number of Attempts/Tries/;
3037: $header .= '<td align="center"> <b>Old '.$display.'</b> </td>'.
3038: '<td align="center"> <b>New '.$display.'</b> </td>';
1.54 albertel 3039: $columns{$partid}+=2;
3040: }
3041: }
3042: foreach my $partid (@partid) {
1.324 albertel 3043: my $display_part=&get_display_part($partid,$symb);
1.54 albertel 3044: $result .= '<td colspan="'.$columns{$partid}.
1.207 albertel 3045: '" align="center"><b>Part:</b> '.$display_part.
3046: ' (Weight = '.$weight{$partid}.')</td>';
1.54 albertel 3047:
1.44 ng 3048: }
3049: $result .= '</tr><tr bgcolor="#deffff">';
1.54 albertel 3050: $result .= $header;
1.44 ng 3051: $result .= '</tr>'."\n";
1.93 albertel 3052: my $noupdate;
1.126 ng 3053: my ($updateCtr,$noupdateCtr) = (1,1);
1.257 albertel 3054: for ($i=0; $i<$env{'form.total'}; $i++) {
1.93 albertel 3055: my $line;
1.257 albertel 3056: my $user = $env{'form.ctr'.$i};
1.281 albertel 3057: my ($uname,$udom)=split(/:/,$user);
1.44 ng 3058: my %newrecord;
3059: my $updateflag = 0;
1.281 albertel 3060: $line .= '<td>'.&nameUserString(undef,$$fullname{$user},$uname,$udom).'</td>';
1.108 albertel 3061: my $usec=$classlist->{"$uname:$udom"}[5];
1.105 albertel 3062: if (!&canmodify($usec)) {
1.126 ng 3063: my $numcols=scalar(@partid)*4+2;
1.105 albertel 3064: $noupdate.=$line."<td colspan=\"$numcols\"><font color=\"red\">Not allowed to modify student</font></td></tr>";
3065: next;
3066: }
1.269 raeburn 3067: my %aggregate = ();
3068: my $aggregateflag = 0;
1.281 albertel 3069: $user=~s/:/_/; # colon doen't work in javascript for names
1.44 ng 3070: foreach (@partid) {
1.257 albertel 3071: my $old_aw = $env{'form.GD_'.$user.'_'.$_.'_awarded_s'};
1.54 albertel 3072: my $old_part_pcr = $old_aw/($weight{$_} ne '0' ? $weight{$_}:1);
3073: my $old_part = $old_aw eq '' ? '' : $old_part_pcr;
1.257 albertel 3074: my $old_score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
3075: my $awarded = $env{'form.GD_'.$user.'_'.$_.'_awarded'};
1.54 albertel 3076: my $pcr = $awarded/($weight{$_} ne '0' ? $weight{$_} : 1);
3077: my $partial = $awarded eq '' ? '' : $pcr;
1.44 ng 3078: my $score;
3079: if ($partial eq '') {
1.257 albertel 3080: $score = $scoreptr{$env{'form.GD_'.$user.'_'.$_.'_solved_s'}};
1.44 ng 3081: } elsif ($partial > 0) {
3082: $score = 'correct_by_override';
3083: } elsif ($partial == 0) {
3084: $score = 'incorrect_by_override';
3085: }
1.257 albertel 3086: my $dropMenu = $env{'form.GD_'.$user.'_'.$_.'_solved'};
1.125 ng 3087: $score = 'excused' if (($dropMenu eq 'excused') && ($score ne 'excused'));
3088:
1.292 albertel 3089: $newrecord{'resource.'.$_.'.regrader'}=
3090: "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 3091: if ($dropMenu eq 'reset status' &&
3092: $old_score ne '') { # ignore if no previous attempts => nothing to reset
1.299 albertel 3093: $newrecord{'resource.'.$_.'.tries'} = '';
1.125 ng 3094: $newrecord{'resource.'.$_.'.solved'} = '';
3095: $newrecord{'resource.'.$_.'.award'} = '';
1.299 albertel 3096: $newrecord{'resource.'.$_.'.awarded'} = '';
1.125 ng 3097: $updateflag = 1;
1.269 raeburn 3098: if ($env{'form.GD_'.$user.'_'.$_.'_aggtries'} > 0) {
3099: my $aggtries = $env{'form.GD_'.$user.'_'.$_.'_aggtries'};
3100: my $totaltries = $env{'form.GD_'.$user.'_'.$_.'_totaltries'};
3101: my $solvedstatus = $env{'form.GD_'.$user.'_'.$_.'_solved_s'};
3102: &decrement_aggs($symb,$_,\%aggregate,$aggtries,$totaltries,$solvedstatus);
3103: $aggregateflag = 1;
3104: }
1.139 albertel 3105: } elsif (!($old_part eq $partial && $old_score eq $score)) {
3106: $updateflag = 1;
3107: $newrecord{'resource.'.$_.'.awarded'} = $partial if $partial ne '';
3108: $newrecord{'resource.'.$_.'.solved'} = $score;
3109: $rec_update++;
1.125 ng 3110: }
3111:
1.93 albertel 3112: $line .= '<td align="center">'.$old_aw.' </td>'.
1.44 ng 3113: '<td align="center">'.$awarded.
3114: ($score eq 'excused' ? $score : '').' </td>';
1.5 albertel 3115:
1.54 albertel 3116:
3117: my $partid=$_;
3118: foreach my $stores (@parts) {
3119: my ($part,$type) = &split_part_type($stores);
3120: if ($part !~ m/^\Q$partid\E/) { next;}
3121: if ($type eq 'awarded' || $type eq 'solved') { next; }
1.257 albertel 3122: my $old_aw = $env{'form.GD_'.$user.'_'.$part.'_'.$type.'_s'};
3123: my $awarded = $env{'form.GD_'.$user.'_'.$part.'_'.$type};
1.54 albertel 3124: if ($awarded ne '' && $awarded ne $old_aw) {
3125: $newrecord{'resource.'.$part.'.'.$type}= $awarded;
1.257 albertel 3126: $newrecord{'resource.'.$part.'.regrader'}="$env{'user.name'}:$env{'user.domain'}";
1.54 albertel 3127: $updateflag=1;
3128: }
1.93 albertel 3129: $line .= '<td align="center">'.$old_aw.' </td>'.
1.54 albertel 3130: '<td align="center">'.$awarded.' </td>';
3131: }
1.44 ng 3132: }
1.93 albertel 3133: $line.='</tr>'."\n";
1.301 albertel 3134:
3135: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
3136: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
3137:
1.44 ng 3138: if ($updateflag) {
3139: $count++;
1.257 albertel 3140: &Apache::lonnet::cstore(\%newrecord,$symb,$env{'request.course.id'},
1.89 albertel 3141: $udom,$uname);
1.301 albertel 3142:
3143: if (&Apache::bridgetask::in_queue('gradingqueue',$symb,$cdom,
3144: $cnum,$udom,$uname)) {
3145: # need to figure out if should be in queue.
3146: my %record =
3147: &Apache::lonnet::restore($symb,$env{'request.course.id'},
3148: $udom,$uname);
3149: my $all_graded = 1;
3150: my $none_graded = 1;
3151: foreach my $part (@parts) {
3152: if ( $record{'resource.'.$part.'.awarded'} eq '' ) {
3153: $all_graded = 0;
3154: } else {
3155: $none_graded = 0;
3156: }
3157: }
3158:
3159: if ($all_graded || $none_graded) {
3160: &Apache::bridgetask::remove_from_queue('gradingqueue',
3161: $symb,$cdom,$cnum,
3162: $udom,$uname);
3163: }
3164: }
3165:
1.126 ng 3166: $result.='<tr bgcolor="#ffffde"><td align="right"> '.$updateCtr.' </td>'.$line;
3167: $updateCtr++;
1.93 albertel 3168: } else {
1.126 ng 3169: $noupdate.='<tr bgcolor="#ffffde"><td align="right"> '.$noupdateCtr.' </td>'.$line;
3170: $noupdateCtr++;
1.44 ng 3171: }
1.269 raeburn 3172: if ($aggregateflag) {
3173: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
1.301 albertel 3174: $cdom,$cnum);
1.269 raeburn 3175: }
1.93 albertel 3176: }
3177: if ($noupdate) {
1.126 ng 3178: # my $numcols=(scalar(@partid)*(scalar(@parts)-1)*2)+3;
3179: my $numcols=scalar(@partid)*4+2;
1.204 albertel 3180: $result .= '<tr bgcolor="#ffffff"><td align="center" colspan="'.$numcols.'">No Changes Occurred For the Students Below</td></tr><tr bgcolor="#ffffde">'.$noupdate;
1.44 ng 3181: }
1.72 ng 3182: $result .= '</table></td></tr></table>'."\n".
1.324 albertel 3183: &show_grading_menu_form ($symb);
1.125 ng 3184: my $msg = '<br /><b>Number of records updated = '.$rec_update.
1.44 ng 3185: ' for '.$count.' student'.($count <= 1 ? '' : 's').'.</b><br />'.
1.257 albertel 3186: '<b>Total number of students = '.$env{'form.total'}.'</b><br />';
1.44 ng 3187: return $title.$msg.$result;
1.5 albertel 3188: }
1.54 albertel 3189:
3190: sub split_part_type {
3191: my ($partstr) = @_;
3192: my ($temp,@allparts)=split(/_/,$partstr);
3193: my $type=pop(@allparts);
3194: my $part=join('.',@allparts);
3195: return ($part,$type);
3196: }
3197:
1.44 ng 3198: #------------- end of section for handling grading by section/class ---------
3199: #
3200: #----------------------------------------------------------------------------
3201:
1.5 albertel 3202:
1.44 ng 3203: #----------------------------------------------------------------------------
3204: #
3205: #-------------------------- Next few routines handles grading by csv upload
3206: #
3207: #--- Javascript to handle csv upload
1.27 albertel 3208: sub csvupload_javascript_reverse_associate {
1.246 albertel 3209: my $error1=&mt('You need to specify the username or ID');
3210: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3211: return(<<ENDPICK);
3212: function verify(vf) {
3213: var foundsomething=0;
3214: var founduname=0;
1.243 albertel 3215: var foundID=0;
1.27 albertel 3216: for (i=0;i<=vf.nfields.value;i++) {
3217: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3218: if (i==0 && tw!=0) { foundID=1; }
3219: if (i==1 && tw!=0) { founduname=1; }
3220: if (i!=0 && i!=1 && i!=2 && tw!=0) { foundsomething=1; }
1.27 albertel 3221: }
1.246 albertel 3222: if (founduname==0 && foundID==0) {
3223: alert('$error1');
3224: return;
1.27 albertel 3225: }
3226: if (foundsomething==0) {
1.246 albertel 3227: alert('$error2');
3228: return;
1.27 albertel 3229: }
3230: vf.submit();
3231: }
3232: function flip(vf,tf) {
3233: var nw=eval('vf.f'+tf+'.selectedIndex');
3234: var i;
3235: for (i=0;i<=vf.nfields.value;i++) {
3236: //can not pick the same destination field for both name and domain
3237: if (((i ==0)||(i ==1)) &&
3238: ((tf==0)||(tf==1)) &&
3239: (i!=tf) &&
3240: (eval('vf.f'+i+'.selectedIndex')==nw)) {
3241: eval('vf.f'+i+'.selectedIndex=0;')
3242: }
3243: }
3244: }
3245: ENDPICK
3246: }
3247:
3248: sub csvupload_javascript_forward_associate {
1.246 albertel 3249: my $error1=&mt('You need to specify the username or ID');
3250: my $error2=&mt('You need to specify at least one grading field');
1.27 albertel 3251: return(<<ENDPICK);
3252: function verify(vf) {
3253: var foundsomething=0;
3254: var founduname=0;
1.243 albertel 3255: var foundID=0;
1.27 albertel 3256: for (i=0;i<=vf.nfields.value;i++) {
3257: tw=eval('vf.f'+i+'.selectedIndex');
1.243 albertel 3258: if (tw==1) { foundID=1; }
3259: if (tw==2) { founduname=1; }
3260: if (tw>3) { foundsomething=1; }
1.27 albertel 3261: }
1.246 albertel 3262: if (founduname==0 && foundID==0) {
3263: alert('$error1');
3264: return;
1.27 albertel 3265: }
3266: if (foundsomething==0) {
1.246 albertel 3267: alert('$error2');
3268: return;
1.27 albertel 3269: }
3270: vf.submit();
3271: }
3272: function flip(vf,tf) {
3273: var nw=eval('vf.f'+tf+'.selectedIndex');
3274: var i;
3275: //can not pick the same destination field twice
3276: for (i=0;i<=vf.nfields.value;i++) {
3277: if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) {
3278: eval('vf.f'+i+'.selectedIndex=0;')
3279: }
3280: }
3281: }
3282: ENDPICK
3283: }
3284:
1.26 albertel 3285: sub csvuploadmap_header {
1.324 albertel 3286: my ($request,$symb,$datatoken,$distotal)= @_;
1.41 ng 3287: my $javascript;
1.257 albertel 3288: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3289: $javascript=&csvupload_javascript_reverse_associate();
3290: } else {
3291: $javascript=&csvupload_javascript_forward_associate();
3292: }
1.45 ng 3293:
1.324 albertel 3294: my ($result) = &showResourceInfo($symb,$env{'form.probTitle'});
1.257 albertel 3295: my $checked=(($env{'form.noFirstLine'})?' checked="checked"':'');
1.245 albertel 3296: my $ignore=&mt('Ignore First Line');
1.41 ng 3297: $request->print(<<ENDPICK);
1.26 albertel 3298: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.45 ng 3299: <h3><font color="#339933">Uploading Class Grades</font></h3>
3300: $result
1.326 albertel 3301: <hr />
1.26 albertel 3302: <h3>Identify fields</h3>
3303: Total number of records found in file: $distotal <hr />
3304: Enter as many fields as you can. The system will inform you and bring you back
3305: to this page if the data selected is insufficient to run your class.<hr />
3306: <input type="button" value="Reverse Association" onClick="javascript:this.form.associate.value='Reverse Association';submit(this.form);" />
1.245 albertel 3307: <label><input type="checkbox" name="noFirstLine" $checked />$ignore</label>
1.26 albertel 3308: <input type="hidden" name="associate" value="" />
3309: <input type="hidden" name="phase" value="three" />
3310: <input type="hidden" name="datatoken" value="$datatoken" />
1.257 albertel 3311: <input type="hidden" name="fileupload" value="$env{'form.fileupload'}" />
3312: <input type="hidden" name="upfiletype" value="$env{'form.upfiletype'}" />
1.26 albertel 3313: <input type="hidden" name="upfile_associate"
1.257 albertel 3314: value="$env{'form.upfile_associate'}" />
1.26 albertel 3315: <input type="hidden" name="symb" value="$symb" />
1.257 albertel 3316: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
3317: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
1.246 albertel 3318: <input type="hidden" name="command" value="csvuploadoptions" />
1.26 albertel 3319: <hr />
3320: <script type="text/javascript" language="Javascript">
3321: $javascript
3322: </script>
3323: ENDPICK
1.118 ng 3324: return '';
1.26 albertel 3325:
3326: }
3327:
3328: sub csvupload_fields {
1.324 albertel 3329: my ($symb) = @_;
3330: my (@parts) = &getpartlist($symb);
1.243 albertel 3331: my @fields=(['ID','Student ID'],
3332: ['username','Student Username'],
3333: ['domain','Student Domain']);
1.324 albertel 3334: my (undef,undef,$url) = &Apache::lonnet::decode_symb($symb);
1.41 ng 3335: foreach my $part (sort(@parts)) {
3336: my @datum;
3337: my $display=&Apache::lonnet::metadata($url,$part.'.display');
3338: my $name=$part;
3339: if (!$display) { $display = $name; }
3340: @datum=($name,$display);
1.244 albertel 3341: if ($name=~/^stores_(.*)_awarded/) {
3342: push(@fields,['stores_'.$1.'_points',"Points [Part: $1]"]);
3343: }
1.41 ng 3344: push(@fields,\@datum);
3345: }
3346: return (@fields);
1.26 albertel 3347: }
3348:
3349: sub csvuploadmap_footer {
1.41 ng 3350: my ($request,$i,$keyfields) =@_;
3351: $request->print(<<ENDPICK);
1.26 albertel 3352: </table>
3353: <input type="hidden" name="nfields" value="$i" />
3354: <input type="hidden" name="keyfields" value="$keyfields" />
3355: <input type="button" onClick="javascript:verify(this.form)" value="Assign Grades" /><br />
3356: </form>
3357: ENDPICK
3358: }
3359:
1.283 albertel 3360: sub checkforfile_js {
1.86 ng 3361: my $result =<<CSVFORMJS;
3362: <script type="text/javascript" language="javascript">
3363: function checkUpload(formname) {
3364: if (formname.upfile.value == "") {
3365: alert("Please use the browse button to select a file from your local directory.");
3366: return false;
3367: }
3368: formname.submit();
3369: }
3370: </script>
3371: CSVFORMJS
1.283 albertel 3372: return $result;
3373: }
3374:
3375: sub upcsvScores_form {
3376: my ($request) = shift;
1.324 albertel 3377: my ($symb)=&get_symb($request);
1.283 albertel 3378: if (!$symb) {return '';}
3379: my $result=&checkforfile_js();
1.257 albertel 3380: $env{'form.probTitle'} = &Apache::lonnet::gettitle($symb);
1.324 albertel 3381: my ($table) = &showResourceInfo($symb,$env{'form.probTitle'});
1.118 ng 3382: $result.=$table;
1.326 albertel 3383: $result.='<br /><table width="100%" border="0"><tr><td bgcolor="#777777">'."\n";
3384: $result.='<table width="100%" border="0"><tr bgcolor="#e6ffff"><td>'."\n";
1.118 ng 3385: $result.=' <b>Specify a file containing the class scores for current resource'.
1.86 ng 3386: '.</b></td></tr>'."\n";
3387: $result.='<tr bgcolor=#ffffe6><td>'."\n";
3388: my $upfile_select=&Apache::loncommon::upfile_select_html();
1.245 albertel 3389: my $ignore=&mt('Ignore First Line');
1.86 ng 3390: $result.=<<ENDUPFORM;
1.106 albertel 3391: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
1.86 ng 3392: <input type="hidden" name="symb" value="$symb" />
3393: <input type="hidden" name="command" value="csvuploadmap" />
1.257 albertel 3394: <input type="hidden" name="probTitle" value="$env{'form.probTitle'}" />
3395: <input type="hidden" name="saveState" value="$env{'form.saveState'}" />
1.86 ng 3396: $upfile_select
3397: <br /><input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scores" />
1.283 albertel 3398: <label><input type="checkbox" name="noFirstLine" />$ignore</label>
1.86 ng 3399: </form>
3400: ENDUPFORM
3401: $result.='</td></tr></table>'."\n";
3402: $result.='</td></tr></table><br /><br />'."\n";
1.324 albertel 3403: $result.=&show_grading_menu_form($symb);
1.86 ng 3404: return $result;
3405: }
3406:
3407:
1.26 albertel 3408: sub csvuploadmap {
1.41 ng 3409: my ($request)= @_;
1.324 albertel 3410: my ($symb)=&get_symb($request);
1.41 ng 3411: if (!$symb) {return '';}
1.72 ng 3412:
1.41 ng 3413: my $datatoken;
1.257 albertel 3414: if (!$env{'form.datatoken'}) {
1.41 ng 3415: $datatoken=&Apache::loncommon::upfile_store($request);
1.26 albertel 3416: } else {
1.257 albertel 3417: $datatoken=$env{'form.datatoken'};
1.41 ng 3418: &Apache::loncommon::load_tmp_file($request);
1.26 albertel 3419: }
1.41 ng 3420: my @records=&Apache::loncommon::upfile_record_sep();
1.257 albertel 3421: if ($env{'form.noFirstLine'}) { shift(@records); }
1.324 albertel 3422: &csvuploadmap_header($request,$symb,$datatoken,$#records+1);
1.41 ng 3423: my ($i,$keyfields);
3424: if (@records) {
1.324 albertel 3425: my @fields=&csvupload_fields($symb);
1.45 ng 3426:
1.257 albertel 3427: if ($env{'form.upfile_associate'} eq 'reverse') {
1.41 ng 3428: &Apache::loncommon::csv_print_samples($request,\@records);
3429: $i=&Apache::loncommon::csv_print_select_table($request,\@records,
3430: \@fields);
3431: foreach (@fields) { $keyfields.=$_->[0].','; }
3432: chop($keyfields);
3433: } else {
3434: unshift(@fields,['none','']);
3435: $i=&Apache::loncommon::csv_samples_select_table($request,\@records,
3436: \@fields);
1.311 banghart 3437: foreach my $rec (@records) {
3438: my %temp = &Apache::loncommon::record_sep($rec);
3439: if (%temp) {
3440: $keyfields=join(',',sort(keys(%temp)));
3441: last;
3442: }
3443: }
1.41 ng 3444: }
3445: }
3446: &csvuploadmap_footer($request,$i,$keyfields);
1.324 albertel 3447: $request->print(&show_grading_menu_form($symb));
1.72 ng 3448:
1.41 ng 3449: return '';
1.27 albertel 3450: }
3451:
1.246 albertel 3452: sub csvuploadoptions {
1.41 ng 3453: my ($request)= @_;
1.324 albertel 3454: my ($symb)=&get_symb($request);
1.257 albertel 3455: my $checked=(($env{'form.noFirstLine'})?'1':'0');
1.246 albertel 3456: my $ignore=&mt('Ignore First Line');
3457: $request->print(<<ENDPICK);
3458: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="gradesupload">
3459: <h3><font color="#339933">Uploading Class Grade Options</font></h3>
3460: <input type="hidden" name="command" value="csvuploadassign" />
1.302 albertel 3461: <!--
1.246 albertel 3462: <p>
3463: <label>
3464: <input type="checkbox" name="show_full_results" />
3465: Show a table of all changes
3466: </label>
3467: </p>
1.302 albertel 3468: -->
1.246 albertel 3469: <p>
3470: <label>
3471: <input type="checkbox" name="overwite_scores" checked="checked" />
3472: Overwrite any existing score
3473: </label>
3474: </p>
3475: ENDPICK
3476: my %fields=&get_fields();
3477: if (!defined($fields{'domain'})) {
1.257 albertel 3478: my $domform = &Apache::loncommon::select_dom_form($env{'request.role.domain'},'default_domain');
1.246 albertel 3479: $request->print("\n<p> Users are in domain: ".$domform."</p>\n");
3480: }
1.257 albertel 3481: foreach my $key (sort(keys(%env))) {
1.246 albertel 3482: if ($key !~ /^form\.(.*)$/) { next; }
3483: my $cleankey=$1;
3484: if ($cleankey eq 'command') { next; }
3485: $request->print('<input type="hidden" name="'.$cleankey.
1.257 albertel 3486: '" value="'.$env{$key}.'" />'."\n");
1.246 albertel 3487: }
3488: # FIXME do a check for any duplicated user ids...
3489: # FIXME do a check for any invalid user ids?...
1.290 albertel 3490: $request->print('<input type="submit" value="Assign Grades" /><br />
3491: <hr /></form>'."\n");
1.324 albertel 3492: $request->print(&show_grading_menu_form($symb));
1.246 albertel 3493: return '';
3494: }
3495:
3496: sub get_fields {
3497: my %fields;
1.257 albertel 3498: my @keyfields = split(/\,/,$env{'form.keyfields'});
3499: for (my $i=0; $i<=$env{'form.nfields'}; $i++) {
3500: if ($env{'form.upfile_associate'} eq 'reverse') {
3501: if ($env{'form.f'.$i} ne 'none') {
3502: $fields{$keyfields[$i]}=$env{'form.f'.$i};
1.41 ng 3503: }
3504: } else {
1.257 albertel 3505: if ($env{'form.f'.$i} ne 'none') {
3506: $fields{$env{'form.f'.$i}}=$keyfields[$i];
1.41 ng 3507: }
3508: }
1.27 albertel 3509: }
1.246 albertel 3510: return %fields;
3511: }
3512:
3513: sub csvuploadassign {
3514: my ($request)= @_;
1.324 albertel 3515: my ($symb)=&get_symb($request);
1.246 albertel 3516: if (!$symb) {return '';}
1.345 bowersj2 3517: my $error_msg = '';
1.246 albertel 3518: &Apache::loncommon::load_tmp_file($request);
3519: my @gradedata = &Apache::loncommon::upfile_record_sep();
1.257 albertel 3520: if ($env{'form.noFirstLine'}) { shift(@gradedata); }
1.246 albertel 3521: my %fields=&get_fields();
1.41 ng 3522: $request->print('<h3>Assigning Grades</h3>');
1.257 albertel 3523: my $courseid=$env{'request.course.id'};
1.97 albertel 3524: my ($classlist) = &getclasslist('all',0);
1.106 albertel 3525: my @notallowed;
1.41 ng 3526: my @skipped;
3527: my $countdone=0;
3528: foreach my $grade (@gradedata) {
3529: my %entries=&Apache::loncommon::record_sep($grade);
1.246 albertel 3530: my $domain;
3531: if ($entries{$fields{'domain'}}) {
3532: $domain=$entries{$fields{'domain'}};
3533: } else {
1.257 albertel 3534: $domain=$env{'form.default_domain'};
1.246 albertel 3535: }
1.243 albertel 3536: $domain=~s/\s//g;
1.41 ng 3537: my $username=$entries{$fields{'username'}};
1.160 albertel 3538: $username=~s/\s//g;
1.243 albertel 3539: if (!$username) {
3540: my $id=$entries{$fields{'ID'}};
1.247 albertel 3541: $id=~s/\s//g;
1.243 albertel 3542: my %ids=&Apache::lonnet::idget($domain,$id);
3543: $username=$ids{$id};
3544: }
1.41 ng 3545: if (!exists($$classlist{"$username:$domain"})) {
1.247 albertel 3546: my $id=$entries{$fields{'ID'}};
3547: $id=~s/\s//g;
3548: if ($id) {
3549: push(@skipped,"$id:$domain");
3550: } else {
3551: push(@skipped,"$username:$domain");
3552: }
1.41 ng 3553: next;
3554: }
1.108 albertel 3555: my $usec=$classlist->{"$username:$domain"}[5];
1.106 albertel 3556: if (!&canmodify($usec)) {
3557: push(@notallowed,"$username:$domain");
3558: next;
3559: }
1.244 albertel 3560: my %points;
1.41 ng 3561: my %grades;
3562: foreach my $dest (keys(%fields)) {
1.244 albertel 3563: if ($dest eq 'ID' || $dest eq 'username' ||
3564: $dest eq 'domain') { next; }
3565: if ($entries{$fields{$dest}} =~ /^\s*$/) { next; }
3566: if ($dest=~/stores_(.*)_points/) {
3567: my $part=$1;
3568: my $wgt =&Apache::lonnet::EXT('resource.'.$part.'.weight',
3569: $symb,$domain,$username);
1.345 bowersj2 3570: if ($wgt) {
3571: $entries{$fields{$dest}}=~s/\s//g;
3572: my $pcr=$entries{$fields{$dest}} / $wgt;
3573: my $award='correct_by_override';
3574: $grades{"resource.$part.awarded"}=$pcr;
3575: $grades{"resource.$part.solved"}=$award;
3576: $points{$part}=1;
3577: } else {
3578: $error_msg = "<br />" .
3579: &mt("Some point values were assigned"
3580: ." for problems with a weight "
3581: ."of zero. These values were "
3582: ."ignored.");
3583: }
1.244 albertel 3584: } else {
3585: if ($dest=~/stores_(.*)_awarded/) { if ($points{$1}) {next;} }
3586: if ($dest=~/stores_(.*)_solved/) { if ($points{$1}) {next;} }
3587: my $store_key=$dest;
3588: $store_key=~s/^stores/resource/;
3589: $store_key=~s/_/\./g;
3590: $grades{$store_key}=$entries{$fields{$dest}};
3591: }
1.41 ng 3592: }
1.244 albertel 3593: if (! %grades) { push(@skipped,"$username:$domain no data to store"); }
1.257 albertel 3594: $grades{"resource.regrader"}="$env{'user.name'}:$env{'user.domain'}";
1.244 albertel 3595: # &Apache::lonnet::logthis(" storing ".(join('-',%grades)));
1.302 albertel 3596: my $result=&Apache::lonnet::cstore(\%grades,$symb,
3597: $env{'request.course.id'},
3598: $domain,$username);
3599: if ($result eq 'ok') {
3600: $request->print('.');
3601: } else {
3602: $request->print("<p>
3603: <font color='red'>
3604: Failed to store student $username\@$domain.
3605: Message when trying to store was ($result)
3606: </font>
3607: </p>" );
3608: }
1.41 ng 3609: $request->rflush();
3610: $countdone++;
3611: }
3612: $request->print("<br />Stored $countdone students\n");
3613: if (@skipped) {
1.325 www 3614: $request->print('<p><font size="+1"><b>Skipped Students</b></font></p>');
1.106 albertel 3615: foreach my $student (@skipped) { $request->print("$student<br />\n"); }
3616: }
3617: if (@notallowed) {
3618: $request->print('<p><font size="+1" color="red"><b>Students Not Allowed to Modify</b></font></p>');
3619: foreach my $student (@notallowed) { $request->print("$student<br />\n"); }
1.41 ng 3620: }
1.106 albertel 3621: $request->print("<br />\n");
1.324 albertel 3622: $request->print(&show_grading_menu_form($symb));
1.345 bowersj2 3623: return $error_msg;
1.26 albertel 3624: }
1.44 ng 3625: #------------- end of section for handling csv file upload ---------
3626: #
3627: #-------------------------------------------------------------------
3628: #
1.122 ng 3629: #-------------- Next few routines handle grading by page/sequence
1.72 ng 3630: #
3631: #--- Select a page/sequence and a student to grade
1.68 ng 3632: sub pickStudentPage {
3633: my ($request) = shift;
3634:
3635: $request->print(<<LISTJAVASCRIPT);
3636: <script type="text/javascript" language="javascript">
3637:
3638: function checkPickOne(formname) {
1.76 ng 3639: if (radioSelection(formname.student) == null) {
1.68 ng 3640: alert("Please select the student you wish to grade.");
3641: return;
3642: }
1.125 ng 3643: ptr = pullDownSelection(formname.selectpage);
3644: formname.page.value = formname["page"+ptr].value;
3645: formname.title.value = formname["title"+ptr].value;
1.68 ng 3646: formname.submit();
3647: }
3648:
3649: </script>
3650: LISTJAVASCRIPT
1.118 ng 3651: &commonJSfunctions($request);
1.324 albertel 3652: my ($symb) = &get_symb($request);
1.257 albertel 3653: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
3654: my $cnum = $env{"course.$env{'request.course.id'}.num"};
3655: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
1.68 ng 3656:
3657: my $result='<h3><font color="#339933"> '.
3658: 'Manual Grading by Page or Sequence</font></h3>';
3659:
1.80 ng 3660: $result.='<form action="/adm/grades" method="post" name="displayPage">'."\n";
1.70 ng 3661: $result.=' <b>Problems from:</b> <select name="selectpage">'."\n";
1.74 albertel 3662: my ($titles,$symbx) = &getSymbMap($request);
1.137 albertel 3663: my ($curpage) =&Apache::lonnet::decode_symb($symb);
3664: # my ($curpage,$mapId) =&Apache::lonnet::decode_symb($symb);
3665: # my $type=($curpage =~ /\.(page|sequence)/);
1.70 ng 3666: my $ctr=0;
1.68 ng 3667: foreach (@$titles) {
3668: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
1.70 ng 3669: $result.='<option value="'.$ctr.'" '.
1.71 ng 3670: ($$symbx{$_} =~ /$curpage$/ ? 'selected="on"' : '').
3671: '>'.$showtitle.'</option>'."\n";
1.70 ng 3672: $ctr++;
1.68 ng 3673: }
1.326 albertel 3674: $result.= '</select>'."<br />\n";
1.70 ng 3675: $ctr=0;
3676: foreach (@$titles) {
3677: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
3678: $result.='<input type="hidden" name="page'.$ctr.'" value="'.$$symbx{$_}.'" />'."\n";
3679: $result.='<input type="hidden" name="title'.$ctr.'" value="'.$showtitle.'" />'."\n";
3680: $ctr++;
3681: }
1.72 ng 3682: $result.='<input type="hidden" name="page" />'."\n".
3683: '<input type="hidden" name="title" />'."\n";
1.68 ng 3684:
1.288 albertel 3685: $result.=' <b>View Problems Text: </b><label><input type="radio" name="vProb" value="no" checked="on" /> no </label>'."\n".
3686: '<label><input type="radio" name="vProb" value="yes" /> yes </label>'."<br />\n";
1.72 ng 3687:
1.71 ng 3688: $result.=' <b>Submission Details: </b>'.
1.288 albertel 3689: '<label><input type="radio" name="lastSub" value="none" /> none</label>'."\n".
3690: '<label><input type="radio" name="lastSub" value="datesub" checked /> by dates and submissions</label>'."\n".
3691: '<label><input type="radio" name="lastSub" value="all" /> all details</label>'."\n";
1.72 ng 3692:
1.68 ng 3693: $result.='<input type="hidden" name="section" value="'.$getsec.'" />'."\n".
1.257 albertel 3694: '<input type="hidden" name="Status" value="'.$env{'form.Status'}.'" />'."\n".
1.72 ng 3695: '<input type="hidden" name="command" value="displayPage" />'."\n".
1.80 ng 3696: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.257 albertel 3697: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."<br />\n";
1.72 ng 3698:
1.80 ng 3699: $result.=' <input type="button" '.
1.126 ng 3700: 'onClick="javascript:checkPickOne(this.form);"value="Next->" /><br />'."\n";
1.72 ng 3701:
1.68 ng 3702: $request->print($result);
3703:
1.326 albertel 3704: my $studentTable.=' <b>Select a student you wish to grade and then click on the Next button.</b><br />'.
1.68 ng 3705: '<table border="0"><tr><td bgcolor="#777777">'.
3706: '<table border="0"><tr bgcolor="#e6ffff">'.
1.126 ng 3707: '<td align="right"> <b>No.</b></td>'.
1.129 ng 3708: '<td>'.&nameUserString('header').'</td>'.
1.126 ng 3709: '<td align="right"> <b>No.</b></td>'.
1.129 ng 3710: '<td>'.&nameUserString('header').'</td></tr>';
1.68 ng 3711:
1.76 ng 3712: my (undef,undef,$fullname) = &getclasslist($getsec,'1');
1.68 ng 3713: my $ptr = 1;
1.294 albertel 3714: foreach my $student (sort
3715: {
3716: if (lc($$fullname{$a}) ne lc($$fullname{$b})) {
3717: return (lc($$fullname{$a}) cmp lc($$fullname{$b}));
3718: }
3719: return $a cmp $b;
3720: } (keys(%$fullname))) {
1.68 ng 3721: my ($uname,$udom) = split(/:/,$student);
1.126 ng 3722: $studentTable.=($ptr%2 == 1 ? '<tr bgcolor="#ffffe6">' : '</td>');
3723: $studentTable.='<td align="right">'.$ptr.' </td>';
1.288 albertel 3724: $studentTable.='<td> <label><input type="radio" name="student" value="'.$student.'" /> '
3725: .&nameUserString(undef,$$fullname{$student},$uname,$udom)."</label>\n";
1.126 ng 3726: $studentTable.=($ptr%2 == 0 ? '</td></tr>' : '');
1.68 ng 3727: $ptr++;
3728: }
1.126 ng 3729: $studentTable.='</td><td> </td><td> ' if ($ptr%2 == 0);
1.68 ng 3730: $studentTable.='</td></tr></table></td></tr></table>'."\n";
1.126 ng 3731: $studentTable.='<input type="button" '.
3732: 'onClick="javascript:checkPickOne(this.form);"value="Next->" /></form>'."\n";
1.68 ng 3733:
1.324 albertel 3734: $studentTable.=&show_grading_menu_form($symb);
1.68 ng 3735: $request->print($studentTable);
3736:
3737: return '';
3738: }
3739:
3740: sub getSymbMap {
1.74 albertel 3741: my ($request) = @_;
1.132 bowersj2 3742: my $navmap = Apache::lonnavmaps::navmap->new();
1.68 ng 3743:
3744: my %symbx = ();
3745: my @titles = ();
1.117 bowersj2 3746: my $minder = 0;
3747:
3748: # Gather every sequence that has problems.
1.240 albertel 3749: my @sequences = $navmap->retrieveResources(undef, sub { shift->is_map(); },
3750: 1,0,1);
1.117 bowersj2 3751: for my $sequence ($navmap->getById('0.0'), @sequences) {
1.241 albertel 3752: if ($navmap->hasResource($sequence, sub { shift->is_problem(); }, 0) ) {
1.117 bowersj2 3753: my $title = $minder.'.'.$sequence->compTitle();
3754: push @titles, $title; # minder in case two titles are identical
3755: $symbx{$title} = $sequence->symb();
3756: $minder++;
1.241 albertel 3757: }
1.68 ng 3758: }
3759: return \@titles,\%symbx;
3760: }
3761:
1.72 ng 3762: #
3763: #--- Displays a page/sequence w/wo problems, w/wo submissions
1.68 ng 3764: sub displayPage {
3765: my ($request) = shift;
3766:
1.324 albertel 3767: my ($symb) = &get_symb($request);
1.257 albertel 3768: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
3769: my $cnum = $env{"course.$env{'request.course.id'}.num"};
3770: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
3771: my $pageTitle = $env{'form.page'};
1.103 albertel 3772: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 3773: my ($uname,$udom) = split(/:/,$env{'form.student'});
3774: my $usec=$classlist->{$env{'form.student'}}[5];
1.168 albertel 3775:
3776: #need to make sure we have the correct data for later EXT calls,
3777: #thus invalidate the cache
3778: &Apache::lonnet::devalidatecourseresdata(
1.257 albertel 3779: $env{'course.'.$env{'request.course.id'}.'.num'},
3780: $env{'course.'.$env{'request.course.id'}.'.domain'});
1.168 albertel 3781: &Apache::lonnet::clear_EXT_cache_status();
3782:
1.103 albertel 3783: if (!&canview($usec)) {
1.257 albertel 3784: $request->print('<font color="red">Unable to view requested student.('.$env{'form.student'}.')</font>');
1.324 albertel 3785: $request->print(&show_grading_menu_form($symb));
1.103 albertel 3786: return;
3787: }
1.257 albertel 3788: my $result='<h3><font color="#339933"> '.$env{'form.title'}.'</font></h3>';
3789: $result.='<h3> Student: '.&nameUserString(undef,$$fullname{$env{'form.student'}},$uname,$udom).
1.129 ng 3790: '</h3>'."\n";
1.71 ng 3791: &sub_page_js($request);
3792: $request->print($result);
3793:
1.132 bowersj2 3794: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 3795: my ($mapUrl, $id, $resUrl)=&Apache::lonnet::decode_symb($env{'form.page'});
1.68 ng 3796: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 3797: if (!$map) {
3798: $request->print('<font color="red">Unable to view requested sequence. ('.$resUrl.')</font>');
1.324 albertel 3799: $request->print(&show_grading_menu_form($symb));
1.288 albertel 3800: return;
3801: }
1.68 ng 3802: my $iterator = $navmap->getIterator($map->map_start(),
3803: $map->map_finish());
3804:
1.71 ng 3805: my $studentTable='<form action="/adm/grades" method="post" name="gradePage">'."\n".
1.72 ng 3806: '<input type="hidden" name="command" value="gradeByPage" />'."\n".
1.257 albertel 3807: '<input type="hidden" name="fullname" value="'.$$fullname{$env{'form.student'}}.'" />'."\n".
3808: '<input type="hidden" name="student" value="'.$env{'form.student'}.'" />'."\n".
1.72 ng 3809: '<input type="hidden" name="page" value="'.$pageTitle.'" />'."\n".
1.257 albertel 3810: '<input type="hidden" name="title" value="'.$env{'form.title'}.'" />'."\n".
1.72 ng 3811: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.125 ng 3812: '<input type="hidden" name="overRideScore" value="no" />'."\n".
1.257 albertel 3813: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n";
1.71 ng 3814:
3815: my $checkIcon = '<img src="'.$request->dir_config('lonIconsURL').
3816: '/check.gif" height="16" border="0" />';
3817:
1.118 ng 3818: $studentTable.=' <b>Note:</b> Problems graded correct by the computer are marked with a '.$checkIcon.
3819: ' symbol.'."\n".
1.71 ng 3820: '<table border="0"><tr><td bgcolor="#777777">'.
3821: '<table border="0"><tr bgcolor="#e6ffff">'.
1.118 ng 3822: '<td align="center"><b> Prob. </b></td>'.
1.257 albertel 3823: '<td><b> '.($env{'form.vProb'} eq 'no' ? 'Title' : 'Problem Text').'/Grade</b></td></tr>';
1.71 ng 3824:
1.329 albertel 3825: &Apache::lonxml::clear_problem_counter();
1.196 albertel 3826: my ($depth,$question,$prob) = (1,1,1);
1.68 ng 3827: $iterator->next(); # skip the first BEGIN_MAP
3828: my $curRes = $iterator->next(); # for "current resource"
1.101 albertel 3829: while ($depth > 0) {
1.68 ng 3830: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 3831: if($curRes == $iterator->END_MAP) { $depth--; }
1.68 ng 3832:
1.235 albertel 3833: if (ref($curRes) && $curRes->is_problem() && !$curRes->randomout) {
1.91 albertel 3834: my $parts = $curRes->parts();
1.68 ng 3835: my $title = $curRes->compTitle();
1.71 ng 3836: my $symbx = $curRes->symb();
1.196 albertel 3837: $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326 albertel 3838: (scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).' parts)').'</td>';
1.71 ng 3839: $studentTable.='<td valign="top">';
1.257 albertel 3840: if ($env{'form.vProb'} eq 'yes' ) {
1.144 albertel 3841: $studentTable.=&show_problem($request,$symbx,$uname,$udom,1,
3842: undef,'both');
1.71 ng 3843: } else {
1.257 albertel 3844: my $companswer = &Apache::loncommon::get_student_answers($symbx,$uname,$udom,$env{'request.course.id'});
1.80 ng 3845: $companswer =~ s|<form(.*?)>||g;
3846: $companswer =~ s|</form>||g;
1.71 ng 3847: # while ($companswer =~ /(<a href\=\"javascript:newWindow.*?Script Vars<\/a>)/s) { #<a href="javascript:newWindow</a>
1.116 ng 3848: # $companswer =~ s/$1/ /ms;
1.326 albertel 3849: # $request->print('match='.$1."<br />\n");
1.71 ng 3850: # }
1.116 ng 3851: # $companswer =~ s|<table border=\"1\">|<table border=\"0\">|g;
1.326 albertel 3852: $studentTable.=' <b>'.$title.'</b> <br /> <b>Correct answer:</b><br />'.$companswer;
1.71 ng 3853: }
3854:
1.257 albertel 3855: my %record = &Apache::lonnet::restore($symbx,$env{'request.course.id'},$udom,$uname);
1.125 ng 3856:
1.257 albertel 3857: if ($env{'form.lastSub'} eq 'datesub') {
1.71 ng 3858: if ($record{'version'} eq '') {
3859: $studentTable.='<br /> <font color="red">No recorded submission for this problem</font><br />';
3860: } else {
1.116 ng 3861: my %responseType = ();
3862: foreach my $partid (@{$parts}) {
1.147 albertel 3863: my @responseIds =$curRes->responseIds($partid);
3864: my @responseType =$curRes->responseType($partid);
3865: my %responseIds;
3866: for (my $i=0;$i<=$#responseIds;$i++) {
3867: $responseIds{$responseIds[$i]}=$responseType[$i];
3868: }
3869: $responseType{$partid} = \%responseIds;
1.116 ng 3870: }
1.148 albertel 3871: $studentTable.= &displaySubByDates($symbx,\%record,$parts,\%responseType,$checkIcon,$uname,$udom);
1.147 albertel 3872:
1.71 ng 3873: }
1.257 albertel 3874: } elsif ($env{'form.lastSub'} eq 'all') {
3875: my $last = ($env{'form.lastSub'} eq 'last' ? 'last' : '');
1.71 ng 3876: $studentTable.=&Apache::loncommon::get_previous_attempt($symbx,$uname,$udom,
1.257 albertel 3877: $env{'request.course.id'},
1.71 ng 3878: '','.submission');
3879:
3880: }
1.103 albertel 3881: if (&canmodify($usec)) {
3882: foreach my $partid (@{$parts}) {
3883: $studentTable.=&gradeBox($request,$symbx,$uname,$udom,$question,$partid,\%record);
3884: $studentTable.='<input type="hidden" name="q_'.$question.'" value="'.$partid.'" />'."\n";
3885: $question++;
3886: }
1.196 albertel 3887: $prob++;
1.71 ng 3888: }
3889: $studentTable.='</td></tr>';
1.68 ng 3890:
1.103 albertel 3891: }
1.68 ng 3892: $curRes = $iterator->next();
3893: }
3894:
1.71 ng 3895: $studentTable.='</td></tr></table></td></tr></table>'."\n".
1.125 ng 3896: '<input type="button" value="Save" '.
1.71 ng 3897: 'onClick="javascript:checkSubmitPage(this.form,'.$question.');" TARGET=_self />'.
3898: '</form>'."\n";
1.324 albertel 3899: $studentTable.=&show_grading_menu_form($symb);
1.71 ng 3900: $request->print($studentTable);
3901:
3902: return '';
1.119 ng 3903: }
3904:
3905: sub displaySubByDates {
1.148 albertel 3906: my ($symb,$record,$parts,$responseType,$checkIcon,$uname,$udom) = @_;
1.224 albertel 3907: my $isCODE=0;
1.335 albertel 3908: my $isTask = ($symb =~/\.task$/);
1.224 albertel 3909: if (exists($record->{'resource.CODE'})) { $isCODE=1; }
1.119 ng 3910: my $studentTable='<table border="0" width="100%"><tr><td bgcolor="#777777">'.
3911: '<table border="0" width="100%"><tr bgcolor="#e6ffff">'.
3912: '<td><b>Date/Time</b></td>'.
1.224 albertel 3913: ($isCODE?'<td><b>CODE</b></td>':'').
1.119 ng 3914: '<td><b>Submission</b></td>'.
3915: '<td><b>Status </b></td></tr>';
3916: my ($version);
3917: my %mark;
1.148 albertel 3918: my %orders;
1.119 ng 3919: $mark{'correct_by_student'} = $checkIcon;
1.147 albertel 3920: if (!exists($$record{'1:timestamp'})) {
3921: return '<br /> <font color="red">Nothing submitted - no attempts</font><br />';
3922: }
1.335 albertel 3923:
3924: my $interaction;
1.119 ng 3925: for ($version=1;$version<=$$record{'version'};$version++) {
3926: my $timestamp = scalar(localtime($$record{$version.':timestamp'}));
1.335 albertel 3927: if (exists($$record{$version.':resource.0.version'})) {
3928: $interaction = $$record{$version.':resource.0.version'};
3929: }
3930:
3931: my $where = ($isTask ? "$version:resource.$interaction"
3932: : "$version:resource");
3933: #&Apache::lonnet::logthis(" got $where");
1.119 ng 3934: $studentTable.='<tr bgcolor="#ffffff" valign="top"><td>'.$timestamp.'</td>';
1.224 albertel 3935: if ($isCODE) {
3936: $studentTable.='<td>'.$record->{$version.':resource.CODE'}.'</td>';
3937: }
1.119 ng 3938: my @versionKeys = split(/\:/,$$record{$version.':keys'});
3939: my @displaySub = ();
3940: foreach my $partid (@{$parts}) {
1.335 albertel 3941: my @matchKey = ($isTask ? sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)
3942: : sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys));
3943:
3944:
1.122 ng 3945: # next if ($$record{"$version:resource.$partid.solved"} eq '');
1.324 albertel 3946: my $display_part=&get_display_part($partid,$symb);
1.147 albertel 3947: foreach my $matchKey (@matchKey) {
1.198 albertel 3948: if (exists($$record{$version.':'.$matchKey}) &&
3949: $$record{$version.':'.$matchKey} ne '') {
1.335 albertel 3950:
3951: my ($responseId)= ($isTask ? ($matchKey=~ /^resource\.(.*?)\.\Q$partid\E\.award$/)
3952: : ($matchKey=~ /^resource\.\Q$partid\E\.(.*?)\.submission$/));
3953: #&Apache::lonnet::logthis("match $matchKey $responseId (".$$record{$version.':'.$matchKey});
1.207 albertel 3954: $displaySub[0].='<b>Part:</b> '.$display_part.' ';
1.147 albertel 3955: $displaySub[0].='<font color="#999999">(ID '.
1.207 albertel 3956: $responseId.')</font> <b>';
1.335 albertel 3957: if ($$record{"$where.$partid.tries"} eq '') {
1.147 albertel 3958: $displaySub[0].='Trial not counted';
3959: } else {
3960: $displaySub[0].='Trial '.
1.335 albertel 3961: $$record{"$where.$partid.tries"};
1.147 albertel 3962: }
1.335 albertel 3963: my $responseType=($isTask ? 'Task'
3964: : $responseType->{$partid}->{$responseId});
1.148 albertel 3965: if (!exists($orders{$partid})) { $orders{$partid}={}; }
3966: if (!exists($orders{$partid}->{$responseId})) {
3967: $orders{$partid}->{$responseId}=
3968: &get_order($partid,$responseId,$symb,$uname,$udom);
3969: }
1.147 albertel 3970: $displaySub[0].='</b> '.
1.336 albertel 3971: &cleanRecord($$record{$version.':'.$matchKey},$responseType,$symb,$partid,$responseId,$record,$orders{$partid}->{$responseId},"$version:",$uname,$udom).'<br />';
1.147 albertel 3972: }
3973: }
1.335 albertel 3974: if (exists($$record{"$where.$partid.checkedin"})) {
3975: $displaySub[1].='Checked in by '.
3976: $$record{"$where.$partid.checkedin"}.' into slot '.
3977: $$record{"$where.$partid.checkedin.slot"}.
3978: '<br />';
3979: }
3980: if (exists $$record{"$where.$partid.award"}) {
1.207 albertel 3981: $displaySub[1].='<b>Part:</b> '.$display_part.' '.
1.335 albertel 3982: lc($$record{"$where.$partid.award"}).' '.
3983: $mark{$$record{"$where.$partid.solved"}}.
1.147 albertel 3984: '<br />';
3985: }
1.335 albertel 3986: if (exists $$record{"$where.$partid.regrader"}) {
3987: $displaySub[2].=$$record{"$where.$partid.regrader"}.
3988: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
3989: } elsif ($$record{"$version:resource.$partid.regrader"} =~ /\S/) {
3990: $displaySub[2].=
3991: $$record{"$version:resource.$partid.regrader"}.
1.207 albertel 3992: ' (<b>'.&mt('Part').':</b> '.$display_part.')';
1.147 albertel 3993: }
3994: }
3995: # needed because old essay regrader has not parts info
3996: if (exists $$record{"$version:resource.regrader"}) {
3997: $displaySub[2].=$$record{"$version:resource.regrader"};
3998: }
3999: $studentTable.='<td>'.$displaySub[0].' </td><td>'.$displaySub[1];
4000: if ($displaySub[2]) {
4001: $studentTable.='Manually graded by '.$displaySub[2];
4002: }
4003: $studentTable.=' </td></tr>';
4004:
1.119 ng 4005: }
4006: $studentTable.='</table></td></tr></table>';
4007: return $studentTable;
1.71 ng 4008: }
4009:
4010: sub updateGradeByPage {
4011: my ($request) = shift;
4012:
1.257 albertel 4013: my $cdom = $env{"course.$env{'request.course.id'}.domain"};
4014: my $cnum = $env{"course.$env{'request.course.id'}.num"};
4015: my $getsec = $env{'form.section'} eq '' ? 'all' : $env{'form.section'};
4016: my $pageTitle = $env{'form.page'};
1.103 albertel 4017: my ($classlist,undef,$fullname) = &getclasslist($getsec,'1');
1.257 albertel 4018: my ($uname,$udom) = split(/:/,$env{'form.student'});
4019: my $usec=$classlist->{$env{'form.student'}}[5];
1.103 albertel 4020: if (!&canmodify($usec)) {
1.257 albertel 4021: $request->print('<font color="red">Unable to modify requested student.('.$env{'form.student'}.'</font>');
1.324 albertel 4022: $request->print(&show_grading_menu_form($env{'form.symb'}));
1.103 albertel 4023: return;
4024: }
1.257 albertel 4025: my $result='<h3><font color="#339933"> '.$env{'form.title'}.'</font></h3>';
4026: $result.='<h3> Student: '.&nameUserString(undef,$env{'form.fullname'},$uname,$udom).
1.129 ng 4027: '</h3>'."\n";
1.70 ng 4028:
1.68 ng 4029: $request->print($result);
4030:
1.132 bowersj2 4031: my $navmap = Apache::lonnavmaps::navmap->new();
1.257 albertel 4032: my ($mapUrl, $id, $resUrl) = &Apache::lonnet::decode_symb( $env{'form.page'});
1.71 ng 4033: my $map = $navmap->getResourceByUrl($resUrl); # add to navmaps
1.288 albertel 4034: if (!$map) {
4035: $request->print('<font color="red">Unable to grade requested sequence. ('.$resUrl.')</font>');
1.324 albertel 4036: my ($symb)=&get_symb($request);
4037: $request->print(&show_grading_menu_form($symb));
1.288 albertel 4038: return;
4039: }
1.71 ng 4040: my $iterator = $navmap->getIterator($map->map_start(),
4041: $map->map_finish());
1.70 ng 4042:
1.71 ng 4043: my $studentTable='<table border="0"><tr><td bgcolor="#777777">'.
1.68 ng 4044: '<table border="0"><tr bgcolor="#e6ffff">'.
1.125 ng 4045: '<td align="center"><b> Prob. </b></td>'.
1.71 ng 4046: '<td><b> Title </b></td>'.
4047: '<td><b> Previous Score </b></td>'.
4048: '<td><b> New Score </b></td></tr>';
4049:
4050: $iterator->next(); # skip the first BEGIN_MAP
4051: my $curRes = $iterator->next(); # for "current resource"
1.196 albertel 4052: my ($depth,$question,$prob,$changeflag)= (1,1,1,0);
1.101 albertel 4053: while ($depth > 0) {
1.71 ng 4054: if($curRes == $iterator->BEGIN_MAP) { $depth++; }
1.100 bowersj2 4055: if($curRes == $iterator->END_MAP) { $depth--; }
1.71 ng 4056:
4057: if (ref($curRes) && $curRes->is_problem() && !$curRes->randomout) {
1.91 albertel 4058: my $parts = $curRes->parts();
1.71 ng 4059: my $title = $curRes->compTitle();
4060: my $symbx = $curRes->symb();
1.196 albertel 4061: $studentTable.='<tr bgcolor="#ffffe6"><td align="center" valign="top" >'.$prob.
1.326 albertel 4062: (scalar(@{$parts}) == 1 ? '' : '<br />('.scalar(@{$parts}).' parts)').'</td>';
1.71 ng 4063: $studentTable.='<td valign="top"> <b>'.$title.'</b> </td>';
4064:
4065: my %newrecord=();
4066: my @displayPts=();
1.269 raeburn 4067: my %aggregate = ();
4068: my $aggregateflag = 0;
1.71 ng 4069: foreach my $partid (@{$parts}) {
1.257 albertel 4070: my $newpts = $env{'form.GD_BOX'.$question.'_'.$partid};
4071: my $oldpts = $env{'form.oldpts'.$question.'_'.$partid};
1.71 ng 4072:
1.257 albertel 4073: my $wgt = $env{'form.WGT'.$question.'_'.$partid} != 0 ?
4074: $env{'form.WGT'.$question.'_'.$partid} : 1;
1.71 ng 4075: my $partial = $newpts/$wgt;
4076: my $score;
4077: if ($partial > 0) {
4078: $score = 'correct_by_override';
1.125 ng 4079: } elsif ($newpts ne '') { #empty is taken as 0
1.71 ng 4080: $score = 'incorrect_by_override';
4081: }
1.257 albertel 4082: my $dropMenu = $env{'form.GD_SEL'.$question.'_'.$partid};
1.125 ng 4083: if ($dropMenu eq 'excused') {
1.71 ng 4084: $partial = '';
4085: $score = 'excused';
1.125 ng 4086: } elsif ($dropMenu eq 'reset status'
1.257 albertel 4087: && $env{'form.solved'.$question.'_'.$partid} ne '') { #update only if previous record exists
1.125 ng 4088: $newrecord{'resource.'.$partid.'.tries'} = 0;
4089: $newrecord{'resource.'.$partid.'.solved'} = '';
4090: $newrecord{'resource.'.$partid.'.award'} = '';
4091: $newrecord{'resource.'.$partid.'.awarded'} = 0;
1.257 albertel 4092: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}";
1.125 ng 4093: $changeflag++;
4094: $newpts = '';
1.269 raeburn 4095:
4096: my $aggtries = $env{'form.aggtries'.$question.'_'.$partid};
4097: my $totaltries = $env{'form.totaltries'.$question.'_'.$partid};
4098: my $solvedstatus = $env{'form.solved'.$question.'_'.$partid};
4099: if ($aggtries > 0) {
4100: &decrement_aggs($symbx,$partid,\%aggregate,$aggtries,$totaltries,$solvedstatus);
4101: $aggregateflag = 1;
4102: }
1.71 ng 4103: }
1.324 albertel 4104: my $display_part=&get_display_part($partid,$curRes->symb());
1.257 albertel 4105: my $oldstatus = $env{'form.solved'.$question.'_'.$partid};
1.207 albertel 4106: $displayPts[0].=' <b>Part:</b> '.$display_part.' = '.
1.71 ng 4107: (($oldstatus eq 'excused') ? 'excused' : $oldpts).
1.326 albertel 4108: ' <br />';
1.207 albertel 4109: $displayPts[1].=' <b>Part:</b> '.$display_part.' = '.
1.125 ng 4110: (($score eq 'excused') ? 'excused' : $newpts).
1.326 albertel 4111: ' <br />';
1.71 ng 4112:
4113: $question++;
1.125 ng 4114: next if ($dropMenu eq 'reset status' || ($newpts == $oldpts && $score ne 'excused'));
4115:
1.71 ng 4116: $newrecord{'resource.'.$partid.'.awarded'} = $partial if $partial ne '';
1.125 ng 4117: $newrecord{'resource.'.$partid.'.solved'} = $score if $score ne '';
1.257 albertel 4118: $newrecord{'resource.'.$partid.'.regrader'} = "$env{'user.name'}:$env{'user.domain'}"
1.125 ng 4119: if (scalar(keys(%newrecord)) > 0);
1.71 ng 4120:
4121: $changeflag++;
4122: }
4123: if (scalar(keys(%newrecord)) > 0) {
1.257 albertel 4124: &Apache::lonnet::cstore(\%newrecord,$symbx,$env{'request.course.id'},
1.71 ng 4125: $udom,$uname);
4126: }
1.269 raeburn 4127: if ($aggregateflag) {
4128: &Apache::lonnet::cinc('nohist_resourcetracker',\%aggregate,
4129: $env{'course.'.$env{'request.course.id'}.'.domain'},
4130: $env{'course.'.$env{'request.course.id'}.'.num'});
4131: }
1.125 ng 4132:
1.71 ng 4133: $studentTable.='<td valign="top">'.$displayPts[0].'</td>'.
4134: '<td valign="top">'.$displayPts[1].'</td>'.
4135: '</tr>';
1.68 ng 4136:
1.196 albertel 4137: $prob++;
1.68 ng 4138: }
1.71 ng 4139: $curRes = $iterator->next();
1.68 ng 4140: }
1.98 albertel 4141:
1.71 ng 4142: $studentTable.='</td></tr></table></td></tr></table>';
1.324 albertel 4143: $studentTable.=&show_grading_menu_form($env{'form.symb'});
1.76 ng 4144: my $grademsg=($changeflag == 0 ? 'No score was changed or updated.' :
4145: 'The scores were changed for '.
4146: $changeflag.' problem'.($changeflag == 1 ? '.' : 's.'));
4147: $request->print($grademsg.$studentTable);
1.68 ng 4148:
1.70 ng 4149: return '';
4150: }
4151:
1.72 ng 4152: #-------- end of section for handling grading by page/sequence ---------
4153: #
4154: #-------------------------------------------------------------------
4155:
1.75 albertel 4156: #--------------------Scantron Grading-----------------------------------
4157: #
4158: #------ start of section for handling grading by page/sequence ---------
4159:
1.81 albertel 4160: sub defaultFormData {
1.324 albertel 4161: my ($symb)=@_;
1.81 albertel 4162: return '
4163: <input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.257 albertel 4164: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
4165: '<input type="hidden" name="probTitle" value="'.$env{'form.probTitle'}.'" />'."\n";
1.81 albertel 4166: }
4167:
1.75 albertel 4168: sub getSequenceDropDown {
4169: my ($request,$symb)=@_;
4170: my $result='<select name="selectpage">'."\n";
4171: my ($titles,$symbx) = &getSymbMap($request);
1.137 albertel 4172: my ($curpage)=&Apache::lonnet::decode_symb($symb);
1.75 albertel 4173: my $ctr=0;
4174: foreach (@$titles) {
4175: my ($minder,$showtitle) = ($_ =~ /(\d+)\.(.*)/);
4176: $result.='<option value="'.$$symbx{$_}.'" '.
4177: ($$symbx{$_} =~ /$curpage$/ ? 'selected="on"' : '').
4178: '>'.$showtitle.'</option>'."\n";
4179: $ctr++;
4180: }
4181: $result.= '</select>';
4182: return $result;
4183: }
4184:
1.202 albertel 4185: sub scantron_filenames {
1.257 albertel 4186: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
4187: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
1.157 albertel 4188: my @files=&Apache::lonnet::dirlist('userfiles',$cdom,$cname,
1.162 albertel 4189: &Apache::loncommon::propath($cdom,$cname));
1.202 albertel 4190: my @possiblenames;
1.201 albertel 4191: foreach my $filename (sort(@files)) {
1.157 albertel 4192: ($filename)=split(/&/,$filename);
4193: if ($filename!~/^scantron_orig_/) { next ; }
4194: $filename=~s/^scantron_orig_//;
1.202 albertel 4195: push(@possiblenames,$filename);
4196: }
4197: return @possiblenames;
4198: }
4199:
4200: sub scantron_uploads {
1.209 ng 4201: my ($file2grade) = @_;
1.202 albertel 4202: my $result= '<select name="scantron_selectfile">';
4203: $result.="<option></option>";
4204: foreach my $filename (sort(&scantron_filenames())) {
1.209 ng 4205: $result.="<option".($filename eq $file2grade ? ' selected="on"':'').">$filename</option>\n";
1.81 albertel 4206: }
4207: $result.="</select>";
4208: return $result;
4209: }
4210:
1.82 albertel 4211: sub scantron_scantab {
4212: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
4213: my $result='<select name="scantron_format">'."\n";
1.191 albertel 4214: $result.='<option></option>'."\n";
1.82 albertel 4215: foreach my $line (<$fh>) {
4216: my ($name,$descrip)=split(/:/,$line);
4217: if ($name =~ /^\#/) { next; }
4218: $result.='<option value="'.$name.'">'.$descrip.'</option>'."\n";
4219: }
4220: $result.='</select>'."\n";
4221:
4222: return $result;
4223: }
4224:
1.186 albertel 4225: sub scantron_CODElist {
1.257 albertel 4226: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
4227: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.186 albertel 4228: my @names=&Apache::lonnet::getkeys('CODEs',$cdom,$cnum);
4229: my $namechoice='<option></option>';
1.225 albertel 4230: foreach my $name (sort {uc($a) cmp uc($b)} @names) {
1.191 albertel 4231: if ($name =~ /^error: 2 /) { next; }
1.278 albertel 4232: if ($name =~ /^type\0/) { next; }
1.186 albertel 4233: $namechoice.='<option value="'.$name.'">'.$name.'</option>';
4234: }
4235: $namechoice='<select name="scantron_CODElist">'.$namechoice.'</select>';
4236: return $namechoice;
4237: }
4238:
4239: sub scantron_CODEunique {
4240: my $result='<nobr>
1.272 albertel 4241: <label><input type="radio" name="scantron_CODEunique"
1.308 albertel 4242: value="yes" checked="checked" /> Yes </label>
1.186 albertel 4243: </nobr>
4244: <nobr>
1.272 albertel 4245: <label><input type="radio" name="scantron_CODEunique"
1.308 albertel 4246: value="no" /> No </label>
1.186 albertel 4247: </nobr>';
4248: return $result;
4249: }
4250:
1.75 albertel 4251: sub scantron_selectphase {
1.209 ng 4252: my ($r,$file2grade) = @_;
1.324 albertel 4253: my ($symb)=&get_symb($r);
1.75 albertel 4254: if (!$symb) {return '';}
4255: my $sequence_selector=&getSequenceDropDown($r,$symb);
1.324 albertel 4256: my $default_form_data=&defaultFormData($symb);
4257: my $grading_menu_button=&show_grading_menu_form($symb);
1.209 ng 4258: my $file_selector=&scantron_uploads($file2grade);
1.82 albertel 4259: my $format_selector=&scantron_scantab();
1.186 albertel 4260: my $CODE_selector=&scantron_CODElist();
4261: my $CODE_unique=&scantron_CODEunique();
1.75 albertel 4262: my $result;
1.157 albertel 4263: #FIXME allow instructor to be able to download the scantron file
4264: # and to upload it,
1.75 albertel 4265: $result.= <<SCANTRONFORM;
1.162 albertel 4266: <table width="100%" border="0">
1.75 albertel 4267: <tr>
1.226 albertel 4268: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantron_process">
1.75 albertel 4269: <td bgcolor="#777777">
1.203 albertel 4270: <input type="hidden" name="command" value="scantron_warning" />
1.162 albertel 4271: $default_form_data
1.75 albertel 4272: <table width="100%" border="0">
4273: <tr bgcolor="#e6ffff">
1.174 albertel 4274: <td colspan="2">
4275: <b>Specify file and which Folder/Sequence to grade</b>
1.75 albertel 4276: </td>
4277: </tr>
4278: <tr bgcolor="#ffffe6">
1.174 albertel 4279: <td> Sequence to grade: </td><td> $sequence_selector </td>
1.75 albertel 4280: </tr>
4281: <tr bgcolor="#ffffe6">
1.174 albertel 4282: <td> Filename of scoring office file: </td><td> $file_selector </td>
1.75 albertel 4283: </tr>
1.82 albertel 4284: <tr bgcolor="#ffffe6">
1.174 albertel 4285: <td> Format of data file: </td><td> $format_selector </td>
1.82 albertel 4286: </tr>
1.157 albertel 4287: <tr bgcolor="#ffffe6">
1.186 albertel 4288: <td> Saved CODEs to validate against: </td><td> $CODE_selector</td>
4289: </tr>
4290: <tr bgcolor="#ffffe6">
4291: <td> Each CODE is only to be used once:</td><td> $CODE_unique </td>
4292: </tr>
4293: <tr bgcolor="#ffffe6">
1.187 albertel 4294: <td> Options: </td>
4295: <td>
1.272 albertel 4296: <label><input type="checkbox" name="scantron_options_redo" value="redo_skipped"/> Do only previously skipped records</label> <br />
1.331 albertel 4297: <label><input type="checkbox" name="scantron_options_ignore" value="ignore_corrections"/> Remove all exisiting corrections</label> <br />
4298: <label><input type="checkbox" name="scantron_options_hidden" value="ignore_hidden"/> Skip hidden resources when grading</label>
1.187 albertel 4299: </td>
4300: </tr>
4301: <tr bgcolor="#ffffe6">
1.174 albertel 4302: <td colspan="2">
1.265 www 4303: <input type="submit" value="Grading: Validate Scantron Records" />
1.162 albertel 4304: </td>
4305: </tr>
4306: </table>
1.226 albertel 4307: </td>
4308: </form>
1.162 albertel 4309: </tr>
4310: SCANTRONFORM
4311:
4312: $r->print($result);
4313:
1.257 albertel 4314: if (&Apache::lonnet::allowed('usc',$env{'request.role.domain'}) ||
4315: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 4316:
4317: $r->print(<<SCANTRONFORM);
4318: <tr>
4319: <td bgcolor="#777777">
4320: <table width="100%" border="0">
4321: <tr bgcolor="#e6ffff">
4322: <td>
1.174 albertel 4323: <b>Specify a Scantron data file to upload.</b>
1.162 albertel 4324: </td>
4325: </tr>
4326: <tr bgcolor="#ffffe6">
4327: <td>
4328: SCANTRONFORM
1.324 albertel 4329: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 4330: my $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
4331: my $cnum= $env{'course.'.$env{'request.course.id'}.'.num'};
1.174 albertel 4332: $r->print(<<UPLOAD);
4333: <script type="text/javascript" language="javascript">
4334: function checkUpload(formname) {
4335: if (formname.upfile.value == "") {
4336: alert("Please use the browse button to select a file from your local directory.");
4337: return false;
4338: }
4339: formname.submit();
4340: }
4341: </script>
4342:
4343: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
4344: $default_form_data
4345: <input name='courseid' type='hidden' value='$cnum' />
4346: <input name='domainid' type='hidden' value='$cdom' />
4347: <input name='command' value='scantronupload_save' type='hidden' />
4348: File to upload:<input type="file" name="upfile" size="50" />
4349: <br />
4350: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
4351: </form>
4352: UPLOAD
1.162 albertel 4353:
4354: $r->print(<<SCANTRONFORM);
4355: </td>
4356: </tr>
1.75 albertel 4357: </table>
4358: </td>
4359: </tr>
1.162 albertel 4360: SCANTRONFORM
4361: }
1.187 albertel 4362: $r->print(<<SCANTRONFORM);
4363: <tr>
1.226 albertel 4364: <form action='/adm/grades' name='scantron_download'>
4365: <td bgcolor="#777777">
1.187 albertel 4366: <input type="hidden" name="command" value="scantron_download" />
4367: <table width="100%" border="0">
4368: <tr bgcolor="#e6ffff">
4369: <td colspan="2">
4370: <b>Download a scoring office file</b>
4371: </td>
4372: </tr>
4373: <tr bgcolor="#ffffe6">
4374: <td> Filename of scoring office file: </td><td> $file_selector </td>
4375: </tr>
4376: <tr bgcolor="#ffffe6">
4377: <td colspan="2">
1.293 www 4378: <input type="submit" value="Download: Show List of Associated Files" />
1.187 albertel 4379: </td>
4380: </tr>
4381: </table>
1.226 albertel 4382: </td>
4383: </form>
1.187 albertel 4384: </tr>
4385: SCANTRONFORM
1.162 albertel 4386:
4387: $r->print(<<SCANTRONFORM);
1.75 albertel 4388: </table>
1.81 albertel 4389: $grading_menu_button
1.75 albertel 4390: SCANTRONFORM
4391:
1.162 albertel 4392: return
1.75 albertel 4393: }
4394:
1.82 albertel 4395: sub get_scantron_config {
4396: my ($which) = @_;
4397: my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab');
4398: my %config;
1.157 albertel 4399: #FIXME probably should move to XML it has already gotten a bit much now
1.82 albertel 4400: foreach my $line (<$fh>) {
4401: my ($name,$descrip)=split(/:/,$line);
4402: if ($name ne $which ) { next; }
4403: chomp($line);
4404: my @config=split(/:/,$line);
4405: $config{'name'}=$config[0];
4406: $config{'description'}=$config[1];
4407: $config{'CODElocation'}=$config[2];
4408: $config{'CODEstart'}=$config[3];
4409: $config{'CODElength'}=$config[4];
4410: $config{'IDstart'}=$config[5];
4411: $config{'IDlength'}=$config[6];
4412: $config{'Qstart'}=$config[7];
4413: $config{'Qlength'}=$config[8];
4414: $config{'Qoff'}=$config[9];
4415: $config{'Qon'}=$config[10];
1.157 albertel 4416: $config{'PaperID'}=$config[11];
4417: $config{'PaperIDlength'}=$config[12];
4418: $config{'FirstName'}=$config[13];
4419: $config{'FirstNamelength'}=$config[14];
4420: $config{'LastName'}=$config[15];
4421: $config{'LastNamelength'}=$config[16];
1.82 albertel 4422: last;
4423: }
4424: return %config;
4425: }
4426:
4427: sub username_to_idmap {
4428: my ($classlist)= @_;
4429: my %idmap;
4430: foreach my $student (keys(%$classlist)) {
4431: $idmap{$classlist->{$student}->[&Apache::loncoursedata::CL_ID]}=
4432: $student;
4433: }
4434: return %idmap;
4435: }
4436:
1.157 albertel 4437: sub scantron_fixup_scanline {
4438: my ($scantron_config,$scan_data,$line,$whichline,$field,$args)=@_;
4439: if ($field eq 'ID') {
4440: if (length($args->{'newid'}) > $$scantron_config{'IDlength'}) {
1.186 albertel 4441: return ($line,1,'New value too large');
1.157 albertel 4442: }
4443: if (length($args->{'newid'}) < $$scantron_config{'IDlength'}) {
4444: $args->{'newid'}=sprintf('%-'.$$scantron_config{'IDlength'}.'s',
4445: $args->{'newid'});
4446: }
4447: substr($line,$$scantron_config{'IDstart'}-1,
4448: $$scantron_config{'IDlength'})=$args->{'newid'};
4449: if ($args->{'newid'}=~/^\s*$/) {
4450: &scan_data($scan_data,"$whichline.user",
4451: $args->{'username'}.':'.$args->{'domain'});
4452: }
1.186 albertel 4453: } elsif ($field eq 'CODE') {
1.192 albertel 4454: if ($args->{'CODE_ignore_dup'}) {
4455: &scan_data($scan_data,"$whichline.CODE_ignore_dup",'1');
4456: }
4457: &scan_data($scan_data,"$whichline.useCODE",'1');
4458: if ($args->{'CODE'} ne 'use_unfound') {
1.191 albertel 4459: if (length($args->{'CODE'}) > $$scantron_config{'CODElength'}) {
4460: return ($line,1,'New CODE value too large');
4461: }
4462: if (length($args->{'CODE'}) < $$scantron_config{'CODElength'}) {
4463: $args->{'CODE'}=sprintf('%-'.$$scantron_config{'CODElength'}.'s',$args->{'CODE'});
4464: }
4465: substr($line,$$scantron_config{'CODEstart'}-1,
4466: $$scantron_config{'CODElength'})=$args->{'CODE'};
1.186 albertel 4467: }
1.157 albertel 4468: } elsif ($field eq 'answer') {
4469: my $length=$scantron_config->{'Qlength'};
4470: my $off=$scantron_config->{'Qoff'};
4471: my $on=$scantron_config->{'Qon'};
4472: my $answer=${off}x$length;
4473: if ($args->{'response'} eq 'none') {
4474: &scan_data($scan_data,
4475: "$whichline.no_bubble.".$args->{'question'},'1');
4476: } else {
1.274 albertel 4477: if ($on eq 'letter') {
4478: my @alphabet=('A'..'Z');
4479: $answer=$alphabet[$args->{'response'}];
4480: } elsif ($on eq 'number') {
4481: $answer=$args->{'response'}+1;
4482: } else {
4483: substr($answer,$args->{'response'},1)=$on;
4484: }
1.157 albertel 4485: &scan_data($scan_data,
4486: "$whichline.no_bubble.".$args->{'question'},undef,'1');
4487: }
4488: my $where=$length*($args->{'question'}-1)+$scantron_config->{'Qstart'};
4489: substr($line,$where-1,$length)=$answer;
4490: }
4491: return $line;
4492: }
4493:
4494: sub scan_data {
4495: my ($scan_data,$key,$value,$delete)=@_;
1.257 albertel 4496: my $filename=$env{'form.scantron_selectfile'};
1.157 albertel 4497: if (defined($value)) {
4498: $scan_data->{$filename.'_'.$key} = $value;
4499: }
4500: if ($delete) { delete($scan_data->{$filename.'_'.$key}); }
4501: return $scan_data->{$filename.'_'.$key};
4502: }
4503:
1.82 albertel 4504: sub scantron_parse_scanline {
1.194 albertel 4505: my ($line,$whichline,$scantron_config,$scan_data,$justHeader)=@_;
1.82 albertel 4506: my %record;
4507: my $questions=substr($line,$$scantron_config{'Qstart'}-1);
4508: my $data=substr($line,0,$$scantron_config{'Qstart'}-1);
1.278 albertel 4509: if (!($$scantron_config{'CODElocation'} eq 0 ||
4510: $$scantron_config{'CODElocation'} eq 'none')) {
4511: if ($$scantron_config{'CODElocation'} < 0 ||
4512: $$scantron_config{'CODElocation'} eq 'letter' ||
4513: $$scantron_config{'CODElocation'} eq 'number') {
1.191 albertel 4514: $record{'scantron.CODE'}=substr($data,
4515: $$scantron_config{'CODEstart'}-1,
1.83 albertel 4516: $$scantron_config{'CODElength'});
1.191 albertel 4517: if (&scan_data($scan_data,"$whichline.useCODE")) {
4518: $record{'scantron.useCODE'}=1;
4519: }
1.192 albertel 4520: if (&scan_data($scan_data,"$whichline.CODE_ignore_dup")) {
4521: $record{'scantron.CODE_ignore_dup'}=1;
4522: }
1.82 albertel 4523: } else {
4524: #FIXME interpret first N questions
4525: }
4526: }
1.83 albertel 4527: $record{'scantron.ID'}=substr($data,$$scantron_config{'IDstart'}-1,
4528: $$scantron_config{'IDlength'});
1.157 albertel 4529: $record{'scantron.PaperID'}=
4530: substr($data,$$scantron_config{'PaperID'}-1,
4531: $$scantron_config{'PaperIDlength'});
4532: $record{'scantron.FirstName'}=
4533: substr($data,$$scantron_config{'FirstName'}-1,
4534: $$scantron_config{'FirstNamelength'});
4535: $record{'scantron.LastName'}=
4536: substr($data,$$scantron_config{'LastName'}-1,
4537: $$scantron_config{'LastNamelength'});
1.194 albertel 4538: if ($justHeader) { return \%record; }
4539:
1.82 albertel 4540: my @alphabet=('A'..'Z');
4541: my $questnum=0;
4542: while ($questions) {
4543: $questnum++;
4544: my $currentquest=substr($questions,0,$$scantron_config{'Qlength'});
4545: substr($questions,0,$$scantron_config{'Qlength'})='';
1.83 albertel 4546: if (length($currentquest) < $$scantron_config{'Qlength'}) { next; }
1.239 albertel 4547: if ($$scantron_config{'Qon'} eq 'letter') {
1.274 albertel 4548: if ($currentquest eq '?') {
4549: push(@{$record{'scantron.doubleerror'}},$questnum);
4550: $record{"scantron.$questnum.answer"}='';
4551: } elsif (!$currentquest
4552: || $currentquest eq $$scantron_config{'Qoff'}
4553: || $currentquest !~ /^[A-Z]$/) {
1.239 albertel 4554: $record{"scantron.$questnum.answer"}='';
4555: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
4556: push(@{$record{"scantron.missingerror"}},$questnum);
4557: }
4558: } else {
4559: $record{"scantron.$questnum.answer"}=$currentquest;
4560: }
4561: } elsif ($$scantron_config{'Qon'} eq 'number') {
1.274 albertel 4562: if ($currentquest eq '?') {
4563: push(@{$record{'scantron.doubleerror'}},$questnum);
4564: $record{"scantron.$questnum.answer"}='';
4565: } elsif (!$currentquest
4566: || $currentquest eq $$scantron_config{'Qoff'}
4567: || $currentquest !~ /^\d$/) {
1.239 albertel 4568: $record{"scantron.$questnum.answer"}='';
4569: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
4570: push(@{$record{"scantron.missingerror"}},$questnum);
4571: }
4572: } else {
4573: $record{"scantron.$questnum.answer"}=
4574: $alphabet[$currentquest-1];
4575: }
1.82 albertel 4576: } else {
1.239 albertel 4577: my @array=split($$scantron_config{'Qon'},$currentquest,-1);
4578: if (length($array[0]) eq $$scantron_config{'Qlength'}) {
4579: $record{"scantron.$questnum.answer"}='';
4580: if (!&scan_data($scan_data,"$whichline.no_bubble.$questnum")) {
4581: push(@{$record{"scantron.missingerror"}},$questnum);
4582: }
4583: } else {
4584: $record{"scantron.$questnum.answer"}=
4585: $alphabet[length($array[0])];
4586: }
4587: if (scalar(@array) gt 2) {
4588: push(@{$record{'scantron.doubleerror'}},$questnum);
4589: my @ans=@array;
4590: my $i=length($ans[0]);shift(@ans);
4591: while ($#ans) {
4592: $i+=length($ans[0])+1;
4593: $record{"scantron.$questnum.answer"}.=$alphabet[$i];
4594: shift(@ans);
4595: }
4596: }
1.82 albertel 4597: }
4598: }
1.83 albertel 4599: $record{'scantron.maxquest'}=$questnum;
4600: return \%record;
1.82 albertel 4601: }
4602:
4603: sub scantron_add_delay {
1.140 albertel 4604: my ($delayqueue,$scanline,$errormessage,$errorcode)=@_;
4605: push(@$delayqueue,
4606: {'line' => $scanline, 'emsg' => $errormessage,
4607: 'ecode' => $errorcode }
4608: );
1.82 albertel 4609: }
4610:
4611: sub scantron_find_student {
1.157 albertel 4612: my ($scantron_record,$scan_data,$idmap,$line)=@_;
1.83 albertel 4613: my $scanID=$$scantron_record{'scantron.ID'};
1.157 albertel 4614: if ($scanID =~ /^\s*$/) {
4615: return &scan_data($scan_data,"$line.user");
4616: }
1.83 albertel 4617: foreach my $id (keys(%$idmap)) {
1.157 albertel 4618: if (lc($id) eq lc($scanID)) {
4619: return $$idmap{$id};
4620: }
1.83 albertel 4621: }
4622: return undef;
4623: }
4624:
4625: sub scantron_filter {
4626: my ($curres)=@_;
1.331 albertel 4627:
4628: if (ref($curres) && $curres->is_problem()) {
4629: # if the user has asked to not have either hidden
4630: # or 'randomout' controlled resources to be graded
4631: # don't include them
4632: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
4633: && $curres->randomout) {
4634: return 0;
4635: }
1.83 albertel 4636: return 1;
4637: }
4638: return 0;
1.82 albertel 4639: }
4640:
1.157 albertel 4641: sub scantron_process_corrections {
4642: my ($r) = @_;
1.257 albertel 4643: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 4644: my ($scanlines,$scan_data)=&scantron_getfile();
4645: my $classlist=&Apache::loncoursedata::get_classlist();
1.257 albertel 4646: my $which=$env{'form.scantron_line'};
1.200 albertel 4647: my $line=&scantron_get_line($scanlines,$scan_data,$which);
1.157 albertel 4648: my ($skip,$err,$errmsg);
1.257 albertel 4649: if ($env{'form.scantron_skip_record'}) {
1.157 albertel 4650: $skip=1;
1.257 albertel 4651: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)ID$/) {
4652: my $newstudent=$env{'form.scantron_username'}.':'.
4653: $env{'form.scantron_domain'};
1.157 albertel 4654: my $newid=$classlist->{$newstudent}->[&Apache::loncoursedata::CL_ID];
4655: ($line,$err,$errmsg)=
4656: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
4657: 'ID',{'newid'=>$newid,
1.257 albertel 4658: 'username'=>$env{'form.scantron_username'},
4659: 'domain'=>$env{'form.scantron_domain'}});
4660: } elsif ($env{'form.scantron_corrections'} =~ /^(duplicate|incorrect)CODE$/) {
4661: my $resolution=$env{'form.scantron_CODE_resolution'};
1.190 albertel 4662: my $newCODE;
1.192 albertel 4663: my %args;
1.190 albertel 4664: if ($resolution eq 'use_unfound') {
1.191 albertel 4665: $newCODE='use_unfound';
1.190 albertel 4666: } elsif ($resolution eq 'use_found') {
1.257 albertel 4667: $newCODE=$env{'form.scantron_CODE_selectedvalue'};
1.190 albertel 4668: } elsif ($resolution eq 'use_typed') {
1.257 albertel 4669: $newCODE=$env{'form.scantron_CODE_newvalue'};
1.194 albertel 4670: } elsif ($resolution =~ /^use_closest_(\d+)/) {
1.257 albertel 4671: $newCODE=$env{"form.scantron_CODE_closest_$1"};
1.190 albertel 4672: }
1.257 albertel 4673: if ($env{'form.scantron_corrections'} eq 'duplicateCODE') {
1.192 albertel 4674: $args{'CODE_ignore_dup'}=1;
4675: }
4676: $args{'CODE'}=$newCODE;
1.186 albertel 4677: ($line,$err,$errmsg)=
4678: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,$which,
1.192 albertel 4679: 'CODE',\%args);
1.257 albertel 4680: } elsif ($env{'form.scantron_corrections'} =~ /^(missing|double)bubble$/) {
4681: foreach my $question (split(',',$env{'form.scantron_questions'})) {
1.157 albertel 4682: ($line,$err,$errmsg)=
4683: &scantron_fixup_scanline(\%scantron_config,$scan_data,$line,
4684: $which,'answer',
4685: { 'question'=>$question,
1.257 albertel 4686: 'response'=>$env{"form.scantron_correct_Q_$question"}});
1.157 albertel 4687: if ($err) { last; }
4688: }
4689: }
4690: if ($err) {
1.287 albertel 4691: $r->print("<font color='red'>Unable to accept last correction, an error occurred :$errmsg:</font>");
1.157 albertel 4692: } else {
1.200 albertel 4693: &scantron_put_line($scanlines,$scan_data,$which,$line,$skip);
1.157 albertel 4694: &scantron_putfile($scanlines,$scan_data);
4695: }
4696: }
4697:
1.200 albertel 4698: sub reset_skipping_status {
4699: my ($scanlines,$scan_data)=&scantron_getfile();
4700: &scan_data($scan_data,'remember_skipping',undef,1);
4701: &scantron_putfile(undef,$scan_data);
4702: }
4703:
4704: sub allow_skipping {
4705: my ($scan_data,$i)=@_;
4706: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
4707: delete($remembered{$i});
4708: &scan_data($scan_data,'remember_skipping',join(':',%remembered));
4709: }
4710:
4711: sub should_be_skipped {
4712: my ($scan_data,$i)=@_;
1.257 albertel 4713: if ($env{'form.scantron_options_redo'} !~ /^redo_/) {
1.200 albertel 4714: # not redoing old skips
4715: return 0;
4716: }
4717: my %remembered=split(':',&scan_data($scan_data,'remember_skipping'));
4718: if (exists($remembered{$i})) { return 0; }
4719: return 1;
4720: }
4721:
4722: sub remember_current_skipped {
4723: my ($scanlines,$scan_data)=&scantron_getfile();
4724: my %to_remember;
4725: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
4726: if ($scanlines->{'skipped'}[$i]) {
4727: $to_remember{$i}=1;
4728: }
4729: }
4730: &scan_data($scan_data,'remember_skipping',join(':',%to_remember));
4731: &scantron_putfile(undef,$scan_data);
4732: }
4733:
4734: sub check_for_error {
4735: my ($r,$result)=@_;
4736: if ($result ne 'ok' && $result ne 'not_found' ) {
4737: $r->print("An error occured ($result) when trying to Remove the existing corrections.");
4738: }
4739: }
1.157 albertel 4740:
1.203 albertel 4741: sub scantron_warning_screen {
4742: my ($button_text)=@_;
1.257 albertel 4743: my $title=&Apache::lonnet::gettitle($env{'form.selectpage'});
1.284 albertel 4744: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
4745: my $CODElist="a";
4746: if ($scantron_config{'CODElocation'} &&
4747: $scantron_config{'CODEstart'} &&
4748: $scantron_config{'CODElength'}) {
4749: $CODElist=$env{'form.scantron_CODElist'};
4750: if ($CODElist eq '') { $CODElist='<font color="red">None</font>'; }
4751: $CODElist=
4752: '<tr><td><b>List of CODES to validate against:</b></td><td><tt>'.
4753: $CODElist.'</tt></td></tr>';
4754: }
1.203 albertel 4755: return (<<STUFF);
4756: <p>
4757: <font color="red">Please double check the information
4758: below before clicking on '$button_text'</font>
4759: </p>
4760: <table>
1.284 albertel 4761: <tr><td><b>Sequence to be Graded:</b></td><td>$title</td></tr>
1.257 albertel 4762: <tr><td><b>Data File that will be used:</b></td><td><tt>$env{'form.scantron_selectfile'}</tt></td></tr>
1.284 albertel 4763: $CODElist
1.203 albertel 4764: </table>
4765: </font>
4766: <br />
4767: <p> If this information is correct, please click on '$button_text'.</p>
4768: <p> If something is incorrect, please click the 'Grading Menu' button to start over.</p>
4769:
4770: <br />
4771: STUFF
4772: }
4773:
4774: sub scantron_do_warning {
4775: my ($r)=@_;
1.324 albertel 4776: my ($symb)=&get_symb($r);
1.203 albertel 4777: if (!$symb) {return '';}
1.324 albertel 4778: my $default_form_data=&defaultFormData($symb);
1.203 albertel 4779: $r->print(&scantron_form_start().$default_form_data);
1.257 albertel 4780: if ( $env{'form.selectpage'} eq '' ||
4781: $env{'form.scantron_selectfile'} eq '' ||
4782: $env{'form.scantron_format'} eq '' ) {
1.237 albertel 4783: $r->print("<p>You have forgetten to specify some information. Please go Back and try again.</p>");
1.257 albertel 4784: if ( $env{'form.selectpage'} eq '') {
1.237 albertel 4785: $r->print('<p><font color="red">You have not selected a Sequence to grade</font></p>');
4786: }
1.257 albertel 4787: if ( $env{'form.scantron_selectfile'} eq '') {
1.237 albertel 4788: $r->print('<p><font color="red">You have not selected a file that contains the student\'s response data.</font></p>');
4789: }
1.257 albertel 4790: if ( $env{'form.scantron_format'} eq '') {
1.237 albertel 4791: $r->print('<p><font color="red">You have not selected a the format of the student\'s response data.</font></p>');
4792: }
4793: } else {
1.265 www 4794: my $warning=&scantron_warning_screen('Grading: Validate Records');
1.237 albertel 4795: $r->print(<<STUFF);
1.203 albertel 4796: $warning
1.265 www 4797: <input type="submit" name="submit" value="Grading: Validate Records" />
1.203 albertel 4798: <input type="hidden" name="command" value="scantron_validate" />
4799: STUFF
1.237 albertel 4800: }
1.324 albertel 4801: $r->print("</form><br />".&show_grading_menu_form($symb)."</body></html>");
1.203 albertel 4802: return '';
4803: }
4804:
4805: sub scantron_form_start {
4806: my ($max_bubble)=@_;
4807: my $result= <<SCANTRONFORM;
4808: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
1.257 albertel 4809: <input type="hidden" name="selectpage" value="$env{'form.selectpage'}" />
4810: <input type="hidden" name="scantron_format" value="$env{'form.scantron_format'}" />
4811: <input type="hidden" name="scantron_selectfile" value="$env{'form.scantron_selectfile'}" />
1.218 albertel 4812: <input type="hidden" name="scantron_maxbubble" value="$max_bubble" />
1.257 albertel 4813: <input type="hidden" name="scantron_CODElist" value="$env{'form.scantron_CODElist'}" />
4814: <input type="hidden" name="scantron_CODEunique" value="$env{'form.scantron_CODEunique'}" />
4815: <input type="hidden" name="scantron_options_redo" value="$env{'form.scantron_options_redo'}" />
4816: <input type="hidden" name="scantron_options_ignore" value="$env{'form.scantron_options_ignore'}" />
1.331 albertel 4817: <input type="hidden" name="scantron_options_hidden" value="$env{'form.scantron_options_hidden'}" />
1.203 albertel 4818: SCANTRONFORM
4819: return $result;
4820: }
4821:
1.157 albertel 4822: sub scantron_validate_file {
4823: my ($r) = @_;
1.324 albertel 4824: my ($symb)=&get_symb($r);
1.157 albertel 4825: if (!$symb) {return '';}
1.324 albertel 4826: my $default_form_data=&defaultFormData($symb);
1.200 albertel 4827:
4828: # do the detection of only doing skipped records first befroe we delete
4829: # them when doing the corrections reset
1.257 albertel 4830: if ($env{'form.scantron_options_redo'} ne 'redo_skipped_ready') {
1.200 albertel 4831: &reset_skipping_status();
4832: }
1.257 albertel 4833: if ($env{'form.scantron_options_redo'} eq 'redo_skipped') {
1.200 albertel 4834: &remember_current_skipped();
4835: &scantron_remove_file('skipped');
1.257 albertel 4836: $env{'form.scantron_options_redo'}='redo_skipped_ready';
1.200 albertel 4837: }
4838:
1.257 albertel 4839: if ($env{'form.scantron_options_ignore'} eq 'ignore_corrections') {
1.200 albertel 4840: &check_for_error($r,&scantron_remove_file('corrected'));
4841: &check_for_error($r,&scantron_remove_file('skipped'));
4842: &check_for_error($r,&scantron_remove_scan_data());
1.257 albertel 4843: $env{'form.scantron_options_ignore'}='done';
1.192 albertel 4844: }
1.200 albertel 4845:
1.257 albertel 4846: if ($env{'form.scantron_corrections'}) {
1.157 albertel 4847: &scantron_process_corrections($r);
4848: }
1.191 albertel 4849: $r->print("<p>Gathering neccessary info.</p>");$r->rflush();
1.157 albertel 4850: #get the student pick code ready
4851: $r->print(&Apache::loncommon::studentbrowser_javascript());
1.330 albertel 4852: my $max_bubble=&scantron_get_maxbubble();
1.203 albertel 4853: my $result=&scantron_form_start($max_bubble).$default_form_data;
1.157 albertel 4854: $r->print($result);
4855:
1.334 albertel 4856: my @validate_phases=( 'sequence',
4857: 'ID',
1.157 albertel 4858: 'CODE',
4859: 'doublebubble',
4860: 'missingbubbles');
1.257 albertel 4861: if (!$env{'form.validatepass'}) {
4862: $env{'form.validatepass'} = 0;
1.157 albertel 4863: }
1.257 albertel 4864: my $currentphase=$env{'form.validatepass'};
1.157 albertel 4865:
4866: my $stop=0;
4867: while (!$stop && $currentphase < scalar(@validate_phases)) {
4868: $r->print("<p> Validating ".$validate_phases[$currentphase]."</p>");
4869: $r->rflush();
4870: my $which="scantron_validate_".$validate_phases[$currentphase];
4871: {
4872: no strict 'refs';
4873: ($stop,$currentphase)=&$which($r,$currentphase);
4874: }
4875: }
4876: if (!$stop) {
1.203 albertel 4877: my $warning=&scantron_warning_screen('Start Grading');
4878: $r->print(<<STUFF);
4879: Validation process complete.<br />
4880: $warning
4881: <input type="submit" name="submit" value="Start Grading" />
4882: <input type="hidden" name="command" value="scantron_process" />
4883: STUFF
4884:
1.157 albertel 4885: } else {
4886: $r->print('<input type="hidden" name="command" value="scantron_validate" />');
4887: $r->print("<input type='hidden' name='validatepass' value='".$currentphase."' />");
4888: }
4889: if ($stop) {
1.334 albertel 4890: if ($validate_phases[$currentphase] eq 'sequence') {
4891: $r->print('<input type="submit" name="submit" value="Ignore -> " />');
4892: $r->print(' this error <br />');
4893:
4894: $r->print(" <p>Or click the 'Grading Menu' button to start over.</p>");
4895: } else {
4896: $r->print('<input type="submit" name="submit" value="Continue ->" />');
4897: $r->print(' using corrected info <br />');
4898: $r->print("<input type='submit' value='Skip' name='scantron_skip_record' />");
4899: $r->print(" this scanline saving it for later.");
4900: }
1.157 albertel 4901: }
1.324 albertel 4902: $r->print(" </form><br />".&show_grading_menu_form($symb).
1.157 albertel 4903: "</body></html>");
4904: return '';
4905: }
4906:
1.200 albertel 4907: sub scantron_remove_file {
1.192 albertel 4908: my ($which)=@_;
1.257 albertel 4909: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
4910: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 4911: my $file='scantron_';
1.200 albertel 4912: if ($which eq 'corrected' || $which eq 'skipped') {
4913: $file.=$which.'_';
1.192 albertel 4914: } else {
4915: return 'refused';
4916: }
1.257 albertel 4917: $file.=$env{'form.scantron_selectfile'};
1.200 albertel 4918: return &Apache::lonnet::removeuserfile($cname,$cdom,$file);
4919: }
4920:
4921: sub scantron_remove_scan_data {
1.257 albertel 4922: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
4923: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.192 albertel 4924: my @keys=&Apache::lonnet::getkeys('nohist_scantrondata',$cdom,$cname);
4925: my @todelete;
1.257 albertel 4926: my $filename=$env{'form.scantron_selectfile'};
1.192 albertel 4927: foreach my $key (@keys) {
4928: if ($key=~/^\Q$filename\E_/) {
1.257 albertel 4929: if ($env{'form.scantron_options_redo'} eq 'redo_skipped_ready' &&
1.200 albertel 4930: $key=~/remember_skipping/) {
4931: next;
4932: }
1.192 albertel 4933: push(@todelete,$key);
4934: }
4935: }
1.200 albertel 4936: my $result;
1.192 albertel 4937: if (@todelete) {
1.200 albertel 4938: $result=&Apache::lonnet::del('nohist_scantrondata',\@todelete,$cdom,$cname);
1.192 albertel 4939: }
4940: return $result;
4941: }
4942:
1.157 albertel 4943: sub scantron_getfile {
1.200 albertel 4944: #FIXME really would prefer a scantron directory
1.257 albertel 4945: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
4946: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.157 albertel 4947: my $lines;
4948: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 4949: 'scantron_orig_'.$env{'form.scantron_selectfile'});
1.157 albertel 4950: my %scanlines;
4951: $scanlines{'orig'}=[(split("\n",$lines,-1))];
4952: my $temp=$scanlines{'orig'};
4953: $scanlines{'count'}=$#$temp;
4954:
4955: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 4956: 'scantron_corrected_'.$env{'form.scantron_selectfile'});
1.157 albertel 4957: if ($lines eq '-1') {
4958: $scanlines{'corrected'}=[];
4959: } else {
4960: $scanlines{'corrected'}=[(split("\n",$lines,-1))];
4961: }
4962: $lines=&Apache::lonnet::getfile('/uploaded/'.$cdom.'/'.$cname.'/'.
1.257 albertel 4963: 'scantron_skipped_'.$env{'form.scantron_selectfile'});
1.157 albertel 4964: if ($lines eq '-1') {
4965: $scanlines{'skipped'}=[];
4966: } else {
4967: $scanlines{'skipped'}=[(split("\n",$lines,-1))];
4968: }
1.175 albertel 4969: my @tmp=&Apache::lonnet::dump('nohist_scantrondata',$cdom,$cname);
1.157 albertel 4970: if ($tmp[0] =~ /^(error:|no_such_host)/) { @tmp=(); }
4971: my %scan_data = @tmp;
4972: return (\%scanlines,\%scan_data);
4973: }
4974:
4975: sub lonnet_putfile {
4976: my ($contents,$filename)=@_;
1.257 albertel 4977: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
4978: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
4979: $env{'form.sillywaytopassafilearound'}=$contents;
1.275 albertel 4980: &Apache::lonnet::finishuserfileupload($docuname,$docudom,'sillywaytopassafilearound',$filename);
1.157 albertel 4981:
4982: }
4983:
4984: sub scantron_putfile {
4985: my ($scanlines,$scan_data) = @_;
1.200 albertel 4986: #FIXME really would prefer a scantron directory
1.257 albertel 4987: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
4988: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.200 albertel 4989: if ($scanlines) {
4990: my $prefix='scantron_';
1.157 albertel 4991: # no need to update orig, shouldn't change
4992: # &lonnet_putfile(join("\n",@{$scanlines->{'orig'}}),$prefix.'orig_'.
1.257 albertel 4993: # $env{'form.scantron_selectfile'});
1.200 albertel 4994: &lonnet_putfile(join("\n",@{$scanlines->{'corrected'}}),
4995: $prefix.'corrected_'.
1.257 albertel 4996: $env{'form.scantron_selectfile'});
1.200 albertel 4997: &lonnet_putfile(join("\n",@{$scanlines->{'skipped'}}),
4998: $prefix.'skipped_'.
1.257 albertel 4999: $env{'form.scantron_selectfile'});
1.200 albertel 5000: }
1.175 albertel 5001: &Apache::lonnet::put('nohist_scantrondata',$scan_data,$cdom,$cname);
1.157 albertel 5002: }
5003:
5004: sub scantron_get_line {
1.200 albertel 5005: my ($scanlines,$scan_data,$i)=@_;
5006: if (&should_be_skipped($scan_data,$i)) { return undef; }
5007: if ($scanlines->{'skipped'}[$i]) { return undef; }
1.157 albertel 5008: if ($scanlines->{'corrected'}[$i]) {return $scanlines->{'corrected'}[$i];}
5009: return $scanlines->{'orig'}[$i];
5010: }
5011:
1.200 albertel 5012: sub get_todo_count {
5013: my ($scanlines,$scan_data)=@_;
5014: my $count=0;
5015: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
5016: my $line=&scantron_get_line($scanlines,$scan_data,$i);
5017: if ($line=~/^[\s\cz]*$/) { next; }
5018: $count++;
5019: }
5020: return $count;
5021: }
5022:
1.157 albertel 5023: sub scantron_put_line {
1.200 albertel 5024: my ($scanlines,$scan_data,$i,$newline,$skip)=@_;
1.157 albertel 5025: if ($skip) {
5026: $scanlines->{'skipped'}[$i]=$newline;
1.200 albertel 5027: &allow_skipping($scan_data,$i);
1.157 albertel 5028: return;
5029: }
5030: $scanlines->{'corrected'}[$i]=$newline;
5031: }
5032:
1.334 albertel 5033: sub scantron_filter_not_exam {
5034: my ($curres)=@_;
5035:
5036: if (ref($curres) && $curres->is_problem() && !$curres->is_exam()) {
5037: # if the user has asked to not have either hidden
5038: # or 'randomout' controlled resources to be graded
5039: # don't include them
5040: if ($env{'form.scantron_options_hidden'} eq 'ignore_hidden'
5041: && $curres->randomout) {
5042: return 0;
5043: }
5044: return 1;
5045: }
5046: return 0;
5047: }
5048:
5049: sub scantron_validate_sequence {
5050: my ($r,$currentphase) = @_;
5051:
5052: my $navmap=Apache::lonnavmaps::navmap->new();
5053: my (undef,undef,$sequence)=
5054: &Apache::lonnet::decode_symb($env{'form.selectpage'});
5055:
5056: my $map=$navmap->getResourceByUrl($sequence);
5057:
5058: $r->print('<input type="hidden" name="validate_sequence_exam"
5059: value="ignore" />');
5060: if ($env{'form.validate_sequence_exam'} ne 'ignore') {
5061: my @resources=
5062: $navmap->retrieveResources($map,\&scantron_filter_not_exam,1,0);
5063: if (@resources) {
5064: $r->print("<p>".&mt('Some resource in the sequece currently are not set to exam mode. Grading these resources currently may not work correctly.')."</p>");
5065: return (1,$currentphase);
5066: }
5067: }
5068:
5069: return (0,$currentphase+1);
5070: }
5071:
1.157 albertel 5072: sub scantron_validate_ID {
5073: my ($r,$currentphase) = @_;
5074:
5075: #get student info
5076: my $classlist=&Apache::loncoursedata::get_classlist();
5077: my %idmap=&username_to_idmap($classlist);
5078:
5079: #get scantron line setup
1.257 albertel 5080: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 5081: my ($scanlines,$scan_data)=&scantron_getfile();
5082:
5083: my %found=('ids'=>{},'usernames'=>{});
5084: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 5085: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 5086: if ($line=~/^[\s\cz]*$/) { next; }
5087: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
5088: $scan_data);
5089: my $id=$$scan_record{'scantron.ID'};
5090: my $found;
5091: foreach my $checkid (keys(%idmap)) {
5092: if (lc($checkid) eq lc($id)) { $found=$checkid;last; }
5093: }
5094: if ($found) {
5095: my $username=$idmap{$found};
5096: if ($found{'ids'}{$found}) {
5097: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
5098: $line,'duplicateID',$found);
1.194 albertel 5099: return(1,$currentphase);
1.157 albertel 5100: } elsif ($found{'usernames'}{$username}) {
5101: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
5102: $line,'duplicateID',$username);
1.194 albertel 5103: return(1,$currentphase);
1.157 albertel 5104: }
1.186 albertel 5105: #FIXME store away line we previously saw the ID on to use above
1.157 albertel 5106: $found{'ids'}{$found}++;
5107: $found{'usernames'}{$username}++;
5108: } else {
5109: if ($id =~ /^\s*$/) {
1.158 albertel 5110: my $username=&scan_data($scan_data,"$i.user");
1.157 albertel 5111: if (defined($username) && $found{'usernames'}{$username}) {
5112: &scantron_get_correction($r,$i,$scan_record,
5113: \%scantron_config,
5114: $line,'duplicateID',$username);
1.194 albertel 5115: return(1,$currentphase);
1.157 albertel 5116: } elsif (!defined($username)) {
5117: &scantron_get_correction($r,$i,$scan_record,
5118: \%scantron_config,
5119: $line,'incorrectID');
1.194 albertel 5120: return(1,$currentphase);
1.157 albertel 5121: }
5122: $found{'usernames'}{$username}++;
5123: } else {
5124: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
5125: $line,'incorrectID');
1.194 albertel 5126: return(1,$currentphase);
1.157 albertel 5127: }
5128: }
5129: }
5130:
5131: return (0,$currentphase+1);
5132: }
5133:
5134: sub scantron_get_correction {
5135: my ($r,$i,$scan_record,$scan_config,$line,$error,$arg)=@_;
5136:
5137: #FIXME in the case of a duplicated ID the previous line, probaly need
5138: #to show both the current line and the previous one and allow skipping
5139: #the previous one or the current one
5140:
1.161 albertel 5141: $r->print("<p><b>An error was detected ($error)</b>");
1.333 albertel 5142: if ( $$scan_record{'scantron.PaperID'} =~ /\S/) {
1.157 albertel 5143: $r->print(" for PaperID <tt>".
5144: $$scan_record{'scantron.PaperID'}."</tt> \n");
5145: } else {
5146: $r->print(" in scanline $i <pre>".
5147: $line."</pre> \n");
5148: }
1.242 albertel 5149: my $message="<p>The ID on the form is <tt>".
5150: $$scan_record{'scantron.ID'}."</tt><br />\n".
5151: "The name on the paper is ".
5152: $$scan_record{'scantron.LastName'}.",".
5153: $$scan_record{'scantron.FirstName'}."</p>";
5154:
1.157 albertel 5155: $r->print('<input type="hidden" name="scantron_corrections" value="'.$error.'" />'."\n");
5156: $r->print('<input type="hidden" name="scantron_line" value="'.$i.'" />'."\n");
5157: if ($error =~ /ID$/) {
1.186 albertel 5158: if ($error eq 'incorrectID') {
1.157 albertel 5159: $r->print("The encoded ID is not in the classlist</p>\n");
5160: } elsif ($error eq 'duplicateID') {
5161: $r->print("The encoded ID has also been used by a previous paper $arg</p>\n");
5162: }
1.242 albertel 5163: $r->print($message);
1.157 albertel 5164: $r->print("<p>How should I handle this? <br /> \n");
5165: $r->print("\n<ul><li> ");
5166: #FIXME it would be nice if this sent back the user ID and
5167: #could do partial userID matches
5168: $r->print(&Apache::loncommon::selectstudent_link('scantronupload',
5169: 'scantron_username','scantron_domain'));
5170: $r->print(": <input type='text' name='scantron_username' value='' />");
5171: $r->print("\n@".
1.257 albertel 5172: &Apache::loncommon::select_dom_form($env{'request.role.domain'},'scantron_domain'));
1.157 albertel 5173:
5174: $r->print('</li>');
1.186 albertel 5175: } elsif ($error =~ /CODE$/) {
5176: if ($error eq 'incorrectCODE') {
1.187 albertel 5177: $r->print("</p><p>The encoded CODE is not in the list of possible CODEs</p>\n");
1.186 albertel 5178: } elsif ($error eq 'duplicateCODE') {
1.194 albertel 5179: $r->print("</p><p>The encoded CODE has also been used by a previous paper ".join(', ',@{$arg}).", and CODEs are supposed to be unique</p>\n");
1.186 albertel 5180: }
1.224 albertel 5181: $r->print("<p>The CODE on the form is <tt>'".
5182: $$scan_record{'scantron.CODE'}."'</tt><br />\n");
1.242 albertel 5183: $r->print($message);
1.186 albertel 5184: $r->print("<p>How should I handle this? <br /> \n");
1.187 albertel 5185: $r->print("\n<br /> ");
1.194 albertel 5186: my $i=0;
1.273 albertel 5187: if ($error eq 'incorrectCODE'
5188: && $$scan_record{'scantron.CODE'}=~/\S/ ) {
1.194 albertel 5189: my ($max,$closest)=&scantron_get_closely_matching_CODEs($arg,$$scan_record{'scantron.CODE'});
1.278 albertel 5190: if ($closest > 0) {
5191: foreach my $testcode (@{$closest}) {
5192: my $checked='';
5193: if (!$i) { $checked=' checked="on" '; }
5194: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_closest_$i' $checked /> Use the similar CODE <b><tt>".$testcode."</tt></b> instead.</label><input type='hidden' name='scantron_CODE_closest_$i' value='$testcode' />");
5195: $r->print("\n<br />");
5196: $i++;
5197: }
1.194 albertel 5198: }
5199: }
1.273 albertel 5200: if ($$scan_record{'scantron.CODE'}=~/\S/ ) {
5201: my $checked; if (!$i) { $checked=' checked="on" '; }
5202: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_unfound' $checked /> Use the CODE <b><tt>".$$scan_record{'scantron.CODE'}."</tt></b> that is was on the paper, ignoring the error.</label>");
5203: $r->print("\n<br />");
5204: }
1.194 albertel 5205:
1.188 albertel 5206: $r->print(<<ENDSCRIPT);
5207: <script type="text/javascript">
5208: function change_radio(field) {
1.190 albertel 5209: var slct=document.scantronupload.scantron_CODE_resolution;
1.188 albertel 5210: var i;
5211: for (i=0;i<slct.length;i++) {
5212: if (slct[i].value==field) { slct[i].checked=true; }
5213: }
5214: }
5215: </script>
5216: ENDSCRIPT
1.187 albertel 5217: my $href="/adm/pickcode?".
5218: "form=".&Apache::lonnet::escape("scantronupload").
1.257 albertel 5219: "&scantron_format=".&Apache::lonnet::escape($env{'form.scantron_format'}).
5220: "&scantron_CODElist=".&Apache::lonnet::escape($env{'form.scantron_CODElist'}).
1.187 albertel 5221: "&curCODE=".&Apache::lonnet::escape($$scan_record{'scantron.CODE'}).
1.257 albertel 5222: "&scantron_selectfile=".&Apache::lonnet::escape($env{'form.scantron_selectfile'});
1.332 albertel 5223: if ($env{'form.scantron_CODElist'} =~ /\S/) {
5224: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_found' /> <a target='_blank' href='$href'>Select</a> a CODE from the list of all CODEs and use it.</label> Selected CODE is <input readonly='true' type='text' size='8' name='scantron_CODE_selectedvalue' onfocus=\"javascript:change_radio('use_found')\" onchange=\"javascript:change_radio('use_found')\" />");
5225: $r->print("\n<br />");
5226: }
1.272 albertel 5227: $r->print("<label><input type='radio' name='scantron_CODE_resolution' value='use_typed' /> Use </label><input type='text' size='8' name='scantron_CODE_newvalue' onfocus=\"javascript:change_radio('use_typed')\" onkeypress=\"javascript:change_radio('use_typed')\" /> as the CODE.");
1.187 albertel 5228: $r->print("\n<br /><br />");
1.157 albertel 5229: } elsif ($error eq 'doublebubble') {
5230: $r->print("<p>There have been multiple bubbles scanned for a some question(s)</p>\n");
5231: $r->print('<input type="hidden" name="scantron_questions" value="'.
5232: join(',',@{$arg}).'" />');
1.242 albertel 5233: $r->print($message);
1.157 albertel 5234: $r->print("<p>Please indicate which bubble should be used for grading</p>");
5235: foreach my $question (@{$arg}) {
5236: my $selected=$$scan_record{"scantron.$question.answer"};
5237: &scantron_bubble_selector($r,$scan_config,$question,split('',$selected));
5238: }
5239: } elsif ($error eq 'missingbubble') {
5240: $r->print("<p>There have been <b>no</b> bubbles scanned for some question(s)</p>\n");
1.242 albertel 5241: $r->print($message);
1.157 albertel 5242: $r->print("<p>Please indicate which bubble should be used for grading</p>");
5243: $r->print("Some questions have no scanned bubbles\n");
5244: $r->print('<input type="hidden" name="scantron_questions" value="'.
5245: join(',',@{$arg}).'" />');
5246: foreach my $question (@{$arg}) {
5247: my $selected=$$scan_record{"scantron.$question.answer"};
5248: &scantron_bubble_selector($r,$scan_config,$question);
5249: }
5250: } else {
5251: $r->print("\n<ul>");
5252: }
5253: $r->print("\n</li></ul>");
5254:
5255: }
5256:
5257: sub scantron_bubble_selector {
5258: my ($r,$scan_config,$quest,@selected)=@_;
5259: my $max=$$scan_config{'Qlength'};
1.274 albertel 5260:
5261: my $scmode=$$scan_config{'Qon'};
5262: if ($scmode eq 'number' || $scmode eq 'letter') { $max=10; }
5263:
1.157 albertel 5264: my @alphabet=('A'..'Z');
5265: $r->print("<table border='1'><tr><td rowspan='2'>$quest</td>");
5266: for (my $i=0;$i<$max+1;$i++) {
1.274 albertel 5267: $r->print("\n".'<td align="center">');
1.157 albertel 5268: if ($selected[0] eq $alphabet[$i]) { $r->print('X'); shift(@selected) }
5269: else { $r->print(' '); }
5270: $r->print('</td>');
5271: }
1.274 albertel 5272: $r->print('</tr><tr>');
1.157 albertel 5273: for (my $i=0;$i<$max;$i++) {
1.274 albertel 5274: $r->print("\n".
5275: '<td><label><input type="radio" name="scantron_correct_Q_'.
1.272 albertel 5276: $quest.'" value="'.$i.'" />'.$alphabet[$i]."</label></td>");
1.157 albertel 5277: }
1.272 albertel 5278: $r->print('<td><label><input type="radio" name="scantron_correct_Q_'.
5279: $quest.'" value="none" /> No bubble </label></td>');
1.157 albertel 5280: $r->print('</tr></table>');
5281: }
5282:
1.194 albertel 5283: sub num_matches {
5284: my ($orig,$code) = @_;
5285: my @code=split(//,$code);
5286: my @orig=split(//,$orig);
5287: my $same=0;
5288: for (my $i=0;$i<scalar(@code);$i++) {
5289: if ($code[$i] eq $orig[$i]) { $same++; }
5290: }
5291: return $same;
5292: }
5293:
5294: sub scantron_get_closely_matching_CODEs {
5295: my ($allcodes,$CODE)=@_;
5296: my @CODEs;
5297: foreach my $testcode (sort(keys(%{$allcodes}))) {
5298: push(@{$CODEs[&num_matches($CODE,$testcode)]},$testcode);
5299: }
5300:
5301: return ($#CODEs,$CODEs[-1]);
5302: }
5303:
5304: sub get_codes {
1.280 foxr 5305: my ($old_name, $cdom, $cnum) = @_;
5306: if (!$old_name) {
5307: $old_name=$env{'form.scantron_CODElist'};
5308: }
5309: if (!$cdom) {
5310: $cdom =$env{'course.'.$env{'request.course.id'}.'.domain'};
5311: }
5312: if (!$cnum) {
5313: $cnum =$env{'course.'.$env{'request.course.id'}.'.num'};
5314: }
1.278 albertel 5315: my %result=&Apache::lonnet::get('CODEs',[$old_name,"type\0$old_name"],
5316: $cdom,$cnum);
5317: my %allcodes;
5318: if ($result{"type\0$old_name"} eq 'number') {
5319: %allcodes=map {($_,1)} split(',',$result{$old_name});
5320: } else {
5321: %allcodes=map {(&Apache::lonprintout::num_to_letters($_),1)} split(',',$result{$old_name});
5322: }
1.194 albertel 5323: return %allcodes;
5324: }
5325:
1.157 albertel 5326: sub scantron_validate_CODE {
5327: my ($r,$currentphase) = @_;
1.257 albertel 5328: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.186 albertel 5329: if ($scantron_config{'CODElocation'} &&
5330: $scantron_config{'CODEstart'} &&
5331: $scantron_config{'CODElength'}) {
1.257 albertel 5332: if (!defined($env{'form.scantron_CODElist'})) {
1.186 albertel 5333: &FIXME_blow_up()
5334: }
5335: } else {
5336: return (0,$currentphase+1);
5337: }
5338:
5339: my %usedCODEs;
5340:
1.194 albertel 5341: my %allcodes=&get_codes();
1.186 albertel 5342:
5343: my ($scanlines,$scan_data)=&scantron_getfile();
5344: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 5345: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.186 albertel 5346: if ($line=~/^[\s\cz]*$/) { next; }
5347: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
5348: $scan_data);
5349: my $CODE=$$scan_record{'scantron.CODE'};
5350: my $error=0;
1.224 albertel 5351: if (!&Apache::lonnet::validCODE($CODE)) {
5352: &scantron_get_correction($r,$i,$scan_record,
5353: \%scantron_config,
5354: $line,'incorrectCODE',\%allcodes);
5355: return(1,$currentphase);
5356: }
1.221 albertel 5357: if (%allcodes && !exists($allcodes{$CODE})
5358: && !$$scan_record{'scantron.useCODE'}) {
1.186 albertel 5359: &scantron_get_correction($r,$i,$scan_record,
5360: \%scantron_config,
1.194 albertel 5361: $line,'incorrectCODE',\%allcodes);
5362: return(1,$currentphase);
1.186 albertel 5363: }
1.214 albertel 5364: if (exists($usedCODEs{$CODE})
1.257 albertel 5365: && $env{'form.scantron_CODEunique'} eq 'yes'
1.192 albertel 5366: && !$$scan_record{'scantron.CODE_ignore_dup'}) {
1.186 albertel 5367: &scantron_get_correction($r,$i,$scan_record,
5368: \%scantron_config,
1.194 albertel 5369: $line,'duplicateCODE',$usedCODEs{$CODE});
5370: return(1,$currentphase);
1.186 albertel 5371: }
1.194 albertel 5372: push (@{$usedCODEs{$CODE}},$$scan_record{'scantron.PaperID'});
1.186 albertel 5373: }
1.157 albertel 5374: return (0,$currentphase+1);
5375: }
5376:
5377: sub scantron_validate_doublebubble {
5378: my ($r,$currentphase) = @_;
5379: #get student info
5380: my $classlist=&Apache::loncoursedata::get_classlist();
5381: my %idmap=&username_to_idmap($classlist);
5382:
5383: #get scantron line setup
1.257 albertel 5384: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 5385: my ($scanlines,$scan_data)=&scantron_getfile();
5386: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 5387: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 5388: if ($line=~/^[\s\cz]*$/) { next; }
5389: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
5390: $scan_data);
5391: if (!defined($$scan_record{'scantron.doubleerror'})) { next; }
5392: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,$line,
5393: 'doublebubble',
5394: $$scan_record{'scantron.doubleerror'});
5395: return (1,$currentphase);
5396: }
5397: return (0,$currentphase+1);
5398: }
5399:
1.330 albertel 5400: sub scantron_get_maxbubble {
1.257 albertel 5401: if (defined($env{'form.scantron_maxbubble'}) &&
5402: $env{'form.scantron_maxbubble'}) {
5403: return $env{'form.scantron_maxbubble'};
1.191 albertel 5404: }
1.330 albertel 5405:
1.191 albertel 5406: my $navmap=Apache::lonnavmaps::navmap->new();
5407: my (undef,undef,$sequence)=
1.257 albertel 5408: &Apache::lonnet::decode_symb($env{'form.selectpage'});
1.330 albertel 5409:
1.191 albertel 5410: my $map=$navmap->getResourceByUrl($sequence);
5411: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.330 albertel 5412:
5413: &Apache::lonxml::clear_problem_counter();
5414:
1.191 albertel 5415: foreach my $resource (@resources) {
1.330 albertel 5416: my $result=&Apache::lonnet::ssi($resource->src(),
5417: ('symb' => $resource->symb()));
1.191 albertel 5418: }
5419: &Apache::lonnet::delenv('scantron\.');
1.330 albertel 5420: $env{'form.scantron_maxbubble'} =
5421: &Apache::lonxml::get_problem_counter()-1;
5422:
1.257 albertel 5423: return $env{'form.scantron_maxbubble'};
1.191 albertel 5424: }
5425:
1.157 albertel 5426: sub scantron_validate_missingbubbles {
5427: my ($r,$currentphase) = @_;
5428: #get student info
5429: my $classlist=&Apache::loncoursedata::get_classlist();
5430: my %idmap=&username_to_idmap($classlist);
5431:
5432: #get scantron line setup
1.257 albertel 5433: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 5434: my ($scanlines,$scan_data)=&scantron_getfile();
1.191 albertel 5435: my $max_bubble=&scantron_get_maxbubble();
1.157 albertel 5436: if (!$max_bubble) { $max_bubble=2**31; }
5437: for (my $i=0;$i<=$scanlines->{'count'};$i++) {
1.200 albertel 5438: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 5439: if ($line=~/^[\s\cz]*$/) { next; }
5440: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
5441: $scan_data);
5442: if (!defined($$scan_record{'scantron.missingerror'})) { next; }
5443: my @to_correct;
5444: foreach my $missing (@{$$scan_record{'scantron.missingerror'}}) {
5445: if ($missing > $max_bubble) { next; }
5446: push(@to_correct,$missing);
5447: }
5448: if (@to_correct) {
5449: &scantron_get_correction($r,$i,$scan_record,\%scantron_config,
5450: $line,'missingbubble',\@to_correct);
5451: return (1,$currentphase);
5452: }
5453:
5454: }
5455: return (0,$currentphase+1);
5456: }
5457:
1.82 albertel 5458: sub scantron_process_students {
1.75 albertel 5459: my ($r) = @_;
1.257 albertel 5460: my (undef,undef,$sequence)=&Apache::lonnet::decode_symb($env{'form.selectpage'});
1.324 albertel 5461: my ($symb)=&get_symb($r);
1.81 albertel 5462: if (!$symb) {return '';}
1.324 albertel 5463: my $default_form_data=&defaultFormData($symb);
1.82 albertel 5464:
1.257 albertel 5465: my %scantron_config=&get_scantron_config($env{'form.scantron_format'});
1.157 albertel 5466: my ($scanlines,$scan_data)=&scantron_getfile();
1.82 albertel 5467: my $classlist=&Apache::loncoursedata::get_classlist();
5468: my %idmap=&username_to_idmap($classlist);
1.132 bowersj2 5469: my $navmap=Apache::lonnavmaps::navmap->new();
1.83 albertel 5470: my $map=$navmap->getResourceByUrl($sequence);
5471: my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0);
1.140 albertel 5472: # $r->print("geto ".scalar(@resources)."<br />");
1.82 albertel 5473: my $result= <<SCANTRONFORM;
1.81 albertel 5474: <form method="post" enctype="multipart/form-data" action="/adm/grades" name="scantronupload">
5475: <input type="hidden" name="command" value="scantron_configphase" />
5476: $default_form_data
5477: SCANTRONFORM
1.82 albertel 5478: $r->print($result);
5479:
5480: my @delayqueue;
1.140 albertel 5481: my %completedstudents;
5482:
1.200 albertel 5483: my $count=&get_todo_count($scanlines,$scan_data);
1.157 albertel 5484: my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Scantron Status',
1.200 albertel 5485: 'Scantron Progress',$count,
1.195 albertel 5486: 'inline',undef,'scantronupload');
1.140 albertel 5487: &Apache::lonhtmlcommon::Update_PrgWin($r,\%prog_state,
5488: 'Processing first student');
5489: my $start=&Time::HiRes::time();
1.158 albertel 5490: my $i=-1;
1.200 albertel 5491: my ($uname,$udom,$started);
1.157 albertel 5492: while ($i<$scanlines->{'count'}) {
5493: ($uname,$udom)=('','');
5494: $i++;
1.200 albertel 5495: my $line=&scantron_get_line($scanlines,$scan_data,$i);
1.157 albertel 5496: if ($line=~/^[\s\cz]*$/) { next; }
1.200 albertel 5497: if ($started) {
5498: &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
5499: 'last student');
5500: }
5501: $started=1;
1.157 albertel 5502: my $scan_record=&scantron_parse_scanline($line,$i,\%scantron_config,
5503: $scan_data);
5504: unless ($uname=&scantron_find_student($scan_record,$scan_data,
5505: \%idmap,$i)) {
5506: &scantron_add_delay(\@delayqueue,$line,
5507: 'Unable to find a student that matches',1);
5508: next;
5509: }
5510: if (exists $completedstudents{$uname}) {
5511: &scantron_add_delay(\@delayqueue,$line,
5512: 'Student '.$uname.' has multiple sheets',2);
5513: next;
5514: }
5515: ($uname,$udom)=split(/:/,$uname);
1.330 albertel 5516:
5517: &Apache::lonxml::clear_problem_counter();
1.157 albertel 5518: &Apache::lonnet::appenv(%$scan_record);
1.161 albertel 5519:
5520: my $i=0;
1.83 albertel 5521: foreach my $resource (@resources) {
1.85 albertel 5522: $i++;
1.193 albertel 5523: my %form=('submitted' =>'scantron',
5524: 'grade_target' =>'grade',
5525: 'grade_username'=>$uname,
5526: 'grade_domain' =>$udom,
1.257 albertel 5527: 'grade_courseid'=>$env{'request.course.id'},
1.193 albertel 5528: 'grade_symb' =>$resource->symb());
5529: if (exists($scan_record->{'scantron.CODE'}) &&
5530: $scan_record->{'scantron.CODE'}) {
5531: $form{'CODE'}=$scan_record->{'scantron.CODE'};
1.224 albertel 5532: } else {
5533: $form{'CODE'}='';
1.193 albertel 5534: }
5535: my $result=&Apache::lonnet::ssi($resource->src(),%form);
1.227 albertel 5536: if ($result ne '') {
5537: &Apache::lonnet::logthis("scantron grading error -> $result");
1.257 albertel 5538: &Apache::lonnet::logthis("scantron grading error info name $uname domain $udom course $env{'request.course.id'} url ".$resource->src());
1.227 albertel 5539: }
1.213 albertel 5540: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.83 albertel 5541: }
1.140 albertel 5542: $completedstudents{$uname}={'line'=>$line};
1.213 albertel 5543: if (&Apache::loncommon::connection_aborted($r)) { last; }
1.140 albertel 5544: } continue {
1.330 albertel 5545: &Apache::lonxml::clear_problem_counter();
1.83 albertel 5546: &Apache::lonnet::delenv('scantron\.');
1.82 albertel 5547: }
1.140 albertel 5548: &Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state);
1.172 albertel 5549: # my $lasttime = &Time::HiRes::time()-$start;
5550: # $r->print("<p>took $lasttime</p>");
1.140 albertel 5551:
1.200 albertel 5552: $r->print("</form>");
1.324 albertel 5553: $r->print(&show_grading_menu_form($symb));
1.157 albertel 5554: return '';
1.75 albertel 5555: }
1.157 albertel 5556:
5557: sub scantron_upload_scantron_data {
5558: my ($r)=@_;
1.257 albertel 5559: $r->print(&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}));
1.157 albertel 5560: my $select_link=&Apache::loncommon::selectcourse_link('rules','courseid',
1.181 albertel 5561: 'domainid',
5562: 'coursename');
1.257 albertel 5563: my $domsel=&Apache::loncommon::select_dom_form($env{'request.role.domain'},
1.157 albertel 5564: 'domainid');
1.324 albertel 5565: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.157 albertel 5566: $r->print(<<UPLOAD);
5567: <script type="text/javascript" language="javascript">
5568: function checkUpload(formname) {
5569: if (formname.upfile.value == "") {
5570: alert("Please use the browse button to select a file from your local directory.");
5571: return false;
5572: }
5573: formname.submit();
5574: }
5575: </script>
5576:
5577: <form enctype='multipart/form-data' action='/adm/grades' name='rules' method='post'>
1.162 albertel 5578: $default_form_data
1.181 albertel 5579: <table>
5580: <tr><td>$select_link </td></tr>
5581: <tr><td>Course ID: </td><td><input name='courseid' type='text' /> </td></tr>
5582: <tr><td>Course Name: </td><td><input name='coursename' type='text' /></td></tr>
5583: <tr><td>Domain: </td><td>$domsel </td></tr>
5584: <tr><td>File to upload:</td><td><input type="file" name="upfile" size="50" /></td></tr>
5585: </table>
1.157 albertel 5586: <input name='command' value='scantronupload_save' type='hidden' />
5587: <input type="button" onClick="javascript:checkUpload(this.form);" value="Upload Scantron Data" />
5588: </form>
5589: UPLOAD
5590: return '';
5591: }
5592:
5593: sub scantron_upload_scantron_data_save {
5594: my($r)=@_;
1.324 albertel 5595: my ($symb)=&get_symb($r,1);
1.182 albertel 5596: my $doanotherupload=
5597: '<br /><form action="/adm/grades" method="post">'."\n".
5598: '<input type="hidden" name="command" value="scantronupload" />'."\n".
5599: '<input type="submit" name="submit" value="Do Another Upload" />'."\n".
5600: '</form>'."\n";
1.257 albertel 5601: if (!&Apache::lonnet::allowed('usc',$env{'form.domainid'}) &&
1.162 albertel 5602: !&Apache::lonnet::allowed('usc',
1.257 albertel 5603: $env{'form.domainid'}.'_'.$env{'form.courseid'})) {
1.162 albertel 5604: $r->print("You are not allowed to upload Scantron data to the requested course.<br />");
1.182 albertel 5605: if ($symb) {
1.324 albertel 5606: $r->print(&show_grading_menu_form($symb));
1.182 albertel 5607: } else {
5608: $r->print($doanotherupload);
5609: }
1.162 albertel 5610: return '';
5611: }
1.257 albertel 5612: my %coursedata=&Apache::lonnet::coursedescription($env{'form.domainid'}.'_'.$env{'form.courseid'});
1.211 ng 5613: $r->print("Doing upload to ".$coursedata{'description'}." <br />");
1.257 albertel 5614: my $fname=$env{'form.upfile.filename'};
1.157 albertel 5615: #FIXME
5616: #copied from lonnet::userfileupload()
5617: #make that function able to target a specified course
5618: # Replace Windows backslashes by forward slashes
5619: $fname=~s/\\/\//g;
5620: # Get rid of everything but the actual filename
5621: $fname=~s/^.*\/([^\/]+)$/$1/;
5622: # Replace spaces by underscores
5623: $fname=~s/\s+/\_/g;
5624: # Replace all other weird characters by nothing
5625: $fname=~s/[^\w\.\-]//g;
5626: # See if there is anything left
5627: unless ($fname) { return 'error: no uploaded file'; }
1.209 ng 5628: my $uploadedfile=$fname;
1.157 albertel 5629: $fname='scantron_orig_'.$fname;
1.257 albertel 5630: if (length($env{'form.upfile'}) < 2) {
5631: $r->print("<font color='red'>Error:</font> The file you attempted to upload, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>, contained no information. Please check that you entered the correct filename.");
1.183 albertel 5632: } else {
1.275 albertel 5633: my $result=&Apache::lonnet::finishuserfileupload($env{'form.courseid'},$env{'form.domainid'},'upfile',$fname);
1.210 albertel 5634: if ($result =~ m|^/uploaded/|) {
1.257 albertel 5635: $r->print("<font color='green'>Success:</font> Successfully uploaded ".(length($env{'form.upfile'})-1)." bytes of data into location <tt>".$result."</tt>");
1.210 albertel 5636: } else {
1.257 albertel 5637: $r->print("<font color='red'>Error:</font> An error (".$result.") occurred when attempting to upload the file, <tt>".&HTML::Entities::encode($env{'form.upfile.filename'},'<>&"')."</tt>");
1.183 albertel 5638: }
5639: }
1.174 albertel 5640: if ($symb) {
1.209 ng 5641: $r->print(&scantron_selectphase($r,$uploadedfile));
1.174 albertel 5642: } else {
1.182 albertel 5643: $r->print($doanotherupload);
1.174 albertel 5644: }
1.157 albertel 5645: return '';
5646: }
5647:
1.202 albertel 5648: sub valid_file {
5649: my ($requested_file)=@_;
5650: foreach my $filename (sort(&scantron_filenames())) {
5651: if ($requested_file eq $filename) { return 1; }
5652: }
5653: return 0;
5654: }
5655:
5656: sub scantron_download_scantron_data {
5657: my ($r)=@_;
1.324 albertel 5658: my $default_form_data=&defaultFormData(&get_symb($r,1));
1.257 albertel 5659: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
5660: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5661: my $file=$env{'form.scantron_selectfile'};
1.202 albertel 5662: if (! &valid_file($file)) {
5663: $r->print(<<ERROR);
5664: <p>
5665: The requested file name was invalid.
5666: </p>
5667: ERROR
1.324 albertel 5668: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 5669: return;
5670: }
5671: my $orig='/uploaded/'.$cdom.'/'.$cname.'/scantron_orig_'.$file;
5672: my $corrected='/uploaded/'.$cdom.'/'.$cname.'/scantron_corrected_'.$file;
5673: my $skipped='/uploaded/'.$cdom.'/'.$cname.'/scantron_skipped_'.$file;
5674: &Apache::lonnet::allowuploaded('/adm/grades',$orig);
5675: &Apache::lonnet::allowuploaded('/adm/grades',$corrected);
5676: &Apache::lonnet::allowuploaded('/adm/grades',$skipped);
5677: $r->print(<<DOWNLOAD);
5678: <p>
5679: <a href="$orig">Original</a> file as uploaded by the scantron office.
5680: </p>
5681: <p>
5682: <a href="$corrected">Corrections</a>, a file of corrected records that were used in grading.
5683: </p>
5684: <p>
5685: <a href="$skipped">Skipped</a>, a file of records that were skipped.
5686: </p>
5687: DOWNLOAD
1.324 albertel 5688: $r->print(&show_grading_menu_form(&get_symb($r,1)));
1.202 albertel 5689: return '';
5690: }
1.157 albertel 5691:
1.75 albertel 5692: #-------- end of section for handling grading scantron forms -------
5693: #
5694: #-------------------------------------------------------------------
5695:
1.72 ng 5696: #-------------------------- Menu interface -------------------------
5697: #
5698: #--- Show a Grading Menu button - Calls the next routine ---
5699: sub show_grading_menu_form {
1.324 albertel 5700: my ($symb)=@_;
1.125 ng 5701: my $result.='<br /><form action="/adm/grades" method="post">'."\n".
1.72 ng 5702: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
1.257 albertel 5703: '<input type="hidden" name="saveState" value="'.$env{'form.saveState'}.'" />'."\n".
1.72 ng 5704: '<input type="hidden" name="command" value="gradingmenu" />'."\n".
5705: '<input type="submit" name="submit" value="Grading Menu" />'."\n".
5706: '</form>'."\n";
5707: return $result;
5708: }
5709:
1.77 ng 5710: # -- Retrieve choices for grading form
5711: sub savedState {
5712: my %savedState = ();
1.257 albertel 5713: if ($env{'form.saveState'}) {
5714: foreach (split(/:/,$env{'form.saveState'})) {
1.77 ng 5715: my ($key,$value) = split(/=/,$_,2);
5716: $savedState{$key} = $value;
5717: }
5718: }
5719: return \%savedState;
5720: }
1.76 ng 5721:
1.72 ng 5722: #--- Displays the main menu page -------
5723: sub gradingmenu {
5724: my ($request) = @_;
1.324 albertel 5725: my ($symb)=&get_symb($request);
1.72 ng 5726: if (!$symb) {return '';}
1.76 ng 5727: my $probTitle = &Apache::lonnet::gettitle($symb);
1.72 ng 5728:
5729: $request->print(<<GRADINGMENUJS);
5730: <script type="text/javascript" language="javascript">
1.116 ng 5731: function checkChoice(formname,val,cmdx) {
5732: if (val <= 2) {
5733: var cmd = radioSelection(formname.radioChoice);
1.118 ng 5734: var cmdsave = cmd;
1.116 ng 5735: } else {
5736: cmd = cmdx;
1.118 ng 5737: cmdsave = 'submission';
1.116 ng 5738: }
5739: formname.command.value = cmd;
1.118 ng 5740: formname.saveState.value = "saveCmd="+cmdsave+":saveSec="+pullDownSelection(formname.section)+
1.145 albertel 5741: ":saveSub="+pullDownSelection(formname.submitonly)+":saveStatus="+pullDownSelection(formname.Status);
1.116 ng 5742: if (val < 5) formname.submit();
5743: if (val == 5) {
1.72 ng 5744: if (!checkReceiptNo(formname,'notOK')) { return false;}
5745: formname.submit();
5746: }
1.238 albertel 5747: if (val < 7) formname.submit();
1.72 ng 5748: }
5749:
5750: function checkReceiptNo(formname,nospace) {
5751: var receiptNo = formname.receipt.value;
5752: var checkOpt = false;
5753: if (nospace == "OK" && isNaN(receiptNo)) {checkOpt = true;}
5754: if (nospace == "notOK" && (isNaN(receiptNo) || receiptNo == "")) {checkOpt = true;}
5755: if (checkOpt) {
5756: alert("Please enter a receipt number given by a student in the receipt box.");
5757: formname.receipt.value = "";
5758: formname.receipt.focus();
5759: return false;
5760: }
5761: return true;
5762: }
5763: </script>
5764: GRADINGMENUJS
1.118 ng 5765: &commonJSfunctions($request);
5766: my $result='<h3> <font color="#339933">Manual Grading/View Submission</font></h3>';
1.324 albertel 5767: my ($table,undef,$hdgrade) = &showResourceInfo($symb,$probTitle);
1.118 ng 5768: $result.=$table;
1.76 ng 5769: my (undef,$sections) = &getclasslist('all','0');
1.77 ng 5770: my $savedState = &savedState();
1.118 ng 5771: my $saveCmd = ($$savedState{'saveCmd'} eq '' ? 'submission' : $$savedState{'saveCmd'});
1.77 ng 5772: my $saveSec = ($$savedState{'saveSec'} eq '' ? 'all' : $$savedState{'saveSec'});
1.118 ng 5773: my $saveSub = ($$savedState{'saveSub'} eq '' ? 'all' : $$savedState{'saveSub'});
1.77 ng 5774: my $saveStatus = ($$savedState{'saveStatus'} eq '' ? 'Active' : $$savedState{'saveStatus'});
1.72 ng 5775:
5776: $result.='<form action="/adm/grades" method="post" name="gradingMenu">'."\n".
5777: '<input type="hidden" name="symb" value="'.$symb.'" />'."\n".
5778: '<input type="hidden" name="handgrade" value="'.$hdgrade.'" />'."\n".
5779: '<input type="hidden" name="probTitle" value="'.$probTitle.'" />'."\n".
1.116 ng 5780: '<input type="hidden" name="command" value="" />'."\n".
1.77 ng 5781: '<input type="hidden" name="saveState" value="" />'."\n".
1.124 ng 5782: '<input type="hidden" name="gradingMenu" value="1" />'."\n".
1.72 ng 5783: '<input type="hidden" name="showgrading" value="yes" />'."\n";
5784:
1.326 albertel 5785: $result.='<table width="100%" border="0"><tr><td bgcolor=#777777>'."\n".
5786: '<table width="100%" border="0"><tr bgcolor="#e6ffff"><td colspan="2">'."\n".
1.72 ng 5787: ' <b>Select a Grading/Viewing Option</b></td></tr>'."\n".
1.116 ng 5788: '<tr bgcolor="#ffffe6" valign="top"><td>'."\n";
5789:
1.326 albertel 5790: $result.='<table width="100%" border="0">';
1.116 ng 5791: $result.='<tr bgcolor="#ffffe6" valign="top"><td>'."\n".
1.167 sakharuk 5792: ' '.&mt('Select Section').': <select name="section">'."\n";
1.116 ng 5793: if (ref($sections)) {
1.155 albertel 5794: foreach (sort (@$sections)) {
5795: $result.='<option value="'.$_.'" '.
5796: ($saveSec eq $_ ? 'selected="on"':'').'>'.$_.'</option>'."\n";
5797: }
1.116 ng 5798: }
1.238 albertel 5799: $result.= '<option value="all" '.($saveSec eq 'all' ? 'selected="on"' : ''). '>all</option></select> ';
1.116 ng 5800:
1.167 sakharuk 5801: $result.=&mt('Student Status').':</b>'.&Apache::lonhtmlcommon::StatusOptions($saveStatus,undef,1,undef);
1.72 ng 5802:
1.116 ng 5803: $result.='</td></tr>';
5804:
1.288 albertel 5805: $result.='<tr bgcolor="#ffffe6"valign="top"><td><label>'.
1.118 ng 5806: '<input type="radio" name="radioChoice" value="submission" '.
1.326 albertel 5807: ($saveCmd eq 'submission' ? 'checked' : '').' /> '.'<b>'.&mt('Current Resource').':</b> '.&mt('For one or more students').
1.288 albertel 5808: '</label> <select name="submitonly">'.
1.145 albertel 5809: '<option value="yes" '.
1.326 albertel 5810: ($saveSub eq 'yes' ? 'selected="on"' : '').' />'.&mt('with submissions').'</option>'.
1.301 albertel 5811: '<option value="queued" '.
1.326 albertel 5812: ($saveSub eq 'queued' ? 'selected="on"' : '').' />'.&mt('in grading queue').'</option>'.
1.145 albertel 5813: '<option value="graded" '.
1.326 albertel 5814: ($saveSub eq 'graded' ? 'selected="on"' : '').' />'.&mt('with ungraded submissions').'</option>'.
1.156 albertel 5815: '<option value="incorrect" '.
1.326 albertel 5816: ($saveSub eq 'incorrect' ? 'selected="on"' : '').' />'.&mt('with incorrect submissions').'</option>'.
1.145 albertel 5817: '<option value="all" '.
1.326 albertel 5818: ($saveSub eq 'all' ? 'selected="on"' : '').' />'.&mt('with any status').'</option></select></td></tr>'."\n";
1.72 ng 5819:
1.116 ng 5820: $result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
1.288 albertel 5821: '<label><input type="radio" name="radioChoice" value="viewgrades" '.
1.326 albertel 5822: ($saveCmd eq 'viewgrades' ? 'checked' : '').' /> '.
1.288 albertel 5823: '<b>Current Resource:</b> For all students in selected section or course</label></td></tr>'."\n";
1.72 ng 5824:
1.118 ng 5825: $result.='<tr bgcolor="#ffffe6" valign="top"><td>'.
1.288 albertel 5826: '<label><input type="radio" name="radioChoice" value="pickStudentPage" '.
1.326 albertel 5827: ($saveCmd eq 'pickStudentPage' ? 'checked' : '').' /> '.
1.288 albertel 5828: 'The <b>complete</b> set/page/sequence: For one student</label></td></tr>'."\n";
1.46 ng 5829:
1.116 ng 5830: $result.='<tr bgcolor="#ffffe6"><td><br />'.
1.126 ng 5831: '<input type="button" onClick="javascript:checkChoice(this.form,\'2\');" value="Next->" />'.
1.116 ng 5832: '</td></tr></table>'."\n";
5833:
5834: $result.='</td><td valign="top">';
5835:
1.326 albertel 5836: $result.='<table width="100%" border="0">';
1.116 ng 5837: $result.='<tr bgcolor="#ffffe6"><td>'.
1.184 www 5838: '<input type="button" onClick="javascript:checkChoice(this.form,\'3\',\'csvform\');" value="'.&mt('Upload').'" />'.
5839: ' '.&mt('scores from file').' </td></tr>'."\n";
1.72 ng 5840:
1.75 albertel 5841: $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
1.116 ng 5842: '<input type="button" onClick="javascript:checkChoice(this.form,\'4\',\'scantron_selectphase\');'.
1.184 www 5843: '" value="'.&mt('Grade').'" /> scantron forms</td></tr>'."\n";
1.75 albertel 5844:
1.257 albertel 5845: if ((&Apache::lonnet::allowed('mgr',$env{'request.course.id'})) && ($symb)) {
1.72 ng 5846: $result.='<tr bgcolor="#ffffe6"valign="top"><td>'.
1.184 www 5847: '<input type="button" onClick="javascript:checkChoice(this.form,\'5\',\'verify\');" value="'.&mt('Verify').'" />'.
5848: ' '.&mt('receipt').': '.
1.257 albertel 5849: &Apache::lonnet::recprefix($env{'request.course.id'}).
1.326 albertel 5850: '-<input type="text" name="receipt" size="4" onChange="javascript:checkReceiptNo(this.form,\'OK\')" />'.
1.72 ng 5851: '</td></tr>'."\n";
5852: }
1.238 albertel 5853: $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
5854: '<input type="button" onClick="javascript:this.form.action=\'/adm/helper/resettimes.helper\';this.form.submit();'.
5855: '" value="'.&mt('Manage').'" /> access times.</td></tr>'."\n";
1.279 albertel 5856: $result.='<tr bgcolor="#ffffe6"valign="top"><td colspan="2">'.
5857: '<input type="button" onClick="javascript:this.form.command.value=\'codelist\';this.form.action=\'/adm/pickcode\';this.form.submit();'.
5858: '" value="'.&mt('View').'" /> saved CODEs.</td></tr>'."\n";
1.44 ng 5859:
1.116 ng 5860: $result.='</form></td></tr></table>'."\n".
1.72 ng 5861: '</td></tr></table>'."\n".
5862: '</td></tr></table>'."\n";
1.44 ng 5863: return $result;
1.2 albertel 5864: }
5865:
1.285 albertel 5866: sub reset_perm {
5867: undef(%perm);
5868: }
5869:
5870: sub init_perm {
5871: &reset_perm();
1.300 albertel 5872: foreach my $test_perm ('vgr','mgr','opa') {
5873:
5874: my $scope = $env{'request.course.id'};
5875: if (!($perm{$test_perm}=&Apache::lonnet::allowed($test_perm,$scope))) {
5876:
5877: $scope .= '/'.$env{'request.course.sec'};
5878: if ( $perm{$test_perm}=
5879: &Apache::lonnet::allowed($test_perm,$scope)) {
5880: $perm{$test_perm.'_section'}=$env{'request.course.sec'};
5881: } else {
5882: delete($perm{$test_perm});
5883: }
1.285 albertel 5884: }
5885: }
5886: }
5887:
1.1 albertel 5888: sub handler {
1.41 ng 5889: my $request=$_[0];
1.102 albertel 5890:
1.285 albertel 5891: &reset_perm();
1.257 albertel 5892: if ($env{'browser.mathml'}) {
1.141 www 5893: &Apache::loncommon::content_type($request,'text/xml');
1.41 ng 5894: } else {
1.141 www 5895: &Apache::loncommon::content_type($request,'text/html');
1.41 ng 5896: }
5897: $request->send_http_header;
1.44 ng 5898: return '' if $request->header_only;
1.41 ng 5899: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.324 albertel 5900: my $symb=&get_symb($request,1);
1.160 albertel 5901: my @commands=&Apache::loncommon::get_env_multiple('form.command');
5902: my $command=$commands[0];
5903: if ($#commands > 0) {
5904: &Apache::lonnet::logthis("grades got multiple commands ".join(':',@commands));
5905: }
1.41 ng 5906: &send_header($request);
1.324 albertel 5907: if ($symb eq '' && $command eq '') {
1.257 albertel 5908: if ($env{'user.adv'}) {
5909: if (($env{'form.codeone'}) && ($env{'form.codetwo'}) &&
5910: ($env{'form.codethree'})) {
5911: my $token=$env{'form.codeone'}.'*'.$env{'form.codetwo'}.'*'.
5912: $env{'form.codethree'};
1.41 ng 5913: my ($tsymb,$tuname,$tudom,$tcrsid)=
5914: &Apache::lonnet::checkin($token);
5915: if ($tsymb) {
1.137 albertel 5916: my ($map,$id,$url)=&Apache::lonnet::decode_symb($tsymb);
1.41 ng 5917: if (&Apache::lonnet::allowed('mgr',$tcrsid)) {
1.99 albertel 5918: $request->print(&Apache::lonnet::ssi_body('/res/'.$url,
5919: ('grade_username' => $tuname,
5920: 'grade_domain' => $tudom,
5921: 'grade_courseid' => $tcrsid,
5922: 'grade_symb' => $tsymb)));
1.41 ng 5923: } else {
1.45 ng 5924: $request->print('<h3>Not authorized: '.$token.'</h3>');
1.99 albertel 5925: }
1.41 ng 5926: } else {
1.45 ng 5927: $request->print('<h3>Not a valid DocID: '.$token.'</h3>');
1.41 ng 5928: }
1.14 www 5929: } else {
1.41 ng 5930: $request->print(&Apache::lonxml::tokeninputfield());
5931: }
5932: }
5933: } else {
1.285 albertel 5934: &init_perm();
1.104 albertel 5935: if ($command eq 'submission' && $perm{'vgr'}) {
1.257 albertel 5936: ($env{'form.student'} eq '' ? &listStudents($request) : &submission($request,0,0));
1.103 albertel 5937: } elsif ($command eq 'pickStudentPage' && $perm{'vgr'}) {
1.68 ng 5938: &pickStudentPage($request);
1.103 albertel 5939: } elsif ($command eq 'displayPage' && $perm{'vgr'}) {
1.68 ng 5940: &displayPage($request);
1.104 albertel 5941: } elsif ($command eq 'gradeByPage' && $perm{'mgr'}) {
1.71 ng 5942: &updateGradeByPage($request);
1.104 albertel 5943: } elsif ($command eq 'processGroup' && $perm{'vgr'}) {
1.41 ng 5944: &processGroup($request);
1.104 albertel 5945: } elsif ($command eq 'gradingmenu' && $perm{'vgr'}) {
1.41 ng 5946: $request->print(&gradingmenu($request));
1.104 albertel 5947: } elsif ($command eq 'viewgrades' && $perm{'vgr'}) {
1.41 ng 5948: $request->print(&viewgrades($request));
1.104 albertel 5949: } elsif ($command eq 'handgrade' && $perm{'mgr'}) {
1.41 ng 5950: $request->print(&processHandGrade($request));
1.106 albertel 5951: } elsif ($command eq 'editgrades' && $perm{'mgr'}) {
1.41 ng 5952: $request->print(&editgrades($request));
1.106 albertel 5953: } elsif ($command eq 'verify' && $perm{'vgr'}) {
1.41 ng 5954: $request->print(&verifyreceipt($request));
1.106 albertel 5955: } elsif ($command eq 'csvform' && $perm{'mgr'}) {
1.72 ng 5956: $request->print(&upcsvScores_form($request));
1.106 albertel 5957: } elsif ($command eq 'csvupload' && $perm{'mgr'}) {
1.41 ng 5958: $request->print(&csvupload($request));
1.106 albertel 5959: } elsif ($command eq 'csvuploadmap' && $perm{'mgr'} ) {
1.41 ng 5960: $request->print(&csvuploadmap($request));
1.246 albertel 5961: } elsif ($command eq 'csvuploadoptions' && $perm{'mgr'}) {
1.257 albertel 5962: if ($env{'form.associate'} ne 'Reverse Association') {
1.246 albertel 5963: $request->print(&csvuploadoptions($request));
1.41 ng 5964: } else {
1.257 albertel 5965: if ( $env{'form.upfile_associate'} ne 'reverse' ) {
5966: $env{'form.upfile_associate'} = 'reverse';
1.41 ng 5967: } else {
1.257 albertel 5968: $env{'form.upfile_associate'} = 'forward';
1.41 ng 5969: }
5970: $request->print(&csvuploadmap($request));
5971: }
1.246 albertel 5972: } elsif ($command eq 'csvuploadassign' && $perm{'mgr'} ) {
5973: $request->print(&csvuploadassign($request));
1.106 albertel 5974: } elsif ($command eq 'scantron_selectphase' && $perm{'mgr'}) {
1.75 albertel 5975: $request->print(&scantron_selectphase($request));
1.203 albertel 5976: } elsif ($command eq 'scantron_warning' && $perm{'mgr'}) {
5977: $request->print(&scantron_do_warning($request));
1.142 albertel 5978: } elsif ($command eq 'scantron_validate' && $perm{'mgr'}) {
5979: $request->print(&scantron_validate_file($request));
1.106 albertel 5980: } elsif ($command eq 'scantron_process' && $perm{'mgr'}) {
1.82 albertel 5981: $request->print(&scantron_process_students($request));
1.157 albertel 5982: } elsif ($command eq 'scantronupload' &&
1.257 albertel 5983: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
5984: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.162 albertel 5985: $request->print(&scantron_upload_scantron_data($request));
1.157 albertel 5986: } elsif ($command eq 'scantronupload_save' &&
1.257 albertel 5987: (&Apache::lonnet::allowed('usc',$env{'request.role.domain'})||
5988: &Apache::lonnet::allowed('usc',$env{'request.course.id'}))) {
1.157 albertel 5989: $request->print(&scantron_upload_scantron_data_save($request));
1.202 albertel 5990: } elsif ($command eq 'scantron_download' &&
1.257 albertel 5991: &Apache::lonnet::allowed('usc',$env{'request.course.id'})) {
1.162 albertel 5992: $request->print(&scantron_download_scantron_data($request));
1.106 albertel 5993: } elsif ($command) {
1.157 albertel 5994: $request->print("Access Denied ($command)");
1.26 albertel 5995: }
1.2 albertel 5996: }
1.41 ng 5997: &send_footer($request);
1.44 ng 5998: return '';
5999: }
6000:
6001: sub send_header {
6002: my ($request)= @_;
1.340 albertel 6003: &Apache::lontexconvert::init_tth();
1.339 albertel 6004: $request->print(&Apache::loncommon::start_page('Grading'));
1.157 albertel 6005: $request->rflush();
1.44 ng 6006: }
6007:
6008: sub send_footer {
6009: my ($request)= @_;
1.339 albertel 6010: $request->print(&Apache::loncommon::end_page());
1.1 albertel 6011: }
6012:
6013: 1;
6014:
1.13 albertel 6015: __END__;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>