Merge branch 'http'

This commit is contained in:
Hylke Bons 2012-04-28 09:51:41 +01:00
commit 921d66baa6

View file

@ -39,6 +39,8 @@ namespace SparkleLib.Git {
Uri uri = RemoteUrl;
if (!uri.Scheme.Equals ("ssh") &&
!uri.Scheme.Equals ("https") &&
!uri.Scheme.Equals ("http") &&
!uri.Scheme.Equals ("git")) {
uri = new Uri ("ssh://" + uri);
@ -62,11 +64,16 @@ namespace SparkleLib.Git {
uri = new Uri ("ssh://git@gnome.org/git" + uri.AbsolutePath);
} else {
if (string.IsNullOrEmpty (uri.UserInfo)) {
if (uri.Port == -1)
if (string.IsNullOrEmpty (uri.UserInfo) &&
!uri.Scheme.Equals ("https") &&
!uri.Scheme.Equals ("http")) {
if (uri.Port == -1) {
uri = new Uri (uri.Scheme + "://git@" + uri.Host + uri.AbsolutePath);
else
} else {
uri = new Uri (uri.Scheme + "://git@" + uri.Host + ":" + uri.Port + uri.AbsolutePath);
}
}
}