mercurial/hg.py
changeset 2431 d90a9d7c7d4d
parent 1945 dec6d3c13dbf
child 2469 2e91ba371c4c
child 2472 e6ec81a8feea
--- a/mercurial/hg.py	Wed Jun 14 18:27:30 2006 +0000
+++ b/mercurial/hg.py	Wed Jun 14 21:53:42 2006 +0200
@@ -8,6 +8,7 @@
 from node import *
 from repo import *
 from demandload import *
+from i18n import gettext as _
 demandload(globals(), "localrepo bundlerepo httprepo sshrepo statichttprepo")
 
 def repository(ui, path=None, create=0):
@@ -17,11 +18,18 @@
         if path.startswith("https://"):
             return httprepo.httpsrepository(ui, path)
         if path.startswith("hg://"):
+            ui.warn(_("hg:// syntax is deprecated, "
+                      "please use http:// instead\n"))
             return httprepo.httprepository(
                 ui, path.replace("hg://", "http://"))
         if path.startswith("old-http://"):
+            ui.warn(_("old-http:// syntax is deprecated, "
+                      "please use static-http:// instead\n"))
             return statichttprepo.statichttprepository(
                 ui, path.replace("old-http://", "http://"))
+        if path.startswith("static-http://"):
+            return statichttprepo.statichttprepository(
+                ui, path.replace("static-http://", "http://"))
         if path.startswith("ssh://"):
             return sshrepo.sshrepository(ui, path)
         if path.startswith("bundle://"):