Skip to content

Commit c79fcb7

Browse files
author
Richard Jones
committed
pre-release machinations
1 parent 9a40918 commit c79fcb7

File tree

5 files changed

+42
-59
lines changed

5 files changed

+42
-59
lines changed

CHANGES.txt

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
200?-??-?? 0.7.0
5-
Feature:
6-
- support confirming registration by replying to the email (sf bug 763668)
7-
8-
9-
2003-09-?? 0.6.2
4+
2003-09-29 0.6.2
105
Fixed:
116
- cleaned up, clarified internal caching API in *dbm backends
127
- stopped pyc writing to current directory! yay! (patch 800718 with changes)
138
- fixed file leak in detector initialisation (patch 800715)
149
- commented out example tracker homes (patch 800720)
1510
- added note about hidden :template var in user.item (bug 799842)
16-
- fixed Apply Error that was raised, when property was deleted from class and
11+
- fixed change note generation when property was deleted from class and
1712
we are trying to edit an instance
1813

1914

doc/announcement.txt

Lines changed: 15 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,26 @@
11
=================================================
2-
SC-Track Roundup 0.6.1 - an issue tracking system
2+
SC-Track Roundup 0.6.2 - an issue tracking system
33
=================================================
44

5-
I'm pleased to announce this maintenance release of Roundup. This
6-
release introduces python 2.3 compatibility. My thanks to Paul Dubois
7-
for contributing the csv module compatibility layer.
5+
I'm pleased to announce this maintenance release of Roundup which fixes
6+
some bugs:
7+
8+
- cleaned up, clarified internal caching API in *dbm backends
9+
- stopped pyc writing to current directory! yay! (patch 800718 with changes)
10+
- fixed file leak in detector initialisation (patch 800715)
11+
- commented out example tracker homes (patch 800720)
12+
- added note about hidden :template var in user.item (bug 799842)
13+
- fixed change note generation when property was deleted from class and
14+
we are trying to edit an instance
815

916
If you're upgrading from an older version of Roundup you *must* follow
1017
the "Software Upgrade" guidelines given in the maintenance documentation.
1118

1219
Unfortunately, the Zope frontend for Roundup is currently broken. I hope
13-
to revive it in a future 0.6 maintenance release.
14-
15-
Roundup requires python 2.1.3 or later for correct operation.
16-
17-
This release fixes some bugs:
18-
19-
- Add note about installing cgi-bin with a different interpreter
20-
- Importing wasn't setting None values explicitly when it should have been
21-
- Fixed import warning regarding 0xffff0000 literal, finally, really this
22-
time. Checked on win2k. (sf bug 786711)
23-
- Fix CGI editCSV action to handle metakit's integer itemids
24-
- Apply fix for "remove" links from Klamer Schutte
25-
- Added permission check on "remove" link while I was there..
26-
- Applied CSV fix for python2.3 (sf bug 790363)
27-
- Fixed form padding in LHS menu (sf bug 790502)
28-
- Fixed upgrading docs for timezones (sf bug 790498)
29-
- Set the content type on page templates (can have XML templates now)
30-
- Various cosmetic fixes (thanks James Kew for being persistent :)
31-
- Applied patch 739314 (sorry John!)
20+
to revive it in a future 0.6 maintenance release. No, really.
21+
22+
Roundup requires python 2.1.3 or later for correct operation. Python 2.3.1
23+
or later is strongly recommended.
3224

3325
To give Roundup a try, just download (see below), unpack and run::
3426

doc/upgrading.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ accordingly.
77

88
.. contents::
99

10+
1011
Migrating from 0.5 to 0.6
1112
=========================
1213

14+
1315
0.6.0 Configuration
1416
-------------------
1517

@@ -30,6 +32,15 @@ __init__.py from roundup/templates/classic/detectors/__init__.py to your
3032
<tracker home>/detectors/__init__.py. Don't worry, the "classic" __init__ is a
3133
one-size-fits-all, so it'll work even if you've added/removed detectors.
3234

35+
0.6.0 Templating changes
36+
------------------------
37+
38+
The ``user.item`` template (in the tracker home "templates" directory)
39+
needs to have the following hidden variable added to its form (between the
40+
``<form...>`` and ``</form>`` tags::
41+
42+
<input type="hidden" name=":template" value="item">
43+
3344

3445
0.6.0 Form handling changes
3546
---------------------------
@@ -70,6 +81,7 @@ user names, keywords, etc) can be edited by administrator, the others
7081
is no tool for converting such data, the only solution is to close
7182
appropriate old issues and create new ones with the same content.
7283

84+
7385
0.6.0 User timezone support
7486
---------------------------
7587

@@ -102,6 +114,7 @@ After providing timezone, roundup will show all dates values, found in web
102114
and mail interfaces in local time. It will also accept any Date info in
103115
local time, convert and store it in GMT.
104116

117+
105118
0.6.0 Search page structure
106119
---------------------------
107120

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.25.2.1 2003-08-31 04:31:03 richard Exp $
18+
# $Id: __init__.py,v 1.25.2.2 2003-09-29 08:08:31 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.6.1'
70+
__version__ = '0.6.2'
7171

7272
# vim: set filetype=python ts=4 sw=4 et si

setup.py

Lines changed: 10 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.55.2.1 2003-08-31 04:31:00 richard Exp $
19+
# $Id: setup.py,v 1.55.2.2 2003-09-29 08:08:31 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -186,32 +186,15 @@ def main():
186186
command-line, web and e-mail interfaces. It is based on the winning design
187187
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
188188
189-
The 0.6 release has lots of new goodies including:
190-
191-
- new instant-gratification Demo Mode ("python demo.py" :)
192-
- added mysql backend (see doc/mysql.txt for details)
193-
- web interface cleanups including nicer history display, nicer index
194-
navigation and nicer popup list windows
195-
- searching of date ranges
196-
- better international support, including utf-8 email handling and ability
197-
to display localized dates in web interface.
198-
- more documentation including revamped design document, unix manual pages
199-
and some FAQ entries
200-
- significantly more powerful form handling allowing editing of multiple
201-
items
202-
and creation of multiple items
203-
- tracker templates can contain subdirectories and static files (e.g.
204-
images)
205-
and we may now distribute templates separately from Roundup. Template
206-
HTML files now have a .html extension too.
207-
- user registration is now a two-step process, with confirmation from the email
208-
address supplied in the registration form, and we also have a password reset
209-
feature for forgotten password / login
210-
- Windows Service mode for roundup-server when daemonification is attempted
211-
on Windows.
212-
- fixed issues with dumb email or web clients
213-
- lots more little tweaks and back-end work...
214-
- email system handles more SMTP and POP features (TLS, APOP, ...)
189+
The 0.6.2 release fixes some bugs:
190+
- cleaned up, clarified internal caching API in *dbm backends
191+
- stopped pyc writing to current directory! yay! (patch 800718 with changes)
192+
- fixed file leak in detector initialisation (patch 800715)
193+
- commented out example tracker homes (patch 800720)
194+
- added note about hidden :template var in user.item (bug 799842)
195+
- fixed change note generation when property was deleted from class and
196+
we are trying to edit an instance
197+
215198
''',
216199
author = "Richard Jones",
217200
author_email = "[email protected]",

0 commit comments

Comments
 (0)