summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-12-28 21:02:36 -0500
committerChris McDonough <chrism@plope.com>2010-12-28 21:02:36 -0500
commitfcfc5aebc259fa34d8d2313adde7c2f57bab2e53 (patch)
treec52e454f30ca7453da814e57635accc302d61b2b /TODO.txt
parente8f26928bf5c8fb8490a72436718cedf8fe19281 (diff)
parent02c43fe07f1ffe0cc27e539618ed8d96014cddee (diff)
downloadpyramid-fcfc5aebc259fa34d8d2313adde7c2f57bab2e53.tar.gz
pyramid-fcfc5aebc259fa34d8d2313adde7c2f57bab2e53.tar.bz2
pyramid-fcfc5aebc259fa34d8d2313adde7c2f57bab2e53.zip
Merge branch 'master' into viewderiver
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt26
1 files changed, 14 insertions, 12 deletions
diff --git a/TODO.txt b/TODO.txt
index f90c52538..f81c78387 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -4,21 +4,24 @@ Pyramid TODOs
Must-Have (before 1.0)
----------------------
-- Narrative docs for ``Configurator.include`` and ``Configurator.commit``.
+- Write a "Whats New" (delta from BFG 1.3)
- Consider deprecations for ``model`` and ``resource`` APIs.
Should-Have
-----------
-- Add docs for httpexceptions module for each webob.exc class that inherits
- from WSGIHTTPException.
+- Add notes about renderer response attrs to request docs.
-- translationdir ZCML directive use of ``path_spec`` should maybe die.
+- Add an example of using a cascade to serve static assets from the root.
+
+- Explore static file return from handler action using wsgiapp2 + fileapp.
-- Add CRSF token creation/checking machinery (only "should have" vs. "must
- have" because I'm not sure it belongs in Pyramid.. it definitely must exist
- in formgen libraries, and *might* belong in Pyramid).
+- Static (URL-generation only) routes.
+
+- Add narrative docs for wsgiapp and wsgiapp2.
+
+- translationdir ZCML directive use of ``path_spec`` should maybe die.
- Change "Cleaning up After a Request" in the urldispatch chapter to
use ``request.add_response_callback``.
@@ -26,11 +29,13 @@ Should-Have
- ``decorator=`` parameter to view_config. This would replace the existing
_map_view "decorator" if it existed.
+- 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
------------
-- Use ``@register_view`` instead of ``@view_config`` and change view docs to
- use "view registration" instead of "view configuration".
+- Better "Extending" chapter.
- Try to make test suite pass on IronPython.
@@ -85,9 +90,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.