From: Sam H. v. a. <we...@ma...> - 2005-12-13 19:36:33
|
Log Message: ----------- remove dummy checkboxes for the time being, sort of closing bug #805. Modified Files: -------------- webwork2/lib/WeBWorK/ContentGenerator/Instructor: Scoring.pm Revision Data ------------- Index: Scoring.pm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instr= uctor/Scoring.pm,v retrieving revision 1.52 retrieving revision 1.53 diff -Llib/WeBWorK/ContentGenerator/Instructor/Scoring.pm -Llib/WeBWorK/C= ontentGenerator/Instructor/Scoring.pm -u -r1.52 -r1.53 --- lib/WeBWorK/ContentGenerator/Instructor/Scoring.pm +++ lib/WeBWorK/ContentGenerator/Instructor/Scoring.pm @@ -165,20 +165,21 @@ }, ), CGI::br(), - CGI::checkbox({ -name=3D>'includeTotals', - -value=3D>1, - -label=3D>'Include Total score column', - -checked=3D>1, - }, - ), - CGI::br(), - CGI::checkbox({ -name=3D>'includePercent', - -value=3D>1, - -label=3D>'Include Percent correct column', - -checked=3D>1, - }, - ), - CGI::br(), + # These are not yet implemented + #CGI::checkbox({ -name=3D>'includeTotals', + # -value=3D>1, + # -label=3D>'Include Total score column', + # -checked=3D>1, + # }, + #), + #CGI::br(), + #CGI::checkbox({ -name=3D>'includePercent', + # -value=3D>1, + # -label=3D>'Include Percent correct column', + # -checked=3D>1, + # }, + #), + #CGI::br(), CGI::checkbox({ -name=3D>'recordSingleSetScores', -value=3D>1, -label=3D>'Record Scores for Single Sets', @@ -833,5 +834,5 @@ average number of incorrect attempts index =3D ( total_status / total_value )**2 / average_number_of_attem= pts =20 -"value" is the weight of the problem, in the range [0,=83), usually 1. +"value" is the weight of the problem, in the range [0,inf), usually 1. "status" is the correctness of a problem, in the range [0,1]. |