Skip to content

Commit d790b43

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 4814e3e commit d790b43

File tree

4 files changed

+58
-34
lines changed

4 files changed

+58
-34
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
4+
2004-03-24 0.7.0b1
55
Major new features:
66
- added postgresql backend (originally from sf patch 761740, many changes
77
since)

doc/announcement.txt

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,35 @@
1-
I'm pleased to announce this maintenance release of Roundup. This fix
2-
introduces Python2.3 compatibility. My thanks to Paul Dubois for
3-
contributing the csv module compatibility layer.
1+
It is with a huge sigh of relief that I announce this first beta of
2+
Roundup version 0.7.
43

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

8-
Roundup requires python 2.1.3 or later for correct operation.
7+
No, really, this is a BETA and if you don't follow the upgrading steps,
8+
particularly the bit about BACKING UP YOUR DATA, I'm NOT GOING TO BE HELD
9+
RESPONSIBLE. This release is NOT FOR GENERAL USE.
10+
11+
I would *greatly* appreciate people giving this release a whirl with a
12+
copy of their existing setup. It's only through real-world testing of
13+
beta releases that we can ensure that older trackers will be OK.
14+
15+
This release introduces far too many features to list here. Some
16+
highlights:
917

10-
This release fixes some bugs:
18+
- added postgresql backend (originally from sf patch 761740, many changes
19+
since)
20+
- RDBMS backends implement their session and one-time-key stores and
21+
full-text indexers; thus they are now performing their own locking
22+
internally
23+
- added new "actor" automatic property (indicates user who cause the last
24+
"activity")
25+
- all RDBMS backends have sensible data typed columns and indexes on
26+
several columns
27+
- we support confirming registration by replying to the email (sf bug
28+
763668)
29+
- all HTML templating methods now automatically check for permissions
30+
(either view or edit as appropriate), greatly simplifying templates
31+
32+
Roundup requires python 2.1.3 or later for correct operation.
1133

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

setup.py

Lines changed: 29 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.58 2003-11-13 05:56:48 richard Exp $
19+
# $Id: setup.py,v 1.59 2004-03-24 05:56:06 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -188,39 +188,41 @@ def main():
188188
command-line, web and e-mail interfaces. It is based on the winning design
189189
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
190190
191-
The 0.6 release has lots of new goodies including:
192-
193-
- new instant-gratification Demo Mode ("python demo.py" :)
194-
- added mysql backend (see doc/mysql.txt for details)
195-
- web interface cleanups including nicer history display, nicer index
196-
navigation and nicer popup list windows
197-
- searching of date ranges
198-
- better international support, including utf-8 email handling and ability
199-
to display localized dates in web interface.
200-
- more documentation including revamped design document, unix manual pages
201-
and some FAQ entries
202-
- significantly more powerful form handling allowing editing of multiple
203-
items and creation of multiple items
204-
- tracker templates can contain subdirectories and static files (e.g.
205-
images) and we may now distribute templates separately from Roundup.
206-
Template HTML files now have a .html extension too.
207-
- user registration is now a two-step process, with confirmation from the
208-
email address supplied in the registration form, and we also have a
209-
password reset feature for forgotten password / login
210-
- Windows Service mode for roundup-server when daemonification is
211-
attempted on Windows
212-
- lots of speed enhancements, making the web interface much more responsive
213-
- fixed issues with dumb email or web clients
214-
- email system handles more SMTP and POP features (TLS, APOP, ...)
215-
- lots more little tweaks and back-end work...
191+
If you're upgrading from an older version of Roundup you *must* follow
192+
the "Software Upgrade" guidelines given in the maintenance documentation.
193+
194+
No, really, this is a BETA and if you don't follow the upgrading steps,
195+
particularly the bit about BACKING UP YOUR DATA, I'm NOT GOING TO BE HELD
196+
RESPONSIBLE. This release is NOT FOR GENERAL USE.
197+
198+
I would *greatly* appreciate people giving this release a whirl with a
199+
copy of their existing setup. It's only through real-world testing of
200+
beta releases that we can ensure that older trackers will be OK.
201+
202+
This release introduces far too many features to list here. Some
203+
highlights:
204+
205+
- added postgresql backend (originally from sf patch 761740, many changes
206+
since)
207+
- RDBMS backends implement their session and one-time-key stores and
208+
full-text indexers; thus they are now performing their own locking
209+
internally
210+
- added new "actor" automatic property (indicates user who cause the last
211+
"activity")
212+
- all RDBMS backends have sensible data typed columns and indexes on
213+
several columns
214+
- we support confirming registration by replying to the email (sf bug
215+
763668)
216+
- all HTML templating methods now automatically check for permissions
217+
(either view or edit as appropriate), greatly simplifying templates
216218
''',
217219
author = "Richard Jones",
218220
author_email = "[email protected]",
219221
url = 'http://roundup.sourceforge.net/',
220222
download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577',
221223
packages = packagelist,
222224
classifiers = [
223-
'Development Status :: 5 - Production/Stable',
225+
'Development Status :: 4 - Beta',
224226
'Environment :: Console',
225227
'Environment :: Web Environment',
226228
'Intended Audience :: End Users/Desktop',

test/test_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def setUp(self):
159159
self.action = EditItemAction(self.client)
160160
self.now = Date('.')
161161
# round off for testing
162-
self.now.seconds = int(self.now.seconds)
162+
self.now.second = int(self.now.second)
163163

164164
def testLastUserActivity(self):
165165
self.assertEqual(self.action.lastUserActivity(), None)

0 commit comments

Comments
 (0)