Submitter | phabricator |
---|---|
Date | April 16, 2021, 12:03 a.m. |
Message ID | <differential-rev-PHID-DREV-gxlnouc4j4vuc2x4t5ck-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/48757/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/utils/urlutil.py b/mercurial/utils/urlutil.py --- a/mercurial/utils/urlutil.py +++ b/mercurial/utils/urlutil.py @@ -445,6 +445,18 @@ return bytes(u) +def list_paths(ui, target_path=None): + """list all the (name, paths) in the passed ui""" + if target_path is None: + return sorted(pycompat.iteritems(ui.paths)) + else: + path = ui.paths.get(target_path) + if path is None: + return [] + else: + return [(target_path, path)] + + def try_path(ui, url): """try to build a path from a url