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