# HG changeset patch # User Richard Jones # Date 1109560422 0 # Node ID fe8fe2f631a9ad771249439a8767194467ebb07f # Parent e330f751828edaee3a26287e4e1c2864d0caa829 added content to ZRoundup refresh.txt file [SF#1147622] fix invalid reference to csv.colon_separated correct URL to What's New in setup.py meta-data diff -r e330f751828e -r fe8fe2f631a9 CHANGES.txt --- a/CHANGES.txt Fri Feb 25 17:24:53 2005 +0000 +++ b/CHANGES.txt Mon Feb 28 03:13:42 2005 +0000 @@ -1,11 +1,16 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2005-??-?? 0.8.2 +2005-03-?? 0.8.2 Feature: - roundup-server automatically redirects from trackers list to the tracker page if there is only one tracker +Fixed: +- added content to ZRoundup refresh.txt file (sf bug 1147622) +- fix invalid reference to csv.colon_separated +- correct URL to What's New in setup.py meta-data + 2005-02-17 0.8.1 Fixed: diff -r e330f751828e -r fe8fe2f631a9 frontends/ZRoundup/refresh.txt --- a/frontends/ZRoundup/refresh.txt Fri Feb 25 17:24:53 2005 +0000 +++ b/frontends/ZRoundup/refresh.txt Mon Feb 28 03:13:42 2005 +0000 @@ -0,0 +1,2 @@ +The existence of this file enables the Zope product refresh option. +Read the Zope documentation for more info about product refresh. diff -r e330f751828e -r fe8fe2f631a9 roundup/admin.py --- a/roundup/admin.py Fri Feb 25 17:24:53 2005 +0000 +++ b/roundup/admin.py Mon Feb 28 03:13:42 2005 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: admin.py,v 1.85.2.2 2005-02-16 14:16:51 a1s Exp $ +# $Id: admin.py,v 1.85.2.3 2005-02-28 03:13:42 richard Exp $ '''Administration commands for maintaining Roundup trackers. ''' @@ -1120,7 +1120,7 @@ # ensure that the properties and the CSV file headings match f = open(os.path.join(dir, file), 'rU') - reader = csv.reader(f, csv.colon_separated) + reader = csv.reader(f, colon_separated) file_props = None maxid = 1 # loop through the file and create a node for each entry @@ -1138,7 +1138,7 @@ # import the journals f = open(os.path.join(args[0], classname + '-journals.csv'), 'rU') - reader = csv.reader(f, csv.colon_separated) + reader = csv.reader(f, colon_separated) cl.import_journals(reader) f.close() diff -r e330f751828e -r fe8fe2f631a9 setup.py --- a/setup.py Fri Feb 25 17:24:53 2005 +0000 +++ b/setup.py Mon Feb 28 03:13:42 2005 +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.77.2.2 2005-02-15 23:04:32 richard Exp $ +# $Id: setup.py,v 1.77.2.3 2005-02-28 03:13:41 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -326,7 +326,7 @@ This release introduces far too many features to list here so I've put together a What's New page: - http://roundup.sourceforge.net/doc-0.7/whatsnew-0.7.html + http://roundup.sourceforge.net/doc-0.8/whatsnew-0.8.html Some highlights: