summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-05-01 05:15:14 +0200
committerterry%mozilla.org <>1999-05-01 05:15:14 +0200
commit7bb0b86fdbd639d8d583116ca7a2564f3d0246e4 (patch)
treeb707fe7567e488c321cc88950fdc7ec7ff98bfc5
parent12051b051d85dfe07b30719f8d0b169837dc972e (diff)
downloadbugzilla-7bb0b86fdbd639d8d583116ca7a2564f3d0246e4.tar.gz
bugzilla-7bb0b86fdbd639d8d583116ca7a2564f3d0246e4.tar.xz
Added a "blocker" severity.
-rw-r--r--CHANGES6
-rwxr-xr-xbug_status.html3
-rwxr-xr-xmakebugtable.sh2
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 5f36c4369..14336949b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,12 @@ query the CVS tree. For example,
will tell you what has been changed in the last week.
+4/30/99 Added a new severity, "blocker". To get this into your running
+Bugzilla, do the following:
+
+ alter table bugs change column bug_severity bug_severity enum("blocker", "critical", "major", "normal", "minor", "trivial", "enhancement") not null;
+
+
4/22/99 There was a bug where the long descriptions of bugs had a variety of
newline characters at the end, depending on the operating system of the browser
that submitted the text. This bug has been fixed, so that no further changes
diff --git a/bug_status.html b/bug_status.html
index a3706dffc..9bb68272f 100755
--- a/bug_status.html
+++ b/bug_status.html
@@ -117,6 +117,7 @@ This field describes the impact of a bug.
<p>
<table>
+<tr><th>Blocker</th><td>Blocks development and/or testing work
<tr><th>Critical</th><td>crashes, loss of data, severe memory leak
<tr><th>Major</th><td>major loss of function
<tr><th>Minor</th><td>minor loss of function, or other problem where easy workaround is present
@@ -205,6 +206,6 @@ status field appropriately.
<hr>
<address><a href="http://home.netscape.com/people/terry/">Terry Weissman &lt;terry@netscape.com&gt;</a></address>
<!-- hhmts start -->
-Last modified: Mon Mar 8 18:31:07 1999
+Last modified: Fri Apr 30 13:14:35 1999
<!-- hhmts end -->
</body> </html>
diff --git a/makebugtable.sh b/makebugtable.sh
index bad74010e..c142b2d5a 100755
--- a/makebugtable.sh
+++ b/makebugtable.sh
@@ -32,7 +32,7 @@ bug_id mediumint not null auto_increment primary key,
groupset bigint not null,
assigned_to mediumint not null, # This is a comment.
bug_file_loc text,
-bug_severity enum("critical", "major", "normal", "minor", "trivial", "enhancement") not null,
+bug_severity enum("blocker", "critical", "major", "normal", "minor", "trivial", "enhancement") not null,
bug_status enum("NEW", "ASSIGNED", "REOPENED", "RESOLVED", "VERIFIED", "CLOSED") not null,
creation_ts datetime,
delta_ts timestamp,