Code

Started stuff off for the 0.2.5 release
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 3 Aug 2001 01:54:58 +0000 (01:54 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 3 Aug 2001 01:54:58 +0000 (01:54 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@200 57a73879-2fb5-44c3-a270-3262357dd7e2

BUILD.txt
CHANGES.txt
README.txt
roundup/templates/classic/htmlbase.py
setup.py

index 7527efa527bd9b581f6135bb94d63518569f4f98..5e5e9c4f268661b9a4231e25b6271b6e010cfdd5 100644 (file)
--- a/BUILD.txt
+++ b/BUILD.txt
@@ -40,5 +40,5 @@ python setup.py sdist --quiet
 
 2. Author
 =========
-richard@sourceforge.net
+richard@users.sourceforge.net
 
index 90f597a1382bc327eeb40ed721c5e8477d830d3e..938a160bc85f942175244e92d1a88e4017d7733f 100644 (file)
@@ -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.
index d923f0cc4a74e383bd433125a9eed3de60953c0f..e09fbd11dc91c818382d50268d4ca045f83ec735 100644 (file)
@@ -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
index ad502f8a5cf0f77f28c798dc900e7b903411d9da..cbebe45b9560cf9939824c94854817f5e4aa41a2 100644 (file)
@@ -71,7 +71,7 @@ issueDOTindex = """<!-- dollarId: issue.index,v 1.2 2001/07/29 04:07:37 richard
 </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">
index e7e698874b320b088132633baadf05b4992a2b12..9eb6e39fc43c57b75ccd5f810c6cd0d906dd0d22 100644 (file)
--- 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.
 #