Lines Matching refs:url
27 def load_index(self, url, load): argument
39 up = urlparse(url)
42 return self.load_index_file(up, url, load)
45 return self.load_index_web(up, url, load)
47 raise layerindexlib.plugin.LayerIndexPluginUrlError(self.type, url)
50 def load_index_file(self, up, url, load): argument
65 index.config['URL'] = url
134 def load_index_web(self, up, url, load): argument
166 logger.debug("%s: Connection reset by peer. Retrying..." % url)
178 index.config['URL'] = url
197 … index.apilinks = _get_json_response(apiurl=url, username=up.username, password=up.password)
199 raise layerindexlib.LayerIndexFetchError(url, e)
216 logger.debug("No valid branches (%s) found at url %s." % (branch, url))
228 logger.debug("No layers were found at url %s." % (url))
244 … logger.debug("No valid layer branches (%s) found at url %s." % (branches or "*", url))
268 def store_index(self, url, index): argument
281 up = urlparse(url)
284 raise layerindexlib.plugin.LayerIndexPluginUrlError(self.type, url)