
CGI::Prototype::Docs::Resources - links to CGI::Prototype resources

There is now a mailing list for discussing the use of CGI::Prototype, a Perl module which allows for class and prototype-based object-oriented development of CGI applications.
Visit http://lists.sourceforge.net/lists/listinfo/cgi-prototype-users and enter your subscription information.
You can join the newsgroup gmane.comp.lang.perl.modules.cgi-prototype.user
If you are a Gnus user, here's the subscription string for you: nntp+news.gmane.org:gmane.comp.lang.perl.modules.cgi-prototype.user
This last one should work. I am still waiting for my primer message to show in the archive.

http://www.stonehenge.com/merlyn/LinuxMag/col70.html http://www.stonehenge.com/merlyn/LinuxMag/col71.html http://www.stonehenge.com/merlyn/LinuxMag/col72.html
http://sourceforge.net/project/showfiles.php?group_id=135173&package_id=149434
http://www.stonehenge.com/merlyn/LinuxMag/col56.html

http://perlmonks.org/?node_id=442480
http://perlmonks.org/?node_id=439974
http://perlmonks.org/?node_id=438026
http://perlmonks.org/?node_id=428222
http://perlmonks.org/?node_id=428151
http://perlmonks.org/?node_id=426381
http://perlmonks.org/?node_id=426162
http://perlmonks.org/?node_id=423071
http://perlmonks.org/?node_id=410803
http://perlmonks.org/?node_id=411760

use lib qw( /home/tbrannon/cvs/blue/wagsvr/install/httpd/prefork/modperl /home/tbrannon/cvs/blue/wagsvr /home/tbrannon/cvs/blue/wagsvr/install ); warn 'startup complete'; 1;
<Location /> SetHandler perl-script PerlResponseHandler Blue::App </Location>
package Blue::App;
use strict;
use warnings;
use Apache2::RequestRec ();
use Apache2::RequestIO ();
use Apache2::Const -compile => qw(OK);
use base qw(CGI::Prototype);
sub handler {
my $r = shift;
__PACKAGE__->reflect->addSlot(r => $r);
__PACKAGE__->activate;
return Apache2::Const::OK;
}
1;

Terrence Brannon, metaperl@gmail.com

Copyright (C) 2005 by Terrence Brannon
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available.