HomeSort by relevance Sort by last modified time
    Searched refs:bug_id (Results 1 - 25 of 36) sorted by null

1 2

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
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)
updatechangelogswithreviewer.py 45 def _guess_reviewer_from_bug(self, bug_id):
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 log("Guessing \"%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
    [all...]
reopenbugafterrollout.py 39 bug_id = state["bug_id"]
40 if not bug_id:
44 self._tool.bugs.reopen_bug(bug_id, comment_text)
closebug.py 46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches()
49 log("Not closing bug %s as attachment %s has review=%s. Assuming there are more patches to land from this bug." % (patch.bug_id(), patch.id(), patch.review()))
51 self._tool.bugs.close_bug_as_fixed(state["patch"].bug_id(), "All reviewed patches have been landed. Closing bug.")
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))
attachtobug.py 45 bug_id = state["bug_id"]
51 self._tool.bugs.add_attachment_to_bug(bug_id, filepath, description, filename, comment_text)
preparechangelog.py 48 if not state.get("bug_id"):
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))
65 if state.get("bug_id"):
66 args.append("--bug=%s" % state["bug_id"])
67 args.append("--description=%s" % self._tool.bugs.fetch_bug(state["bug_id"]).title())
applypatch.py 42 log("Processing patch %s from bug %s." % (state["patch"].id(), state["patch"].bug_id()))
  /external/webkit/Tools/QueueStatusServer/handlers/
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,
updatestatus.py 49 bug_id = self._int_from_request("bug_id")
55 queue_status.active_bug_id = bug_id
dashboard.py 53 "bug_id": attachment.bug_id(),
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
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):
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_email(assigned_to_email)))
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 log("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...]
openbugs.py 43 for bug_id in bug_ids:
44 bug_url = self._tool.bugs.bug_url_for_bug_id(bug_id)
download.py 112 "bug_id": (args and args[0]) or tool.checkout().bug_id_for_this_commit(options.git_commit, changed_files),
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(),
    [all...]
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)
queues.py 74 def _cc_watchers(self, bug_id):
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="layout-test-results.zip", comment_text=comment_text)
278 self._cc_watchers(patch.bug_id())
352 # Note: We name the zip with the bug_id instead of patch_id to match work_item_log_path().
353 zip_path = self._tool.workspace.find_unused_filename(self._log_directory(), "%s-%s" % (patch.bug_id(), results_name), "zip")
455 tool.bugs.post_comment_to_bug(state["patch"].bug_id(), message, cc=cls.watchers)
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla.py 58 return int(match.group('bug_id'))
61 return int(match.group('bug_id'))
73 return int(match.group('bug_id'))
76 return int(match.group('bug_id'))
126 def _fetch_bug(self, bug_id):
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()], []
    [all...]
attachment.py 60 def bug_id(self): member in class:Attachment
61 return int(self._attachment_dictionary.get("bug_id"))
104 self._attachment_dictionary['bug_id'], flag, email))
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
commitinfo.py 39 self._bug_id = changelog_data["bug_id"]
58 def bug_id(self): member in class:CommitInfo
88 string += " Bug: %s (%s)\n" % (self.bug_id(), bugs.bug_url_for_bug_id(self.bug_id()))
commitinfo_unittest.py 43 "bug_id": 1234,
53 self.assertEqual(commit.bug_id(), 1234)
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
feeders.py 62 def _patches_for_bug(self, bug_id):
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], [])
sheriff_unittest.py 58 commit_info.bug_id = lambda: None
60 # Should do nothing with no bug_id
64 commit_info.bug_id = lambda: 1234
69 expected_stderr = u"""MOCK bug comment: bug_id=1234, cc=['watcher@example.com']
74 MOCK bug comment: bug_id=1234, cc=['watcher@example.com']
81 MOCK bug comment: bug_id=1234, cc=['watcher@example.com']
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))
sheriff.py 81 if not commit_info.bug_id():
89 self._tool.bugs.post_comment_to_bug(commit_info.bug_id(),
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 54 "bug_id": 42,
69 "bug_id": 42,
84 "bug_id": 75,
96 "bug_id": 77,
110 "bug_id": 77,
123 "bug_id": 77,
136 "bug_id": 76,
301 def fetch_bug(self, bug_id):
302 return Bug(self.bug_cache.get(bug_id), self)
315 bug = self.fetch_bug(attachment_dictionary["bug_id"])
    [all...]

Completed in 168 milliseconds

1 2