Re: modifying request content

2004-04-07 Thread dorian
> > i'm actually really early on in this project, and could switch over to > > apache/mod_perl 2 without much fuss and use an input filter. > > That would probably be best if it truly has to be transparent and you > need to modify content and not just args. yes, as long as i can trap the entire r

Re: modifying request content

2004-04-07 Thread Perrin Harkins
On Wed, 2004-04-07 at 13:04, dorian wrote: > On Wed, Apr 07, 2004 at 05:08:51PM +0200, Tom Schindl wrote: > > As far as I know not but you could pass information using $r->pnotes(), > > maybe you could also use > > > > my $apr = Apache::Request->instance($r); > > > > In all modules in the chain

Re: modifying request content

2004-04-07 Thread dorian
On Wed, Apr 07, 2004 at 05:08:51PM +0200, Tom Schindl wrote: > As far as I know not but you could pass information using $r->pnotes(), > maybe you could also use > > my $apr = Apache::Request->instance($r); > > In all modules in the chain and use $apr->param() to set/reset different > things.

Re: modifying request content

2004-04-07 Thread Stas Bekman
Tom Schindl wrote: As far as I know not but you could pass information using $r->pnotes(), maybe you could also use my $apr = Apache::Request->instance($r); In all modules in the chain and use $apr->param() to set/reset different things. libapreq2 will provide such a service (reusable request d

Re: modifying request content

2004-04-07 Thread Tom Schindl
As far as I know not but you could pass information using $r->pnotes(), maybe you could also use my $apr = Apache::Request->instance($r); In all modules in the chain and use $apr->param() to set/reset different things. Tom dorian wrote: is there any way currently to take the content of a requ

modifying request content

2004-04-06 Thread dorian
is there any way currently to take the content of a request (say, from a POST or PUT), modify it an arbitrary way, then somehow put it back into the request object to make it available to handlers further down the chain? thanks in advance .dorian -- Report problems: http://perl.apache.org/bugs/