Mercurial > p > roundup > code
diff roundup/cgi_client.py @ 412:4c756931f3e4
typo
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 26 Nov 2001 22:56:35 +0000 |
| parents | a6088556e9ba |
| children | aafe6980123d |
line wrap: on
line diff
--- a/roundup/cgi_client.py Mon Nov 26 22:55:56 2001 +0000 +++ b/roundup/cgi_client.py Mon Nov 26 22:56:35 2001 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: cgi_client.py,v 1.63 2001-11-26 22:55:56 richard Exp $ +# $Id: cgi_client.py,v 1.64 2001-11-26 22:56:35 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -308,7 +308,7 @@ keys = self.form.keys() num_re = re.compile('^\d+$') # don't try to set properties if the user has just logged in - if keys and not self.form.has_key('__login_name'):: + if keys and not self.form.has_key('__login_name'): try: props, changed = parsePropsFromForm(self.db, cl, self.form, self.nodeid) @@ -1038,6 +1038,18 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.63 2001/11/26 22:55:56 richard +# Feature: +# . Added INSTANCE_NAME to configuration - used in web and email to identify +# the instance. +# . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup +# signature info in e-mails. +# . Some more flexibility in the mail gateway and more error handling. +# . Login now takes you to the page you back to the were denied access to. +# +# Fixed: +# . Lots of bugs, thanks Roché and others on the devel mailing list! +# # Revision 1.62 2001/11/24 00:45:42 jhermann # typeof() instead of type(): avoid clash with database field(?) "type" #
