author | mpm@selenic.com |
Sat, 27 Aug 2005 14:31:41 -0700 | |
changeset 1090 | 1bca39b85615 |
parent 1089 | 142b5d5ec9cc |
child 1093 | 1f1661c58283 |
permissions | -rw-r--r-- |
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 * |
262 | 11 |
from revlog import * |
1089 | 12 |
from repo import * |
262 | 13 |
from demandload import * |
1089 | 14 |
demandload(globals(), "localrepo httprepo sshrepo") |
0
9117c6561b0b
Add back links from file revisions to changeset revisions
mpm@selenic.com
parents:
diff
changeset
|
15 |
|
60 | 16 |
def repository(ui, path=None, create=0): |
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
17 |
if path: |
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
18 |
if path.startswith("http://"): |
1089 | 19 |
return httprepo.httprepository(ui, path) |
923 | 20 |
if path.startswith("https://"): |
1089 | 21 |
return httprepo.httpsrepository(ui, path) |
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
22 |
if path.startswith("hg://"): |
1089 | 23 |
return httprepo.httprepository( |
24 |
ui, path.replace("hg://", "http://")) |
|
623
314867960a4a
Change remote repository to httprepository
Matt Mackall <mpm@selenic.com>
parents:
622
diff
changeset
|
25 |
if path.startswith("old-http://"): |
1089 | 26 |
return localrepo.localrepository( |
1090 | 27 |
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
|
28 |
if path.startswith("ssh://"): |
1089 | 29 |
return sshrepo.sshrepository(ui, path) |
60 | 30 |
|
1090 | 31 |
return localrepo.localrepository(ui, util.opener, path, create) |