| 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,v 1.28 2002-09-27 23:53:40 sh002i Exp $ |
4 | # $Id: global.conf,v 1.29 2002-10-25 17:19:04 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. |
| … | |
… | |
| 17 | |
17 | |
| 18 | %webworkDirs = ( |
18 | %webworkDirs = ( |
| 19 | root => "$webworkRoot", |
19 | root => "$webworkRoot", |
| 20 | bin => "$webworkRoot/bin", |
20 | bin => "$webworkRoot/bin", |
| 21 | conf => "$webworkRoot/conf", |
21 | conf => "$webworkRoot/conf", |
| 22 | courses => "/ww/webwork/courses", #"$webworkRoot/courses", # *** |
22 | courses => "/ww/webwork/courses", #"$webworkRoot/courses", |
| 23 | lib => "$webworkRoot/lib", |
23 | lib => "$webworkRoot/lib", |
| 24 | logs => "$webworkRoot/logs", |
24 | logs => "$webworkRoot/logs", |
| 25 | macros => "$webworkRoot/macros", |
25 | macros => "$webworkRoot/macros", |
| 26 | tmp => "$webworkRoot/tmp", |
26 | tmp => "$webworkRoot/tmp", |
| 27 | ); |
27 | ); |
| … | |
… | |
| 53 | screenSnippets => { |
53 | screenSnippets => { |
| 54 | setHeader => "$webworkDirs{conf}/screenSetHeader.pg", |
54 | setHeader => "$webworkDirs{conf}/screenSetHeader.pg", |
| 55 | }, |
55 | }, |
| 56 | logs => { |
56 | logs => { |
| 57 | timing => "$webworkDirs{logs}/timing.log", |
57 | timing => "$webworkDirs{logs}/timing.log", |
| 58 | #transaction => "$courseDirs{logs}/transaction.log", |
58 | transaction => "$courseDirs{logs}/transaction.log", |
| 59 | }, |
59 | }, |
| 60 | ); |
60 | ); |
| 61 | |
61 | |
| 62 | %courseFiles = ( |
62 | %courseFiles = ( |
| 63 | environment => "$courseDirs{root}/course.conf", |
63 | environment => "$courseDirs{root}/course.conf", |