home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2004 December
/
PCpro_2004_12.ISO
/
files
/
webserver
/
tsw
/
TSW_3.4.0.exe
/
Apache2
/
perl
/
TestReportPerl.pm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl POD Document
|
2002-05-14
|
370 b
|
21 lines
package Apache::TestReportPerl;
use strict;
use warnings FATAL => 'all';
use Apache::TestReport ();
use ModPerl::Config ();
# a subclass of Apache::TestReport that generates a bug report script
use vars qw(@ISA);
@ISA = qw(Apache::TestReport);
sub config {
ModPerl::Config::as_string();
}
sub report_to { 'dev@perl.apache.org' }
1;
__END__