Lines Matching refs:url
378 url = gerrit + '/a/changes/?' + urlencode(data)
380 response_file = url_opener.open(url)
421 def _make_json_post_request(url_opener, url, data, method='POST'): argument
435 request = Request(url, data, headers)
458 url = '{}/a/changes/{}/revisions/current/review'.format(
467 return _make_json_post_request(url_opener, url, data)
473 url = '{}/a/changes/{}/submit'.format(gerrit_url, change_id)
475 return _make_json_post_request(url_opener, url, {})
481 url = '{}/a/changes/{}/abandon'.format(gerrit_url, change_id)
487 return _make_json_post_request(url_opener, url, data)
493 url = '{}/a/changes/{}/restore'.format(gerrit_url, change_id)
495 return _make_json_post_request(url_opener, url, {})
501 url = '{}/a/changes/{}/topic'.format(gerrit_url, change_id)
503 return _make_json_post_request(url_opener, url, data, method='PUT')
509 url = '{}/a/changes/{}/topic'.format(gerrit_url, change_id)
511 return _make_json_post_request(url_opener, url, {}, method='DELETE')
518 url = '{}/a/changes/{}/hashtags'.format(gerrit_url, change_id)
526 return _make_json_post_request(url_opener, url, data)
532 url = '{}/a/changes/{}/revisions/current/review'.format(
539 return _make_json_post_request(url_opener, url, data)
545 url = '{}/a/changes/{}/reviewers/{}/delete'.format(
548 return _make_json_post_request(url_opener, url, {})
554 url = '{}/a/changes/{}/revisions/{}/patch'.format(
557 response_file = url_opener.open(url)