Changeset 7665
- Timestamp:
- 03/08/08 23:54:32 (5 years ago)
- Location:
- lang/perl/Chaostr
- Files:
-
- 1 added
- 10 modified
- 5 moved
-
chaostr_web.yml (moved) (moved from lang/perl/Chaostr/chaostr.yml) (1 diff)
-
lib/Chaostr/Web (added)
-
lib/Chaostr/Web.pm (moved) (moved from lang/perl/Chaostr/lib/Chaostr.pm) (3 diffs)
-
lib/Chaostr/Web/Controller (moved) (moved from lang/perl/Chaostr/lib/Chaostr/Controller)
-
lib/Chaostr/Web/Controller/Login.pm (modified) (2 diffs)
-
lib/Chaostr/Web/Controller/Root.pm (modified) (2 diffs)
-
lib/Chaostr/Web/Controller/User.pm (modified) (2 diffs)
-
lib/Chaostr/Web/Model (moved) (moved from lang/perl/Chaostr/lib/Chaostr/Model)
-
lib/Chaostr/Web/Model/DBIC.pm (modified) (2 diffs)
-
lib/Chaostr/Web/View (moved) (moved from lang/perl/Chaostr/lib/Chaostr/View)
-
lib/Chaostr/Web/View/TT.pm (modified) (3 diffs)
-
script/chaostr_cgi.pl (modified) (1 diff)
-
script/chaostr_create.pl (modified) (1 diff)
-
script/chaostr_fastcgi.pl (modified) (2 diffs)
-
script/chaostr_server.pl (modified) (1 diff)
-
script/chaostr_test.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Chaostr/chaostr_web.yml
r7658 r7665 1 1 --- 2 name: Chaostr 2 name: Chaostr::Web 3 3 session: 4 4 dbic_class: DBIC::Session -
lang/perl/Chaostr/lib/Chaostr/Web.pm
r7662 r7665 1 package Chaostr ;1 package Chaostr::Web; 2 2 3 3 use strict; … … 47 47 # local deployment. 48 48 49 __PACKAGE__->config( name => 'Chaostr ' );49 __PACKAGE__->config( name => 'Chaostr::Web' ); 50 50 51 51 # Start the application … … 68 68 =head1 SEE ALSO 69 69 70 L<Chaostr:: Controller::Root>, L<Catalyst>70 L<Chaostr::Web::Controller::Root>, L<Catalyst> 71 71 72 72 =head1 AUTHOR -
lang/perl/Chaostr/lib/Chaostr/Web/Controller/Login.pm
r7658 r7665 1 package Chaostr:: Controller::Login;1 package Chaostr::Web::Controller::Login; 2 2 3 3 use strict; … … 7 7 =head1 NAME 8 8 9 Chaostr:: Controller::Login - Catalyst Controller9 Chaostr::Web::Controller::Login - Catalyst Controller 10 10 11 11 =head1 DESCRIPTION -
lang/perl/Chaostr/lib/Chaostr/Web/Controller/Root.pm
r7658 r7665 1 package Chaostr:: Controller::Root;1 package Chaostr::Web::Controller::Root; 2 2 3 3 use strict; … … 13 13 =head1 NAME 14 14 15 Chaostr:: Controller::Root - Root Controller for Users15 Chaostr::Web::Controller::Root - Root Controller for Users 16 16 17 17 =head1 DESCRIPTION -
lang/perl/Chaostr/lib/Chaostr/Web/Controller/User.pm
r7658 r7665 1 package Chaostr:: Controller::User;1 package Chaostr::Web::Controller::User; 2 2 3 3 use strict; … … 9 9 =head1 NAME 10 10 11 Chaostr:: Controller::User - ユーザ管理コントローラ11 Chaostr::Web::Controller::User - ユーザ管理コントローラ 12 12 13 13 =head1 DESCRIPTION -
lang/perl/Chaostr/lib/Chaostr/Web/Model/DBIC.pm
r7658 r7665 1 package Chaostr:: Model::DBIC;1 package Chaostr::Web::Model::DBIC; 2 2 3 3 use strict; … … 16 16 =head1 NAME 17 17 18 Chaostr::Model::DBIC - Catalyst DBIC Schema Model 18 Chaostr::Web::Model::DBIC - Catalyst DBIC Schema Model 19 19 20 =head1 SYNOPSIS 20 21 21 See L<Chaostr >22 See L<Chaostr::Web> 22 23 23 24 =head1 DESCRIPTION 24 25 25 L<Catalyst:: Model::DBIC::Schema> Model using schema L<Chaostr::DB::Schema>26 L<Catalyst::Web::Model::DBIC::Schema> Model using schema L<Chaostr::DB::Schema> 26 27 27 28 =head1 AUTHOR -
lang/perl/Chaostr/lib/Chaostr/Web/View/TT.pm
r7662 r7665 1 package Chaostr:: View::TT;1 package Chaostr::Web::View::TT; 2 2 3 3 use strict; … … 8 8 { CATALYST_VAR => 'c', 9 9 INCLUDE_PATH => [ 10 Chaostr ->path_to( 'root', 'src' ),11 Chaostr ->path_to( 'root', 'lib' )10 Chaostr::Web->path_to( 'root', 'src' ), 11 Chaostr::Web->path_to( 'root', 'lib' ) 12 12 ], 13 COMPILE_DIR => Chaostr ->path_to( 'root', 'ttc' ),13 COMPILE_DIR => Chaostr::Web->path_to( 'root', 'ttc' ), 14 14 PRE_PROCESS => 'config/main', 15 15 WRAPPER => 'site/wrapper', … … 22 22 =head1 NAME 23 23 24 Chaostr:: View::TT - Catalyst TTSite View24 Chaostr::Web::View::TT - Catalyst TTSite View 25 25 26 26 =head1 SYNOPSIS -
lang/perl/Chaostr/script/chaostr_cgi.pl
r7658 r7665 7 7 use FindBin; 8 8 use lib "$FindBin::Bin/../lib"; 9 use Chaostr ;9 use Chaostr::Web; 10 10 11 Chaostr ->run;11 Chaostr::Web->run; 12 12 13 13 1; -
lang/perl/Chaostr/script/chaostr_create.pl
r7658 r7665 21 21 my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } ); 22 22 23 pod2usage(1) unless $helper->mk_component( 'Chaostr ', @ARGV );23 pod2usage(1) unless $helper->mk_component( 'Chaostr::Web', @ARGV ); 24 24 25 25 1; -
lang/perl/Chaostr/script/chaostr_fastcgi.pl
r7658 r7665 9 9 use FindBin; 10 10 use lib "$FindBin::Bin/../lib"; 11 use Chaostr ;11 use Chaostr::Web; 12 12 13 13 my $help = 0; … … 26 26 pod2usage(1) if $help; 27 27 28 Chaostr ->run(28 Chaostr::Web->run( 29 29 $listen, 30 30 { nproc => $nproc, -
lang/perl/Chaostr/script/chaostr_server.pl
r7658 r7665 51 51 # This is require instead of use so that the above environment 52 52 # variables can be set at runtime. 53 require Chaostr ;53 require Chaostr::Web; 54 54 55 Chaostr ->run( $port, $host, {55 Chaostr::Web->run( $port, $host, { 56 56 argv => \@argv, 57 57 'fork' => $fork, -
lang/perl/Chaostr/script/chaostr_test.pl
r7658 r7665 7 7 use FindBin; 8 8 use lib "$FindBin::Bin/../lib"; 9 use Catalyst::Test 'Chaostr ';9 use Catalyst::Test 'Chaostr::Web'; 10 10 11 11 my $help = 0;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)