Mercurial > p > roundup > code
diff roundupdb.py @ 13:861a24009a18
Priority list changes - removed the redundant TODO and added support.
See roundup-devel for details.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 20 Jul 2001 00:22:50 +0000 |
| parents | 3b0a72f54613 |
| children | bb0572c92f23 |
line wrap: on
line diff
--- a/roundupdb.py Fri Jul 20 00:17:16 2001 +0000 +++ b/roundupdb.py Fri Jul 20 00:22:50 2001 +0000 @@ -1,4 +1,4 @@ -# $Id: roundupdb.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $ +# $Id: roundupdb.py,v 1.5 2001-07-20 00:22:50 richard Exp $ import re, os, smtplib, socket @@ -331,9 +331,9 @@ pri = db.getclass('priority') pri.create(name="fatal-bug", order="1") pri.create(name="bug", order="2") - pri.create(name="todo", order="3") - pri.create(name="usability", order="4") - pri.create(name="feature", order="5") + pri.create(name="usability", order="3") + pri.create(name="feature", order="4") + pri.create(name="support", order="5") stat = db.getclass('status') stat.create(name="unread", order="1") @@ -374,6 +374,13 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.4 2001/07/19 06:27:07 anthonybaxter +# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by +# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign) +# strings in a commit message. I'm a twonk. +# +# Also broke the help string in two. +# # Revision 1.3 2001/07/19 05:52:22 anthonybaxter # Added CVS keywords Id and Log to all python files. #
