Lines Matching refs:url
1339 def __init__(self, url):
1341 self.url = url
1344 return str(self.url)
1350 def __init__(self, url):
1352 self.url = url
1355 return _("The search at url {0} returned no results.").format(
1356 self.url)
1401 def __init__(self, url=None, proto=None):
1403 self.url = url
1409 if self.url:
1410 s += "\nRepository URL: {0}".format(self.url)
1418 return self.url == other.url and \
1424 if self.url < other.url:
1426 if self.url != other.url:
1431 return hash((self.url, self.proto))
1573 def __init__(self, url, data):
1575 self.url = url
1580 if self.url:
1581 s += _(": {0}").format(self.url)