Mercurial > p > roundup > code
changeset 2024:b939c3e78614 maint-0.6 0.6.5
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 15 Feb 2004 23:27:44 +0000 |
| parents | e68b3c9a3b78 |
| children | bf876bb5c19b |
| files | CHANGES.txt doc/announcement.txt setup.py |
| diffstat | 3 files changed, 34 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Sun Feb 15 23:16:20 2004 +0000 +++ b/CHANGES.txt Sun Feb 15 23:27:44 2004 +0000 @@ -14,7 +14,7 @@ - fixed IE double-submit when it shouldn't (sf bug 842254) - fixed check for JS pop()/push() to make more general (sf bug 877504) - fix re-enabling queries (sf bug 861940) -- use supplied content-type on file uploads before trying filename) +- use supplied content-type on file uploads before trying filename - fixed roundup-reminder script to use default schema (thanks Klamer Schutte) - fixed edit action / parsePropsFromForm to handle index-page edits better - safer logging from HTTP server (sf bug 896917)
--- a/doc/announcement.txt Sun Feb 15 23:16:20 2004 +0000 +++ b/doc/announcement.txt Sun Feb 15 23:27:44 2004 +0000 @@ -1,17 +1,25 @@ ================================================= -SC-Track Roundup 0.6.4 - an issue tracking system +SC-Track Roundup 0.6.5 - an issue tracking system ================================================= I'm pleased to announce this maintenance release of Roundup which fixes some bugs: -- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306) -- fixed date arithmetic to limit hours-per-day to 24, not 60 -- fixed activity displaying as future because of Date arithmetic fix in 0.6.3 - (sf bug 842027). -- hard-coded python2.3-ism (socket.timeout) fixed -- fix Windows service mode for roundup-server (sf bug 819890) -- fixed #white in cgitb (thanks Henrik Levkowetz) +- mailgw handles of subject-line errors better +- allow serving of FileClass file content when the class isn't called + "file" (eg. messages and other FileClasses) +- allowed negative ids (ie. new item markers) in HTMLClass.getItem, + allowing "db/file_with_status/-1/status/menu" to generate a useful + widget +- fixed content-type when templates are serving up xml (thanks Godefroid + Chapelle) +- fixed IE double-submit when it shouldn't (sf bug 842254) +- fixed check for JS pop()/push() to make more general (sf bug 877504) +- fix re-enabling queries (sf bug 861940) +- use supplied content-type on file uploads before trying filename +- fixed roundup-reminder script to use default schema (thanks Klamer Schutte) +- fixed edit action / parsePropsFromForm to handle index-page edits better +- safer logging from HTTP server (sf bug 896917) If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation.
--- a/setup.py Sun Feb 15 23:16:20 2004 +0000 +++ b/setup.py Sun Feb 15 23:27:44 2004 +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.2.5 2003-12-16 20:58:26 richard Exp $ +# $Id: setup.py,v 1.55.2.6 2004-02-15 23:27:44 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -188,14 +188,22 @@ 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. -The 0.6.4 release fixes some bugs: -- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306) -- fixed date arithmetic to limit hours-per-day to 24, not 60 -- fixed activity displaying as future because of Date arithmetic fix in 0.6.3 - (sf bug 842027). -- hard-coded python2.3-ism (socket.timeout) fixed -- fix Windows service mode for roundup-server (sf bug 819890) -- fixed #white in cgitb (thanks Henrik Levkowetz) +The 0.6.5 release fixes some bugs: +- mailgw handling of subject-line errors +- allow serving of FileClass file content when the class isn't called + "file" (eg. messages and other FileClasses) +- allowed negative ids (ie. new item markers) in HTMLClass.getItem, + allowing "db/file_with_status/-1/status/menu" to generate a useful + widget +- fixed content-type when templates are serving up xml (thanks Godefroid + Chapelle) +- fixed IE double-submit when it shouldn't (sf bug 842254) +- fixed check for JS pop()/push() to make more general (sf bug 877504) +- fix re-enabling queries (sf bug 861940) +- use supplied content-type on file uploads before trying filename +- fixed roundup-reminder script to use default schema (thanks Klamer Schutte) +- fixed edit action / parsePropsFromForm to handle index-page edits better +- safer logging from HTTP server (sf bug 896917) ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net",
