[Zope3-checkins] CVS: Zope3/src/zope/app/browser - auth.py:1.4
auth.zcml:1.6
Philipp von Weitershausen
philikon at philikon.de
Tue Mar 2 12:41:18 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/browser
In directory cvs.zope.org:/tmp/cvs-serv26362/browser
Modified Files:
auth.py auth.zcml
Log Message:
Moved publisher interfaces from zope.app.interfaces.publisher to
zope.app.publisher.interfaces.
=== Zope3/src/zope/app/browser/auth.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/browser/auth.py:1.3 Mon Aug 4 09:58:02 2003
+++ Zope3/src/zope/app/browser/auth.py Tue Mar 2 12:40:47 2004
@@ -16,14 +16,13 @@
$Id$
"""
from zope.interface import implements
-from zope.app.interfaces.publisher.http import ILogin, ILogout
+from zope.app.publisher.interfaces.http import ILogin, ILogout
from zope.app.security.registries.principalregistry import \
UnauthenticatedPrincipal
from zope.app.pagetemplate import ViewPageTemplateFile
from zope.proxy import removeAllProxies
class HTTPAuthenticationLogin(object):
-
implements(ILogin)
def login(self, nextURL=None):
=== Zope3/src/zope/app/browser/auth.zcml 1.5 => 1.6 ===
--- Zope3/src/zope/app/browser/auth.zcml:1.5 Tue Feb 3 16:53:30 2004
+++ Zope3/src/zope/app/browser/auth.zcml Tue Mar 2 12:40:47 2004
@@ -8,7 +8,8 @@
class=".auth.HTTPAuthenticationLogin"
attribute="login"
permission="zope.Public"
- allowed_interface="zope.app.interfaces.publisher.http.ILogin" />
+ allowed_interface="zope.app.publisher.interfaces.http.ILogin"
+ />
<page
name="logout.html"
@@ -16,6 +17,7 @@
class=".auth.HTTPAuthenticationLogout"
attribute="logout"
permission="zope.Public"
- allowed_interface="zope.app.interfaces.publisher.http.ILogout" />
+ allowed_interface="zope.app.publisher.interfaces.http.ILogout"
+ />
</zope:configure>
More information about the Zope3-Checkins
mailing list