mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-04 14:46:57 -05:00
parent
01f736f68c
commit
2172b38d50
@ -8,6 +8,7 @@ import (
|
|||||||
|
|
||||||
"code.gitea.io/gitea/modules/base"
|
"code.gitea.io/gitea/modules/base"
|
||||||
"code.gitea.io/gitea/modules/context"
|
"code.gitea.io/gitea/modules/context"
|
||||||
|
"code.gitea.io/gitea/modules/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -17,7 +18,7 @@ const (
|
|||||||
// FindFiles render the page to find repository files
|
// FindFiles render the page to find repository files
|
||||||
func FindFiles(ctx *context.Context) {
|
func FindFiles(ctx *context.Context) {
|
||||||
path := ctx.Params("*")
|
path := ctx.Params("*")
|
||||||
ctx.Data["TreeLink"] = ctx.Repo.RepoLink + "/src/" + path
|
ctx.Data["TreeLink"] = ctx.Repo.RepoLink + "/src/" + util.PathEscapeSegments(path)
|
||||||
ctx.Data["DataLink"] = ctx.Repo.RepoLink + "/tree-list/" + path
|
ctx.Data["DataLink"] = ctx.Repo.RepoLink + "/tree-list/" + util.PathEscapeSegments(path)
|
||||||
ctx.HTML(http.StatusOK, tplFindFiles)
|
ctx.HTML(http.StatusOK, tplFindFiles)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user