Browse Source

add ctx.HTMLString

pull/30707/head
silverwind 1 week ago
parent
commit
7e40149415
No account linked to committer's email address
2 changed files with 8 additions and 1 deletions
  1. 1
    1
      routers/web/repo/editor.go
  2. 7
    0
      services/context/base.go

+ 1
- 1
routers/web/repo/editor.go 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]

+ 7
- 0
services/context/base.go 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

Loading…
Cancel
Save