Skip Menu |

This queue is for tickets about the Catalyst-Plugin-Static-Simple CPAN distribution.

Report information
The Basics
Id: 77709
Status: resolved
Priority: 0/
Queue: Catalyst-Plugin-Static-Simple

People
Owner: abraxxa [...] cpan.org
Requestors: stratman [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.30
Fixed in: (no value)



Subject: [PATCH] POD updates for deprecated 'static' config key
Patch attached. Updated POD to reflect config key change from 'static' to 'Plugin::Static::Simple'.
Subject: Catalyst-Plugin-Static-Simple-docfix.patch
--- Catalyst-Plugin-Static-Simple-0.30/lib/Catalyst/Plugin/Static/Simple.pm 2012-05-04 11:49:30.000000000 -0500 +++ Catalyst-Plugin-Static-Simple-docfix/lib/Catalyst/Plugin/Static/Simple.pm 2012-06-08 10:33:36.000000000 -0500 @@ -345,7 +345,7 @@ =head1 ADVANCED CONFIGURATION Configuration is completely optional and is specified within -C<MyApp-E<gt>config-E<gt>{static}>. If you use any of these options, +C<MyApp-E<gt>config-E<gt>{Plugin::Static::Simple}>. If you use any of these options, this module will probably feel less "simple" to you! =head2 Enabling request logging @@ -354,7 +354,7 @@ default; static requests tend to clutter the log output and rarely reveal anything useful. However, if you want to enable logging of static requests, you can do so by setting -C<MyApp-E<gt>config-E<gt>{static}-E<gt>{logging}> to 1. +C<MyApp-E<gt>config-E<gt>{Plugin::Static::Simple}-E<gt>{logging}> to 1. =head2 Forcing directories into static mode @@ -363,7 +363,7 @@ specified using C<qr//>. MyApp->config( - static => { + 'Plugin::Static::Simple' => { dirs => [ 'static', qr/^(images|css)/, @@ -380,7 +380,7 @@ use C<MyApp-E<gt>config-E<gt>{root}> to add it. MyApp->config( - static => { + 'Plugin::Static::Simple' => { include_path => [ '/path/to/overlay', \&incpath_generator, @@ -424,7 +424,7 @@ C<ignore_extensions> option: MyApp->config( - static => { + 'Plugin::Static::Simple' => { ignore_extensions => [ qw/html asp php/ ], }, ); @@ -437,7 +437,7 @@ checked against every included path. MyApp->config( - static => { + 'Plugin::Static::Simple' => { ignore_dirs => [ qw/tmpl css/ ], }, ); @@ -458,7 +458,7 @@ module, you may enter your own extension to MIME type mapping. MyApp->config( - static => { + 'Plugin::Static::Simple' => { mime_types => { jpg => 'image/jpg', png => 'image/png', @@ -478,7 +478,7 @@ will keep the file around for that long. MyApp->config( - static => { + 'Plugin::Static::Simple' => { expires => 3600, # Caching allowed for one hour. }, ); @@ -495,7 +495,7 @@ is automatically enabled when running Catalyst in -Debug mode. MyApp->config( - static => { + 'Plugin::Static::Simple' => { debug => 1, }, );