summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt22
1 files changed, 20 insertions, 2 deletions
diff --git a/TODO.txt b/TODO.txt
index ada3c4c2a..e7ac216e7 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -11,12 +11,30 @@ Must-Have (before 1.0)
- Re-make testing.setUp() and testing.tearDown() the canonical APIs for test
configuration.
-- ``decorator=`` parameter to view_config. This would replace the existing
- _map_view "decorator" if it existed (Rob needs).
+- Document ``decorator=`` and ``view_mapper`` parameters to add_view and
+ ``@view_config``.
+
+- Allow ``decorator=`` and ``view_mapper=`` to be passed via ZCML.
+
+- Document ``Configurator.set_view_mapper``.
+
+- 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.
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.application_url}/static/foo.css``.
+
- Add notes about renderer response attrs to request docs.
- Add an example of using a cascade to serve static assets from the root.