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