Re: Modifiable APR::Request::Param::Table

2007-11-26 Thread Jimmy Li
Thank you for the info Adam. I already wrote a wrapper that does just that. I was hoping to find an alternative but and I guess I will stick with the wrapper. Jimmy On Nov 26, 2007 8:37 AM, <[EMAIL PROTECTED]> wrote: > Quoting Jimmy Li <[EMAIL PROTECTED]>: > > > &

Re: Modifiable APR::Request::Param::Table

2007-11-25 Thread Jimmy Li
> What I ultimately did to get around this was modify the param scrubbing > code that wanted to modify param so that what it created a new instance > of an APR::Table, which does implement STORE when tied, and put > everything in there. > > Adam How did you put all the request parameters into an A

Re: Modifiable APR::Request::Param::Table

2007-11-23 Thread Jimmy Li
wrote: > On Nov 23, 2007 5:57 PM, Jimmy Li <[EMAIL PROTECTED]> wrote: > > I am using Apache2::Request - APR::Request::Param::Table is just the > > underlying table used by Apache2::Request. > > Sorry, I was thinking you were using the mod_perl API directly. > > >

Re: Modifiable APR::Request::Param::Table

2007-11-23 Thread Jimmy Li
why not Apache2::Request??) So what I'm trying to say is, I want the param method in Apache2::Request to behave just like the param method in CGI. Since that is not the case, what would be a good alternative way? Jimmy On Nov 23, 2007 1:21 PM, Perrin Harkins <[EMAIL PROTECTED]> wrote:

Modifiable APR::Request::Param::Table

2007-11-22 Thread Jimmy Li
Hello, I'm currently using the tied APR::Request::Param::Table object to get request parameters. However, this tied object does not implement STORE so I cannot add or modify information in this object. For my project I need to be able to modify request parameters. I've tried doing this: my %param