changeset 1007:fec6af48558b

don't journal author and recipient link events by default
author Richard Jones <richard@users.sourceforge.net>
date Mon, 02 Sep 2002 07:00:22 +0000
parents 2a71acd81308
children 10ed4791f969
files roundup/templates/classic/dbinit.py
diffstat 1 files changed, 12 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/roundup/templates/classic/dbinit.py	Mon Sep 02 06:20:51 2002 +0000
+++ b/roundup/templates/classic/dbinit.py	Mon Sep 02 07:00:22 2002 +0000
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: dbinit.py,v 1.24 2002-09-01 04:32:30 richard Exp $
+# $Id: dbinit.py,v 1.25 2002-09-02 07:00:22 richard Exp $
 
 import os
 
@@ -69,7 +69,8 @@
     #   content = String()    [saved to disk in <instance home>/db/files/]
     #   (it also gets the Class properties creation, activity and creator)
     msg = FileClass(db, "msg", 
-                    author=Link("user"), recipients=Multilink("user"), 
+                    author=Link("user", do_journal='no'),
+                    recipients=Multilink("user", do_journal='no'), 
                     date=Date(),         summary=String(), 
                     files=Multilink("file"),
                     messageid=String(),  inreplyto=String())
@@ -190,6 +191,15 @@
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.24  2002/09/01 04:32:30  richard
+# . Lots of cleanup in the classic html (stylesheet, search page, index page, ...)
+# . Reinstated searching, but not query saving yet
+# . Filtering only allows sorting and grouping by one property - all backends
+#   now implement this behaviour.
+# . Nosy list journalling turned off by default, everything else is on.
+# . Added some convenience methods (reverse, propchanged, [item] accesses, ...)
+# . Did I mention the stylesheet is much cleaner now? :)
+#
 # Revision 1.23  2002/08/30 08:30:45  richard
 # allow perms on user class
 #

Roundup Issue Tracker: http://roundup-tracker.org/