Mercurial > public > mercurial-scm > hg-stable
annotate mercurial/hg.py @ 1093:1f1661c58283
commands: use revlog directly for debug commands
This eliminates the import in hg.py
author | mpm@selenic.com |
---|---|
date | Sat, 27 Aug 2005 14:56:58 -0700 |
parents | 1bca39b85615 |
children | 221b5252864c |
rev | line source |
---|---|
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
1 # hg.py - repository classes for mercurial |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
2 # |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
3 # Copyright 2005 Matt Mackall <mpm@selenic.com> |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
4 # |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
5 # This software may be used and distributed according to the terms |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
6 # of the GNU General Public License, incorporated herein by reference. |
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
7 |
1089 | 8 import os |
419
28511fc21073
[PATCH] file seperator handling for the other 'OS'
mpm@selenic.com
parents:
418
diff
changeset
|
9 import util |
1089 | 10 from node import * |
11 from repo import * | |
262 | 12 from demandload import * |
1089 | 13 demandload(globals(), "localrepo httprepo sshrepo") |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
14 |
60 | 15 def repository(ui, path=None, create=0): |
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
16 if path: |
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
17 if path.startswith("http://"): |
1089 | 18 return httprepo.httprepository(ui, path) |
923 | 19 if path.startswith("https://"): |
1089 | 20 return httprepo.httpsrepository(ui, path) |
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
21 if path.startswith("hg://"): |
1089 | 22 return httprepo.httprepository( |
23 ui, path.replace("hg://", "http://")) | |
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
24 if path.startswith("old-http://"): |
1089 | 25 return localrepo.localrepository( |
1090 | 26 ui, util.opener, path.replace("old-http://", "http://")) |
624
876333a295ff
Add an sshrepository class and hg serve --stdio
Matt Mackall <mpm@selenic.com>
parents:
623
diff
changeset
|
27 if path.startswith("ssh://"): |
1089 | 28 return sshrepo.sshrepository(ui, path) |
60 | 29 |
1090 | 30 return localrepo.localrepository(ui, util.opener, path, create) |