mirror of
https://github.com/go-gitea/gitea
synced 2025-01-18 21:54:27 +00:00
81352542fd
The `ctx.Repo.RefName` was used to be a "short name", it causes a lot of ambiguity. This PR does some refactoring and use `RefFullName` to replace the legacy `RefName`, and simplify RepoAssignment
20 lines
571 B
Go
20 lines
571 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"code.gitea.io/gitea/modules/git"
|
|
"code.gitea.io/gitea/services/context"
|
|
)
|
|
|
|
func HandleGitError(ctx *context.Context, msg string, err error) {
|
|
if git.IsErrNotExist(err) {
|
|
ctx.Data["NotFoundPrompt"] = ctx.Locale.Tr("repo.tree_path_not_found", ctx.Repo.TreePath, ctx.Repo.RefTypeNameSubURL())
|
|
ctx.Data["NotFoundGoBackURL"] = ctx.Repo.RepoLink + "/src/" + ctx.Repo.RefTypeNameSubURL()
|
|
ctx.NotFound(msg, err)
|
|
} else {
|
|
ctx.ServerError(msg, err)
|
|
}
|
|
}
|