summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a86c64f)
raw | patch | inline | side by side (parent: a86c64f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 7 Apr 2003 06:27:30 +0000 (06:27 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 7 Apr 2003 06:27:30 +0000 (06:27 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1649 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/roundupdb.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 4b029d389e41ae30c106f0b090b31e15d400e0cc..fc64ee6f619fbac1776204863a1aaa613bbbf917 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- finally, tables autosize columns (sf bug 609070)
- added creation to index columns (sf bug 708247)
- fixed missing (pre-commit) journal entries in *dbm backends (sf bug 679217)
+- URL cited in roundup email confusing dumb Email clients (sf bug 716585)
2003-??-?? 0.5.7
diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py
index 0bf115da95f8a627c9103b08a567c5777a164464..8bf148f21fdc4d549069c6908ee27af85232d288 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.82 2003-02-24 05:16:57 richard Exp $
+# $Id: roundupdb.py,v 1.83 2003-04-07 06:27:30 richard Exp $
__doc__ = """
Extending hyperdb with types specific to issue-tracking.
self.db.config.TRACKER_EMAIL))
line = '_' * max(len(web), len(email))
- return '%s\n%s\n%s\n%s'%(line, email, web, line)
+ return '%s\n%s\n<%s>\n%s'%(line, email, web, line)
def generateCreateNote(self, nodeid):