summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt23
1 files changed, 15 insertions, 8 deletions
diff --git a/TODO.txt b/TODO.txt
index 4c9429625..0b2bacce2 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -11,26 +11,33 @@ Must-Have (before 1.0)
- Re-make testing.setUp() and testing.tearDown() the canonical APIs for test
configuration.
-- Document ``decorator=`` and ``view_mapper`` parameters to add_view.
+- Document ``decorator=`` and ``view_mapper`` parameters to add_view and
+ ``@view_config``.
-- Allow ``decorator=`` and ``view_mapper=`` to be passed via ZCML and the
- ``view_config`` decorator.
+- Allow ``decorator=`` and ``view_mapper=`` to be passed via ZCML.
-- Document ``Configurator.add_view_mapper``.
+- Document ``Configurator.set_view_mapper``.
-- Consider the ability to defer the choice of view mapper and/or renderer
- (note that we could also just suggest that people use a default renderer
- instead).
+- Document ``__view_mapper__`` attribute for view callable view mapper
+ preference.
- ZCML directive for view mapper (or just use "utility", but it's not eager).
+- Decide whether ``self.decorated_view(view)`` is in the right place in the
+ view deriver chain.
+
+- API docs for ``pyramid.views.action``.
+
+- Use a commit veto when configuring repoze.tm2 in paster templates for
+ non-1X, 2X, or 3X responses.
+
Should-Have
-----------
- ``current_route_url`` function. https://gist.github.com/762842
- Convert paster template and tutorial HTML templates to use
- ``request.static_url('{{package}}:static/foo.css') rather than
+ ``request.static_url('{{package}}:static/foo.css')`` rather than
``${request.application_url}/static/foo.css``.
- Add notes about renderer response attrs to request docs.