summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f26f4e1)
raw | patch | inline | side by side (parent: f26f4e1)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 17 Jun 2002 23:14:44 +0000 (23:14 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 17 Jun 2002 23:14:44 +0000 (23:14 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@786 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/__init__.py | patch | blob | history | |
roundup/admin.py | patch | blob | history | |
setup.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 985df81a77c9a2fc6e11987e92efa12f1a14b3b8..76dcb3559ad31c11b8482ebd39c353956969ea37 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- also changed cgi client since it was duplicating the functionality
Fixed:
- . remove CR characters embedded in messages (ZRoundup)
- . properly quote the email address and "real name" in all situations using the
- 'email' module if it is available and 'rfc822' otherwise
- . #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
- . use the rfc822 module to ensure that every (oddball) email address and
- real-name is properly quoted
- . #558867 ] ZRoundup redirect /instance requests to /instance/
- . #562130 ] cookie path generated from ZRoundup was wrong in some situations
. stop sending blank (whitespace-only) notes
. cleanup of serialisation for database storage
. node ids are now generated from a lockable store - no more race conditions
. #565979 ] code error in hyperdb.Class.find
. #565996 ] The "Attach a File to this Issue" fails
. #564271 ] find() and new properties
+ . #562130 ] cookie path generated from ZRoundup was wrong in some situations
+ . remove CR characters embedded in messages (ZRoundup)
+ . properly quote the email address and "real name" in all situations using the
+ 'email' module if it is available and 'rfc822' otherwise
+ . #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
+ . use the rfc822 module to ensure that every (oddball) email address and
+ real-name is properly quoted
+ . #558867 ] ZRoundup redirect /instance requests to /instance/
+ . #569415 ] {version}
2002-03-25 - 0.4.1
diff --git a/roundup/__init__.py b/roundup/__init__.py
index 758875f70ea3eab2950b649c4daa19ead0b1fc82..7450bd6df8f62c32ab30a1dbd5fd88e9261bf251 100644 (file)
--- a/roundup/__init__.py
+++ b/roundup/__init__.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: __init__.py,v 1.6 2001-08-07 00:24:42 richard Exp $
+# $Id: __init__.py,v 1.7 2002-06-17 23:14:44 richard Exp $
__doc__ = '''
This is a simple-to-use and -install issue-tracking system with
much prettier cake :)
'''
+__version__ = '1.4.2rc1'
+
#
# $Log: not supported by cvs2svn $
+# Revision 1.6 2001/08/07 00:24:42 richard
+# stupid typo
+#
# Revision 1.5 2001/08/07 00:15:51 richard
# Added the copyright/license notice to (nearly) all files at request of
# Bizar Software.
diff --git a/roundup/admin.py b/roundup/admin.py
index 8f086f35e8a508b362e932b87cbde49c08daa0c2..481ca46882b93ad9f53ea72579b1526c7bf216db 100644 (file)
--- a/roundup/admin.py
+++ b/roundup/admin.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: admin.py,v 1.14 2002-06-11 06:41:50 richard Exp $
+# $Id: admin.py,v 1.15 2002-06-17 23:14:44 richard Exp $
import sys, os, getpass, getopt, re, UserDict, shlex, shutil
try:
except ImportError:
csv = None
from roundup import date, hyperdb, roundupdb, init, password, token
+from roundup import __version__ as roundup_version
import roundup.instance
from roundup.i18n import _
def interactive(self):
'''Run in an interactive mode
'''
- print _('Roundup {version} ready for input.')
+ print _('Roundup %s ready for input.'%roundup_version)
print _('Type "help" for help.')
try:
import readline
#
# $Log: not supported by cvs2svn $
+# Revision 1.14 2002/06/11 06:41:50 richard
+# Removed prompt for admin email in initialisation.
+#
# Revision 1.13 2002/05/30 23:58:14 richard
# oops
#
diff --git a/setup.py b/setup.py
index 7c64ffe210a57f2475b7fa46387f3a61cede159a..e21a2ac4b939d2c78911723d7ceb465473125645 100644 (file)
--- a/setup.py
+++ b/setup.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: setup.py,v 1.34 2002-05-29 01:16:16 richard Exp $
+# $Id: setup.py,v 1.35 2002-06-17 23:14:44 richard Exp $
from distutils.core import setup, Extension
from distutils.util import get_platform
)
# perform the setup action
+ from roundup import __version__
setup(
name = "roundup",
- version = "0.4.1",
+ version = __version__,
description = "Roundup issue tracking system.",
author = "Richard Jones",
author_email = "richard@users.sourceforge.net",
#
# $Log: not supported by cvs2svn $
+# Revision 1.34 2002/05/29 01:16:16 richard
+# Sorry about this huge checkin! It's fixing a lot of related stuff in one go
+# though.
+#
+# . #541941 ] changing multilink properties by mail
+# . #526730 ] search for messages capability
+# . #505180 ] split MailGW.handle_Message
+# - also changed cgi client since it was duplicating the functionality
+# . build htmlbase if tests are run using CVS checkout (removed note from
+# installation.txt)
+# . don't create an empty message on email issue creation if the email is empty
+#
# Revision 1.33 2002/04/03 05:53:03 richard
# Didn't get around to committing these after the last release.
#