summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-12-24 15:24:19 -0500
committerChris McDonough <chrism@plope.com>2010-12-24 15:24:19 -0500
commit8a93b2c92240cd77c32d5ad725b4db7a17693e65 (patch)
tree0e7ddedd002c31dbc5084904257b85d8e012b2b4 /TODO.txt
parentc57b0660fef15be7e8c5e235ae899372a19b2c91 (diff)
downloadpyramid-8a93b2c92240cd77c32d5ad725b4db7a17693e65.tar.gz
pyramid-8a93b2c92240cd77c32d5ad725b4db7a17693e65.tar.bz2
pyramid-8a93b2c92240cd77c32d5ad725b4db7a17693e65.zip
problems identified by Mike
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt15
1 files changed, 12 insertions, 3 deletions
diff --git a/TODO.txt b/TODO.txt
index 0ee458254..d5524c8af 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -8,6 +8,15 @@ Must-Have (before 1.0)
- Consider deprecations for ``model`` and ``resource`` APIs.
+- Fix add_static_view docs to mention: static views cannot be served from the
+ root, that "name" really means "prefix", and that a non-URL prefix can be a
+ path with slashes in it.
+
+- Add an example of serving a static asset from the root using a view.
+
+- Add an example of using a cascade to serve static assets from the root.
+
+
Should-Have
-----------
@@ -26,6 +35,9 @@ Should-Have
- Static (URL-generation only) routes.
+- Provide a response_set_cookie method on the request for rendered responses
+ that can be used as input to response.set_cookie?
+
Nice-to-Have
------------
@@ -82,9 +94,6 @@ Nice-to-Have
action = '^foo$'
mypackage.views.MyView.foo_GET
-- Provide a response_cookies attribute on the request for rendered
- responses that can be used as input to response.set_cookie.
-
- Raise an exception when a value in response_headerlist is not a
string or decide to encode.