Function | print_direct_subscribers | Print the direct subscribers listed in a portlet. |
Function | print_also_notified | Print the structural and duplicate subscribers listed in a portlet. |
Function | print_subscribers | Print the subscribers listed in the subscribers JSON portlet. |
Function | print_bug_affects_table | Print information about all the bug tasks in the 'affects' table. |
Function | print_remote_bugtasks | Print the remote bugtasks of this bug. |
Function | print_bugs_list | Print the bugs list with the given ID. |
Function | print_bugtasks | Print all the bugtasks in the text. |
Function | extract_bugtasks | Extracts a list of strings for all the bugtasks in the text. |
Function | create_task_from_strings | Create a task, optionally linked to a watch. |
Function | create_bug_from_strings | Create and return a bug. |
Function | update_task_status | Update a bugtask status. |
Function | create_old_bug | Create an aged bug. |
Function | summarize_bugtasks | Summarize a sequence of bugtasks. |
Function | print_upstream_linking_form | Print the upstream linking form found via +choose-affected-product. |
Function | print_bugfilters_portlet_unfilled | Print the raw, unfilled contents of the bugfilters portlet. |
Function | print_bugfilters_portlet_filled | Print the filled-in contents of the bugfilters portlet. |
Function | print_ul | Print the data from a list. |
Function | print_bug_tag_anchors | The the bug tags in the iterable of anchors. |
Parameters | highlighted_only | Only print the highlighted row |
For each remote bugtask, print the target and the bugwatch.
Right now this is quite simplistic, in that it just extracts the text from the element specified by list_id. If the bug listing becomes more elaborate then this function will be the place to cope with it.
Unknown Field: title | A string. The bug title for testing. | |
Unknown Field: days_old | An int. The bug's age in days. | |
Unknown Field: target | A BugTarget. The bug's target. | |
Unknown Field: status | A BugTaskStatus. The status of the bug's single bugtask. | |
Unknown Field: with_message | A Bool. Whether to create a reply message. | |
Unknown Field: external_bugtracker | An external bug tracker which is watched for this bug. |
Print the upstream linking form found via +choose-affected-product. The resulting output will look something like: (*) A checked option [A related text field] ( ) An unchecked option
Print the raw, unfilled contents of the bugfilters portlet. This is the contents before any actual data has been fetched. (The portlet is normally populated with data by a separate javascript call, to avoid delaying the overall page load. Use print_bugfilters_portlet_filled() to test the populated portlet.) :param browser browser from which to extract the content. :param target entity from whose bugs page to fetch the portlet (e.g., http://bugs.launchpad.test/TARGET/...)
Print the filled-in contents of the bugfilters portlet. This is the contents after the actual data has been fetched. (The portlet is normally populated with data by a separate javascript call, to avoid delaying the overall page load. Use print_bugfilters_portlet_unfilled() to test the unpopulated portlet.) :param browser browser from which to extract the content. :param target entity from whose bugs page to fetch the portlet (e.g., http://bugs.launchpad.test/TARGET/...)