| 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.161 2005/12/22 18:41:59 glarose Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.162 2006/01/24 23:34:20 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. |
| … | |
… | |
| 238 | # The root directory of the current course. (The ID of the current course is |
238 | # The root directory of the current course. (The ID of the current course is |
| 239 | # available in $courseName.) |
239 | # available in $courseName.) |
| 240 | $courseDirs{root} = "$webworkDirs{courses}/$courseName"; |
240 | $courseDirs{root} = "$webworkDirs{courses}/$courseName"; |
| 241 | |
241 | |
| 242 | # Location of course-specific data files, such as WW1 (GDBM) database files. |
242 | # Location of course-specific data files, such as WW1 (GDBM) database files. |
| 243 | $courseDirs{DATA} Ê Ê Ê Ê= "$courseDirs{root}/DATA"; |
243 | $courseDirs{DATA} = "$courseDirs{root}/DATA"; |
| 244 | |
244 | |
| 245 | # Location of course HTML files, passed to PG. |
245 | # Location of course HTML files, passed to PG. |
| 246 | $courseDirs{html} = "$courseDirs{root}/html"; |
246 | $courseDirs{html} = "$courseDirs{root}/html"; |
| 247 | $courseURLs{html} = "$webwork_courses_url/$courseName"; |
247 | $courseURLs{html} = "$webwork_courses_url/$courseName"; |
| 248 | |
248 | |