| 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.60 2004/05/07 14:13:03 gage Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.61 2004/05/14 18:31:12 toenail 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. |
| … | |
… | |
| 108 | |
108 | |
| 109 | # quick hack to fix transaction logging. blah. |
109 | # quick hack to fix transaction logging. blah. |
| 110 | $webworkFiles{logs}->{transaction} = "$courseDirs{logs}/transaction.log"; |
110 | $webworkFiles{logs}->{transaction} = "$courseDirs{logs}/transaction.log"; |
| 111 | $webworkFiles{logs}->{pastAnswerList} = "$courseDirs{logs}/past_answers.log"; |
111 | $webworkFiles{logs}->{pastAnswerList} = "$courseDirs{logs}/past_answers.log"; |
| 112 | |
112 | |
| 113 | my $courseURLRoot = "/webwork2_courses/$courseName"; |
113 | my $courseURLRoot = "/webwork2_course_files/$courseName"; |
| 114 | %courseURLs = ( |
114 | %courseURLs = ( |
| 115 | root => "$courseURLRoot", |
115 | root => "$courseURLRoot", |
| 116 | html => "$courseURLRoot", |
116 | html => "$courseURLRoot", |
| 117 | html_temp => "$courseURLRoot/tmp", |
117 | html_temp => "$courseURLRoot/tmp", |
| 118 | ); |
118 | ); |