Table of contents
No headers
bugzilla.link(int id, optional boolean state, optional string prefix)
- creates a quick link to a Bugzilla ID #
- id = bugid
- state = optional boolean (true/false), defaults to true
if true, reflect state by striking out the bug #
- prefix = optional string
the string prefix prepended to the bug ID, defaults to "bug "
bugzilla.priority_bugs(string assigned_to, string priority)
- lists the open bugs of a given priority for the given assignee
- assigned_to = the Bugzilla login of the assignee
- priority = the Bugzilla priority level, example: "P1" or "P3"
bugzilla.fixed_bugs(string assigned_to, string start_date, string end_date)
- lists the fixed bugs for the given assignee that were resolved between the given dates
- assigned_to = the Bugzilla login of the assignee
- start_date = the date in YYYY-MM-DD form to start from, inclusive
- end_date = the date in YYYY-MM-DD form to end at, inclusive
bugzilla.list_open_bugs(string product, string component, optional string milestone)
- list the open bugs for a given product/component and optionally milestone
- product = the Bugzilla product
- component = the Bugzilla component
- milestone = optional string, the target milestone to restrict the list to
bugzilla.list_open_bugs(string summary_search_str)
- list the open bugs for a given search string to search within the summary/title
- summary_search_str = the string to search for within the Bugzilla short_desc (summary)
bugzilla.list_closed_bugs(string product, string component, optional string milestone)
- list the closed bugs for a given product/component and optionally milestone
- product = the Bugzilla product
- component = the Bugzilla component
- milestone = optional string, the target milestone to restrict the list to
bugzilla.list_closed_bugs(string summary_search_str)
- list the closed bugs for a given search string to search within the summary/title
- summary_search_str = the string to search for within the Bugzilla short_desc (summary)
bugzilla.cost_open_bugs(string product, string component, optional string milestone)
- sum the total cost for the open bugs for a given product/component and optionally milestone
- product = the Bugzilla product
- component = the Bugzilla component
- milestone = optional string, the target milestone to restrict the list to
bugzilla.cost_open_bugs(string summary_search_str)
- sum the total cost for the open bugs for a given search string to search within the summary/title
- summary_search_str = the string to search for within the Bugzilla short_desc (summary)
bugzilla.cost_closed_bugs(string product, string component, optional string milestone)
- sum the total cost for the closed bugs for a given product/component and optionally milestone
- product = the Bugzilla product
- component = the Bugzilla component
- milestone = optional string, the target milestone to restrict the list to
bugzilla.cost_closed_bugs(string summary_search_str)
- sum the total cost for the closed bugs for a given search string to search within the summary/title
- summary_search_str = the string to search for within the Bugzilla short_desc (summary)
bugzilla.feature_table(string bugid)
- given a feature bugid, will draw a table with all dependent bugs/tasks with priority, cost, testids, etc.