CGI--Application icon indicating copy to clipboard operation
CGI--Application copied to clipboard

A Perl framework for building reusable web-applications

Results 8 CGI--Application issues
Sort by recently updated
recently updated
newest added

Hello Martin, I test at the moment the dev branch with a very basic PSGI Application. And I thought it could be a good idea to get $env easier through...

This fix for bug https://rt.cpan.org/Public/Bug/Display.html?id=88506. It allows to process correctly multiple requests to apps derived from CGI::Application in a Plack/PSGI environment.

Refactored so that when $body is a subref, we just return it. Updated the tests and docs to reflect this. I've still a minor question around the headers: ``` #my...

As I mentioned in the mailing list (http://old.nabble.com/Release-CGI%3A%3AApplication%3A%3APlugin%3A%3AHeader-to35216388.html), header_props() doesn't bahave as we expect in the following situation: my $app = CGI::Application->new; $app->header_props( type => 'text/plain' ); $app->run; # =>...

Currently there are are two documented value return values for a run mode, a scalar and scalarref. I think we should consider adding a third: If the return value is...