[Zope-Checkins]
SVN: Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/HTTPRequest.py
Make ++skin++ work for Five views by putting another stub
method on the
Philipp von Weitershausen
philikon at philikon.de
Sat Nov 19 04:18:45 EST 2005
Log message for revision 40240:
Make ++skin++ work for Five views by putting another stub method on the
request. I wonder when we can retire ZPublisher and use zope.publisher
instead.
Changed:
U Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/HTTPRequest.py
-=-
Modified: Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/HTTPRequest.py
===================================================================
--- Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/HTTPRequest.py 2005-11-19 04:34:59 UTC (rev 40239)
+++ Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/HTTPRequest.py 2005-11-19 09:18:44 UTC (rev 40240)
@@ -1349,6 +1349,10 @@
"""see zope.publisher.interfaces.IPublicationRequest"""
self._presentation_skin = skin
+ def shiftNameToApplication(self):
+ """see zope.publisher.interfaces.http.IVirtualHostRequest"""
+ # this is needed for ++skin++
+
def getURL(self):
return self.URL
More information about the Zope-Checkins
mailing list