|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
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 $ |
19 | 19 |
|
20 | 20 | import os |
21 | 21 |
|
@@ -69,7 +69,8 @@ def open(name=None): |
69 | 69 | # content = String() [saved to disk in <instance home>/db/files/] |
70 | 70 | # (it also gets the Class properties creation, activity and creator) |
71 | 71 | 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'), |
73 | 74 | date=Date(), summary=String(), |
74 | 75 | files=Multilink("file"), |
75 | 76 | messageid=String(), inreplyto=String()) |
@@ -190,6 +191,15 @@ def init(adminpw): |
190 | 191 |
|
191 | 192 | # |
192 | 193 | # $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 | +# |
193 | 203 | # Revision 1.23 2002/08/30 08:30:45 richard |
194 | 204 | # allow perms on user class |
195 | 205 | # |
|
0 commit comments