Skip to content

Commit 1db5be1

Browse files
author
Richard Jones
committed
changes
1 parent 49812ac commit 1db5be1

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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-
2001-07-?? - 0.2.2
4+
2001-07-29 - 0.2.2
55
Features:
66
. Added implementation.txt to the doc directory. Contains implementation
77
notes specific to this implementations of Roundup.
@@ -22,6 +22,8 @@ Fixed:
2222
. New issue form handles lack of note better now.
2323
. HTML templating uses section-bar style for index group headers now.
2424
. Fixed problem in link display when Link value is None.
25+
. Form handling in cgi client wasn't propogating through the previous
26+
query elements.
2527

2628

2729
2001-07-28 - 0.2.1

README.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,6 @@ date:
9595
. date subtraction doesn't work correctly "if the dates cross leap years,
9696
phases of the moon, ..."
9797

98-
filter:
99-
. incorrectly embeds hidden fields for filters being displayed - and
100-
doesn't use the existing values for filters being displayed either.
101-
10298

10399
6. Author
104100
=========

setup.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env python
2-
# $Id: setup.py,v 1.6 2001-07-29 07:01:39 richard Exp $
2+
# $Id: setup.py,v 1.7 2001-07-29 08:37:58 richard Exp $
33

44
from distutils.core import setup, Extension
55
from distutils.util import get_platform
@@ -19,17 +19,20 @@
1919

2020

2121
setup ( name = "roundup",
22-
version = "0.2.1",
23-
description = "Roundup issue tracking system.",
24-
author = "Richard Jones",
25-
author_email = "[email protected]",
26-
url = 'http://sourceforge.net/projects/roundup/',
27-
packages = packagelist,
28-
scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
22+
version = "0.2.2",
23+
description = "Roundup issue tracking system.",
24+
author = "Richard Jones",
25+
author_email = "[email protected]",
26+
url = 'http://sourceforge.net/projects/roundup/',
27+
packages = packagelist,
28+
scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
2929
)
3030

3131
#
3232
# $Log: not supported by cvs2svn $
33+
# Revision 1.6 2001/07/29 07:01:39 richard
34+
# Added vim command to all source so that we don't get no steenkin' tabs :)
35+
#
3336
# Revision 1.5 2001/07/28 00:39:18 richard
3437
# changes for the 0.2.1 distribution build.
3538
#

0 commit comments

Comments
 (0)