]> git.donarmstrong.com Git - debbugs.git/blob - UPGRADE
[project @ 2001-01-27 22:09:01 by joy]
[debbugs.git] / UPGRADE
1
2                             Debbugs upgrade notes
3                            +=====================+
4
5 From 2.3 to 2.4
6 ---------------
7
8 Add the following variables to the /etc/debbugs/config file:
9
10 $gWebHost = "localhost";                                # e.g. www.debian.org
11 $gWebHostBugDir = "Bugs";                               # e.g. Bugs
12 # For now, don't change this one manually!
13 $gWebDomain = "$gWebHost/$gWebHostBugDir";
14 $gCGIDomain = "$gWebDomain/Bugs/cgi";                   # e.g. cgi.debian.org
15 $gPackagePages = "packages.debian.org";                 # e.g. packages.debian.org
16
17 ($gWebDomain will probably exist already, change it as shown above.)
18
19 Add the following variable to the /etc/debbugs/text file:
20
21 ############################################################################
22 # Description of the tags
23 ############################################################################
24 $gHTMLTagDesc = "
25 <dt><code>patch</code>
26   <dd>A patch or some other easy procedure for fixing the $gBug is included in
27   the $gBug logs. If there\'s a patch, but it doesn\'t resolve the $gBug
28   adequately or causes some other problems, this tag should not be used.
29
30 <dt><code>wontfix</code>
31   <dd>This $gBug won\'t be fixed. Possibly because this is a choice between two
32   arbitrary ways of doing things and the maintainer and submitter prefer
33   different ways of doing things, possibly because changing the behaviour
34   will cause other, worse, problems for others, or possibly for other
35   reasons.
36
37 <dt><code>moreinfo</code>
38   <dd>This $gBug can\'t be addressed until more information is provided by the
39   submitter. The $gBug will be closed if the submitter doesn\'t provide ore
40   information in a reasonable (few months) timeframe. This is for $gBugs like
41   \"It doesn\'t work\". What doesn\'t work?
42
43 <dt><code>unreproducible</code>
44   <dd>This $gBug can\'t be reproduced on the maintainer\'s system.  Assistance
45   from third parties is needed in diagnosing the cause of the problem.
46
47 <dt><code>fixed</code>
48   <dd>This $gBug is fixed or worked around, but there\'s still an issue that
49   needs to be resolved. (This will eventually replace the \"fixed\" severity)
50
51 <dt><code>stable</code>
52   <dd>This $gBug affects the stable distribution in particular.  This is only
53   intended to be used for ease in identifying release critical $gBugs that
54   affect the stable distribution.  It\'ll be replaced eventually with
55   something a little more flexible, probably.
56 ";
57
58 From 2.2 to 2.3
59 ---------------
60
61 There are three new scripts that have to be installed in CGI and the front
62 page (or any other search you have set up) needs to be changed to use these
63 scripts.  They are:
64         * bugreport.cgi
65         * common.pl
66         * pkgreport.cgi
67
68 Add the following variables to the /etc/debbugs/config file:
69 (the /usr/share/doc/debbugs/examples/config file can be used as a
70 reference)
71
72 $gSummaryList = "summary.list";         #debian-bugs-report@lists
73 $gSaveOldBugs = 1;
74
75 Make sure you do not have a double ,, as shown here if you're using the
76 default severities.  Also, 'fixed' was added to the default severities:
77 -                                       'normal',"Normal $gBugs",,
78 +                                       'normal',"Normal $gBugs",
79 +                                                       'fixed',"NMU Fixed $gBugs",
80  
81 These have been added to the /etc/debbugs/text file:
82 +############################################################################
83 +#  Here is a blurb to point people to ftp archive of directions.  It is
84 +#  used by the receive script when bouncing a badly formatted email
85 +#
86 +# $gTextInstructions = "$gBadEmailPrefix
87 +# $gBadEmailPrefix Instructions are available from ftp.debian.org in /debian
88 +# $gBadEmailPrefix and at all Debian mirror sites, in the files:
89 +# $gBadEmailPrefix  doc/bug-reporting.txt
90 +# $gBadEmailPrefix  doc/bug-log-access.txt
91 +# $gBadEmailPrefix  doc/bug-maint-info.txt
92 +# $gBadEmailPrefix";
93 +############################################################################
94 +$gTextInstructions = "$gBadEmailPrefix";
95 +
96 +
97  
98 $gHTMLStart = "<BODY TEXT=#0F0F0F>";    #this is used by HTML generation to create the "uniform look"
99  
100 The following code was added to /etc/debbugs/text if you use the new fixed
101 severity
102
103         <DT><CODE>wishlist</CODE>
104 -       <DD>for any feature request, and also for any $gBugs that are very difficult
105 -       to fix due to major design considerations.";
106 +       <DD>for any feature request, and also for any $gBugs that are very 
107 +       difficult to fix due to major design considerations.";
108 +
109 +       <DT><CODE>fixed</CODE>
110 +       <DD>fixed in the current version in the unstable archive but the fix has
111 +       not been fixed by the person responsible.
112   
113  In All such entries in /etc/debbugs/text, if you replace <BODY> with
114  $gHTMLStart, all html pages will have the same look (as specified in
115  $gHTMLStart):
116
117  $gSummaryIndex = "<HTML><HEAD><TITLE>$gProject $gBug report logs - summary index</TITLE>
118  $gPackageLog = "<HTML><HEAD><TITLE>$gProject $gBug report logs - index by package</TITLE>