Apache-iNcom
view release on metacpan or search on metacpan
lib/Apache/iNcom/Request.pm view on Meta::CPAN
# Check if we are called with a file or hash param
if ( ref $_[0] ) {
# We hope the caller knows what he was doing when
# he setup the parameter hash.
$params = shift;
$file = $params->{inputfile};
} else {
$file = shift;
# Create default params
# Since Include file can contain fragment,
my $debug = $r->dir_config( "EMBPERL_DEBUG" ) ||
$ENV{EMBPERL_DEBUG} || 0;
# Default = optRawInput + optDisableTableScan
# disable Table scan by default
my $options = $r->dir_config( "EMBPERL_OPTIONS" ) ||
$ENV{EMBPERL_OPTIONS} || 16 | 2048;
# optDisableFormData
$options |= 256 ;
$params = {
param => \@_,
( run in 0.786 second using v1.01-cache-2.11-cpan-b16cb0d3907 )