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: http://marc.theaimsgroup.com/?l=dav-announce&m=100139218624911&

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. > > > >

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 th

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: > >

Re: [OT now] Re: Template techniques

2000-06-09 Thread Craig McLane
We have done a comparison between Mason and Template Toolkit (both 1.x and 2.0). We ran several tests comparing cached and uncached components. For the tt tests, we wrote our own caching code against mysql as well as BerkeleyDB. What we discovered was that Mason is faster than tt 1.0 both ca