/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | upload.py | 84 for bug_id in tool.bugs.queries.fetch_bug_ids_from_pending_commit_list(): 85 bug = self._tool.bugs.fetch_bug(bug_id) 131 def _assign_bug_to_last_patch_attacher(self, bug_id): argument 133 bug = self._tool.bugs.fetch_bug(bug_id) 136 …log("Bug %s is already assigned to %s (%s)." % (bug_id, assigned_to_email, committers.committer_by… 141 log("Bug %s has no non-obsolete patches, ignoring." % bug_id) 146 log("All reviewed patches on bug %s already have commit-queue+, ignoring." % bug_id) 153 …g("Attacher %s is not a committer. Bug %s likely needs commit-queue+." % (attacher_email, bug_id)) 157 self._tool.bugs.reassign_bug(bug_id, committer.bugzilla_email(), reassign_message) 160 for bug_id in tool.bugs.queries.fetch_bug_ids_from_pending_commit_list(): [all …]
|
D | download.py | 140 bugs_to_patches[patch.bug_id()] = bugs_to_patches.get(patch.bug_id(), []) + [patch] 182 for bug_id in args: 183 patches = tool.bugs.fetch_bug(bug_id).reviewed_patches() 184 log("%s found on bug %s." % (pluralize("reviewed patch", len(patches)), bug_id)) 298 if commit_info and commit_info.bug_id(): 303 log("Preparing rollout for bug %s." % commit_info.bug_id()) 326 "bug_id": commit_info.bug_id(),
|
D | openbugs.py | 43 for bug_id in bug_ids: 44 bug_url = self._tool.bugs.bug_url_for_bug_id(bug_id)
|
D | queues.py | 74 def _cc_watchers(self, bug_id): argument 76 self._tool.bugs.add_cc_to_bug(bug_id, self.watchers) 243 return os.path.join(self._log_directory(), "%s.log" % patch.bug_id()) 275 …self._tool.bugs.add_attachment_to_bug(patch.bug_id(), results_archive_file, description, filename=… 278 self._cc_watchers(patch.bug_id()) 353 …l.workspace.find_unused_filename(self._log_directory(), "%s-%s" % (patch.bug_id(), results_name), … 455 tool.bugs.post_comment_to_bug(state["patch"].bug_id(), message, cc=cls.watchers)
|
D | queries.py | 68 for bug_id in bug_ids: 69 print "%s" % bug_id 108 bugs_needing_cq = map(lambda patch: patch.bug_id(), patches_needing_cq) 110 for bug_id in bugs_needing_cq: 111 print "%s" % tool.bugs.bug_url_for_bug_id(bug_id)
|
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
D | bugzilla.py | 126 def _fetch_bug(self, bug_id): argument 127 return self._bugzilla.fetch_bug(bug_id) 177 return sum([self._fetch_bug(bug_id).reviewed_patches() 178 for bug_id in self.fetch_bug_ids_from_pending_commit_list()], []) 187 return sum([self._fetch_bug(bug_id).commit_queued_patches() 188 for bug_id in self.fetch_bug_ids_from_commit_queue()], []) 197 return sum([self._fetch_bug(bug_id).unreviewed_patches() 198 for bug_id in self.fetch_bug_ids_from_review_queue()[:limit]], []) 238 def bug_url_for_bug_id(self, bug_id, xml=False): argument 239 if not bug_id: [all …]
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
D | updatechangelogswithreviewer.py | 45 def _guess_reviewer_from_bug(self, bug_id): argument 46 patches = self._tool.bugs.fetch_bug(bug_id).reviewed_patches() 48 … log("%s on bug %s, cannot infer reviewer." % (pluralize("reviewed patch", len(patches)), bug_id)) 51 …%s\" as reviewer from attachment %s on bug %s." % (patch.reviewer().full_name, patch.id(), bug_id)) 55 bug_id = state.get("bug_id") 56 if not bug_id and state.get("patch"): 57 bug_id = state.get("patch").bug_id() 61 if not bug_id: 64 reviewer = self._guess_reviewer_from_bug(bug_id) 67 …viewer from bug %s and --reviewer= not provided. Not updating ChangeLogs with reviewer." % bug_id)
|
D | closebugforlanddiff.py | 44 bug_id = state.get("bug_id") 45 if not bug_id and state.get("patch"): 46 bug_id = state.get("patch").bug_id() 48 if bug_id: 49 log("Updating bug %s" % bug_id) 51 self._tool.bugs.close_bug_as_fixed(bug_id, comment_text) 55 self._tool.bugs.post_comment_to_bug(bug_id, comment_text)
|
D | reopenbugafterrollout.py | 39 bug_id = state["bug_id"] 40 if not bug_id: 44 self._tool.bugs.reopen_bug(bug_id, comment_text)
|
D | obsoletepatches.py | 45 bug_id = state["bug_id"] 46 patches = self._tool.bugs.fetch_bug(bug_id).patches() 49 log("Obsoleting %s on bug %s" % (pluralize("old patch", len(patches)), bug_id))
|
D | closebug.py | 46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches() 49 …ew=%s. Assuming there are more patches to land from this bug." % (patch.bug_id(), patch.id(), pat… 51 …self._tool.bugs.close_bug_as_fixed(state["patch"].bug_id(), "All reviewed patches have been landed…
|
D | preparechangelog.py | 50 bug_id = state.get("bug_id") 54 if not changelog.latest_entry().bug_id(): 57 self._tool.bugs.bug_url_for_bug_id(bug_id))
|
D | attachtobug.py | 45 bug_id = state["bug_id"] 51 self._tool.bugs.add_attachment_to_bug(bug_id, filepath, description, filename, comment_text)
|
D | applypatch.py | 42 log("Processing patch %s from bug %s." % (state["patch"].id(), state["patch"].bug_id()))
|
/external/webkit/Tools/QueueStatusServer/handlers/ |
D | patch.py | 40 bug_id = None 43 bug_id = status.active_bug_id # Should be the same for every status. 50 "bug_id" : bug_id,
|
D | updatestatus.py | 49 bug_id = self._int_from_request("bug_id") 55 queue_status.active_bug_id = bug_id
|
D | dashboard.py | 53 "bug_id": attachment.bug_id(),
|
/external/webkit/Tools/Scripts/webkitpy/tool/ |
D | mocktool.py | 301 def fetch_bug(self, bug_id): argument 302 return Bug(self.bug_cache.get(bug_id), self) 320 def bug_url_for_bug_id(self, bug_id): argument 321 return "%s/%s" % (self.bug_server_url, bug_id) 323 def fetch_bug_dictionary(self, bug_id): argument 324 return self.bug_cache.get(bug_id) 341 def post_comment_to_bug(self, bug_id, comment_text, cc=None): argument 343 bug_id, cc, comment_text)) 346 bug_id, argument 351 …log("MOCK add_attachment_to_bug: bug_id=%s, description=%s filename=%s" % (bug_id, description, fi… [all …]
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
D | irc_command.py | 89 bug_id = sheriff.post_rollout_patch(svn_revision_list, complete_reason) 90 bug_url = tool.bugs.bug_url_for_bug_id(bug_id) 95 bug_id = parse_bug_id(e.output) 96 if bug_id: 98 tool.bugs.bug_url_for_bug_id(bug_id))
|
D | feeders.py | 62 def _patches_for_bug(self, bug_id): argument 63 return self._tool.bugs.fetch_bug(bug_id).commit_queued_patches(include_invalid=True) 72 all_patches = sum([self._patches_for_bug(bug_id) for bug_id in bug_ids], [])
|
D | sheriff_unittest.py | 58 commit_info.bug_id = lambda: None 64 commit_info.bug_id = lambda: 1234
|
D | sheriff.py | 81 if not commit_info.bug_id(): 89 self._tool.bugs.post_comment_to_bug(commit_info.bug_id(),
|
D | flakytestreporter.py | 128 … % (self._bot_name, flaky_result.filename, ", ".join(failure_messages), patch.id(), patch.bug_id()) 200 self._tool.bugs.post_comment_to_bug(patch.bug_id(), message)
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
D | commitinfo.py | 58 def bug_id(self): member in CommitInfo 88 string += " Bug: %s (%s)\n" % (self.bug_id(), bugs.bug_url_for_bug_id(self.bug_id()))
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
D | statusserver.py | 65 if patch.bug_id(): 66 self._browser["bug_id"] = unicode(patch.bug_id())
|