From: Gavin L. v. a. <we...@ma...> - 2005-12-21 23:22:14
|
Log Message: ----------- Gateway update: add view_proctored_tests permission level and gateway_grace_period parameter to global.conf. view_proctored_tests will be used to determine if proctored tests by default appear in a students' problem_set_list. gateway_grace_period is the time after the actual time limit for the set that we will still grade it. Modified Files: -------------- webwork2/conf: global.conf.dist Revision Data ------------- Index: global.conf.dist =================================================================== RCS file: /webwork/cvs/system/webwork2/conf/global.conf.dist,v retrieving revision 1.159 retrieving revision 1.160 diff -Lconf/global.conf.dist -Lconf/global.conf.dist -u -r1.159 -r1.160 --- conf/global.conf.dist +++ conf/global.conf.dist @@ -493,6 +493,7 @@ change_email_address => "student", proctor_quiz => "proctor", + view_proctored_tests => "ta", view_multiple_sets => "ta", view_unopened_sets => "ta", @@ -618,6 +619,10 @@ # password. Come to think of it, why do we even have this?! #$debugPracticeUser = "practice666"; +# Option for gateway tests; $gatewayGracePeriod is the time in seconds +# after the official due date during which we'll still grade the test +$gatewayGracePeriod = 150; + ################################################################################ # PG subsystem options ################################################################################ |