Replace {_body} instance access with calls to _body accessors..
[catagits/Catalyst-Runtime.git] / TODO
CommitLineData
9de04be2 1Pending patches:
3fb903fd 2 - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried
083ee5d9 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)
0f56bbcf 9
10 - Double-applying mk_accessors breaks, t/double_apply.t for MX::Emulate::CAF
083ee5d9 11
fb9f65db 12Back-compat investigation / known issues:
8a440eba 13
d91474f5 14 - FIXME notes in Catalyst::Dispatcher
b1e0cb6d 15
8a440eba 16 - Common engine test failures, look into and get tests into core.
17
18 - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol
19 table as methods, tests + fix, or explanation and documentation?
20 (rafl & phaylon)
21
22 - Run another round of repository smokes against latest 5.80 trunk, manually
23 go through all the things which are broken (t0m).
fb9f65db 24
d91474f5 25 - Catalyst::Plugin::Authorization::ACL
26 - Catalyst::Plugin::Server
27 - Should hopefully be fixed now..
28
fb9f65db 29 - Catalyst-Plugin-Cache dies due to mk_accessors('meta')
30
31 - Catalyst-Action-REST appears to have real issues, investigate
32
33 - Catalyst-Model-Search ditto
34
35 - CatalystX-CRUD ditto
36
37 - Catalyst-Engine-Apache - Deep recursion on subroutine
38 "Catalyst::Action::execute", investigate once all other tests pass
39
40 - Catalyst-Plugin-Scheduler
41 - Catalyst-Engine-HTTPEngine
42 - Catalyst-View-HTML-Template
43 - Catalyst-View-XSLT
44 - Catalyst-Plugin-Setenv
45 - Catalyst-Plugin-RequireSSL - Bullshit 'cannot locate' errors
46 Bug in smoke test rig.
8a440eba 47
48 - Issues with TWMC not being loaded when it used to be in 5.70
49 (Bill Moseley)
50
51 - Fix memory leaks (I already tried Devel::Leak::Object, but no joy).
9de04be2 52
fb9f65db 53 - In 5.70, you can have a component which doesn't inherit from ::Component,
54 and has no new method, and it'll do the right thing for you. We just
55 ignore that, we should still support that, but warn for/deprecate it so
56 it can go for 5.9X...
57 This all obviously needs better tests :/
58
9de04be2 59Cleanups:
60
24e6a237 61 - Catalyst-Plugin-Authorization-ACL, Can't locate object method "tree"
62 via package "Catalyst::Dispatcher", fix the plugin as tree was never
63 a public method.
2105b371 64
24e6a237 65 - Catalyst-Model-Akismet, incorrectly inherits from
66 Catalyst::Component::InstancePerContext, should compose as a role.
67 Fix the module.
9de04be2 68
2105b371 69 - Update Test suite to not assume MyApp ISA Controller
24e6a237 70 - After that set up attr handlers that will output helpful error messages
71 when you do it as well as how to fix it. (done already?)
9de04be2 72
02570318 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
9de04be2 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
80Documentation:
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.
2105b371 89
9de04be2 90Profiling:
2105b371 91
9de04be2 92 - vs 5.70 and optimisation as needed.
93
9de04be2 94Tests:
3fb903fd 95
9de04be2 96 - Moosified test application?