File tree Expand file tree Collapse file tree 4 files changed +31
-2
lines changed
share/roundup/templates/responsive/html Expand file tree Collapse file tree 4 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 26
26
- issue2551131 - Return accept-patch if patch body not accepted
27
27
(415 code). Accept-Patch returned with acceptable values. (John
28
28
Rouillard)
29
+ - issue2551074 - In "responsive" template: click on hide comment leads
30
+ to a red error msg. (Report by Ludwig Reiter; fix John Rouillard)
29
31
30
32
Features:
31
33
Original file line number Diff line number Diff line change @@ -108,6 +108,33 @@ the `PySQLite <https://github.com/ghaering/pysqlite>`_ library has
108
108
been removed in 2.5.0. Only the Python supplied sqlite3 library will
109
109
be supported.
110
110
111
+ Update responsive template _generic.404.html and query.item.html (recommended)
112
+ ------------------------------------------------------------------------------
113
+
114
+ This only applies if your tracker is based on the responsive
115
+ template. Check the TEMPLATE-INFO.txt file in your tracker
116
+ home. The template name is the first component of the ``Name``
117
+ field. For example a Name like::
118
+
119
+ Name: responsive-bugtracker
120
+
121
+ is based on the responsive template. If the Name doesn't start with
122
+ ``responsive`` no changes are needed.
123
+
124
+ The ``_generic.404.html`` and ``query.item.html`` templates will crash
125
+ when displayed because a missing macro is called. Change::
126
+
127
+ <tal:block metal:use-macro="templates/page/macros/icing">
128
+
129
+ to::
130
+
131
+ <tal:block metal:use-macro="templates/page/macros/frame">
132
+
133
+ at the top of both files. The icing macro used in other tracker
134
+ templates was renamed to frame in this tracker template.
135
+
136
+
137
+
111
138
.. index:: Upgrading; 2.3.0 to 2.4.0
112
139
113
140
Migrating from 2.3.0 to 2.4.0
Original file line number Diff line number Diff line change 1
1
<!-- dollarId: issue.item,v 1.4 2001/08/03 01:19:43 richard Exp dollar-->
2
- < tal:block metal:use-macro ="templates/page/macros/icing ">
2
+ < tal:block metal:use-macro ="templates/page/macros/frame ">
3
3
< title metal:fill-slot ="head_title ">
4
4
Item Not Found
5
5
</ title >
Original file line number Diff line number Diff line change 2
2
< span tal:condition ="context/is_view_ok " tal:replace ="structure
3
3
context/renderQueryForm " />
4
4
< tal:block tal:condition ="not:context/is_view_ok ">
5
- < tal:block metal:use-macro ="templates/page/macros/icing ">
5
+ < tal:block metal:use-macro ="templates/page/macros/frame ">
6
6
< title metal:fill-slot ="head_title "> You can not view query</ title >
7
7
< tal:block metal:fill-slot ="body_title ">
8
8
You can not view query.
You can’t perform that action at this time.
0 commit comments