Skip to content

Commit 8aabed5

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 25e097f commit 8aabed5

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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-
2004-??-?? 0.6.7
4+
2004-03-01 0.6.7
55
Fixed:
6+
- be more backward-compatible when asking for EMAIL_CHARSET
67
- made error on create consistent with edit when user enters invalid data
78
for Multilink and Link form fields (sf bug 904072)
89
- made errors from bad input in the quick "Show issue:" form more

doc/announcement.txt

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
I'm pleased to announce Roundup 0.6.6, a maintenance release which fixes
2-
some bugs (notably registration was broken in 0.6.5, and is fixed now):
3-
4-
- fixed registration (sf bug 903283)
5-
- don't insert spaces into designators, it just confuses users (sf bug
6-
898087)
7-
- Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
8-
- fixed bug in args to new DateHTMLProperty in the local() method (sf bug
9-
901444)
10-
- also changed rego to not use a 302 during confirmation, as this seems to
11-
confuse some email clients or browsers
1+
I'm pleased to announce Roundup 0.6.7, a maintenance release which fixes
2+
some bugs (most notably making the EMAIL_CHARSET config variable backwards-
3+
compatible):
4+
5+
- be more backward-compatible when asking for EMAIL_CHARSET
6+
- made error on create consistent with edit when user enters invalid data
7+
for Multilink and Link form fields (sf bug 904072)
8+
- made errors from bad input in the quick "Show issue:" form more
9+
user-friendly (sf bug 904064)
10+
- don't add a query to a user's list if it's already there
11+
- nicer invalid property error in HTML templating
12+
- use EMAIL_CHARSET for message body too (still sf bug 900046)
1213

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

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.6 2004-02-24 23:41:32 richard Exp $
18+
# $Id: __init__.py,v 1.25.2.7 2004-03-01 00:07:27 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.6'
70+
__version__ = '0.6.7'
7171

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

roundup/cgi/templating.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def classes(self):
247247
l.sort()
248248
return [HTMLClass(self._client, cn) for cn in l]
249249

250-
def lookupIds(db, prop, ids, fail_ok=False, num_re=re.compile('-?\d+')):
250+
def lookupIds(db, prop, ids, fail_ok=0, num_re=re.compile('-?\d+')):
251251
''' "fail_ok" should be specified if we wish to pass through bad values
252252
(most likely form values that we wish to represent back to the user)
253253
'''
@@ -323,12 +323,11 @@ def __getitem__(self, item):
323323
if form.has_key(item):
324324
if isinstance(prop, hyperdb.Multilink):
325325
value = lookupIds(self._db, prop,
326-
handleListCGIValue(form[item]), fail_ok=True)
326+
handleListCGIValue(form[item]), fail_ok=1)
327327
elif isinstance(prop, hyperdb.Link):
328328
value = form[item].value.strip()
329329
if value:
330-
value = lookupIds(self._db, prop, [value],
331-
fail_ok=True)[0]
330+
value = lookupIds(self._db, prop, [value], fail_ok=1)[0]
332331
else:
333332
value = None
334333
else:

setup.py

Lines changed: 10 additions & 10 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.7 2004-02-24 23:41:30 richard Exp $
19+
# $Id: setup.py,v 1.55.2.8 2004-03-01 00:07:27 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -188,15 +188,15 @@ 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.6 release fixes some bugs:
192-
- fixed registration (sf bug 903283)
193-
- don't insert spaces into designators, it just confuses users (sf bug
194-
898087)
195-
- Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
196-
- fixed bug in args to new DateHTMLProperty in the local() method (sf bug
197-
901444)
198-
- also changed rego to not use a 302 during confirmation, as this seems to
199-
confuse some email clients or browsers
191+
The 0.6.7 release fixes some bugs:
192+
- be more backward-compatible when asking for EMAIL_CHARSET
193+
- made error on create consistent with edit when user enters invalid data
194+
for Multilink and Link form fields (sf bug 904072)
195+
- made errors from bad input in the quick "Show issue:" form more
196+
user-friendly (sf bug 904064)
197+
- don't add a query to a user's list if it's already there
198+
- nicer invalid property error in HTML templating
199+
- use EMAIL_CHARSET for message body too (still sf bug 900046)
200200
''',
201201
author = "Richard Jones",
202202
author_email = "[email protected]",

0 commit comments

Comments
 (0)