enter_bug.cgi 8.11 KB
Newer Older
1 2
#!/usr/bonsaitools/bin/perl -w
# -*- Mode: perl; indent-tabs-mode: nil -*-
terry%netscape.com's avatar
terry%netscape.com committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (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): Terry Weissman <terry@mozilla.org>

22 23
use diagnostics;
use strict;
terry%netscape.com's avatar
terry%netscape.com committed
24

25
require "CGI.pl";
26

27 28 29 30 31 32 33 34 35 36 37 38 39 40
# Shut up misguided -w warnings about "used only once":
use vars @::legal_platform,
    @::buffer,
    @::legal_severity,
    @::legal_opsys,
    @::legal_priority;


if (!defined $::FORM{'product'}) {
    GetVersionTable();
    my @prodlist = keys %::versions;
    if ($#prodlist != 0) {
        print "Content-type: text/html\n\n";
        PutHeader("Enter Bug");
41
        
42 43
        print "<H2>First, you must pick a product on which to enter\n";
        print "a bug.</H2>\n";
44
        print "<table>";
45
        foreach my $p (sort (@prodlist)) {
46
            print "<tr><th align=right valign=top><a href=\"enter_bug.cgi?product=" . url_quote($p) . "\"&$::buffer>$p</a>:</th>\n";
47
            if (defined $::proddesc{$p}) {
48
                print "<td valign=top>$::proddesc{$p}</td>\n";
49 50
            }
            print "</tr>";
51
        }
52
        print "</table>\n";
53
        exit;
54
    }
55
    $::FORM{'product'} = $prodlist[0];
56 57
}

58
my $product = $::FORM{'product'};
terry%netscape.com's avatar
terry%netscape.com committed
59

60
confirm_login();
terry%netscape.com's avatar
terry%netscape.com committed
61

62
print "Content-type: text/html\n\n";
terry%netscape.com's avatar
terry%netscape.com committed
63

64 65 66 67 68 69 70 71 72 73
sub formvalue {
    my ($name, $default) = (@_);
    if (exists $::FORM{$name}) {
        return $::FORM{$name};
    }
    if (defined $default) {
        return $default;
    }
    return "";
}
terry%netscape.com's avatar
terry%netscape.com committed
74

75 76 77 78
sub pickplatform {
    my $value = formvalue("rep_platform");
    if ($value ne "") {
        return $value;
terry%netscape.com's avatar
terry%netscape.com committed
79
    }
80 81 82 83
    for ($ENV{'HTTP_USER_AGENT'}) {
        /Mozilla.*\(Windows/ && do {return "PC";};
        /Mozilla.*\(Macintosh/ && do {return "Macintosh";};
        /Mozilla.*\(Win/ && do {return "PC";};
84 85 86 87 88 89
        /Mozilla.*Linux.*86/ && do {return "PC";};
        /Mozilla.*Linux.*alpha/ && do {return "DEC";};
        /Mozilla.*OSF/ && do {return "DEC";};
        /Mozilla.*HP-UX/ && do {return "HP";};
        /Mozilla.*IRIX/ && do {return "SGI";};
        /Mozilla.*(SunOS|Solaris)/ && do {return "Sun";};
90
        # default
91
        return "Other";
terry%netscape.com's avatar
terry%netscape.com committed
92 93 94
    }
}

95

terry%netscape.com's avatar
terry%netscape.com committed
96

97 98 99 100 101
sub pickversion {
    my $version = formvalue('version');
    if ($version eq "") {
        if ($ENV{'HTTP_USER_AGENT'} =~ m@Mozilla[ /]([^ ]*)@) {
            $version = $1;
terry%netscape.com's avatar
terry%netscape.com committed
102 103 104
        }
    }
    
105 106
    if (lsearch($::versions{$product}, $version) >= 0) {
        return $version;
terry%netscape.com's avatar
terry%netscape.com committed
107
    } else {
108 109 110 111
        if (defined $::COOKIE{"VERSION-$product"}) {
            if (lsearch($::versions{$product},
                        $::COOKIE{"VERSION-$product"}) >= 0) {
                return $::COOKIE{"VERSION-$product"};
terry%netscape.com's avatar
terry%netscape.com committed
112 113 114
            }
        }
    }
115
    return $::versions{$product}->[0];
terry%netscape.com's avatar
terry%netscape.com committed
116 117 118
}


119 120 121 122
sub pickcomponent {
    my $result =formvalue('component');
    if ($result ne "" && lsearch($::components{$product}, $result) < 0) {
        $result = "";
terry%netscape.com's avatar
terry%netscape.com committed
123
    }
124
    return $result;
terry%netscape.com's avatar
terry%netscape.com committed
125 126 127
}


128 129 130
sub pickos {
    if (formvalue('op_sys') ne "") {
        return formvalue('op_sys');
terry%netscape.com's avatar
terry%netscape.com committed
131
    }
132 133 134 135
    for ($ENV{'HTTP_USER_AGENT'}) {
        /Mozilla.*\(.*;.*; IRIX.*\)/    && do {return "IRIX";};
        /Mozilla.*\(.*;.*; 32bit.*\)/   && do {return "Windows 95";};
        /Mozilla.*\(.*;.*; 16bit.*\)/   && do {return "Windows 3.1";};
136 137
        /Mozilla.*\(.*;.*; 68K.*\)/     && do {return "Mac System 8.5";};
        /Mozilla.*\(.*;.*; PPC.*\)/     && do {return "Mac System 8.5";};
138 139 140 141 142
        /Mozilla.*\(.*;.*; OSF.*\)/     && do {return "OSF/1";};
        /Mozilla.*\(.*;.*; Linux.*\)/   && do {return "Linux";};
        /Mozilla.*\(.*;.*; SunOS 5.*\)/ && do {return "Solaris";};
        /Mozilla.*\(.*;.*; SunOS.*\)/   && do {return "SunOS";};
        /Mozilla.*\(.*;.*; SunOS.*\)/   && do {return "SunOS";};
143
        /Mozilla.*\(.*;.*; BSD\/OS.*\)/ && do {return "BSDI";};
144 145 146 147 148
        /Mozilla.*\(Win16.*\)/          && do {return "Windows 3.1";};
        /Mozilla.*\(Win95.*\)/          && do {return "Windows 95";};
        /Mozilla.*\(WinNT.*\)/          && do {return "Windows NT";};
        # default
        return "other";
terry%netscape.com's avatar
terry%netscape.com committed
149 150 151 152
    }
}


153
GetVersionTable();
terry%netscape.com's avatar
terry%netscape.com committed
154

155 156
my $assign_element = GeneratePersonInput('assigned_to', 1,
                                         formvalue('assigned_to'));
157
my $cc_element = GeneratePeopleInput('cc', formvalue('cc'));
terry%netscape.com's avatar
terry%netscape.com committed
158 159


160 161 162 163 164 165 166
my $priority_popup = make_popup('priority', \@::legal_priority,
                                formvalue('priority', 'P2'), 0);
my $sev_popup = make_popup('bug_severity', \@::legal_severity,
                           formvalue('bug_severity', 'normal'), 0);
my $platform_popup = make_popup('rep_platform', \@::legal_platform,
                                pickplatform(), 0);
my $opsys_popup = make_popup('op_sys', \@::legal_opsys, pickos(), 0);
terry%netscape.com's avatar
terry%netscape.com committed
167

168 169
my $component_popup = make_popup('component', $::components{$product},
                                 formvalue('component'), 1);
terry%netscape.com's avatar
terry%netscape.com committed
170

171
PutHeader ("Enter Bug");
terry%netscape.com's avatar
terry%netscape.com committed
172

173
print "
terry%netscape.com's avatar
terry%netscape.com committed
174 175
<FORM NAME=enterForm METHOD=POST ACTION=\"post_bug.cgi\">
<INPUT TYPE=HIDDEN NAME=bug_status VALUE=NEW>
176
<INPUT TYPE=HIDDEN NAME=reporter VALUE=$::COOKIE{'Bugzilla_login'}>
177
<INPUT TYPE=HIDDEN NAME=product VALUE=$product>
terry%netscape.com's avatar
terry%netscape.com committed
178 179 180
  <TABLE CELLSPACING=2 CELLPADDING=0 BORDER=0>
  <TR>
    <td ALIGN=right valign=top><B>Product:</B></td>
181 182 183
    <td valign=top>$product</td>
  </TR>
  <TR>
terry%netscape.com's avatar
terry%netscape.com committed
184
    <td ALIGN=right valign=top><B>Version:</B></td>
185
    <td>" . Version_element(pickversion(), $product) . "</td>
terry%netscape.com's avatar
terry%netscape.com committed
186 187 188 189 190 191 192
    <td align=right valign=top><b>Component:</b></td>
    <td>$component_popup</td>
  </TR>
  <tr><td>&nbsp<td> <td> <td> <td> <td> </tr>
  <TR>
    <td align=right><b><B><A HREF=\"bug_status.html#rep_platform\">Platform:</A></B></td>
    <TD>$platform_popup</TD>
193
    <TD ALIGN=RIGHT><B><A HREF=\"bug_status.html#op_sys\">OS:</A></B></TD>
terry%netscape.com's avatar
terry%netscape.com committed
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    <TD>$opsys_popup</TD>
    <td align=right valign=top></td>
    <td rowspan=3></td>
    <td></td>
  </TR>
  <TR>
    <TD ALIGN=RIGHT><B><A HREF=\"bug_status.html#priority\">Priority</A>:</B></TD>
    <TD>$priority_popup</TD>
    <TD ALIGN=RIGHT><B><A HREF=\"bug_status.html#severity\">Severity</A>:</B></TD>
    <TD>$sev_popup</TD>
    <td></td>
    <td></td>
  </TR>
  <tr><td>&nbsp<td> <td> <td> <td> <td> </tr>
  <tr>
    <TD ALIGN=RIGHT><B><A HREF=\"bug_status.html#assigned_to\">Assigned To:
        </A></B></TD>
    <TD colspan=5>$assign_element
    (Leave blank to assign to default owner for component)</td>
  </tr>
  <tr>
    <TD ALIGN=RIGHT ><B>Cc:</B></TD>
    <TD colspan=5>$cc_element</TD>
  </tr>
  <tr><td>&nbsp<td> <td> <td> <td> <td> </tr>
  <TR>
    <TD ALIGN=RIGHT><B>URL:</B>
    <TD COLSPAN=5>
222 223 224
      <INPUT NAME=bug_file_loc SIZE=60 value=\"" .
    value_quote(formvalue('bug_file_loc')) .
    "\"></TD>
terry%netscape.com's avatar
terry%netscape.com committed
225 226 227 228
  </TR>
  <TR>
    <TD ALIGN=RIGHT><B>Summary:</B>
    <TD COLSPAN=5>
229 230 231
      <INPUT NAME=short_desc SIZE=60 value=\"" .
    value_quote(formvalue('short_desc')) .
    "\"></TD>
terry%netscape.com's avatar
terry%netscape.com committed
232 233 234 235
  </TR>
  <tr><td>&nbsp<td> <td> <td> <td> <td> </tr>
  <tr>
    <td aligh=right valign=top><B>Description:</b>
236 237 238
    <td colspan=5><TEXTAREA WRAP=HARD NAME=comment ROWS=10 COLS=80>" .
    value_quote(formvalue('comment')) .
    "</TEXTAREA><BR></td>
terry%netscape.com's avatar
terry%netscape.com committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
  </tr>
  <tr>
    <td></td>
    <td colspan=5>
       <INPUT TYPE=\"submit\" VALUE=\"    Commit    \">
       &nbsp;&nbsp;&nbsp;&nbsp;
       <INPUT TYPE=\"reset\" VALUE=\"Reset\">
       &nbsp;&nbsp;&nbsp;&nbsp;
       <INPUT TYPE=\"submit\" NAME=maketemplate VALUE=\"Remember values as bookmarkable template\">
    </td>
  </tr>
  </TABLE>
  <INPUT TYPE=hidden name=form_name VALUE=enter_bug>
</FORM>

254 255
Some fields initialized from your user-agent, <b>$ENV{'HTTP_USER_AGENT'}</b>.
If you think it got it wrong, please tell " . Param('maintainer') . " what it should have been.
terry%netscape.com's avatar
terry%netscape.com committed
256

257
</BODY></HTML>";