summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-05-12 13:15:17 -0400
committerChris McDonough <chrism@plope.com>2011-05-12 13:15:17 -0400
commit20e4b3400197f4d420b06da790f3b9d39d2d6943 (patch)
treed98c447d4e62e454c47ae2985e4429b96daac254
parentef521397e9df77dd0c305e0c83a108f6883167e7 (diff)
downloadpyramid-20e4b3400197f4d420b06da790f3b9d39d2d6943.tar.gz
pyramid-20e4b3400197f4d420b06da790f3b9d39d2d6943.tar.bz2
pyramid-20e4b3400197f4d420b06da790f3b9d39d2d6943.zip
garden
-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``.