| 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.21 2003-06-05 20:48:39 sh002i Exp $ |
4 | # $Id: global.conf.dist,v 1.22 2003-06-06 21:47:23 sh002i 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. |
| 10 | # If you wish to set a variable here but omit it from the course environment, |
10 | # If you wish to set a variable here but omit it from the course environment, |
| 11 | # use the "my" keyword. The following variables are available to this file: |
11 | # use the "my" keyword. The following variables are available to this file: |
| 12 | # |
12 | # |
| 13 | # $webworkRoot directory that contains the WeBWorK distribution |
13 | # $webworkRoot directory that contains the WeBWorK distribution |
| 14 | # $webworkURL base URL handled by Apache::WeBWorK |
14 | # $webworkURL base URL handled by Apache::WeBWorK |
|
|
15 | # $pgRoot directory that contains the PG distribution |
| 15 | # $courseName name of the course being used |
16 | # $courseName name of the course being used |
| 16 | |
17 | |
| 17 | ################################################################################ |
18 | ################################################################################ |
| 18 | # WeBWorK settings |
19 | # WeBWorK settings |
| 19 | ################################################################################ |
20 | ################################################################################ |
| … | |
… | |
| 23 | bin => "$webworkRoot/bin", |
24 | bin => "$webworkRoot/bin", |
| 24 | conf => "$webworkRoot/conf", |
25 | conf => "$webworkRoot/conf", |
| 25 | courses => "$webworkRoot/courses", |
26 | courses => "$webworkRoot/courses", |
| 26 | lib => "$webworkRoot/lib", |
27 | lib => "$webworkRoot/lib", |
| 27 | logs => "$webworkRoot/logs", |
28 | logs => "$webworkRoot/logs", |
| 28 | macros => "$webworkRoot/macros", |
29 | macros => "$pgRoot/macros", |
| 29 | tmp => "$webworkRoot/tmp", |
30 | tmp => "$webworkRoot/tmp", |
| 30 | ); |
31 | ); |
| 31 | |
32 | |
| 32 | %webworkFiles = ( |
33 | %webworkFiles = ( |
| 33 | environment => "$webworkDirs{conf}/global.conf", |
34 | environment => "$webworkDirs{conf}/global.conf", |