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