| 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.23 2003-06-06 23:52:13 malsyned Exp $ |
4 | # $Id: global.conf.dist,v 1.24 2003-06-09 21:10:03 gage 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. |
| … | |
… | |
| 22 | %webworkDirs = ( |
22 | %webworkDirs = ( |
| 23 | root => "$webworkRoot", |
23 | root => "$webworkRoot", |
| 24 | bin => "$webworkRoot/bin", |
24 | bin => "$webworkRoot/bin", |
| 25 | conf => "$webworkRoot/conf", |
25 | conf => "$webworkRoot/conf", |
| 26 | courses => "$webworkRoot/courses", |
26 | courses => "$webworkRoot/courses", |
| 27 | lib => "$webworkRoot/lib", |
27 | lib => "$pgRoot/lib", |
| 28 | logs => "$webworkRoot/logs", |
28 | logs => "$webworkRoot/logs", |
| 29 | macros => "$pgRoot/macros", |
29 | macros => "$pgRoot/macros", |
| 30 | tmp => "$webworkRoot/tmp", |
30 | tmp => "$webworkRoot/tmp", |
| 31 | ); |
31 | ); |
| 32 | |
32 | |
| … | |
… | |
| 225 | }, |
225 | }, |
| 226 | ); |
226 | ); |
| 227 | |
227 | |
| 228 | # If you are using the GlobalTableEmulator, you need these to be set to |
228 | # If you are using the GlobalTableEmulator, you need these to be set to |
| 229 | # a user that will exist. Professors will probably want to override this |
229 | # a user that will exist. Professors will probably want to override this |
| 230 | # in their course's course.conf |
230 | # in their course's course.conf, using their own user name instead of "professor". |
| 231 | $dbLayout{set}->{params}->{globalUserID} = "professor"; |
231 | $dbLayout{set}->{params}->{globalUserID} = "professor"; |
| 232 | $dbLayout{problem}->{params}->{globalUserID} = "professor"; |
232 | $dbLayout{problem}->{params}->{globalUserID} = "professor"; |
| 233 | |
233 | |
| 234 | |
234 | |
| 235 | # This lets you specify a minimum permission level needed to perform |
235 | # This lets you specify a minimum permission level needed to perform |