summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ae17842)
raw | patch | inline | side by side (parent: ae17842)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 26 Nov 2001 22:56:35 +0000 (22:56 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 26 Nov 2001 22:56:35 +0000 (22:56 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@424 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/cgi_client.py | patch | blob | history |
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index 8e80355b082726303b322ff8dfffcac1edfacd0f..2976814cc710ee1e7fbb68b82d6fa400de9856e7 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
# 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).
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)
#
# $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"
#