]> code.delx.au - gnu-emacs-elpa/blob - packages/debbugs/debbugs-ug.texi
Merge commit '311ac8ee54078f95b7279e532da6cf5a2afb4125'
[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 Show the email messages that discuss the bug.
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 @vindex debbugs-gnu-mail-backend
390 The user option @code{debbugs-gnu-mail-backend} controls the
391 presentation of email messages produced by typing @kbd{@key{RET}} or
392 by clicking the mouse on a bug: if its value is @code{gnus}, the
393 default, a GNUS ephemeral group for that bug will be shown; if its
394 value is @code{rmail}, the command will present an Rmail folder
395 instead.
396
397 @node TODO Items
398 @section TODO Items
399
400 TODO items are offered as usual in @code{org-mode}. The bug
401 attributes are mapped onto properties of these items. They can be
402 shown by the usual navigation in @code{org-mode}.
403
404 Per bug retrieval only up to 500
405 (@code{debbugs-gnu-default-hits-per-page}) bugs are retrieved and
406 presented in a buffer. At the end of the buffer there is a link,
407 which allows to append the next 500 bugs to the list.
408
409 Bug severities are mapped onto org severities, see
410 @code{debbugs-org-severity-priority}.
411
412 The bug report buffers have enabled the minor
413 @code{debbugs-gnu-mode}. This enables the following key strokes:
414
415 @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}
416
417 @item
418 @kindex @kbd{@key{TAB}}
419 @kbd{@key{TAB}} @tab
420 @code{org-cycle} @*
421 Outline the bug report attributes in @code{org-mode}.
422
423 @item
424 @kindex @kbd{C-c # d}
425 @kbd{C-c # d} @tab
426 @code{debbugs-gnu-display-status} @*
427 Show all bug attributes.
428
429 @item
430 @kindex @kbd{C-c # t}
431 @kbd{C-c # t} @tab
432 @code{debbugs-gnu-toggle-tag} @*
433 Toggle local tag of bugs.
434
435 @item
436 @kindex @kbd{C-c # C}
437 @kbd{C-c # C} @tab
438 @code{debbugs-gnu-send-control-message} @*
439 Send a control message for this bug, @ref{Control Messages}.
440
441 @end multitable
442
443 When the bug attributes are shown by @code{org-cycle}, there is a link
444 @code{Messages} which opens a GNUS ephemeral group for that bug.@c (@pxref{xxx}).
445
446
447 @node Control Messages
448 @section Control Messages
449
450 Debbugs control messages are sent by email to the GNU Debbugs control
451 server. Their format is described in
452 @uref{http://debbugs.gnu.org/server-control.html}.
453
454 A control message can be initiated in the tabulated list of bugs, in
455 the list of org TODO items, or in the GNUS ephemeral group or Rmail
456 folder opened for the messages belonging to a given bug. Control
457 messages can be sent to unarchived bugs only, in case a bug is
458 archived the control message @samp{unarchive} must be sent first.
459
460 In the minibuffer, the following control messages can be requested
461 (assuming that 12345 is the bug the control message is intended for).
462 The strings show the exact format of the control messages.
463
464 @table @samp
465 @item block
466 @itemx unblock
467 "block|unblock 12345 by 54321"
468
469 The second bug number is read interactively. It could be also a list
470 of comma-separated bug numbers.
471
472 @item close
473 "close 12345 25.1"
474
475 The second argument, the Emacs version, is read interactively.
476
477 @item confirmed
478 @itemx fixed
479 @itemx help
480 @itemx moreinfo
481 @itemx notabug
482 @itemx patch
483 @itemx pending
484 @itemx security
485 @itemx unreproducible
486 @itemx wontfix
487 "tags 12345 confirmed|fixed|help|moreinfo|notabug"
488
489 "tags 12345 patch|pending|security|unreproducible|wontfix"
490
491 @item done
492 @itemx donenotabug
493 @itemx doneunreproducible
494 @itemx donewontfix
495 "tags 12345 fixed|notabug|unreproducible|wontfix" @*
496 "close 12345 25.1"
497
498 The second argument in the close message, the Emacs version, is read
499 interactively.
500
501 @item forcemerge
502 @itemx merge
503 "forcemerge|merge 12345 54321"
504
505 The second bug number is read interactively.
506
507 @item important
508 @itemx minor
509 @item normal
510 @itemx serious
511 @item wishlist
512 "severity 12345 important|minor|normal|serious|wishlist"
513
514 @item invalid
515 "tags 12345 notabug" @*
516 "tags 12345 wontfix" @*
517 "close 12345"
518
519 @item noowner
520 "noowner 12345"
521
522 @item owner
523 "owner 12345 !"
524
525 @item reassign
526 "reassign 12345 @var{package}"
527
528 The package name on the GNU Debbugs server is read interactively.
529
530 @item reopen
531 "reopen 12345"
532
533 @item unarchive
534 "unarchive 12345"
535
536 @item unmerge
537 "unmerge 12345"
538
539 @item usertag
540 "user @var{username}" @*
541 "usertag 12345 @var{tag}"
542
543 The username, read interactively, is either a package name or an email
544 address. The tag to be set is also read interactively.
545 @end table
546
547
548 @node Minor Mode
549 @chapter Minor Mode
550
551 Emacs uses @file{bug-reference.el} for adding hyperlinks to bugs in
552 files like @file{ChangeLog}, or in commentary sections of other files.
553 The reference to such bugs have a specialized format,
554 @uref{Bug#12345}. The hyperlinks are implemented as minor modes
555 @code{bug-reference-mode} and @code{bug-reference-prog-mode}.
556
557 @findex debbugs-browse-mode
558 @vindex debbugs-browse-function
559 This package adds a new minor mode @code{debbugs-browse-mode} on top
560 of them. Instead of using the default built-in Emacs browser for a
561 given bug reference, it opens a corresponding bug report buffer. The
562 customer option @code{debbugs-browse-function} controls, whether
563 @code{debbugs-gnu-bugs} or @code{debbugs-org-bugs} is called.
564
565 This minor mode is applicable for all URLs, not only bug references.
566 Any URL with the format @uref{http://debbugs.gnu.org/12345} will be
567 shown in a bug report buffer, when @code{debbugs-browse-mode} is
568 enabled.
569
570
571 @node Command Index
572 @unnumbered Command Index
573 @printindex fn
574
575
576 @node Variable Index
577 @unnumbered Variable Index
578 @printindex vr
579
580
581 @node Key Index
582 @unnumbered Key Index
583 @printindex ky
584
585 @bye
586
587 @c Local Variables:
588 @c bug-reference-url-format: "http://debbugs.gnu.org/%s"
589 @c eval: (bug-reference-mode)
590 @c eval: (debbugs-browse-mode)
591 @c End: