|
|
1 | ################################################################################ |
|
|
2 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
|
|
3 | # $Id$ |
|
|
4 | ################################################################################ |
|
|
5 | |
| 1 | package WeBWorK::ContentGenerator; |
6 | package WeBWorK::ContentGenerator; |
|
|
7 | |
|
|
8 | =head1 NAME |
|
|
9 | |
|
|
10 | WeBWorK::ContentGenerator - base class for modules that generate page content. |
|
|
11 | |
|
|
12 | =cut |
| 2 | |
13 | |
| 3 | use strict; |
14 | use strict; |
| 4 | use warnings; |
15 | use warnings; |
| 5 | use CGI (); |
|
|
| 6 | use Apache::Constants qw(:common); |
16 | use Apache::Constants qw(:common); |
|
|
17 | use CGI qw(); |
| 7 | |
18 | |
| 8 | # Send 'die' message to the browser window |
19 | # Send 'die' message to the browser window |
| 9 | #use CGI::Carp qw(fatalsToBrowser); |
20 | #use CGI::Carp qw(fatalsToBrowser); |
| 10 | |
21 | |
| 11 | |
22 | |