Lines Matching refs:url
132 url = gerrit + '/a/changes/?' + urlencode(data)
134 response_file = url_opener.open(url)
141 def _make_json_post_request(url_opener, url, data, method='POST'): argument
147 request = Request(url, data, headers)
161 url = '{}/a/changes/{}/revisions/current/review'.format(
170 return _make_json_post_request(url_opener, url, data)
176 url = '{}/a/changes/{}/abandon'.format(gerrit_url, change_id)
182 return _make_json_post_request(url_opener, url, data)
188 url = '{}/a/changes/{}/topic'.format(gerrit_url, change_id)
190 return _make_json_post_request(url_opener, url, data, method='PUT')
196 url = '{}/a/changes/{}/topic'.format(gerrit_url, change_id)
197 request = Request(url)
210 url = '{}/a/changes/{}/hashtags'.format(gerrit_url, change_id)
218 return _make_json_post_request(url_opener, url, data)
224 url = '{}/a/changes/{}/revisions/{}/patch'.format(
227 response_file = url_opener.open(url)