https://github.com/powerman/perl-cgi-stateless
Perl module: CGI::Stateless - Make CGI.pm stateless for use in persistent environment
https://github.com/powerman/perl-cgi-stateless
Last synced: 2 months ago
JSON representation
Perl module: CGI::Stateless - Make CGI.pm stateless for use in persistent environment
- Host: GitHub
- URL: https://github.com/powerman/perl-cgi-stateless
- Owner: powerman
- License: other
- Created: 2016-02-19T08:38:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-03T17:24:12.000Z (almost 8 years ago)
- Last Synced: 2025-02-15T05:52:35.092Z (11 months ago)
- Language: Perl
- Homepage: https://metacpan.org/release/CGI-Stateless
- Size: 55.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/powerman/perl-CGI-Stateless)
[](https://coveralls.io/r/powerman/perl-CGI-Stateless?branch=master)
# NAME
CGI::Stateless - Make CGI.pm stateless for use in persistent environment
# VERSION
This document describes CGI::Stateless version v2.0.1
# SYNOPSIS
use CGI::Stateless;
# When new request come in FastCGI-like persistent environment:
local *STDIN;
open STDIN, '<', \$stdin or die "open STDIN: $!\n";
local %ENV = %env;
local $CGI::Q = CGI::Stateless->new();
# Now you can AGAIN call CGI.pm methods like CGI::param(), etc.
# DESCRIPTION
Force CGI.pm to parse %ENV and STDIN **AGAIN** in FastCGI-like persistent script.
# INTERFACE
Use it just like shown in SYNOPSIS, there no other use.
# SUPPORT
## Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
at [https://github.com/powerman/perl-CGI-Stateless/issues](https://github.com/powerman/perl-CGI-Stateless/issues).
You will be notified automatically of any progress on your issue.
## Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
Feel free to fork the repository and submit pull requests.
[https://github.com/powerman/perl-CGI-Stateless](https://github.com/powerman/perl-CGI-Stateless)
git clone https://github.com/powerman/perl-CGI-Stateless.git
## Resources
- MetaCPAN Search
[https://metacpan.org/search?q=CGI-Stateless](https://metacpan.org/search?q=CGI-Stateless)
- CPAN Ratings
[http://cpanratings.perl.org/dist/CGI-Stateless](http://cpanratings.perl.org/dist/CGI-Stateless)
- AnnoCPAN: Annotated CPAN documentation
[http://annocpan.org/dist/CGI-Stateless](http://annocpan.org/dist/CGI-Stateless)
- CPAN Testers Matrix
[http://matrix.cpantesters.org/?dist=CGI-Stateless](http://matrix.cpantesters.org/?dist=CGI-Stateless)
- CPANTS: A CPAN Testing Service (Kwalitee)
[http://cpants.cpanauthors.org/dist/CGI-Stateless](http://cpants.cpanauthors.org/dist/CGI-Stateless)
# AUTHOR
Alex Efros
# COPYRIGHT AND LICENSE
This software is Copyright (c) 2009- by Alex Efros .
This is free software, licensed under:
The MIT (X11) License