add ctx.HTMLString

This commit is contained in:
silverwind 2024-04-25 23:27:24 +02:00
parent 110bc5d7ad
commit 7e40149415
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443
2 changed files with 8 additions and 1 deletions

View File

@ -420,7 +420,7 @@ func DiffPreviewPost(ctx *context.Context) {
}
if diff.NumFiles == 0 {
ctx.PlainText(http.StatusOK, `<div class="tw-p-6">`+ctx.Locale.TrString("repo.editor.no_changes_to_show")+`</div>`)
ctx.HTMLString(http.StatusOK, `<div class="tw-p-6">`+ctx.Locale.TrString("repo.editor.no_changes_to_show")+`</div>`)
return
}
ctx.Data["File"] = diff.Files[0]

View File

@ -137,6 +137,13 @@ func (b *Base) JSON(status int, content any) {
}
}
// JSON render content as JSON
func (b *Base) HTMLString(status int, html string) {
b.Resp.Header().Set("Content-Type", "text/html;charset=utf-8")
b.Resp.WriteHeader(status);
b.Resp.Write([]byte(html))
}
// RemoteAddr returns the client machine ip address
func (b *Base) RemoteAddr() string {
return b.Req.RemoteAddr