--- Eric <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> We would like to be able to call a sub in our CGI::App module by
> doing 
> Auth($self), but in a particular case which isn't going to last long,
> we 
> need to add a param to the CGI object. I know we could do things 

As mentioned in a previous response, you can add data to the query
object using 

$self-query->param( key => value )

but you cannot change the query object once it has been set. I am not
sure why this limitation is present. I suspect that the author feels
that the query object is supposed to hold only parameters from the http
request and nothing else, but this is just speculation on my part. 

I'd like to see an explanation/justification of this design decision in
the documentation.

-john


---------------------------------------------------------------------
Web Archive:  http://www.mail-archive.com/[EMAIL PROTECTED]/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to