Mercurial > p > roundup > code
diff roundup/cgi_client.py @ 270:a4241ddd22d7
Added the Password property type.
See "pydoc roundup.password" for implementation details. Have updated
some of the documentation too.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 09 Oct 2001 07:25:59 +0000 |
| parents | ee5e1436ac91 |
| children | 45e32247aa33 |
line wrap: on
line diff
--- a/roundup/cgi_client.py Mon Oct 08 23:36:44 2001 +0000 +++ b/roundup/cgi_client.py Tue Oct 09 07:25:59 2001 +0000 @@ -15,12 +15,12 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: cgi_client.py,v 1.28 2001-10-08 00:34:31 richard Exp $ +# $Id: cgi_client.py,v 1.29 2001-10-09 07:25:59 richard Exp $ import os, cgi, pprint, StringIO, urlparse, re, traceback, mimetypes import base64, Cookie, time -import roundupdb, htmltemplate, date, hyperdb +import roundupdb, htmltemplate, date, hyperdb, password class Unauthorised(ValueError): pass @@ -503,7 +503,10 @@ return self.login(message='No such user "%s"'%name) # and that the password is correct + pw = self.db.user.get(uid, 'password') + print password, pw, `pw` if password != self.db.user.get(uid, 'password'): + self.make_user_anonymous() return self.login(message='Incorrect password') # construct the cookie @@ -659,6 +662,8 @@ proptype = cl.properties[key] if isinstance(proptype, hyperdb.String): value = form[key].value.strip() + elif isinstance(proptype, hyperdb.Password): + value = password.Password(form[key].value.strip()) elif isinstance(proptype, hyperdb.Date): value = date.Date(form[key].value.strip()) elif isinstance(proptype, hyperdb.Interval): @@ -701,6 +706,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.28 2001/10/08 00:34:31 richard +# Change message was stuffing up for multilinks with no key property. +# # Revision 1.27 2001/10/05 02:23:24 richard # . roundup-admin create now prompts for property info if none is supplied # on the command-line.
