Update Task::Catalyst to modern versions
Marcus Ramberg [Sun, 14 Sep 2008 14:27:46 +0000 (14:27 +0000)]
Changes
Makefile.PL
lib/Task/Catalyst.pm

diff --git a/Changes b/Changes
index 32678fe..68962b3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Task::Catalyst.
 
+3.0000
+    - Switch from HTML::Widget to FormFu
+    - Remove bindlex
+
 2.0001 Wed 31 Aug 2007
        - Fixed Dependency for formbuilder controller
 
index c5a9761..4d2970f 100644 (file)
@@ -24,23 +24,18 @@ feature 'Log4perl Support',
     'Params::Validate'        => 0,
     'Catalyst::Log::Log4perl' => '0.1';
 
-feature 'HTML::Widget Support',
+feature 'HTML::FormFu Support',
     -default                         => 1,
-    'Date::Calc'                     => 0,
-    'Catalyst::Plugin::HTML::Widget' => '1.1';
+    'Catalyst::Controller::HTML::FormFu' => '0.03';
 
 feature 'FormBuilder Support',
-    -default                        => 1,
+    -default                        => 0,
     'Catalyst::Controller::FormBuilder' => '0.03';
 
 feature 'Stacktrace Advanced Debugging Support',
     -default                       => 1,
     'Catalyst::Plugin::StackTrace' => '0.02';
 
-feature 'Prototype Support',
-    -default                      => 1,
-    'Catalyst::Plugin::Prototype' => '1.32';
-
 feature 'Session Support',
     -default                                   => 1,
     'Catalyst::Plugin::Session'                => '0.05',
@@ -51,8 +46,7 @@ feature 'Session Support',
 feature 'Authentication/Authorization Support',
     -default                                            => 1,
     'Catalyst::Plugin::Authentication'                  => '0.05',
-    'Catalyst::Plugin::Authentication::Store::DBIC'     => '0.04',
-    'Catalyst::Plugin::Authentication::Store::Htpasswd' => '0.02',
+    'Catalyst::Authentication::Store::DBIx::Class'      => '0.04',
     'Catalyst::Plugin::Authorization::ACL'              => '0.06',
     'Catalyst::Plugin::Authorization::Roles'            => '0.03';
 
@@ -60,10 +54,6 @@ feature 'I18N Support',
     -default                 => 1,
     'Catalyst::Plugin::I18N' => '0.05';
 
-feature 'BindLex Support',
-    -default                => 1,
-    'Catalyst::Controller::BindLex' => '0.03';
-
 feature 'DBIx::Class Support',
     -default                        => 1,
     'Catalyst::Model::DBIC::Schema' => '0.08';
index 4d324fc..f05b6c1 100644 (file)
@@ -3,7 +3,7 @@ package Task::Catalyst;
 use strict;
 use warnings;
 
-our $VERSION = '2.0001';
+our $VERSION = '3.0000';
 
 =head1 NAME