Mercurial > p > roundup > code
comparison roundup/templates/extended/dbinit.py @ 394:f43af1e97fdd
Added a target version field to the extended issue schema
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 21 Nov 2001 02:34:18 +0000 |
| parents | 8cd545738d8e |
| children | a6088556e9ba |
comparison
equal
deleted
inserted
replaced
| 393:f40388721e40 | 394:f43af1e97fdd |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: dbinit.py,v 1.13 2001-10-30 00:54:45 richard Exp $ | 18 # $Id: dbinit.py,v 1.14 2001-11-21 02:34:18 richard Exp $ |
| 19 | 19 |
| 20 import os | 20 import os |
| 21 | 21 |
| 22 import instance_config | 22 import instance_config |
| 23 from roundup import roundupdb | 23 from roundup import roundupdb |
| 108 | 108 |
| 109 issue = IssueClass(db, "issue", | 109 issue = IssueClass(db, "issue", |
| 110 assignedto=Link("user"), priority=Link("priority"), | 110 assignedto=Link("user"), priority=Link("priority"), |
| 111 status=Link("status"), product=Link("product"), | 111 status=Link("status"), product=Link("product"), |
| 112 platform=Multilink("platform"), version=String(), | 112 platform=Multilink("platform"), version=String(), |
| 113 supportcall=Multilink("support")) | 113 targetversion=String(), supportcall=Multilink("support")) |
| 114 | 114 |
| 115 import detectors | 115 import detectors |
| 116 detectors.init(db) | 116 detectors.init(db) |
| 117 | 117 |
| 118 return db | 118 return db |
| 174 | 174 |
| 175 db.close() | 175 db.close() |
| 176 | 176 |
| 177 # | 177 # |
| 178 # $Log: not supported by cvs2svn $ | 178 # $Log: not supported by cvs2svn $ |
| 179 # Revision 1.13 2001/10/30 00:54:45 richard | |
| 180 # Features: | |
| 181 # . #467129 ] Lossage when username=e-mail-address | |
| 182 # . #473123 ] Change message generation for author | |
| 183 # . MailGW now moves 'resolved' to 'chatting' on receiving e-mail for an issue. | |
| 184 # | |
| 179 # Revision 1.12 2001/10/09 07:25:59 richard | 185 # Revision 1.12 2001/10/09 07:25:59 richard |
| 180 # Added the Password property type. See "pydoc roundup.password" for | 186 # Added the Password property type. See "pydoc roundup.password" for |
| 181 # implementation details. Have updated some of the documentation too. | 187 # implementation details. Have updated some of the documentation too. |
| 182 # | 188 # |
| 183 # Revision 1.11 2001/08/07 00:24:43 richard | 189 # Revision 1.11 2001/08/07 00:24:43 richard |
