Mercurial > p > roundup > code
comparison roundup/cgi_client.py @ 420:d1e8a2e7236a
a little comment
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 29 Nov 2001 04:57:23 +0000 |
| parents | 831e91e23963 |
| children | 6bd365c63528 |
comparison
equal
deleted
inserted
replaced
| 419:831e91e23963 | 420:d1e8a2e7236a |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: cgi_client.py,v 1.67 2001-11-28 21:55:35 richard Exp $ | 18 # $Id: cgi_client.py,v 1.68 2001-11-29 04:57:23 richard Exp $ |
| 19 | 19 |
| 20 __doc__ = """ | 20 __doc__ = """ |
| 21 WWW request handler (also used in the stand-alone server). | 21 WWW request handler (also used in the stand-alone server). |
| 22 """ | 22 """ |
| 23 | 23 |
| 497 m = [edit_msg + '%s\n'%note] | 497 m = [edit_msg + '%s\n'%note] |
| 498 else: | 498 else: |
| 499 summary = edit_msg | 499 summary = edit_msg |
| 500 m = [summary] | 500 m = [summary] |
| 501 | 501 |
| 502 # figure the changes and add them to the message | |
| 502 first = 1 | 503 first = 1 |
| 503 for name, prop in props.items(): | 504 for name, prop in props.items(): |
| 504 if changes is not None and name not in changes: continue | 505 if changes is not None and name not in changes: continue |
| 505 if first: | 506 if first: |
| 506 m.append('\n-------') | 507 m.append('\n-------') |
| 1044 props[key] = value | 1045 props[key] = value |
| 1045 return props, changed | 1046 return props, changed |
| 1046 | 1047 |
| 1047 # | 1048 # |
| 1048 # $Log: not supported by cvs2svn $ | 1049 # $Log: not supported by cvs2svn $ |
| 1050 # Revision 1.67 2001/11/28 21:55:35 richard | |
| 1051 # . login_action and newuser_action return values were being ignored | |
| 1052 # . Woohoo! Found that bloody re-login bug that was killing the mail | |
| 1053 # gateway. | |
| 1054 # (also a minor cleanup in hyperdb) | |
| 1055 # | |
| 1049 # Revision 1.66 2001/11/27 03:00:50 richard | 1056 # Revision 1.66 2001/11/27 03:00:50 richard |
| 1050 # couple of bugfixes from latest patch integration | 1057 # couple of bugfixes from latest patch integration |
| 1051 # | 1058 # |
| 1052 # Revision 1.65 2001/11/26 23:00:53 richard | 1059 # Revision 1.65 2001/11/26 23:00:53 richard |
| 1053 # This config stuff is getting to be a real mess... | 1060 # This config stuff is getting to be a real mess... |
