From ef3b9cc4f96ef8074a656abf5bb5d8d46010bc36 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 17 Jun 2002 23:14:44 +0000 Subject: [PATCH] . #569415 ] {version} git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@786 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 17 +++++++++-------- roundup/__init__.py | 7 ++++++- roundup/admin.py | 8 ++++++-- setup.py | 17 +++++++++++++++-- 4 files changed, 36 insertions(+), 13 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 985df81..76dcb35 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -40,14 +40,6 @@ Feature: - 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 @@ -75,6 +67,15 @@ Fixed: . #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 758875f..7450bd6 100644 --- a/roundup/__init__.py +++ b/roundup/__init__.py @@ -15,7 +15,7 @@ # 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 @@ -65,8 +65,13 @@ written by Ka-Ping Yee in the "doc" directory. If nothing else, it has a 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 8f086f3..481ca46 100644 --- a/roundup/admin.py +++ b/roundup/admin.py @@ -16,7 +16,7 @@ # 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: @@ -24,6 +24,7 @@ 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 _ @@ -1045,7 +1046,7 @@ Date format is "YYYY-MM-DD" eg: 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 @@ -1113,6 +1114,9 @@ if __name__ == '__main__': # # $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 7c64ffe..e21a2ac 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # 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 @@ -167,9 +167,10 @@ if __name__ == '__main__': ) # 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", @@ -188,6 +189,18 @@ if __name__ == '__main__': # # $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. # -- 2.30.2