summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f4e7a50)
raw | patch | inline | side by side (parent: f4e7a50)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 27 Nov 2001 03:17:13 +0000 (03:17 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 27 Nov 2001 03:17:13 +0000 (03:17 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@428 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/roundupdb.py | patch | blob | history |
diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py
index e5fe10469843d33edb3d05bdc268592497a50480..7aa5767a463859be82428351ea7eef743191ae51 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.22 2001-11-27 03:00:50 richard Exp $
+# $Id: roundupdb.py,v 1.23 2001-11-27 03:17:13 richard Exp $
__doc__ = """
Extending hyperdb with types specific to issue-tracking.
authname = self.db.user.get(authid, 'username')
authaddr = self.db.user.get(authid, 'address')
if authaddr:
- authaddr = '<%s> '%authaddr
+ authaddr = ' <%s>'%authaddr
else:
authaddr = ''
# make the message body
# add author information
if len(self.db.issue.get(nodeid, 'messages')) == 1:
- m.append("New submission from %s <%s>:"%(authname, authaddr))
+ m.append("New submission from %s%s:"%(authname, authaddr))
else:
- m.append("%s <%s> added the comment:"%(authname, authaddr))
+ m.append("%s%s added the comment:"%(authname, authaddr))
m.append('')
# add the content
#
# $Log: not supported by cvs2svn $
+# Revision 1.22 2001/11/27 03:00:50 richard
+# couple of bugfixes from latest patch integration
+#
# Revision 1.21 2001/11/26 22:55:56 richard
# Feature:
# . Added INSTANCE_NAME to configuration - used in web and email to identify