l.r.b.p.BugSubscriberPackageBugsSearchListingView(BugTaskSearchListingView) : class documentation

Part of lp.registry.browser.person View In Hierarchy

Bugs reported on packages for a bug subscriber.
Method current_package Get the package whose bugs are currently being searched.
Method search Return an ITableBatchNavigator for the GET search criteria.
Method getMilestoneWidgetValues See BugTaskSearchListingView.
Method total_bug_counts Return the totals of each type of package bug count as a dict.
Method package_bug_counts Return a list of dicts used for rendering package bug counts.
Method getOtherBugSubscriberPackageLinks Return a list of the other packages for a bug subscriber.
Method getBugSubscriberPackageSearchURL Construct a default search URL for a distributionsourcepackage.
Method getBugSubscriberPackageAdvancedSearchURL Build the advanced search URL for a distributionsourcepackage.
Method getOpenBugsURL Return the URL for open bugs on distributionsourcepackage.
Method getCriticalBugsURL Return the URL for critical bugs on distributionsourcepackage.
Method getHighBugsURL Return URL for high bugs on distributionsourcepackage.
Method getUnassignedBugsURL Return the URL for unassigned bugs on distributionsourcepackage.
Method getInProgressBugsURL Return the URL for unassigned bugs on distributionsourcepackage.
Method shouldShowSearchWidgets Undocumented
Method getAdvancedSearchPageHeading The header for the advanced search page.
Method getAdvancedSearchButtonLabel Undocumented
Method getSimpleSearchURL Return a URL that can be used as an href to the simple search.
Method label Undocumented

Inherited from BugTaskSearchListingView:

Method schema Return the schema that defines the form.
Method feed_links Prevent conflicts between the page and the atom feed.
Method initialize Initialize the view with the request.
Method columns_to_show Returns a sequence of column names to be shown in the listing.
Method validate_search_params Validate the params passed for the search.
Method setUpWidgets Customize the onKeyPress event of the assignee chooser.
Method validate Validates the form.
Method buildSearchParams Build the BugTaskSearchParams object for the given arguments and
Method buildBugTaskSearchParams Build the parameters to submit to the searchTasks method.
Method searchUnbatched Return a SelectResults object for the GET search criteria.
Method getWidgetValues Return data used to render a field's widget.
Method getStatusWidgetValues Return data used to render the status checkboxes.
Method getImportanceWidgetValues Return data used to render the Importance checkboxes.
Method shouldShowAssigneeWidget Should the assignee widget be shown on the advanced search page?
Method shouldShowCommenterWidget Show the commenter widget on the advanced search page?
Method shouldShowComponentWidget Show the component widget on the advanced search page?
Method shouldShowSupervisorWidget Should the bug supervisor widget be shown on the advanced search page?
Method shouldShowNoPackageWidget Should the widget to filter on bugs with no package be shown?
Method shouldShowReporterWidget Should the reporter widget be shown on the advanced search page?
Method shouldShowTagsCombinatorWidget Should the tags combinator widget show on the search page?
Method shouldShowReleaseCriticalPortlet Should the page include a portlet showing release-critical bugs
Method shouldShowSubscriberWidget Show the subscriber widget on the advanced search page?
Method shouldShowUpstreamStatusBox Should the upstream status filtering widgets be shown?
Method getSortLink Return a link that can be used to sort results by colname.
Method getSortedColumnCSSClass Return a class appropriate for sorted columns
Method shouldShowTargetName Should the bug target name be displayed in the list of results?
Method shouldShowAdvancedForm Return True if the advanced form should be shown, or False.
Method form_has_errors Return True of the form has errors, otherwise False.
Method validateVocabulariesAdvancedForm Provides a meaningful message for vocabulary validation errors.
Method isUpstreamProduct Is the context a Product that does not use Malone?
Method addquestion_url Return the URL for the +addquestion view for the context.
Method _migrateOldUpstreamStatus Converts old upstream status value parameters to new ones.
Method _buildUpstreamStatusParams Convert the status_upstream value to parameters we can
Method _getBatchNavigator Return the batch navigator to be used to batch the bugtasks.
Method _getSortStatus Finds out if the list is sorted by the column specified.
Method _upstreamContext Is this page being viewed in an upstream context?
Method _productSeriesContext Is this page being viewed in a product series context?
Method _projectContext Is this page being viewed in a project context?
Method _personContext Is this page being viewed in a person context?
Method _distributionContext Is this page being viewed in a distribution context?
Method _distroSeriesContext Is this page being viewed in a distroseries context?
Method _sourcePackageContext Is this view in a [distroseries] sourcepackage context?
Method _distroSourcePackageContext Is this page being viewed in a distribution sourcepackage context?

Inherited from BugsInfoMixin (via BugTaskSearchListingView):

Method bugs_fixed_elsewhere_url A URL to a list of bugs fixed elsewhere.
Method open_cve_bugs_url A URL to a list of open bugs linked to CVEs.
Method open_cve_bugs_has_report Whether or not the context has a CVE report page.
Method pending_bugwatches_url A URL to a list of bugs that need a bugwatch.
Method expirable_bugs_url A URL to a list of bugs that can expire, or None.
Method new_bugs_url A URL to a page of new bugs.
Method inprogress_bugs_url A URL to a page of inprogress bugs.
Method open_bugs_url A URL to a list of open bugs.
Method critical_bugs_url A URL to a list of critical bugs.
Method high_bugs_url A URL to a list of high priority bugs.
Method my_bugs_url A URL to a list of bugs assigned to the user, or None.
@property
def current_package(self):
Get the package whose bugs are currently being searched.
def search(self, searchtext=None):
Return an ITableBatchNavigator for the GET search criteria.
ParameterssearchtextText that must occur in the bug report. If searchtext is None, the search text will be gotten from the request.
extra_paramsA dict that provides search params added to the search criteria taken from the request. Params in extra_params take precedence over request params.
def getMilestoneWidgetValues(self):
See BugTaskSearchListingView.

We return only the active milestones on the current distribution since any others are irrelevant.

@cachedproperty
def total_bug_counts(self):
Return the totals of each type of package bug count as a dict.
@cachedproperty
def package_bug_counts(self):
Return a list of dicts used for rendering package bug counts.
def getOtherBugSubscriberPackageLinks(self):
Return a list of the other packages for a bug subscriber.

This excludes the current package.

def getBugSubscriberPackageSearchURL(self, distributionsourcepackage=None, advanced=False, extra_params=None):
Construct a default search URL for a distributionsourcepackage.

Optional filter parameters can be specified as a dict with the extra_params argument.

def getBugSubscriberPackageAdvancedSearchURL(self, distributionsourcepackage=None):
Build the advanced search URL for a distributionsourcepackage.
def getOpenBugsURL(self, distributionsourcepackage):
Return the URL for open bugs on distributionsourcepackage.
def getCriticalBugsURL(self, distributionsourcepackage):
Return the URL for critical bugs on distributionsourcepackage.
def getHighBugsURL(self, distributionsourcepackage):
Return URL for high bugs on distributionsourcepackage.
def getUnassignedBugsURL(self, distributionsourcepackage):
Return the URL for unassigned bugs on distributionsourcepackage.
def getInProgressBugsURL(self, distributionsourcepackage):
Return the URL for unassigned bugs on distributionsourcepackage.
def shouldShowSearchWidgets(self):
Undocumented
def getAdvancedSearchPageHeading(self):
The header for the advanced search page.
def getAdvancedSearchButtonLabel(self):
Undocumented
def getSimpleSearchURL(self):
Return a URL that can be used as an href to the simple search.
@property
def label(self):
Undocumented
API Documentation for Launchpad, generated by pydoctor at 2010-09-27 00:00:11.