Skip to content

Commit 76916bd

Browse files
author
Richard Jones
committed
don't journal author and recipient link events by default
1 parent 3c1f72c commit 76916bd

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

roundup/templates/classic/dbinit.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: dbinit.py,v 1.24 2002-09-01 04:32:30 richard Exp $
18+
# $Id: dbinit.py,v 1.25 2002-09-02 07:00:22 richard Exp $
1919

2020
import os
2121

@@ -69,7 +69,8 @@ def open(name=None):
6969
# content = String() [saved to disk in <instance home>/db/files/]
7070
# (it also gets the Class properties creation, activity and creator)
7171
msg = FileClass(db, "msg",
72-
author=Link("user"), recipients=Multilink("user"),
72+
author=Link("user", do_journal='no'),
73+
recipients=Multilink("user", do_journal='no'),
7374
date=Date(), summary=String(),
7475
files=Multilink("file"),
7576
messageid=String(), inreplyto=String())
@@ -190,6 +191,15 @@ def init(adminpw):
190191

191192
#
192193
# $Log: not supported by cvs2svn $
194+
# Revision 1.24 2002/09/01 04:32:30 richard
195+
# . Lots of cleanup in the classic html (stylesheet, search page, index page, ...)
196+
# . Reinstated searching, but not query saving yet
197+
# . Filtering only allows sorting and grouping by one property - all backends
198+
# now implement this behaviour.
199+
# . Nosy list journalling turned off by default, everything else is on.
200+
# . Added some convenience methods (reverse, propchanged, [item] accesses, ...)
201+
# . Did I mention the stylesheet is much cleaner now? :)
202+
#
193203
# Revision 1.23 2002/08/30 08:30:45 richard
194204
# allow perms on user class
195205
#

0 commit comments

Comments
 (0)