9a23c7c22c451c41b4f73638c01d4ba61b99e28b
[catagits/Catalyst-View-TT.git] / Changes
1 Revision history for Perl extension Catalyst::View::TT.
2
3         - The "render()" method now throws a warning on exception before
4           returning the exception. To silence the warning, pass 'render_die =>
5           0' to the constructor. Better yet, pass 'render_die => 1' to make it
6           die instead of returning the excption. This will be the default in a
7           future release.
8
9 0.32    2010-02-16 05:55:00
10         - Various documentation improvements.
11         - Fix repository metadata.
12
13 0.31    2009-10-29 19:26:00
14         - Moved the test actions to their own controller file to silence
15           warning about actions in the app class being deprecated.
16
17 0.30    2009-09-12 23:47:00
18         - Doc fixes:
19           + Expand ::V:: to ::View:: (RT #45792)
20           + Expand ::C:: to ::Controller:: and use $c->view('TT')
21             where appropriate (bricas)
22           + Add note about use CGI in a template making Catalyst hang
23             (Gunnar Strand)
24         - "use warnings" in Catalyst::View::TT and output from the TT helper
25         - Expand TTSite documentation (RT #33838)
26         - Added a test for direct rendering of a template from a view object,
27           without a request.
28         - Added support for running render with a undef context.
29
30 0.29    2009-02-20 14:43:00
31         - Remove extra unwanted .gitignore from manifest
32
33 0.28    2009-02-17 20:37:00
34         - Change from NEXT to MRO::Compat (t0m)
35         - fix pod generated by the helper (RT #33983)
36         - remove stray newline from generated lib/config/col template (RT #35340)
37
38 0.27    2008-04-30 12:30:00
39         - Add copy_config support to PROVIDERS
40         - Document providers and support unary plus for fully qualified class
41           names as in the example in TT pod.
42
43 0.26    2008-01-11 20:12:00
44         - Fix pod coverage
45         - Change from =item to =head2
46         - Update docs to reflect action change
47
48 0.25    2007-01-15 16:06
49         - The little typo that cold
50
51 0.24    2006-11-15 16:34
52         - Default to .tt extension
53         - pod cleanups for generated file
54         - Move to Module::Install
55         - Use Data::Dump for debug
56
57 0.23    Sun Mar 23 20:45:00 2006
58         - Added render suport. (Ash Berlin)
59
60 0.22    Fri Jan 16 18:25:00 2006
61         - stringify $c->action for automatic template match instead of $c->req->action.
62               * NOTE * This will change the match to the private name of the matched action!
63           if you use template_suffix you have to move your templates around!
64
65 0.21    Fri Dec 16 18:25:00 2005
66         - Added Template::Provider support (Jess Robinson)
67         - Fixed dynamic include bugs and added tests. (Zbigniew Lukasiak)
68
69 0.20    Mon Dec 12 03:35:00 2005
70         - Fall back to action (default/index returns blank on match)
71         - Added tests. (Daniel Westermann-Clark)
72         - Fixed TTSite helper to use correct app name.
73         - Added support for dynamic includes.
74
75 0.19    Tue Nov 15 09:52:00 2005
76         - unbreak config.
77
78 0.18    Mon Nov 14 20:43:00 2005
79         - Fixed more typos
80
81 0.17    Mon Nov 14 20:43:00 2005
82         - Fixed some typos
83
84 0.16    Mon Nov 14 20:43:00 2005
85         - Updated TTSite for Catalyst 5.5
86
87 0.15    Mon Nov 14 14:43:00 2005
88         - Updated for Catalyst 5.5
89         - Fix docs
90         - Added TEMPLATE_SUFFIX config variable 
91
92 0.14    Fri Oct 21 10:20:00 2005
93         - Turn timer off by default, even for debug.
94         - removed superflous 'templates' inside 'root'
95         - made it possible to forward to the message action by
96           passing the message in the stash. (example)
97         - Updated docs to show correct config syntax.
98
99 0.13    Fri Oct 07 13:30:00 2005
100         - Fixed constructor
101         - Big update by Andy Wardley
102         - Much improved docs
103
104 0.12    Wed Jul 06 15:24:00 2005
105         - Fixed, don't set Content-Type on failure
106         - Fixed helper to use [%author%]
107         - Fixed helper templates
108         - Rewrote docs
109
110 0.11    Fri Apr 15 16:00:00 2005
111         - Fixed broken helper.
112
113 0.10    Fri Apr 15 16:00:00 2005
114         - Added POD tests and made them pass.
115         - updated for Catalyst 5
116         - New TT Helpers.
117
118 0.09    Wed Mar 29 13:47:00 2005
119         - Don't override user-set charset/content-type
120         - Cleaned up the content-type we set.
121         - Updated README to current POD to current POD
122
123 0.08    Wed Mar 29 12:22:00 2005
124         - changed order of stash so stash can override c/base/name
125         - fixed some typos
126         - extended the documentation (Andrew Ford)
127
128 0.07    Sat Mar 04 23:00:00 2005
129         - fixed the bugs produced by draven and the_jester ;)
130
131 0.06    Fri Mar 04 20:00:00 2005
132         - new helper api
133
134 0.05    Mon Feb 28 10:00:00 2005
135         - added helper
136
137 0.04    Sun Feb 27 22:00:00 2005
138         - better debug messages (Marcus Ramberg)
139
140 0.03    Thu Feb 17 22:00:00 2005
141         - don't try to render something without a template
142
143 0.02    Tue Feb 01 02:00:00 2005
144         - using $c->req->match instead of $c->req->action
145
146 0.01    Fri Jan 28 22:00:00 2005
147         - first release