From 5eee338175a2f2bf78290ad4154639a2972077ee Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Sat, 15 Jan 2000 06:35:24 +0000 Subject: Patch by Ramon Felciano , with many tweaks by me. Added a footer to every page. Add some options to do things like display checkboxes instead of scrolling lists, and a new formatting for email diffs, and show list items capitalized instead of all upper case. --- enter_bug.cgi | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) (limited to 'enter_bug.cgi') diff --git a/enter_bug.cgi b/enter_bug.cgi index e76c173bc..856b906cf 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -12,14 +12,24 @@ # 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. -# +# Corporation. Portions created by Netscape are Copyright (C) 1998 +# Netscape Communications Corporation. All Rights Reserved. +# # Contributor(s): Terry Weissman + +######################################################################## +# +# enter_bug.cgi +# ------------- +# Displays bug entry form. Bug fields are specified through popup menus, +# drop-down lists, or text fields. Default for these values can be passed +# in as parameters to the cgi. +# +######################################################################## + use diagnostics; use strict; @@ -56,6 +66,7 @@ if (!defined $::FORM{'product'}) { print ""; } print "\n"; + PutFooter(); exit; } $::FORM{'product'} = $prodlist[0]; @@ -184,7 +195,7 @@ my $opsys_popup = make_popup('op_sys', \@::legal_opsys, pickos(), 0); my $component_popup = make_popup('component', $::components{$product}, formvalue('component'), 1); -PutHeader ("Enter Bug"); +PutHeader ("Enter Bug","Enter Bug","This page lets you enter a new bug into Bugzilla."); print "
@@ -231,7 +242,7 @@ print " "; if (Param('letsubmitterchoosepriority')) { print " - Priority: + Resolution
Priority
:
$priority_popup"; } else { print ' - +           @@ -302,5 +313,7 @@ print "
\n"; +PutFooter(); + print "\n"; -- cgit v1.2.1