summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO.txt22
1 files changed, 2 insertions, 20 deletions
diff --git a/TODO.txt b/TODO.txt
index ac915955c..444dfc8ca 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -24,7 +24,8 @@ Should-Have
- translationdir ZCML directive use of ``path_spec`` should maybe die.
-- Fix message catalog extraction / compilation documentation.
+- Fix message catalog extraction / compilation documentation. Chameleon 2
+ broke i18n extraction / compilation.
- Review http://alexmarandon.com/articles/zodb_bfg_pyramid_notes .
@@ -70,25 +71,6 @@ Nice-to-Have
- 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
-
- Update App engine chapter with less creaky directions.
- Add functionality that mocks the behavior of ``repoze.browserid``.