Mercurial > p > roundup > code
diff roundup/cgi_client.py @ 522:f2edf460b0b9
[SF#502437] rogue reactor and unittest
in short, the nosy reactor was modifying the nosy list. That code had
been there for a long time, and I suspect it was there because we
weren't generating the nosy list correctly in other places of the code.
We're now doing that, so the nosy-modifying code can go away from the
nosy reactor.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 11 Jan 2002 23:22:29 +0000 |
| parents | 161d32dddd8a |
| children | dce4c75bef5a |
line wrap: on
line diff
--- a/roundup/cgi_client.py Fri Jan 11 22:59:01 2002 +0000 +++ b/roundup/cgi_client.py Fri Jan 11 23:22:29 2002 +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.96 2002-01-10 05:26:10 richard Exp $ +# $Id: cgi_client.py,v 1.97 2002-01-11 23:22:29 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -424,7 +424,7 @@ return cl.create(**props) def _handle_message(self): - ''' generate and edit message + ''' generate an edit message ''' # handle file attachments files = [] @@ -1178,6 +1178,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.96 2002/01/10 05:26:10 richard +# missed a parsePropsFromForm in last update +# # Revision 1.95 2002/01/10 03:39:45 richard # . fixed some problems with web editing and change detection #
