Code

. #565996 ] The "Attach a File to this Issue" fails
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 11 Jun 2002 06:38:24 +0000 (06:38 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 11 Jun 2002 06:38:24 +0000 (06:38 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@775 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi_client.py

index 6bddb5cfb4e6b793f58358b4531aa24f2d38e5ea..55e4ac6efa6cd75a26b6c3d6ff8a289a7818c7af 100644 (file)
@@ -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:
index ae013fcb2915fb00848b3000e0e5808117c55ab5..51ba6222d0df44ad415d41c948e13dfa3f146839 100644 (file)
@@ -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
 #