The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "distribution:mod_perl Apache"

lib/Apache2/compat.pm River stage three • 155 direct dependents • 183 total dependents

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Log - Perl API for Apache Logging Methods River stage three • 155 direct dependents • 183 total dependents

"Apache2::Log" provides the Perl API for Apache logging methods. Depending on the the current "LogLevel" setting, only logging with the same log level or higher will be loaded. For example if the current "LogLevel" is set to *warning*, only messages ...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::MPM - Perl API for accessing Apache MPM information River stage three • 155 direct dependents • 183 total dependents

"Apache2::MPM" provides the Perl API for accessing Apache MPM information....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::URI - Perl API for manipulating URIs River stage three • 155 direct dependents • 183 total dependents

While "APR::URI" provides a generic API to dissect, adjust and put together any given URI string, "Apache2::URI" provides an API specific to Apache, by taking the information directly from the $r object. Therefore when manipulating the URI of the cur...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Util - Perl API for Misc Apache Utility functions River stage three • 155 direct dependents • 183 total dependents

Various Apache utilities that don't fit into any other group....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Build - Methods for locating and parsing bits of Apache source code River stage three • 155 direct dependents • 183 total dependents

This module provides methods for locating and parsing bits of Apache source code. Since mod_perl remembers what build options were used to build it, you can use this knowledge to rebuild it using the same options. Simply chdir to the mod_perl source ...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Const - Perl Interface for Apache Constants River stage three • 155 direct dependents • 183 total dependents

This package contains constants specific to "Apache" features. mod_perl 2.0 comes with several hundreds of constants, which you don't want to make available to your Perl code by default, due to CPU and memory overhead. Therefore when you want to use ...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::compat - 1.0 backward compatibility functions deprecated in 2.0 River stage three • 155 direct dependents • 183 total dependents

"Apache2::compat" provides mod_perl 1.0 compatibility layer and can be used to smooth the transition process to mod_perl 2.0. It includes functions that have changed their API or were removed in mod_perl 2.0. If your code uses any of those functions,...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Bundle::Apache2 - Install Apache mod_perl2 and related modules River stage three • 155 direct dependents • 183 total dependents

This bundle contains modules used by Apache mod_perl2. Asking CPAN.pm to install a bundle means to install the bundle itself along with all the modules contained in the CONTENTS section above. Modules that are up to date are not installed, of course....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Reload - Reload Perl Modules when Changed on Disk River stage three • 155 direct dependents • 183 total dependents

"Apache2::Reload" reloads modules that change on the disk. When Perl pulls a file via "require", it stores the filename in the global hash %INC. The next time Perl tries to "require" the same file, it sees the file in %INC and does not reload from di...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Module - Perl API for creating and working with Apache modules River stage three • 155 direct dependents • 183 total dependents

"Apache2::Module" provides the Perl API for creating and working with Apache modules See Apache Server Configuration Customization in Perl....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Filter - Perl API for Apache 2.0 Filtering River stage three • 155 direct dependents • 183 total dependents

"Apache2::Filter" provides Perl API for Apache 2.0 filtering framework. Make sure to read "the Filtering tutorial|docs::2.0::user::handlers::filters"....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Access - A Perl API for Apache request object: Access, Authentication and Authorization. River stage three • 155 direct dependents • 183 total dependents

The API provided by this module deals with access, authentication and authorization phases. "Apache2::Access" extends "Apache2::RequestRec"....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Status - Embedded interpreter status information River stage three • 155 direct dependents • 183 total dependents

The "Apache2::Status" module provides some information about the status of the Perl interpreter embedded in the server. Configure like so: <Location /perl-status> # disallow public access Order Deny, Allow Deny from all Allow from 127.0.0.1 SetHandle...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::porting - a helper module for mod_perl 1.0 to mod_perl 2.0 porting River stage three • 155 direct dependents • 183 total dependents

"Apache2::porting" helps to port mod_perl 1.0 code to run under mod_perl 2.0. It doesn't provide any back-compatibility functionality, however it knows to trap methods calls that are no longer in the mod_perl 2.0 API and tell what should be used inst...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Command - Perl API for accessing Apache module command information River stage three • 155 direct dependents • 183 total dependents

"Apache2::Command" provides the Perl API for accessing Apache module command information...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Process - Perl API for Apache process record River stage three • 155 direct dependents • 183 total dependents

"Apache2::Process" provides the API for the Apache process object, which you can retrieve with "$s->process": use Apache2::ServerRec (); $proc = $s->process;...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::HookRun - Perl API for Invoking Apache HTTP phases River stage three • 155 direct dependents • 183 total dependents

"Apache2::HookRun" exposes parts of the Apache HTTP protocol implementation, responsible for invoking callbacks for each HTTP Request cycle phase. Armed with that API, you could run some of the http protocol framework parts when implementing your own...

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::Response - Perl API for Apache HTTP request response methods River stage three • 155 direct dependents • 183 total dependents

"Apache2::Response" provides the Apache request object utilities API for dealing with HTTP response generation process....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC

Apache2::CmdParms - Perl API for Apache command parameters object River stage three • 155 direct dependents • 183 total dependents

"Apache2::CmdParms" provides the Perl API for Apache command parameters object....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC
110 results (0.024 seconds)