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