2003-03-27 03:07:02 +03:00
|
|
|
#!/usr/bin/perl -wT
|
1998-09-16 01:49:26 +04:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
1998-08-26 10:14:20 +04:00
|
|
|
#
|
1999-11-02 02:33:56 +03:00
|
|
|
# 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.
|
|
|
|
#
|
1998-08-26 10:14:20 +04:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-02 02:33:56 +03:00
|
|
|
#
|
1998-08-26 10:14:20 +04:00
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-02 02:33:56 +03:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
1998-08-26 10:14:20 +04:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
2002-07-27 00:37:06 +04:00
|
|
|
# Gervase Markham <gerv@gerv.net>
|
2006-07-17 23:58:56 +04:00
|
|
|
# Max Kanat-Alexander <mkanat@bugzilla.org>
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
use strict;
|
1998-08-26 10:14:20 +04:00
|
|
|
|
2002-01-20 04:44:52 +03:00
|
|
|
use lib qw(.);
|
|
|
|
|
2003-05-05 05:15:38 +04:00
|
|
|
use Bugzilla;
|
2005-01-16 23:27:24 +03:00
|
|
|
use Bugzilla::Constants;
|
2006-06-21 04:44:48 +04:00
|
|
|
use Bugzilla::Error;
|
2005-03-16 01:10:14 +03:00
|
|
|
use Bugzilla::User;
|
2006-03-09 03:09:00 +03:00
|
|
|
use Bugzilla::Keyword;
|
1998-09-16 01:49:26 +04:00
|
|
|
|
2004-03-27 06:51:44 +03:00
|
|
|
Bugzilla->login();
|
2002-06-07 20:39:38 +04:00
|
|
|
|
2003-05-05 05:15:38 +04:00
|
|
|
my $cgi = Bugzilla->cgi;
|
2005-10-25 03:11:56 +04:00
|
|
|
my $template = Bugzilla->template;
|
|
|
|
my $vars = {};
|
2003-05-05 05:15:38 +04:00
|
|
|
|
1998-08-26 10:14:20 +04:00
|
|
|
# The master list not only says what fields are possible, but what order
|
|
|
|
# they get displayed in.
|
2002-12-08 03:42:55 +03:00
|
|
|
my @masterlist = ("opendate", "changeddate", "bug_severity", "priority",
|
|
|
|
"rep_platform", "assigned_to", "assigned_to_realname",
|
|
|
|
"reporter", "reporter_realname", "bug_status",
|
2004-08-21 01:49:20 +04:00
|
|
|
"resolution");
|
|
|
|
|
2006-07-04 01:26:22 +04:00
|
|
|
if (Bugzilla->params->{"useclassification"}) {
|
2004-08-21 01:49:20 +04:00
|
|
|
push(@masterlist, "classification");
|
|
|
|
}
|
|
|
|
|
2004-12-05 17:24:10 +03:00
|
|
|
push(@masterlist, ("product", "component", "version", "op_sys"));
|
1999-01-28 00:17:10 +03:00
|
|
|
|
2006-07-04 01:26:22 +04:00
|
|
|
if (Bugzilla->params->{"usevotes"}) {
|
2004-12-05 17:24:10 +03:00
|
|
|
push (@masterlist, "votes");
|
|
|
|
}
|
2006-07-04 01:26:22 +04:00
|
|
|
if (Bugzilla->params->{"usebugaliases"}) {
|
2003-05-13 08:59:35 +04:00
|
|
|
unshift(@masterlist, "alias");
|
|
|
|
}
|
2006-07-04 01:26:22 +04:00
|
|
|
if (Bugzilla->params->{"usetargetmilestone"}) {
|
1999-01-28 00:17:10 +03:00
|
|
|
push(@masterlist, "target_milestone");
|
|
|
|
}
|
2006-07-04 01:26:22 +04:00
|
|
|
if (Bugzilla->params->{"useqacontact"}) {
|
1999-01-28 00:17:10 +03:00
|
|
|
push(@masterlist, "qa_contact");
|
2002-11-04 03:57:56 +03:00
|
|
|
push(@masterlist, "qa_contact_realname");
|
1999-01-28 00:17:10 +03:00
|
|
|
}
|
2006-07-04 01:26:22 +04:00
|
|
|
if (Bugzilla->params->{"usestatuswhiteboard"}) {
|
1999-01-28 00:17:10 +03:00
|
|
|
push(@masterlist, "status_whiteboard");
|
|
|
|
}
|
2006-03-09 03:09:00 +03:00
|
|
|
if (Bugzilla::Keyword::keyword_count()) {
|
2000-01-13 23:25:10 +03:00
|
|
|
push(@masterlist, "keywords");
|
|
|
|
}
|
1999-01-28 00:17:10 +03:00
|
|
|
|
2006-07-04 01:26:22 +04:00
|
|
|
if (UserInGroup(Bugzilla->params->{"timetrackinggroup"})) {
|
2002-10-13 08:26:24 +04:00
|
|
|
push(@masterlist, ("estimated_time", "remaining_time", "actual_time",
|
2005-01-16 16:36:05 +03:00
|
|
|
"percentage_complete", "deadline"));
|
2002-10-13 08:26:24 +04:00
|
|
|
}
|
|
|
|
|
2002-12-08 03:42:55 +03:00
|
|
|
push(@masterlist, ("short_desc", "short_short_desc"));
|
1998-08-26 10:14:20 +04:00
|
|
|
|
2006-07-17 23:58:56 +04:00
|
|
|
push(@masterlist, Bugzilla->custom_field_names);
|
|
|
|
|
2002-07-27 00:37:06 +04:00
|
|
|
$vars->{'masterlist'} = \@masterlist;
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
my @collist;
|
2004-04-02 03:44:22 +04:00
|
|
|
if (defined $cgi->param('rememberedquery')) {
|
2000-02-04 17:08:00 +03:00
|
|
|
my $splitheader = 0;
|
2004-04-02 03:44:22 +04:00
|
|
|
if (defined $cgi->param('resetit')) {
|
2005-01-16 23:27:24 +03:00
|
|
|
@collist = DEFAULT_COLUMN_LIST;
|
1998-08-26 10:14:20 +04:00
|
|
|
} else {
|
1998-09-16 01:49:26 +04:00
|
|
|
foreach my $i (@masterlist) {
|
2004-04-02 03:44:22 +04:00
|
|
|
if (defined $cgi->param("column_$i")) {
|
1998-09-16 01:49:26 +04:00
|
|
|
push @collist, $i;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
2004-04-02 03:44:22 +04:00
|
|
|
if (defined $cgi->param('splitheader')) {
|
2005-07-07 15:53:38 +04:00
|
|
|
$splitheader = $cgi->param('splitheader')? 1: 0;
|
2000-02-04 17:08:00 +03:00
|
|
|
}
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
my $list = join(" ", @collist);
|
2006-07-04 01:26:22 +04:00
|
|
|
my $urlbase = Bugzilla->params->{"urlbase"};
|
2003-05-05 05:15:38 +04:00
|
|
|
|
2005-07-08 07:39:19 +04:00
|
|
|
if ($list) {
|
|
|
|
$cgi->send_cookie(-name => 'COLUMNLIST',
|
|
|
|
-value => $list,
|
|
|
|
-expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$cgi->remove_cookie('COLUMNLIST');
|
|
|
|
}
|
2005-07-07 15:53:38 +04:00
|
|
|
if ($splitheader) {
|
|
|
|
$cgi->send_cookie(-name => 'SPLITHEADER',
|
|
|
|
-value => $splitheader,
|
|
|
|
-expires => 'Fri, 01-Jan-2038 00:00:00 GMT');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$cgi->remove_cookie('SPLITHEADER');
|
|
|
|
}
|
2003-05-05 05:15:38 +04:00
|
|
|
|
2002-08-15 11:14:34 +04:00
|
|
|
$vars->{'message'} = "change_columns";
|
2004-04-02 03:44:22 +04:00
|
|
|
$vars->{'redirect_url'} = "buglist.cgi?".$cgi->param('rememberedquery');
|
2003-11-19 09:29:20 +03:00
|
|
|
|
|
|
|
# If we're running on Microsoft IIS, using cgi->redirect discards
|
|
|
|
# the Set-Cookie lines -- workaround is to use the old-fashioned
|
|
|
|
# redirection mechanism. See bug 214466 for details.
|
2004-09-24 04:53:26 +04:00
|
|
|
if ($ENV{'SERVER_SOFTWARE'} =~ /Microsoft-IIS/
|
|
|
|
|| $ENV{'SERVER_SOFTWARE'} =~ /Sun ONE Web/)
|
|
|
|
{
|
2003-11-19 09:29:20 +03:00
|
|
|
print $cgi->header(-type => "text/html",
|
|
|
|
-refresh => "0; URL=$vars->{'redirect_url'}");
|
2004-09-24 04:53:26 +04:00
|
|
|
}
|
|
|
|
else {
|
2003-11-19 09:29:20 +03:00
|
|
|
print $cgi->redirect($vars->{'redirect_url'});
|
|
|
|
}
|
|
|
|
|
2002-07-27 00:37:06 +04:00
|
|
|
$template->process("global/message.html.tmpl", $vars)
|
|
|
|
|| ThrowTemplateError($template->error());
|
1998-09-16 01:49:26 +04:00
|
|
|
exit;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
2004-04-02 03:44:22 +04:00
|
|
|
if (defined $cgi->cookie('COLUMNLIST')) {
|
|
|
|
@collist = split(/ /, $cgi->cookie('COLUMNLIST'));
|
1998-08-26 10:14:20 +04:00
|
|
|
} else {
|
2005-01-16 23:27:24 +03:00
|
|
|
@collist = DEFAULT_COLUMN_LIST;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
2002-07-27 00:37:06 +04:00
|
|
|
$vars->{'collist'} = \@collist;
|
2004-04-17 10:04:14 +04:00
|
|
|
$vars->{'splitheader'} = $cgi->cookie('SPLITHEADER') ? 1 : 0;
|
2002-01-31 23:12:50 +03:00
|
|
|
|
2005-08-10 05:30:41 +04:00
|
|
|
$vars->{'buffer'} = $cgi->query_string();
|
1998-08-26 10:14:20 +04:00
|
|
|
|
2002-01-31 23:12:50 +03:00
|
|
|
# Generate and return the UI (HTML page) from the appropriate template.
|
2003-05-05 05:15:38 +04:00
|
|
|
print $cgi->header();
|
2002-04-24 11:24:50 +04:00
|
|
|
$template->process("list/change-columns.html.tmpl", $vars)
|
|
|
|
|| ThrowTemplateError($template->error());
|