Mercurial > p > roundup > code
changeset 3521:d1cda972f5d2 maint-0.8 0.8.6
release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 27 Jan 2006 05:56:58 +0000 |
| parents | 5603e08ac6fc |
| children | 2de4cbd8f76f |
| files | CHANGES.txt doc/announcement.txt roundup/backends/back_mysql.py roundup/cgi/actions.py |
| diffstat | 4 files changed, 30 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Fri Jan 27 02:42:05 2006 +0000 +++ b/CHANGES.txt Fri Jan 27 05:56:58 2006 +0000 @@ -1,7 +1,7 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2006-??-?? 0.8.6 +2006-01-27 0.8.6 Fixed: - french translation updated by Patrick Decat (sf patch 1397059) - tighten up Date parsing to not allow 'M/D/YY' (or 'D/M/YY) (sf bug
--- a/doc/announcement.txt Fri Jan 27 02:42:05 2006 +0000 +++ b/doc/announcement.txt Fri Jan 27 05:56:58 2006 +0000 @@ -2,15 +2,26 @@ command-line, web and e-mail interfaces. It is based on the winning design from Ka-Ping Yee in the Software Carpentry "Track" design competition. -This 0.8.5 release includes an Argentinian Spanish translation by Ramiro -Morales and fixes some bugs: +This 0.8.6 release fixes some bugs: -Fixed: -- Display of Multilinks where linked Class labelprop values are None -- Fix references to the old * Registration Permissions -- Fix missing merge of fix to sf bug 1177057 -- Fix RDBMS indexer indexing UTF-8 words that encode to > 30 chars -- Handle invalidly-specified charsets in incoming email +- french translation updated by Patrick Decat (sf patch 1397059) +- tighten up Date parsing to not allow 'M/D/YY' (or 'D/M/YY) (sf bug + 1290550) +- handle "schema" being reserved word in MySQL 5+ (sf bug 1397569) +- fixed documentation of filter() in the case of multiple values in a + String search (sf bug 1373396) +- fix comma-separated ID filter spec in web requests (sf bug 1396278) +- fix Date: header generation to be LOCALE-agnostic (sf bug 1352624) +- fix admin doc description of roundup-server config file +- fix redirect after instant registration (sf bug 1381676) +- fix permission checks in cgi interface (sf bug 1289557) +- fix permission check on RetireAction (sf bug 1407342) +- timezone now applied to date for pretty-format (sf bug 1406861) +- fix mangling of "_" in mail Subject class name (sf bug 1413852) +- catch bad classname in URL (related to sf bug 1240541) +- clean up digested_file_types (sf bug 1268303) +- fix permission checks in mailgw (sf bug 1263655) +- fix encoding of subject in generated error message (sf bug 1414465) If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation.
--- a/roundup/backends/back_mysql.py Fri Jan 27 02:42:05 2006 +0000 +++ b/roundup/backends/back_mysql.py Fri Jan 27 05:56:58 2006 +0000 @@ -501,6 +501,14 @@ self.sql("SET AUTOCOMMIT=0") self.sql("START TRANSACTION") + def sql_close(self): + logging.getLogger('hyperdb').info('close') + try: + self.conn.close() + except MySQLdb.ProgrammingError, message: + if str(message) != 'closing a closed connection': + raise + class MysqlClass: # we're overriding this method for ONE missing bit of functionality. # look for "I can't believe it's not a toy RDBMS" below
--- a/roundup/cgi/actions.py Fri Jan 27 02:42:05 2006 +0000 +++ b/roundup/cgi/actions.py Fri Jan 27 05:56:58 2006 +0000 @@ -1,4 +1,4 @@ -#$Id: actions.py,v 1.40.2.10 2006-01-20 02:13:51 richard Exp $ +#$Id: actions.py,v 1.40.2.11 2006-01-27 05:56:58 richard Exp $ import re, cgi, StringIO, urllib, Cookie, time, random, csv @@ -127,7 +127,7 @@ def hasPermission(self, permission, classname=Action._marker, itemid=None): if itemid is None: itemid = self.nodeid - return self.hasPermission(permission, classname, itemid) + return Action.hasPermission(self, permission, classname, itemid) class SearchAction(Action): name = 'search'
