]> code.delx.au - gnu-emacs-elpa/blob - packages/debbugs/debbugs-ug.texi
Merge commit '00920450d83ffe7a02bbe98997e266726819efc2'
[gnu-emacs-elpa] / packages / debbugs / debbugs-ug.texi
1 \input texinfo
2 @setfilename debbugs-ug.info
3 @settitle Debbugs User Guide
4
5 @dircategory Emacs
6 @direntry
7 * Debbugs UG: (debbugs-ug). Debbugs User Interface in Emacs.
8 @end direntry
9
10 @copying
11 Copyright @copyright{} 2015 Free Software Foundation, Inc.
12
13 @quotation
14 Permission is granted to copy, distribute and/or modify this document
15 under the terms of the GNU Free Documentation License, Version 1.2 or
16 any later version published by the Free Software Foundation; with no
17 Invariant Sections, with the Front-Cover, or Back-Cover Texts. A copy of
18 the license is included in the section entitled ``GNU Free Documentation
19 License'' in the Emacs manual.
20
21 This document is part of a collection distributed under the GNU Free
22 Documentation License. If you want to distribute this document
23 separately from the collection, you can do so by adding a copy of the
24 license to the document, as described in section 6 of the license.
25
26 All Emacs Lisp code contained in this document may be used, distributed,
27 and modified without restriction.
28 @end quotation
29 @end copying
30
31 @titlepage
32 @title Debbugs User Guide
33 @author by Michael Albinus
34 @page
35 @insertcopying
36 @end titlepage
37
38 @contents
39
40 @node Top
41 @top Debbugs User Guide
42
43 Debbugs is a bugtracking system (BTS) that was initially written for
44 the Debian project but currently used also by the GNU project. The
45 main distinctive feature of Debbugs is that it's mostly email-based.
46 All actions on bug reports: opening, closing, changing the status,
47 commenting, forwarding are performed via email by sending specially
48 composed letters to the particular mail addresses. However, searching
49 the bug reports, querying bug report status and viewing comments have
50 been web-based for a long time. To overcome this inconvenience the
51 Debbugs/SOAP service was introduced.
52
53 Based on the Debbugs/SOAP service, frontends are written which offer
54 handling of bugs inside Emacs. These frontends are restricted to the
55 GNU Debbugs server. Bugs are presented either as tabulated list
56 (@code{debbugs-gnu}) or as @code{org-mode} TODO list
57 (@code{debbugs-org}, @pxref{Top, , Org Mode, org}). As backend they
58 use the @code{debbugs} Emacs library (@pxref{Top, , Debbugs
59 Programmer's Manual, debbugs}).
60
61 @menu
62 * Retrieving Bugs:: How to retrieve bugs.
63 * Searching Bugs:: How to search in the debbugs database.
64 * Layout:: How the results are presented.
65 * Minor Mode:: How to use browse bug URLs.
66
67 * Command Index:: Debbugs commands.
68 * Variable Index:: User options and variables.
69 * Key Index:: Keyboard strokes on bug report buffers.
70 @end menu
71
72 @node Retrieving Bugs
73 @chapter Retrieving Bugs
74
75 Bugs are retrieved by the @code{debbugs-gnu} or @code{debbugs-org}
76 commands. In their simple version, they retrieve just bugs for the
77 @code{"emacs"} package on the GNU Debbugs server, filtered by bug
78 severities. Further filtering is possible when the commands are
79 called with a prefix.
80
81 When the bug numbers to be retrieved are known, the commands
82 @code{debbugs-gnu-bugs} or @code{debbugs-org-bugs} are applicable.
83
84
85 @deffn {Command} debbugs-gnu severities &optional packages archivedp suppress tags
86 @deffnx {Command} debbugs-org severities &optional packages archivedp suppress tags
87
88 These commands retrieve bug reports from the GNU Debbugs server.
89 @code{debbugs-gnu} returns a tabulated list, and @code{debbugs-org}
90 returns a list of TODO items in @code{org-mode}. If there were more
91 than @code{debbugs-gnu-default-hits-per-page} bug results from the
92 query, there are widgets (@code{debbugs-gnu}) or links
93 (@code{debbugs-org}) in the result buffer for retrieving the other
94 results.
95
96 @vindex debbugs-gnu-all-severities
97 @var{severities} is a list of strings which filter for the severities
98 of the bugs to be retrieved. Valid severities are @code{"serious"},
99 @code{"important"}, @code{"normal"}, @code{"minor"} and
100 @code{"wishlist"} (see also the constant
101 @code{debbugs-gnu-all-severities}). If the list is empty, there is no
102 filtering with respect to severities. The keyword @code{"tagged"},
103 which is also possible, is not a severity in the GNU Debbugs server
104 but allows to restrict the result to bugs with a given user tag.
105
106 @vindex debbugs-gnu-all-packages
107 @var{packages}, also a list of strings, point to the defined software
108 packages on the GNU Debbugs server which shall be taken into account.
109 The existing package names are compiled into the constant
110 @code{debbugs-gnu-all-packages}.
111
112 @var{archivedp}, if non-@code{nil}, extends the result also on
113 archived bugs on the GNU Debbugs server.
114
115 @var{suppress} shall also distinct between @code{nil} and
116 non-@code{nil}. When non-@code{nil}, closed bugs are suppressed from
117 the results.
118
119 When @var{severities} contains the severity @code{"tagged"},
120 @var{tags} is consulted in order to restrict the result on bugs which
121 are tagged with one of the strings of the list @var{tags}. This list
122 can also be empty; in this case locally tagged bugs are included into
123 the results.
124
125 Called interactively, the commands require just the @var{severities}
126 and the @var{tags} (if @var{severities} includes @code{"tagged"}). In
127 order to provide the other arguments interactively, the commands must
128 be called with a prefix, like @kbd{C-u M-x debbugs-gnu}. In the
129 minibuffer, lists must be entered comma-separated.
130
131 @vindex debbugs-gnu-default-severities
132 @vindex debbugs-gnu-default-packages
133 Default values for interactive use could be configured in the customer
134 options @code{debbugs-gnu-default-severities} and
135 @code{debbugs-gnu-default-packages}.
136
137 @vindex debbugs-gnu-default-hits-per-page
138 When the result would exceed more than 500 bugs, the user is asked how
139 many bugs to retrieve at once. This value can be configured in the
140 customer option @code{debbugs-gnu-default-hits-per-page}. However, it
141 is not recommended to exceeds the default value.
142
143 @ref{Layout} for the presentation of the results.
144
145 @end deffn
146
147
148 @deffn {Command} debbugs-gnu-bugs &rest bugs
149 @deffnx {Command} debbugs-org-bugs &rest bugs
150
151 The commands @code{debbugs-gnu-bugs} and @code{debbugs-org-bugs} show
152 bugs specified by their bug number. Interactively, the bug numbers
153 must be entered as comma-separated list.
154
155 @ref{Layout} for the presentation of the results.
156
157 @end deffn
158
159
160 @node Searching Bugs
161 @chapter Searching in the Debbugs Database.
162
163 The GNU Debbugs server allows full text search in the database. It
164 uses a
165 @uref{http://fallabs.com/hyperestraier/uguide-en.html#searchcond,
166 HyperEstraier based search engine}@footnote{This has been added to the
167 Debbugs/SOAP backend of the GNU Debbugs server only.}.
168
169 @deffn {Command} debbugs-gnu-search
170 @deffnx {Command} debbugs-org-search
171
172 These both commands are completely interactive. They ask for a
173 @code{"search phrase"} for the full text search. It is just a string
174 which contains the words to be searched for, combined by operators
175 like AND, ANDNOT and OR. If there is no operator between the words,
176 AND is used by default.
177
178 Wild card searches are also supported. It can be used for forward
179 match search and backward match search. For example, "[BW] euro"
180 matches words which begin with "euro". "[EW] shere" matches words
181 which end with "sphere". Moreover, regular expressions are also
182 supported. For example, "[RX] ^inter.*al$" matches words which begin
183 with "inter" and end with "al".@footnote{Simplified forms, as
184 described in the Hyperestraier User Guide, are not supported.}
185
186 While the words to be searched for are case insensitive, the operators
187 must be specified case sensitive.
188
189 While the search for the phrase is performed only in the bodies of the
190 messages belonging to a bug report, it is also possible to
191 discriminate the search to further bug attributes. The commands ask
192 for such key-value pairs, until an empty key is returned. Possible
193 attributes are
194
195 @table @samp
196 @item severity
197 A comma-separated list of bug severities, @xref{Retrieving Bugs}.
198
199 @item package
200 A comma-separated list of defined software packages on the GNU Debbugs
201 server, @xref{Retrieving Bugs}.
202
203 @item tags
204 A comma-separated list of defined user tags.
205
206 @item submitter
207 The address of the bug submitter.
208
209 @item date
210 A time period the bug has been in which the bug has been submitted or
211 modified.
212
213 @item subject
214 Word(s) the subject of the bug report contains.
215
216 @item status
217 The status of the bug report. Valid values are "done", "forwarded"
218 and "open".
219 @end table
220
221 It is also possible to apply these commands with an empty search
222 phrase. In this case, the GNU Debbugs server is searched only for
223 bugs which fulfill the given attributes. The attributes to be applied
224 are the same as already described, plus
225
226 @table @samp
227 @item archive
228 Whether archived bugs shall be searched (no value to be entered).
229
230 @item src
231 Bugs which belong to a given source, if that attribute has set.
232
233 @item tag
234 An arbitrary string the bug is annotated with. Usually, this is the
235 same as the status mentioned above.
236
237 @item owner
238 @itemx maint
239 @itemx correspondent
240 The email address of the bug's owner, maintainer, or correspondent
241 (somebody who has participated in bug messages).
242
243 @item log_modified
244 @itemx last_modified
245 @itemx found_date
246 @itemx fixed_date
247 The date of the last update, or the date of the bug report / bug fix.
248
249 @item unarchived
250 The date the bug has been unarchived, if ever.
251
252 @item done
253 The email address of the worker who has closed the bug (if done).
254
255 @item forwarded
256 A URL or an email address.
257
258 @item msgid
259 The message id of the initial bug report.
260
261 @item summary
262 The summary of the bug report.
263 @end table
264
265 Not all of these attributes could be queried on the GNU Debbugs server
266 via the Debbugs/SOAP backend. In this case, the results of a query
267 are discriminated on the client side, which is indicated by the string
268 "(client-side filter)" in the minibuffer after the attribute name.
269 @end deffn
270
271
272 @node Layout
273 @chapter Layout
274
275 The commands described in the previous chapters generate (a) report
276 buffer(s) applicable for navigation. @code{debbugs-gnu-*} return a
277 tabulated list, and @code{debbugs-org-*} return a list of TODO items
278 in @code{org-mode}.
279
280 @menu
281 * Tabulated Lists:: Tabulated Lists.
282 * TODO Items:: TODO Items.
283 * Control Messages:: Control Messages.
284 @end menu
285
286 @node Tabulated Lists
287 @section Tabulated Lists
288
289 A tabulated list of bug reports consist of four columns for every bug
290 entry: @code{Id} (the bug number), @code{State} (some bug attributes),
291 @code{Submitter} (the name of the bug submitter), and @code{Title}
292 (the bug subject). Per default the bugs are sorted by @code{Id}; this
293 could be changed by clicking in the headline.
294
295 Per bug retrieval only up to 500
296 (@code{debbugs-gnu-default-hits-per-page}) bugs are retrieved and
297 presented in a buffer. If there shall be presented more bugs, widgets
298 are placed on the top and bottom of the buffer for navigation to
299 further report buffers.
300
301 Different foreground colours present further information on the bug
302 report. If the bug number uses a red colour
303 (@code{debbugs-gnu-tagged}), the bug has been tagged locally. The
304 same face is used to mark bugs in the submitter or title column, when
305 the bug has been reported / is maintained by the user.
306
307 The bug state could appear in different colours: red
308 (@code{debbugs-gnu-new}, nobody has answered yet to this bug),
309 ForestGreen (@code{debbugs-gnu-handled}, the bug has been modified
310 recently), MidnightBlue (@code{debbugs-gnu-pending}, the bug is
311 pending), orange (@code{debbugs-gnu-stale}, the bug has not been
312 touched for a while), and DarkGrey (@code{debbugs-gnu-done}, the bug
313 is closed). Archived bugs are shown with inverse face
314 (@code{debbugs-gnu-archived}).
315
316 The bug report buffers have enabled the minor
317 @code{debbugs-gnu-mode}. This enables the following key strokes:
318
319 @multitable {@kbd{@key{mouse-2}}} {Some very very very long long text Some very very very long long text Some very very very long long text}
320
321 @item
322 @kindex @kbd{@key{RET}}
323 @kbd{@key{RET}}
324 @kindex @kbd{@key{mouse-1}}
325 @kbd{@key{mouse-1}}
326 @kindex @kbd{@key{mouse-2}}
327 @kbd{@key{mouse-2}} @tab
328 @code{debbugs-gnu-select-report} @*
329 Open a GNUS ephemeral group for that bug.@c (@pxref{xxx}).
330
331 @* @item
332 @kindex @kbd{d}
333 @kbd{d} @tab
334 @code{debbugs-gnu-display-status} @*
335 Show all bug attributes.
336
337 @c @item
338 @c @kindex @kbd{/}
339 @c @kbd{/} @tab
340 @c @code{debbugs-gnu-narrow-to-status}
341
342 @c @item
343 @c @kindex @kbd{w}
344 @c @kbd{w} @tab
345 @c @code{debbugs-gnu-widen}
346
347 @item
348 @kindex @kbd{g}
349 @kbd{g} @tab
350 @code{debbugs-gnu-rescan} @*
351 Reload all bugs from the GNU Debbugs server.
352
353 @item
354 @kindex @kbd{B}
355 @kbd{B} @tab
356 @code{debbugs-gnu-show-blocking-reports}
357 @item
358 @kindex @kbd{b}
359 @kbd{b} @tab
360 @code{debbugs-gnu-show-blocked-by-reports} @*
361 Show all bug reports which are blocking / blocked by this bug.
362
363 @item
364 @kindex @kbd{s}
365 @kbd{s} @tab
366 @code{debbugs-gnu-toggle-sort} @*
367 Toggle sorting order of bugs.
368
369 @item
370 @kindex @kbd{t}
371 @kbd{t} @tab
372 @code{debbugs-gnu-toggle-tag} @*
373 Toggle local tag of bugs.
374
375 @item
376 @kindex @kbd{x}
377 @kbd{x} @tab
378 @code{debbugs-gnu-toggle-suppress} @*
379 Toggle showing of closed bugs.
380
381 @item
382 @kindex @kbd{C}
383 @kbd{C} @tab
384 @code{debbugs-gnu-send-control-message} @*
385 Send a control message for this bug, @ref{Control Messages}.
386
387 @end multitable
388
389
390 @node TODO Items
391 @section TODO Items
392
393 TODO items are offered as usual in @code{org-mode}. The bug
394 attributes are mapped onto properties of these items. They can be
395 shown by the usual navigation in @code{org-mode}.
396
397 Per bug retrieval only up to 500
398 (@code{debbugs-gnu-default-hits-per-page}) bugs are retrieved and
399 presented in a buffer. At the end of the buffer there is a link,
400 which allows to append the next 500 bugs to the list.
401
402 Bug severities are mapped onto org severities, see
403 @code{debbugs-org-severity-priority}.
404
405 The bug report buffers have enabled the minor
406 @code{debbugs-gnu-mode}. This enables the following key strokes:
407
408 @multitable {@kbd{C-c # C}} {Some very very very long long text Some very very very long long text Some very very very long long text}
409
410 @item
411 @kindex @kbd{@key{TAB}}
412 @kbd{@key{TAB}} @tab
413 @code{org-cycle} @*
414 Outline the bug report attributes in @code{org-mode}.
415
416 @item
417 @kindex @kbd{C-c # d}
418 @kbd{C-c # d} @tab
419 @code{debbugs-gnu-display-status} @*
420 Show all bug attributes.
421
422 @item
423 @kindex @kbd{C-c # t}
424 @kbd{C-c # t} @tab
425 @code{debbugs-gnu-toggle-tag} @*
426 Toggle local tag of bugs.
427
428 @item
429 @kindex @kbd{C-c # C}
430 @kbd{C-c # C} @tab
431 @code{debbugs-gnu-send-control-message} @*
432 Send a control message for this bug, @ref{Control Messages}.
433
434 @end multitable
435
436 When the bug attributes are shown by @code{org-cycle}, there is a link
437 @code{Messages} which opens a GNUS ephemeral group for that bug.@c (@pxref{xxx}).
438
439
440 @node Control Messages
441 @section Control Messages
442
443 Debbugs control messages are sent by email to the GNU Debbugs control
444 server. Their format is described in
445 @uref{http://debbugs.gnu.org/server-control.html}.
446
447 A control message can be initiated in the tabulated list of bugs, in
448 the list of org TODO items, or in the GNUS ephemeral group opened for
449 the messages belonging to a given bug. Control messages can be sent
450 to unarchived bugs only, in case a bug is archived the control message
451 @samp{unarchive} must be sent first.
452
453 In the minibuffer, the following control messages can be requested
454 (assuming that 12345 is the bug the control message is intended for).
455 The strings show the exact format of the control messages.
456
457 @table @samp
458 @item block
459 @itemx unblock
460 "block|unblock 12345 by 54321"
461
462 The second bug number is read interactively. It could be also a list
463 of comma-separated bug numbers.
464
465 @item close
466 "close 12345 25.1"
467
468 The second argument, the Emacs version, is read interactively.
469
470 @item confirmed
471 @itemx fixed
472 @itemx help
473 @itemx moreinfo
474 @itemx notabug
475 @itemx patch
476 @itemx pending
477 @itemx security
478 @itemx unreproducible
479 @itemx wontfix
480 "tags 12345 confirmed|fixed|help|moreinfo|notabug"
481
482 "tags 12345 patch|pending|security|unreproducible|wontfix"
483
484 @item done
485 @itemx donenotabug
486 @itemx doneunreproducible
487 @itemx donewontfix
488 "tags 12345 fixed|notabug|unreproducible|wontfix" @*
489 "close 12345 25.1"
490
491 The second argument in the close message, the Emacs version, is read
492 interactively.
493
494 @item forcemerge
495 @itemx merge
496 "forcemerge|merge 12345 54321"
497
498 The second bug number is read interactively.
499
500 @item important
501 @itemx minor
502 @item normal
503 @itemx serious
504 @item wishlist
505 "severity 12345 important|minor|normal|serious|wishlist"
506
507 @item invalid
508 "tags 12345 notabug" @*
509 "tags 12345 wontfix" @*
510 "close 12345"
511
512 @item noowner
513 "noowner 12345"
514
515 @item owner
516 "owner 12345 !"
517
518 @item reassign
519 "reassign 12345 @var{package}"
520
521 The package name on the GNU Debbugs server is read interactively.
522
523 @item reopen
524 "reopen 12345"
525
526 @item unarchive
527 "unarchive 12345"
528
529 @item unmerge
530 "unmerge 12345"
531
532 @item usertag
533 "user @var{username}" @*
534 "usertag 12345 @var{tag}"
535
536 The username, read interactively, is either a package name or an email
537 address. The tag to be set is also read interactively.
538 @end table
539
540
541 @node Minor Mode
542 @chapter Minor Mode
543
544 Emacs uses @file{bug-reference.el} for adding hyperlinks to bugs in
545 files like @file{ChangeLog}, or in commentary sections of other files.
546 The reference to such bugs have a specialized format,
547 @uref{Bug#12345}. The hyperlinks are implemented as minor modes
548 @code{bug-reference-mode} and @code{bug-reference-prog-mode}.
549
550 @findex debbugs-browse-mode
551 @vindex debbugs-browse-function
552 This package adds a new minor mode @code{debbugs-browse-mode} on top
553 of them. Instead of using the default built-in Emacs browser for a
554 given bug reference, it opens a corresponding bug report buffer. The
555 customer option @code{debbugs-browse-function} controls, whether
556 @code{debbugs-gnu-bugs} or @code{debbugs-org-bugs} is called.
557
558 This minor mode is applicable for all URLs, not only bug references.
559 Any URL with the format @uref{http://debbugs.gnu.org/12345} will be
560 shown in a bug report buffer, when @code{debbugs-browse-mode} is
561 enabled.
562
563
564 @node Command Index
565 @unnumbered Command Index
566 @printindex fn
567
568
569 @node Variable Index
570 @unnumbered Variable Index
571 @printindex vr
572
573
574 @node Key Index
575 @unnumbered Key Index
576 @printindex ky
577
578 @bye
579
580 @c Local Variables:
581 @c bug-reference-url-format: "http://debbugs.gnu.org/%s"
582 @c eval: (bug-reference-mode)
583 @c eval: (debbugs-browse-mode)
584 @c End: