NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Getting Jifty (Score:2)
Re: (Score:2)
Re: (Score:2)
You can get jifty-trunk at: http://svn.jifty.org/svn/jifty.org/jifty/trunk [jifty.org]
Wifty is a demo-app wiki:
http://svn.jifty.org/svn/jifty.org/wifty/trunk [jifty.org]
Apache emulation (Score:2)
Re: (Score:2)
This is also basically how the SAWA plugin works - it fakes up an Apache::Request-a-like and passes it in.
Pointer to the Code? (Score:1)
Where can we look at the code? Sorry if I missed a previous post with the link, but I didn't get it.
I ask because I also want to make this work with Catalyst.
life is short
Re: (Score:2)
svn://axkit.org/axkit2 to download
(it's on CPAN too, but there have been lots of changes since then)
DBI (Score:1)
Re: (Score:2)
But yes, likely some sort of separate process we can marshal requests to/from. I'd like to make it as transparent as possible, so what I might do is implement a DBD driver that does this natively.
Re: (Score:1)
Re: (Score:2)
Re: (Score:1)
Can it be Abstracted from the XML Stuff? (Score:2)
—Theory
Re: (Score:2)
Of course why you would want a web server without XML::LibXML installed is beyond me
Re: (Score:2)
My thought is that it'd be cool if it was a Web server that supports plugins and nothing but a Web server that supports plugins.
Oh, another q: Would it be possible to allow plugins to be CPAN modules, and then we can just tell the Web server to use a CPAN module as the plugin for a particular Location.
—Theory
Re: (Score:2)
Just do:
Plugin Foo::Bar
and it loads it from @INC if the plugin name contains '::'.
Re: (Score:2)
—Theory