[%# The contents of this file are subject to the Mozilla Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is the Bugzilla Bug Tracking System. # # The Initial Developer of the Original Code is Netscape Communications # Corporation. Portions created by Netscape are # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # # Contributor(s): # Gervase Markham # Max Kanat-Alexander #%] [%# INTERFACE: # bugs: list of hashes. May be empty. Each hash has three members: # bug: A Bugzilla::Bug object # count: integer. The number of dupes # delta: integer. The change in count in the last $changedsince days # # bug_ids: list of integers. May be empty. The IDs of the bugs in $bugs. # # sortby: string. the column on which we are sorting the buglist. # reverse: boolean. True if we are reversing the current sort. # maxrows: integer. Max number of rows to display. # changedsince: integer. The number of days ago for the changedsince column. # openonly: boolean. True if we are only showing open bugs. # product: array of strings. Restrict to these products only. #%] [% PROCESS "global/field-descs.none.tmpl" %] [%# *** Column Headers *** %] [% SET columns = [ { name => "id", description => "$terms.Bug #" }, { name => "count", description => "Dupe
Count" }, { name => "delta", description => "Change in last
$changedsince day(s)" }, { name => "component", description => field_descs.component }, { name => "bug_severity", description => field_descs.bug_severity }, { name => "op_sys", description => field_descs.op_sys }, { name => "target_milestone", description => field_descs.target_milestone }, { name => "short_desc", description => field_descs.short_desc }, ] %] [% SET base_args = [] %] [% FOREACH param = ['maxrows', 'openonly', 'format', 'sortvisible', 'changedsince', 'product'] %] [% NEXT IF NOT ${param}.defined %] [% FOREACH value = ${param} %] [% filtered_value = value FILTER uri %] [% base_args.push("$param=$filtered_value") %] [% END %] [% END %] [% IF sortvisible %] [% bug_ids_string = bug_ids.nsort.join(',') FILTER uri %] [% base_args.push("bug_id=$bug_ids_string") %] [% END %] [% base_args_string = base_args.join('&') %] [% IF bugs.size %] [% FOREACH column = columns %] [% IF column.name == sortby %] [%# We add this to the column object so it doesn't affect future # iterations of the loop. #%] [% column.reverse_sort = reverse ? 0 : 1 %] [% END %] [% END %] [%# *** Buglist *** %] [% FOREACH item = bugs %] [% SET bug = item.bug %] [% END %]
[% column.description FILTER none %]
[% bug.id FILTER bug_link(bug) FILTER none %] [% item.count FILTER html %] [% item.delta FILTER html %] [% bug.component FILTER html %] [%- display_value('bug_severity', bug.bug_severity) FILTER html %] [%- display_value('op_sys', bug.op_sys) FILTER html %] [% display_value('target_milestone', bug.target_milestone) FILTER html %] [% bug.short_desc FILTER html %]
[% ELSE %]

No duplicate [% terms.bugs %] found.

[% END %]