Roundup Tracker - Issues

Message1223

Author gregsf
Recipients
Date 2004-06-11.17:13:12
Message-id
In-reply-to
Logged In: YES 
user_id=915812

Sorry, I'm afraid the problem persists with 0.7.4

Did you get the tracker I sent along with the instructions
how to reproduce the problem? I'll attach it here as well.
The steps are:

Check that the tracker runs with 0.6.11. admin pasword is 'x'
export the tracker, switch to mysql, re-import, check again,
should be fine

upgrade to 0.7.4. When changing roundup versions I'm
removing both /usr/local/share/roundup and
/usr/local/lib/python2.3/site-package-roundup before running
python setup.py install --force

Follow the upgrade steps from upgrading.txt, i.e. add

    for cl in 'issue', 'file', 'msg', 'query', 'keyword':
        p = db.security.getPermission('View', cl)
        db.security.addPermissionToRole('User', p)
        p = db.security.getPermission('Edit', cl)
        db.security.addPermissionToRole('User', p)

    for cl in 'priority', 'status':
        p = db.security.getPermission('View', cl)
        db.security.addPermissionToRole('User', p)
        db.security.addPermissionToRole('Anonymous', p)

to dbinit.py and DEFAULT_TIMEZONE to config.py

Start the tracker (I'm using roundup-server) and try to view
a page or run roundup-admin to export the tracker. Both
leads to the recursion exception.
History
Date User Action Args
2009-02-03 14:20:42adminlinkissue950410 messages
2009-02-03 14:20:42admincreate