Mercurial > p > roundup > code
changeset 762:e13b9ba46d9d
[SF#565996] The "Attach a File to this Issue" fails
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 11 Jun 2002 06:38:24 +0000 |
| parents | e7b89de78052 |
| children | a85919c54f3a |
| files | CHANGES.txt roundup/cgi_client.py |
| diffstat | 2 files changed, 16 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Tue Jun 11 05:02:37 2002 +0000 +++ b/CHANGES.txt Tue Jun 11 06:38:24 2002 +0000 @@ -65,6 +65,7 @@ message content . build htmlbase if tests are run using CVS checkout . #565979 ] code error in hyperdb.Class.find + . #565996 ] The "Attach a File to this Issue" fails 2002-03-25 - 0.4.1 Feature:
--- a/roundup/cgi_client.py Tue Jun 11 05:02:37 2002 +0000 +++ b/roundup/cgi_client.py Tue Jun 11 06:38:24 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.126 2002-05-29 01:16:17 richard Exp $ +# $Id: cgi_client.py,v 1.127 2002-06-11 06:38:24 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -717,7 +717,8 @@ designator, property = value.split(':') link, nodeid = roundupdb.splitDesignator(designator) link = self.db.classes[link] - value = link.get(nodeid, property) + # take a dupe of the list so we're not changing the cache + value = link.get(nodeid, property)[:] value.append(nid) link.set(nodeid, **{property: value}) elif key == ':link': @@ -1362,6 +1363,18 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.126 2002/05/29 01:16:17 richard +# Sorry about this huge checkin! It's fixing a lot of related stuff in one go +# though. +# +# . #541941 ] changing multilink properties by mail +# . #526730 ] search for messages capability +# . #505180 ] split MailGW.handle_Message +# - also changed cgi client since it was duplicating the functionality +# . build htmlbase if tests are run using CVS checkout (removed note from +# installation.txt) +# . don't create an empty message on email issue creation if the email is empty +# # Revision 1.125 2002/05/25 07:16:24 rochecompaan # Merged search_indexing-branch with HEAD #
