| 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: webwork2/conf/global.conf.dist,v 1.106 2004/09/29 21:38:00 sh002i Exp $ |
5 | # $CVSHeader: webwork2/conf/global.conf.dist,v 1.107 2004/10/04 18:24:14 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. |
| … | |
… | |
| 362 | # Site defaults (FIXME: what other things could be "site defaults"?) |
362 | # Site defaults (FIXME: what other things could be "site defaults"?) |
| 363 | ################################################################################ |
363 | ################################################################################ |
| 364 | |
364 | |
| 365 | # Status strings -- lists valid status values and their names. If your site uses |
365 | # Status strings -- lists valid status values and their names. If your site uses |
| 366 | # additional values, add them here. |
366 | # additional values, add them here. |
|
|
367 | # Status strings -- lists valid status values and their names. If your site uses |
|
|
368 | # additional values, add them here. |
| 367 | $siteDefaults{status} = { |
369 | $siteDefaults{status} = { |
| 368 | A => "Audit", |
370 | A => "Audit", |
|
|
371 | a => "Audit", |
| 369 | audit => "Audit", |
372 | audit => "Audit", |
| 370 | D => "Drop", |
373 | D => "Drop", |
|
|
374 | d => "Drop", |
| 371 | drop => "Drop", |
375 | drop => "Drop", |
| 372 | withdraw => "Drop", |
376 | withdraw => "Drop", |
| 373 | C => "Enrolled", |
377 | C => "Enrolled", |
|
|
378 | c => "Enrolled", |
| 374 | current => "Enrolled", |
379 | current => "Enrolled", |
| 375 | enrolled => "Enrolled", |
380 | enrolled => "Enrolled", |
| 376 | }; |
381 | }; |
| 377 | |
382 | |
| 378 | # Set the default timezone of courses on this server. To get a list of valid |
383 | # Set the default timezone of courses on this server. To get a list of valid |