| 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.79 2004/06/25 23:56:56 jj Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.80 2004/06/26 20:40:17 jj 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 | answer_log => "$courseDirs{logs}/answer_log", |
108 | answer_log => "$courseDirs{logs}/answer_log", |
| 109 | }, |
109 | }, |
| 110 | course_info => "course_info.txt", # path relative to templates directory |
110 | course_info => "course_info.txt", # path relative to templates directory |
| 111 | login_info => "login_info.txt", # path relative to templates directory |
111 | login_info => "login_info.txt", # path relative to templates directory |
| 112 | ); |
112 | ); |
|
|
113 | |
|
|
114 | # |
|
|
115 | # Additional library buttons can be added to the Library Browser (SetMaker.pm) |
|
|
116 | # by adding the libraries you want to the following line. For each key=>value |
|
|
117 | # in the list, if a directory (or link to a directory) with name 'key' appears |
|
|
118 | # in the templates directory, then a button with name 'value' will be placed at |
|
|
119 | # the top of the problem browser. (No button will appear if there is no directory |
|
|
120 | # or link with the given name in the templates directory.) For example, |
|
|
121 | # |
|
|
122 | # $courseFiles{problibs} = {rochester => "Rochester", asu => "ASU"}; |
|
|
123 | # |
|
|
124 | # would add two buttons, one for the Rochester library and one for the ASU |
|
|
125 | # library, provided templates/rochester and templates/asu exists. |
|
|
126 | # |
|
|
127 | $courseFiles{problibs} = {}; |
|
|
128 | |
| 113 | |
129 | |
| 114 | # quick hack to fix transaction logging. blah. |
130 | # quick hack to fix transaction logging. blah. |
| 115 | $webworkFiles{logs}->{transaction} = "$courseDirs{logs}/transaction.log"; |
131 | $webworkFiles{logs}->{transaction} = "$courseDirs{logs}/transaction.log"; |
| 116 | $webworkFiles{logs}->{pastAnswerList} = "$courseDirs{logs}/past_answers.log"; |
132 | $webworkFiles{logs}->{pastAnswerList} = "$courseDirs{logs}/past_answers.log"; |
| 117 | |
133 | |