userFolder that holds user's email
Hi I'm looking for a zope (not plone) userFolder that can hold the user's email and perhaps full name. It should be the same authentication method, but with additional fields. Do I have to write one myself or are there already products that have this feature? thanx -- Haim
Have a look at ExUserFolder (http://sourceforge.net/projects/exuserfolder/) we use it and I think it's great... Cheers, Joe On 7 Jun 2005, at 12:27, Haim Ashkenazi wrote:
Hi
I'm looking for a zope (not plone) userFolder that can hold the user's email and perhaps full name. It should be the same authentication method, but with additional fields. Do I have to write one myself or are there already products that have this feature?
thanx -- Haim
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
___________________________________________________________ How much free photo storage do you get? Store your holiday snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
On Tue, 07 Jun 2005 12:37:36 +0100, Joe Bezier wrote:
Have a look at ExUserFolder (http://sourceforge.net/projects/exuserfolder/) we use it and I think it's great... yes, it sure looks like a great product. thanx...
Bye -- Haim
Haim Ashkenazi wrote:
I'm looking for a zope (not plone) userFolder that can hold the user's email and perhaps full name. It should be the same authentication method, but with additional fields. Do I have to write one myself or are there already products that have this feature?
SimpleUserFolder from http://www.simplistix.co.uk does exactly this :-) Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
but with additional fields. Do I have to write one myself or are there already products that have this feature?
SimpleUserFolder from http://www.simplistix.co.uk does exactly this :-)
Now I understand that I have reinvented the wheel :( SimpleUserFolder was what I should I found BEFORE I developed my IssueUserFolder for the Issuetrackerproduct. Just one python question Chris, why do you do this:: class User(BasicUser): def __init__(self,dict): # bypass immutability d = self.__dict__ d['__'] = dict['password'] del dict['password'] d['name'] = dict['name'] del dict['name'] d['roles'] = dict['roles'] del dict['roles'] d['extra'] = dict What's wrong just doing self.__ = dict['password'] ?? -- Peter Bengtsson, work www.fry-it.com home www.peterbe.com hobby www.issuetrackerproduct.com
Peter Bengtsson wrote:
Just one python question Chris, why do you do this:: class User(BasicUser): def __init__(self,dict): d['__'] = dict['password']
What's wrong just doing self.__ = dict['password']
I'm not looking at the code as I write this, so I may be wrong, but I do that because, if you look further down, you'll see I define a __setattr__ hook that raises an exception, since seeing attributes on object of this type is a really bad thing to do, so you have to go through lots of hoops if you really want to do it ;-) cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
participants (4)
-
Chris Withers -
Haim Ashkenazi -
Joe Bezier -
Peter Bengtsson