From: Arnie P. v. a. <we...@ma...> - 2009-10-17 16:07:38
|
Log Message: ----------- Implement a Reduced Scoring Period. The Reduced Scoring Period is a period before the due date during which all additional work done by the student counts at a reduced rate. Modified Files: -------------- webwork2/lib/WeBWorK/PG: Local.pm Revision Data ------------- Index: Local.pm =================================================================== RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/PG/Local.pm,v retrieving revision 1.27 retrieving revision 1.28 diff -Llib/WeBWorK/PG/Local.pm -Llib/WeBWorK/PG/Local.pm -u -r1.27 -r1.28 --- lib/WeBWorK/PG/Local.pm +++ lib/WeBWorK/PG/Local.pm @@ -358,6 +358,7 @@ #warn "PG: retrieving the problem state and giving it to the translator\n"; $translator->rh_problem_state({ recorded_score => $problem->status, + sub_recorded_score => $problem->sub_status, num_of_correct_ans => $problem->num_correct, num_of_incorrect_ans => $problem->num_incorrect, }); @@ -390,7 +391,7 @@ ($result, $state) = $translator->grade_problem( answers_submitted => $translationOptions->{processAnswers}, ANSWER_ENTRY_ORDER => \@answerOrder, - %{$formFields}, #FIXME? this is used by sequentialGrader is there a better way? + %{$formFields}, #FIXME? this is used by sequentialGrader is there a better way ); } |