| 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: webwork2/conf/global.conf.dist,v 1.143 2005/09/30 19:15:26 sh002i Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.144 2005/09/30 19:36:49 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. |
| … | |
… | |
| 316 | # Course-specific files |
316 | # Course-specific files |
| 317 | ################################################################################ |
317 | ################################################################################ |
| 318 | |
318 | |
| 319 | # The course configuration file. |
319 | # The course configuration file. |
| 320 | $courseFiles{environment} = "$courseDirs{root}/course.conf"; |
320 | $courseFiles{environment} = "$courseDirs{root}/course.conf"; |
|
|
321 | |
|
|
322 | # The course simple configuration file (holds web-based configuratoin). |
|
|
323 | $courseFiles{simpleConfig} = "$courseDirs{root}/simple.conf"; |
| 321 | |
324 | |
| 322 | # File contents are displayed after login, on the problem sets page. Path given |
325 | # File contents are displayed after login, on the problem sets page. Path given |
| 323 | # here is relative to the templates directory. |
326 | # here is relative to the templates directory. |
| 324 | $courseFiles{course_info} = "course_info.txt"; |
327 | $courseFiles{course_info} = "course_info.txt"; |
| 325 | |
328 | |