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";
|
|
|
|
|
2001-06-01 13:38:01 +00:00
|
|
|
ConnectToDatabase();
|
|
|
|
|
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.
|
2001-06-01 13:38:01 +00:00
|
|
|
quietly_check_login();
|
|
|
|
|
|
|
|
# Make sure the bug ID is a positive integer representing an existing
|
|
|
|
# bug that the user is authorized to access.
|
|
|
|
ValidateBugID($::FORM{'id'});
|
|
|
|
|
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'}) =
|
|
|
|
GetBugActivity($::FORM{'id'});
|
1998-09-15 21:49:26 +00:00
|
|
|
|
2002-04-03 18:54:18 +00:00
|
|
|
$vars->{'bug_id'} = $::FORM{'id'};
|
1998-09-15 21:49:26 +00:00
|
|
|
|
2002-04-03 18:54:18 +00:00
|
|
|
print "Content-type: text/html\n\n";
|
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
|
|
|
|