| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK Online Homework Delivery System |
3 | # WeBWorK Online Homework Delivery System |
| 4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
4 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
| 5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.45 2004/01/03 20:07:02 sh002i Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.46 2004/01/05 01:06:06 sh002i Exp $ |
| 6 | # |
6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify it under |
7 | # This program is free software; you can redistribute it and/or modify it under |
| 8 | # the terms of either: (a) the GNU General Public License as published by the |
8 | # the terms of either: (a) the GNU General Public License as published by the |
| 9 | # Free Software Foundation; either version 2, or (at your option) any later |
9 | # Free Software Foundation; either version 2, or (at your option) any later |
| 10 | # version, or (b) the "Artistic License" which comes with this package. |
10 | # version, or (b) the "Artistic License" which comes with this package. |
| … | |
… | |
| 95 | email => "$courseRoot/templates/email", |
95 | email => "$courseRoot/templates/email", |
| 96 | ); |
96 | ); |
| 97 | |
97 | |
| 98 | %courseFiles = ( |
98 | %courseFiles = ( |
| 99 | environment => "$courseDirs{root}/course.conf", |
99 | environment => "$courseDirs{root}/course.conf", |
| 100 | motd => "$courseDirs{root}/motd.txt", |
100 | motd => "$courseDirs{templates}/motd.txt", |
| 101 | logs => { |
101 | logs => { |
| 102 | answer_log => "$courseDirs{logs}/answer_log", |
102 | answer_log => "$courseDirs{logs}/answer_log", |
| 103 | }, |
103 | }, |
| 104 | course_info => "$courseDirs{root}/course_info.txt", |
104 | course_info => "$courseDirs{templates}/course_info.txt", |
| 105 | login_info => "$courseDirs{root}/login_info.txt", |
105 | login_info => "$courseDirs{templates}/login_info.txt", |
| 106 | ); |
106 | ); |
| 107 | |
107 | |
| 108 | # quick hack to fix transaction logging. blah. |
108 | # quick hack to fix transaction logging. blah. |
| 109 | $webworkFiles{logs}->{transaction} = "$courseDirs{logs}/transaction.log"; |
109 | $webworkFiles{logs}->{transaction} = "$courseDirs{logs}/transaction.log"; |
| 110 | $webworkFiles{logs}->{pastAnswerList} = "$courseDirs{logs}/past_answers.log"; |
110 | $webworkFiles{logs}->{pastAnswerList} = "$courseDirs{logs}/past_answers.log"; |