summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d8ec5b7)
raw | patch | inline | side by side (parent: d8ec5b7)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 10 Dec 2001 21:02:53 +0000 (21:02 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 10 Dec 2001 21:02:53 +0000 (21:02 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@451 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/roundupdb.py | patch | blob | history |
diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py
index a359c58eaee7d5bff0db3100e9818f8fa822adc2..1d15ab4f6b13bcca5aff159f24bacdf06a5b0c7e 100644 (file)
--- a/roundup/roundupdb.py
+++ b/roundup/roundupdb.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: roundupdb.py,v 1.26 2001-12-05 14:26:44 rochecompaan Exp $
+# $Id: roundupdb.py,v 1.27 2001-12-10 21:02:53 richard Exp $
__doc__ = """
Extending hyperdb with types specific to issue-tracking.
changed[key] = new_value
# list the changes
- m = ['','----------']
for propname, value in changed.items():
prop = cl.properties[propname]
oldvalue = cl.get(nodeid, propname, None)
if l:
change += ' -%s'%(', '.join(l))
m.append('%s: %s'%(propname, change))
+ if m:
+ m.insert(0, '')
+ m.insert(0, '----------')
return '\n'.join(m)
#
# $Log: not supported by cvs2svn $
+# Revision 1.26 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.25 2001/11/30 20:28:10 rochecompaan
# Property changes are now completely traceable, whether changes are
# made through the web or by email