Skip to content

Commit 058912c

Browse files
author
Richard Jones
committed
release stuff
1 parent 9481708 commit 058912c

File tree

4 files changed

+31
-12
lines changed

4 files changed

+31
-12
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-
2006-??-?? 0.8.6
4+
2006-01-27 0.8.6
55
Fixed:
66
- french translation updated by Patrick Decat (sf patch 1397059)
77
- tighten up Date parsing to not allow 'M/D/YY' (or 'D/M/YY) (sf bug

doc/announcement.txt

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,26 @@ Roundup is a simple-to-use and -install issue-tracking system with
22
command-line, web and e-mail interfaces. It is based on the winning design
33
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
44

5-
This 0.8.5 release includes an Argentinian Spanish translation by Ramiro
6-
Morales and fixes some bugs:
7-
8-
Fixed:
9-
- Display of Multilinks where linked Class labelprop values are None
10-
- Fix references to the old * Registration Permissions
11-
- Fix missing merge of fix to sf bug 1177057
12-
- Fix RDBMS indexer indexing UTF-8 words that encode to > 30 chars
13-
- Handle invalidly-specified charsets in incoming email
5+
This 0.8.6 release fixes some bugs:
6+
7+
- french translation updated by Patrick Decat (sf patch 1397059)
8+
- tighten up Date parsing to not allow 'M/D/YY' (or 'D/M/YY) (sf bug
9+
1290550)
10+
- handle "schema" being reserved word in MySQL 5+ (sf bug 1397569)
11+
- fixed documentation of filter() in the case of multiple values in a
12+
String search (sf bug 1373396)
13+
- fix comma-separated ID filter spec in web requests (sf bug 1396278)
14+
- fix Date: header generation to be LOCALE-agnostic (sf bug 1352624)
15+
- fix admin doc description of roundup-server config file
16+
- fix redirect after instant registration (sf bug 1381676)
17+
- fix permission checks in cgi interface (sf bug 1289557)
18+
- fix permission check on RetireAction (sf bug 1407342)
19+
- timezone now applied to date for pretty-format (sf bug 1406861)
20+
- fix mangling of "_" in mail Subject class name (sf bug 1413852)
21+
- catch bad classname in URL (related to sf bug 1240541)
22+
- clean up digested_file_types (sf bug 1268303)
23+
- fix permission checks in mailgw (sf bug 1263655)
24+
- fix encoding of subject in generated error message (sf bug 1414465)
1425

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

roundup/backends/back_mysql.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,14 @@ def sql_commit(self):
501501
self.sql("SET AUTOCOMMIT=0")
502502
self.sql("START TRANSACTION")
503503

504+
def sql_close(self):
505+
logging.getLogger('hyperdb').info('close')
506+
try:
507+
self.conn.close()
508+
except MySQLdb.ProgrammingError, message:
509+
if str(message) != 'closing a closed connection':
510+
raise
511+
504512
class MysqlClass:
505513
# we're overriding this method for ONE missing bit of functionality.
506514
# look for "I can't believe it's not a toy RDBMS" below

roundup/cgi/actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: actions.py,v 1.40.2.10 2006-01-20 02:13:51 richard Exp $
1+
#$Id: actions.py,v 1.40.2.11 2006-01-27 05:56:58 richard Exp $
22

33
import re, cgi, StringIO, urllib, Cookie, time, random, csv
44

@@ -127,7 +127,7 @@ def handle(self):
127127
def hasPermission(self, permission, classname=Action._marker, itemid=None):
128128
if itemid is None:
129129
itemid = self.nodeid
130-
return self.hasPermission(permission, classname, itemid)
130+
return Action.hasPermission(self, permission, classname, itemid)
131131

132132
class SearchAction(Action):
133133
name = 'search'

0 commit comments

Comments
 (0)