OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |