Skip to content

Commit dbd38fc

Browse files
author
Richard Jones
committed
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
1 parent 4a99d19 commit dbd38fc

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGES.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2005-??-?? 0.8.2
4+
2005-03-?? 0.8.2
55
Feature:
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

1015
2005-02-17 0.8.1
1116
Fixed:

frontends/ZRoundup/refresh.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
The existence of this file enables the Zope product refresh option.
2+
Read the Zope documentation for more info about product refresh.

roundup/admin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -326,7 +326,7 @@ def main():
326326
This release introduces far too many features to list here so I've put
327327
together 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
331331
Some highlights:
332332

0 commit comments

Comments
 (0)