Apache2-Translation
view release on metacpan or search on metacpan
$HEADERS
tied to "$r->headers_in"
$C tied to "$r->connection"
$CLIENTIP
tied to "$r->connection->remote_ip"
$KEEPALIVE
tied to "$r->connection->keepalive"
For more information see Apache2::RequestRec.
$MATCHED_URI
tied to "$r->notes('Apache2::Translation::n::uri')"
$MATCHED_PATH_INFO
tied to "$r->notes('Apache2::Translation::n::pathinfo')"
While in "PROC" state the incoming uri is split in 2 parts. The
lib/Apache2/Translation.pm view on Meta::CPAN
use Apache2::CmdParms ();
use Apache2::Directive ();
use Apache2::Module ();
use Apache2::Log ();
use Apache2::ModSSL ();
use APR::Table ();
use APR::SockAddr ();
use ModPerl::Util ();
use attributes;
use Apache2::Const -compile=>qw{:common :http
:conn_keepalive
:methods
:override
:satisfy
:types
:proxy
:options
ITERATE TAKE1 RAW_ARGS RSRC_CONF
LOG_DEBUG};
our $VERSION = '0.34';
lib/Apache2/Translation.pm view on Meta::CPAN
tie $QUERY_STRING, 'Apache2::Translation::_r', member=>'args';
tie $FILENAME, 'Apache2::Translation::_r', member=>'filename';
tie $DOCROOT, 'Apache2::Translation::_r', member=>'document_root';
tie $HOSTNAME, 'Apache2::Translation::_r', member=>'hostname';
tie $PATH_INFO, 'Apache2::Translation::_r', member=>'path_info';
tie $REQUEST, 'Apache2::Translation::_r', member=>'the_request';
tie $HEADERS, 'Apache2::Translation::_r', member=>'headers_in';
tie $C, 'Apache2::Translation::_r', member=>'connection';
tie $CLIENTIP, 'Apache2::Translation::_r', member=>'connection->remote_ip';
tie $KEEPALIVE, 'Apache2::Translation::_r', member=>'connection->keepalive';
tie $MATCHED_URI, 'Apache2::Translation::n', member=>'uri';
tie $MATCHED_PATH_INFO, 'Apache2::Translation::n', member=>'pathinfo';
tie $KEY, 'Apache2::Translation::n', member=>'key';
tie $DEBUG, 'Apache2::Translation::n', member=>'debug';
use constant {
START => 0,
PREPROC => 1,
lib/Apache2/Translation.pod view on Meta::CPAN
=item B<$C>
tied to C<$r-E<gt>connection>
=item B<$CLIENTIP>
tied to C<$r-E<gt>connection-E<gt>remote_ip>
=item B<$KEEPALIVE>
tied to C<$r-E<gt>connection-E<gt>keepalive>
For more information see L<Apache2::RequestRec>.
=item B<$MATCHED_URI>
tied to C<$r-E<gt>notes('Apache2::Translation::n::uri')>
=item B<$MATCHED_PATH_INFO>
tied to C<$r-E<gt>notes('Apache2::Translation::n::pathinfo')>
( run in 0.663 second using v1.01-cache-2.11-cpan-df04353d9ac )