Move all the public attributes in Catalyst::Dispatcher back to being private, remove...
[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
c41cfce3 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).
b1e0cb6d 20
8a440eba 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).
fb9f65db 29
d91474f5 30 - Catalyst::Plugin::Authorization::ACL
31 - Catalyst::Plugin::Server
32 - Should hopefully be fixed now..
33
fb9f65db 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.
8a440eba 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).
9de04be2 57
fb9f65db 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
9de04be2 64Cleanups:
65
24e6a237 66 - Catalyst-Model-Akismet, incorrectly inherits from
67 Catalyst::Component::InstancePerContext, should compose as a role.
68 Fix the module.
9de04be2 69
2105b371 70 - Update Test suite to not assume MyApp ISA Controller
24e6a237 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?)
9de04be2 73
02570318 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
9de04be2 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
c41cfce3 79 disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m)
9de04be2 80
81Documentation:
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.
2105b371 90
9de04be2 91Profiling:
2105b371 92
9de04be2 93 - vs 5.70 and optimisation as needed.
94
9de04be2 95Tests:
3fb903fd 96
9de04be2 97 - Moosified test application?
c41cfce3 98
99 - Test warning from back-compat methods in Catalyst::Dispatcher