| 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.74 2004/06/15 14:55:04 sh002i Exp $ |
5 | # $CVSHeader: webwork-modperl/conf/global.conf.dist,v 1.75 2004/06/16 02:13:44 gage 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. |
| … | |
… | |
| 229 | # action (almost never what you want). |
229 | # action (almost never what you want). |
| 230 | my $ta = 5; |
230 | my $ta = 5; |
| 231 | my $professor = 10; |
231 | my $professor = 10; |
| 232 | %permissionLevels = ( |
232 | %permissionLevels = ( |
| 233 | report_bugs => 0, |
233 | report_bugs => 0, |
|
|
234 | view_multiple_sets => $ta, |
|
|
235 | view_unopened_sets => $ta, |
|
|
236 | view_unpublished_sets => $ta, |
|
|
237 | view_answers => $ta, |
| 234 | become_student => $professor, |
238 | become_student => $professor, |
| 235 | access_instructor_tools => $ta, |
239 | access_instructor_tools => $ta, |
| 236 | create_and_delete_problem_sets => $professor, |
240 | create_and_delete_problem_sets => $professor, |
| 237 | modify_problem_sets => $professor, |
241 | modify_problem_sets => $professor, |
| 238 | assign_problem_sets => $professor, |
242 | assign_problem_sets => $professor, |
| 239 | modify_student_data => $professor, |
243 | modify_student_data => $professor, |
| 240 | score_sets => $professor, |
244 | score_sets => $professor, |
| 241 | send_mail => $professor, |
245 | send_mail => $professor, |
| 242 | modify_classlist_files => $professor, |
246 | modify_classlist_files => $professor, |
| 243 | modify_set_def_files => $professor, |
247 | modify_set_def_files => $professor, |
| 244 | modify_scoring_files => $professor, |
248 | modify_scoring_files => $professor, |
| 245 | create_and_delete_courses => $professor, |
249 | create_and_delete_courses => $professor, |
| 246 | fix_course_databases => $professor, |
250 | fix_course_databases => $professor, |