cleanup TODO
[catagits/Catalyst-Runtime.git] / TODO
CommitLineData
cdb34619 1Known Bugs:
2
3 - Bug ->go or ->visit causes actions which have Args or CaptureArgs called
4 twice when called via ->go or ->visit.
5
6 Test app: http://github.com/bobtfish/catalyst-app-bug-go_chain/tree/master
7
8Compatibility warnings to add:
9
10 - $self->config should warn as config should only ever be called as a
11 class method.
12
13Proposed functionality / feature additions:
14
15 - Log setup needs to be less lame, so Catalyst::Plugin::Log::* can die
16 in a fire. Having $c->log_class would be a good start. kane volunteered
17 to do some of this.
18
19 Simple example: Catalyst::Plugin::Log::Colorful should just be a
20 subclass of Catalyst::Log, no ::Plugin:: needed.
21
22 See also: Catalyst::Plugin::Log::Dispatch and
23 http://github.com/willert/catalyst-plugin-log4perl-simple/tree
24
17b3d800 25TODO for brach namespace_handling_refactor:
5de5cd71 26
5d8129e9 27- refactor code in
17b3d800 28 * Catalyst::Dispatcher::get_containers # No Idea
e2c53892 29 * Catalyst::Dispatcher::dispatch_type # DONE
5de5cd71 30
17b3d800 31 * Catalyst::Controller::_parse_ActionClass_attr # DONE
32 * Catalyst::Dispatcher::_load_dispatch_types # DONE
33 * Catalyst::setup_plugins # DONE
fa649eb7 34 to use the same namespacing method
35
cdb34619 36- Ok, so can you add tests for ->config(actions => { foo => { ActionClass => '+Bar' }});