blob: 60f5a800df4b86fb5bfb5f60c58b766826388448 [file] [log] [blame]
# please insert nothing before this line: -*- mode: cperl; cperl-indent-level: 4; cperl-continued-statement-offset: 4; indent-tabs-mode: nil -*-
package TestFilter::in_str_lc;
use strict;
use warnings FATAL => 'all';
use Apache2::RequestRec ();
use Apache2::RequestIO ();
use Apache2::Filter ();
use TestCommon::Utils ();
use Apache2::Const -compile => qw(OK M_POST);
sub handler {
my $filter = shift;
while ($filter->read(my $buffer, 1024)) {
#warn "FILTER READ: $buffer\n";
$filter->print(lc $buffer);
}
return Apache2::Const::OK;
}
sub response {
my $r = shift;
$r->content_type('text/plain');
if ($r->method_number == Apache2::Const::M_POST) {
my $data = TestCommon::Utils::read_post($r);
#warn "HANDLER READ: $data\n";
$r->print($data);
}
Apache2::Const::OK;
}
1;
__DATA__
SetHandler modperl
PerlModule TestFilter::in_str_lc
PerlResponseHandler TestFilter::in_str_lc::response