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