Mercurial > p > roundup > code
view templates/classic/initial_data.py @ 3854:f4e8dc583256
Restored subject parser regexp to the string it was before the...
...implementation of customization of it, i.e., the version from
CVS revision 1.184 of mailgw.py.
This makes 'testFollowupTitleMatchMultiRe' work again.
| author | Erik Forsberg <forsberg@users.sourceforge.net> |
|---|---|
| date | Sat, 12 May 2007 16:14:54 +0000 |
| parents | 9e07a5642dd0 |
| children |
line wrap: on
line source
# # TRACKER INITIAL PRIORITY AND STATUS VALUES # pri = db.getclass('priority') pri.create(name=''"critical", order="1") pri.create(name=''"urgent", order="2") pri.create(name=''"bug", order="3") pri.create(name=''"feature", order="4") pri.create(name=''"wish", order="5") stat = db.getclass('status') stat.create(name=''"unread", order="1") stat.create(name=''"deferred", order="2") stat.create(name=''"chatting", order="3") stat.create(name=''"need-eg", order="4") stat.create(name=''"in-progress", order="5") stat.create(name=''"testing", order="6") stat.create(name=''"done-cbb", order="7") stat.create(name=''"resolved", order="8") # create the two default users user = db.getclass('user') user.create(username="admin", password=adminpw, address=admin_email, roles='Admin') user.create(username="anonymous", roles='Anonymous') # add any additional database creation steps here - but only if you # haven't initialised the database with the admin "initialise" command # vim: set filetype=python sts=4 sw=4 et si #SHA: b1da2e72a7fe9f26086f243eb744135b085101d9
