summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-02-22 19:28:58 -0500
committerChris McDonough <chrism@plope.com>2012-02-22 19:28:58 -0500
commit6d0bce1dabce486cd6a6bc1fa7668ca863c0656a (patch)
tree18f0c2d4c7cee39e8938d6c77b4e0792761382bd /TODO.txt
parentbb40d09a0241b9e19cdc86186a7abd30d4d491d3 (diff)
parente9b51b719db22e3e41e3b22c584f40b20971aa98 (diff)
downloadpyramid-6d0bce1dabce486cd6a6bc1fa7668ca863c0656a.tar.gz
pyramid-6d0bce1dabce486cd6a6bc1fa7668ca863c0656a.tar.bz2
pyramid-6d0bce1dabce486cd6a6bc1fa7668ca863c0656a.zip
Merge branch '1.3-branch'
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt17
1 files changed, 13 insertions, 4 deletions
diff --git a/TODO.txt b/TODO.txt
index 90f5f8547..a58260d1f 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -4,6 +4,9 @@ Pyramid TODOs
Nice-to-Have
------------
+- Expose _FileIter and _FileResponse somehow fbo of
+ manual-static-view-creators.
+
- Add docs about upgrading between Pyramid versions (e.g. how to see
deprecation warnings).
@@ -15,7 +18,16 @@ Nice-to-Have
- Modify the urldispatch chapter examples to assume a scan rather than
``add_view``.
-- Decorator for append_slash_notfound_view_factory.
+- Context manager for creating a new configurator (replacing
+ ``with_package``). E.g.::
+
+ with config.partial(package='bar') as c:
+ c.add_view(...)
+
+ or::
+
+ with config.partial(introspection=False) as c:
+ c.add_view(..)
- Introspection:
@@ -27,9 +39,6 @@ Nice-to-Have
* get rid of "tweens" category (can't sort properly?)
- * Introspection hiding for directives for purposes of omitting toolbar
- registrations. Maybe toolbar can just use a null introspector?
-
- Fix deployment recipes in cookbook (discourage proxying without changing
server).