From: richard Date: Fri, 3 Aug 2001 01:54:58 +0000 (+0000) Subject: Started stuff off for the 0.2.5 release X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7847c1e6e61b076fb8e33115b4c206b6c8fd1292;p=roundup.git Started stuff off for the 0.2.5 release git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@200 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/BUILD.txt b/BUILD.txt index 7527efa..5e5e9c4 100644 --- a/BUILD.txt +++ b/BUILD.txt @@ -40,5 +40,5 @@ python setup.py sdist --quiet 2. Author ========= -richard@sourceforge.net +richard@users.sourceforge.net diff --git a/CHANGES.txt b/CHANGES.txt index 90f597a..938a160 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,7 +1,13 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2001-08-?? - 0.2.4 +2001-08-?? - 0.2.5 +Features: + +Fixed: + + +2001-08-03 - 0.2.4 Features: . Added ability for cgi newblah forms to indicate that the new node should be linked somewhere. diff --git a/README.txt b/README.txt index d923f0c..e09fbd1 100644 --- a/README.txt +++ b/README.txt @@ -19,7 +19,8 @@ For installation notes, please see the file INSTALL.TXT 3. Usage ======== The system is designed to accessed through the command-line, e-mail or web -interface. +interface. Roundup has some useful doucmentation in its docstrings, so +"pydoc roundup" will give useful information. 3.1 Command-line ---------------- @@ -35,6 +36,7 @@ database manipulations such as: 3.2 E-mail ---------- See the docstring at the start of the roundup/mailgw.py source file. +Use "pydoc roundup.mailgw". 3.3 Web @@ -76,6 +78,7 @@ hyperdb: roundupdb: . split the file storage into multiple dirs? roundup-mailgw: + . do the "sectioning" stuff properly (ie. as it's documented) . errors as attachments . snip signatures? roundup-server: @@ -94,7 +97,7 @@ date: 6. Author ========= -richard@sourceforge.net +richard@users.sourceforge.net 7. Thanks diff --git a/roundup/templates/classic/htmlbase.py b/roundup/templates/classic/htmlbase.py index ad502f8..cbebe45 100644 --- a/roundup/templates/classic/htmlbase.py +++ b/roundup/templates/classic/htmlbase.py @@ -71,7 +71,7 @@ issueDOTindex = """ +issueDOTitem = """ diff --git a/setup.py b/setup.py index e7e6988..9eb6e39 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #! /usr/bin/env python -# $Id: setup.py,v 1.10 2001-07-30 07:17:44 richard Exp $ +# $Id: setup.py,v 1.11 2001-08-03 01:54:58 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -25,7 +25,7 @@ for t in templates: setup ( name = "roundup", - version = "0.2.4", + version = "0.2.5", description = "Roundup issue tracking system.", author = "Richard Jones", author_email = "richard@sourceforge.net", @@ -36,6 +36,9 @@ setup ( name = "roundup", # # $Log: not supported by cvs2svn $ +# Revision 1.10 2001/07/30 07:17:44 richard +# Just making sure we've got the right version in there for development. +# # Revision 1.9 2001/07/29 23:34:26 richard # Added unit tests so they're run whenever we package/install/whatever. #