Basic POD for ::ApplicationAttribute, remove the empty Role directory, switch ::Contr...
[catagits/Catalyst-Runtime.git] / TODO
1 Pending patches:
2   - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
3     
4 Back-compat investigation / known issues:
5
6   - Plugins with new methods.
7     - Moose 'not inlining new method' warnings need to be fixed.
8       - Warning in Moose could also be more helpful..
9     - Why does the current test not fail / warn?
10     - Generally unhappy with the on_end_of_scope immutable approach,
11       try removing new method from plugins (and emitting warning).
12
13   - Get engines tested:
14     - Catalyst-Engine-Zeus
15     - Catalyst-Engine-XMPP2
16     - Catalyst-Engine-HTTPEngine
17     - Catalyst-Engine-HTTP-Prefork
18     - Catalyst-Engine-SCGI
19     - Catalyst-Engine-Wx
20
21   - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol 
22     table as methods, tests + fix, or explanation and documentation?
23     (rafl & phaylon)
24
25   - Run another round of repository smokes against latest 5.80 trunk, manually
26     go through all the things which are broken (t0m).
27     
28      - Catalyst::Plugin::Authorization::ACL
29      - Catalyst::Plugin::Server
30      - Catalyst::Plugin::HTML::Widget
31        - Should hopefully be fixed now..
32      
33      - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup" 
34        (rafl)
35      
36      - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
37      
38      - CatalystX-CRUD fails tests against 5.80 (karpet)
39
40   - Issues with TWMC not being loaded when it used to be in 5.70 
41     (Bill Moseley)
42
43   - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
44
45   -  In 5.70, you can have a component which doesn't inherit from ::Component, 
46      and has no new method, and it'll do the right thing for you. We should 
47      still support that, but warn for/deprecate it so it can go for 5.9X...
48      This all obviously needs better tests :/
49
50 Cleanups:
51     
52   - Update Test suite to not assume MyApp ISA Controller
53     - After that set up attr handlers that will output helpful error messages 
54       when you do it as well as how to fix it.
55
56   - Eliminate all instances of $instance->{$key}, I think the only thing
57     left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
58     touched as it is used as an lvalue in a lot of places (t0m)
59
60   - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my 
61     disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
62
63 Documentation:
64
65    - extends in components must be inside a BEGIN block.
66
67    - How to write Moosified Catalyst components.
68
69    - Manual / Tutorial updates
70
71    - Fix the Roadmap to be less full of lies.
72
73 Profiling:
74
75   - vs 5.70 and optimisation as needed.
76
77 Tests:
78
79   - Moosified test application?
80
81   - Test warning from back-compat methods in Catalyst::Dispatcher