diff roundup/roundupdb.py @ 2545:f313ea652571

add common audit properties... ...to the list of IssueClass property names marked for translation
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Mon, 05 Jul 2004 11:28:25 +0000
parents cf17ba0a72f9
children eca3383a27a6
line wrap: on
line diff
--- a/roundup/roundupdb.py	Sun Jul 04 12:59:19 2004 +0000
+++ b/roundup/roundupdb.py	Mon Jul 05 11:28:25 2004 +0000
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 #
-# $Id: roundupdb.py,v 1.110 2004-07-02 08:27:56 a1s Exp $
+# $Id: roundupdb.py,v 1.111 2004-07-05 11:28:25 a1s Exp $
 
 """Extending hyperdb with types specific to issue-tracking.
 """
@@ -116,8 +116,13 @@
     # Note that this list also includes properties
     # defined in the classic template:
     # assignedto, topic, priority, status.
-    (''"title", ''"messages", ''"files", ''"nosy", ''"superseder",
-        ''"assignedto", ''"topic", ''"priority", ''"status")
+    (
+        ''"title", ''"messages", ''"files", ''"nosy", ''"superseder",
+        ''"assignedto", ''"topic", ''"priority", ''"status",
+        # following properties are common for all hyperdb classes
+        # they are listed here to keep things in one place
+        ''"actor", ''"activity", ''"creator", ''"creation",
+    )
 
     # New methods:
     def addmessage(self, nodeid, summary, text):

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