Skip to content

Commit 74d7b94

Browse files
author
Richard Jones
committed
upgrading notes to fix security assertions
1 parent aa1476c commit 74d7b94

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ Fixed:
88
- fix typo (sf patch 1076629)
99
- fix hyperlinking of items (sf bug 1080251)
1010
- fix roundup-admin find command handling of Multilinks
11-
- fix some security assertions (sf bug 1085481)
11+
- fix some security assertions (sf bug 1085481) (see doc/upgrading.txt for
12+
notes)
1213

1314

1415
2004-10-26 0.7.9

doc/upgrading.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,35 @@ steps.
1313

1414
.. contents::
1515

16+
Migrating from 0.7.10
17+
=============================
18+
19+
0.7.10 Security assertions
20+
--------------------------
21+
22+
Some security assertions were missing in relation to stored query editing.
23+
You should edit the following tal statements into the ``page.html`` template:
24+
25+
<p class="classblock">
26+
<b>Your Queries</b> (<a href="query?@template=edit">edit</a>)<br>
27+
28+
becomes::
29+
30+
<p class="classblock"
31+
tal:condition="python:request.user.hasPermission('View', 'query')">
32+
<b>Your Queries</b> (<a href="query?@template=edit">edit</a>)<br>
33+
34+
And the ``issue.search.html`` template:
35+
36+
<tr>
37+
<th>Query name**:</th>
38+
39+
becomes::
40+
41+
<tr tal:condition="python:request.user.hasPermission('Edit', 'query')">
42+
<th>Query name**:</th>
43+
44+
1645
Migrating from 0.7.2 to 0.7.3
1746
=============================
1847

0 commit comments

Comments
 (0)