declare missing prereq on Data::Dump
[catagits/Catalyst-View-TT.git] / Changes
CommitLineData
8077080c 1Revision history for Perl extension Catalyst::View::TT.
35be13c5 2
58187428 3 - declare missing prereq on Data::Dump
4
fcf3a009 50.43 - 2015-08-13
161400d1 6 - remove mention of deprecated Catalyst::Plugin::Email in
7 documentation
8
e0bcfc98 90.42 2014-12-29
10 - Fixes to test cases to be compatible with Catalyst v5.90080
93c63aff 11 - Added a Unicode test designed to check new Catalyst function
12 - Docs for above
e0bcfc98 13
ee06e29a 140.41 2013-02-28
59a2e92a 15 - New local attribute to let you override the default content type when
16 no content type has been set for the response.
ee06e29a 17
dd53ec33 180.40 2013-01-15 20:52:14
2ef8da68 19 - Fix hash randomisation breakage in tests (RT#82703)
20
e4739bcf 210.39 2012-04-11 07:40:00
e47ed760 22 - Fix warning from tests. RT#75104
e4739bcf 23 - Fix ExtUtils::MakeMaker version requirement (due to last release
24 being made with faulty Module::Install). RT#76488
e47ed760 25
fe3df9dc 260.38 2012-02-15 20:42:00
08dc7cbc 27 - Change documentation to reflect use of Moose.
28 - Change documentation to highlight how to configure
29 UTF-8 in templates.
30 - Change documentation to recommend putting calls to MyApp->path_to
31 into the app class itself, ergo avoiding recursive dependencies
32 and making the view compile standalone.
713a5152 33 - Change code generated by Catalyst::Helper::View::TT
34 to use Moose.
35
26d5760a 360.37 2011-07-17 09:20:00
37 - Allow setting of TT class rather than forcing 'Template'
38
85ea459d 390.36 2010-10-19 15:00:00
40 - Fixed subclassing when using expose_methods
41
9d96ddec 420.35 2010-08-26 01:38:00
506ec8c4 43 - Add expose_methods functionality
c5c3c6bd 44 - add template name to exceptions
131a8e59 45 - update render_die message to be more concise.
75dc0329 46 - Doc fixes (RT#57159)
11cbb896 47 - Silence warnings about Template::Provider::Encoding (RT #56310)
75dc0329 48
5c2affa4 490.34 2010-04-07 04:14:50
50 - Fix the process method to have the previous behaviour of reporting
51 an error to Catalyst if a Template::Exception object is returned by
52 the render method (i.e. when render_die is unset or set to 0).
53 - Fix the warning issued about missing the render_die config option to
54 log using the standard Catalyst logging system (rather than Carping
55 directly), and to only issue the warning at debug level / when
56 in debug mode. The severity of this warning will be increased in
57 a later release.
58
bd45975e 590.33 2010-03-10 20:08:00
596ff245 60 - The "render()" method now throws a warning on exception before
61 returning the exception. To silence the warning, pass 'render_die =>
62 0' to the constructor. Better yet, pass 'render_die => 1' to make it
63 die instead of returning the excption. This will be the default in a
3715305f 64 future release when unspecified. The Helper will generate new views
65 with render_die => 1.
cad820fe 66
ebba23fa 670.32 2010-02-16 05:55:00
68 - Various documentation improvements.
69 - Fix repository metadata.
70
f59953e1 710.31 2009-10-29 19:26:00
a18b1fe6 72 - Moved the test actions to their own controller file to silence
73 warning about actions in the app class being deprecated.
74
925859ab 750.30 2009-09-12 23:47:00
6229ce0d 76 - Doc fixes:
77 + Expand ::V:: to ::View:: (RT #45792)
78 + Expand ::C:: to ::Controller:: and use $c->view('TT')
79 where appropriate (bricas)
02c64502 80 + Add note about use CGI in a template making Catalyst hang
81 (Gunnar Strand)
6229ce0d 82 - "use warnings" in Catalyst::View::TT and output from the TT helper
2d93834f 83 - Expand TTSite documentation (RT #33838)
9164484f 84 - Added a test for direct rendering of a template from a view object,
85 without a request.
cbb149dc 86 - Added support for running render with a undef context.
6229ce0d 87
8ef06824 880.29 2009-02-20 14:43:00
89 - Remove extra unwanted .gitignore from manifest
90
42a2721a 910.28 2009-02-17 20:37:00
e8693f1b 92 - Change from NEXT to MRO::Compat (t0m)
740cab99 93 - fix pod generated by the helper (RT #33983)
c67cc83b 94 - remove stray newline from generated lib/config/col template (RT #35340)
51199593 95
740cab99 960.27 2008-04-30 12:30:00
97 - Add copy_config support to PROVIDERS
98 - Document providers and support unary plus for fully qualified class
99 names as in the example in TT pod.
8077080c 100
740cab99 1010.26 2008-01-11 20:12:00
102 - Fix pod coverage
103 - Change from =item to =head2
104 - Update docs to reflect action change
c969f23a 105
740cab99 1060.25 2007-01-15 16:06
107 - The little typo that cold
5be63f44 108
740cab99 1090.24 2006-11-15 16:34
110 - Default to .tt extension
111 - pod cleanups for generated file
112 - Move to Module::Install
113 - Use Data::Dump for debug
114
1150.23 Sun Mar 23 20:45:00 2006
116 - Added render suport. (Ash Berlin)
d3f19ee8 117
1180.22 Fri Jan 16 18:25:00 2006
740cab99 119 - stringify $c->action for automatic template match instead of $c->req->action.
120 * NOTE * This will change the match to the private name of the matched action!
121 if you use template_suffix you have to move your templates around!
61a11a85 122
1230.21 Fri Dec 16 18:25:00 2005
c3c62106 124 - Added Template::Provider support (Jess Robinson)
bec996dc 125 - Fixed dynamic include bugs and added tests. (Zbigniew Lukasiak)
126
1270.20 Mon Dec 12 03:35:00 2005
a4e8d135 128 - Fall back to action (default/index returns blank on match)
07571b2f 129 - Added tests. (Daniel Westermann-Clark)
4d97e86f 130 - Fixed TTSite helper to use correct app name.
83056300 131 - Added support for dynamic includes.
07571b2f 132
740cab99 1330.19 Tue Nov 15 09:52:00 2005
48d69085 134 - unbreak config.
135
740cab99 1360.18 Mon Nov 14 20:43:00 2005
e3a53d5b 137 - Fixed more typos
138
740cab99 1390.17 Mon Nov 14 20:43:00 2005
be7c1afa 140 - Fixed some typos
141
740cab99 1420.16 Mon Nov 14 20:43:00 2005
795f7999 143 - Updated TTSite for Catalyst 5.5
144
740cab99 1450.15 Mon Nov 14 14:43:00 2005
7d8aa5ec 146 - Updated for Catalyst 5.5
4729c102 147 - Fix docs
747f2b6d 148 - Added TEMPLATE_SUFFIX config variable
4729c102 149
740cab99 1500.14 Fri Oct 21 10:20:00 2005
7d607671 151 - Turn timer off by default, even for debug.
152 - removed superflous 'templates' inside 'root'
153 - made it possible to forward to the message action by
154 passing the message in the stash. (example)
155 - Updated docs to show correct config syntax.
19ee577a 156
740cab99 1570.13 Fri Oct 07 13:30:00 2005
9300af5b 158 - Fixed constructor
8cd017a8 159 - Big update by Andy Wardley
c0eb0527 160 - Much improved docs
9300af5b 161
740cab99 1620.12 Wed Jul 06 15:24:00 2005
23042c3c 163 - Fixed, don't set Content-Type on failure
bd9d89ad 164 - Fixed helper to use [%author%]
76c52c6e 165 - Fixed helper templates
722fede4 166 - Rewrote docs
23042c3c 167
740cab99 1680.11 Fri Apr 15 16:00:00 2005
b4dcea0e 169 - Fixed broken helper.
23042c3c 170
740cab99 1710.10 Fri Apr 15 16:00:00 2005
2774dc77 172 - Added POD tests and made them pass.
becb7ac2 173 - updated for Catalyst 5
b4e2d420 174 - New TT Helpers.
becb7ac2 175
740cab99 1760.09 Wed Mar 29 13:47:00 2005
70a5ab0a 177 - Don't override user-set charset/content-type
178 - Cleaned up the content-type we set.
2599ee6f 179 - Updated README to current POD to current POD
becb7ac2 180
740cab99 1810.08 Wed Mar 29 12:22:00 2005
57cfe226 182 - changed order of stash so stash can override c/base/name
c90b1329 183 - fixed some typos
4687ac0d 184 - extended the documentation (Andrew Ford)
740cab99 185
1860.07 Sat Mar 04 23:00:00 2005
caa61517 187 - fixed the bugs produced by draven and the_jester ;)
188
740cab99 1890.06 Fri Mar 04 20:00:00 2005
6bf01217 190 - new helper api
191
740cab99 1920.05 Mon Feb 28 10:00:00 2005
8077080c 193 - added helper
194
740cab99 1950.04 Sun Feb 27 22:00:00 2005
8077080c 196 - better debug messages (Marcus Ramberg)
197
740cab99 1980.03 Thu Feb 17 22:00:00 2005
8077080c 199 - don't try to render something without a template
200
740cab99 2010.02 Tue Feb 01 02:00:00 2005
8077080c 202 - using $c->req->match instead of $c->req->action
203
740cab99 2040.01 Fri Jan 28 22:00:00 2005
205 - first release