|
16 | 16 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
17 | 17 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
18 | 18 | # |
19 | | -# $Id: setup.py,v 1.89 2006-03-03 02:29:09 richard Exp $ |
| 19 | +# $Id: setup.py,v 1.90 2006-10-04 01:14:37 richard Exp $ |
20 | 20 |
|
21 | 21 | from distutils.core import setup, Extension |
22 | 22 | from distutils.util import get_platform |
@@ -351,29 +351,31 @@ def main(): |
351 | 351 | If you're upgrading from an older version of Roundup you *must* follow |
352 | 352 | the "Software Upgrade" guidelines given in the maintenance documentation. |
353 | 353 |
|
354 | | -Fixed: |
355 | | -
|
356 | | -- failure with browsers not sending "Accept-Language" header |
357 | | - (sf bugs 1429646 and 1435335) |
358 | | -- translate class name in "required property not supplied" error message |
359 | | - (sf bug 1429669) |
360 | | -- error in link property lookups with numeric-alike key values (sf bug 1424550) |
361 | | -- ignore UTF-8 BOM in .po files |
362 | | -- add permission filter to menu() implementations (sf bug 1431188) |
363 | | -- lithuanian translation updated by Nerijus Baliunas (sf patch 1411175) |
364 | | -- incompatibility with python2.3 in the mailer module (sf bug 1432602) |
365 | | -- typo in SMTP TLS option name: "MAIL_TLS_CERFILE" (sf bug 1435452) |
366 | | -- email obfuscation code in html templating is more robust |
367 | | -- blank-title subject line handling (sf bug 1442121) |
368 | | -- "All users may only view and edit issues, files and messages they |
369 | | - create" example in docs (sf bug 1439086) |
370 | | -- saving of queries (sf bug 1436169) |
371 | | -- "Adding a new constrained field to the classic schema" example in docs |
372 | | - (sf bug 1433118) |
373 | | -- security check in mailgw (sf bug 1442145) |
374 | | -- "clear this message" (sf bug 1429367) |
375 | | -- escape all uses of "schema" in mysql backend (sf bug 1397569) |
376 | | -- date spec wasn't allowing week intervals |
| 354 | +New Features in this release: |
| 355 | +
|
| 356 | +- supports Python 2.5, including the sqlite3 module |
| 357 | +- full timezone support (sf patch 1465296) |
| 358 | +- handle connection loss when responding to web requests |
| 359 | +- match incoming mail In-Reply-To against existing messages when no issue |
| 360 | + id is specified in the Subject |
| 361 | +- added StringHTMLProperty wrapped() method to wrap long lines in issue |
| 362 | + display |
| 363 | +- include the popcal in Date field editing and search fields by default |
| 364 | +- @required in forms may now specify properties of linked items (sf patch |
| 365 | + 1507093) |
| 366 | +- update for latest version of pysqlite (sf bug 1487098; patch 1534227) |
| 367 | +- update for latest version of psycopg2 (sf patch 1429391) |
| 368 | +- new "exporttables" command in roundup-admin (sf bug 1533791) |
| 369 | +- roundup-admin "export" may specify classes to exclude (sf bug 1533791) |
| 370 | +- sorting and grouping by multiple properties is now supported by the |
| 371 | + backends *and* the classic template. |
| 372 | +- sorting, grouping, and searching by transitive properties (e.g., |
| 373 | + messages.author.supervisor) is now supported in all backends |
| 374 | +- added filter_sql to SQL backends which takes an arbitrary SQL statement |
| 375 | + and returns a list of item ids |
| 376 | +
|
| 377 | +There was also a lot of bugfixes - see the bundled CHANGES.txt file for the |
| 378 | +list. |
377 | 379 | ''', |
378 | 380 | 'author': "Richard Jones", |
379 | 381 | 'author_email': "[email protected]", |
|
0 commit comments