Static::Simple 0.12, play nice with other plugins
[catagits/Catalyst-Plugin-Static-Simple.git] / Changes
CommitLineData
d6d29b9b 1Revision history for Perl extension Catalyst::Plugin::Static::Simple
2
d38d0ed6 30.12
4 - Made prepare_action play nice with other plugins by not short-
5 circuiting.
6 - Added tmpl to the ignored extensions.
7
80.11 2005-11-13 16:25:00
766f4ce4 9 - Removed the code that set the 304 Not Modified header. This caused
10 problems with IE under Apache.
e358be85 11 - Changed 5.50 writing method to pass an IO::File object directly to
5224ce15 12 $c->res->body.
766f4ce4 13 - This version is included with Catalyst 5.50.
5224ce15 14
be327929 150.10 2005-10-19 17:20:00
2cb3d585 16 - Added tt2 to the list of ignored extensions.
17 - For Catalyst 5.5+, replaced File::Slurp with a buffered read/write
18 process. This will improve memory usage and performance on larger
19 static files.
20 - Removed Apache integration feature. It is slower than serving
21 through Catalyst and as far as I know no one is using it. If you
22 need the best performance, use a separate Location block for static
23 content.
24
df701614 250.09 2005-10-07 13:40:00
8cc672a2 26 - Added new configuration options to improve security:
27 ignore_extensions - keep certain extensions from being static
28 - This option defaults to tt, html, and xhtml to prevent
29 template files from being accessible.
30 ignore_dirs - keep certain dirs from being static
fa43d6b5 31 - include_path is no longer experimental.
8cc672a2 32 - Added support for hiding log output, depends on Cat 5.50.
33 (Marcus Ramberg)
2de14076 34
e37ad815 350.08 2005-09-07 18:50:00
36 - Added tests for everything except Apache support.
2268e329 37
380.07 2005-09-05 21:05:00
39 - POD fixes. (Thomas L. Shinnick)
40
b1d96e3e 410.06 2005-09-05 15:40:00
42 - Moved initial file check into prepare_action so processing can
43 bypass other plugins.
44 - Added error-checking to static dir regexes.
45 - Cleaned up various code as per Best Practices.
46
d6d29b9b 470.05 2005-08-26 12:00:00
48 - Added use_apache option to enable the Apache DECLINED
49 support. Default is disabled as it appears Catalyst is
50 faster at serving the files!
51 - Added a check that Apache's DocumentRoot matches Catalyst's
52 root before serving DECLINED.
53 - Preload MIME::Types index during setup() so it's not built on
54 the first request.
55 - Added a note on performance of Apache vs. Catalyst.
56
570.04 2005-08-22 12:00:00
58 - Fixed bug where static files were searched for on every request
59 even without a file extension.
60 - Fixed bug where files without extensions in defined static dirs
61 were not served with text/plain.
62 - Consolidated the debug log messages.
63
640.03 2005-08-21 23:50:00
65 - Added config option for include_path to allow for multiple
66 directories with static files. This option should be
67 considered experimental!
68 - Documentation cleanups.
69
700.02 2005-08-16 18:00:00
71 - Return DECLINED when running under mod_perl to allow Apache to
72 serve the static file. This is not done when any custom MIME
73 types have been specified, however.
74
750.01 2005-08-11 22:00:00
76 - Initial release.