| 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.62 2004/05/16 23:33:00 sh002i Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.63 2004/05/21 23:41:49 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. |
| … | |
… | |
| 201 | # file of a particular course. |
201 | # file of a particular course. |
| 202 | #$dbLayoutName = "sql"; |
202 | #$dbLayoutName = "sql"; |
| 203 | $dbLayoutName = "gdbm"; |
203 | $dbLayoutName = "gdbm"; |
| 204 | |
204 | |
| 205 | *dbLayout = $dbLayouts{$dbLayoutName}; |
205 | *dbLayout = $dbLayouts{$dbLayoutName}; |
|
|
206 | |
|
|
207 | ################################################################################ |
|
|
208 | # Problem library options |
|
|
209 | ################################################################################ |
|
|
210 | |
|
|
211 | %problemLibrary = ( |
|
|
212 | root => "", # set to the top of the problem library, if its installed |
|
|
213 | sourceSQL => "ProblemLibrary", |
|
|
214 | userSQL => "webworkRead", |
|
|
215 | passwordSQL => "", |
|
|
216 | ); |
| 206 | |
217 | |
| 207 | ################################################################################ |
218 | ################################################################################ |
| 208 | # Authorization system |
219 | # Authorization system |
| 209 | ################################################################################ |
220 | ################################################################################ |
| 210 | |
221 | |
| … | |
… | |
| 338 | numZeroLevelTolDefault => 1E-12, |
349 | numZeroLevelTolDefault => 1E-12, |
| 339 | useBaseTenLog => 0, |
350 | useBaseTenLog => 0, |
| 340 | defaultDisplayMatrixStyle => "[s]", |
351 | defaultDisplayMatrixStyle => "[s]", |
| 341 | }, |
352 | }, |
| 342 | ); |
353 | ); |
| 343 | |
|
|
| 344 | %problemLibrary = ( |
|
|
| 345 | root => "", # set to the top of the problem library, if its installed |
|
|
| 346 | sourceSQL => "ProblemLibrary", |
|
|
| 347 | userSQL => "webworkRead", |
|
|
| 348 | passwordSQL => "", |
|
|
| 349 | ) |
|
|
| 350 | |
|
|