| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
3 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
| 4 | # $Id: global.conf.dist,v 1.18 2003-04-23 06:35:06 sh002i Exp $ |
4 | # $Id: global.conf.dist,v 1.19 2003-06-04 23:47:33 malsyned Exp $ |
| 5 | ################################################################################ |
5 | ################################################################################ |
| 6 | |
6 | |
| 7 | # This file is used to set up the default WeBWorK course environment for all |
7 | # This file is used to set up the default WeBWorK course environment for all |
| 8 | # requests. Values may be overwritten by the course.conf for a specific course. |
8 | # requests. Values may be overwritten by the course.conf for a specific course. |
| 9 | # All package variables set in this file are added to the course environment. |
9 | # All package variables set in this file are added to the course environment. |
| … | |
… | |
| 220 | # certain actions. In the current system, >=10 will allow a professor |
220 | # certain actions. In the current system, >=10 will allow a professor |
| 221 | # to perform the action, >=5 will allow a TA to, and >=0 will allow a |
221 | # to perform the action, >=5 will allow a TA to, and >=0 will allow a |
| 222 | # student to perform an action (almost never what you want). |
222 | # student to perform an action (almost never what you want). |
| 223 | %permissionLevels = ( |
223 | %permissionLevels = ( |
| 224 | "become_student" => 10, |
224 | "become_student" => 10, |
|
|
225 | "access_instructor_tools" => $ta, |
|
|
226 | "create_and_delete_problem_sets" => $professor, |
|
|
227 | "modify_problem_sets" => $professor, |
|
|
228 | "assign_problem_sets" => $professor, |
| 225 | ); |
229 | ); |
| 226 | |
230 | |
| 227 | # $sessionKeyTimeout defines seconds of inactivity before a key expires |
231 | # $sessionKeyTimeout defines seconds of inactivity before a key expires |
| 228 | $sessionKeyTimeout = 60*30; |
232 | $sessionKeyTimeout = 60*30; |
| 229 | |
233 | |