From 687debd118c601a261cd0a32905c5f5a18515c5c Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 21 Nov 2009 05:07:44 +0000 Subject: - "Hybrid mode" applications (applications which explicitly used traversal *after* url dispatch via ```` paths containing the ``*traverse`` element) were broken in 1.1-final and all 1.1 alpha and beta releases. Views registered without a ``route_name`` route shadowed views registered with a ``route_name`` inappropriately. --- repoze/bfg/interfaces.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'repoze/bfg/interfaces.py') diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py index 582e8984d..d7963ef22 100644 --- a/repoze/bfg/interfaces.py +++ b/repoze/bfg/interfaces.py @@ -6,9 +6,9 @@ from zope.component.interfaces import IObjectEvent class IRequest(Interface): """ Request type interface attached to all request objects """ -class IRouteRequest(IRequest): - """ *internal only* interface used to mark a request when a route - matches. Not an API.""" +class IRouteRequest(Interface): + """ *internal only* interface used as in a utility lookup to find + route-specific interfaces. Not an API.""" class IResponseFactory(Interface): """ A utility which generates a response factory """ -- cgit v1.2.3