summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-03-19 10:44:24 -0700
committerChris McDonough <chrism@plope.com>2013-03-19 10:44:24 -0700
commit37a603b04efca877bbbe382ef10ebee12045ea89 (patch)
tree3d2f6a0ba7a0a1f18c29a0632100f71a18d7808b /CHANGES.txt
parent804c27a1c7fe4fb50224e5d5be163c6f894b990a (diff)
parent28b233f95b33efe8c3cab1fc5fd4f5a6b31e0319 (diff)
downloadpyramid-37a603b04efca877bbbe382ef10ebee12045ea89.tar.gz
pyramid-37a603b04efca877bbbe382ef10ebee12045ea89.tar.bz2
pyramid-37a603b04efca877bbbe382ef10ebee12045ea89.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt43
1 files changed, 43 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index ae2cafba4..2e96421ee 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -11,6 +11,49 @@ Features
a dynamic property. It is recommended to define a dynamic ACL as a callable
to avoid this ambiguity. See https://github.com/Pylons/pyramid/issues/735.
+Bug Fixes
+---------
+
+- View lookup will now search for valid views based on the inheritance
+ hierarchy of the context. It tries to find views based on the most
+ specific context first, and upon predicate failure, will move up the
+ inheritance chain to test views found by the super-type of the context.
+ In the past, only the most specific type containing views would be checked
+ and if no matching view could be found then a PredicateMismatch would be
+ raised. Now predicate mismatches don't hide valid views registered on
+ super-types. Here's an example that now works::
+
+ .. code-block:: python
+
+ class IResource(Interface):
+ ...
+
+ @view_config(context=IResource)
+ def get(context, request):
+ ...
+
+ @view_config(context=IResource, request_method='POST')
+ def post(context, request):
+ ...
+
+ @view_config(context=IResource, request_method='DELETE')
+ def delete(context, request):
+ ...
+
+ @implementor(IResource)
+ class MyResource:
+ ...
+
+ @view_config(context=MyResource, request_method='POST')
+ def override_post(context, request):
+ ...
+
+ Previously the override_post view registration would hide the get
+ and delete views in the context of MyResource -- leading to a
+ predicate mismatch error when trying to use GET or DELETE
+ methods. Now the views are found and no predicate mismatch is
+ raised.
+
1.4 (2012-12-18)
================