Bug 891311: Text in the "My Requests" page is misleading about how the AND/OR radio button works
r=dkl a=justdave git-svn-id: svn://10.0.0.236/trunk@265044 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
3b8690af37
commit
1e7515d129
@ -1 +1 @@
|
|||||||
8765
|
8766
|
||||||
@ -155,22 +155,8 @@ sub queue {
|
|||||||
# need to display a "status" column in the report because the value for that
|
# need to display a "status" column in the report because the value for that
|
||||||
# column will always be the same.
|
# column will always be the same.
|
||||||
my @excluded_columns = ();
|
my @excluded_columns = ();
|
||||||
|
|
||||||
my $do_union = $cgi->param('do_union');
|
my $do_union = $cgi->param('do_union');
|
||||||
|
|
||||||
# Filter requests by status: "pending", "granted", "denied", "all"
|
|
||||||
# (which means any), or "fulfilled" (which means "granted" or "denied").
|
|
||||||
if ($status) {
|
|
||||||
if ($status eq "+-") {
|
|
||||||
push(@criteria, "flags.status IN ('+', '-')");
|
|
||||||
push(@excluded_columns, 'status') unless $do_union;
|
|
||||||
}
|
|
||||||
elsif ($status ne "all") {
|
|
||||||
push(@criteria, "flags.status = '$status'");
|
|
||||||
push(@excluded_columns, 'status') unless $do_union;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# Filter results by exact email address of requester or requestee.
|
# Filter results by exact email address of requester or requestee.
|
||||||
if (defined $cgi->param('requester') && $cgi->param('requester') ne "") {
|
if (defined $cgi->param('requester') && $cgi->param('requester') ne "") {
|
||||||
my $requester = $dbh->quote($cgi->param('requester'));
|
my $requester = $dbh->quote($cgi->param('requester'));
|
||||||
@ -182,23 +168,44 @@ sub queue {
|
|||||||
if ($cgi->param('requestee') ne "-") {
|
if ($cgi->param('requestee') ne "-") {
|
||||||
my $requestee = $dbh->quote($cgi->param('requestee'));
|
my $requestee = $dbh->quote($cgi->param('requestee'));
|
||||||
trick_taint($requestee); # Quoted above
|
trick_taint($requestee); # Quoted above
|
||||||
push(@criteria, $dbh->sql_istrcmp('requestees.login_name',
|
push(@criteria, $dbh->sql_istrcmp('requestees.login_name', $requestee));
|
||||||
$requestee));
|
}
|
||||||
|
else {
|
||||||
|
push(@criteria, "flags.requestee_id IS NULL");
|
||||||
}
|
}
|
||||||
else { push(@criteria, "flags.requestee_id IS NULL") }
|
|
||||||
push(@excluded_columns, 'requestee') unless $do_union;
|
push(@excluded_columns, 'requestee') unless $do_union;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# If the user wants requester = foo OR requestee = bar, we have to join
|
||||||
|
# these criteria separately as all other criteria use AND.
|
||||||
|
if (@criteria == 2 && $do_union) {
|
||||||
|
my $union = join(' OR ', @criteria);
|
||||||
|
@criteria = ("($union)");
|
||||||
|
}
|
||||||
|
|
||||||
|
# Filter requests by status: "pending", "granted", "denied", "all"
|
||||||
|
# (which means any), or "fulfilled" (which means "granted" or "denied").
|
||||||
|
if ($status) {
|
||||||
|
if ($status eq "+-") {
|
||||||
|
push(@criteria, "flags.status IN ('+', '-')");
|
||||||
|
push(@excluded_columns, 'status');
|
||||||
|
}
|
||||||
|
elsif ($status ne "all") {
|
||||||
|
push(@criteria, "flags.status = '$status'");
|
||||||
|
push(@excluded_columns, 'status');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# Filter results by exact product or component.
|
# Filter results by exact product or component.
|
||||||
if (defined $cgi->param('product') && $cgi->param('product') ne "") {
|
if (defined $cgi->param('product') && $cgi->param('product') ne "") {
|
||||||
my $product = Bugzilla::Product->check(scalar $cgi->param('product'));
|
my $product = Bugzilla::Product->check(scalar $cgi->param('product'));
|
||||||
push(@criteria, "bugs.product_id = " . $product->id);
|
push(@criteria, "bugs.product_id = " . $product->id);
|
||||||
push(@excluded_columns, 'product') unless $do_union;
|
push(@excluded_columns, 'product');
|
||||||
if (defined $cgi->param('component') && $cgi->param('component') ne "") {
|
if (defined $cgi->param('component') && $cgi->param('component') ne "") {
|
||||||
my $component = Bugzilla::Component->check({ product => $product,
|
my $component = Bugzilla::Component->check({ product => $product,
|
||||||
name => scalar $cgi->param('component') });
|
name => scalar $cgi->param('component') });
|
||||||
push(@criteria, "bugs.component_id = " . $component->id);
|
push(@criteria, "bugs.component_id = " . $component->id);
|
||||||
push(@excluded_columns, 'component') unless $do_union;
|
push(@excluded_columns, 'component');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -216,14 +223,11 @@ sub queue {
|
|||||||
my $quoted_form_type = $dbh->quote($form_type);
|
my $quoted_form_type = $dbh->quote($form_type);
|
||||||
trick_taint($quoted_form_type); # Already SQL quoted
|
trick_taint($quoted_form_type); # Already SQL quoted
|
||||||
push(@criteria, "flagtypes.name = " . $quoted_form_type);
|
push(@criteria, "flagtypes.name = " . $quoted_form_type);
|
||||||
push(@excluded_columns, 'type') unless $do_union;
|
push(@excluded_columns, 'type');
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add the criteria to the query. Do a union if OR is selected.
|
$query .= ' AND ' . join(' AND ', @criteria) if scalar(@criteria);
|
||||||
# Otherwise do an intersection.
|
|
||||||
my $and_or = $do_union ? ' OR ' : ' AND ';
|
|
||||||
$query .= " AND (" . join($and_or, @criteria) . ") " if scalar(@criteria);
|
|
||||||
|
|
||||||
# Group the records by flag ID so we don't get multiple rows of data
|
# Group the records by flag ID so we don't get multiple rows of data
|
||||||
# for each flag. This is only necessary because of the code that
|
# for each flag. This is only necessary because of the code that
|
||||||
# removes flags on bugs the user is unauthorized to access.
|
# removes flags on bugs the user is unauthorized to access.
|
||||||
|
|||||||
@ -147,18 +147,16 @@ to some group are shown by default.
|
|||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th></th>
|
||||||
<td>
|
<td>
|
||||||
<label><input type="radio" name="do_union" value="0"
|
<select id="do_union" name="do_union">
|
||||||
[% 'checked="checked"' IF !cgi.param('do_union') %]>AND *</label>
|
<option value="0">Match the requester AND requestee</option>
|
||||||
<label><input type="radio" name="do_union" value="1"
|
<option value="1" [% 'selected="selected"' IF cgi.param('do_union') %]>
|
||||||
[% 'checked="checked"' IF cgi.param('do_union') %]>OR *</label>
|
Match the requester OR requestee</option>
|
||||||
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="3"></td>
|
<td colspan="3"></td>
|
||||||
<td><input type="submit" id="filter" value="Filter"></td>
|
<td><input type="submit" id="filter" value="Filter"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<p>(* The logical conjunction/disjunction between the requester
|
|
||||||
and the requestee)</p>
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
[% column_headers = {
|
[% column_headers = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user