Commit cc1c75fa authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 13540 - change filters to cope with new terms.* code.

parent 00277eed
...@@ -311,10 +311,6 @@ ...@@ -311,10 +311,6 @@
'h3', 'h3',
'message', 'message',
], ],
'global/hidden-fields.html.tmpl' => [
'mvalue | html | html_linebreak', # Need to eliminate | usage
'field.value | html | html_linebreak',
],
'global/messages.html.tmpl' => [ 'global/messages.html.tmpl' => [
'parameters', 'parameters',
...@@ -385,7 +381,7 @@ ...@@ -385,7 +381,7 @@
], ],
'bug/dependency-tree.html.tmpl' => [ 'bug/dependency-tree.html.tmpl' => [
'hide_resolved ? "Open b" : "B"', 'hide_resolved ? "Open $terms.bugs" : "$terms.Bugs"',
'bugid', 'bugid',
'maxdepth', 'maxdepth',
'dependson_ids.join(",")', 'dependson_ids.join(",")',
...@@ -400,7 +396,7 @@ ...@@ -400,7 +396,7 @@
'maxdepth == 0 || maxdepth == realdepth ? "disabled" : ""', 'maxdepth == 0 || maxdepth == realdepth ? "disabled" : ""',
'realdepth < 2 || ( maxdepth && maxdepth < 2 ) ? "disabled" : ""', 'realdepth < 2 || ( maxdepth && maxdepth < 2 ) ? "disabled" : ""',
'maxdepth > 0 && maxdepth <= realdepth ? maxdepth : ""', 'maxdepth > 0 && maxdepth <= realdepth ? maxdepth : ""',
'maxdepth == 1 ? 1 'maxdepth == 1 ? 1
: ( maxdepth ? maxdepth - 1 : realdepth - 1 )', : ( maxdepth ? maxdepth - 1 : realdepth - 1 )',
'realdepth < 2 || ! maxdepth || maxdepth >= realdepth ? 'realdepth < 2 || ! maxdepth || maxdepth >= realdepth ?
"disabled" : ""', "disabled" : ""',
...@@ -420,7 +416,7 @@ ...@@ -420,7 +416,7 @@
'bug.${dep.fieldname}.join(\', \')', 'bug.${dep.fieldname}.join(\', \')',
'selname', 'selname',
'depbug FILTER bug_link(depbug)', 'depbug FILTER bug_link(depbug)',
'"bug ${bug.dup_id}" FILTER bug_link(bug.dup_id)', '"${bug.dup_id}" FILTER bug_link(bug.dup_id)',
], ],
'bug/navigate.html.tmpl' => [ 'bug/navigate.html.tmpl' => [
...@@ -585,6 +581,8 @@ ...@@ -585,6 +581,8 @@
'item', # 'item', #
'type.sortkey || 1', 'type.sortkey || 1',
'(last_action == "enter" || last_action == "copy") ? "Create" : "Save Changes"', '(last_action == "enter" || last_action == "copy") ? "Create" : "Save Changes"',
'typeLabelLowerPlural',
'typeLabelLowerSingular',
], ],
'admin/flag-type/list.html.tmpl' => [ 'admin/flag-type/list.html.tmpl' => [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment