78bee7c5d5073611829d88000b851c0dd6d98299
[catagits/Catalyst-Runtime.git] / TODO
1 Pending patches:
2   - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
3
4   - Adopt::NEXT
5      - updated docs with how to disable it (t0m/rafl)
6
7 Known issues:  
8
9   - Fix t/cdi_backcompat_plugin_accessor_override.t - Catalyst::ClassData
10     doesn't emulate Class::Data::Inheritable by crapping on the symbol table
11     of the top level MyApp class, which causes back-compat fail.
12
13 Cleanups:
14
15   - Catalyst-Plugin-Authorization-ACL, Can't locate object method "tree" 
16     via package "Catalyst::Dispatcher", fix the plugin as tree was never 
17     a public method.
18
19   - Catalyst-Model-Akismet, incorrectly inherits from 
20     Catalyst::Component::InstancePerContext, should compose as a role. 
21     Fix the module.
22     
23   - Update Test suite to not assume MyApp ISA Controller
24     - After that set up attr handlers that will output helpful error messages 
25       when you do it as well as how to fix it. (done already?)
26
27   - Comments marked /Moose TODO/i in Catalyst::Request re {_body} (t0m)
28
29   - Eliminate all instances of $instance->{$key}, I think the only thing
30     left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't
31     touched as it is used as an lvalue in a lot of places (t0m)
32
33   - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my 
34     disk and fix it. (Believed to be in the optional tests?) (t0m)
35
36 Documentation:
37
38    - extends in components must be inside a BEGIN block.
39
40    - How to write Moosified Catalyst components.
41
42    - Manual / Tutorial updates
43
44    - Fix the Roadmap to be less full of lies.
45
46 Profiling:
47
48   - vs 5.70 and optimisation as needed.
49
50 Back-compat investigation:
51
52   - Common engine test failures, look into and get tests into core.
53
54   - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol 
55     table as methods, tests + fix, or explanation and documentation?
56     (rafl & phaylon)
57   
58   - Run another round of repository smokes against latest 5.80 trunk, manually
59     go through all the things which are broken (t0m).
60     
61    - Issues with TWMC not being loaded when it used to be in 5.70 
62      (Bill Moseley)
63      
64    - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
65
66 Tests:
67
68   - Moosified test application?