Re: [web2py] Re: Auto Creating Users/Groups/Roles

2010-04-22 Thread Thadeus Burgess
I just wrote a blog post on this! http://groups.google.com/group/web2py/browse_thread/thread/1a522db61b5e5d44 -- Thadeus On Thu, Apr 22, 2010 at 1:12 PM, Patrick wrote: > > > On Apr 22, 12:18 pm, Jonathan Lundell wrote: >> On Apr 22, 2010, at 9:32 AM, Patrick wrote: >> >> > I'm sorry your

Re: [web2py] Re: Auto Creating Users/Groups/Roles

2010-04-22 Thread Jonathan Lundell
On Apr 22, 2010, at 9:32 AM, Patrick wrote: > I'm sorry your solution *does* work, I misread it in the reply, the > formatting got off and I was treating it like a separate variable. So > it works! When you first start web2py the user gets created (and every > time the user gets deleted as well. I

Re: [web2py] Re: Auto Creating Users/Groups/Roles

2010-04-22 Thread Jonathan Lundell
On Apr 22, 2010, at 7:55 AM, Patrick wrote: > > > On Apr 21, 10:09 pm, Jonathan Lundell wrote: >> On Apr 21, 2010, at 7:09 PM, mdipierro wrote: >> >>> NO. You cannot use >> >>> password=IS_CRYPT()(passwd)[0]) >> >>> You must use >> >>> password=db.auth_user.password.requires[0](passwd)[0])

Re: [web2py] Re: Auto Creating Users/Groups/Roles

2010-04-21 Thread Jonathan Lundell
On Apr 21, 2010, at 7:09 PM, mdipierro wrote: > NO. You cannot use > > password=IS_CRYPT()(passwd)[0]) > > You must use > > password=db.auth_user.password.requires[0](passwd)[0]) > > the reason is that IS_CRYPT() by default uses MD5 while if you pass a > key IS_CRYPT(key='sha521:blabla') is us

Re: [web2py] Re: Auto Creating Users/Groups/Roles

2010-04-21 Thread Thadeus Burgess
How about password = CRYPT()(passwd)[0] -- Thadeus On Wed, Apr 21, 2010 at 6:54 PM, mdipierro wrote: >    ticket_master = db.auth_user.insert(first_name=fname, >                                last_name=lname, >                                email=maile, >                                pa