summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-25 02:30:46 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-25 02:30:46 +0000
commitcfd4e5e06d05dac3e8f1c03b63bc3cf37242334a (patch)
tree506481ffc66fef568749c27bcd2611fe9a98d1b0 /CHANGES.txt
parentfbd7ff75bde1c59c1b791b0db1be4f81f81d2d3d (diff)
downloadpyramid-cfd4e5e06d05dac3e8f1c03b63bc3cf37242334a.tar.gz
pyramid-cfd4e5e06d05dac3e8f1c03b63bc3cf37242334a.tar.bz2
pyramid-cfd4e5e06d05dac3e8f1c03b63bc3cf37242334a.zip
- You can now override the NotFound and Unauthorized responses that
:mod:`repoze.bfg` generates when a view cannot be found or cannot be invoked due to lack of permission. See the "ZCML Hooks" chapter in the docs for more information. - Use a homegrown Unauthorized error instead of ``webob.exc.Unauthorized`` (the latter is slow). - Various speed micro-tweaks.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index abd884923..8eea97d1f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,13 @@
Next Release
+Features
+--------
+
+- You can now override the NotFound and Unauthorized responses that
+ :mod:`repoze.bfg` generates when a view cannot be found or cannot be
+ invoked due to lack of permission. See the "ZCML Hooks" chapter in
+ the docs for more information.
+
Behavior Changes
----------------
@@ -19,9 +27,12 @@ Behavior Changes
Implementation Changes
----------------------
-- Use a homegrown NotFound error instead of ``webob.HTTPNotFound``
+- Use a homegrown NotFound error instead of ``webob.exc.HTTPNotFound``
(the latter is slow).
+- Use a homegrown Unauthorized error instead of
+ ``webob.exc.Unauthorized`` (the latter is slow).
+
- Various speed micro-tweaks.
Bug Fixes