[Catalyst-commits] r6918 - in
trunk/Catalyst-Plugin-Cache-FileCache: . lib/Catalyst/Plugin/Cache
bricas at dev.catalyst.perl.org
bricas at dev.catalyst.perl.org
Tue Sep 18 14:21:51 GMT 2007
Author: bricas
Date: 2007-09-18 14:21:50 +0100 (Tue, 18 Sep 2007)
New Revision: 6918
Modified:
trunk/Catalyst-Plugin-Cache-FileCache/Changes
trunk/Catalyst-Plugin-Cache-FileCache/README
trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm
Log:
added deprecation notice
Modified: trunk/Catalyst-Plugin-Cache-FileCache/Changes
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/Changes 2007-09-18 11:58:58 UTC (rev 6917)
+++ trunk/Catalyst-Plugin-Cache-FileCache/Changes 2007-09-18 13:21:50 UTC (rev 6918)
@@ -3,6 +3,10 @@
0.7 2007-09-18
- Fix missing Class::Data::Inheritable dependency
+ [DEPRECATION NOTICE]
+ - This module has been deprecated in favor of Catalyst::Plugin::Cache.
+ You can configure that module to use a FileCache backend.
+
0.6 2007-04-29 02:13:00
- Switch to Module::Install
Modified: trunk/Catalyst-Plugin-Cache-FileCache/README
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/README 2007-09-18 11:58:58 UTC (rev 6917)
+++ trunk/Catalyst-Plugin-Cache-FileCache/README 2007-09-18 13:21:50 UTC (rev 6918)
@@ -1,5 +1,5 @@
NAME
- Catalyst::Plugin::Cache::FileCache - File cache
+ Catalyst::Plugin::Cache::FileCache - (DEPRECATED) File cache
SYNOPSIS
use Catalyst qw[Cache::FileCache];
@@ -16,6 +16,10 @@
$c->response->body($data);
+DEPRECATION NOTICE
+ This module has been deprecated in favor of Catalyst::Plugin::Cache. You
+ can configure that module to use a FileCache backend.
+
DESCRIPTION
Extends base class with a file cache.
@@ -25,7 +29,7 @@
Returns an instance of "Cache::FileCache"
SEE ALSO
- Cache::FileCache, Catalyst.
+ Catalyst::Plugin::Cache, Cache::FileCache, Catalyst.
AUTHOR
Christian Hansen, "ch at ngmedia.com" Sebastian Riedel "sri at oook.de"
Modified: trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm 2007-09-18 11:58:58 UTC (rev 6917)
+++ trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm 2007-09-18 13:21:50 UTC (rev 6918)
@@ -38,7 +38,7 @@
=head1 NAME
-Catalyst::Plugin::Cache::FileCache - File cache
+Catalyst::Plugin::Cache::FileCache - (DEPRECATED) File cache
=head1 SYNOPSIS
@@ -56,7 +56,11 @@
$c->response->body($data);
+=head1 DEPRECATION NOTICE
+This module has been deprecated in favor of L<Catalyst::Plugin::Cache>.
+You can configure that module to use a FileCache backend.
+
=head1 DESCRIPTION
Extends base class with a file cache.
@@ -71,7 +75,7 @@
=head1 SEE ALSO
-L<Cache::FileCache>, L<Catalyst>.
+L<Catalyst::Plugin::Cache>, L<Cache::FileCache>, L<Catalyst>.
=head1 AUTHOR
More information about the Catalyst-commits
mailing list