Mercurial > p > roundup > code
diff roundup_cgi.py @ 3:97559f7bae2e
Bug fixes:
. Fixed bug in re generation in the filter (I hadn't finished the code ;)
. Added TODO as a priority (between bug and usability)
. Fixed handling of None String property in grouped list headings
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 19 Jul 2001 05:23:09 +0000 |
| parents | 5e92642cd1f8 |
| children | 72a0ba086b3e |
line wrap: on
line diff
--- a/roundup_cgi.py Thu Jul 19 03:12:56 2001 +0000 +++ b/roundup_cgi.py Thu Jul 19 05:23:09 2001 +0000 @@ -212,11 +212,12 @@ props[key] = value cl.set(self.nodeid, **props) - # if this item has messages, + # if this item has messages, generate an edit message + # TODO: don't send the edit message to the person who + # performed the edit if (cl.getprops().has_key('messages') and cl.getprops()['messages'].isMultilinkType and cl.getprops()['messages'].classname == 'msg'): - # generate an edit message - nosyreactor will send it nid = self.nodeid m = [] for name, prop in cl.getprops().items():
