From e068a648ccc457be8b5d02ede73fc87f4ab89b37 Mon Sep 17 00:00:00 2001 From: richard Date: Tue, 11 Jun 2002 06:38:24 +0000 Subject: [PATCH] . #565996 ] The "Attach a File to this Issue" fails git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@775 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 1 + roundup/cgi_client.py | 17 +++++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 6bddb5c..55e4ac6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -65,6 +65,7 @@ Fixed: 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: diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py index ae013fc..51ba622 100644 --- a/roundup/cgi_client.py +++ b/roundup/cgi_client.py @@ -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 @@ function help_window(helpurl, width, height) { 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 @@ def parsePropsFromForm(db, cl, form, nodeid=0): # # $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 # -- 2.30.2