Changeset 9008 for lang/perl/Catalyst-Controller-AllowDisable/tags
- Timestamp:
- 04/06/08 18:24:15 (5 years ago)
- Location:
- lang/perl/Catalyst-Controller-AllowDisable/tags
- Files:
-
- 1 added
- 4 modified
- 1 copied
-
0.02/META.yml (modified) (1 diff)
-
0.03 (copied) (copied from lang/perl/Catalyst-Controller-AllowDisable/trunk)
-
0.03/Changes (modified) (1 diff)
-
0.03/Makefile.PL (modified) (1 diff)
-
0.03/lib/Catalyst/Controller/AllowDisable.pm (modified) (2 diffs)
-
0.03/t/spelling.t (added)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Catalyst-Controller-AllowDisable/tags/0.02/META.yml
r8974 r9008 1 ---2 1 abstract: Use when you want to disable your controller. 3 author: 4 - Tomohiro Teranishi <tomohiro.teranishi@gmail.com> 2 author: Tomohiro Teranishi <tomohiro.teranishi@gmail.com> 5 3 distribution_type: module 6 generated_by: Module::Install version 0.6 84 generated_by: Module::Install version 0.64 7 5 license: perl 8 meta-spec:9 url: http://module-build.sourceforge.net/META-spec-v1.3.html10 version: 1.311 6 name: Catalyst-Controller-AllowDisable 12 7 no_index: -
lang/perl/Catalyst-Controller-AllowDisable/tags/0.03/Changes
r8973 r9008 1 1 Revision history for CatalystX-Controller-AllowDisable 2 3 0.03 2008-04-06/18:20 4 - add spelling.t 2 5 3 6 0.02 2008-04-05/11:43 -
lang/perl/Catalyst-Controller-AllowDisable/tags/0.03/Makefile.PL
r8973 r9008 8 8 requires 'Test::More' => 0; 9 9 requires 'Catalyst::Runtime' => 5.70; 10 requires 'Test::Spelling' => 0; 10 11 license 'perl'; 11 12 auto_install; -
lang/perl/Catalyst-Controller-AllowDisable/tags/0.03/lib/Catalyst/Controller/AllowDisable.pm
r8973 r9008 4 4 use strict; 5 5 6 our $VERSION = '0.0 2';6 our $VERSION = '0.03'; 7 7 8 8 use base qw/Catalyst::Controller/; … … 12 12 sub new { 13 13 my $self = shift; 14 my $app = $_[0];14 my $app = $_[0]; 15 15 if ( !$app->config->{on_controller_disable} ) { 16 16 my $new = $self->NEXT::new(@_); 17 $new->_application( $app);17 $new->_application($app); 18 18 return $new; 19 19 } 20 20 return $app; 21 21 } 22 23 22 24 23 1;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)