File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 11This file contains the changes to the Roundup system over time. The entries
22are given with the most recent entry first.
33
4- 2005-?? -?? 0.8.2
4+ 2005-03 -?? 0.8.2
55Feature:
66- roundup-server automatically redirects from trackers list
77 to the tracker page if there is only one tracker
88
9+ Fixed:
10+ - added content to ZRoundup refresh.txt file (sf bug 1147622)
11+ - fix invalid reference to csv.colon_separated
12+ - correct URL to What's New in setup.py meta-data
13+
914
10152005-02-17 0.8.1
1116Fixed:
Original file line number Diff line number Diff line change 1+ The existence of this file enables the Zope product refresh option.
2+ Read the Zope documentation for more info about product refresh.
Original file line number Diff line number Diff line change 1616# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818#
19- # $Id: admin.py,v 1.85.2.2 2005-02-16 14:16:51 a1s Exp $
19+ # $Id: admin.py,v 1.85.2.3 2005-02-28 03:13:42 richard Exp $
2020
2121'''Administration commands for maintaining Roundup trackers.
2222'''
@@ -1120,7 +1120,7 @@ class colon_separated(csv.excel):
11201120
11211121 # ensure that the properties and the CSV file headings match
11221122 f = open (os .path .join (dir , file ), 'rU' )
1123- reader = csv .reader (f , csv . colon_separated )
1123+ reader = csv .reader (f , colon_separated )
11241124 file_props = None
11251125 maxid = 1
11261126 # loop through the file and create a node for each entry
@@ -1138,7 +1138,7 @@ class colon_separated(csv.excel):
11381138
11391139 # import the journals
11401140 f = open (os .path .join (args [0 ], classname + '-journals.csv' ), 'rU' )
1141- reader = csv .reader (f , csv . colon_separated )
1141+ reader = csv .reader (f , colon_separated )
11421142 cl .import_journals (reader )
11431143 f .close ()
11441144
Original file line number Diff line number Diff line change 1616# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818#
19- # $Id: setup.py,v 1.77.2.2 2005-02-15 23:04:32 richard Exp $
19+ # $Id: setup.py,v 1.77.2.3 2005-02-28 03:13:41 richard Exp $
2020
2121from distutils .core import setup , Extension
2222from distutils .util import get_platform
@@ -326,7 +326,7 @@ def main():
326326This release introduces far too many features to list here so I've put
327327together a What's New page:
328328
329- http://roundup.sourceforge.net/doc-0.7 /whatsnew-0.7 .html
329+ http://roundup.sourceforge.net/doc-0.8 /whatsnew-0.8 .html
330330
331331Some highlights:
332332
You can’t perform that action at this time.
0 commit comments