
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
24 lines
609 B
Go
24 lines
609 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"forgejo.org/modules/base"
|
|
"forgejo.org/modules/util"
|
|
"forgejo.org/services/context"
|
|
)
|
|
|
|
const (
|
|
tplFindFiles base.TplName = "repo/find/files"
|
|
)
|
|
|
|
// FindFiles render the page to find repository files
|
|
func FindFiles(ctx *context.Context) {
|
|
path := ctx.Params("*")
|
|
ctx.Data["TreeLink"] = ctx.Repo.RepoLink + "/src/" + util.PathEscapeSegments(path)
|
|
ctx.Data["DataLink"] = ctx.Repo.RepoLink + "/tree-list/" + util.PathEscapeSegments(path)
|
|
ctx.HTML(http.StatusOK, tplFindFiles)
|
|
}
|