[Bast-commits] r7155 - in ironman: . IronMan-Web IronMan-Web/lib
IronMan-Web/lib/IronMan IronMan-Web/lib/IronMan/Web
IronMan-Web/lib/IronMan/Web/Controller
IronMan-Web/lib/IronMan/Web/Model
IronMan-Web/lib/IronMan/Web/View IronMan-Web/root
IronMan-Web/root/static IronMan-Web/root/static/images
IronMan-Web/script IronMan-Web/t
castaway at dev.catalyst.perl.org
castaway at dev.catalyst.perl.org
Thu Jul 30 21:19:21 GMT 2009
Author: castaway
Date: 2009-07-30 21:19:20 +0000 (Thu, 30 Jul 2009)
New Revision: 7155
Added:
ironman/IronMan-Web/
ironman/IronMan-Web/Changes
ironman/IronMan-Web/Makefile.PL
ironman/IronMan-Web/README
ironman/IronMan-Web/ironman_web.yml
ironman/IronMan-Web/lib/
ironman/IronMan-Web/lib/IronMan/
ironman/IronMan-Web/lib/IronMan/Web.pm
ironman/IronMan-Web/lib/IronMan/Web/
ironman/IronMan-Web/lib/IronMan/Web/Controller/
ironman/IronMan-Web/lib/IronMan/Web/Controller/Root.pm
ironman/IronMan-Web/lib/IronMan/Web/Model/
ironman/IronMan-Web/lib/IronMan/Web/Model/FeedDB.pm
ironman/IronMan-Web/lib/IronMan/Web/View/
ironman/IronMan-Web/lib/IronMan/Web/View/TT.pm
ironman/IronMan-Web/root/
ironman/IronMan-Web/root/css
ironman/IronMan-Web/root/favicon.ico
ironman/IronMan-Web/root/images
ironman/IronMan-Web/root/new_feed.tt
ironman/IronMan-Web/root/static/
ironman/IronMan-Web/root/static/css
ironman/IronMan-Web/root/static/images/
ironman/IronMan-Web/root/static/images/btn_120x50_built.png
ironman/IronMan-Web/root/static/images/btn_120x50_built_shadow.png
ironman/IronMan-Web/root/static/images/btn_120x50_powered.png
ironman/IronMan-Web/root/static/images/btn_120x50_powered_shadow.png
ironman/IronMan-Web/root/static/images/btn_88x31_built.png
ironman/IronMan-Web/root/static/images/btn_88x31_built_shadow.png
ironman/IronMan-Web/root/static/images/btn_88x31_powered.png
ironman/IronMan-Web/root/static/images/btn_88x31_powered_shadow.png
ironman/IronMan-Web/root/static/images/catalyst_logo.png
ironman/IronMan-Web/script/
ironman/IronMan-Web/script/ironman_web_cgi.pl
ironman/IronMan-Web/script/ironman_web_create.pl
ironman/IronMan-Web/script/ironman_web_fastcgi.pl
ironman/IronMan-Web/script/ironman_web_server.pl
ironman/IronMan-Web/script/ironman_web_test.pl
ironman/IronMan-Web/t/
ironman/IronMan-Web/t/01app.t
ironman/IronMan-Web/t/02pod.t
ironman/IronMan-Web/t/03podcoverage.t
ironman/IronMan-Web/t/model_FeedDB.t
ironman/IronMan-Web/t/view_TT.t
Log:
IronMan user maint app (v1)
Added: ironman/IronMan-Web/Changes
===================================================================
--- ironman/IronMan-Web/Changes (rev 0)
+++ ironman/IronMan-Web/Changes 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,4 @@
+This file documents the revision history for Perl extension IronMan::Web.
+
+0.01 2009-07-01 21:07:26
+ - initial revision, generated by Catalyst
Added: ironman/IronMan-Web/Makefile.PL
===================================================================
--- ironman/IronMan-Web/Makefile.PL (rev 0)
+++ ironman/IronMan-Web/Makefile.PL 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,23 @@
+use inc::Module::Install;
+
+name 'IronMan-Web';
+all_from 'lib/IronMan/Web.pm';
+
+requires 'Catalyst::Runtime' => '5.7015';
+requires 'Catalyst::Plugin::ConfigLoader';
+requires 'Catalyst::Plugin::Static::Simple';
+requires 'Catalyst::Action::RenderView';
+requires 'YAML'; # This should reflect the config file format you've chosen
+ # See Catalyst::Plugin::ConfigLoader for supported formats
+
+requires 'Catalyst::View::TT';
+requires 'Catalyst::Model::DBIC::Schema';
+requires 'Data::UUID';
+requires 'Email::Valid';
+requires 'LWP::Simple';
+
+catalyst;
+
+install_script glob('script/*.pl');
+auto_install;
+WriteAll;
Added: ironman/IronMan-Web/README
===================================================================
--- ironman/IronMan-Web/README (rev 0)
+++ ironman/IronMan-Web/README 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1 @@
+Run script/ironman_web_server.pl to test the application.
Added: ironman/IronMan-Web/ironman_web.yml
===================================================================
--- ironman/IronMan-Web/ironman_web.yml (rev 0)
+++ ironman/IronMan-Web/ironman_web.yml 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,2 @@
+---
+name: IronMan::Web
Added: ironman/IronMan-Web/lib/IronMan/Web/Controller/Root.pm
===================================================================
--- ironman/IronMan-Web/lib/IronMan/Web/Controller/Root.pm (rev 0)
+++ ironman/IronMan-Web/lib/IronMan/Web/Controller/Root.pm 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,114 @@
+package IronMan::Web::Controller::Root;
+
+use strict;
+use warnings;
+use LWP::Simple;
+use Data::UUID;
+use Email::Valid;
+use base 'Catalyst::Controller';
+
+#
+# Sets the actions in this controller to be registered with no prefix
+# so they function identically to actions created in MyApp.pm
+#
+__PACKAGE__->config->{namespace} = '';
+
+=head1 NAME
+
+IronMan::Web::Controller::Root - Root Controller for IronMan::Web
+
+=head1 DESCRIPTION
+
+[enter your description here]
+
+=head1 METHODS
+
+=cut
+
+=head2 default
+
+=cut
+
+sub default : Private {
+ my ( $self, $c ) = @_;
+
+ # Hello World
+ $c->response->body( $c->welcome_message );
+}
+
+sub new_feed : Local {
+ my ($self, $c) = @_;
+
+ my $url = $c->req->param('url');
+ my $email = $c->req->param('email');
+ my $email_conf = $c->req->param('email_2');
+ my $title = $c->req->param('title');
+
+ $c->stash( params => $c->req->params);
+
+ if(!$url and !$email and !$title) {
+ return;
+ }
+
+ ## Submitted form
+ my $errors = [];
+ if($email ne $email_conf || !$email) {
+ push @$errors, 'Email does not match';
+ }
+ $c->log->debug("Getting feed");
+ my $feed_xml = get($url);
+ $c->log->debug("Got feed");
+ if(!$url || !defined $feed_xml) {
+ push @$errors, "Cannot fetch feed: $url";
+ }
+ if(!$title) {
+ push @$errors, 'Missing title';
+ }
+
+ if(@$errors) {
+ $c->stash( errors => $errors);
+ return 1;
+ }
+
+ $c->log->debug("input ok");
+ ## Insert with new UUID
+ my $uuids = Data::UUID->new;
+ my $fdb = $c->model('FeedDB::Feed')->find_or_new
+ ({
+ id => $uuids->create_str,
+ url => $url,
+ title => $title,
+ owner => $email,
+ },
+ { key => 'url' }
+ );
+ if($fdb->in_storage) {
+ $c->stash(existed => 1);
+ $c->log->debug("$url already exists, id: " . $fdb->id);
+ return 1;
+ }
+ $fdb->insert;
+
+ $c->stash(inserted => $fdb->id);
+}
+
+=head2 end
+
+Attempt to render a view, if needed.
+
+=cut
+
+sub end : ActionClass('RenderView') {}
+
+=head1 AUTHOR
+
+Catalyst developer
+
+=head1 LICENSE
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
+
+1;
Added: ironman/IronMan-Web/lib/IronMan/Web/Model/FeedDB.pm
===================================================================
--- ironman/IronMan-Web/lib/IronMan/Web/Model/FeedDB.pm (rev 0)
+++ ironman/IronMan-Web/lib/IronMan/Web/Model/FeedDB.pm 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,36 @@
+package IronMan::Web::Model::FeedDB;
+
+use strict;
+use base 'Catalyst::Model::DBIC::Schema';
+
+__PACKAGE__->config(
+ schema_class => 'IronMan::Schema',
+ connect_info => [
+ 'dbi:SQLite:/home/castaway/plagger/subscriptions.db',
+
+ ],
+);
+
+=head1 NAME
+
+IronMan::Web::Model::FeedDB - Catalyst DBIC Schema Model
+=head1 SYNOPSIS
+
+See L<IronMan::Web>
+
+=head1 DESCRIPTION
+
+L<Catalyst::Model::DBIC::Schema> Model using schema L<IronMan::Schema>
+
+=head1 AUTHOR
+
+A clever guy
+
+=head1 LICENSE
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
+
+1;
Added: ironman/IronMan-Web/lib/IronMan/Web/View/TT.pm
===================================================================
--- ironman/IronMan-Web/lib/IronMan/Web/View/TT.pm (rev 0)
+++ ironman/IronMan-Web/lib/IronMan/Web/View/TT.pm 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,31 @@
+package IronMan::Web::View::TT;
+
+use strict;
+use base 'Catalyst::View::TT';
+
+__PACKAGE__->config(TEMPLATE_EXTENSION => '.tt');
+
+=head1 NAME
+
+IronMan::Web::View::TT - TT View for IronMan::Web
+
+=head1 DESCRIPTION
+
+TT View for IronMan::Web.
+
+=head1 AUTHOR
+
+=head1 SEE ALSO
+
+L<IronMan::Web>
+
+A clever guy
+
+=head1 LICENSE
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
+
+1;
Added: ironman/IronMan-Web/lib/IronMan/Web.pm
===================================================================
--- ironman/IronMan-Web/lib/IronMan/Web.pm (rev 0)
+++ ironman/IronMan-Web/lib/IronMan/Web.pm 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,63 @@
+package IronMan::Web;
+
+use strict;
+use warnings;
+
+use Catalyst::Runtime '5.70';
+use lib '/usr/src/perl/dbix-class/bast/ironman/plagger/lib';
+
+# Set flags and add plugins for the application
+#
+# -Debug: activates the debug mode for very useful log messages
+# ConfigLoader: will load the configuration from a YAML file in the
+# application's home directory
+# Static::Simple: will serve static files from the application's root
+# directory
+
+use Catalyst qw/-Debug ConfigLoader Static::Simple/;
+
+our $VERSION = '0.01';
+
+# Configure the application.
+#
+# Note that settings in ironman_web.yml (or other external
+# configuration file that you set up manually) take precedence
+# over this when using ConfigLoader. Thus configuration
+# details given here can function as a default configuration,
+# with a external configuration file acting as an override for
+# local deployment.
+
+__PACKAGE__->config( name => 'IronMan::Web' );
+
+# Start the application
+__PACKAGE__->setup;
+
+
+=head1 NAME
+
+IronMan::Web - Catalyst based application
+
+=head1 SYNOPSIS
+
+ script/ironman_web_server.pl
+
+=head1 DESCRIPTION
+
+[enter your description here]
+
+=head1 SEE ALSO
+
+L<IronMan::Web::Controller::Root>, L<Catalyst>
+
+=head1 AUTHOR
+
+Catalyst developer
+
+=head1 LICENSE
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
+
+1;
Added: ironman/IronMan-Web/root/css
===================================================================
--- ironman/IronMan-Web/root/css (rev 0)
+++ ironman/IronMan-Web/root/css 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1 @@
+link /usr/src/perl/dbix-class/bast/ironman/plagger/assets/plugins/Publish-PagedPlanet/default/static/css
\ No newline at end of file
Property changes on: ironman/IronMan-Web/root/css
___________________________________________________________________
Name: svn:special
+ *
Added: ironman/IronMan-Web/root/favicon.ico
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/favicon.ico
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/images
===================================================================
--- ironman/IronMan-Web/root/images (rev 0)
+++ ironman/IronMan-Web/root/images 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1 @@
+link /usr/src/perl/dbix-class/bast/ironman/plagger/assets/plugins/Publish-PagedPlanet/default/static/images/
\ No newline at end of file
Property changes on: ironman/IronMan-Web/root/images
___________________________________________________________________
Name: svn:special
+ *
Added: ironman/IronMan-Web/root/new_feed.tt
===================================================================
--- ironman/IronMan-Web/root/new_feed.tt (rev 0)
+++ ironman/IronMan-Web/root/new_feed.tt 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,96 @@
+<!DOCTYPE html
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="generator" content="Catalyst 5.7x" />
+
+ <link rel="stylesheet" type="text/css" href="/static/css/reset.css" />
+ <link rel="stylesheet" type="text/css" href="/static/css/screen.css" />
+ <link rel="stylesheet" type="text/css" href="/static/css/basic.css" />
+ <link rel="stylesheet" type="text/css" href="/static/css/epo.css" />
+ <link rel="stylesheet" type="text/css" href="/static/css/print.css" media="print" />
+ <link rel="stylesheet" type="text/css" href="/static/css/handheld.css" media="handheld" />
+ <link rel="stylesheet" type="text/css" href="/static/css/screen-members-list.css" />
+ <title>Ironman signup</title>
+ </head>
+ <body>
+ <div id="wrap">
+ <div id="header-left">
+ <p class="pad">
+
+ </p>
+ </div>
+
+ <div id="header-middle">
+ <p class="pad">
+
+ </p>
+ </div>
+
+ <div id="header-text">
+ <h1 class="title">
+ enlightened perl organisation
+ </h1>
+ <p class="dict">
+ <strong>enlightened</strong> |en'litnd|: <em>adjective</em>:<br />
+ having or showing a rational,
+ modern, and well-informed outlook </p>
+ </div>
+
+ <div id="header-right">
+ <p class="pad">
+
+ </p>
+ </div>
+ </div>
+ <div id='main'>
+ [% IF existed %]
+ <p class="error">
+ [% params.url %] is already signed up.
+ </p>
+ [% END %]
+ [% IF inserted %]
+ <p>
+ [% params.url %] is now signed up to <a href="ironman.enlightenedperl.org">Ironman</a>. Please wait an hour for the first data fetch.
+ </p>
+ [% END %]
+ [% FOREACH error = errors %]
+ <p class="error" style="color:red" >[% error %]</p>
+ [% END %]
+ <hr/>
+ <form method="post" action="[% c.uri_for('/new_feed') %]">
+ <label>Blog feed URL (atom prefered)<input type="text" name="url" value="[% params.url %]"></label><br>
+ <label>Your Name ("Firstname Lastname (nick)" prefered)<input type="text" name="title" value="[% params.title %]"></label><br>
+ <label>Email <input type="text" name="email" value="[% params.email %]"></label><br>
+ <label>Email (confirmation)<input type="text" name="email_2"></label><br>
+ <input type="submit" value="Sign up">
+ </form>
+ <hr />
+ <div class="footer">
+ <h4>Perl Iron Man Planet</h4>
+ Built by: <em>
+ <a href="http://desert-island.me.uk/~castaway/web">castaway</a>,
+ <a href="http://penfold.vox.com">Penfold</a>,
+ <a href="http://bobtfish.livejournal.com/">t0m</a>,
+ <a href="http://www.basirat.com/">mohsen</a>,
+ <a href="http://www.perlmonks.org/?node=theorbtwo">theorbtwo</a>,
+ <a href="http://www.shadowcat.co.uk">epitaph</a></em>
+ <a href="http://www.shadowcat.co.uk">mdk</a></em>
+ <br/>Hosted by: <em><a href="http://www.shadowcat.co.uk">Shadowcat Systems</a></em>
+ <br/>The code repository can be <em><a href="http://dev.catalyst.perl.org/repos/bast/ironman">accessed here</a></em>
+ </div>
+ </div>
+ </div> [%# end main %]
+ <script type="text/javascript">
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+ </script>
+ <script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-2382391-7");
+ pageTracker._trackPageview();
+ } catch(err) {}</script>
+ </body>
+</html>
Added: ironman/IronMan-Web/root/static/css
===================================================================
--- ironman/IronMan-Web/root/static/css (rev 0)
+++ ironman/IronMan-Web/root/static/css 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1 @@
+link /usr/src/perl/dbix-class/bast/ironman/plagger/assets/plugins/Publish-PagedPlanet/default/static/css
\ No newline at end of file
Property changes on: ironman/IronMan-Web/root/static/css
___________________________________________________________________
Name: svn:special
+ *
Added: ironman/IronMan-Web/root/static/images/btn_120x50_built.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_120x50_built.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/btn_120x50_built_shadow.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_120x50_built_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/btn_120x50_powered.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_120x50_powered.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/btn_120x50_powered_shadow.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_120x50_powered_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/btn_88x31_built.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_88x31_built.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/btn_88x31_built_shadow.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_88x31_built_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/btn_88x31_powered.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_88x31_powered.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/btn_88x31_powered_shadow.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/btn_88x31_powered_shadow.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/root/static/images/catalyst_logo.png
===================================================================
(Binary files differ)
Property changes on: ironman/IronMan-Web/root/static/images/catalyst_logo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: ironman/IronMan-Web/script/ironman_web_cgi.pl
===================================================================
--- ironman/IronMan-Web/script/ironman_web_cgi.pl (rev 0)
+++ ironman/IronMan-Web/script/ironman_web_cgi.pl 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,37 @@
+#!/usr/bin/perl -w
+
+BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+
+use strict;
+use warnings;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+use IronMan::Web;
+
+IronMan::Web->run;
+
+1;
+
+=head1 NAME
+
+ironman_web_cgi.pl - Catalyst CGI
+
+=head1 SYNOPSIS
+
+See L<Catalyst::Manual>
+
+=head1 DESCRIPTION
+
+Run a Catalyst application as a cgi script.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+
+=head1 COPYRIGHT
+
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: ironman/IronMan-Web/script/ironman_web_cgi.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: ironman/IronMan-Web/script/ironman_web_create.pl
===================================================================
--- ironman/IronMan-Web/script/ironman_web_create.pl (rev 0)
+++ ironman/IronMan-Web/script/ironman_web_create.pl 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,75 @@
+#!/usr/bin/perl -w
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use Catalyst::Helper;
+
+my $force = 0;
+my $mech = 0;
+my $help = 0;
+
+GetOptions(
+ 'nonew|force' => \$force,
+ 'mech|mechanize' => \$mech,
+ 'help|?' => \$help
+ );
+
+pod2usage(1) if ( $help || !$ARGV[0] );
+
+my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
+
+pod2usage(1) unless $helper->mk_component( 'IronMan::Web', @ARGV );
+
+1;
+
+=head1 NAME
+
+ironman_web_create.pl - Create a new Catalyst Component
+
+=head1 SYNOPSIS
+
+ironman_web_create.pl [options] model|view|controller name [helper] [options]
+
+ Options:
+ -force don't create a .new file where a file to be created exists
+ -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ -help display this help and exits
+
+ Examples:
+ ironman_web_create.pl controller My::Controller
+ ironman_web_create.pl controller My::Controller BindLex
+ ironman_web_create.pl -mechanize controller My::Controller
+ ironman_web_create.pl view My::View
+ ironman_web_create.pl view MyView TT
+ ironman_web_create.pl view TT TT
+ ironman_web_create.pl model My::Model
+ ironman_web_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
+ dbi:SQLite:/tmp/my.db
+ ironman_web_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
+ dbi:Pg:dbname=foo root 4321
+
+ See also:
+ perldoc Catalyst::Manual
+ perldoc Catalyst::Manual::Intro
+
+=head1 DESCRIPTION
+
+Create a new Catalyst Component.
+
+Existing component files are not overwritten. If any of the component files
+to be created already exist the file will be written with a '.new' suffix.
+This behavior can be suppressed with the C<-force> option.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: ironman/IronMan-Web/script/ironman_web_create.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: ironman/IronMan-Web/script/ironman_web_fastcgi.pl
===================================================================
--- ironman/IronMan-Web/script/ironman_web_fastcgi.pl (rev 0)
+++ ironman/IronMan-Web/script/ironman_web_fastcgi.pl 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,80 @@
+#!/usr/bin/perl -w
+
+BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+use IronMan::Web;
+
+my $help = 0;
+my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
+
+GetOptions(
+ 'help|?' => \$help,
+ 'listen|l=s' => \$listen,
+ 'nproc|n=i' => \$nproc,
+ 'pidfile|p=s' => \$pidfile,
+ 'manager|M=s' => \$manager,
+ 'daemon|d' => \$detach,
+ 'keeperr|e' => \$keep_stderr,
+);
+
+pod2usage(1) if $help;
+
+IronMan::Web->run(
+ $listen,
+ { nproc => $nproc,
+ pidfile => $pidfile,
+ manager => $manager,
+ detach => $detach,
+ keep_stderr => $keep_stderr,
+ }
+);
+
+1;
+
+=head1 NAME
+
+ironman_web_fastcgi.pl - Catalyst FastCGI
+
+=head1 SYNOPSIS
+
+ironman_web_fastcgi.pl [options]
+
+ Options:
+ -? -help display this help and exits
+ -l -listen Socket path to listen on
+ (defaults to standard input)
+ can be HOST:PORT, :PORT or a
+ filesystem path
+ -n -nproc specify number of processes to keep
+ to serve requests (defaults to 1,
+ requires -listen)
+ -p -pidfile specify filename for pid file
+ (requires -listen)
+ -d -daemon daemonize (requires -listen)
+ -M -manager specify alternate process manager
+ (FCGI::ProcManager sub-class)
+ or empty string to disable
+ -e -keeperr send error messages to STDOUT, not
+ to the webserver
+
+=head1 DESCRIPTION
+
+Run a Catalyst application as fastcgi.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: ironman/IronMan-Web/script/ironman_web_fastcgi.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: ironman/IronMan-Web/script/ironman_web_server.pl
===================================================================
--- ironman/IronMan-Web/script/ironman_web_server.pl (rev 0)
+++ ironman/IronMan-Web/script/ironman_web_server.pl 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,111 @@
+#!/usr/bin/perl -w
+
+BEGIN {
+ $ENV{CATALYST_ENGINE} ||= 'HTTP';
+ $ENV{CATALYST_SCRIPT_GEN} = 30;
+ require Catalyst::Engine::HTTP;
+}
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+
+my $debug = 0;
+my $fork = 0;
+my $help = 0;
+my $host = undef;
+my $port = $ENV{IRONMAN_WEB_PORT} || $ENV{CATALYST_PORT} || 3000;
+my $keepalive = 0;
+my $restart = $ENV{IRONMAN_WEB_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
+my $restart_delay = 1;
+my $restart_regex = '\.yml$|\.yaml$|\.pm$';
+my $restart_directory = undef;
+
+my @argv = @ARGV;
+
+GetOptions(
+ 'debug|d' => \$debug,
+ 'fork' => \$fork,
+ 'help|?' => \$help,
+ 'host=s' => \$host,
+ 'port=s' => \$port,
+ 'keepalive|k' => \$keepalive,
+ 'restart|r' => \$restart,
+ 'restartdelay|rd=s' => \$restart_delay,
+ 'restartregex|rr=s' => \$restart_regex,
+ 'restartdirectory=s' => \$restart_directory,
+);
+
+pod2usage(1) if $help;
+
+if ( $restart && $ENV{CATALYST_ENGINE} eq 'HTTP' ) {
+ $ENV{CATALYST_ENGINE} = 'HTTP::Restarter';
+}
+if ( $debug ) {
+ $ENV{CATALYST_DEBUG} = 1;
+}
+
+# This is require instead of use so that the above environment
+# variables can be set at runtime.
+require IronMan::Web;
+
+IronMan::Web->run( $port, $host, {
+ argv => \@argv,
+ 'fork' => $fork,
+ keepalive => $keepalive,
+ restart => $restart,
+ restart_delay => $restart_delay,
+ restart_regex => qr/$restart_regex/,
+ restart_directory => $restart_directory,
+} );
+
+1;
+
+=head1 NAME
+
+ironman_web_server.pl - Catalyst Testserver
+
+=head1 SYNOPSIS
+
+ironman_web_server.pl [options]
+
+ Options:
+ -d -debug force debug mode
+ -f -fork handle each request in a new process
+ (defaults to false)
+ -? -help display this help and exits
+ -host host (defaults to all)
+ -p -port port (defaults to 3000)
+ -k -keepalive enable keep-alive connections
+ -r -restart restart when files get modified
+ (defaults to false)
+ -rd -restartdelay delay between file checks
+ -rr -restartregex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.pm$')
+ -restartdirectory the directory to search for
+ modified files
+ (defaults to '../')
+
+ See also:
+ perldoc Catalyst::Manual
+ perldoc Catalyst::Manual::Intro
+
+=head1 DESCRIPTION
+
+Run a Catalyst Testserver for this application.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: ironman/IronMan-Web/script/ironman_web_server.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: ironman/IronMan-Web/script/ironman_web_test.pl
===================================================================
--- ironman/IronMan-Web/script/ironman_web_test.pl (rev 0)
+++ ironman/IronMan-Web/script/ironman_web_test.pl 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,54 @@
+#!/usr/bin/perl -w
+
+use strict;
+use warnings;
+use Getopt::Long;
+use Pod::Usage;
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+use Catalyst::Test 'IronMan::Web';
+
+my $help = 0;
+
+GetOptions( 'help|?' => \$help );
+
+pod2usage(1) if ( $help || !$ARGV[0] );
+
+print request($ARGV[0])->content . "\n";
+
+1;
+
+=head1 NAME
+
+ironman_web_test.pl - Catalyst Test
+
+=head1 SYNOPSIS
+
+ironman_web_test.pl [options] uri
+
+ Options:
+ -help display this help and exits
+
+ Examples:
+ ironman_web_test.pl http://localhost/some_action
+ ironman_web_test.pl /some_action
+
+ See also:
+ perldoc Catalyst::Manual
+ perldoc Catalyst::Manual::Intro
+
+=head1 DESCRIPTION
+
+Run a Catalyst action from the command line.
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+Maintained by the Catalyst Core Team.
+
+=head1 COPYRIGHT
+
+This library is free software, you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+=cut
Property changes on: ironman/IronMan-Web/script/ironman_web_test.pl
___________________________________________________________________
Name: svn:executable
+ *
Added: ironman/IronMan-Web/t/01app.t
===================================================================
--- ironman/IronMan-Web/t/01app.t (rev 0)
+++ ironman/IronMan-Web/t/01app.t 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,7 @@
+use strict;
+use warnings;
+use Test::More tests => 2;
+
+BEGIN { use_ok 'Catalyst::Test', 'IronMan::Web' }
+
+ok( request('/')->is_success, 'Request should succeed' );
Added: ironman/IronMan-Web/t/02pod.t
===================================================================
--- ironman/IronMan-Web/t/02pod.t (rev 0)
+++ ironman/IronMan-Web/t/02pod.t 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+use Test::More;
+
+eval "use Test::Pod 1.14";
+plan skip_all => 'Test::Pod 1.14 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_files_ok();
Added: ironman/IronMan-Web/t/03podcoverage.t
===================================================================
--- ironman/IronMan-Web/t/03podcoverage.t (rev 0)
+++ ironman/IronMan-Web/t/03podcoverage.t 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+use Test::More;
+
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_coverage_ok();
Added: ironman/IronMan-Web/t/model_FeedDB.t
===================================================================
--- ironman/IronMan-Web/t/model_FeedDB.t (rev 0)
+++ ironman/IronMan-Web/t/model_FeedDB.t 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,6 @@
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+BEGIN { use_ok 'IronMan::Web::Model::FeedDB' }
+
Added: ironman/IronMan-Web/t/view_TT.t
===================================================================
--- ironman/IronMan-Web/t/view_TT.t (rev 0)
+++ ironman/IronMan-Web/t/view_TT.t 2009-07-30 21:19:20 UTC (rev 7155)
@@ -0,0 +1,6 @@
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+BEGIN { use_ok 'IronMan::Web::View::TT' }
+
More information about the Bast-commits
mailing list