Mercurial > p > roundup > code
changeset 194:30c3a37b699f
Started stuff off for the 0.2.5 release
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 03 Aug 2001 01:54:58 +0000 |
| parents | 241a0323aacb |
| children | 08648e797472 |
| files | BUILD.txt CHANGES.txt README.txt roundup/templates/classic/htmlbase.py setup.py |
| diffstat | 5 files changed, 19 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/BUILD.txt Fri Aug 03 01:28:33 2001 +0000 +++ b/BUILD.txt Fri Aug 03 01:54:58 2001 +0000 @@ -40,5 +40,5 @@ 2. Author ========= -richard@sourceforge.net +richard@users.sourceforge.net
--- a/CHANGES.txt Fri Aug 03 01:28:33 2001 +0000 +++ b/CHANGES.txt Fri Aug 03 01:54:58 2001 +0000 @@ -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.
--- a/README.txt Fri Aug 03 01:28:33 2001 +0000 +++ b/README.txt Fri Aug 03 01:54:58 2001 +0000 @@ -19,7 +19,8 @@ 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 @@ 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 @@ 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 @@ 6. Author ========= -richard@sourceforge.net +richard@users.sourceforge.net 7. Thanks
--- a/roundup/templates/classic/htmlbase.py Fri Aug 03 01:28:33 2001 +0000 +++ b/roundup/templates/classic/htmlbase.py Fri Aug 03 01:54:58 2001 +0000 @@ -71,7 +71,7 @@ </tr> """ -issueDOTitem = """<!-- dollarId: issue.item,v 1.3 2001/07/30 08:12:17 richard Exp dollar--> +issueDOTitem = """<!-- dollarId: issue.item,v 1.4 2001/08/03 01:19:43 richard Exp dollar--> <table border=0 cellspacing=0 cellpadding=2> <tr bgcolor="ffffea">
--- a/setup.py Fri Aug 03 01:28:33 2001 +0000 +++ b/setup.py Fri Aug 03 01:54:58 2001 +0000 @@ -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 @@ 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 @@ # # $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. #
