Home
last modified time | relevance | path

Searched refs:committer (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebKitTools/Scripts/
Dvalidate-committer-lists74 for committer in committers:
75 for email in committer.emails:
79 missing_from_mailing_list.append(committer)
85 for committer in committers:
86 for email in committer.emails:
87 email_to_committer_map[email] = committer
233 for committer in committer_list.committers():
234 for email in committer.emails:
238 never_committed.append(committer)
/external/webkit/WebKitTools/Scripts/webkitpy/
Dcommitters_unittest.py35 committer = Committer('Test One', 'one@test.com')
37 committer_list = CommitterList(committers=[committer], reviewers=[reviewer])
40 self.assertEqual(committer_list.committer_by_email('one@test.com'), committer)
57 self.assertEqual(committer.emails, ['one@test.com'])
60 self.assertEqual(committer_list.committers(), [committer, reviewer])
Dcommitters.py258 for committer in self._committers:
259 for email in committer.emails:
260 self._committers_by_email[email] = committer
267 committer = self.committer_by_email(email)
268 if committer and not committer.can_review:
270 return committer
Dbugzilla.py119 committer = getattr(self._bugzilla().committers,
121 if committer:
122 return committer
132 def committer(self): member in Attachment
183 return filter(lambda patch: patch.committer(), patches)
292 committer = getattr(patch, result_key)()
296 if setter_email and not committer:
/external/webkit/WebKitTools/Scripts/webkitpy/commands/
Dupload.py93 if not patch.committer():
117 committer = committers.committer_by_email(attacher_email)
118 if not committer:
122 … committer and has review+, assigning to %s for commit." % (latest_patch.id(), committer.full_name)
123 self.tool.bugs.reassign_bug(bug_id, committer.bugzilla_email(), reassign_message)
/external/webkit/WebKitTools/
DChangeLog199 …ebkitpy/commands/upload.py: Add clean-pending-commit and make assign-to-committer ignore cq+'d pat…
1617 Adding myself to the committer list. No review needed.
1729 Adding myself to the committer list. No review necessary.
1863 Adding myself as committer. No review necessary.
2909 Correct committer name.
2951 validate-committer-lists throws exception and committers.py needs a refresh
2954 * Scripts/validate-committer-lists: use webkit_logging
3346 …at with the newly restructure mock bug cache we're testing cq+'d patches with an invalid committer.
3714 …rry a pointer back to bugzilla (attachments need to access Bugzilla for committer validation and u…
3716 - Move committer validation logic into its own class.
[all …]