X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=TODO;h=605d275d933be20444da8cb845e1cd0c4304243f;hb=2664a81bf9d84eff55bbc3cd33916297bacdbde4;hp=a67d0cb14e267298c440fda9f301bc2f4085e312;hpb=1a23d3dabd68012f6362f7ceff557c44def91ddb;p=catagits%2FCatalyst-Runtime.git diff --git a/TODO b/TODO index a67d0cb..605d275 100644 --- a/TODO +++ b/TODO @@ -1,81 +1,43 @@ -Pending patches: - - meta test for MX::Emulate::CAF needed by Catalyst::Plugin::Cache::Curried - -Back-compat investigation / known issues: +Known Bugs: - - Plugins with new methods. - - Moose 'not inlining new method' warnings need to be fixed. - - Warning in Moose could also be more helpful.. - - Why does the current test not fail / warn? - - Generally unhappy with the on_end_of_scope immutable approach, - try removing new method from plugins (and emitting warning). + - Bug ->go or ->visit causes actions which have Args or CaptureArgs caled + twice when called via ->go or ->visit. - - Get engines tested: - - Catalyst-Engine-Zeus - - Catalyst-Engine-XMPP2 - - Catalyst-Engine-HTTPEngine - - Catalyst-Engine-HTTP-Prefork - - Catalyst-Engine-SCGI - - Catalyst-Engine-Wx + Test app: http://github.com/bobtfish/catalyst-app-bug-go_chain/tree/master - - CatalystX-Imports, Class::MOP doesn't consider anon subs in the symbol - table as methods, tests + fix, or explanation and documentation? - (rafl & phaylon) - - Run another round of repository smokes against latest 5.80 trunk, manually - go through all the things which are broken (t0m). - - - Catalyst::Plugin::Authorization::ACL - - Catalyst::Plugin::Server - - Catalyst::Plugin::HTML::Widget - - Should hopefully be fixed now.. - - - Catalyst-Log-Log4perl Deep recursion on subroutine "MockApp::setup" - (rafl) - - - Catalyst-Plugin-Cache dies due to mk_accessors('meta') - - - CatalystX-CRUD fails tests against 5.80 (karpet) + - Certain errors in your application to do with using other code which does + not exist can cause an 'Unknown error' issue. - - Issues with TWMC not being loaded when it used to be in 5.70 - (Bill Moseley) + Test app: http://github.com/bobtfish/catalyst-app-bug-unknown-error/tree/master + < rafl> 21:13:03 < vincent> hah, Class::MOP::Method::Generated->_eval_closure + < rafl> 21:13:40 < vincent> right, shove a local $@ in there + < rafl> i can do that and add tests in an hour or two - - Fix memory leaks (I already tried Devel::Leak::Object, but no joy). - - In 5.70, you can have a component which doesn't inherit from ::Component, - and has no new method, and it'll do the right thing for you. We should - still support that, but warn for/deprecate it so it can go for 5.9X... - This all obviously needs better tests :/ + - -restarter.t will fail if you don't have ::StashChange installed, and + also quite often at other times. -Cleanups: - - - Update Test suite to not assume MyApp ISA Controller - - After that set up attr handlers that will output helpful error messages - when you do it as well as how to fix it. - - Eliminate all instances of $instance->{$key}, I think the only thing - left is lib/Catalyst/Engine/HTTP.pm: $self->{inputbuf}, which I haven't - touched as it is used as an lvalue in a lot of places (t0m) + - Catalyst::Test - bugs with Moosification (Khisanth/kane) - - Find whatever in the test suite craps a file called GLOB(0xfoo) onto my - disk and fix it. (Believed to be in the optional TEST_HTTP tests?) (t0m) + - Attribute called 'actions' in controllers - needs to be renamed to _actions. -Documentation: +Compatibility warnings to add: - - extends in components must be inside a BEGIN block. + - $self->config should warn as config should only ever be called as a + class method. - - How to write Moosified Catalyst components. +Proposed functionality / feature additions: - - Manual / Tutorial updates + - Log setup needs to be less lame, so Catalyst::Plugin::Log::* can die + in a fire. Having $c->log_class would be a good start. kane volunteered + to do some of this. - - Fix the Roadmap to be less full of lies. + Simple example: Catalyst::Plugin::Log::Colorful should just be a + subclass of Catalyst::Log, no ::Plugin:: needed. -Profiling: + See also: Catalyst::Plugin::Log::Dispatch and + http://github.com/willert/catalyst-plugin-log4perl-simple/tree - - vs 5.70 and optimisation as needed. -Tests: - - - Moosified test application? - - - Test warning from back-compat methods in Catalyst::Dispatcher