Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Mullvad Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Mullvad Browser
Commits
1a5157a5
Commit
1a5157a5
authored
25 years ago
by
terry%mozilla.org
Browse files
Options
Downloads
Patches
Plain Diff
Added a "blocker" severity.
parent
1417f273
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
webtools/bugzilla/CHANGES
+6
-0
6 additions, 0 deletions
webtools/bugzilla/CHANGES
webtools/bugzilla/bug_status.html
+2
-1
2 additions, 1 deletion
webtools/bugzilla/bug_status.html
webtools/bugzilla/makebugtable.sh
+1
-1
1 addition, 1 deletion
webtools/bugzilla/makebugtable.sh
with
9 additions
and
2 deletions
webtools/bugzilla/CHANGES
+
6
−
0
View file @
1a5157a5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
webtools/bugzilla/bug_status.html
+
2
−
1
View file @
1a5157a5
...
...
@@ -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
<
terry@netscape.com
>
</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>
This diff is collapsed.
Click to expand it.
webtools/bugzilla/makebugtable.sh
+
1
−
1
View file @
1a5157a5
...
...
@@ -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,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment