On 9/16/05, Aaron Trevena <[EMAIL PROTECTED]> wrote:
> On 9/16/05, Aaron Trevena <[EMAIL PROTECTED]> wrote:
> > Does mod_perl 1.x really DTRT WRT :method attributes?
> >
> > Also we need to find out what fast_cgi would do as well.
> >
> 
> Doesn't look like mod_perl 1.x uses the method attribute, they appear
> to have mutually exclusive ways of making something a method.
> 
> Wonder how fastcgi does it.

This is getting complicated. Another possible tool is this. Maypole::CGI says:

sub run {
    my $self = shift;
    return $self->handler();
}

sub get_request {
    shift->{cgi} = CGI::Simple->new();
}

Instead it could say this:

sub run {
    my $self = shift;
    return $self->handler(CGI::Simple->new);
}

sub get_request {
    shift->{cgi} = shift; 
}

Don't know if it gets us anywhere, but might be useful. 

d.


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Maypole-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/maypole-devel

Reply via email to