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>
|
2001-06-01 17:38:01 +04:00
|
|
|
# Myk Melez <myk@mozilla.org>
|
2002-04-03 22:54:18 +04:00
|
|
|
# Gervase Markham <gerv@gerv.net>
|
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(.);
|
2002-04-03 22:54:18 +04:00
|
|
|
use vars qw ($template $vars);
|
2002-01-20 04:44:52 +03:00
|
|
|
|
1998-09-16 01:49:26 +04:00
|
|
|
require "CGI.pl";
|
|
|
|
|
2001-06-01 17:38:01 +04:00
|
|
|
ConnectToDatabase();
|
|
|
|
|
2002-04-03 22:54:18 +04:00
|
|
|
###############################################################################
|
2001-06-01 17:38:01 +04:00
|
|
|
# Begin Data/Security Validation
|
2002-04-03 22:54:18 +04:00
|
|
|
###############################################################################
|
2001-06-01 17:38:01 +04:00
|
|
|
|
|
|
|
# Check whether or not the user is currently logged in. This function
|
|
|
|
# sets the value of $::usergroupset, the binary number that records
|
|
|
|
# the set of groups to which the user belongs and which we can use
|
|
|
|
# to determine whether or not the user is authorized to access this bug.
|
|
|
|
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 22:54:18 +04:00
|
|
|
###############################################################################
|
2001-06-01 17:38:01 +04:00
|
|
|
# End Data/Security Validation
|
2002-04-03 22:54:18 +04:00
|
|
|
###############################################################################
|
2001-06-01 17:38:01 +04:00
|
|
|
|
2002-04-03 22:54:18 +04:00
|
|
|
($vars->{'operations'}, $vars->{'incomplete_data'}) =
|
|
|
|
GetBugActivity($::FORM{'id'});
|
1998-09-16 01:49:26 +04:00
|
|
|
|
2002-04-03 22:54:18 +04:00
|
|
|
$vars->{'bug_id'} = $::FORM{'id'};
|
1998-09-16 01:49:26 +04:00
|
|
|
|
2002-04-03 22:54:18 +04:00
|
|
|
print "Content-type: text/html\n\n";
|
1998-09-16 01:49:26 +04:00
|
|
|
|
2002-04-24 11:24:50 +04:00
|
|
|
$template->process("bug/activity/show.html.tmpl", $vars)
|
|
|
|
|| ThrowTemplateError($template->error());
|
2000-01-15 01:35:49 +03:00
|
|
|
|