| 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.97 2004/08/23 19:14:42 jj Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.98 2004/08/27 21:13:22 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. |
| … | |
… | |
| 158 | # Note that both systems must share a single "courses" directory for this to be |
158 | # Note that both systems must share a single "courses" directory for this to be |
| 159 | # useful. Leave this blank to disable |
159 | # useful. Leave this blank to disable |
| 160 | $webworkURLs{oldProf} = "/webwork1/profLogin.pl"; |
160 | $webworkURLs{oldProf} = "/webwork1/profLogin.pl"; |
| 161 | |
161 | |
| 162 | # URL of WeBWorK Bugzilla database. |
162 | # URL of WeBWorK Bugzilla database. |
| 163 | $webworkURLs{bugReporter} = "http://bugs.webwork.rochester.edu/enter_bug.cgi?product=WeBWorK%20mod_perl"; |
163 | $webworkURLs{bugReporter} = "http://bugs.webwork.rochester.edu/"; |
| 164 | |
164 | |
| 165 | # Location of jsMath script, used for the jsMath display mode. |
165 | # Location of jsMath script, used for the jsMath display mode. |
| 166 | $webworkURLs{jsMath} = "$webworkURLs{htdocs}/jsMath/jsMath.js"; |
166 | $webworkURLs{jsMath} = "$webworkURLs{htdocs}/jsMath/jsMath.js"; |
| 167 | |
167 | |
| 168 | # Location of ASCIIMathML script, used for the asciimath display mode. |
168 | # Location of ASCIIMathML script, used for the asciimath display mode. |
| … | |
… | |
| 276 | # example, |
276 | # example, |
| 277 | # |
277 | # |
| 278 | # $courseFiles{problibs} = {rochester => "Rochester", asu => "ASU"}; |
278 | # $courseFiles{problibs} = {rochester => "Rochester", asu => "ASU"}; |
| 279 | # |
279 | # |
| 280 | # would add two buttons, one for the Rochester library and one for the ASU |
280 | # would add two buttons, one for the Rochester library and one for the ASU |
| 281 | # library, provided templates/rochester and templates/asu exists. |
281 | # library, provided templates/rochester and templates/asu exists either as |
|
|
282 | # subdirectories or links to other directories. |
| 282 | # |
283 | # |
| 283 | $courseFiles{problibs} = {}; |
284 | $courseFiles{problibs} = { |
|
|
285 | # rochesterLibrary => "Rochester", |
|
|
286 | # asuLibrary => "Arizona State", |
|
|
287 | # dcdsLibrary => "Detroit CDS", |
|
|
288 | # dartmouthLibrary => "Dartmouth", |
|
|
289 | # indianaLibrary => "Indiana", |
|
|
290 | # osuLibrary => "Ohio State", |
|
|
291 | }; |
| 284 | |
292 | |
| 285 | ################################################################################ |
293 | ################################################################################ |
| 286 | # Database options |
294 | # Database options |
| 287 | ################################################################################ |
295 | ################################################################################ |
| 288 | |
296 | |