summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorMatt Selsky <selsky@columbia.edu>2012-04-24 23:28:23 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-04-24 23:28:23 +0200
commit870deda4a2f8f4a427612127da8dde57294585e8 (patch)
tree986029e322a581e67695eae811d627ec564ed74a /buglist.cgi
parent41beb175fdeffa2ac3598a714ac3acb985ba86a4 (diff)
downloadbugzilla-870deda4a2f8f4a427612127da8dde57294585e8.tar.gz
bugzilla-870deda4a2f8f4a427612127da8dde57294585e8.tar.xz
Bug 745751: Remove support for microsummaries
r/a=LpSolit
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi14
1 files changed, 3 insertions, 11 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 885e50478..89ba3fe46 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -95,13 +95,6 @@ if (defined $cgi->param('ctype') && $cgi->param('ctype') eq "rss") {
$cgi->param('ctype', "atom");
}
-# An agent is a program that automatically downloads and extracts data
-# on its user's behalf. If this request comes from an agent, we turn off
-# various aspects of bug list functionality so agent requests succeed
-# and coexist nicely with regular user requests. Currently the only agent
-# we know about is Firefox's microsummary feature.
-my $agent = ($cgi->http('X-Moz') && $cgi->http('X-Moz') =~ /\bmicrosummary\b/);
-
# Determine the format in which the user would like to receive the output.
# Uses the default format if the user did not specify an output format;
# otherwise validates the user's choice against the list of available formats.
@@ -125,9 +118,8 @@ my $serverpush =
&& $ENV{'HTTP_USER_AGENT'} =~ /Mozilla.[3-9]/
&& (($ENV{'HTTP_USER_AGENT'} !~ /[Cc]ompatible/) || ($ENV{'HTTP_USER_AGENT'} =~ /MSIE 5.*Mac_PowerPC/))
&& $ENV{'HTTP_USER_AGENT'} !~ /WebKit/
- && !$agent
- && !defined($cgi->param('serverpush'))
- || $cgi->param('serverpush');
+ && !defined($cgi->param('serverpush'))
+ || $cgi->param('serverpush');
my $order = $cgi->param('order') || "";
@@ -1064,7 +1056,7 @@ $vars->{'quicksearch'} = $searchstring;
my $contenttype;
my $disposition = "inline";
-if ($format->{'extension'} eq "html" && !$agent) {
+if ($format->{'extension'} eq "html") {
my $list_id = $cgi->param('list_id') || $cgi->param('regetlastlist');
my $search = $user->save_last_search(
{ bugs => \@bugidlist, order => $order, vars => $vars, list_id => $list_id });