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