Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: git_cl.py

Issue 1917473002: Make `git cl description` work for Gerrit (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« gerrit_util.py ('K') | « gerrit_util.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # Copyright (C) 2008 Evan Martin <martine@danga.com> 6 # Copyright (C) 2008 Evan Martin <martine@danga.com>
7 7
8 """A git-command for integrating reviews on Rietveld and Gerrit.""" 8 """A git-command for integrating reviews on Rietveld and Gerrit."""
9 9
10 from distutils.version import LooseVersion 10 from distutils.version import LooseVersion
(...skipping 2149 matching lines...) Expand 10 before | Expand all | Expand 10 after
2160 2160
2161 def GetMostRecentPatchset(self): 2161 def GetMostRecentPatchset(self):
2162 data = self._GetChangeDetail(['CURRENT_REVISION']) 2162 data = self._GetChangeDetail(['CURRENT_REVISION'])
2163 return data['revisions'][data['current_revision']]['_number'] 2163 return data['revisions'][data['current_revision']]['_number']
2164 2164
2165 def FetchDescription(self): 2165 def FetchDescription(self):
2166 data = self._GetChangeDetail(['COMMIT_FOOTERS', 'CURRENT_REVISION']) 2166 data = self._GetChangeDetail(['COMMIT_FOOTERS', 'CURRENT_REVISION'])
2167 return data['revisions'][data['current_revision']]['commit_with_footers'] 2167 return data['revisions'][data['current_revision']]['commit_with_footers']
2168 2168
2169 def UpdateDescriptionRemote(self, description): 2169 def UpdateDescriptionRemote(self, description):
2170 # TODO(tandrii) 2170 gerrit_util.SetCommitMessage(self._GetGerritHost(), self.GetIssue(),
2171 raise NotImplementedError() 2171 description)
2172 2172
2173 def CloseIssue(self): 2173 def CloseIssue(self):
2174 gerrit_util.AbandonChange(self._GetGerritHost(), self.GetIssue(), msg='') 2174 gerrit_util.AbandonChange(self._GetGerritHost(), self.GetIssue(), msg='')
2175 2175
2176 def SubmitIssue(self, wait_for_merge=True): 2176 def SubmitIssue(self, wait_for_merge=True):
2177 gerrit_util.SubmitChange(self._GetGerritHost(), self.GetIssue(), 2177 gerrit_util.SubmitChange(self._GetGerritHost(), self.GetIssue(),
2178 wait_for_merge=wait_for_merge) 2178 wait_for_merge=wait_for_merge)
2179 2179
2180 def _GetChangeDetail(self, options=None, issue=None): 2180 def _GetChangeDetail(self, options=None, issue=None):
2181 options = options or [] 2181 options = options or []
(...skipping 2646 matching lines...) Expand 10 before | Expand all | Expand 10 after
4828 if __name__ == '__main__': 4828 if __name__ == '__main__':
4829 # These affect sys.stdout so do it outside of main() to simplify mocks in 4829 # These affect sys.stdout so do it outside of main() to simplify mocks in
4830 # unit testing. 4830 # unit testing.
4831 fix_encoding.fix_encoding() 4831 fix_encoding.fix_encoding()
4832 setup_color.init() 4832 setup_color.init()
4833 try: 4833 try:
4834 sys.exit(main(sys.argv[1:])) 4834 sys.exit(main(sys.argv[1:]))
4835 except KeyboardInterrupt: 4835 except KeyboardInterrupt:
4836 sys.stderr.write('interrupted\n') 4836 sys.stderr.write('interrupted\n')
4837 sys.exit(1) 4837 sys.exit(1)
OLDNEW
« gerrit_util.py ('K') | « gerrit_util.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698