From: joy <> Date: Tue, 31 Oct 2000 00:24:22 +0000 (-0800) Subject: [project @ 2000-10-30 16:24:22 by joy] X-Git-Tag: release/2.6.0~1196 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=74c6d03e8df9e61acb9d2fe64c5e843eba1859e9;hp=5ae9bb36b5c2a7c845b229db57cfc5c7cde24222;p=debbugs.git [project @ 2000-10-30 16:24:22 by joy] added documentation on bug tags --- diff --git a/html/Developer.html.in b/html/Developer.html.in index 3262927..d7687c7 100644 --- a/html/Developer.html.in +++ b/html/Developer.html.in @@ -91,6 +91,24 @@ or by using the severity command with the $gHTMLSeverityDesc +

Tags for $gBug reports

+ +

Each $gBug can have zero or more of a set of given tags. These tags are +displayed in the list of $gBugs when you look at a package's page, and when +you look at the full $gBug log. + +

Tags can be set by supplying a Tags line in the +pseudo-header when the $gBug is submitted (see the +instructions for reporting $gBugs), +or by using the tags command with the +control request server. + +

The current $gBug tags are: + +

+$gHTMLTagDesc +
+

Recording that you have passed on a $gBug report

When a developer forwards a $gBug report to the developer of the diff --git a/html/server-control.html.in b/html/server-control.html.in index 69fb066..b7e45b4 100644 --- a/html/server-control.html.in +++ b/html/server-control.html.in @@ -155,6 +155,21 @@ mailservers is available via the WWW, in command; if you want to disconnect more than one $gBug simply include several unmerge commands in your message. +

tags bugnumber [ + | - | = ] tag + +
Sets a particular tag for the $gBug report #bugnumber to + tag. No notification is sent to the user who reported the $gBug. + + means adding, - means subtracting, and + = means ignoring the current tags and setting them afresh. + The default action is adding. + +

Available tags currently include patch, wontfix, + moreinfo, unreproducible, fixed, + and stable. + +

For their meanings please consult the + general developers' documentation for the $gBug system. +


diff --git a/scripts/text.in b/scripts/text.in index 52c15d2..e91c39b 100644 --- a/scripts/text.in +++ b/scripts/text.in @@ -1,4 +1,4 @@ -# $Id: text.in,v 1.10 2000/10/08 15:21:36 joy Exp $ +# $Id: text.in,v 1.11 2000/10/30 16:24:22 joy Exp $ ############################################################################ # Here is a blurb to point people to ftp archive of directions. It is @@ -129,6 +129,43 @@ $gHTMLSeverityDesc = "
critical
fixed in the current version in the unstable archive but the fix has not been fixed by the person responsible."; +############################################################################ +# Description of the tags +############################################################################ +$gHTMLTagDesc = " +
patch +
A patch or some other easy procedure for fixing the $gBug is included in + the $gBug logs. If there\'s a patch, but it doesn\'t resolve the $gBug + adequately or causes some other problems, this tag should not be used. + +
wontfix +
This $gBug won\'t be fixed. Possibly because this is a choice between two + arbitrary ways of doing things and the maintainer and submitter prefer + different ways of doing things, possibly because changing the behaviour + will cause other, worse, problems for others, or possibly for other + reasons. + +
moreinfo +
This $gBug can\'t be addressed until more information is provided by the + submitter. The $gBug will be closed if the submitter doesn\'t provide ore + information in a reasonable (few months) timeframe. This is for $gBugs like + \"It doesn\'t work\". What doesn\'t work? + +
unreproducible +
This $gBug can\'t be reproduced on the maintainer\'s system. Assistance + from third parties is needed in diagnosing the cause of the problem. + +
fixed +
This $gBug is fixed or worked around, but there\'s still an issue that + needs to be resolved. (This will eventually replace the \"fixed\" severity) + +
stable +
This $gBug affects the stable distribution in particular. This is only + intended to be used for ease in identifying release critical $gBugs that + affect the stable distribution. It\'ll be replaced eventually with + something a little more flexible, probably. +"; + ############################################################################ # shows up at the start of (most) html pages. ############################################################################