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