comparison doc/upgrading.txt @ 4089:eddb82d0964c

Add compatibility package to allow us to deal with Python versions 2.3..2.6. Outstanding issues noted in roundup/anypy/TODO.txt
author Richard Jones <richard@users.sourceforge.net>
date Thu, 12 Mar 2009 02:52:56 +0000
parents 34434785f308
children ad57b06af972
comparison
equal deleted inserted replaced
4088:34434785f308 4089:eddb82d0964c
57 tal:attributes="action string:user${user/id}"> 57 tal:attributes="action string:user${user/id}">
58 <input type="hidden" name="@template" value="index"> 58 <input type="hidden" name="@template" value="index">
59 <input type="hidden" name="@action" value="retire"> 59 <input type="hidden" name="@action" value="retire">
60 <input type="submit" value="retire" i18n:attributes="value"> 60 <input type="submit" value="retire" i18n:attributes="value">
61 </form> 61 </form>
62
63
64 Fix for Python 2.6+ users
65 -------------------------
66
67 If you use Python 2.6 you should edit your tracker's
68 ``detectors/nosyreaction.py`` file to change::
69
70 import sets
71
72 at the top to::
73
74 from roundup.anypy.sets_ import set
75
76 and then all instances of ``sets.Set()`` to ``set()`` in the later code.
77
62 78
63 79
64 Trackers currently allowing HTML file uploading 80 Trackers currently allowing HTML file uploading
65 ----------------------------------------------- 81 -----------------------------------------------
66 82

Roundup Issue Tracker: http://roundup-tracker.org/