Renaming all the attributes, as making them _private breaks multiple plugins. See...
[catagits/Catalyst-Runtime.git] / TODO
1 Pending patches:
2   - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
3   
4   - Class::Accessor::Chained::Fast test for MX::Emulate::CAF, to fix 
5     HTML::Widget
6   
7   - Re-opening packages with MX::Emulate::CAF (for 
8     Catalyst::Plugin::HashedCookies)
9   
10 Back-compat investigation / known issues:
11
12   - FIXME notes in Catalyst::Dispatcher
13
14   - Common engine test failures, look into and get tests into core.
15
16   - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol 
17     table as methods, tests + fix, or explanation and documentation?
18     (rafl & phaylon)
19
20   - Run another round of repository smokes against latest 5.80 trunk, manually
21     go through all the things which are broken (t0m).
22     
23      - Catalyst::Plugin::Authorization::ACL
24      - Catalyst::Plugin::Server
25        - Should hopefully be fixed now..
26      
27      - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
28     
29      - Catalyst-Action-REST appears to have real issues, investigate
30     
31      - Catalyst-Model-Search ditto
32      
33      - CatalystX-CRUD ditto
34     
35      - Catalyst-Engine-Apache - Deep recursion on subroutine 
36        "Catalyst::Action::execute", investigate once all other tests pass
37     
38      - Catalyst-Plugin-Scheduler
39      - Catalyst-Engine-HTTPEngine
40      - Catalyst-View-HTML-Template
41      - Catalyst-View-XSLT
42      - Catalyst-Plugin-Setenv
43      - Catalyst-Plugin-RequireSSL - Bullshit 'cannot locate' errors
44                                     Bug in smoke test rig.
45
46   - Issues with TWMC not being loaded when it used to be in 5.70 
47     (Bill Moseley)
48
49   - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
50
51   -  In 5.70, you can have a component which doesn't inherit from ::Component, 
52      and has no new method, and it'll do the right thing for you. We just 
53      ignore that, we should still support that, but warn for/deprecate it so 
54      it can go for 5.9X...
55      This all obviously needs better tests :/
56
57 Cleanups:
58
59   - Catalyst-Plugin-Authorization-ACL, Can't locate object method "tree" 
60     via package "Catalyst::Dispatcher", fix the plugin as tree was never 
61     a public method.
62
63   - Catalyst-Model-Akismet, incorrectly inherits from 
64     Catalyst::Component::InstancePerContext, should compose as a role. 
65     Fix the module.
66     
67   - Update Test suite to not assume MyApp ISA Controller
68     - After that set up attr handlers that will output helpful error messages 
69       when you do it as well as how to fix it. (done already?)
70
71   - Comments marked /Moose TODO/i in Catalyst::Request re {_body} (t0m)
72
73   - Eliminate all instances of $instance->{$key}, I think the only thing
74     left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
75     touched as it is used as an lvalue in a lot of places (t0m)
76
77   - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my 
78     disk and fix it. (Believed to be in the optional tests?) (t0m)
79
80 Documentation:
81
82    - extends in components must be inside a BEGIN block.
83
84    - How to write Moosified Catalyst components.
85
86    - Manual / Tutorial updates
87
88    - Fix the Roadmap to be less full of lies.
89
90 Profiling:
91
92   - vs 5.70 and optimisation as needed.
93
94 Tests:
95
96   - Moosified test application?