mercurial/hg.py
changeset 49690 c37287340c00
parent 49688 f73f02ef8cb6
child 49691 c0acf5440fe1
equal deleted inserted replaced
49689:1863584f2fba 49690:c37287340c00
   145 
   145 
   146 repo_schemes = {
   146 repo_schemes = {
   147     b'bundle': bundlerepo,
   147     b'bundle': bundlerepo,
   148     b'union': unionrepo,
   148     b'union': unionrepo,
   149     b'file': LocalFactory,
   149     b'file': LocalFactory,
   150     b'static-http': statichttprepo,
       
   151 }
   150 }
   152 
   151 
   153 peer_schemes = {
   152 peer_schemes = {
   154     b'http': httppeer,
   153     b'http': httppeer,
   155     b'https': httppeer,
   154     b'https': httppeer,
   156     b'ssh': sshpeer,
   155     b'ssh': sshpeer,
       
   156     b'static-http': statichttprepo,
   157 }
   157 }
   158 
   158 
   159 
   159 
   160 def _peerlookup(path):
   160 def _peerlookup(path):
   161     u = urlutil.url(path)
   161     u = urlutil.url(path)