| 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.53 2004/03/17 03:38:29 sh002i Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.59 2004/05/05 00:53:08 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. |
| … | |
… | |
| 42 | equationCache => "$webworkRoot/htdocs/tmp/equations", |
42 | equationCache => "$webworkRoot/htdocs/tmp/equations", |
| 43 | lib => "$webworkRoot/lib", |
43 | lib => "$webworkRoot/lib", |
| 44 | logs => "$webworkRoot/logs", |
44 | logs => "$webworkRoot/logs", |
| 45 | macros => "$pgRoot/macros", |
45 | macros => "$pgRoot/macros", |
| 46 | tmp => "$webworkRoot/tmp", |
46 | tmp => "$webworkRoot/tmp", |
|
|
47 | libraryRoot => "", # set to the top of the problem library, if its installed |
| 47 | ); |
48 | ); |
| 48 | |
49 | |
| 49 | %webworkFiles = ( |
50 | %webworkFiles = ( |
| 50 | environment => "$webworkDirs{conf}/global.conf", |
51 | environment => "$webworkDirs{conf}/global.conf", |
| 51 | hardcopySnippets => { |
52 | hardcopySnippets => { |
| … | |
… | |
| 163 | latex => "/usr/local/bin/latex", |
164 | latex => "/usr/local/bin/latex", |
| 164 | dvipng => "/usr/local/bin/dvipng", |
165 | dvipng => "/usr/local/bin/dvipng", |
| 165 | gif2eps => "$webworkDirs{bin}/gif2eps", |
166 | gif2eps => "$webworkDirs{bin}/gif2eps", |
| 166 | png2eps => "$webworkDirs{bin}/png2eps", |
167 | png2eps => "$webworkDirs{bin}/png2eps", |
| 167 | gif2png => "$webworkDirs{bin}/gif2png", |
168 | gif2png => "$webworkDirs{bin}/gif2png", |
|
|
169 | mysql => "/usr/local/bin/mysql", |
| 168 | ); |
170 | ); |
| 169 | |
171 | |
| 170 | ################################################################################ |
172 | ################################################################################ |
| 171 | # Frontend options |
173 | # Frontend options |
| 172 | ################################################################################ |
174 | ################################################################################ |
| … | |
… | |
| 209 | modify_student_data => $professor, |
211 | modify_student_data => $professor, |
| 210 | score_sets => $professor, |
212 | score_sets => $professor, |
| 211 | send_mail => $professor, |
213 | send_mail => $professor, |
| 212 | modify_classlist_files => $professor, |
214 | modify_classlist_files => $professor, |
| 213 | modify_set_def_files => $professor, |
215 | modify_set_def_files => $professor, |
|
|
216 | modify_scoring_files => $professor, |
|
|
217 | create_and_delete_courses => $professor, |
| 214 | ); |
218 | ); |
| 215 | |
219 | |
| 216 | ################################################################################ |
220 | ################################################################################ |
| 217 | # Session options |
221 | # Session options |
| 218 | ################################################################################ |
222 | ################################################################################ |
| … | |
… | |
| 251 | renderer => "WeBWorK::PG::Local", |
255 | renderer => "WeBWorK::PG::Local", |
| 252 | #renderer => "WeBWorK::PG::Remote", |
256 | #renderer => "WeBWorK::PG::Remote", |
| 253 | # directories used by PG |
257 | # directories used by PG |
| 254 | directories => { |
258 | directories => { |
| 255 | # directories used only by PG |
259 | # directories used only by PG |
|
|
260 | root => "$pgRoot", |
| 256 | lib => "$pgRoot/lib", |
261 | lib => "$pgRoot/lib", |
| 257 | macros => "$pgRoot/macros", |
262 | macros => "$pgRoot/macros", |
| 258 | }, |
263 | }, |
| 259 | options => { |
264 | options => { |
| 260 | # default translation options |
265 | # default translation options |
| … | |
… | |
| 318 | numFormatDefault => "", |
323 | numFormatDefault => "", |
| 319 | numRelPercentTolDefault => .1, |
324 | numRelPercentTolDefault => .1, |
| 320 | numZeroLevelDefault => 1E-14, |
325 | numZeroLevelDefault => 1E-14, |
| 321 | numZeroLevelTolDefault => 1E-12, |
326 | numZeroLevelTolDefault => 1E-12, |
| 322 | useBaseTenLog => 0, |
327 | useBaseTenLog => 0, |
|
|
328 | defaultDisplayMatrixStyle => "[s]", |
| 323 | }, |
329 | }, |
| 324 | ); |
330 | ); |