Lines Matching refs:url
182 url = gerrit + '/a/changes/?' + urlencode(data)
184 response_file = url_opener.open(url)
191 def _make_json_post_request(url_opener, url, data, method='POST'): argument
205 request = Request(url, data, headers)
228 url = '{}/a/changes/{}/revisions/current/review'.format(
237 return _make_json_post_request(url_opener, url, data)
243 url = '{}/a/changes/{}/submit'.format(gerrit_url, change_id)
245 return _make_json_post_request(url_opener, url, {})
251 url = '{}/a/changes/{}/abandon'.format(gerrit_url, change_id)
257 return _make_json_post_request(url_opener, url, data)
263 url = '{}/a/changes/{}/topic'.format(gerrit_url, change_id)
265 return _make_json_post_request(url_opener, url, data, method='PUT')
271 url = '{}/a/changes/{}/topic'.format(gerrit_url, change_id)
273 return _make_json_post_request(url_opener, url, {}, method='DELETE')
280 url = '{}/a/changes/{}/hashtags'.format(gerrit_url, change_id)
288 return _make_json_post_request(url_opener, url, data)
294 url = '{}/a/changes/{}/revisions/current/review'.format(
301 return _make_json_post_request(url_opener, url, data)
307 url = '{}/a/changes/{}/reviewers/{}/delete'.format(
310 return _make_json_post_request(url_opener, url, {})
316 url = '{}/a/changes/{}/revisions/{}/patch'.format(
319 response_file = url_opener.open(url)