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

2007-11-23 Thread Jimmy Li
> Yes, but why? That is simply a record of data that was in the > request. You can't change the past. What are you really trying to > do? Store some data for a later handler? Something like that. Not really later handlers, but just later subroutines. It has to do with the nature of my applicat

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

2007-11-23 Thread Perrin Harkins
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. > Get the request parameters using the tied APR::Request

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

2007-11-23 Thread Jimmy Li
I am using Apache2::Request - APR::Request::Param::Table is just the underlying table used by Apache2::Request. What I'm ultimately trying to do is this: Get the request parameters using the tied APR::Request::Param::Table object (which is returned by Apache2::Request->new($r)->param in scalar con

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

2007-11-23 Thread Perrin Harkins
On Nov 22, 2007 2:36 PM, Jimmy Li <[EMAIL PROTECTED]> wrote: > 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. Can you tell us what you're ultimate

Re: mod_perl on OS X leopard

2007-11-23 Thread Fred Moyer
> Hello, I am trying to install mod_perl on OS X Leopard.I searched > around and tried the various suggestions that I found, but still get > errors on 'make test' (see below).Incidentally, I do have the > following environment variables set as suggested in an article I read. This article?

mod_perl on OS X leopard

2007-11-23 Thread Sam Halperin
Hello, I am trying to install mod_perl on OS X Leopard.I searched around and tried the various suggestions that I found, but still get errors on 'make test' (see below).Incidentally, I do have the following environment variables set as suggested in an article I read. CFLAGS=-arch x8

Re: CGI->params() should be tainted, right?

2007-11-23 Thread jalex
Michael Peters wrote: > > jalex wrote: >> I'm running mod_perl 2.0.2 under apache 2.0.54. After adding >> "PerlSwitches >> -wT" to my apache config, I wanted to test that I had taint mode was >> indeed >> working, so I wrote a test script that purposely misused a CGI parameter, >> expecting the

Re: CGI->params() should be tainted, right?

2007-11-23 Thread Michael Peters
jalex wrote: > I'm running mod_perl 2.0.2 under apache 2.0.54. After adding "PerlSwitches > -wT" to my apache config, I wanted to test that I had taint mode was indeed > working, so I wrote a test script that purposely misused a CGI parameter, > expecting the taint exception to be thrown. I was sur