| 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: webwork-modperl/lib/WeBWorK/ContentGenerator.pm,v 1.80 2004/03/06 21:49:32 sh002i Exp $ |
4 | # $CVSHeader: webwork-modperl/lib/WeBWorK/ContentGenerator.pm,v 1.82 2004/03/10 02:30:32 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. |
| … | |
… | |
| 41 | use CGI qw(*ul *li); |
41 | use CGI qw(*ul *li); |
| 42 | use URI::Escape; |
42 | use URI::Escape; |
| 43 | use WeBWorK::Authz; |
43 | use WeBWorK::Authz; |
| 44 | use WeBWorK::DB; |
44 | use WeBWorK::DB; |
| 45 | use WeBWorK::Template qw(template); |
45 | use WeBWorK::Template qw(template); |
| 46 | use WeBWorK::Utils qw(readFile); |
|
|
| 47 | |
46 | |
| 48 | # This is a very unruly file, so I'm going to use very large comments to divide |
47 | # This is a very unruly file, so I'm going to use very large comments to divide |
| 49 | # it into logical sections. |
48 | # it into logical sections. |
| 50 | |
49 | |
| 51 | =head1 CONSTRUCTOR |
50 | =head1 CONSTRUCTOR |