Updated TODO after a new round of smokes
[catagits/Catalyst-Runtime.git] / TODO
CommitLineData
9de04be2 1Pending patches:
3fb903fd 2 - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
f55d1491 3
fb9f65db 4Back-compat investigation / known issues:
8a440eba 5
8a440eba 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).
fb9f65db 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.
8a440eba 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).
9de04be2 45
fb9f65db 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
9de04be2 52Cleanups:
53
24e6a237 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.
2105b371 57
24e6a237 58 - Catalyst-Model-Akismet, incorrectly inherits from
59 Catalyst::Component::InstancePerContext, should compose as a role.
60 Fix the module.
9de04be2 61
2105b371 62 - Update Test suite to not assume MyApp ISA Controller
24e6a237 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?)
9de04be2 65
66 - Comments marked /Moose TODO/i in Catalyst::Request re {_body} (t0m)
67
02570318 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
9de04be2 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
75Documentation:
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.
2105b371 84
9de04be2 85Profiling:
2105b371 86
9de04be2 87 - vs 5.70 and optimisation as needed.
88
9de04be2 89Tests:
3fb903fd 90
9de04be2 91 - Moosified test application?