summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-12-27 09:28:50 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-12-27 09:28:50 -0700
commit6f7b6c0221f8c120a22b630eea26905744d2b6b4 (patch)
tree6c8e1ae3affba81ec0c26eb183c4f424b577a1d5 /TODO.txt
parent6d0ff23fc3094f3f40d93d020bbc80ecdfceb825 (diff)
parente8db031e8cd22affb65254539ae210f64d37f36e (diff)
downloadpyramid-6f7b6c0221f8c120a22b630eea26905744d2b6b4.tar.gz
pyramid-6f7b6c0221f8c120a22b630eea26905744d2b6b4.tar.bz2
pyramid-6f7b6c0221f8c120a22b630eea26905744d2b6b4.zip
Merge https://github.com/Pylons/pyramid
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt28
1 files changed, 14 insertions, 14 deletions
diff --git a/TODO.txt b/TODO.txt
index c0dd920b1..f81c78387 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -4,23 +4,24 @@ Pyramid TODOs
Must-Have (before 1.0)
----------------------
-- Narrative docs for ``Configurator.include`` and ``Configurator.commit``.
-
-- Provide a .flash API on session object.
+- 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.
+
+- Static (URL-generation only) routes.
-- 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).
+- 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``.
@@ -28,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.
@@ -87,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.