Re: [web2py] An issue with trunk changes to password rules

2011-08-21 Thread Anthony
On Sunday, August 21, 2011 4:14:09 PM UTC-4, Jonathan Lundell wrote: > > > Except that CRYPT is invoked inside Auth. > > Good point, forgot about that.

Re: [web2py] An issue with trunk changes to password rules

2011-08-21 Thread Jonathan Lundell
On Aug 21, 2011, at 11:20 AM, Anthony wrote: > On Sunday, August 21, 2011 1:56:00 PM UTC-4, Jonathan Lundell wrote: > On Aug 21, 2011, at 9:27 AM, Jonathan Lundell wrote: > > On Aug 21, 2011, at 8:33 AM, Jonathan Lundell wrote: > > > >> I do something like this. Your details might vary. > >> > >

Re: [web2py] An issue with trunk changes to password rules

2011-08-21 Thread Anthony
On Sunday, August 21, 2011 1:56:00 PM UTC-4, Jonathan Lundell wrote: > > On Aug 21, 2011, at 9:27 AM, Jonathan Lundell wrote: > > > On Aug 21, 2011, at 8:33 AM, Jonathan Lundell wrote: > > > >> I do something like this. Your details might vary. > >> > >> # invoke IS_STRONG only for password crea

Re: [web2py] An issue with trunk changes to password rules

2011-08-21 Thread Jonathan Lundell
On Aug 21, 2011, at 9:27 AM, Jonathan Lundell wrote: > On Aug 21, 2011, at 8:33 AM, Jonathan Lundell wrote: > >> I do something like this. Your details might vary. >> >> # invoke IS_STRONG only for password creation, not password checking >> if "login" not in request.args: >> auth.settings.ta

Re: [web2py] An issue with trunk changes to password rules

2011-08-21 Thread Jonathan Lundell
On Aug 21, 2011, at 8:33 AM, Jonathan Lundell wrote: > I do something like this. Your details might vary. > > # invoke IS_STRONG only for password creation, not password checking > if "login" not in request.args: >auth.settings.table_user.password.requires.insert(0, IS_STRONG(min=8, > max=0

Re: [web2py] An issue with trunk changes to password rules

2011-08-21 Thread Jonathan Lundell
On Aug 21, 2011, at 7:45 AM, apple wrote: > On trunk the password has to be over a certain length. If I try to > login to an existing application with an existing user then it says my > password is not long enough. However there is no way of changing it > without logging in! I do something like t