Skip to content

Commit d8ef46e

Browse files
author
Richard Jones
committed
[SF#569415] {version]]
1 parent d40b9b9 commit d8ef46e

File tree

4 files changed

+36
-13
lines changed

4 files changed

+36
-13
lines changed

CHANGES.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,6 @@ Feature:
4040
- also changed cgi client since it was duplicating the functionality
4141

4242
Fixed:
43-
. remove CR characters embedded in messages (ZRoundup)
44-
. properly quote the email address and "real name" in all situations using the
45-
'email' module if it is available and 'rfc822' otherwise
46-
. #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
47-
. use the rfc822 module to ensure that every (oddball) email address and
48-
real-name is properly quoted
49-
. #558867 ] ZRoundup redirect /instance requests to /instance/
50-
. #562130 ] cookie path generated from ZRoundup was wrong in some situations
5143
. stop sending blank (whitespace-only) notes
5244
. cleanup of serialisation for database storage
5345
. node ids are now generated from a lockable store - no more race conditions
@@ -75,6 +67,15 @@ Fixed:
7567
. #565979 ] code error in hyperdb.Class.find
7668
. #565996 ] The "Attach a File to this Issue" fails
7769
. #564271 ] find() and new properties
70+
. #562130 ] cookie path generated from ZRoundup was wrong in some situations
71+
. remove CR characters embedded in messages (ZRoundup)
72+
. properly quote the email address and "real name" in all situations using the
73+
'email' module if it is available and 'rfc822' otherwise
74+
. #565992 ] if ISSUE_TRACKER_WEB doesn't have the trailing '/', add it
75+
. use the rfc822 module to ensure that every (oddball) email address and
76+
real-name is properly quoted
77+
. #558867 ] ZRoundup redirect /instance requests to /instance/
78+
. #569415 ] {version}
7879

7980

8081
2002-03-25 - 0.4.1

roundup/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.6 2001-08-07 00:24:42 richard Exp $
18+
# $Id: __init__.py,v 1.7 2002-06-17 23:14:44 richard Exp $
1919

2020
__doc__ = '''
2121
This is a simple-to-use and -install issue-tracking system with
@@ -65,8 +65,13 @@
6565
much prettier cake :)
6666
'''
6767

68+
__version__ = '1.4.2rc1'
69+
6870
#
6971
# $Log: not supported by cvs2svn $
72+
# Revision 1.6 2001/08/07 00:24:42 richard
73+
# stupid typo
74+
#
7075
# Revision 1.5 2001/08/07 00:15:51 richard
7176
# Added the copyright/license notice to (nearly) all files at request of
7277
# Bizar Software.

roundup/admin.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: admin.py,v 1.14 2002-06-11 06:41:50 richard Exp $
19+
# $Id: admin.py,v 1.15 2002-06-17 23:14:44 richard Exp $
2020

2121
import sys, os, getpass, getopt, re, UserDict, shlex, shutil
2222
try:
2323
import csv
2424
except ImportError:
2525
csv = None
2626
from roundup import date, hyperdb, roundupdb, init, password, token
27+
from roundup import __version__ as roundup_version
2728
import roundup.instance
2829
from roundup.i18n import _
2930

@@ -1045,7 +1046,7 @@ def run_command(self, args):
10451046
def interactive(self):
10461047
'''Run in an interactive mode
10471048
'''
1048-
print _('Roundup {version} ready for input.')
1049+
print _('Roundup %s ready for input.'%roundup_version)
10491050
print _('Type "help" for help.')
10501051
try:
10511052
import readline
@@ -1113,6 +1114,9 @@ def main(self):
11131114

11141115
#
11151116
# $Log: not supported by cvs2svn $
1117+
# Revision 1.14 2002/06/11 06:41:50 richard
1118+
# Removed prompt for admin email in initialisation.
1119+
#
11161120
# Revision 1.13 2002/05/30 23:58:14 richard
11171121
# oops
11181122
#

setup.py

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.34 2002-05-29 01:16:16 richard Exp $
19+
# $Id: setup.py,v 1.35 2002-06-17 23:14:44 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -167,9 +167,10 @@ def buildTemplates():
167167
)
168168

169169
# perform the setup action
170+
from roundup import __version__
170171
setup(
171172
name = "roundup",
172-
version = "0.4.1",
173+
version = __version__,
173174
description = "Roundup issue tracking system.",
174175
author = "Richard Jones",
175176
author_email = "[email protected]",
@@ -188,6 +189,18 @@ def buildTemplates():
188189

189190
#
190191
# $Log: not supported by cvs2svn $
192+
# Revision 1.34 2002/05/29 01:16:16 richard
193+
# Sorry about this huge checkin! It's fixing a lot of related stuff in one go
194+
# though.
195+
#
196+
# . #541941 ] changing multilink properties by mail
197+
# . #526730 ] search for messages capability
198+
# . #505180 ] split MailGW.handle_Message
199+
# - also changed cgi client since it was duplicating the functionality
200+
# . build htmlbase if tests are run using CVS checkout (removed note from
201+
# installation.txt)
202+
# . don't create an empty message on email issue creation if the email is empty
203+
#
191204
# Revision 1.33 2002/04/03 05:53:03 richard
192205
# Didn't get around to committing these after the last release.
193206
#

0 commit comments

Comments
 (0)