Skip to content

Commit 1c62b6d

Browse files
author
Richard Jones
committed
Started stuff off for the 0.2.5 release
1 parent 294e4ce commit 1c62b6d

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

BUILD.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ python setup.py sdist --quiet
4040

4141
2. Author
4242
=========
43-
43+
richard@users.sourceforge.net
4444

CHANGES.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
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-08-?? - 0.2.4
4+
2001-08-?? - 0.2.5
5+
Features:
6+
7+
Fixed:
8+
9+
10+
2001-08-03 - 0.2.4
511
Features:
612
. Added ability for cgi newblah forms to indicate that the new node
713
should be linked somewhere.

README.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ For installation notes, please see the file INSTALL.TXT
1919
3. Usage
2020
========
2121
The system is designed to accessed through the command-line, e-mail or web
22-
interface.
22+
interface. Roundup has some useful doucmentation in its docstrings, so
23+
"pydoc roundup" will give useful information.
2324

2425
3.1 Command-line
2526
----------------
@@ -35,6 +36,7 @@ database manipulations such as:
3536
3.2 E-mail
3637
----------
3738
See the docstring at the start of the roundup/mailgw.py source file.
39+
Use "pydoc roundup.mailgw".
3840

3941

4042
3.3 Web
@@ -76,6 +78,7 @@ hyperdb:
7678
roundupdb:
7779
. split the file storage into multiple dirs?
7880
roundup-mailgw:
81+
. do the "sectioning" stuff properly (ie. as it's documented)
7982
. errors as attachments
8083
. snip signatures?
8184
roundup-server:
@@ -94,7 +97,7 @@ date:
9497

9598
6. Author
9699
=========
97-
100+
richard@users.sourceforge.net
98101

99102

100103
7. Thanks

roundup/templates/classic/htmlbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</tr>
7272
"""
7373

74-
issueDOTitem = """<!-- dollarId: issue.item,v 1.3 2001/07/30 08:12:17 richard Exp dollar-->
74+
issueDOTitem = """<!-- dollarId: issue.item,v 1.4 2001/08/03 01:19:43 richard Exp dollar-->
7575
<table border=0 cellspacing=0 cellpadding=2>
7676
7777
<tr bgcolor="ffffea">

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env python
2-
# $Id: setup.py,v 1.10 2001-07-30 07:17:44 richard Exp $
2+
# $Id: setup.py,v 1.11 2001-08-03 01:54:58 richard Exp $
33

44
from distutils.core import setup, Extension
55
from distutils.util import get_platform
@@ -25,7 +25,7 @@
2525

2626

2727
setup ( name = "roundup",
28-
version = "0.2.4",
28+
version = "0.2.5",
2929
description = "Roundup issue tracking system.",
3030
author = "Richard Jones",
3131
author_email = "[email protected]",
@@ -36,6 +36,9 @@
3636

3737
#
3838
# $Log: not supported by cvs2svn $
39+
# Revision 1.10 2001/07/30 07:17:44 richard
40+
# Just making sure we've got the right version in there for development.
41+
#
3942
# Revision 1.9 2001/07/29 23:34:26 richard
4043
# Added unit tests so they're run whenever we package/install/whatever.
4144
#

0 commit comments

Comments
 (0)