|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
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 $ |
19 | 19 |
|
20 | 20 | """Extending hyperdb with types specific to issue-tracking. |
21 | 21 | """ |
@@ -116,8 +116,13 @@ class IssueClass: |
116 | 116 | # Note that this list also includes properties |
117 | 117 | # defined in the classic template: |
118 | 118 | # 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 | + ) |
121 | 126 |
|
122 | 127 | # New methods: |
123 | 128 | def addmessage(self, nodeid, summary, text): |
|
0 commit comments