summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 42d892b)
raw | patch | inline | side by side (parent: 42d892b)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 27 Nov 2001 03:00:50 +0000 (03:00 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 27 Nov 2001 03:00:50 +0000 (03:00 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@426 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/cgi_client.py | patch | blob | history | |
roundup/roundupdb.py | patch | blob | history |
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index 4b8c7c4361a650e084d3a236a0ae38d27f080e75..4ce3bba1a2c969749475d0efe670f11e6c2a4382 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: cgi_client.py,v 1.65 2001-11-26 23:00:53 richard Exp $
+# $Id: cgi_client.py,v 1.66 2001-11-27 03:00:50 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
summary = note
m = [edit_msg + '%s\n'%note]
else:
- m = [edit_msg]
+ summary = edit_msg
+ m = [summary]
first = 1
for name, prop in props.items():
#
# $Log: not supported by cvs2svn $
+# Revision 1.65 2001/11/26 23:00:53 richard
+# This config stuff is getting to be a real mess...
+#
# Revision 1.64 2001/11/26 22:56:35 richard
# typo
#
diff --git a/roundup/roundupdb.py b/roundup/roundupdb.py
index dde58dfec043c673d48d276ed1095d4f87903b17..e5fe10469843d33edb3d05bdc268592497a50480 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.21 2001-11-26 22:55:56 richard Exp $
+# $Id: roundupdb.py,v 1.22 2001-11-27 03:00:50 richard Exp $
__doc__ = """
Extending hyperdb with types specific to issue-tracking.
''' Add a signature to the e-mail with some useful information
'''
web = self.ISSUE_TRACKER_WEB + 'issue'+ nodeid
- return '''%s
-%s
-%s
-%s
-'''%('_'*len(web), self.INSTANCE_NAME, self.ISSUE_TRACKER_EMAIL, web,
- '_'*len(web))
+ email = '"%s" <%s>'%(self.INSTANCE_NAME, self.ISSUE_TRACKER_EMAIL)
+ line = '_' * max(len(web), len(email))
+ return '%s\n%s\n%s\n%s'%(line, email, web, line)
#
# $Log: not supported by cvs2svn $
+# Revision 1.21 2001/11/26 22:55:56 richard
+# Feature:
+# . Added INSTANCE_NAME to configuration - used in web and email to identify
+# the instance.
+# . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
+# signature info in e-mails.
+# . Some more flexibility in the mail gateway and more error handling.
+# . Login now takes you to the page you back to the were denied access to.
+#
+# Fixed:
+# . Lots of bugs, thanks Roché and others on the devel mailing list!
+#
# Revision 1.20 2001/11/25 10:11:14 jhermann
# Typo fix
#