From: terry%netscape.com <> Date: Sat, 16 Jan 1999 06:05:41 +0000 (+0000) Subject: Allow querying by OS. X-Git-Tag: bugzilla-2.2~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccb7eb4de2f2db328c1ab716e58074655b993b19;p=thirdparty%2Fbugzilla.git Allow querying by OS. --- diff --git a/CHANGES b/CHANGES index 59cd6c3a83..66c8437c10 100644 --- a/CHANGES +++ b/CHANGES @@ -9,6 +9,15 @@ query the CVS tree. For example, will tell you what has been changed in the last week. + + +1/15/99 The op_sys field can now be queried by (and more easily tweaked). +To make this perform reasonably, it needs an index. The following MySQL +command will create the necessary index: + + alter table bugs add index (op_sys); + + 12/2/98 The op_sys and rep_platform fields have been tweaked. op_sys is now an enum, rather than having the legal values all hard-coded in perl. rep_platform now no longer allows a value of "X-Windows". diff --git a/bug_status.html b/bug_status.html index 1f429fe9b6..e351b414ad 100755 --- a/bug_status.html +++ b/bug_status.html @@ -173,6 +173,20 @@ platforms include: Note: Selecting the option "All" does not select bugs assigned against all platforms. It merely selects bugs that occur on all platforms. +

Operating System

+This is the operating system against which the bug was reported. Legal +operating systems include: + + + +Note that the operating system implies the platform, but not always. +For example, Linux can run on PC and Macintosh and others. +

Assigned To

This is the person in charge of resolving the bug. Every time this @@ -190,6 +204,6 @@ status field appropriately.
Terry Weissman <terry@netscape.com>
-Last modified: Wed Dec 2 14:08:58 1998 +Last modified: Fri Jan 15 13:36:36 1999 diff --git a/enter_bug.cgi b/enter_bug.cgi index 6c41d1e970..87abef887c 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -190,7 +190,7 @@ print " Platform: $platform_popup - OS: + OS: $opsys_popup diff --git a/makebugtable.sh b/makebugtable.sh index 260a24025f..e9ac8b1400 100755 --- a/makebugtable.sh +++ b/makebugtable.sh @@ -52,6 +52,7 @@ index (assigned_to), index (delta_ts), index (bug_severity), index (bug_status), +index (op_sys), index (priority), index (product), index (reporter), diff --git a/query.cgi b/query.cgi index 7c601721e3..170d84b9d8 100755 --- a/query.cgi +++ b/query.cgi @@ -31,6 +31,7 @@ use vars @::legal_resolution, @::legal_bug_status, @::legal_priority, @::legal_resolution, + @::legal_opsys, @::legal_platform, @::legal_components, @::legal_versions, @@ -125,6 +126,7 @@ print " Status: Resolution: Platform: +OpSys: Priority: Severity: @@ -145,6 +147,11 @@ print " + + +