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
/
MyHandler.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
|
2003-11-16
|
325 b
|
20 lines
package Apache::MyHandler;
use strict;
use HTML::Mason::ApacheHandler;
my $ah =
HTML::Mason::ApacheHandler->new
( comp_root => 'D:/Apache2/mason',
data_dir => 'D:/Temp',
args_method => 'CGI',
);
sub handler {
my ($r) = @_;
return $ah->handle_request($r);
}
1;