Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 1431:c70068162e64
Altered Class.create() and FileClass.create() methods...
...to make "content" property available in auditors
Added "author" and "date" props to messages created by ":note". It might be
useful to keep that alive as a convenience variable.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 14 Feb 2003 00:31:46 +0000 |
| parents | 37e712e77a99 |
| children | a866491d04a7 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Fri Feb 14 00:08:32 2003 +0000 +++ b/roundup/cgi/client.py Fri Feb 14 00:31:46 2003 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.84 2003-02-13 12:10:34 kedder Exp $ +# $Id: client.py,v 1.85 2003-02-14 00:31:46 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -1021,7 +1021,6 @@ if newids is None: newids = {} for (cn, nodeid), props in all_props.items(): - print ((cn, nodeid), props) if int(nodeid) > 0: # make changes to the node props = self._changenode(cn, nodeid, props)
