Skip to content

Commit 5197d37

Browse files
author
Richard Jones
committed
oops
1 parent f3942bb commit 5197d37

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Copyright (c) 2003 Richard Jones ([email protected])
44
#
5-
# $Id: demo.py,v 1.5.2.3 2004-03-24 20:31:43 richard Exp $
5+
# $Id: demo.py,v 1.5.2.4 2004-04-01 00:15:55 richard Exp $
66

77
import sys, os, string, re, urlparse
88
import shutil, socket, errno, BaseHTTPServer
@@ -21,7 +21,7 @@ def install_demo(home):
2121
except os.error, error:
2222
if error.errno != errno.ENOENT:
2323
raise
24-
init.write_select_db(home, 'sqlite')
24+
init.write_select_db(home, 'anydbm')
2525

2626
# figure basic params for server
2727
hostname = socket.gethostname()

setup.py

Lines changed: 13 additions & 10 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.55.2.9 2004-03-25 00:32:30 richard Exp $
19+
# $Id: setup.py,v 1.55.2.10 2004-04-01 00:15:55 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -188,15 +188,18 @@ def main():
188188
command-line, web and e-mail interfaces. It is based on the winning design
189189
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
190190
191-
The 0.6.7 release fixes some bugs:
192-
- be more backward-compatible when asking for EMAIL_CHARSET
193-
- made error on create consistent with edit when user enters invalid data
194-
for Multilink and Link form fields (sf bug 904072)
195-
- made errors from bad input in the quick "Show issue:" form more
196-
user-friendly (sf bug 904064)
197-
- don't add a query to a user's list if it's already there
198-
- nicer invalid property error in HTML templating
199-
- use EMAIL_CHARSET for message body too (still sf bug 900046)
191+
The 0.6.8 release fixes some bugs:
192+
- existing trackers (ie. live ones) may be used as templates for new
193+
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
194+
appended (so the demo tracker's template name is "classic-demo")
195+
- handle bad multilink input at item creation time better (sf bug 917834)
196+
- make sure email signature starts on a newline (sf bug 919759)
197+
- add line to rego email to help URL detection (sf bug 906247)
198+
- look harder for text/plain in email
199+
- fixed fallback excel writer in rcsv so it has a delimiter
200+
- fixed setup.py's use of listTemplates (!)
201+
- make rdbms serialise() less trusting
202+
- handle Boolean values in history HTML display
200203
''',
201204
author = "Richard Jones",
202205
author_email = "[email protected]",

0 commit comments

Comments
 (0)