[Checkins] SVN: zope.publisher/trunk/ moved IHTTPException to zope.publisher

Shane Hathaway shane at hathawaymix.org
Fri May 22 22:07:17 EDT 2009


Log message for revision 100272:
  moved IHTTPException to zope.publisher
  

Changed:
  U   zope.publisher/trunk/CHANGES.txt
  U   zope.publisher/trunk/src/zope/publisher/interfaces/http.py

-=-
Modified: zope.publisher/trunk/CHANGES.txt
===================================================================
--- zope.publisher/trunk/CHANGES.txt	2009-05-23 01:49:25 UTC (rev 100271)
+++ zope.publisher/trunk/CHANGES.txt	2009-05-23 02:07:17 UTC (rev 100272)
@@ -4,9 +4,9 @@
 3.8.0 (unreleased)
 ------------------
 
-- Moved IMethodNotAllowed and MethodNotAllowed from zope.app.http to
-  zope.publisher.interfaces.http, fixing dependency cycles involving
-  zope.app.http.
+- Moved IHTTPException, IMethodNotAllowed, and MethodNotAllowed from
+  zope.app.http to zope.publisher.interfaces.http, fixing dependency
+  cycles involving zope.app.http.
 
 3.7.0 (2009-05-13)
 ------------------

Modified: zope.publisher/trunk/src/zope/publisher/interfaces/http.py
===================================================================
--- zope.publisher/trunk/src/zope/publisher/interfaces/http.py	2009-05-23 01:49:25 UTC (rev 100271)
+++ zope.publisher/trunk/src/zope/publisher/interfaces/http.py	2009-05-23 02:07:17 UTC (rev 100272)
@@ -474,6 +474,10 @@
     request = Attribute(u'The application request whose virtual host info has '
                         u'been altered')
 
+class IHTTPException(Interface):
+    """Marker interface for http exceptions views
+    """
+    pass
 
 class IMethodNotAllowed(IException):
     """An exception that signals the 405 Method Not Allowed HTTP error"""



More information about the Checkins mailing list