[Catalyst-commits] r7310 - in trunk/examples: . Advent07FormFu Advent07FormFu/start Advent07FormFu/start/Fu Advent07FormFu/start/Fu/lib Advent07FormFu/start/Fu/lib/Fu Advent07FormFu/start/Fu/lib/Fu/Controller Advent07FormFu/start/Fu/lib/Fu/Model Advent07FormFu/start/Fu/lib/Fu/Schema Advent07FormFu/start/Fu/lib/Fu/Schema/Result Advent07FormFu/start/Fu/lib/Fu/View Advent07FormFu/start/Fu/root Advent07FormFu/start/Fu/root/lib Advent07FormFu/start/Fu/root/src Advent07FormFu/start/Fu/root/src/person Advent07FormFu/start/Fu/root/static Advent07FormFu/start/Fu/script Advent07FormFu/start/Fu/t Advent07FormFu/start/Fu/t/var

zamolxes at dev.catalyst.perl.org zamolxes at dev.catalyst.perl.org
Wed Dec 19 04:15:10 GMT 2007


Author: zamolxes
Date: 2007-12-19 04:15:09 +0000 (Wed, 19 Dec 2007)
New Revision: 7310

Added:
   trunk/examples/Advent07FormFu/
   trunk/examples/Advent07FormFu/start/
   trunk/examples/Advent07FormFu/start/Fu/
   trunk/examples/Advent07FormFu/start/Fu/Changes
   trunk/examples/Advent07FormFu/start/Fu/Makefile.PL
   trunk/examples/Advent07FormFu/start/Fu/README
   trunk/examples/Advent07FormFu/start/Fu/fu.yml
   trunk/examples/Advent07FormFu/start/Fu/lib/
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu.pm
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Person.pm
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Root.pm
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Model/
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Model/DB.pm
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema.pm
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema/
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema/Result/
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema/Result/Person.pm
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/View/
   trunk/examples/Advent07FormFu/start/Fu/lib/Fu/View/TT.pm
   trunk/examples/Advent07FormFu/start/Fu/root/
   trunk/examples/Advent07FormFu/start/Fu/root/favicon.ico
   trunk/examples/Advent07FormFu/start/Fu/root/lib/
   trunk/examples/Advent07FormFu/start/Fu/root/lib/wrapper.tt
   trunk/examples/Advent07FormFu/start/Fu/root/src/
   trunk/examples/Advent07FormFu/start/Fu/root/src/person/
   trunk/examples/Advent07FormFu/start/Fu/root/src/person/add.tt
   trunk/examples/Advent07FormFu/start/Fu/root/src/person/edit.tt
   trunk/examples/Advent07FormFu/start/Fu/root/src/person/list.tt
   trunk/examples/Advent07FormFu/start/Fu/root/static/
   trunk/examples/Advent07FormFu/start/Fu/root/static/styles.css
   trunk/examples/Advent07FormFu/start/Fu/script/
   trunk/examples/Advent07FormFu/start/Fu/script/fu_cgi.pl
   trunk/examples/Advent07FormFu/start/Fu/script/fu_create.pl
   trunk/examples/Advent07FormFu/start/Fu/script/fu_fastcgi.pl
   trunk/examples/Advent07FormFu/start/Fu/script/fu_server.pl
   trunk/examples/Advent07FormFu/start/Fu/script/fu_test.pl
   trunk/examples/Advent07FormFu/start/Fu/t/
   trunk/examples/Advent07FormFu/start/Fu/t/01app.t
   trunk/examples/Advent07FormFu/start/Fu/t/02pod.t
   trunk/examples/Advent07FormFu/start/Fu/t/03podcoverage.t
   trunk/examples/Advent07FormFu/start/Fu/t/controller_Person.t
   trunk/examples/Advent07FormFu/start/Fu/t/model_DB.t
   trunk/examples/Advent07FormFu/start/Fu/t/var/
   trunk/examples/Advent07FormFu/start/Fu/t/var/fu.db
   trunk/examples/Advent07FormFu/start/Fu/t/view_TT.t
Log:
Sample app for the FormFu calendar article



Added: trunk/examples/Advent07FormFu/start/Fu/Changes
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/Changes	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/Changes	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,4 @@
+This file documents the revision history for Perl extension Fu.
+
+0.01  2007-12-19 05:20:56
+        - initial revision, generated by Catalyst

Added: trunk/examples/Advent07FormFu/start/Fu/Makefile.PL
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/Makefile.PL	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/Makefile.PL	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,16 @@
+use inc::Module::Install;
+
+name 'Fu';
+all_from 'lib/Fu.pm';
+
+requires 'Catalyst::Runtime' => '5.7011';
+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
+catalyst;
+
+install_script glob('script/*.pl');
+auto_install;
+WriteAll;

Added: trunk/examples/Advent07FormFu/start/Fu/README
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/README	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/README	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1 @@
+Run script/fu_server.pl to test the application.

Added: trunk/examples/Advent07FormFu/start/Fu/fu.yml
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/fu.yml	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/fu.yml	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,2 @@
+---
+name: Fu

Added: trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Person.pm
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Person.pm	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Person.pm	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,70 @@
+package Fu::Controller::Person;
+
+use strict;
+use warnings;
+use base 'Catalyst::Controller';
+
+=head1 NAME
+
+Fu::Controller::Person - Catalyst Controller
+
+=head1 DESCRIPTION
+
+Catalyst Controller.
+
+=head1 METHODS
+
+=cut
+
+=head2 /person/list 
+
+Shows a list of persons in your database.
+
+It's also the index action of your app.
+
+=cut 
+
+sub list : Path(/) {
+  my ($self, $c) = @_;
+  $c->stash->{persons} = $c->model('DB::Person');
+}
+
+=head2 /person/edit/<id>
+
+Edits a person, expects the person id as an arg
+
+=cut 
+
+sub edit : Local {
+  my ($self, $c, $id) = @_;
+  $id =~ /\d+/ or die 'invalid id';
+  $c->stash->{person} = $c->model('DB::Person')->find($id) or die "person $id not found";
+  
+  #TODO add fairydust
+}
+
+=head2 /person/add
+
+Adds a new person in your db
+
+=cut 
+
+sub add : Local {
+  my ($self, $c) = @_;
+  
+  #TODO add fairydust
+
+}
+
+=head1 AUTHOR
+
+Bogdan Lucaciu,,,
+
+=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: trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Root.pm
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Root.pm	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Controller/Root.pm	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,55 @@
+package Fu::Controller::Root;
+
+use strict;
+use warnings;
+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
+
+Fu::Controller::Root - Root Controller for Fu
+
+=head1 DESCRIPTION
+
+[enter your description here]
+
+=head1 METHODS
+
+=cut
+
+=head2 default
+
+=cut
+
+sub default : Private {
+    my ( $self, $c ) = @_;
+
+    $c->response->status(404);
+    $c->response->body( 'Page not found' );
+}
+
+=head2 end
+
+Attempt to render a view, if needed.
+
+=cut 
+
+sub end : ActionClass('RenderView') {}
+
+=head1 AUTHOR
+
+Bogdan Lucaciu,,,
+
+=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: trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Model/DB.pm
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Model/DB.pm	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Model/DB.pm	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,36 @@
+package Fu::Model::DB;
+
+use strict;
+use base 'Catalyst::Model::DBIC::Schema';
+
+__PACKAGE__->config(
+    schema_class => 'Fu::Schema',
+    connect_info => [
+        'dbi:SQLite:dbname=t/var/fu.db',
+        
+    ],
+);
+
+=head1 NAME
+
+Fu::Model::DB - Catalyst DBIC Schema Model
+=head1 SYNOPSIS
+
+See L<Fu>
+
+=head1 DESCRIPTION
+
+L<Catalyst::Model::DBIC::Schema> Model using schema L<Fu::Schema>
+
+=head1 AUTHOR
+
+Bogdan Lucaciu,,,
+
+=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: trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema/Result/Person.pm
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema/Result/Person.pm	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema/Result/Person.pm	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,38 @@
+package Fu::Schema::Result::Person;
+use strict;
+use warnings;
+use base qw/DBIx::Class/;
+
+__PACKAGE__->load_components(qw/ Core /);
+__PACKAGE__->table('person');
+__PACKAGE__->add_columns(
+	person_id => {
+		data_type 		=> 'integer',
+		is_nullable 		=> 0,
+		is_auto_increment	=> 1,
+	},
+	email => {
+		data_type		=> 'varchar',
+		size			=> 255,
+	},
+	name => {
+		data_type		=> 'varchar',
+		size			=> 255,
+                is_nullable 		=> 1,
+	},
+	phone => {
+               	data_type 		=> 'varchar',
+		size			=> 32,
+                is_nullable 		=> 1,
+	},
+	gender => {
+                data_type		=> 'char' ,
+		size			=> 1 ,
+		is_nullable		=> 0 ,
+	},
+
+);
+
+__PACKAGE__->set_primary_key('person_id');
+
+1;

Added: trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema.pm
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema.pm	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/lib/Fu/Schema.pm	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,6 @@
+package Fu::Schema;
+use strict;
+use base qw/DBIx::Class::Schema/;
+__PACKAGE__->load_namespaces();
+
+1;

Added: trunk/examples/Advent07FormFu/start/Fu/lib/Fu/View/TT.pm
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/lib/Fu/View/TT.pm	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/lib/Fu/View/TT.pm	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,40 @@
+package Fu::View::TT;
+
+use strict;
+use base 'Catalyst::View::TT';
+
+__PACKAGE__->config({
+
+            INCLUDE_PATH => [
+              Fu->path_to( 'root', 'src' ), 
+              Fu->path_to( 'root', 'lib' ), 
+            ],
+            WRAPPER            => 'wrapper.tt',
+            TEMPLATE_EXTENSION => '.tt',
+
+});
+
+=head1 NAME
+
+Fu::View::TT - TT View for Fu
+
+=head1 DESCRIPTION
+
+TT View for Fu. 
+
+=head1 AUTHOR
+
+=head1 SEE ALSO
+
+L<Fu>
+
+Bogdan Lucaciu,,,
+
+=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: trunk/examples/Advent07FormFu/start/Fu/lib/Fu.pm
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/lib/Fu.pm	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/lib/Fu.pm	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,62 @@
+package Fu;
+
+use strict;
+use warnings;
+
+use Catalyst::Runtime '5.70';
+
+# 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 fu.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 => 'Fu' );
+
+# Start the application
+__PACKAGE__->setup;
+
+
+=head1 NAME
+
+Fu - Catalyst based application
+
+=head1 SYNOPSIS
+
+    script/fu_server.pl
+
+=head1 DESCRIPTION
+
+[enter your description here]
+
+=head1 SEE ALSO
+
+L<Fu::Controller::Root>, L<Catalyst>
+
+=head1 AUTHOR
+
+Bogdan Lucaciu,,,
+
+=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: trunk/examples/Advent07FormFu/start/Fu/root/favicon.ico
===================================================================
(Binary files differ)


Property changes on: trunk/examples/Advent07FormFu/start/Fu/root/favicon.ico
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/examples/Advent07FormFu/start/Fu/root/lib/wrapper.tt
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/root/lib/wrapper.tt	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/root/lib/wrapper.tt	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,12 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.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" />
+  <title>FormFu playground</title>
+  <link href="[% c.uri_for('/static/styles.css') %]" rel="stylesheet" type="text/css"/>
+</head>
+<body>
+[% content %]
+</body>
+</html>

Added: trunk/examples/Advent07FormFu/start/Fu/root/src/person/add.tt
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/root/src/person/add.tt	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/root/src/person/add.tt	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,2 @@
+<h1> Add someone </h1>
+<p><a href="[% c.uri_for('/') %]">Back to your buddies</a> </p>  

Added: trunk/examples/Advent07FormFu/start/Fu/root/src/person/edit.tt
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/root/src/person/edit.tt	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/root/src/person/edit.tt	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,2 @@
+<h1> Edit [% person.name %] </h1>
+<p><a href="[% c.uri_for('/') %]">Back to your buddies</a> </p>  

Added: trunk/examples/Advent07FormFu/start/Fu/root/src/person/list.tt
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/root/src/person/list.tt	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/root/src/person/list.tt	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,11 @@
+<h1>Your buddies</h1>
+
+<p> <a href="[% c.uri_for('/person/add') %]">Add someone</a> </p>
+<ul>
+[% WHILE (person=persons.next) %]
+  <li> 
+    [% person.name %], [% person.email %], [% person.phone %],  [% person.gender %] - 
+    <a href="[% c.uri_for('/person/edit', person.person_id ) %]">Edit</a>
+  </li>
+[% END %]
+</ul>

Added: trunk/examples/Advent07FormFu/start/Fu/root/static/styles.css
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/root/static/styles.css	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/root/static/styles.css	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,4 @@
+body {
+	font-family: sans-serif;
+	font-size: 90%;
+}

Added: trunk/examples/Advent07FormFu/start/Fu/script/fu_cgi.pl
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/script/fu_cgi.pl	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/script/fu_cgi.pl	2007-12-19 04:15:09 UTC (rev 7310)
@@ -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 Fu;
+
+Fu->run;
+
+1;
+
+=head1 NAME
+
+fu_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: trunk/examples/Advent07FormFu/start/Fu/script/fu_cgi.pl
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/examples/Advent07FormFu/start/Fu/script/fu_create.pl
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/script/fu_create.pl	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/script/fu_create.pl	2007-12-19 04:15:09 UTC (rev 7310)
@@ -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( 'Fu', @ARGV );
+
+1;
+
+=head1 NAME
+
+fu_create.pl - Create a new Catalyst Component
+
+=head1 SYNOPSIS
+
+fu_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:
+   fu_create.pl controller My::Controller
+   fu_create.pl controller My::Controller BindLex
+   fu_create.pl -mechanize controller My::Controller
+   fu_create.pl view My::View
+   fu_create.pl view MyView TT
+   fu_create.pl view TT TT
+   fu_create.pl model My::Model
+   fu_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
+   dbi:SQLite:/tmp/my.db
+   fu_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: trunk/examples/Advent07FormFu/start/Fu/script/fu_create.pl
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/examples/Advent07FormFu/start/Fu/script/fu_fastcgi.pl
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/script/fu_fastcgi.pl	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/script/fu_fastcgi.pl	2007-12-19 04:15:09 UTC (rev 7310)
@@ -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 Fu;
+
+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;
+
+Fu->run( 
+    $listen, 
+    {   nproc   => $nproc,
+        pidfile => $pidfile, 
+        manager => $manager,
+        detach  => $detach,
+	keep_stderr => $keep_stderr,
+    }
+);
+
+1;
+
+=head1 NAME
+
+fu_fastcgi.pl - Catalyst FastCGI
+
+=head1 SYNOPSIS
+
+fu_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: trunk/examples/Advent07FormFu/start/Fu/script/fu_fastcgi.pl
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/examples/Advent07FormFu/start/Fu/script/fu_server.pl
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/script/fu_server.pl	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/script/fu_server.pl	2007-12-19 04:15:09 UTC (rev 7310)
@@ -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{FU_PORT} || $ENV{CATALYST_PORT} || 3000;
+my $keepalive         = 0;
+my $restart           = $ENV{FU_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 Fu;
+
+Fu->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
+
+fu_server.pl - Catalyst Testserver
+
+=head1 SYNOPSIS
+
+fu_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: trunk/examples/Advent07FormFu/start/Fu/script/fu_server.pl
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/examples/Advent07FormFu/start/Fu/script/fu_test.pl
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/script/fu_test.pl	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/script/fu_test.pl	2007-12-19 04:15:09 UTC (rev 7310)
@@ -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 'Fu';
+
+my $help = 0;
+
+GetOptions( 'help|?' => \$help );
+
+pod2usage(1) if ( $help || !$ARGV[0] );
+
+print request($ARGV[0])->content . "\n";
+
+1;
+
+=head1 NAME
+
+fu_test.pl - Catalyst Test
+
+=head1 SYNOPSIS
+
+fu_test.pl [options] uri
+
+ Options:
+   -help    display this help and exits
+
+ Examples:
+   fu_test.pl http://localhost/some_action
+   fu_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: trunk/examples/Advent07FormFu/start/Fu/script/fu_test.pl
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/examples/Advent07FormFu/start/Fu/t/01app.t
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/t/01app.t	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/t/01app.t	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,7 @@
+use strict;
+use warnings;
+use Test::More tests => 2;
+
+BEGIN { use_ok 'Catalyst::Test', 'Fu' }
+
+ok( request('/')->is_success, 'Request should succeed' );

Added: trunk/examples/Advent07FormFu/start/Fu/t/02pod.t
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/t/02pod.t	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/t/02pod.t	2007-12-19 04:15:09 UTC (rev 7310)
@@ -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: trunk/examples/Advent07FormFu/start/Fu/t/03podcoverage.t
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/t/03podcoverage.t	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/t/03podcoverage.t	2007-12-19 04:15:09 UTC (rev 7310)
@@ -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: trunk/examples/Advent07FormFu/start/Fu/t/controller_Person.t
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/t/controller_Person.t	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/t/controller_Person.t	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,10 @@
+use strict;
+use warnings;
+use Test::More tests => 3;
+
+BEGIN { use_ok 'Catalyst::Test', 'Fu' }
+BEGIN { use_ok 'Fu::Controller::Person' }
+
+ok( request('/person')->is_success, 'Request should succeed' );
+
+

Added: trunk/examples/Advent07FormFu/start/Fu/t/model_DB.t
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/t/model_DB.t	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/t/model_DB.t	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,6 @@
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+BEGIN { use_ok 'Fu::Model::DB' }
+

Added: trunk/examples/Advent07FormFu/start/Fu/t/var/fu.db
===================================================================
(Binary files differ)


Property changes on: trunk/examples/Advent07FormFu/start/Fu/t/var/fu.db
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/examples/Advent07FormFu/start/Fu/t/view_TT.t
===================================================================
--- trunk/examples/Advent07FormFu/start/Fu/t/view_TT.t	                        (rev 0)
+++ trunk/examples/Advent07FormFu/start/Fu/t/view_TT.t	2007-12-19 04:15:09 UTC (rev 7310)
@@ -0,0 +1,6 @@
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+BEGIN { use_ok 'Fu::View::TT' }
+




More information about the Catalyst-commits mailing list