[CMF-checkins] CVS: CMF/CMFCore/interfaces - portal_registration.py:1.6
Yvo Schubbe
schubbe@web.de
Mon, 6 Jan 2003 15:39:27 -0500
Update of /cvs-repository/CMF/CMFCore/interfaces
In directory cvs.zope.org:/tmp/cvs-serv20754/CMFCore/interfaces
Modified Files:
portal_registration.py
Log Message:
Merged yuppie-collector096-branch:
- Cleaned up Interfaces and API Help. (Collector #96)
- Removed deprecated 'register' module and interface.
=== CMF/CMFCore/interfaces/portal_registration.py 1.5 => 1.6 ===
--- CMF/CMFCore/interfaces/portal_registration.py:1.5 Thu Aug 1 15:05:12 2002
+++ CMF/CMFCore/interfaces/portal_registration.py Mon Jan 6 15:39:23 2003
@@ -10,14 +10,20 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
-""" Registration tool interface description.
+""" Registration tool interface.
$Id$
"""
-from Interface import Attribute, Base
+from Interface import Attribute
+try:
+ from Interface import Interface
+except ImportError:
+ # for Zope versions before 2.6.0
+ from Interface import Base as Interface
-class portal_registration(Base):
+
+class portal_registration(Interface):
'''Establishes policies for member registration. Depends on
portal_membership. Is not aware of membership storage details.
'''
@@ -73,14 +79,4 @@
def mailPassword(forgotten_userid, REQUEST):
'''Email a forgotten password to a member. Raises an exception
if user ID is not found.
- '''
-
- # permission: 'Set own password'
- def setPassword(password, domains=None):
- '''Allows the authenticated member to set his/her own password.
- '''
-
- # permission: 'Set own properties'
- def setProperties(properties=None, **kw):
- '''Allows the authenticated member to set his/her own properties.
'''