Mercurial > p > roundup > code
changeset 237:9ccdd87dc4d3
didn't clean up fully after debugging :(
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 29 Aug 2001 04:49:39 +0000 |
| parents | 8827f5931ea8 |
| children | b8cca914bb53 |
| files | roundup/cgi_client.py |
| diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/cgi_client.py Wed Aug 29 04:47:18 2001 +0000 +++ b/roundup/cgi_client.py Wed Aug 29 04:49:39 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.23 2001-08-29 04:47:18 richard Exp $ +# $Id: cgi_client.py,v 1.24 2001-08-29 04:49:39 richard Exp $ import os, cgi, pprint, StringIO, urlparse, re, traceback, mimetypes @@ -328,7 +328,7 @@ # now create the message content = '\n'.join(m) - message_id = self.db.msg.create(author='admin', #self.getuid(), + message_id = self.db.msg.create(author=self.getuid(), recipients=[], date=date.Date('.'), summary=summary, content=content) messages = cl.get(nid, 'messages') @@ -513,6 +513,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.23 2001/08/29 04:47:18 richard +# Fixed CGI client change messages so they actually include the properties +# changed (again). +# # Revision 1.22 2001/08/17 00:08:10 richard # reverted back to sending messages always regardless of who is doing the web # edit. change notes weren't being saved. bleah. hackish.
