~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/doc/bugtracker.txt

[r=henninge][no-qa] Improve/generalize bugtracker_component tests a
        bit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
324
324
Filing a bug on the remote tracker
325
325
----------------------------------
326
326
 
327
 
The IBugTracker interface defines a method, getBugFilingAndSearchLinks(),
328
 
which returns the URLs of the bug filing form and the bug search on
329
 
the remote bug tracker as a dict. It accepts three parameters:
330
 
remote_product, which is the name of the product on the remote
331
 
tracker; summary, which is the bug summary to be passed to the remote
332
 
bug tracker for searching or filing and description, which is the full
333
 
description of the bug. This is only passed to the bug filing form as
334
 
it is too specific for the search form.
 
327
The IBugTracker interface defines a method to convert product,
 
328
component, summary, and description strings into URLs for filing and/or
 
329
searching bugs.
335
330
 
336
331
    >>> def print_links(links_dict):
337
332
    ...     for key in sorted(links_dict):