Skip to content

Commit eb94350

Browse files
author
Richard Jones
committed
fixes and release announcement
1 parent 6f6a669 commit eb94350

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

CHANGES.txt

Lines changed: 5 additions & 3 deletions
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-??-?? 0.7.0b2
4+
2004-03-27 0.7.0b2
55
Feature:
66
- added CSV export to index pages
77
- added emailauditor.py which works around a bug in IE. See
@@ -12,17 +12,19 @@ Feature:
1212
messages. (sf bug 700265)
1313
- queries on a per-user basis, and public queries (sf "bug" 891798 :)
1414
- added DEFAULT_TIMEZONE (sf rfe 895139)
15+
- added HTML page template to the templating context as "template"
16+
- added is_retired to HTMLItems in templating
1517

1618
Fixed:
17-
- Boolean HTML templating was broken
18-
- Link HTML templating field() was broken
19+
- Boolean, Date and Link HTML templating was broken
1920
- fix reporting of test inclusion in postgresql test
2021
- EditAction was confused about who "self" was
2122
- edit collision detection was broken for index-page edits
2223
- sqlite backend wasn't migrating multilink tables correctly
2324
- use SimpleCookie instead of Cookie (is an alias for the evil SmartCookie)
2425
- handle older sessions in session dbm
2526
- make presetunread more resilient to status Class changes
27+
- HTMLDatabase classes() was broken
2628

2729

2830
2004-03-24 0.7.0b1

doc/announcement.txt

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
It is with a huge sigh of relief that I announce this first beta of
2-
Roundup version 0.7.
1+
This is the second beta release of Roundup version 0.7. It fixes some bugs
2+
in the previous beta release and introduces a few new features.
33

44
If you're upgrading from an older version of Roundup you *must* follow
55
the "Software Upgrade" guidelines given in the maintenance documentation.
@@ -12,22 +12,20 @@ I would *greatly* appreciate people giving this release a whirl with a
1212
copy of their existing setup. It's only through real-world testing of
1313
beta releases that we can ensure that older trackers will be OK.
1414

15-
This release introduces far too many features to list here. Some
16-
highlights:
17-
18-
- added postgresql backend (originally from sf patch 761740, many changes
19-
since)
20-
- RDBMS backends implement their session and one-time-key stores and
21-
full-text indexers; thus they are now performing their own locking
22-
internally
23-
- added new "actor" automatic property (indicates user who cause the last
24-
"activity")
25-
- all RDBMS backends have sensible data typed columns and indexes on
26-
several columns
27-
- we support confirming registration by replying to the email (sf bug
28-
763668)
29-
- all HTML templating methods now automatically check for permissions
30-
(either view or edit as appropriate), greatly simplifying templates
15+
Version 0.7 introduces far too many features to list here. I've put
16+
together a What's New page:
17+
18+
http://roundup.sourceforge.net/doc-0.7/whatsnew-0.7.html
19+
20+
Some highlights:
21+
22+
- added postgresql backend
23+
- RDBMS backends have no external locking requirements
24+
- new "actor" automatic property (user who caused the last "activity")
25+
- RDBMS backends have data typed columns and indexes on several columns
26+
- we support confirming registration by replying to the email
27+
- all HTML templating methods now automatically check for permissions,
28+
greatly simplifying templates
3129

3230
Roundup requires python 2.1.3 or later for correct operation.
3331

doc/customizing.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.127 $
5+
:Version: $Revision: 1.128 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -1602,6 +1602,7 @@ hasPermission specific to the "user" class - determine whether the
16021602
user has a Permission
16031603
is_edit_ok is the user allowed to Edit the current item?
16041604
is_view_ok is the user allowed to View the current item?
1605+
is_retired is the item retired?
16051606
=============== ========================================================
16061607

16071608
Note that if you have a property of the same name as one of the above

roundup/cgi/templating.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1510,7 +1510,6 @@ def __contains__(self, value):
15101510
''' Support the "in" operator. We have to make sure the passed-in
15111511
value is a string first, not a HTMLProperty.
15121512
'''
1513-
print (self, value, self._value)
15141513
return str(value) in self._value
15151514

15161515
def reverse(self):

0 commit comments

Comments
 (0)