mirror of https://github.com/go-gitea/gitea.git
Browse Source
These functions have been marked as `panicIfDevOrTesting` since 1.23 (#32422)pull/34432/head
4 changed files with 2 additions and 108 deletions
@ -1,23 +0,0 @@
@@ -1,23 +0,0 @@
|
||||
// Copyright 2024 The Gitea Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package templates |
||||
|
||||
import ( |
||||
"html/template" |
||||
|
||||
"code.gitea.io/gitea/modules/translation" |
||||
) |
||||
|
||||
func dateTimeLegacy(format string, datetime any, _ ...string) template.HTML { |
||||
panicIfDevOrTesting() |
||||
if s, ok := datetime.(string); ok { |
||||
datetime = parseLegacy(s) |
||||
} |
||||
return dateTimeFormat(format, datetime) |
||||
} |
||||
|
||||
func timeSinceLegacy(time any, _ translation.Locale) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return TimeSince(time) |
||||
} |
||||
@ -1,53 +0,0 @@
@@ -1,53 +0,0 @@
|
||||
// Copyright 2024 The Gitea Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package templates |
||||
|
||||
import ( |
||||
"context" |
||||
"html/template" |
||||
|
||||
issues_model "code.gitea.io/gitea/models/issues" |
||||
"code.gitea.io/gitea/modules/reqctx" |
||||
"code.gitea.io/gitea/modules/translation" |
||||
) |
||||
|
||||
func renderEmojiLegacy(ctx context.Context, text string) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).RenderEmoji(text) |
||||
} |
||||
|
||||
func renderLabelLegacy(ctx context.Context, locale translation.Locale, label *issues_model.Label) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).RenderLabel(label) |
||||
} |
||||
|
||||
func renderLabelsLegacy(ctx context.Context, locale translation.Locale, labels []*issues_model.Label, repoLink string, issue *issues_model.Issue) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).RenderLabels(labels, repoLink, issue) |
||||
} |
||||
|
||||
func renderMarkdownToHtmlLegacy(ctx context.Context, input string) template.HTML { //nolint:revive
|
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).MarkdownToHtml(input) |
||||
} |
||||
|
||||
func renderCommitMessageLegacy(ctx context.Context, msg string, _ map[string]string) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).RenderCommitMessage(msg, nil) |
||||
} |
||||
|
||||
func renderCommitMessageLinkSubjectLegacy(ctx context.Context, msg, urlDefault string, _ map[string]string) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).RenderCommitMessageLinkSubject(msg, urlDefault, nil) |
||||
} |
||||
|
||||
func renderIssueTitleLegacy(ctx context.Context, text string, _ map[string]string) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).RenderIssueTitle(text, nil) |
||||
} |
||||
|
||||
func renderCommitBodyLegacy(ctx context.Context, msg string, _ map[string]string) template.HTML { |
||||
panicIfDevOrTesting() |
||||
return NewRenderUtils(reqctx.FromContext(ctx)).RenderCommitBody(msg, nil) |
||||
} |
||||
Loading…
Reference in new issue