2 down, too bloody many to go..
[catagits/Catalyst-Runtime.git] / TODO
1 Pre 0004:
2
3    - Certain errors in your application to do with using other code which does
4      not exist can cause an 'Unknown error' issue.
5
6      This is now fixed, by moving back to B::Hooks::EndOfScope, but this (used
7      to) cause issues with the following modules:
8
9      - Catalyst-Plugin-Session-PerUser
10      - Catalyst-Plugin-Session-Store-File
11      - Catalyst-Authentication-Credential-HTTP
12      - Catalyst-Plugin-SmartURI
13
14      according to comments in r8991. Retest these before shipping anything..
15
16      - Document method modifiers called on things before setup not working in your app class.
17
18 Known Bugs:
19
20    - Bug ->go or ->visit causes actions which have Args or CaptureArgs caled
21      twice when called via ->go or ->visit.
22
23      Test app: http://github.com/bobtfish/catalyst-app-bug-go_chain/tree/master
24
25 Compatibility warnings to add:
26
27    - $self->config should warn as config should only ever be called as a
28      class method.
29
30 Proposed functionality / feature additions:
31
32     - Log setup needs to be less lame, so Catalyst::Plugin::Log::* can die
33       in a fire. Having $c->log_class would be a good start. kane volunteered
34       to do some of this.
35
36       Simple example: Catalyst::Plugin::Log::Colorful should just be a
37       subclass of Catalyst::Log, no ::Plugin:: needed.
38
39       See also: Catalyst::Plugin::Log::Dispatch and
40       http://github.com/willert/catalyst-plugin-log4perl-simple/tree
41
42