File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 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
14152004-10-26 0.7.9
Original file line number Diff line number Diff 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+
1645Migrating from 0.7.2 to 0.7.3
1746=============================
1847
You can’t perform that action at this time.
0 commit comments