summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-12 05:26:19 -0500
committerChris McDonough <chrism@plope.com>2011-01-12 05:26:19 -0500
commit13d0e133ec4385ba80d7a3c183a2312b542e3e52 (patch)
tree4a1a7e4e72647a03104b44b903ab89b811e58f7e /TODO.txt
parent2061883531b7f5d11e606c7bdab850e328cb5e38 (diff)
downloadpyramid-13d0e133ec4385ba80d7a3c183a2312b542e3e52.tar.gz
pyramid-13d0e133ec4385ba80d7a3c183a2312b542e3e52.tar.bz2
pyramid-13d0e133ec4385ba80d7a3c183a2312b542e3e52.zip
garden
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt29
1 files changed, 23 insertions, 6 deletions
diff --git a/TODO.txt b/TODO.txt
index 30dd66164..55932362b 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -15,20 +15,37 @@ Must-Have (before 1.0)
- Use a commit veto when configuring repoze.tm2 in paster templates for
non-1X, 2X, or 3X responses.
-- Figure out how to slim the herd of paster templates.
+- Figure out how to slim the herd of paster templates. Related:
+ https://github.com/Pylons/pyramid/issues#issue/40,
+ https://github.com/Pylons/pyramid/issues#issue/42,
+ https://github.com/Pylons/pyramid/issues#issue/44,
+ https://github.com/Pylons/pyramid/issues#issue/94
+, https://github.com/Pylons/pyramid/issues#issue/95
-- Explain i18n in Mako and Jinja2.
+- Explain how to use i18n localization in Mako and Jinja2.
-- Turn Forbidden into a 403.
-
-- Consider adding a default exception view for HTTPException and attendant
- ``redirect`` and ``abort`` functions ala Pylons.
+- Turn Forbidden status code into a 403 (it's currently a 401, which is for
+ bw compat, but is misleading).
- Fix too-long template lines in tutorials for PDF renderings.
+- Bug in URL dispatch pattern matching:
+ https://github.com/Pylons/pyramid/issues#issue/90
+
+- Allow ``pyramid.security.remember`` to accept a list of tokens for use when
+ there's an ``auth_tkt`` authentication policy:
+ https://github.com/Pylons/pyramid/issues#issue/81 and
+ https://github.com/Pylons/pyramid/issues#issue/78
+
+- Add docs for ``route_path`` and ``route_url``, etc to Request API docs (see
+ also https://github.com/Pylons/pyramid/issues#issue/19).
+
Should-Have
-----------
+- Consider adding a default exception view for HTTPException and attendant
+ ``redirect`` and ``abort`` functions ala Pylons.
+
- Add notes about renderer response attrs to request docs.
- Add an example of using a cascade to serve static assets from the root.