--- loncom/homework/grades.pm 2010/05/22 01:01:03 1.574.2.12 +++ loncom/homework/grades.pm 2009/05/23 19:01:13 1.575 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # The LON-CAPA Grading handler # -# $Id: grades.pm,v 1.574.2.12 2010/05/22 01:01:03 raeburn Exp $ +# $Id: grades.pm,v 1.575 2009/05/23 19:01:13 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -97,15 +97,9 @@ sub ssi_print_error { # # --- Retrieve the parts from the metadata file.--- sub getpartlist { - my ($symb,$errorref) = @_; + my ($symb) = @_; my $navmap = Apache::lonnavmaps::navmap->new(); - unless (ref($navmap)) { - if (ref($errorref)) { - $$errorref = 'navmap'; - return; - } - } my $res = $navmap->getBySymb($symb); my $partlist = $res->parts(); my $url = $res->src(); @@ -150,15 +144,9 @@ sub nameUserString { #--- Get the partlist and the response type for a given problem. --- #--- Indicate if a response type is coded handgraded or not. --- sub response_type { - my ($symb,$response_error) = @_; + my ($symb) = shift; my $navmap = Apache::lonnavmaps::navmap->new(); - unless (ref($navmap)) { - if (ref($response_error)) { - $$response_error = 1; - } - return; - } my $res = $navmap->getBySymb($symb); my $partlist = $res->parts(); my %vPart = @@ -205,17 +193,12 @@ sub get_display_part { #--- Show resource title #--- and parts and response type sub showResourceInfo { - my ($symb,$probTitle,$checkboxes,$res_error) = @_; + my ($symb,$probTitle,$checkboxes) = @_; my $col=3; if ($checkboxes) { $col=4; } my $result = '

'.&mt('Current Resource').': '.$probTitle.'

'."\n"; - my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error); - if (ref($res_error)) { - if ($$res_error) { - return; - } - } $result .=''; + my ($partlist,$handgrade,$responseType) = &response_type($symb); my %resptype = (); my $hdgrade='no'; my %partsseen; @@ -771,7 +754,7 @@ sub verifyreceipt { my $title.= '

'. - &mt('Verifying Receipt No. [_1]',$receipt). + &mt('Verifying Receipt No. [_1]',$receipt). '

'."\n". '

'.&mt('Resource: [_1]',$env{'form.probTitle'}). '

'."\n"; @@ -783,13 +766,7 @@ sub verifyreceipt { if ($env{"course.$courseid.receiptalg"} eq 'receipt2' || $env{"course.$courseid.receiptalg"} eq 'receipt3') { $receiptparts=1; } my $parts=['0']; - if ($receiptparts) { - my $res_error; - ($parts)=&response_type($symb,\$res_error); - if ($res_error) { - return &navmap_errormsg(); - } - } + if ($receiptparts) { ($parts)=&response_type($symb); } my $header = &Apache::loncommon::start_data_table(). @@ -831,11 +808,11 @@ sub verifyreceipt { } } if ($matches == 0) { - $string = $title.&mt('No match found for the above receipt number.'); + $string = $title.&mt('No match found for the above receipt.'); } else { $string = &jscriptNform($symb).$title. '

'. - &mt('The above receipt number matches the following [numerate,_1,student].',$matches). + &mt('The above receipt matches the following [numerate,_1,student].',$matches). '

'. $header. $contents. @@ -1754,8 +1731,11 @@ sub gradeBox { } $line.=''."\n"; + + #&mt('',$display_part,$radio,$line); $result .= - ''; + ''. + $result.='
Part:[_1]Points:[_2]or[_3]'.&mt('Part').':'.$display_part.''.&mt('Points').':'.$radio.''.&mt('or').''.$line.''.&mt('Part').':'.$display_part.''.&mt('Points').':'.$radio.''.&mt('or').''.$line.'
'."\n"; $result.=''."\n". ''."\n". @@ -1765,19 +1745,15 @@ sub gradeBox { $$record{'resource.'.$partid.'.tries'}.'" />'."\n". ''."\n"; - my $res_error; - $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record,\$res_error); - if ($res_error) { - return &navmap_errormsg(); - } + $result.=&handback_box($symb,$uname,$udom,$counter,$partid,$record); return $result; } sub handback_box { - my ($symb,$uname,$udom,$counter,$partid,$record,$res_error) = @_; - my ($partlist,$handgrade,$responseType) = &response_type($symb,$res_error); + my ($symb,$uname,$udom,$counter,$partid,$record) = @_; + my ($partlist,$handgrade,$responseType) = &response_type($symb); my (@respids); - my @part_response_id = &flatten_responseType($responseType); + my @part_response_id = &flatten_responseType($responseType); foreach my $part_response_id (@part_response_id) { my ($part,$resp) = @{ $part_response_id }; if ($part eq $partid) { @@ -2070,12 +2046,7 @@ KEYWORDS } my %record = &Apache::lonnet::restore($symb,$env{'request.course.id'},$udom,$uname); - my $res_error; - my ($partlist,$handgrade,$responseType) = &response_type($symb,\$res_error); - if ($res_error) { - $request->print(&navmap_errormsg()); - return; - } + my ($partlist,$handgrade,$responseType) = &response_type($symb); # Display student info $request->print(($counter == 0 ? '' : '
')); @@ -2325,7 +2296,7 @@ KEYWORDS ''."\n"; my $nsel = ($env{'form.NTSTU'} ne '' ? $env{'form.NTSTU'} : '1'); $ntstu =~ s/