Mercurial > p > roundup > code
diff roundup/token.py @ 475:a1a44636bace
Fix breakage caused by transaction changes.
Sorry for the huge checkin message - I was only intending to implement
[SF#496356] but I found a number of places where things had been
broken by transactions:
. modified ROUNDUPDBSENDMAILDEBUG to be SENDMAILDEBUG and hold a filename
for _all_ roundup-generated smtp messages to be sent to.
. the transaction cache had broken the roundupdb.Class set() reactors
. newly-created author users in the mailgw weren't being committed to the db
Stuff that made it into CHANGES.txt (ie. the stuff I was actually working
on when I found that stuff :):
. [SF#496356] Use threading in messages
. detectors were being registered multiple times
. added tests for mailgw
. much better attaching of erroneous messages in the mail gateway
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 02 Jan 2002 02:31:38 +0000 |
| parents | 9f7320624bc2 |
| children | 9b910e8d987d |
line wrap: on
line diff
--- a/roundup/token.py Mon Dec 31 05:20:34 2001 +0000 +++ b/roundup/token.py Wed Jan 02 02:31:38 2002 +0000 @@ -1,5 +1,5 @@ # -# Copyright (c) 2001 Richard Jones. +# Copyright (c) 2001 Richard Jones, richard@bofh.asn.au. # This module is free software, and you may redistribute it and/or modify # under the same terms as Python, so long as this copyright message and # disclaimer are retained in their original form. @@ -8,7 +8,7 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # -# $Id: token.py,v 1.1 2001-12-31 05:09:20 richard Exp $ +# $Id: token.py,v 1.2 2002-01-02 02:31:38 richard Exp $ # __doc__ = """ @@ -113,6 +113,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.1 2001/12/31 05:09:20 richard +# Added better tokenising to roundup-admin - handles spaces and stuff. Can +# use quoting or backslashes. See the roundup.token pydoc. +# # # # vim: set filetype=python ts=4 sw=4 et si
