2003-03-27 00:07:02 +00:00
|
|
|
#!/usr/bin/perl -wT
|
2000-06-08 20:30:10 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s): Dawn Endico <endico@mozilla.org>
|
|
|
|
# Terry Weissman <terry@mozilla.org>
|
2002-02-27 08:01:50 +00:00
|
|
|
# Gervase Markham <gerv@gerv.net>
|
2000-06-08 20:30:10 +00:00
|
|
|
|
|
|
|
use strict;
|
2002-01-20 01:44:52 +00:00
|
|
|
|
|
|
|
use lib qw(.);
|
|
|
|
|
2000-06-08 20:30:10 +00:00
|
|
|
require "CGI.pl";
|
|
|
|
|
2002-12-15 09:24:08 +00:00
|
|
|
our $cgi;
|
2002-09-04 22:43:38 +00:00
|
|
|
|
2002-12-15 09:24:08 +00:00
|
|
|
# Convert comma/space separated elements into separate params
|
|
|
|
my @ids = ();
|
2002-02-27 08:01:50 +00:00
|
|
|
|
2002-12-15 09:24:08 +00:00
|
|
|
if (defined $cgi->param('id')) {
|
|
|
|
@ids = split (/[, ]+/, $cgi->param('id'));
|
2000-06-08 20:30:10 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 09:24:08 +00:00
|
|
|
my $ids = join('', map { $_ = "&id=" . $_ } @ids);
|
2000-06-12 06:52:41 +00:00
|
|
|
|
2002-12-15 09:24:08 +00:00
|
|
|
print $cgi->redirect("show_bug.cgi?ctype=xml$ids");
|