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

Side by Side Diff: git_cl.py

Issue 1922133006: git_cl: Add the ability to set the description. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: One line, moved changelist mock out. Created 4 years, 7 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
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | tests/git_cl_test.py » ('J')
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 3253 matching lines...) Expand 10 before | Expand all | Expand 10 after
3264 with open(options.json_file, 'wb') as f: 3264 with open(options.json_file, 'wb') as f:
3265 json.dump(summary, f) 3265 json.dump(summary, f)
3266 return 0 3266 return 0
3267 3267
3268 3268
3269 @subcommand.usage('[codereview url or issue id]') 3269 @subcommand.usage('[codereview url or issue id]')
3270 def CMDdescription(parser, args): 3270 def CMDdescription(parser, args):
3271 """Brings up the editor for the current CL's description.""" 3271 """Brings up the editor for the current CL's description."""
3272 parser.add_option('-d', '--display', action='store_true', 3272 parser.add_option('-d', '--display', action='store_true',
3273 help='Display the description instead of opening an editor') 3273 help='Display the description instead of opening an editor')
3274 parser.add_option('-n', '--new-description',
3275 help='New description to set for this issue (- for stdin)')
3274 3276
3275 _add_codereview_select_options(parser) 3277 _add_codereview_select_options(parser)
3276 auth.add_auth_options(parser) 3278 auth.add_auth_options(parser)
3277 options, args = parser.parse_args(args) 3279 options, args = parser.parse_args(args)
3278 _process_codereview_select_options(parser, options) 3280 _process_codereview_select_options(parser, options)
3279 3281
3280 target_issue = None 3282 target_issue = None
3281 if len(args) > 0: 3283 if len(args) > 0:
3282 issue_arg = ParseIssueNumberArgument(args[0]) 3284 issue_arg = ParseIssueNumberArgument(args[0])
3283 if not issue_arg.valid: 3285 if not issue_arg.valid:
3284 parser.print_help() 3286 parser.print_help()
3285 return 1 3287 return 1
3286 target_issue = issue_arg.issue 3288 target_issue = issue_arg.issue
3287 3289
3288 auth_config = auth.extract_auth_config_from_options(options) 3290 auth_config = auth.extract_auth_config_from_options(options)
3289 3291
3290 cl = Changelist( 3292 cl = Changelist(
3291 auth_config=auth_config, issue=target_issue, 3293 auth_config=auth_config, issue=target_issue,
3292 codereview=options.forced_codereview) 3294 codereview=options.forced_codereview)
3293 3295
3294 if not cl.GetIssue(): 3296 if not cl.GetIssue():
3295 DieWithError('This branch has no associated changelist.') 3297 DieWithError('This branch has no associated changelist.')
3296 description = ChangeDescription(cl.GetDescription()) 3298 description = ChangeDescription(cl.GetDescription())
3299
3297 if options.display: 3300 if options.display:
3298 print description.description 3301 print description.description
3299 return 0 3302 return 0
3300 description.prompt() 3303
3304 if options.new_description:
3305 text = options.new_description
3306 if text == '-':
3307 text = '\n'.join(sys.stdin.splitlines())
3308
3309 description.set_description(text)
3310 else:
3311 description.prompt()
3312
3301 if cl.GetDescription() != description.description: 3313 if cl.GetDescription() != description.description:
3302 cl.UpdateDescription(description.description) 3314 cl.UpdateDescription(description.description)
3303 return 0 3315 return 0
3304 3316
3305 3317
3306 def CreateDescriptionFromLog(args): 3318 def CreateDescriptionFromLog(args):
3307 """Pulls out the commit log to use as a base for the CL description.""" 3319 """Pulls out the commit log to use as a base for the CL description."""
3308 log_args = [] 3320 log_args = []
3309 if len(args) == 1 and not args[0].endswith('.'): 3321 if len(args) == 1 and not args[0].endswith('.'):
3310 log_args = [args[0] + '..'] 3322 log_args = [args[0] + '..']
(...skipping 1544 matching lines...) Expand 10 before | Expand all | Expand 10 after
4855 if __name__ == '__main__': 4867 if __name__ == '__main__':
4856 # These affect sys.stdout so do it outside of main() to simplify mocks in 4868 # These affect sys.stdout so do it outside of main() to simplify mocks in
4857 # unit testing. 4869 # unit testing.
4858 fix_encoding.fix_encoding() 4870 fix_encoding.fix_encoding()
4859 setup_color.init() 4871 setup_color.init()
4860 try: 4872 try:
4861 sys.exit(main(sys.argv[1:])) 4873 sys.exit(main(sys.argv[1:]))
4862 except KeyboardInterrupt: 4874 except KeyboardInterrupt:
4863 sys.stderr.write('interrupted\n') 4875 sys.stderr.write('interrupted\n')
4864 sys.exit(1) 4876 sys.exit(1)
OLDNEW
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | tests/git_cl_test.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698