Code

changes
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 29 Jul 2001 08:37:58 +0000 (08:37 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 29 Jul 2001 08:37:58 +0000 (08:37 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@135 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
README.txt
setup.py

index 6c9e34e60a590f3420129379148723e883489fb5..0d657e858d4401e304f2b77308eac84bab0bbf0d 100644 (file)
@@ -1,7 +1,7 @@
 This file contains the changes to the Roundup system over time. The entries
 are given with the most recent entry first.
 
-2001-07-?? - 0.2.2
+2001-07-29 - 0.2.2
 Features:
  . Added implementation.txt to the doc directory. Contains implementation
    notes specific to this implementations of Roundup.
@@ -22,6 +22,8 @@ Fixed:
  . New issue form handles lack of note better now.
  . HTML templating uses section-bar style for index group headers now.
  . Fixed problem in link display when Link value is None.
+ . Form handling in cgi client wasn't propogating through the previous
+   query elements.
 
 
 2001-07-28 - 0.2.1
index c079d25a166fa920d5ce48de7c187621262fc26a..c42e0204c8fd84bbebbb5f31b49e930d2da1e640 100644 (file)
@@ -95,10 +95,6 @@ date:
   . date subtraction doesn't work correctly "if the dates cross leap years,
     phases of the moon, ..."
 
-filter:
-  . incorrectly embeds hidden fields for filters being displayed - and
-    doesn't use the existing values for filters being displayed either.
-
 
 6. Author
 =========
index 63a0d926a71de931578dd3b9b84673425c8b810a..4b3f9149cf7642c20894fccba3c882c1eae52d07 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
 #! /usr/bin/env python
-# $Id: setup.py,v 1.6 2001-07-29 07:01:39 richard Exp $
+# $Id: setup.py,v 1.7 2001-07-29 08:37:58 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -19,17 +19,20 @@ for t in templates:
 
 
 setup ( name = "roundup", 
-       version = "0.2.1",
-       description = "Roundup issue tracking system.",
-       author = "Richard Jones",
-       author_email = "richard@sourceforge.net",
-       url = 'http://sourceforge.net/projects/roundup/',
-       packages = packagelist,
-    scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
+        version = "0.2.2",
+        description = "Roundup issue tracking system.",
+        author = "Richard Jones",
+        author_email = "richard@sourceforge.net",
+        url = 'http://sourceforge.net/projects/roundup/',
+        packages = packagelist,
+        scripts = ['roundup-admin', 'roundup-mailgw', 'roundup-server']
 )
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.6  2001/07/29 07:01:39  richard
+# Added vim command to all source so that we don't get no steenkin' tabs :)
+#
 # Revision 1.5  2001/07/28 00:39:18  richard
 # changes for the 0.2.1 distribution build.
 #