diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-05-23 01:13:58 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-02-25 04:05:14 +0900 |
commit | d86e408d4a54d30bcbae224f9d35e413657e6b04 (patch) | |
tree | b61d52c9f12c09dac54dd2f13e42295662a1d0ad | |
parent | header: update Gentoo links (diff) | |
download | bugzilla-d86e408d4a54d30bcbae224f9d35e413657e6b04.tar.gz bugzilla-d86e408d4a54d30bcbae224f9d35e413657e6b04.tar.bz2 bugzilla-d86e408d4a54d30bcbae224f9d35e413657e6b04.zip |
resolutions: document all the ones we use
X-Gentoo-Bug: 94106
X-Gentoo-Bug-URL: https://bugs.gentoo.org/94106
-rw-r--r-- | template/en/default/pages/fields.html.tmpl | 61 |
1 files changed, 60 insertions, 1 deletions
diff --git a/template/en/default/pages/fields.html.tmpl b/template/en/default/pages/fields.html.tmpl index 8db61c519..d30b1898a 100644 --- a/template/en/default/pages/fields.html.tmpl +++ b/template/en/default/pages/fields.html.tmpl @@ -164,7 +164,66 @@ behavior would occur. If more information appears later, the [% terms.bug %] can be reopened. </dd> - + + <dt class="cantfix"> + [% display_value("resolution", "CANTFIX") FILTER html %] + </dt> + <dd class="cantfix"> + Fixing this [% terms.bug %] is not possible, and the reasoning + should be detailed by the closer. Generally speaking, fixing the + [% terms.bug %] might be technically unfeasible, require an + extraordinary (unreasonable) amount of effort, be disallowed for + legal/social reasons, or not within bounds of the current framework. + If circumstances change later on that affect the justification, the + [% terms.bug %] can be reopened and reconsidered. + </dd> + + <dt class="needinfo"> + [% display_value("resolution", "NEEDINFO") FILTER html %] + </dt> + <dd class="needinfo"> + Before investigation can proceed further, the reporter needs to + provide more information. This often includes clarification of + already posted details, adding missing log files, or running some + tests to help debug the situation. Once the requested information + has been provided, the [% terms.bug %] should be re-opened. This + status is frequently used when the expectation is the submitter + has disappeared and won't follow up, or to help clear out open + reports that still need triaging. + </dd> + + <dt class="testrequest"> + [% display_value("resolution", "TEST-REQUEST") FILTER html %] + </dt> + <dd class="testrequest"> + The [% terms.bug %] is thought to be fixed, but we would like + someone who is affected to verify the fix. If the [% terms.bug %] + is not actually fixed, then the report should be reopened and more + details posted (explaining why people believe the [% terms.bug %] + is not actually fixed). + </dd> + + <dt class="upstream"> + [% display_value("resolution", "UPSTREAM") FILTER html %] + </dt> + <dd class="upstream"> + The requested [% terms.bug %] is considered to be out of the purview + of the distro and should be submitted/discussed directly with the + respective upstream project. This could include a number of things + such as changing default configuration options or behavior, adding + new options or functionality, or deleting support for older systems. + </dd> + + <dt class="obsolete"> + [% display_value("resolution", "OBSOLETE") FILTER html %] + </dt> + <dd class="obsolete"> + Due to a variety of reasons, the [% terms.bug %] as reported is no + longer relevant. It might apply to older versions of a package and + the newer versions rewrote (implicitly fixing) the related code, or + perhaps support was dropped entirely. + </dd> + [% Hook.process('resolution') %] </dl> </td> |