2022-06-09 13:15:08 +02:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-06-09 13:15:08 +02:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
2024-03-23 14:07:47 +01:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-06-09 13:15:08 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
tplFindFiles base.TplName = "repo/find/files"
|
|
|
|
)
|
|
|
|
|
|
|
|
// FindFiles render the page to find repository files
|
|
|
|
func FindFiles(ctx *context.Context) {
|
|
|
|
path := ctx.Params("*")
|
2024-03-23 14:07:47 +01:00
|
|
|
ctx.Data["TreeLink"] = ctx.Repo.RepoLink + "/src/" + util.PathEscapeSegments(path)
|
|
|
|
ctx.Data["DataLink"] = ctx.Repo.RepoLink + "/tree-list/" + util.PathEscapeSegments(path)
|
2022-06-09 13:15:08 +02:00
|
|
|
ctx.HTML(http.StatusOK, tplFindFiles)
|
|
|
|
}
|