Mercurial > p > roundup > code
comparison setup.py @ 3400:7a3e791b2b2b maint-0.8
fix Mutlilink display
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 27 Jul 2005 22:54:12 +0000 |
| parents | 5e45f3a553d8 |
| children | c75dd71a7963 |
comparison
equal
deleted
inserted
replaced
| 3398:54f98b078e44 | 3400:7a3e791b2b2b |
|---|---|
| 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 18 # | 18 # |
| 19 # $Id: setup.py,v 1.77.2.9 2005-05-02 06:13:10 richard Exp $ | 19 # $Id: setup.py,v 1.77.2.10 2005-07-27 22:54:10 richard Exp $ |
| 20 | 20 |
| 21 from distutils.core import setup, Extension | 21 from distutils.core import setup, Extension |
| 22 from distutils.util import get_platform | 22 from distutils.util import get_platform |
| 23 from distutils.file_util import write_file | 23 from distutils.file_util import write_file |
| 24 from distutils.command.bdist_rpm import bdist_rpm | 24 from distutils.command.bdist_rpm import bdist_rpm |
| 346 'long_description': | 346 'long_description': |
| 347 '''Roundup is a simple-to-use and -install issue-tracking system with | 347 '''Roundup is a simple-to-use and -install issue-tracking system with |
| 348 command-line, web and e-mail interfaces. It is based on the winning design | 348 command-line, web and e-mail interfaces. It is based on the winning design |
| 349 from Ka-Ping Yee in the Software Carpentry "Track" design competition. | 349 from Ka-Ping Yee in the Software Carpentry "Track" design competition. |
| 350 | 350 |
| 351 | 351 This 0.8.4 release fixes some bugs: |
| 352 This 0.8.3 release adds one feature and fixes some bugs: | |
| 353 | |
| 354 Feature: | |
| 355 | |
| 356 - chinese translation by limodou | |
| 357 | 352 |
| 358 Fixed: | 353 Fixed: |
| 359 | 354 |
| 360 - fix reference to The Zope Book in Roundup FAQ | 355 - extra CRs in CSV export files on Windows platform (sf bug 1195742) |
| 361 - disabled file logging in Roundup test suite (sf bug 1155649) | 356 - activity RDBMS columns were being reported in changes |
| 362 - return original string if message issue xref isn't valid | 357 - fix name collision in roundup.cgi script (sf bug 1203795) |
| 363 - fix nosyreaction.py to stop it setting the nosy list unnecessarily | 358 - fix handling of invalid interval input |
| 364 (see doc/upgrading.txt for how to fix in your trackers) | 359 - search locale files relative ro roundup installation path (sf bug 1219689) |
| 365 - after logout, always display tracker home page | 360 - use translation for boolean property rendering (sf bug 1225152) |
| 366 - web forms don't create new items if no item properties are set from UI | 361 - enabled disabling of REMOTE_USER for when it's not a valid username (sf |
| 367 - item creation failed if multilink fields had invalid entries (sf bug | 362 bug 1190187) |
| 368 1177602) | 363 - fix invocation of hasPermission from templating code (sf bug 1224172) |
| 369 - fix bdist_rpm (sf bug 1164328) | 364 - have 'roundup-admin security' display property restrictions (sf bug |
| 370 - fix checking of "Email Access" for Anonymous email registration (sf bug | 365 1222135) |
| 371 1177057) | 366 - fixed templating menu() sort_on handling (sf bug 1221936) |
| 372 - disable "Email Access" for Anonymous by default to stop spam regsitering | 367 - allow specification of pagesize, sorting and filtering in "classhelp" |
| 373 users on public trackers | 368 popups (sf bug 1211800) |
| 374 - send errors in the web interface to a logfile by default. Use the | 369 - handle dropped properies in rdbms/metakit journal export (sf bug 1203569) |
| 375 "debug" multiprocess mode (roundup-server) or the DEBUG_TO_CLIENT var | 370 - handle missing Subject lines better (sf bug 1198729) |
| 376 (roundup.cgi) to have the errors appear in your browser | 371 - sort/group by missing values correctly (sf bugs 1198623, 1176897) |
| 377 - fix setgid typo (sf bug 1171346) | 372 - discard, don't bounce messages to the mailgw when the messages's sender |
| 378 - fix faulty find_template filename facility (sf bug 1163629) | 373 is invalid (ie. when we try to bounce, we get a 550 "unknown user |
| 379 - fix roundup-admin "export" so it creates the target dir if needed | 374 account" response from the SMTP server) (sf bug 1190906) |
| 380 - "fix" roundup-admin "import" to not use "universal newline support" since | 375 - removed debugging code from cgi/actions.py |
| 381 the csv module appears to have its own ideas about such things (sf bug | 376 - refactored hyperdb.rawToHyperdb, allowing a number of improvements |
| 382 1163890) | 377 (thanks Ralf Schlatterbeck) |
| 383 - fix installation docs referring to old-style configuration variables | 378 - don't try to set a timeout for IMAPS (thanks Paul Jimenez) |
| 379 - present Reject exception messages to web users (sf bug 1237685) | |
| 384 | 380 |
| 385 If you're upgrading from an older version of Roundup you *must* follow | 381 If you're upgrading from an older version of Roundup you *must* follow |
| 386 the "Software Upgrade" guidelines given in the maintenance documentation. | 382 the "Software Upgrade" guidelines given in the maintenance documentation. |
| 387 ''', | 383 ''', |
| 388 'author': "Richard Jones", | 384 'author': "Richard Jones", |
