summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4eaf2f1)
raw | patch | inline | side by side (parent: 4eaf2f1)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 9 May 2002 02:52:56 +0000 (02:52 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 9 May 2002 02:52:56 +0000 (02:52 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@724 57a73879-2fb5-44c3-a270-3262357dd7e2
scripts/roundup-reminder | patch | blob | history |
index f5940f9e083fdc172cd67876d156560d245219b1..b3a004209380268bd85b4365b6bee171faa3286f 100755 (executable)
--- a/scripts/roundup-reminder
+++ b/scripts/roundup-reminder
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
-# $Id: roundup-reminder,v 1.1 2002-04-15 06:37:31 richard Exp $
+# $Id: roundup-reminder,v 1.2 2002-05-09 02:52:56 richard Exp $
'''
Simple script that emails all users of a tracker with the issues that
print >>body, '%-11s %-4s %-9s %-52s'%(creation, issue_id,
timeliness, title)
+ # some help to finish off
+ print >>body, '''
+To view or respond to any of the issues listed above, visit the URL
+
+ %s
+
+and click on "My Issues". Do NOT respond to this message.
+'''%db.config.ISSUE_TRACKER_WEB
+
+
# now the HTML one
part = writer.nextpart()
body = part.startbody('text/html')
<td>%s</td></tr>'''%(colour, creation, issue_id, timeliness, title)
print >>body, '</table>'
+ print >>body, '''<p>To view or respond to any of the issues listed
+ above, simply click on the issue ID. Do <b>not</b> respond to
+ this message.</p>'''
+
# finish of the multipart
writer.lastpart()
#
# $Log: not supported by cvs2svn $
+# Revision 1.1 2002/04/15 06:37:31 richard
+# Here's a cron-job reminder script that we're going to be using here at
+# ekit. Might be useful for other people. Could use some work making it more
+# general and easier to customise.
+#
#
#