From 34547458e3ce880abfbf4248357d6b191b4d63ee Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 1 Aug 2010 16:07:45 +0000 Subject: todo gardening --- TODO.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 3a18f32db..42bf3d45b 100644 --- a/TODO.txt +++ b/TODO.txt @@ -27,6 +27,25 @@ - Debug option to print view matching decision. +- Script or paster command that prints, for a given URL, the views + that might match. Underneath each potentially matching route, list + the predicates required. Underneath each route+predicate set, print + each view that might match and its predicates. E.g. with the input + URL ``/foo``:: + + '/foo' (foo_xhr) + xhr = True + (no view predicates) + mypackage.views.MyXHRFooView.__call__ + + '/{action}' (action_route) + request_method = 'POST' + action = '^foo$' + mypackage.views.MyView.foo_POST + request_method = 'GET' + action = '^foo$' + mypackage.views.MyView.foo_GET + - Ability to use configurator as a context manager. - Switch tutorials and templates to non-ZCML. -- cgit v1.2.3