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