Hi, Anybody recommend a product or system that for users to register themselves in a Zope site? Basically, I want to have the functionality of the Plone registration process, but I don't need the whole Plone system. I'm guessing that I'm going about this the right way; I want to do light-weight user-membership types of things - customized preferences, saved searches, opt-in mailing lists, etc. The Zope user model looks perfectly adequate to build on to make these - no reason to use Plone, and then have to dismantle and not use most of it. And so, I'm wondering if there's a stand-alone package for users to register and eventually cause an entry in a user folder to be created. Thanks, Robb
--On Mittwoch, 16. Juni 2004 21:57 Uhr -0400 Robb Shecter <robb@acm.org> wrote:
Hi,
Anybody recommend a product or system that for users to register themselves in a Zope site? Basically, I want to have the functionality of the Plone registration process, but I don't need the whole Plone system.
CMF. -aj
You can code a simple interface that calls a python script containing context.acl_users.manage_users('Add', context.REQUEST) You'll need to pass it name, password, and roles You can then key on user name and store user prefs in the ZODB or a DB of your choice. -- David Siedband Oceanic Sky New Media http://oceanicsky.com On Jun 16, 2004, at 6:57 PM, Robb Shecter wrote:
Hi,
Anybody recommend a product or system that for users to register themselves in a Zope site? Basically, I want to have the functionality of the Plone registration process, but I don't need the whole Plone system.
I'm guessing that I'm going about this the right way; I want to do light-weight user-membership types of things - customized preferences, saved searches, opt-in mailing lists, etc. The Zope user model looks perfectly adequate to build on to make these - no reason to use Plone, and then have to dismantle and not use most of it. And so, I'm wondering if there's a stand-alone package for users to register and eventually cause an entry in a user folder to be created.
Thanks, Robb
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman-20/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman-20/listinfo/zope-announce http://mail.zope.org/mailman-20/listinfo/zope-dev )
participants (3)
-
Andreas Jung -
David Siedband -
Robb Shecter