webkit  2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
Public Member Functions | Public Attributes | Properties | List of all members
webkitpy.common.net.bugzilla.bugzilla.Bugzilla Class Reference
Inheritance diagram for webkitpy.common.net.bugzilla.bugzilla.Bugzilla:

Public Member Functions

def __init__ (self, committers=committers.CommitterList())
 
def setdefaulttimeout (self, value)
 
def fetch_user (self, user_id)
 
def add_user_to_groups (self, user_id, group_names)
 
def quips (self)
 
def bug_url_for_bug_id (self, bug_id, xml=False)
 
def short_bug_url_for_bug_id (self, bug_id)
 
def add_attachment_url (self, bug_id)
 
def attachment_url_for_id (self, attachment_id, action="view")
 
def edit_user_url_for_id (self, user_id)
 
def fetch_bug_dictionary (self, bug_id)
 
def fetch_bug (self, bug_id)
 
def fetch_attachment_contents (self, attachment_id)
 
def bug_id_for_attachment_id (self, attachment_id)
 
def fetch_attachment (self, attachment_id)
 
def authenticate (self)
 
def add_attachment_to_bug (self, bug_id, file_or_string, description, filename=None, comment_text=None, mimetype=None)
 
def add_patch_to_bug (self, bug_id, file_or_string, description, comment_text=None, mark_for_review=False, mark_for_commit_queue=False, mark_for_landing=False)
 
def create_bug (self, bug_title, bug_description, component=None, diff=None, patch_description=None, cc=None, blocked=None, assignee=None, mark_for_review=False, mark_for_commit_queue=False)
 
def clear_attachment_flags (self, attachment_id, additional_comment_text=None)
 
def set_flag_on_attachment (self, attachment_id, flag_name, flag_value, comment_text=None)
 
def obsolete_attachment (self, attachment_id, comment_text=None)
 
def add_cc_to_bug (self, bug_id, email_address_list)
 
def post_comment_to_bug (self, bug_id, comment_text, cc=None)
 
def close_bug_as_fixed (self, bug_id, comment_text=None)
 
def reassign_bug (self, bug_id, assignee=None, comment_text=None)
 
def reopen_bug (self, bug_id, comment_text)
 

Public Attributes

 authenticated
 
 queries
 
 committers
 
 cached_quips
 
 edit_user_parser
 
 username
 

Properties

 browser = property(_get_browser, _set_browser)
 

Constructor & Destructor Documentation

◆ __init__()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.__init__ (   self,
  committers = committers.CommitterList() 
)

Member Function Documentation

◆ add_attachment_to_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.add_attachment_to_bug (   self,
  bug_id,
  file_or_string,
  description,
  filename = None,
  comment_text = None,
  mimetype = None 
)

◆ add_attachment_url()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.add_attachment_url (   self,
  bug_id 
)

◆ add_cc_to_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.add_cc_to_bug (   self,
  bug_id,
  email_address_list 
)

◆ add_patch_to_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.add_patch_to_bug (   self,
  bug_id,
  file_or_string,
  description,
  comment_text = None,
  mark_for_review = False,
  mark_for_commit_queue = False,
  mark_for_landing = False 
)

◆ add_user_to_groups()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.add_user_to_groups (   self,
  user_id,
  group_names 
)

◆ attachment_url_for_id()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.attachment_url_for_id (   self,
  attachment_id,
  action = "view" 
)

◆ authenticate()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.authenticate (   self)

◆ bug_id_for_attachment_id()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.bug_id_for_attachment_id (   self,
  attachment_id 
)

◆ bug_url_for_bug_id()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.bug_url_for_bug_id (   self,
  bug_id,
  xml = False 
)

◆ clear_attachment_flags()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.clear_attachment_flags (   self,
  attachment_id,
  additional_comment_text = None 
)

◆ close_bug_as_fixed()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.close_bug_as_fixed (   self,
  bug_id,
  comment_text = None 
)

◆ create_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.create_bug (   self,
  bug_title,
  bug_description,
  component = None,
  diff = None,
  patch_description = None,
  cc = None,
  blocked = None,
  assignee = None,
  mark_for_review = False,
  mark_for_commit_queue = False 
)

◆ edit_user_url_for_id()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.edit_user_url_for_id (   self,
  user_id 
)

◆ fetch_attachment()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.fetch_attachment (   self,
  attachment_id 
)

◆ fetch_attachment_contents()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.fetch_attachment_contents (   self,
  attachment_id 
)

◆ fetch_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.fetch_bug (   self,
  bug_id 
)

◆ fetch_bug_dictionary()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.fetch_bug_dictionary (   self,
  bug_id 
)

◆ fetch_user()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.fetch_user (   self,
  user_id 
)

◆ obsolete_attachment()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.obsolete_attachment (   self,
  attachment_id,
  comment_text = None 
)

◆ post_comment_to_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.post_comment_to_bug (   self,
  bug_id,
  comment_text,
  cc = None 
)

◆ quips()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.quips (   self)

◆ reassign_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.reassign_bug (   self,
  bug_id,
  assignee = None,
  comment_text = None 
)

◆ reopen_bug()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.reopen_bug (   self,
  bug_id,
  comment_text 
)

◆ set_flag_on_attachment()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.set_flag_on_attachment (   self,
  attachment_id,
  flag_name,
  flag_value,
  comment_text = None 
)

◆ setdefaulttimeout()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.setdefaulttimeout (   self,
  value 
)

◆ short_bug_url_for_bug_id()

def webkitpy.common.net.bugzilla.bugzilla.Bugzilla.short_bug_url_for_bug_id (   self,
  bug_id 
)

Member Data Documentation

◆ authenticated

webkitpy.common.net.bugzilla.bugzilla.Bugzilla.authenticated

◆ cached_quips

webkitpy.common.net.bugzilla.bugzilla.Bugzilla.cached_quips

◆ committers

webkitpy.common.net.bugzilla.bugzilla.Bugzilla.committers

◆ edit_user_parser

webkitpy.common.net.bugzilla.bugzilla.Bugzilla.edit_user_parser

◆ queries

webkitpy.common.net.bugzilla.bugzilla.Bugzilla.queries

◆ username

webkitpy.common.net.bugzilla.bugzilla.Bugzilla.username

Property Documentation

◆ browser

webkitpy.common.net.bugzilla.bugzilla.Bugzilla.browser = property(_get_browser, _set_browser)
static

The documentation for this class was generated from the following file: