summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6017df9)
raw | patch | inline | side by side (parent: 6017df9)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 6 Dec 2001 22:48:29 +0000 (22:48 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 6 Dec 2001 22:48:29 +0000 (22:48 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@447 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 06cd0d31e3b72ab28290f4c11538ba0f4581aabd..3f28d5611840187277ced8adfb1e117030b662b3 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.76 2001-12-05 14:26:44 rochecompaan Exp $
+# $Id: cgi_client.py,v 1.77 2001-12-06 22:48:29 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
link.set(nodeid, **{property: nid})
# handle file attachments
- files = []
+ files = cl.get(nid, 'files')
if self.form.has_key('__file'):
file = self.form['__file']
if file.filename:
#
# $Log: not supported by cvs2svn $
+# Revision 1.76 2001/12/05 14:26:44 rochecompaan
+# Removed generation of change note from "sendmessage" in roundupdb.py.
+# The change note is now generated when the message is created.
+#
# Revision 1.75 2001/12/04 01:25:08 richard
# Added some rollbacks where we were catching exceptions that would otherwise
# have stopped committing.