On Fri, Dec 30, 2005 at 05:13:52PM +0000, Afternoon wrote: > > > Django developers: when people start using monkey patches to get > around issues, it's time to prioritise fixing them properly. > > This has been discussed many times and several solutions proposed. > > Worse things could happen that just using this as the template for a > patch. > > >
i think a better solution would be to have a new field type (PasswordField?)... this way, the admin interface could be customized to handle these fields, and show that typical enter-password-twice-and-show-it-using-stars interface. btw. i ended up with doing a new view for handling users, but that was because of other aspects (we wanted to present the "admin" user with a simplified user-management interface). gabor > On 28 Dec 2005, at 7:56, Burhan wrote: > > > > >I found this "hack" that does it very nicely. Forgot who gave me the > >link; and the link itself :( > > > >from django.models.auth import User > > > >def user_pre_save(self): > > if not self.password.startswith('sha1$'): > > self.set_password(self.password) > > > >User._pre_save = user_pre_save > > > >Add this in your model file. I tried it on the SVN trunk and it > >worked. ymmv > > > >Note: This (obviously) works with sha1 passwords, and not md5s. > > > > > ________________________________ > Afternoon, man about the Internet -- http://aftnn.org/ > > -- That's life for you, said McDunn. Someone always waiting for someone who never comes home. Always someone loving something more than that thing loves them. And after awhile you want to destroy whatever that thing is, so it can't hurt you no more. -- R. Bradbury, "The Fog Horn"