Skip to content

Commit e2e0b15

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 51a4618 commit e2e0b15

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Fixed:
2424
- removed rlog module (py 2.3 is minimum version now)
2525
- fixed class "help" listing paging (sf bug 1106329)
2626
- nicer error looking up values of None (response to sf bug 1108697)
27+
- added "imapServer.py" script (sf patch 934567)
2728
- fallback for (list) popups if javascript disabled (sf patch 1101626)
2829

2930

@@ -100,6 +101,7 @@ Fixed:
100101
- allow suppression of search_text in indexargs_form (sf bug 1101548)
101102
- hack to fix some anydbm export problems (sf bug 1081454)
102103
- ignore AutoReply messages (sf patch 1085051)
104+
- fix ZRoundup syntax error (sf bug 1122335)
103105

104106

105107
2005-01-06 0.7.11
@@ -109,7 +111,7 @@ Fixed:
109111
- fix permission lookup in query editing
110112

111113

112-
2004-10-04 0.7.10
114+
2005-01-04 0.7.10
113115
Fixed:
114116
- reset ID counters if the database is cleared (thanks William)
115117
- apply IE caching "fix" to automatically serve up all pages expired

frontends/ZRoundup/ZRoundup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1515
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1616
#
17-
# $Id: ZRoundup.py,v 1.20 2004-11-05 04:42:45 richard Exp $
17+
# $Id: ZRoundup.py,v 1.20.2.1 2005-02-15 00:27:04 richard Exp $
1818
#
1919
''' ZRoundup module - exposes the roundup web interface to Zope
2020
@@ -97,7 +97,7 @@ def getvalue(self, key, default=None):
9797
def has_key(self, item):
9898
return self.form.has_key(item)
9999
def keys(self):
100-
return self.form.keys():
100+
return self.form.keys()
101101

102102
class ZRoundup(Item, PropertyManager, Implicit, Persistent):
103103
'''An instance of this class provides an interface between Zope and

0 commit comments

Comments
 (0)