|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
18 | | -# $Id: cgi_client.py,v 1.63 2001-11-26 22:55:56 richard Exp $ |
| 18 | +# $Id: cgi_client.py,v 1.64 2001-11-26 22:56:35 richard Exp $ |
19 | 19 |
|
20 | 20 | __doc__ = """ |
21 | 21 | WWW request handler (also used in the stand-alone server). |
@@ -308,7 +308,7 @@ def shownode(self, message=None): |
308 | 308 | keys = self.form.keys() |
309 | 309 | num_re = re.compile('^\d+$') |
310 | 310 | # don't try to set properties if the user has just logged in |
311 | | - if keys and not self.form.has_key('__login_name'):: |
| 311 | + if keys and not self.form.has_key('__login_name'): |
312 | 312 | try: |
313 | 313 | props, changed = parsePropsFromForm(self.db, cl, self.form, |
314 | 314 | self.nodeid) |
@@ -1038,6 +1038,18 @@ def parsePropsFromForm(db, cl, form, nodeid=0): |
1038 | 1038 |
|
1039 | 1039 | # |
1040 | 1040 | # $Log: not supported by cvs2svn $ |
| 1041 | +# Revision 1.63 2001/11/26 22:55:56 richard |
| 1042 | +# Feature: |
| 1043 | +# . Added INSTANCE_NAME to configuration - used in web and email to identify |
| 1044 | +# the instance. |
| 1045 | +# . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup |
| 1046 | +# signature info in e-mails. |
| 1047 | +# . Some more flexibility in the mail gateway and more error handling. |
| 1048 | +# . Login now takes you to the page you back to the were denied access to. |
| 1049 | +# |
| 1050 | +# Fixed: |
| 1051 | +# . Lots of bugs, thanks Roché and others on the devel mailing list! |
| 1052 | +# |
1041 | 1053 | # Revision 1.62 2001/11/24 00:45:42 jhermann |
1042 | 1054 | # typeof() instead of type(): avoid clash with database field(?) "type" |
1043 | 1055 | # |
|
0 commit comments