[Zope3-checkins] CVS: Zope3/src/zope/publisher/interfaces - browser.py:1.7 http.py:1.18

Jim Fulton cvs-admin at zope.org
Fri Nov 21 12:12:37 EST 2003


Update of /cvs-repository/Zope3/src/zope/publisher/interfaces
In directory cvs.zope.org:/tmp/cvs-serv411/src/zope/publisher/interfaces

Modified Files:
	browser.py http.py 
Log Message:
Got rid of the presentation interfaces.


=== Zope3/src/zope/publisher/interfaces/browser.py 1.6 => 1.7 ===
--- Zope3/src/zope/publisher/interfaces/browser.py:1.6	Tue Jul 15 00:47:03 2003
+++ Zope3/src/zope/publisher/interfaces/browser.py	Fri Nov 21 12:12:36 2003
@@ -28,12 +28,6 @@
 from zope.publisher.interfaces.http import IHTTPApplicationRequest
 from zope.publisher.interfaces.http import IHTTPRequest
 
-
-class IBrowserPresentation(IPresentation):
-    """Browser presentations are for interaction with users using Web Browsers
-    """
-
-
 class IBrowserApplicationRequest(IHTTPApplicationRequest):
     """Browser-specific requests
     """
@@ -69,18 +63,6 @@
         """)
 
 
-class IBrowserResource(IBrowserPresentation, IResource):
-    """Browser View
-    """
-
-    def __call__():
-        """Return a URL for getting the resource
-
-        This URL should not be context dependent. Typically, the URL
-        will be based on the service that defined the resource.
-        """
-
-
 class IBrowserPublication(IPublication):
     """Object publication framework.
     """
@@ -126,5 +108,5 @@
         """
 
 
-class IBrowserView(IBrowserPresentation, IView):
+class IBrowserView(IView):
     "Browser View"


=== Zope3/src/zope/publisher/interfaces/http.py 1.17 => 1.18 ===
--- Zope3/src/zope/publisher/interfaces/http.py:1.17	Fri Aug  8 14:08:14 2003
+++ Zope3/src/zope/publisher/interfaces/http.py	Fri Nov 21 12:12:36 2003
@@ -31,17 +31,6 @@
     """HTTP presentations are for interaction with users using Web HTTPs
     """
 
-class IHTTPResource(IHTTPPresentation, IResource):
-    """HTTP View
-    """
-
-    def __call__():
-        """Return a URL for getting the resource
-
-        This URL should not be context dependent. Typically, the URL
-        will be based on the service that defined the resource.
-        """
-
 class IHTTPView(IHTTPPresentation, IView):
     "HTTP View"
 




More information about the Zope3-Checkins mailing list