| 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.96 2004/08/04 20:54:35 dpvc Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.97 2004/08/23 19:14:42 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. |
| … | |
… | |
| 82 | |
82 | |
| 83 | # If defined, feedbackRecipients overrides the list of recipients for feedback |
83 | # If defined, feedbackRecipients overrides the list of recipients for feedback |
| 84 | # email. It's appropriate to set this in the course.conf for specific courses, |
84 | # email. It's appropriate to set this in the course.conf for specific courses, |
| 85 | # but probably not in global.conf. if not defined, mail is sent to all |
85 | # but probably not in global.conf. if not defined, mail is sent to all |
| 86 | # professors and TAs for a given course |
86 | # professors and TAs for a given course |
| 87 | # $mail{feedbackRecipients} = [ |
87 | #$mail{feedbackRecipients} = [ |
| 88 | #'prof1@yourserver.yourdomain.edu', |
88 | # 'prof1@yourserver.yourdomain.edu', |
| 89 | #'prof2@yourserver.yourdomain.edu', |
89 | # 'prof2@yourserver.yourdomain.edu', |
| 90 | # ]; |
90 | #]; |
| 91 | |
91 | |
| 92 | # feedbackVerbosity: |
92 | # feedbackVerbosity: |
| 93 | # 0: send only the feedback comment and context link |
93 | # 0: send only the feedback comment and context link |
| 94 | # 1: as in 0, plus user, set, problem, and PG data |
94 | # 1: as in 0, plus user, set, problem, and PG data |
| 95 | # 2: as in 1, plus the problem environment (debugging data) |
95 | # 2: as in 1, plus the problem environment (debugging data) |
| … | |
… | |
| 291 | include "conf/database.conf"; |
291 | include "conf/database.conf"; |
| 292 | |
292 | |
| 293 | # Select the default database layout. This can be overridden in the course.conf |
293 | # Select the default database layout. This can be overridden in the course.conf |
| 294 | # file of a particular course. If you choose "gdbm", WeBWorK will be able to |
294 | # file of a particular course. If you choose "gdbm", WeBWorK will be able to |
| 295 | # use courses from WeBWorK 1 without first adding course.conf files to them. |
295 | # use courses from WeBWorK 1 without first adding course.conf files to them. |
| 296 | # However, the recommended database layout for new courses is "sql". This can |
296 | # However, the recommended database layout for new courses is "sql_single". This |
| 297 | # be set when creating a course. |
297 | # can be set when creating a course. |
| 298 | $dbLayoutName = "sql"; # or "gdbm"; |
298 | $dbLayoutName = "sql_single"; # or "gdbm" or "sql" |
| 299 | |
299 | |
| 300 | # This sets the symbol "dbLayout" as an alias for the selected database layout. |
300 | # This sets the symbol "dbLayout" as an alias for the selected database layout. |
| 301 | *dbLayout = $dbLayouts{$dbLayoutName}; |
301 | *dbLayout = $dbLayouts{$dbLayoutName}; |
| 302 | |
302 | |
| 303 | ################################################################################ |
303 | ################################################################################ |