Home | History | Annotate | Download | only in commands

Lines Matching full:review

75         if patch.review() == "+":
77 what_was_cleared.append("%s's review+" % patch.reviewer().full_name)
79 what_was_cleared.append("review+")
97 name = "clean-review-queue"
101 queue_url = "http://webkit.org/pending-review"
102 # We do this inefficient dance to be more like webkit.org/pending-review
104 # closed bugs, but folks using /pending-review will see them. :(
107 if not patch.review() == "?":
113 bug_closed_explanation = " If you would like this patch reviewed, please attach it to a new bug (or re-open this bug before marking it for review again)."
117 message = "Cleared review? from %sattachment %s so that this bug does not appear in %s.%s" % (attachment_obsolete_modifier, patch.id(), queue_url, bug_closed_explanation)
156 reassign_message = "Attachment %s was posted by a committer and has review+, assigning to %s for commit." % (latest_patch.id(), committer.full_name)
257 help_text = "Automates the process of uploading a patch for review"
306 steps.Options.review,
342 tool.bugs.add_patch_to_bug(bug_id, diff, description, comment_text, mark_for_review=options.review, mark_for_commit_queue=options.request_commit)
435 make_option("--no-review", action="store_false", dest="review", default=True, help="Do not mark the patch for review."),
436 make_option("--request-commit", action="store_true", dest="request_commit", default=False, help="Mark the patch as needing auto-commit after review."),
459 bug_id = tool.bugs.create_bug(bug_title, comment_text, options.component, diff, "Patch", cc=options.cc, mark_for_review=options.review, mark_for_commit_queue=options.request_commit)
478 bug_id = tool.bugs.create_bug(bug_title, comment_text, options.component, diff, "Patch", cc=options.cc, mark_for_review=options.review, mark_for_commit_queue=options.request_commit)