| 1 | ################################################################################ |
1 | ################################################################################ |
| 2 | # WeBWorK Online Homework Delivery System |
2 | # WeBWorK Online Homework Delivery System |
| 3 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
3 | # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ |
| 4 | # $CVSHeader: webwork2/lib/WeBWorK.pm,v 1.66 2004/10/17 03:11:43 gage Exp $ |
4 | # $CVSHeader: webwork2/lib/WeBWorK.pm,v 1.67 2004/11/02 19:58:31 sh002i Exp $ |
| 5 | # |
5 | # |
| 6 | # This program is free software; you can redistribute it and/or modify it under |
6 | # This program is free software; you can redistribute it and/or modify it under |
| 7 | # the terms of either: (a) the GNU General Public License as published by the |
7 | # the terms of either: (a) the GNU General Public License as published by the |
| 8 | # Free Software Foundation; either version 2, or (at your option) any later |
8 | # Free Software Foundation; either version 2, or (at your option) any later |
| 9 | # version, or (b) the "Artistic License" which comes with this package. |
9 | # version, or (b) the "Artistic License" which comes with this package. |
| … | |
… | |
| 32 | object, it performs authentication and determines which subclass of |
32 | object, it performs authentication and determines which subclass of |
| 33 | C<WeBWorK::ContentGenerator> to call. |
33 | C<WeBWorK::ContentGenerator> to call. |
| 34 | |
34 | |
| 35 | =cut |
35 | =cut |
| 36 | |
36 | |
| 37 | BEGIN { $main::VERSION = "2.0"; } |
37 | BEGIN { $main::VERSION = "2.1"; } |
| 38 | |
38 | |
| 39 | use strict; |
39 | use strict; |
| 40 | use warnings; |
40 | use warnings; |
| 41 | use Apache::Constants qw(:common REDIRECT DONE); |
41 | use Apache::Constants qw(:common REDIRECT DONE); |
| 42 | |
42 | |