| 1 | #!perl |
1 | #!perl |
| 2 | ################################################################################ |
2 | ################################################################################ |
| 3 | # WeBWorK Online Homework Delivery System |
3 | # WeBWorK Online Homework Delivery System |
| 4 | # Copyright © 2000-2006 The WeBWorK Project, http://openwebwork.sf.net/ |
4 | # Copyright © 2000-2006 The WeBWorK Project, http://openwebwork.sf.net/ |
| 5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.175 2006/09/01 17:41:24 sh002i Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.176 2006/09/07 17:03:51 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. |
| … | |
… | |
| 395 | |
395 | |
| 396 | ################################################################################ |
396 | ################################################################################ |
| 397 | # Problem library options |
397 | # Problem library options |
| 398 | ################################################################################ |
398 | ################################################################################ |
| 399 | |
399 | |
|
|
400 | # For configuration instructions, see: |
|
|
401 | # http://devel.webwork.rochester.edu/twiki/bin/view/Webwork/DatabaseProblemLibrary |
|
|
402 | |
| 400 | # The directory containing the problem library files. Set to "" if no problem |
403 | # The directory containing the problem library files. Set to "" if no problem |
| 401 | # library is installed. |
404 | # library is installed. |
| 402 | $problemLibrary{root} = ""; |
405 | $problemLibrary{root} = ""; |
| 403 | |
406 | |
| 404 | # Problem Library version |
407 | # Problem Library version |
| 405 | # Version 1 is in use. Version 2 will be released soon. |
408 | # Version 1 is in use. Version 2 will be released soon. |
| 406 | $problemLibrary{version} = "1"; |
409 | $problemLibrary{version} = "2"; |
| 407 | |
410 | |
| 408 | # The name of the SQL database containing problem metadata |
411 | # The name of the SQL database containing problem metadata |
| 409 | $problemLibrary{sourceSQL} = "ProblemLibrary"; |
412 | $problemLibrary{sourceSQL} = "ProblemLibrary"; |
| 410 | |
413 | |
| 411 | # The user name to use when connecting to the problem library database |
414 | # The user name to use when connecting to the problem library database |
| 412 | $problemLibrary{userSQL} = "webworkRead"; |
415 | $problemLibrary{userSQL} = $database_username; |
| 413 | |
416 | |
| 414 | # The password to use when connecting to the problem library database |
417 | # The password to use when connecting to the problem library database |
| 415 | $problemLibrary{passwordSQL} = ""; |
418 | $problemLibrary{passwordSQL} = $database_password; |
| 416 | |
419 | |
| 417 | ################################################################################ |
420 | ################################################################################ |
| 418 | # Logs |
421 | # Logs |
| 419 | ################################################################################ |
422 | ################################################################################ |
| 420 | |
423 | |