private_path method for actions that returns a string suitable for use in forward...
[catagits/Catalyst-Runtime.git] / TODO
1 Known 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
8 Compatibility warnings to add:
9
10    - $self->config should warn as config should only ever be called as a
11      class method.
12
13 Proposed 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
25 TODO for brach namespace_handling_refactor:
26
27 - refactor code in
28   * Catalyst::Dispatcher::get_containers           # No Idea
29   * Catalyst::Dispatcher::dispatch_type            # DONE
30
31   * Catalyst::Controller::_parse_ActionClass_attr  # DONE
32   * Catalyst::Dispatcher::_load_dispatch_types     # DONE
33   * Catalyst::setup_plugins                        # DONE
34   to use the same namespacing method
35
36 - Ok, so can you add tests for ->config(actions => { foo => { ActionClass => '+Bar' }});