Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
I'm moving into my new house today (alas, rented), so I might not have 'net connection for a while. Last night, while the hotel's 'net connection was down
This should be the major thing that Class::CGI needs before it's ready for prime-time. Currently, the delegation is global rather than on a per-instance or class basis. This makes things much easier internally. Anyone see a problem with that? CGI scripts could each specify their own delegation class, but under mod_perl or other shared environment, everything must use the same delegation class (presumably Apache::Request, for mod_perl).
Side note. Running the tests while using CGI::Simple.
Class-CGI $ runtests -lQ
All tests successful.
Files=9, Tests=186, 3 wallclock secs ( 1.58 cusr + 0.32 csys = 1.90 CPU)
And running them while using CGI.pm.
Class-CGI $ runtests -lQ
All tests successful.
Files=9, Tests=186, 4 wallclock secs ( 1.98 cusr + 0.41 csys = 2.39 CPU)
Those times are very consistent. CGI is quite a bit slower than CGI::Simple, but then, you knew that, right?
I'll probably be offline for a few days and won't be able to respond to comments.
Damn... I'd forgotten this module existed (Score:1)
CGI::Simple (Score:1)
CGI::Simple question (Score:1)
Re: (Score:1)
Always, unless you need the HTML generation stuff.
Re: (Score:1)
Re: (Score:1)
Well, other than omitting the HTML stuff, CGI::Simple is 100% API-compatible with CGI.pm (and passes all of CGI.pm’s own relevant tests). You can use them interchangably. The only difference you’ll see is that CGI::Simple is faster.