re initialize a namespace

2003-12-12 Thread Chris Ochs
I am using CGI.pm with mod perl, and simply because I hate using $q->param('var') I use $q->import_names('CGI') so I can reference the post variables as $CGI::var. CGI.pm does not clear this namespace and I am not sure of the best way to clear an entire namespace. Any ideas? Chris -- Reportin

Re: re initialize a namespace

2003-12-13 Thread Thomas Klausner
Hi! On Fri, Dec 12, 2003 at 08:32:30PM -0800, Chris Ochs wrote: > I am using CGI.pm with mod perl, and simply because I hate using > $q->param('var') I use $q->import_names('CGI') so I can reference the post > variables as $CGI::var. CGI.pm does not clear this namespace and I am not > sure of th

Re: re initialize a namespace

2003-12-13 Thread Stas Bekman
[CC'ing Lincoln on this one] Chris Ochs wrote: I am using CGI.pm with mod perl, and simply because I hate using $q->param('var') I use $q->import_names('CGI') so I can reference the post variables as $CGI::var. CGI.pm does not clear this namespace and I am not sure of the best way to clear an ent

Re: re initialize a namespace

2003-12-15 Thread Lincoln Stein
Thanks for the heads up. I'll fix that. Lincoln On Saturday 13 December 2003 04:28 pm, Stas Bekman wrote: > [CC'ing Lincoln on this one] > > Chris Ochs wrote: > > I am using CGI.pm with mod perl, and simply because I hate using > > $q->param('var') I use $q->import_names('CGI') so I can referenc