Mercurial > p > roundup > code
changeset 1779:ecfb6ccf20b0 maint-0.6
release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 31 Aug 2003 04:31:03 +0000 |
| parents | d85cb1ad9bc9 |
| children | c4968040459e |
| files | doc/announcement.txt doc/customizing.txt roundup/__init__.py setup.py |
| diffstat | 4 files changed, 29 insertions(+), 41 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/announcement.txt Sun Aug 31 03:44:27 2003 +0000 +++ b/doc/announcement.txt Sun Aug 31 04:31:03 2003 +0000 @@ -1,47 +1,38 @@ ================================================= -SC-Track Roundup 0.6.0 - an issue tracking system +SC-Track Roundup 0.6.1 - an issue tracking system ================================================= -I'm pleased to announce the latest feature-packed release of Roundup. See -below for a list of some of the goodies included in this release. +I'm pleased to announce this maintenance release of Roundup. This +release introduces python 2.3 compatibility. My thanks to Paul Dubois +for contributing the csv module compatibility layer. If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. -Unfortunately, the Zope frontend for Roundup is currently broken. I hope to -revive it in a future 0.6 bugfix release. - -The gadfly backend has now been removed, having served its purpose as a -template for other RDBMS implementations. It is replaced by the sqlite and -mysql backends. +Unfortunately, the Zope frontend for Roundup is currently broken. I hope +to revive it in a future 0.6 maintenance release. Roundup requires python 2.1.3 or later for correct operation. -The 0.6 release has lots of new goodies including: +This release fixes some bugs: -- new instant-gratification Demo Mode ("python demo.py" :) -- added mysql backend (see doc/mysql.txt for details) -- web interface cleanups including nicer history display, nicer index - navigation and nicer popup list windows -- searching of date ranges -- better international support, including utf-8 email handling and ability - to display localized dates in web interface. -- more documentation including revamped design document, unix manual pages - and some FAQ entries -- significantly more powerful form handling allowing editing of multiple - items and creation of multiple items -- tracker templates can contain subdirectories and static files (e.g. - images) and we may now distribute templates separately from Roundup. - Template HTML files now have a .html extension too. -- user registration is now a two-step process, with confirmation from the - email address supplied in the registration form, and we also have a - password reset feature for forgotten password / login -- Windows Service mode for roundup-server when daemonification is - attempted on Windows -- lots of speed enhancements, making the web interface much more responsive -- fixed issues with dumb email or web clients -- email system handles more SMTP and POP features (TLS, APOP, ...) -- lots more little tweaks and back-end work... +- Add note about installing cgi-bin with a different interpreter +- Importing wasn't setting None values explicitly when it should have been +- Fixed import warning regarding 0xffff0000 literal, finally, really this + time. Checked on win2k. (sf bug 786711) +- Fix CGI editCSV action to handle metakit's integer itemids +- Apply fix for "remove" links from Klamer Schutte +- Added permission check on "remove" link while I was there.. +- Applied CSV fix for python2.3 (sf bug 790363) +- Fixed form padding in LHS menu (sf bug 790502) +- Fixed upgrading docs for timezones (sf bug 790498) +- Set the content type on page templates (can have XML templates now) +- Various cosmetic fixes (thanks James Kew for being persistent :) +- Applied patch 739314 (sorry John!) + +To give Roundup a try, just download (see below), unpack and run:: + + python demo.py Source and documentation is available at the website: http://roundup.sourceforge.net/
--- a/doc/customizing.txt Sun Aug 31 03:44:27 2003 +0000 +++ b/doc/customizing.txt Sun Aug 31 04:31:03 2003 +0000 @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.93.2.2 $ +:Version: $Revision: 1.93.2.3 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -1483,7 +1483,7 @@ There are several methods available on these wrapper objects: =========== ================================================================ -Method Description +Method Description =========== ================================================================ plain render a "plain" representation of the property. This method may take two arguments:
--- a/roundup/__init__.py Sun Aug 31 03:44:27 2003 +0000 +++ b/roundup/__init__.py Sun Aug 31 04:31:03 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.25 2003-08-18 00:21:58 richard Exp $ +# $Id: __init__.py,v 1.25.2.1 2003-08-31 04:31:03 richard Exp $ ''' Roundup - issue tracking for knowledge workers. @@ -67,6 +67,6 @@ much prettier cake :) ''' -__version__ = '0.6.0' +__version__ = '0.6.1' # vim: set filetype=python ts=4 sw=4 et si
--- a/setup.py Sun Aug 31 03:44:27 2003 +0000 +++ b/setup.py Sun Aug 31 04:31:03 2003 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.55 2003-06-22 00:28:56 richard Exp $ +# $Id: setup.py,v 1.55.2.1 2003-08-31 04:31:00 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -186,9 +186,6 @@ 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 release has a couple of bufixes mostly important to Windows users, -making it possible for them to install new trackers! - The 0.6 release has lots of new goodies including: - new instant-gratification Demo Mode ("python demo.py" :)
