Re: Pnotes in apache2

2004-06-23 Thread Stas Bekman
Stas Bekman wrote: Kreimendahl, Chad J wrote: That's fine... I can definitely live with it. The docs should be updated, though... they say Apache::Table. right, i'll fix that. thanks for the persistence :) Now fixed: http://perl.apache.org/docs/2.0/api/Apache/RequestUtil.html#C_pnotes_ -- _

Re: Pnotes in apache2

2004-06-23 Thread Stas Bekman
Kreimendahl, Chad J wrote: That's fine... I can definitely live with it. The docs should be updated, though... they say Apache::Table. right, i'll fix that. thanks for the persistence :) Though they say APR::Table. Where did you see Apache::Table? -- _

RE: Pnotes in apache2

2004-06-23 Thread Kreimendahl, Chad J
t: Re: Pnotes in apache2 Kreimendahl, Chad J wrote: > ok, but what I'm saying is... pnotes does NOT return an APR::Table > object... it's still working as it did back in mp1. The docs say what > you're saying, but it does not function that way. pnotes() will not return

Re: Pnotes in apache2

2004-06-23 Thread Geoffrey Young
Kreimendahl, Chad J wrote: > ok, but what I'm saying is... pnotes does NOT return an APR::Table > object... it's still working as it did back in mp1. The docs say what > you're saying, but it does not function that way. pnotes() will not return an APR::Table object for the same reason it doe

RE: Pnotes in apache2

2004-06-23 Thread Kreimendahl, Chad J
une 23, 2004 12:04 PM To: Kreimendahl, Chad J Cc: [EMAIL PROTECTED] Subject: Re: Pnotes in apache2 Kreimendahl, Chad J wrote: > So will mp2 pnotes eventually return APR::Table or will it continue to > function as it does now (which is the same as mp1)? there is no eventually, the curren

Re: Pnotes in apache2

2004-06-23 Thread Stas Bekman
Kreimendahl, Chad J wrote: So will mp2 pnotes eventually return APR::Table or will it continue to function as it does now (which is the same as mp1)? there is no eventually, the current behavior of modperl-1.99_14 is how it's going to be in mp2. Again the ultimate answer is here: http://perl.apac

RE: Pnotes in apache2

2004-06-23 Thread Kreimendahl, Chad J
: Pnotes in apache2 Kreimendahl, Chad J wrote: > Well, apparently I was using the mp1 method to set the stuff in my Fixup > handler... which is the part that is contrary to how the documentation > says it works. Instead of returning an Apache::Table object, it > returns the exact same w

Re: Pnotes in apache2

2004-06-23 Thread Stas Bekman
Kreimendahl, Chad J wrote: Well, apparently I was using the mp1 method to set the stuff in my Fixup handler... which is the part that is contrary to how the documentation says it works. Instead of returning an Apache::Table object, it returns the exact same was as it had in mp1... sub handler {

RE: Pnotes in apache2

2004-06-23 Thread Kreimendahl, Chad J
Well, apparently I was using the mp1 method to set the stuff in my Fixup handler... which is the part that is contrary to how the documentation says it works. Instead of returning an Apache::Table object, it returns the exact same was as it had in mp1... package MyFixupHandler; sub h

Re: Pnotes in apache2

2004-06-23 Thread Stas Bekman
Kreimendahl, Chad J wrote: Sorry, I mistyped. Was in too much of a hurry to get out of the office. I've set the value of monkey in PerlFixupHandler. Once I get to my PerlResponseHandler and: my $something = $r->pnotes; $something is an unblessed reference (instead of a ref to Table as in th

RE: Pnotes in apache2

2004-06-19 Thread Kreimendahl, Chad J
the docs). -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Sat 6/19/2004 3:44 PM To: Kreimendahl, Chad J Cc: [EMAIL PROTECTED] Subject: Re: Pnotes in apache2 Kreimendahl, Chad J wrote: > Mak

Re: Pnotes in apache2

2004-06-19 Thread Stas Bekman
Kreimendahl, Chad J wrote: Make test does: t/modperl/pnotesok But, when attempting to create a pnotes (which is an APR::Table?) my $hashref = {}; my $pn = $r->pnotes(); my $ret = $pn->set('monkey' => $hashref); $ret is an unblessed hash ref... Should this be blessed back to

Pnotes in apache2

2004-06-17 Thread Kreimendahl, Chad J
Make test does: t/modperl/pnotesok But, when attempting to create a pnotes (which is an APR::Table?) my $hashref = {}; my $pn = $r->pnotes(); my $ret = $pn->set('monkey' => $hashref); $ret is an unblessed hash ref... Should this be blessed back to RequestUtil? -- Repor