Skip to content

Commit 2b88bf3

Browse files
author
Richard Jones
committed
fix to fix
1 parent 281885c commit 2b88bf3

File tree

4 files changed

+22
-30
lines changed

4 files changed

+22
-30
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2004-10-?? 0.7.10
4+
2005-01-04 0.7.10
55
Fixed:
66
- reset ID counters if the database is cleared (thanks William)
77
- apply IE caching "fix" to automatically serve up all pages expired

doc/announcement.txt

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,22 @@ Roundup is a simple-to-use and -install issue-tracking system with
22
command-line, web and e-mail interfaces. It is based on the winning design
33
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
44

5-
0.7.9 is a bug fix release (with one feature cleaning up an API
6-
inconsistency):
7-
8-
- DateHTMLProperty.field() accepts format string (thanks Wil Cooley)
9-
- popup listing uses filter args (thanks Marlon van den Berg)
10-
- fixed editing of message contents
11-
- loosened the detection of issue cross-references in messages
12-
- open CSV files in "universal newline" mode
13-
- s/Modifed/Modified (thanks donfu)
14-
- applied patch fixing some form handling issues in ZRoundup (thanks Chris
15-
Withers)
16-
- enforce View Permission when serving file content (sf bug 1050470)
17-
- don't index common words (sf bug 1046612)
18-
- set the current username correctly after rego (sf bug 1048398)
19-
- don't wrap query.item.html in a <span> (thanks Roch'e Compaan)
20-
- TAL expressions like 'request/show/whatever' return True
21-
if the request does not contain explicit @columns list
22-
- NumberHTMLProperty should return '' not "None" if not set (thanks
23-
William)
24-
- ensure multilink ordering in RDBMS backends (thanks Marcus Priesch, sf
25-
bug 950963)
26-
- always honor indexme property on Strings (sf patch 1063711)
27-
- make hyperdb value parsing errors readable in mailgw errors
28-
- make anydbm journal export handle removed properties
29-
- allow use of XML templates again
5+
0.7.10 is a bug fix release:
6+
7+
- reset ID counters if the database is cleared (thanks William)
8+
- apply IE caching "fix" to automatically serve up all pages expired
9+
- fix typo (sf patch 1076629)
10+
- fix hyperlinking of items (sf bug 1080251)
11+
- fix roundup-admin find command handling of Multilinks
12+
- fix some security assertions (sf bug 1085481) (see doc/upgrading.txt for
13+
notes)
14+
- don't set the title to nothing from incoming mail (thanks Bruce Guenter)
15+
- fix py2.4 strftime() API change bug (sf bug 1087746)
16+
- fix indexer searching with no valid words (sf bug 1086787)
17+
- updated searching / indexing docs
18+
- fix "(list)" popup when list is one item long (sf bug 1064716)
19+
- have RDBMS full-text indexer do AND searching (sf bug 1055435)
20+
- handle spaces in String index params in batching (sf bug 1054224)
3021

3122
If you're upgrading from an older version of Roundup you *must* follow
3223
the "Software Upgrade" guidelines given in the maintenance documentation.

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
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.30.2.9 2004-11-26 00:02:56 richard Exp $
18+
# $Id: __init__.py,v 1.30.2.10 2005-01-04 03:24:51 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '0.7.9'
71+
__version__ = '0.7.10'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

roundup/backends/back_anydbm.py

Lines changed: 3 additions & 2 deletions
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: back_anydbm.py,v 1.146.2.24 2004-12-14 22:59:53 richard Exp $
18+
#$Id: back_anydbm.py,v 1.146.2.25 2005-01-04 03:24:51 richard Exp $
1919
'''This module defines a backend that saves the hyperdatabase in a
2020
database chosen by anydbm. It is guaranteed to always be available in python
2121
versions >2.1.1 (the dumbdbm fallback in 2.1.1 and earlier has several
@@ -2061,7 +2061,8 @@ def export_journals(self):
20612061
elif isinstance(prop, Password):
20622062
value = str(value)
20632063
export_data[propname] = value
2064-
l = [nodeid, date, user, action, export_data]
2064+
params = export_data
2065+
l = [nodeid, date, user, action, params]
20652066
r.append(map(repr, l))
20662067
return r
20672068

0 commit comments

Comments
 (0)