Lines Matching refs:scheme
2155 unsupported scheme."""
2170 scheme = urlsplit(u,
2172 illegals.append((u, scheme))
2179 msg += _("\n {uri} (scheme: "
2180 "{scheme})").format(uri=i, scheme=s)
2185 "scheme '{scheme}'. Supported schemes are "
2187 uri=i, scheme=s)
2188 return _("The specified URI uses an unsupported scheme."
2195 supported for the URI's scheme."""
2198 return _("'{attr}' is not supported for '{scheme}'.").format(
2199 attr=self.data, scheme=self._args["scheme"])
2207 scheme = urlsplit(self.data,
2210 "scheme '{scheme}'. Currently the only supported "
2211 "scheme is http://.").format(
2212 uri=self.data, scheme=scheme)
2213 return _("The specified proxy URI uses an unsupported scheme."
2214 " Currently the only supported scheme is: http://.")