Skip to content

Commit 1295f7d

Browse files
author
Alexander Smishlajev
committed
add common audit properties...
...to the list of IssueClass property names marked for translation
1 parent 51b4d5a commit 1295f7d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

roundup/roundupdb.py

Lines changed: 8 additions & 3 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: roundupdb.py,v 1.110 2004-07-02 08:27:56 a1s Exp $
18+
# $Id: roundupdb.py,v 1.111 2004-07-05 11:28:25 a1s Exp $
1919

2020
"""Extending hyperdb with types specific to issue-tracking.
2121
"""
@@ -116,8 +116,13 @@ class IssueClass:
116116
# Note that this list also includes properties
117117
# defined in the classic template:
118118
# assignedto, topic, priority, status.
119-
(''"title", ''"messages", ''"files", ''"nosy", ''"superseder",
120-
''"assignedto", ''"topic", ''"priority", ''"status")
119+
(
120+
''"title", ''"messages", ''"files", ''"nosy", ''"superseder",
121+
''"assignedto", ''"topic", ''"priority", ''"status",
122+
# following properties are common for all hyperdb classes
123+
# they are listed here to keep things in one place
124+
''"actor", ''"activity", ''"creator", ''"creation",
125+
)
121126

122127
# New methods:
123128
def addmessage(self, nodeid, summary, text):

0 commit comments

Comments
 (0)