[cgiapp] CAP::Header 0.63 has been released

2013-10-30 Thread
Hi all, I uploaded CGI::Application::Plugin::Header 0.63 to CPAN. This release contains tests that proves my plugin doesn’t conflict with other plugins such as CAP::Redirect, CAP::Session or CAP::Stream. Though CAP::Redirect is completely compatible with CAP::Header, CAP::Session and CAP::Stream

Re: [cgiapp] Re lease CGI::Application::Plugin::Header

2013-03-31 Thread
Hi, I don't think so. The rehashed header props. might be flattened into a list of the key-value pairs and then passed to CGI.pm's header() method directly: use CGI qw/header/; my $rehashed_header_props = { -type = 'text/plain' }; print header( %{$rehashed_header_props} ); If keys

Re: [cgiapp] Re lease CGI::Application::Plugin::Header

2013-03-29 Thread
Hi Mark, Thanks for your reply. Your suggestion meant a lot to me :) I think CGI::Header::Props is not the replacement for CGI.pm, but complements CGI.pm. Though I agree CGI.pm is dated, the query class can't be replaced with another module like Plack::Request or Plack::Response in some cases