Lines Matching refs:uris
46 uris = {}
87 uris[m] = md['url']
91 if uris[m].startswith('..') or uris[m].startswith('./'):
93 newud.path = os.path.realpath(os.path.join(newud.path, uris[m]))
94 uris[m] = Git._get_repo_url(self, newud)
99 if "://" in uris[module]:
101 proto = uris[module].split(':', 1)[0]
102 url = uris[module].replace('%s:' % proto, 'gitsm:', 1)
104 if ":" in uris[module]:
107 if ":/" in uris[module]:
109 url = "gitsm://" + uris[module].replace(':/', '/', 1)
112 …fers to relative ssh reference %s. References may fail if not absolute." % (ud.url, uris[module]))
113 url = "gitsm://" + uris[module].replace(':', '/', 1)
117 url = "gitsm://" + uris[module]