Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
fde6d4aa
Commit
fde6d4aa
authored
Feb 01, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 514970: Clean up duplicates.cgi and make it use Bug objects
r=LpSolit, a=LpSolit
parent
cf2e1cc0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
171 additions
and
163 deletions
+171
-163
Object.pm
Bugzilla/Object.pm
+2
-1
Product.pm
Bugzilla/Product.pm
+11
-0
User.pm
Bugzilla/User.pm
+6
-5
Bug.pm
Bugzilla/WebService/Bug.pm
+1
-1
duplicates.cgi
duplicates.cgi
+0
-0
duplicates.css
skins/standard/duplicates.css
+30
-15
filterexceptions.pl
template/en/default/filterexceptions.pl
+0
-14
user-error.html.tmpl
template/en/default/global/user-error.html.tmpl
+7
-2
duplicates-simple.html.tmpl
template/en/default/reports/duplicates-simple.html.tmpl
+5
-3
duplicates-table.html.tmpl
template/en/default/reports/duplicates-table.html.tmpl
+73
-88
duplicates.html.tmpl
template/en/default/reports/duplicates.html.tmpl
+36
-34
No files found.
Bugzilla/Object.pm
View file @
fde6d4aa
...
@@ -134,7 +134,8 @@ sub check {
...
@@ -134,7 +134,8 @@ sub check {
# We don't want to override the normal template "user" object if
# We don't want to override the normal template "user" object if
# "user" is one of the params.
# "user" is one of the params.
delete
$param
->
{
user
};
delete
$param
->
{
user
};
ThrowUserError
(
'object_does_not_exist'
,
{
%
$param
,
class
=>
$class
});
my
$error
=
delete
$param
->
{
_error
}
||
'object_does_not_exist'
;
ThrowUserError
(
$error
,
{
%
$param
,
class
=>
$class
});
}
}
return
$obj
;
return
$obj
;
}
}
...
...
Bugzilla/Product.pm
View file @
fde6d4aa
...
@@ -913,6 +913,17 @@ sub check_product {
...
@@ -913,6 +913,17 @@ sub check_product {
return
$product
;
return
$product
;
}
}
sub
check
{
my
(
$class
,
$params
)
=
@_
;
$params
=
{
name
=>
$params
}
if
!
ref
$params
;
$params
->
{
_error
}
=
'product_access_denied'
;
my
$product
=
$class
->
SUPER::
check
(
$params
);
if
(
!
Bugzilla
->
user
->
can_access_product
(
$product
))
{
ThrowUserError
(
'product_access_denied'
,
$params
);
}
return
$product
;
}
1
;
1
;
__END__
__END__
...
...
Bugzilla/User.pm
View file @
fde6d4aa
...
@@ -810,8 +810,8 @@ sub get_enterable_products {
...
@@ -810,8 +810,8 @@ sub get_enterable_products {
}
}
sub
can_access_product
{
sub
can_access_product
{
my
(
$self
,
$product
_name
)
=
@_
;
my
(
$self
,
$product
)
=
@_
;
my
$product_name
=
blessed
(
$product
)
?
$product
->
name
:
$product
;
return
scalar
(
grep
{
$_
->
name
eq
$product_name
}
@
{
$self
->
get_accessible_products
});
return
scalar
(
grep
{
$_
->
name
eq
$product_name
}
@
{
$self
->
get_accessible_products
});
}
}
...
@@ -2055,10 +2055,11 @@ the database again. Used mostly by L<Bugzilla::Product>.
...
@@ -2055,10 +2055,11 @@ the database again. Used mostly by L<Bugzilla::Product>.
Returns: an array of product objects.
Returns: an array of product objects.
=item C<can_access_product(
product_name
)>
=item C<can_access_product(
$product
)>
Returns 1 if the user can search or enter bugs into the specified product,
Returns 1 if the user can search or enter bugs into the specified product
and 0 if the user should not be aware of the existence of the product.
(either a L<Bugzilla::Product> or a product name), and 0 if the user should
not be aware of the existence of the product.
=item C<get_accessible_products>
=item C<get_accessible_products>
...
...
Bugzilla/WebService/Bug.pm
View file @
fde6d4aa
...
@@ -434,7 +434,7 @@ sub legal_values {
...
@@ -434,7 +434,7 @@ sub legal_values {
defined
$id
||
ThrowCodeError
(
'param_required'
,
defined
$id
||
ThrowCodeError
(
'param_required'
,
{
function
=>
'Bug.legal_values'
,
param
=>
'product_id'
});
{
function
=>
'Bug.legal_values'
,
param
=>
'product_id'
});
grep
(
$_
->
id
eq
$id
,
@
{
Bugzilla
->
user
->
get_accessible_products
})
grep
(
$_
->
id
eq
$id
,
@
{
Bugzilla
->
user
->
get_accessible_products
})
||
ThrowUserError
(
'product_access_denied'
,
{
product
=>
$id
});
||
ThrowUserError
(
'product_access_denied'
,
{
id
=>
$id
});
my
$product
=
new
Bugzilla::
Product
(
$id
);
my
$product
=
new
Bugzilla::
Product
(
$id
);
my
@objects
;
my
@objects
;
...
...
duplicates.cgi
View file @
fde6d4aa
This diff is collapsed.
Click to expand it.
skins/standard/duplicates.css
View file @
fde6d4aa
...
@@ -10,25 +10,40 @@
...
@@ -10,25 +10,40 @@
*
*
* The Original Code is the Bugzilla Bug Tracking System.
* The Original Code is the Bugzilla Bug Tracking System.
*
*
* The Initial Developer of the Original Code is Netscape Communications
* The Initial Developer of the Original Code is Everything Solved, Inc.
* Corporation. Portions created by Netscape are
* Portions created by the Initial Developer are Copyright (C) 2009
* Copyright (C) 1998 Netscape Communications Corporation. All
* the Initial Developer. All Rights Reserved.
* Rights Reserved.
*
*
* Contributor(s): Myk Melez <myk@mozilla.org>
* Contributor(s):
* Max Kanat-Alexander <mkanat@bugzilla.org>
*/
*/
tree
#results-tree
{
#duplicates_table
{
margin-right
:
0px
;
border-collapse
:
collapse
;
border-right-width
:
0px
;
margin-left
:
0px
;
border-left-width
:
0px
;
}
}
treechildren
:-moz-tree-cell-text
(
resolution-FIXED
)
{
#duplicates_table
.resolved
{
text-decoration
:
line-through
;
background-color
:
#d9d9d9
;
color
:
black
;
}
}
treecol
#id_column
{
width
:
6em
;
}
#duplicates_table
thead
tr
{
treecol
#duplicate_count_column
{
width
:
5em
;
}
background-color
:
#ccc
;
treecol
#duplicate_delta_column
{
width
:
5em
;
}
color
:
black
;
}
#duplicates_table
thead
tr
th
{
vertical-align
:
middle
;
}
#duplicates_table
td
,
#duplicates_table
th
{
border
:
1px
solid
black
;
padding
:
.1em
.25em
;
}
#duplicates_table
tbody
td
{
text-align
:
center
;
}
#duplicates_table
tbody
td
.short_desc
{
text-align
:
left
;
}
template/en/default/filterexceptions.pl
View file @
fde6d4aa
...
@@ -92,20 +92,6 @@
...
@@ -92,20 +92,6 @@
'request.attach_id'
,
'request.attach_id'
,
],
],
'reports/duplicates-table.html.tmpl'
=>
[
'column.name'
,
'column.description'
,
'bug.count'
,
'bug.delta'
,
],
'reports/duplicates.html.tmpl'
=>
[
'bug_ids_string'
,
'maxrows'
,
'changedsince'
,
'reverse'
,
],
'reports/keywords.html.tmpl'
=>
[
'reports/keywords.html.tmpl'
=>
[
'keyword.bug_count'
,
'keyword.bug_count'
,
],
],
...
...
template/en/default/global/user-error.html.tmpl
View file @
fde6d4aa
...
@@ -1301,8 +1301,13 @@
...
@@ -1301,8 +1301,13 @@
Try splitting your patch into several pieces.
Try splitting your patch into several pieces.
[% ELSIF error == "product_access_denied" %]
[% ELSIF error == "product_access_denied" %]
Either the product '[% product FILTER html %]' does not exist or
Either the product
you don't have access to it.
[%+ IF id.defined %]
with the id [% id FILTER html %]
[% ELSE %]
'[% name FILTER html %]'
[% END %]
does not exist or you don't have access to it.
[% ELSIF error == "product_doesnt_exist" %]
[% ELSIF error == "product_doesnt_exist" %]
[% title = "Specified Product Does Not Exist" %]
[% title = "Specified Product Does Not Exist" %]
...
...
template/en/default/reports/duplicates-simple.html.tmpl
View file @
fde6d4aa
...
@@ -15,7 +15,9 @@
...
@@ -15,7 +15,9 @@
# Copyright (C) 1998 Netscape Communications Corporation. All
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
# Rights Reserved.
#
#
# Contributor(s): Gervase Markham
<gerv
@
gerv
.
net
>
# Contributor(s):
# Gervase Markham
<gerv
@
gerv
.
net
>
# Max Kanat-Alexander
<mkanat
@
bugzilla
.
org
>
#%]
#%]
[%# INTERFACE:
[%# INTERFACE:
...
@@ -24,8 +26,9 @@
...
@@ -24,8 +26,9 @@
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/variables.none.tmpl %]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<html>
[% IF product %]
[% IF product %]
[% title = "Most Frequently Reported $terms.Bugs for $product" %]
[% title = "Most Frequently Reported $terms.Bugs for $product" %]
[% ELSE %]
[% ELSE %]
...
@@ -39,5 +42,4 @@
...
@@ -39,5 +42,4 @@
<body>
<body>
[% PROCESS "reports/duplicates-table.html.tmpl" %]
[% PROCESS "reports/duplicates-table.html.tmpl" %]
</body>
</body>
</html>
</html>
template/en/default/reports/duplicates-table.html.tmpl
View file @
fde6d4aa
...
@@ -15,21 +15,16 @@
...
@@ -15,21 +15,16 @@
# Copyright (C) 1998 Netscape Communications Corporation. All
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
# Rights Reserved.
#
#
# Contributor(s): Gervase Markham <gerv@gerv.net>
# Contributor(s):
# Gervase Markham <gerv@gerv.net>
# Max Kanat-Alexander <mkanat@bugzilla.org>
#%]
#%]
[%# INTERFACE:
[%# INTERFACE:
# bugs: list of hashes. May be empty. Each hash has
nin
e members:
# bugs: list of hashes. May be empty. Each hash has
thre
e members:
#
id: integer. The bug number
#
bug: A Bugzilla::Bug object
# count: integer. The number of dupes
# count: integer. The number of dupes
# delta: integer. The change in count in the last $changedsince days
# delta: integer. The change in count in the last $changedsince days
# component: string. The bug's component
# bug_severity: string. The bug's severity.
# op_sys: string. The bug's reported OS.
# target_milestone: string. The bug's TM.
# short_desc: string. The bug's summary.
# bug_status: string. The bug's status.
# resolution: string. The bug's resolution, if any.
#
#
# bug_ids: list of integers. May be empty. The IDs of the bugs in $bugs.
# bug_ids: list of integers. May be empty. The IDs of the bugs in $bugs.
#
#
...
@@ -38,99 +33,89 @@
...
@@ -38,99 +33,89 @@
# maxrows: integer. Max number of rows to display.
# maxrows: integer. Max number of rows to display.
# changedsince: integer. The number of days ago for the changedsince column.
# changedsince: integer. The number of days ago for the changedsince column.
# openonly: boolean. True if we are only showing open bugs.
# openonly: boolean. True if we are only showing open bugs.
#
query_products: list
of strings. Restrict to these products only.
#
product: array
of strings. Restrict to these products only.
#%]
#%]
[% PROCESS
global/variables.none.tmpl
%]
[% PROCESS
"global/field-descs.none.tmpl"
%]
[%# *** Column Headers *** %]
[%# *** Column Headers *** %]
[% IF bug_ids.size > 0 %]
[% SET columns = [
<table border>
{ name => "id", description => "$terms.Bug #" },
<thead>
{ name => "count", description => "Dupe<br>Count" },
<tr bgcolor="#CCCCCC">
{ name => "delta",
[% FOREACH column = [ { name => "id", description => "$terms.Bug #" },
description => "Change in last<br>$changedsince day(s)" },
{ name => "count", description => "Dupe<br>Count" },
{ name => "component", description => field_descs.component },
{ name => "delta",
{ name => "bug_severity", description => field_descs.bug_severity },
description => "Change in last<br>$changedsince day(s)" },
{ name => "op_sys", description => field_descs.op_sys },
{ name => "component", description => "Component" },
{ name => "target_milestone", description => field_descs.target_milestone },
{ name => "bug_severity", description => "Severity" },
{ name => "short_desc", description => field_descs.short_desc },
{ name => "op_sys", description => "Op Sys" },
] %]
{ name => "target_milestone",
description => "Target<br>Milestone" },
{ name => "short_desc", description => "Summary" } ]
%]
<th>
[% SET base_args = [] %]
[% bug_ids_string = bug_ids.join(',') %]
[% FOREACH param = ['maxrows', 'openonly', 'format', 'sortvisible',
<a href="duplicates.cgi?sortby=[% column.name %]
'changedsince', 'product']
[% IF sortby == column.name %]
%]
[% "&reverse=1" IF NOT reverse %]
[% NEXT IF NOT ${param}.defined %]
[% ELSE %]
[% FOREACH value = ${param} %]
[%-# Some columns start off reversed %]
[% filtered_value = value FILTER url_quote %]
[% "&reverse=1" IF column.name.match('delta|count') %]
[% base_args.push("$param=$filtered_value") %]
[% END %]
[% END %]
[% IF maxrows %]&maxrows=[% maxrows FILTER html %][% END %]
[% END %]
[% IF changedsince %]&changedsince=[% changedsince FILTER html %][% END %]
[% IF sortvisible %]
[% "&openonly=1" IF openonly %]
[% bug_ids_string = bug_ids.nsort.join(',') FILTER url_quote %]
[% FOREACH p = query_products %]&product=[% p FILTER html %][% END %]
[% base_args.push("bug_id=$bug_ids_string") %]
[% IF format %]&format=[% format FILTER html %][% END %]
[% END %]
[% IF sortvisible %]&bug_id=[% bug_ids_string FILTER html %]&sortvisible=1[% END %]">
[% base_args_string = base_args.join('&') %]
[% column.description %]</a>
[% IF bugs.size %]
<table id="duplicates_table" cellpadding="0" cellspacing="0">
<thead>
<tr>
[% 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 %]
<th class="[% column.name FILTER html %]">
<a href="duplicates.cgi?sortby=[% column.name FILTER url_quote %]
[% IF column.reverse_sort.defined %]
[%- %]&reverse=[% column.reverse_sort FILTER url_quote %]
[% END %]
[% IF base_args_string %]
[% "&$base_args_string" FILTER none %]
[% END %]"
>[% column.description FILTER none %]</a>
</th>
</th>
[% END %]
[% END %]
</tr>
</tr>
</thead>
</thead>
[% IF NOT sortby %]
[% sortby = "count"; reverse = "1" %]
[% END %]
[% IF sortby == "id" OR sortby == "count" OR sortby == "delta" %]
[%# Numeric sort %]
[% sortedbugs = bugs.nsort(sortby) %]
[% ELSE %]
[% sortedbugs = bugs.sort(sortby) %]
[% END %]
[% IF reverse %]
[% bugs = sortedbugs.reverse %]
[% ELSE %]
[% bugs = sortedbugs %]
[% END %]
[%# *** Buglist *** %]
[%# *** Buglist *** %]
<tbody>
[%# We need to keep track of the bug IDs we are actually displaying, because
<tbody>
# if the user decides to sort the visible list, we need to know what that
[% FOREACH item = bugs %]
# list actually is. %]
[% SET bug = item.bug %]
[% vis_bug_ids = [] %]
<tr [% " class='resolved'" IF NOT bug.isopened %]>
<td class="id">
[% FOREACH bug = bugs %]
[% bug.id FILTER bug_link(bug) FILTER none %]
[% LAST IF loop.index() >= maxrows %]
[% vis_bug_ids.push(bug.id) %]
<tr [% "class='resolved'" IF bug.resolution != "" %]>
<td>
<center>
[% bug.id FILTER bug_link(bug.id) FILTER none %]
</center>
</td>
</td>
<td class="count">[% item.count FILTER html %]</td>
<td>
<td
class="delta">[% item.delta FILTER html %]</td
>
<center
>
<td class="component">[% bug.component FILTER html %]</td
>
[% bug.count %]
<td class="bug_severity">
</center>
[%- display_value('bug_severity', bug.bug_severity) FILTER html %]
</td>
</td>
<td class="op_sys">
<td><center>[% bug.delta %]</center></td>
[%- display_value('op_sys', bug.op_sys) FILTER html %]
</td>
<td
>[% bug.component FILTER html %]</td
>
<td
class="target_milestone"
>
<td><center>[% display_value("bug_severity", bug.bug_severity ) FILTER html %]</center></td>
[% display_value('target_milestone',
<td><center>[% display_value("op_sys", bug.op_sys ) FILTER html %]</center></td>
bug.target_milestone) FILTER html %]
<
td><center>[% display_value("target_milestone", bug.target_milestone) FILTER html %]</center><
/td>
</td>
<td>[% bug.short_desc FILTER html %]</td>
<td
class="short_desc"
>[% bug.short_desc FILTER html %]</td>
</tr>
</tr>
[% END %]
[% END %]
</tbody>
</tbody>
...
...
template/en/default/reports/duplicates.html.tmpl
View file @
fde6d4aa
...
@@ -19,14 +19,12 @@
...
@@ -19,14 +19,12 @@
#%]
#%]
[%# INTERFACE:
[%# INTERFACE:
# products: an array of product objects this user can see.
#
# sortby: string. the column on which we are sorting the buglist.
# sortby: string. the column on which we are sorting the buglist.
# reverse: boolean. True if we are reversing the current sort.
# reverse: boolean. True if we are reversing the current sort.
# maxrows: integer. Max number of rows to display.
# maxrows: integer. Max number of rows to display.
# changedsince: integer. The number of days ago for the changedsince column.
# changedsince: integer. The number of days ago for the changedsince column.
# openonly: boolean. True if we are only showing open bugs.
# openonly: boolean. True if we are only showing open bugs.
#
query_products: list
of strings. The set of products we check for dups.
#
product: array
of strings. The set of products we check for dups.
#
#
# Additionally, you need to fulfill the interface to
# Additionally, you need to fulfill the interface to
# duplicates-table.html.tmpl.
# duplicates-table.html.tmpl.
...
@@ -34,9 +32,10 @@
...
@@ -34,9 +32,10 @@
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/variables.none.tmpl %]
[% IF
query_products
.size %]
[% IF
product
.size %]
[% title = BLOCK %]
[% title = BLOCK %]
Most Frequently Reported [% terms.Bugs %] for [% query_products.join(', ') FILTER html %]
Most Frequently Reported [% terms.Bugs %] for
[%+ product.join(', ') FILTER html %]
[% END %]
[% END %]
[% ELSE %]
[% ELSE %]
[% title = "Most Frequently Reported $terms.Bugs" %]
[% title = "Most Frequently Reported $terms.Bugs" %]
...
@@ -44,7 +43,7 @@
...
@@ -44,7 +43,7 @@
[% PROCESS global/header.html.tmpl
[% PROCESS global/header.html.tmpl
title = title
title = title
style
= ".resolved { background-color: #d9d9d9; color: #000000; }"
style
_urls = ['skins/standard/duplicates.css']
%]
%]
<p>
<p>
...
@@ -57,27 +56,26 @@
...
@@ -57,27 +56,26 @@
[%# *** Parameters *** %]
[%# *** Parameters *** %]
[% bug_ids_string =
vis_
bug_ids.join(',') %]
[% bug_ids_string = bug_ids.join(',') %]
<h3><a name="params">Change Parameters</a></h3>
<h3><a name="params">Change Parameters</a></h3>
<form method="get" action="duplicates.cgi">
<form method="get" action="duplicates.cgi">
<input type="hidden" name="sortby" value="[% sortby FILTER html %]">
<input type="hidden" name="sortby" value="[% sortby FILTER html %]">
<input type="hidden" name="reverse" value="[% reverse %]">
<input type="hidden" name="reverse" value="[% reverse
FILTER html
%]">
<input type="hidden" name="bug_id" value="[% bug_ids_string %]">
<input type="hidden" name="bug_id" value="[% bug_ids_string
FILTER html
%]">
<table>
<table>
<tr>
<tr>
<td>When sorting or restricting,
<td>When sorting or restricting, work with:</td>
work with:</td>
<td>
<td>
<input type="radio" name="sortvisible" id="entirelist" value="0"
<input type="radio" name="sortvisible" id="entirelist" value="0"
[%
+ "checked"
IF NOT sortvisible %]>
[%
' checked="checked"'
IF NOT sortvisible %]>
<label for="entirelist">
<label for="entirelist">
entire list
entire list
</label>
</label>
<br>
<br>
<input type="radio" name="sortvisible" id="visiblelist" value="1"
<input type="radio" name="sortvisible" id="visiblelist" value="1"
[%
+ "checked"
IF sortvisible %]>
[%
' checked="checked"'
IF sortvisible %]>
<label for="visiblelist">
<label for="visiblelist">
currently visible list
currently visible list
</label>
</label>
...
@@ -85,9 +83,9 @@
...
@@ -85,9 +83,9 @@
<td rowspan="4" valign="top">Restrict to products:</td>
<td rowspan="4" valign="top">Restrict to products:</td>
<td rowspan="4" valign="top">
<td rowspan="4" valign="top">
<select name="product" size="5" multiple="multiple">
<select name="product" size="5" multiple="multiple">
[% FOREACH p = products %]
[% FOREACH p =
user.get_selectable_
products %]
<option name="[% p.name FILTER html %]"
<option name="[% p.name FILTER html %]"
[%
" selected" IF lsearch(query_products, p.name) != -1
%]
[%
' selected="selected"' IF product.contains(p.name)
%]
>[% p.name FILTER html %]</option>
>[% p.name FILTER html %]</option>
[% END %]
[% END %]
</select>
</select>
...
@@ -95,16 +93,20 @@
...
@@ -95,16 +93,20 @@
</tr>
</tr>
<tr>
<tr>
<td>
Max rows:
</td>
<td>
<label for="maxrows">Max rows:</label>
</td>
<td>
<td>
<input size="4" name="maxrows" value="[% maxrows %]">
<input size="4" name="maxrows" id="maxrows"
value="[% maxrows FILTER html %]">
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>Change column is change in the last:</td>
<td>
<td>
<input size="4" name="changedsince" value="[% changedsince %]"> days
<label for="changedsince">Change column is change in the last:</label>
</td>
<td>
<input size="4" name="changedsince" id="changedsince"
value="[% changedsince FILTER html %]"> days
</td>
</td>
</tr>
</tr>
...
@@ -116,7 +118,7 @@
...
@@ -116,7 +118,7 @@
</td>
</td>
<td>
<td>
<input type="checkbox" name="openonly" id="openonly" value="1"
<input type="checkbox" name="openonly" id="openonly" value="1"
[%
+ "checked"
IF openonly %]>
[%
' checked="checked"'
IF openonly %]>
</td>
</td>
</tr>
</tr>
...
@@ -126,10 +128,9 @@
...
@@ -126,10 +128,9 @@
</form>
</form>
<form method="post" action="buglist.cgi">
<form method="post" action="buglist.cgi">
<input type="hidden" name="bug_id" value="[% bug_ids_string %]">
<input type="hidden" name="bug_id" value="[% bug_ids_string FILTER html %]">
<input type="hidden" name="order" value="Reuse same sort as last time">
Or just give this to me as a <input type="submit" id="list"
Or just give this to me as a <input type="submit" id="list"
value="[% terms.bug %] list">.
value="[% terms.bug %] list">.
(Note: the order may not be the same.)
(Note: the order may not be the same.)
</form>
</form>
...
@@ -139,15 +140,15 @@
...
@@ -139,15 +140,15 @@
<a name="explanation">What are "Most Frequently Reported [% terms.Bugs %]"?</a>
<a name="explanation">What are "Most Frequently Reported [% terms.Bugs %]"?</a>
</b>
</b>
<blockquote>
<p>
The Most Frequent [% terms.Bugs %] page lists the known open [% terms.bugs %] which
The Most Frequent [% terms.Bugs %] page lists the known open
are reported most frequently. It is
[%+ terms.bugs %] which are reported most frequently,
automatically generated from the [% terms.Bugzilla %] database every 24 hours, by
counting the number of direct and indirect duplicates of [% terms.bugs %].
counting the number of direct and indirect duplicates of [% terms.bugs %].
This information is provided in order to assist in minimizing
This information is provided in order to assist in minimizing
the amount of duplicate [% terms.bugs %] entered into [% terms.Bugzilla %], which
the amount of duplicate [% terms.bugs %] entered into [% terms.Bugzilla %],
saves time for Quality Assurance engineers who have to triage the [% terms.bugs %].
which saves time for Quality Assurance engineers who have to triage
</blockquote>
the [% terms.bugs %].
</p>
<b>How do I use this list?</b>
<b>How do I use this list?</b>
...
@@ -166,11 +167,12 @@
...
@@ -166,11 +167,12 @@
<ul>
<ul>
<li><a href="query.cgi">Try and locate a similar [% terms.bug %]</a>
<li><a href="query.cgi">Try and locate a similar [% terms.bug %]</a>
that has already been filed.</li>
that has already been filed.</li>
<li>If you find your [% terms.bug %] in [% terms.Bugzilla %],
<li>If you find your [% terms.bug %] in [% terms.Bugzilla %],
feel free to comment with any new or additional data you may have.</li>
feel free to comment with any new or additional data you may have.</li>
<li>If you cannot find your problem already documented in [% terms.Bugzilla %],
<li>If you cannot find your problem already documented in
<a href="enter_bug.cgi">file a new [% terms.bug %]</a>.</li>
[%+ terms.Bugzilla %],
<a href="enter_bug.cgi">file a new [% terms.bug %]</a>.</li>
</ul>
</ul>
</ul>
</ul>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment