blob: 506e35cefc1ebb9e130f9e1b8db6567ea33826e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
package main
import (
"net/url"
"strings"
)
// We don't use path.Join because it collapses multiple slashes into one.
func generate_ssh_remote_url(group_path []string, repo_name string) string {
return strings.TrimSuffix(config.SSH.Root, "/") + "/" + path_escape_cat_segments(group_path) + "/:/repos/" + url.PathEscape(repo_name)
}
func generate_http_remote_url(group_path []string, repo_name string) string {
return strings.TrimSuffix(config.HTTP.Root, "/") + "/" + path_escape_cat_segments(group_path) + "/:/repos/" + url.PathEscape(repo_name)
}
|