2002-01-20 04:44:52 +03:00
|
|
|
#!/usr/bonsaitools/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>
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
use diagnostics;
|
|
|
|
use strict;
|
1998-08-26 10:14:20 +04:00
|
|
|
|
2002-01-20 04:44:52 +03:00
|
|
|
use lib qw(.);
|
|
|
|
|
2002-02-13 05:27:24 +03:00
|
|
|
use vars qw(
|
|
|
|
@legal_keywords
|
|
|
|
$buffer
|
|
|
|
$template
|
|
|
|
$vars
|
|
|
|
);
|
2001-06-01 06:07:28 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
require "CGI.pl";
|
|
|
|
|
2002-06-17 13:39:00 +04:00
|
|
|
ConnectToDatabase();
|
2002-06-07 20:39:38 +04:00
|
|
|
quietly_check_login();
|
|
|
|
|
1998-11-20 22:18:37 +03:00
|
|
|
print "Content-type: text/html\n";
|
|
|
|
|
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.
|
|
|
|
|
2000-01-13 23:25:10 +03:00
|
|
|
GetVersionTable();
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
my @masterlist = ("opendate", "changeddate", "severity", "priority",
|
|
|
|
"platform", "owner", "reporter", "status", "resolution",
|
2001-11-27 02:29:29 +03:00
|
|
|
"product", "component", "version", "os", "votes");
|
1999-01-28 00:17:10 +03:00
|
|
|
|
|
|
|
if (Param("usetargetmilestone")) {
|
|
|
|
push(@masterlist, "target_milestone");
|
|
|
|
}
|
|
|
|
if (Param("useqacontact")) {
|
|
|
|
push(@masterlist, "qa_contact");
|
|
|
|
}
|
|
|
|
if (Param("usestatuswhiteboard")) {
|
|
|
|
push(@masterlist, "status_whiteboard");
|
|
|
|
}
|
2000-01-13 23:25:10 +03:00
|
|
|
if (@::legal_keywords) {
|
|
|
|
push(@masterlist, "keywords");
|
|
|
|
}
|
1999-01-28 00:17:10 +03:00
|
|
|
|
|
|
|
|
|
|
|
push(@masterlist, ("summary", "summaryfull"));
|
1998-08-26 10:14:20 +04:00
|
|
|
|
2002-01-31 23:12:50 +03:00
|
|
|
$vars->{masterlist} = \@masterlist;
|
1998-08-26 10:14:20 +04:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
my @collist;
|
|
|
|
if (defined $::FORM{'rememberedquery'}) {
|
2000-02-04 17:08:00 +03:00
|
|
|
my $splitheader = 0;
|
1998-09-16 01:49:26 +04:00
|
|
|
if (defined $::FORM{'resetit'}) {
|
|
|
|
@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) {
|
|
|
|
if (defined $::FORM{"column_$i"}) {
|
|
|
|
push @collist, $i;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
}
|
2000-02-04 17:08:00 +03:00
|
|
|
if (exists $::FORM{'splitheader'}) {
|
|
|
|
$splitheader = $::FORM{'splitheader'};
|
|
|
|
}
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
1998-09-16 01:49:26 +04:00
|
|
|
my $list = join(" ", @collist);
|
2000-08-31 03:01:26 +04:00
|
|
|
my $urlbase = Param("urlbase");
|
2001-10-13 04:40:41 +04:00
|
|
|
my $cookiepath = Param("cookiepath");
|
|
|
|
print "Set-Cookie: COLUMNLIST=$list ; path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n";
|
|
|
|
print "Set-Cookie: SPLITHEADER=$::FORM{'splitheader'} ; path=$cookiepath ; expires=Sun, 30-Jun-2029 00:00:00 GMT\n";
|
1998-09-16 01:49:26 +04:00
|
|
|
print "Refresh: 0; URL=buglist.cgi?$::FORM{'rememberedquery'}\n";
|
1998-11-20 22:18:37 +03:00
|
|
|
print "\n";
|
2002-06-28 04:18:32 +04:00
|
|
|
print "<meta http-equiv=\"Refresh\" content=\"1; URL=$urlbase"."buglist.cgi?$::FORM{'rememberedquery'}\">\n";
|
|
|
|
print "<title>What a hack.</title>\n";
|
1999-09-23 23:08:03 +04:00
|
|
|
PutHeader ("Change columns");
|
1998-09-16 01:49:26 +04:00
|
|
|
print "Resubmitting your query with new columns...\n";
|
|
|
|
exit;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
if (defined $::COOKIE{'COLUMNLIST'}) {
|
|
|
|
@collist = split(/ /, $::COOKIE{'COLUMNLIST'});
|
1998-08-26 10:14:20 +04:00
|
|
|
} else {
|
1998-09-16 01:49:26 +04:00
|
|
|
@collist = @::default_column_list;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
2002-01-31 23:12:50 +03:00
|
|
|
$vars->{collist} = \@collist;
|
|
|
|
|
|
|
|
$vars->{splitheader} = 0;
|
2000-02-04 17:08:00 +03:00
|
|
|
if ($::COOKIE{'SPLITHEADER'}) {
|
2002-01-31 23:12:50 +03:00
|
|
|
$vars->{splitheader} = 1;
|
2000-02-04 17:08:00 +03:00
|
|
|
}
|
|
|
|
|
2002-01-31 23:12:50 +03:00
|
|
|
my %desc = ();
|
1998-09-16 01:49:26 +04:00
|
|
|
foreach my $i (@masterlist) {
|
|
|
|
$desc{$i} = $i;
|
1998-08-26 10:14:20 +04:00
|
|
|
}
|
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
$desc{'summary'} = "Summary (first 60 characters)";
|
|
|
|
$desc{'summaryfull'} = "Full Summary";
|
1998-08-26 10:14:20 +04:00
|
|
|
|
2002-01-31 23:12:50 +03:00
|
|
|
$vars->{desc} = \%desc;
|
|
|
|
$vars->{buffer} = $::buffer;
|
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.
|
|
|
|
print "Content-type: text/html\n\n";
|
2002-04-24 11:24:50 +04:00
|
|
|
$template->process("list/change-columns.html.tmpl", $vars)
|
|
|
|
|| ThrowTemplateError($template->error());
|
1998-08-26 10:14:20 +04:00
|
|
|
|