Apache-Voodoo
view release on metacpan or search on metacpan
layout of a site is no longer completely arbitrary as it was before, certain things are expected
to reside in certain locations. Completely arbitrary layouts yielded no real benefit, made the docs
more complex thus raising the initial learning curve, and introduced needless complexities
and hoop jumping.
Loads of bug fixes:
AV::Table is no longer destructive to the incoming configuration structure.
Made history capture only operate on GET requests. Capturing POSTs can lead to bad things
happening if you happen to redirect back to a posted history event...same thing applies
for PUTs. The side effect is that you now need to be more careful with your form method settings,
which we all should be doing anyway :)
1.13 - 9/15/2005
================
Works with DSO builds of mod_perl. The PerlRestartHandler isn't called the same way with ia DSO vs build in version of mod_perl
abstracted pagination control object (Apache::Voodoo::Pager)
various bug fixes
lib/Apache/Voodoo/Test.pm view on Meta::CPAN
}
return $self;
}
sub make_request {
my $self = shift;
$self->set_request();
if ($_[0] =~ /^(GET|POST|PUT|DELETE)$/) {
$self->method(shift);
$self->uri(shift);
}
else {
$self->method('GET');
$self->uri(shift);
}
$self->parameters(@_);
( run in 0.523 second using v1.01-cache-2.11-cpan-c6e0e5ac2a7 )