From cfd4e5e06d05dac3e8f1c03b63bc3cf37242334a Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 25 Jan 2009 02:30:46 +0000 Subject: - 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. --- CHANGES.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'CHANGES.txt') 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 -- cgit v1.2.3