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