mirror of https://github.com/gogs/gogs.git
gitutil: strip SSH port from submodule URL when rendering for HTML link (#7383)
Co-authored-by: Joe Chen <jc@unknwon.io>pull/7387/head
parent
6fa552994a
commit
5483d97f73
|
@ -4,6 +4,10 @@ All notable changes to Gogs are documented in this file.
|
|||
|
||||
## 0.14.0+dev (`main`)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Submodules using `ssh://` protocol and a port number are not rendered correctly. [#4941](https://github.com/gogs/gogs/issues/4941)
|
||||
|
||||
## 0.13.0
|
||||
|
||||
### Added
|
||||
|
|
2
gen.go
2
gen.go
|
@ -5,4 +5,4 @@
|
|||
package main
|
||||
|
||||
//go:generate go install golang.org/x/tools/cmd/goimports@v0.1.10
|
||||
//go:generate go run github.com/derision-test/go-mockgen/cmd/go-mockgen@v1.3.3
|
||||
//go:generate go run github.com/derision-test/go-mockgen/cmd/go-mockgen@v1.3.7
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Code generated by go-mockgen 1.3.3; DO NOT EDIT.
|
||||
// Code generated by go-mockgen 1.3.7; DO NOT EDIT.
|
||||
//
|
||||
// This file was generated by running `go-mockgen` at the root of this repository.
|
||||
// To add additional mocks to this or another package, add a new entry to the
|
||||
|
|
|
@ -50,7 +50,7 @@ func InferSubmoduleURL(baseURL string, mod *git.Submodule) string {
|
|||
case "http", "https":
|
||||
raw = parsed.String()
|
||||
case "ssh":
|
||||
raw = fmt.Sprintf("http://%s%s", parsed.Host, parsed.Path)
|
||||
raw = fmt.Sprintf("http://%s%s", parsed.Hostname(), parsed.Path)
|
||||
default:
|
||||
return raw
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ func TestInferSubmoduleURL(t *testing.T) {
|
|||
URL: "ssh://user@github.com:22/gogs/docs-api.git",
|
||||
Commit: "6b08f76a5313fa3d26859515b30aa17a5faa2807",
|
||||
},
|
||||
expURL: "http://github.com:22/gogs/docs-api/commit/6b08f76a5313fa3d26859515b30aa17a5faa2807",
|
||||
expURL: "http://github.com/gogs/docs-api/commit/6b08f76a5313fa3d26859515b30aa17a5faa2807",
|
||||
},
|
||||
{
|
||||
name: "SSH URL in SCP syntax",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Code generated by go-mockgen 1.3.3; DO NOT EDIT.
|
||||
// Code generated by go-mockgen 1.3.7; DO NOT EDIT.
|
||||
//
|
||||
// This file was generated by running `go-mockgen` at the root of this repository.
|
||||
// To add additional mocks to this or another package, add a new entry to the
|
||||
|
|
Loading…
Reference in New Issue