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

Search results for "module:CGI::Application::PSGI"

CGI::Application::PSGI - PSGI Adapter for CGI::Application River stage one • 1 direct dependent • 1 total dependent

CGI::Application::PSGI is a runner to run CGI::Application application as a PSGI application....

MARKSTOS/CGI-Application-PSGI-1.00 - 07 Nov 2009 03:54:23 UTC

CGI::Application::Emulate::PSGI - a legacy-code-friendly PSGI adapter for CGI::Application River stage one • 1 direct dependent • 1 total dependent

CGI::Application::Emulate::PSGI allows a project based on CGI::Application to run as a PSGI application. Differences from CGI::Application::PSGI are: uses CGI.pm directly instead of CGI::PSGI CGI::Application::PSGI (that uses CGI::PSGI) does not supp...

KAZUHO/CGI-Application-Emulate-PSGI-0.02 - 07 Jan 2010 06:31:52 UTC

CGI::Application::Dispatch::PSGI - Dispatch requests to CGI::Application based objects using PSGI River stage two • 9 direct dependents • 11 total dependents

This module provides a way to look at the path (as returned by "$env->{PATH_INFO}") of the incoming request, parse off the desired module and its run mode, create an instance of that module and run it. It will translate a URI like this (in a persiste...

MARKSTOS/CGI-Application-Dispatch-3.12 - 14 Sep 2012 01:19:52 UTC

CGI::PSGI - Adapt CGI.pm to the PSGI protocol River stage two • 11 direct dependents • 35 total dependents

This module is for web application framework developers who currently uses CGI to handle query parameters, and would like for the frameworks to comply with the PSGI protocol. Only slight modifications should be required if the framework is already co...

MIYAGAWA/CGI-PSGI-0.15 - 17 May 2011 21:00:47 UTC

CGI::Snapp - An almost back-compat fork of CGI::Application River stage one • 6 direct dependents • 8 total dependents

A fork of CGI::Application (later CGI::Application::Dispatch etc) in order to understand how they work in sufficient detail that I can put CGI::Snapp etc into production - *in my own code* - as replacements for those modules. You are *strongly* encou...

RSAVAGE/CGI-Snapp-2.01 - 11 Sep 2016 01:13:27 UTC

CGI::Emulate::PSGI - PSGI adapter for CGI River stage two • 18 direct dependents • 59 total dependents

This module allows an application designed for the CGI environment to run in a PSGI environment, and thus on any of the backends that PSGI supports. It works by translating the environment provided by the PSGI specification to one expected by the CGI...

TOKUHIROM/CGI-Emulate-PSGI-0.23 - 08 May 2017 04:45:57 UTC

CGI::Header - Handle CGI.pm-compatible HTTP header properties River stage one • 2 direct dependents • 2 total dependents

This module is a utility class to manipulate a hash reference received by CGI.pm's "header()" method. This module isn't the replacement of the "header()" method, but complements CGI.pm. This module can be used in the following situation: 1. $header i...

ANAZAWA/CGI-Header-0.63 - 01 Aug 2013 08:19:26 UTC

CGI::Compile - Compile .cgi scripts to a code reference like ModPerl::Registry River stage two • 9 direct dependents • 17 total dependents

CGI::Compile is a utility to compile CGI scripts into a code reference that can run many times on its own namespace, as long as the script is ready to run on a persistent environment. NOTE: for best results, load CGI::Compile before any modules used ...

RKITOVER/CGI-Compile-0.26 - 30 Jul 2023 23:21:23 UTC

CGI::Header::PSGI - Generate PSGI-compatible response header arrayref River stage zero No dependents

This module can be used to convert CGI.pm-compatible HTTP header properties into PSGI response header array reference. This module requires your query class is orthogonal to a global variable %ENV. For example, CGI::PSGI adds the "env" attribute to C...

ANAZAWA/CGI-Header-PSGI-0.62001 - 31 Jul 2013 10:41:06 UTC

CGI::Application - Framework for building reusable web-applications River stage three • 118 direct dependents • 128 total dependents

It is intended that your Application Module will be implemented as a sub-class of CGI::Application. This is done simply as follows: package My::App; use base 'CGI::Application'; Notation and Conventions For the purpose of this document, we will refer...

MARTO/CGI-Application-4.61 - 02 Mar 2018 09:20:24 UTC

CGI::Alternatives - Documentation for alternative solutions to CGI.pm River stage zero No dependents

This module doesn't do anything, it exists solely to document alternatives to the CGI.pm module....

LEEJO/CGI-Alternatives-0.19 - 02 Dec 2021 15:01:26 UTC

Plack::Handler::CGI - CGI handler for Plack River stage four • 760 direct dependents • 1891 total dependents

This is a handler module to run any PSGI application as a CGI script....

MIYAGAWA/Plack-1.0051 - 05 Jan 2024 23:11:02 UTC

CGI::Snapp::Dispatch - Dispatch requests to CGI::Snapp-based objects River stage one • 1 direct dependent • 3 total dependents

This module provides a way to automatically look at the path info - $ENV{PATH_INFO} - of the incoming HTTP request, and to process that path info like this: o Parse off a module name o Parse off a run mode o Create an instance of that module (i.e. lo...

RSAVAGE/CGI-Snapp-Dispatch-2.00 - 03 Oct 2016 22:09:04 UTC

CGI::Header::Adapter - Base class for adapters River stage one • 2 direct dependents • 2 total dependents

This module inherits from CGI::Header, and also adds the following methods to the class: $headers = $header->as_arrayref Returns an arrayref which contains key-value pairs of HTTP headers. $header->as_arrayref; # => [ # 'Content-length' => '3002', # ...

ANAZAWA/CGI-Header-0.63 - 01 Aug 2013 08:19:26 UTC

CGI::Snapp::Demo::Two - A template-free demo of CGI::Snapp using N run modes River stage zero No dependents

Shows how to write a CGI script using CGI::Snapp, with several run modes. The output reports which methods were and were not entered per run mode....

RSAVAGE/CGI-Snapp-Demo-Two-1.02 - 17 Nov 2012 00:49:41 UTC

CGI::Snapp::Demo::One - A template-free demo of CGI::Snapp using just 1 run mode River stage zero No dependents

Shows how to write a minimal CGI script using CGI::Snapp, with 1 run mode....

RSAVAGE/CGI-Snapp-Demo-One-1.02 - 17 Nov 2012 00:45:21 UTC

CGI::Snapp::Demo::Four - A template-free demo of CGI::Snapp using Log::Handler::Plugin::DBI River stage zero No dependents

This is a version of CGI::Snapp::Demo::Two which shows how to use a plugin such as Log::Handler::Plugin::DBI within a CGI script based on CGI::Snapp. The output reports which methods were and were not entered per run mode. Using a plugin easily requi...

RSAVAGE/CGI-Snapp-Demo-Four-1.02 - 17 Nov 2012 00:45:05 UTC

CGI::Snapp::Demo::Three - A template-free demo of CGI::Snapp using the forward() method River stage zero No dependents

Shows how to use the forward() method to interrupt processing of a run mode. The output reports which methods were and were not entered per run mode. Also, it shows how to hook the 'forward_prerun' hook....

RSAVAGE/CGI-Snapp-Demo-Three-1.02 - 17 Nov 2012 00:48:14 UTC

CGI::Snapp::Dispatch::Regexp - Dispatch requests to CGI::Snapp-based objects River stage one • 1 direct dependent • 3 total dependents

CGI::Snapp::Dispatch::Regexp is a sub-class of CGI::Snapp::Dispatch which overrides 2 methods: o dispatch_args() o _parse_path() The point is to allow you to use regexps as rules to match the path info, whereas CGI::Snapp::Dispatch always assumes you...

RSAVAGE/CGI-Snapp-Dispatch-2.00 - 03 Oct 2016 22:09:04 UTC

CGI::Emulate::PSGI::Streaming - streaming PSGI adapter for CGI River stage zero No dependents

This module allows an application designed for the CGI environment to run in a PSGI environment, and thus on any of the backends that PSGI supports. It is a subclass of "CGI::Emulate::PSGI". The parsing logic is implemented in "CGI::Parse::PSGI::Stre...

DAKKAR/CGI-Emulate-PSGI-Streaming-1.0.1 - 16 Nov 2020 14:19:26 UTC
21 results (0.112 seconds)