Re: Re: method handlers

2006-10-27 Thread Jordan McLain
Ahh, I see. Great tip. Thanks alot. Jordan On 10/27/06, John ORourke <[EMAIL PROTECTED]> wrote: Jordan McLain wrote: > just noticed... in the actual code 'handler' is prototyped with ($$) > > >> sub handler { >> my ($class, $r) = @_; >> >> my $self = ... # something hashref-ish > >> I wil

Re: method handlers

2006-10-27 Thread John ORourke
Jordan McLain wrote: just noticed... in the actual code 'handler' is prototyped with ($$) sub handler { my ($class, $r) = @_; my $self = ... # something hashref-ish I will end up writing another "new()" for use when not called directly from apache. Is this bad style, since the method

Re: method handlers

2006-10-26 Thread Jordan McLain
just noticed... in the actual code 'handler' is prototyped with ($$) On 10/26/06, Jordan McLain <[EMAIL PROTECTED]> wrote: Hello, This is more of a style and usage question. Sorry for the stupid question. I am rewriting one of my apps to be more OO so that I can abstract its' functionality o