Mercurial > p > roundup > code
changeset 2264:9b34f41507ed 0.7.0
*** empty log message ***
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 06 May 2004 03:18:03 +0000 |
| parents | d22a40dd33af |
| children | 52330d719b0a c77483d2cda4 |
| files | doc/announcement.txt roundup/cgi/actions.py |
| diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/announcement.txt Thu May 06 02:37:56 2004 +0000 +++ b/doc/announcement.txt Thu May 06 03:18:03 2004 +0000 @@ -16,6 +16,10 @@ - database exports now include full journals - IMAP support in the mail gateway +Known issues: + +- the metakit import feature currently has a bug and should not be used + If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation.
--- a/roundup/cgi/actions.py Thu May 06 02:37:56 2004 +0000 +++ b/roundup/cgi/actions.py Thu May 06 03:18:03 2004 +0000 @@ -1,4 +1,4 @@ -#$Id: actions.py,v 1.26 2004-05-06 02:03:42 richard Exp $ +#$Id: actions.py,v 1.27 2004-05-06 03:18:03 richard Exp $ import re, cgi, StringIO, urllib, Cookie, time, random @@ -465,6 +465,7 @@ else: return None d.second = int(d.second) + return d def lastNodeActivity(self): cl = getattr(self.client.db, self.classname) @@ -473,7 +474,6 @@ return activity def detectCollision(self, user_activity, node_activity): - print (user_activity, node_activity) if user_activity: return user_activity < node_activity
