Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the HTTP-Session CPAN distribution.

Report information
The Basics
Id: 40363
Status: resolved
Priority: 0/
Queue: HTTP-Session

People
Owner: Nobody in particular
Requestors: fayland [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Catalyst::Request for request
I hope we can add Catalyst::Request to your has request => ( is => 'ro', isa => 'CGI|HTTP::Engine::Request|HTTP::Request', required => 1, ); so that isa would be CGI|HTTP::Engine::Request|HTTP::Request|Catalyst::Request or more flexible, you can write like subtype 'Request' => as 'Object' => where { $_->can('param') && $_->can('header') }; something like that is good I think. so that CGI::Simple or other CGI::* is acceptable for your module. Thanks.
Hi fayland. fixed in 0.20. thanks for your request =) On 土曜日 10月 25 01:40:09 2008, FAYLAND wrote: Show quoted text
> I hope we can add Catalyst::Request to your > > has request => ( > is => 'ro', > isa => 'CGI|HTTP::Engine::Request|HTTP::Request', > required => 1, > ); > > so that isa would be > > CGI|HTTP::Engine::Request|HTTP::Request|Catalyst::Request > > or more flexible, you can write like > > subtype 'Request' => as 'Object' => where { > $_->can('param') && $_->can('header') }; > > something like that is good I think. so that CGI::Simple or other CGI::* > is acceptable for your module. > > Thanks.
On 水曜日 11月 19 06:13:00 2008, TOKUHIROM wrote: Show quoted text
> Hi fayland. > > fixed in 0.20. thanks for your request =) > > On 土曜日 10月 25 01:40:09 2008, FAYLAND wrote:
> > I hope we can add Catalyst::Request to your > > > > has request => ( > > is => 'ro', > > isa => 'CGI|HTTP::Engine::Request|HTTP::Request', > > required => 1, > > ); > > > > so that isa would be > > > > CGI|HTTP::Engine::Request|HTTP::Request|Catalyst::Request > > > > or more flexible, you can write like > > > > subtype 'Request' => as 'Object' => where { > > $_->can('param') && $_->can('header') }; > > > > something like that is good I think. so that CGI::Simple or other CGI::* > > is acceptable for your module. > > > > Thanks.
>