| 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/database.conf.dist,v 1.6 2004/02/14 00:53:17 sh002i Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/database.conf.dist,v 1.7 2004/02/14 04:07:37 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. |
| … | |
… | |
| 167 | only be visible to this user when logging into WeBWorK 1.x. |
167 | only be visible to this user when logging into WeBWorK 1.x. |
| 168 | |
168 | |
| 169 | Use the following code to override these values in a course's F<course.conf> |
169 | Use the following code to override these values in a course's F<course.conf> |
| 170 | file: |
170 | file: |
| 171 | |
171 | |
| 172 | $dbLayouts{sql}->{set}->{params}->{globalUserID} = "some_user"; |
172 | $dbLayouts{gdbm}->{set}->{params}->{globalUserID} = "some_user"; |
| 173 | $dbLayouts{sql}->{problem}->{params}->{globalUserID} = "some_user"; |
173 | $dbLayouts{gdbm}->{problem}->{params}->{globalUserID} = "some_user"; |
| 174 | |
174 | |
| 175 | =cut |
175 | =cut |
| 176 | |
176 | |
| 177 | my %gdbmGlobalTableParams = ( |
177 | my %gdbmGlobalTableParams = ( |
| 178 | globalUserID => "global_user", |
178 | globalUserID => "global_user", |