]> code.delx.au - gnu-emacs-elpa/blob - packages/debbugs/debbugs.texi
Merge commit 'd4a9dad594473c511f975017d792efc8a8339671'
[gnu-emacs-elpa] / packages / debbugs / debbugs.texi
1 \input texinfo
2 @setfilename debbugs.info
3 @settitle Debbugs programmer's manual
4
5 @dircategory Emacs
6 @direntry
7 * Debbugs: (debbugs). A library for communication with Debbugs.
8 @end direntry
9
10 @copying
11 Copyright @copyright{} 2011-2016 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 Programmer's Manual
33 @author by Evgeny M. Zubok
34 @page
35 @insertcopying
36 @end titlepage
37
38 @contents
39
40 @node Top
41 @top Debbugs Programmer's Manual
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 The Debbugs/SOAP service provides the means for developers to write
54 client applications that can send the queries with certain search
55 criteria to the Debbugs server and retrieve a set of bug reports that
56 match them. The developer may also ask the Debbugs server for
57 additional information about every bug report (e.g. subject, date,
58 originator, tags and etc.) and get all comments and attachments.
59
60 @code{debbugs}, described in this document, is the Emacs library that
61 exposes to developers the available functions provided by the Debbugs
62 server. @code{debbugs} uses Emacs' SOAP client library for
63 communication with the Debbugs server. In tandem with Emacs' email
64 facilities, @code{debbugs} provides a solution for building
65 applications that interact with the Debbugs BTS directly from Emacs
66 without addressing Debbugs' web interface.
67
68 The user interface for accessing the Debbugs server for GNU projects
69 is described in @ref{Top, Debbugs User Guide, , debbugs-ug}.
70
71 @menu
72 * Installation:: Getting and installing @code{debbugs}.
73 * Configuration:: Configuring @code{debbugs}.
74 * Requesting bug numbers:: How to request bug report numbers.
75 * Requesting bugs statuses:: How to request the status of bug reports.
76 * Requesting messages:: How to get messages from bug reports.
77 * Requesting user tags:: How to request tags set by users.
78 @end menu
79
80 @node Installation
81 @chapter Installation
82
83 @subheading Installation on Emacs 24 or later
84
85 Install @code{debbugs} from the @ref{Packaging, ELPA repository, , elisp}.
86
87 @subheading Installation on Emacs 22 and Emacs 23
88
89 If you want to install @code{debbugs} on Emacs 22/23, you will need to
90 install the @code{soap-client} library first. It can be downloaded from
91 the @uref{http://code.google.com/p/emacs-soap-client/, Emacs SOAP client
92 project page}.
93
94 Compile the library and add it into your @code{load-path}:
95
96 @example
97 (add-to-list 'load-path "/path/to/emacs-soap-client/")
98 @end example
99
100 @code{debbugs} library can be downloaded from the
101 @uref{http://elpa.gnu.org/packages/, ELPA repository}. Compile it and
102 set the @code{load-path}:
103
104 @example
105 (add-to-list 'load-path "/path/to/debbugs/")
106 @end example
107
108 @subheading Installation on Emacs 21
109
110 We have not tried yet to install @code{debbugs} on Emacs 21. We would
111 definitely say that the installation will require even more additional
112 libraries than needed for installation on Emacs 22/23.
113
114 @node Configuration
115 @chapter Configuration
116
117 @code{debbugs} is already configured to work with two main ports of
118 Debbugs BTS: @uref{http://bugs.debian.org} and
119 @uref{http://debbugs.gnu.org}. So if you intend to use one of these
120 ports, you don't need to configure @code{debbugs}. If you want to
121 interact with a Debbugs port other than those listed, you have to
122 configure @code{debbugs} by adding a new server specifier to the
123 @code{debbugs-servers} variable. The actual port can be selected by
124 the @code{debbugs-port} variable.
125
126 @defvar debbugs-servers
127 List of Debbugs server specifiers. Each entry is a list that contains a
128 string identifying the port name and the server parameters in
129 keyword-value form. The list initially contains two predefined and
130 configured Debbugs servers: @code{"gnu.org"} and @code{"debian.org"}.
131
132 Valid keywords are:
133
134 @table @code
135 @item :wsdl
136 Location of WSDL. The value is a string with the URL that should
137 return the WSDL specification of the Debbugs/SOAP service. This
138 keyword is intended for future use, it is ignored currently.
139
140 @item :bugreport-url
141 The URL of the server script (@code{bugreport.cgi} in the default
142 Debbugs installation) that provides the access to mboxes with messages
143 from bug reports.
144 @end table
145
146 Example. Add a new Debbugs port with name "foobars.net":
147
148 @example
149 (add-to-list
150 'debbugs-servers
151 '("foobars.net"
152 :wsdl "http://bugs.foobars.net/cgi/soap.cgi?WSDL"
153 :bugreport-url "http://bugs.foobars.net/cgi/bugreport.cgi"))
154 @end example
155 @end defvar
156
157 @defvar debbugs-port
158 This variable holds the name of the currently used port. The value of
159 the variable corresponds to the Debbugs server to be accessed, either
160 @code{"gnu.org"} or @code{"debian.org"}, or a user defined port name.
161 @end defvar
162
163 @node Requesting bug numbers
164 @chapter Requesting bug numbers
165
166 In Debbugs BTS, the bug number is the unique identifier of a bug
167 report. The functions described in this section return from the
168 Debbugs server the list of bug numbers that match a user's query.
169
170 @defun debbugs-get-bugs &rest query
171 This function returns a list of bug numbers that match the
172 @var{query}. @var{query} is a sequence of keyword-value pairs where the
173 values are strings, i.e. :KEYWORD ``VALUE'' [:KEYWORD ``VALUE'']*
174
175 The keyword-value pair is a subquery. The keywords are allowed to
176 have multiple occurrence within the query at any place. The
177 subqueries with the same keyword form the logical subquery, which
178 returns the union of bugs of every subquery it contains.
179
180 The result of the @var{query} is an intersection of results of all
181 subqueries.
182
183 Valid keywords are:
184
185 @table @code
186 @item :package
187 The value is the name of the package a bug belongs to, like @code{"emacs"},
188 @code{"coreutils"}, @code{"gnus"}, or @code{"tramp"}.
189
190 @item :src
191 This is used to retrieve bugs that belong to source with given name.
192
193 @item :severity
194 This is the severity of the bug. The exact set of available severities
195 depends on the policy of a particular Debbugs port:
196
197 Debian port:
198 @code{"critical"}, @code{"grave"}, @code{"serious"},
199 @code{"important"}, @code{"normal"}, @code{"minor"}, @code{"wishlist"},
200 and @code{"fixed"}.
201
202 GNU port:
203 @code{"serious"}, @code{"important"}, @code{"normal"}, @code{"minor"},
204 @code{"wishlist"}.
205
206 @item :tag
207 An arbitrary string the bug is annotated with. Usually, this is used
208 to mark the status of the bug. The list of possible tags depends on
209 the Debbugs port.
210
211 Debian port: @code{"patch"}, @code{"wontfix"}, @code{"moreinfo"},
212 @code{"unreproducible"}, @code{"fixed"}, @code{"potato"},
213 @code{"woody"}, @code{"sid"}, @code{"help"}, @code{"security"},
214 @code{"upstream"}, @code{"pending"}, @code{"sarge"},
215 @code{"sarge-ignore"}, @code{"experimental"}, @code{"d-i"},
216 @code{"confirmed"}, @code{"ipv6"}, @code{"lfs"},
217 @code{"fixed-in-experimental"}, @code{"fixed-upstream"}, @code{"l10n"},
218 @code{"etch"}, @code{"etch-ignore"}, @code{"lenny"},
219 @code{"lenny-ignore"}, @code{"squeeze"}, @code{"squeeze-ignore"},
220 @code{"wheezy"}, @code{"wheezy-ignore"}. The actual list of tags can be
221 found on @uref{http://www.debian.org/Bugs/Developer#tags}.
222
223 GNU port: @code{"fixed"}, @code{"notabug"}, @code{"wontfix"},
224 @code{"unreproducible"}, @code{"moreinfo"}, @code{"patch"},
225 @code{"pending"}, @code{"help"}, @code{"security"}, @code{"confirmed"}.
226 See @url{http://debbugs.gnu.org/Developer.html#tags} for the actual list
227 of tags.
228
229 @item :owner
230 This is used to identify bugs by the owner's email address. The
231 special email address @code{"me"} is used as pattern, replaced with
232 the variable @code{user-mail-address} (@pxref{(elisp)User
233 Identification}).
234
235 @item :submitter
236 With this keyword it is possible to filter bugs by the submitter's
237 email address. The special email address @code{"me"} is used as
238 pattern, replaced with the variable @code{user-mail-address}.
239
240 @item :maint
241 This is used to find bugs of the packages which are maintained by the
242 person with the given email address. The special email address
243 @code{"me"} is used as pattern, replaced with @code{user-mail-address}.
244
245 @item :correspondent
246 This allows to find bug reports where the person with the given email
247 address has participated. The special email address @code{"me"} is used
248 as pattern, replaced with @code{user-mail-address}.
249
250 @item :affects
251 With this keyword it is possible to find bugs which affect the package
252 with the given name. The bugs are chosen by the value of field
253 @code{affects} in bug's status. The returned bugs do not necessary
254 belong to this package.
255
256 @item :status
257 Status of bug. Valid values are @code{"done"}, @code{"forwarded"} and
258 @code{"open"}.
259
260 @item :archive
261 A keyword to filter for bugs which are already archived, or not. Valid
262 values are @code{"0"} (not archived), @code{"1"} (archived) or
263 @code{"both"}. If this keyword is not given in the query,
264 @code{:archive "0"} is assumed by default.
265 @end table
266
267 Example. Get all opened and forwarded release critical bugs for the
268 packages which are maintained by @code{"me"} and which have a patch:
269
270 @example
271 (let ((debbugs-port "debian.org"))
272 (debbugs-get-bugs :maint "me" :tag "patch"
273 :severity "critical"
274 :status "open"
275 :severity "grave"
276 :status "forwarded"
277 :severity "serious"))
278 @end example
279 @end defun
280
281 @defun debbugs-newest-bugs amount
282 This function returns a list of bug numbers, according to @var{amount}
283 (a number) of latest bugs.
284
285 Example. Get the latest six bug report numbers from Debian BTS:
286
287 @example
288 (let ((debbugs-port "debian.org"))
289 (debbugs-newest-bugs 6))
290 @result{} (633152 633153 633154 633155 633156 633157)
291 @end example
292 @end defun
293
294 @node Requesting bugs statuses
295 @chapter Requesting bugs statuses
296
297 Bug status is a collection of fields that holds the information about
298 the state and importance of the bug report, about originator, owner and
299 various aspects of relationship with other bug reports.
300
301 @defun debbugs-get-status &rest bug-numbers
302 Return a list of status entries for the bug reports identified by
303 @var{bug-numbers}. Every returned entry is an association list with the
304 following attributes:
305
306 @table @code
307 @item id
308 @itemx bug_num
309 The bug number.
310
311 @item package
312 A list of package names the bug belongs to.
313
314 @item severity
315 The severity of the bug report. Possible values are the same as for
316 @code{:severity} in @code{debbugs-get-bugs} (@pxref{Requesting bug
317 numbers}).
318
319 @item tags
320 The status of the bug report, a list of strings. Possible values are the
321 same as for @code{:tags} in @code{debbugs-get-bugs} (@pxref{Requesting
322 bug numbers}).
323
324 @item pending
325 The string @code{"pending"}, @code{"forwarded"} or @code{"done"}.
326
327 @item subject
328 Subject/Title of the bugreport.
329
330 @item originator
331 The E-mail address of the bug report submitter.
332
333 @item mergedwith
334 A list of bug numbers this bug was merged with.
335
336 @item source
337 Source package name of the bug report.
338
339 @item date
340 Date of bug creation. Encoded as UNIX time.
341
342 @item log_modified
343 @itemx last_modified
344 Date of last update. Encoded as UNIX time.
345
346 @item found_date
347 @itemx fixed_date
348 Date of bug report / bug fix (empty for now). Encoded as UNIX time.
349
350 @item done
351 The E-mail address of the worker who has closed the bug (if done).
352
353 @item archived
354 @code{t} if the bug is archived, @code{nil} otherwise.
355
356 @item unarchived
357 The date the bug has been unarchived, if ever. Encoded as UNIX time.
358
359 @item found_versions
360 @itemx fixed_versions
361 List of version strings.
362
363 @item forwarded
364 A URL or an E-mail address.
365
366 @item blocks
367 A list of bug numbers this bug blocks.
368
369 @item blockedby
370 A list of bug numbers this bug is blocked by.
371
372 @item msgid
373 The message id of the initial bug report.
374
375 @item owner
376 Who is responsible for fixing.
377
378 @item location
379 Always the string @code{"db-h"} or @code{"archive"}.
380
381 @item affects
382 A list of package names.
383
384 @item summary
385 Arbitrary text.
386 @end table
387
388 Example. Get the status of bug number #10 from GNU BTS:
389
390 @example
391 (let ((debbugs-port "gnu.org"))
392 (debbugs-get-status 10))
393 @result{}
394 (((source . "unknown") (found_versions) (done) (blocks)
395 (date . 1203606305.0) (fixed) (fixed_versions) (mergedwith)
396 (found) (unarchived) (blockedby) (keywords) (summary)
397 (msgid . "<87zltuz7eh.fsf@@freemail.hu>") (id . 10)
398 (forwarded) (severity . "wishlist")
399 (owner . "Magnus Henoch <*****@@freemail.hu>")
400 (log_modified . 1310061242.0) (location . "db-h")
401 (subject . "url-gw should support HTTP CONNECT proxies")
402 (originator . "Magnus Henoch <*****@@freemail.hu>")
403 (last_modified . 1310061242.0) (pending . "pending") (affects)
404 (archived) (tags) (fixed_date) (package "emacs") (found_date)
405 (bug_num . 10)))
406 @end example
407 @end defun
408
409 @defun debbugs-get-attribute bug-or-message attribute
410 General accessor that returns the value of key @var{attribute}.
411 @var{bug-or-message} must be a list element returned by either
412 @code{debbugs-get-status} or @code{debbugs-get-bug-log}
413 (@pxref{Requesting messages}).
414
415 Example. Return the originator of the last submitted bug report:
416
417 @example
418 (let ((debbags-port "gnu.org"))
419 (debbugs-get-attribute
420 (car (apply 'debbugs-get-status (debbugs-newest-bugs 1)))
421 'originator))
422 @result{} "Jack Daniels <jack@@daniels.com>"
423 @end example
424 @end defun
425
426 @node Requesting messages
427 @chapter Requesting messages
428
429 @defun debbugs-get-bug-log bug-number
430 Returns a list of messages related to @var{bug-number}. Every message is
431 an association list with the following attributes:
432
433 @table @code
434 @item msg_num
435 The number of the message inside the bug log. The numbers are ascending,
436 newer messages have a higher number.
437 @item header
438 The header lines from the E-mail messages, as arrived at the bug
439 tracker.
440 @item body
441 The message body.
442 @item attachments
443 A list of possible attachments, or @code{nil}. Not implemented yet server
444 side.
445 @end table
446 @end defun
447
448 @defun debbugs-get-message-numbers messages
449 Returns the message numbers of @var{messages}. @var{messages} must be
450 the result of a @code{debbugs-get-bug-log} call.
451
452 Example. Get message numbers from bug report #456789 log from Debian
453 BTS:
454
455 @example
456 (let ((debbugs-port "debian.org"))
457 (debbugs-get-message-numbers (debbugs-get-bug-log 456789)))
458 @result{} (5 10 12)
459 @end example
460 @end defun
461
462 @defun debbugs-get-message messages message-number
463 Returns the message @var{message-number} of
464 @var{messages}. @var{messages} must be the result of a
465 @code{debbugs-get-bug-log} call. The returned message is a list of
466 strings. The first element are the header lines of the message, the
467 second element is the body of the message. Further elements of the list,
468 if any, are attachments of the message. If there is no message with
469 @var{message-number}, the function returns @code{nil}.
470
471 Example: Return the first message of the last submitted bug report to
472 GNU BTS:
473
474 @example
475 (let* ((debbugs-port "gnu.org")
476 (messages (apply 'debbugs-get-bug-log
477 (debbugs-newest-bugs 1))))
478 (debbugs-get-message
479 messages
480 (car (debbugs-get-message-numbers messages))))
481 @end example
482 @end defun
483
484 @defun debbugs-get-mbox bug-number mbox-type &optional filename
485 Download mbox with all messages from bug report
486 @var{bug-number}. @var{mbox-type} specifies a type of mbox and can be
487 one of the following symbols:
488
489 @table @code
490 @item mboxfolder
491 Download mbox folder, i.e. mbox with messages as they arrived at the
492 Debbugs server.
493
494 @item mboxmaint
495 Download maintainer's mbox, i.e. mbox with messages as they are resent
496 from the Debbugs server.
497
498 @item mboxstat
499 @itemx mboxstatus
500 Download status mbox. The use of either symbol depends on the actual
501 Debbugs server configuration. For @code{"gnu.org"}, use the former;
502 for @code{"debian.org} - the latter.
503 @end table
504
505 @var{filename}, if non-@code{nil}, is the name of the file to store
506 mbox. If @var{filename} is @code{nil}, the downloaded mbox is
507 inserted into the current buffer.
508
509 Note, that mbox downloading will work only if the
510 @code{:bugreport-url} field of the @code{debbugs-servers} variable is
511 specified (@pxref{Configuration}).
512 @end defun
513
514 @node Requesting user tags
515 @chapter Requesting user tags
516
517 A user tag is a string, a user has assigned to one or several bugs.
518 The user is identified by an email address. The port @code{"gnu.org"}
519 uses also package names as user identification.
520
521 @defun debbugs-get-usertag &rest query
522 Return a list of bug numbers which match @var{query}.
523
524 @var{query} is a sequence of keyword-value pairs where the values are
525 strings, i.e. :KEYWORD ``VALUE'' [:KEYWORD ``VALUE'']*
526
527 Valid keywords are:
528
529 @table @code
530 @item :user
531 The value is the name of the package a bug belongs to, like
532 @code{"emacs"}, @code{"coreutils"}, or @code{"tramp"}. It can also be
533 an email address of a user who has applied a user tag. The special
534 email address @code{"me"} is used as pattern, replaced with
535 @code{user-mail-address}. There must be at least one such entry; it
536 is recommended to have exactly one.
537
538 @item :tag
539 A string applied as user tag. Often, it is a subproduct
540 identification, like @code{"cedet"} or @code{"tramp"} for the package
541 @code{"emacs"}.
542 @end table
543
544 If there is no @code{:tag} entry, no bug numbers will be returned but
545 a list of existing user tags for @code{:user}.
546
547 Example. Get all user tags for the package @code{"emacs"}:
548
549 @example
550 (let ((debbugs-port "gnu.org"))
551 (debbugs-get-usertag :user "emacs"))
552 @result{} ("www" "solaris" "ls-lisp" "cygwin")
553 @end example
554
555 Get all bugs tagged by package @code{"emacs"} with @code{"www"} or
556 @code{"cygwin"})):
557
558 @example
559 (let ((debbugs-port "gnu.org"))
560 (debbugs-get-usertag :user "emacs" :tag "www" :tag "cygwin"))
561 @result{} (807 1223 5637)
562 @end example
563 @end defun
564
565 @bye