Re: [preview 2] new mod_perl site concept

2001-11-06 Thread Craig McLane
I focused mostly on the content - Stas this rocks! Very easy to navigate, and the info (especially the Apache::Test documentation is great. One 'style' nit, it appears that an absolute width is specified on the tables used for formatting which bumps the right area of the page so that I have to

Re: webDAV server in mod_perl?

2001-10-05 Thread Craig McLane
There was some talk on the mod_perl dev list a week or so ago by Gerald Richter of using some of the XS auto generation functionality in mod_perl 2.0 to wrap mod_dav inside perl. Here is work he has done posted to the web_dav list:

Re: return from nested functions

2000-11-01 Thread Craig McLane
On Wed, 1 Nov 2000, Dave Rolsky wrote: On Wed, 1 Nov 2000, Paul J. Lucas wrote: If I'm a few levels deep into function calls, I'd liek to be able to do something like "return SERVER_ERROR" and have the entire call stack unwind and the current request stopped. Is

Re: OT: Server-push client page reload

2000-09-20 Thread Craig McLane
I believe they are using meta refresh tags in the html to refresh the page on a regular interval. Craig On Wed, 20 Sep 2000, Michael Nachbaur wrote: This is off-topic, but I need an answer pretty quick, and I *am* writing this app using mod_perl, so its sorta related (also, I don't want the

Re: Newbie question on Apache::Debug::dump

2000-08-19 Thread Craig McLane
The request object is $r Craig On Sat, 19 Aug 2000, Jay Strauss wrote: Sorry if this has been asked before but I have been unable to find the answer (not in perldoc, apache modules book, searching archives): I would like my perl compilation and process errors to be written to an HTML

Re: using a module to contain settings.

2000-06-23 Thread Craig McLane
You could also export the variables (in which case @EXPORT_OK is preferable to @EXPORT). It still needs to be a global variable, but you won't need to refer to it with a fully qualified name. Craig On Fri, 23 Jun 2000, Perrin Harkins wrote: On Fri, 23 Jun 2000, Scott Alexander wrote: