2003-03-27 00:07:02 +00:00
|
|
|
#!/usr/bin/perl -wT
|
1998-09-15 21:49:26 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
1998-08-26 06:14:20 +00:00
|
|
|
#
|
1999-11-01 23:33:56 +00: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 06:14:20 +00:00
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
1999-11-01 23:33:56 +00:00
|
|
|
#
|
1998-08-26 06:14:20 +00:00
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-01 23:33:56 +00:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
1998-08-26 06:14:20 +00:00
|
|
|
# Contributor(s): Terry Weissman <terry@mozilla.org>
|
2001-06-01 13:38:01 +00:00
|
|
|
# Myk Melez <myk@mozilla.org>
|
2002-04-03 18:54:18 +00:00
|
|
|
# Gervase Markham <gerv@gerv.net>
|
1998-08-26 06:14:20 +00:00
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
use strict;
|
1998-08-26 06:14:20 +00:00
|
|
|
|
2002-01-20 01:44:52 +00:00
|
|
|
use lib qw(.);
|
2002-04-03 18:54:18 +00:00
|
|
|
use vars qw ($template $vars);
|
2002-01-20 01:44:52 +00:00
|
|
|
|
1998-09-15 21:49:26 +00:00
|
|
|
require "CGI.pl";
|
2004-02-27 11:13:55 +00:00
|
|
|
my $cgi = Bugzilla->cgi;
|
1998-09-15 21:49:26 +00:00
|
|
|
|
2002-04-03 18:54:18 +00:00
|
|
|
###############################################################################
|
2001-06-01 13:38:01 +00:00
|
|
|
# Begin Data/Security Validation
|
2002-04-03 18:54:18 +00:00
|
|
|
###############################################################################
|
2001-06-01 13:38:01 +00:00
|
|
|
|
2002-09-22 17:15:13 +00:00
|
|
|
# Check whether or not the user is currently logged in.
|
2004-03-27 03:51:44 +00:00
|
|
|
Bugzilla->login();
|
2001-06-01 13:38:01 +00:00
|
|
|
|
|
|
|
# Make sure the bug ID is a positive integer representing an existing
|
|
|
|
# bug that the user is authorized to access.
|
2004-02-27 11:13:55 +00:00
|
|
|
my $bug_id = $cgi->param('id');
|
|
|
|
ValidateBugID($bug_id);
|
2001-06-01 13:38:01 +00:00
|
|
|
|
2002-04-03 18:54:18 +00:00
|
|
|
###############################################################################
|
2001-06-01 13:38:01 +00:00
|
|
|
# End Data/Security Validation
|
2002-04-03 18:54:18 +00:00
|
|
|
###############################################################################
|
2001-06-01 13:38:01 +00:00
|
|
|
|
2002-04-03 18:54:18 +00:00
|
|
|
($vars->{'operations'}, $vars->{'incomplete_data'}) =
|
2004-02-27 11:13:55 +00:00
|
|
|
GetBugActivity($bug_id);
|
1998-09-15 21:49:26 +00:00
|
|
|
|
2004-02-27 11:13:55 +00:00
|
|
|
$vars->{'bug_id'} = $bug_id;
|
1998-09-15 21:49:26 +00:00
|
|
|
|
2003-05-05 01:15:38 +00:00
|
|
|
print Bugzilla->cgi->header();
|
1998-09-15 21:49:26 +00:00
|
|
|
|
2002-04-24 07:24:50 +00:00
|
|
|
$template->process("bug/activity/show.html.tmpl", $vars)
|
|
|
|
|| ThrowTemplateError($template->error());
|
2000-01-14 22:35:49 +00:00
|
|
|
|