Browse Source

Merge branch 'develop' of github.com:gogits/gogs into feature/pull_request2

master
Unknwon 10 years ago
parent
commit
13a74c3a0c
2 changed files with 2 additions and 6 deletions
  1. +1
    -0
      conf/locale/TRANSLATORS
  2. +1
    -6
      routers/repo/download.go

+ 1
- 0
conf/locale/TRANSLATORS View File

@@ -14,3 +14,4 @@ Luc Stepniewski <luc@stepniewski.fr>
Miguel de la Cruz <miguel@mcrx.me> Miguel de la Cruz <miguel@mcrx.me>
Natan Albuquerque <natanalbuquerque5@gmail.com> Natan Albuquerque <natanalbuquerque5@gmail.com>
Marc Schiller <marc@schiller.im> Marc Schiller <marc@schiller.im>
Gregor Santner <gdev@live.de>

+ 1
- 6
routers/repo/download.go View File

@@ -21,12 +21,7 @@ func ServeData(ctx *middleware.Context, name string, reader io.Reader) error {
} }


_, isTextFile := base.IsTextFile(buf) _, isTextFile := base.IsTextFile(buf)
if isTextFile {
charset, _ := base.DetectEncoding(buf)
if charset != "UTF-8" {
ctx.Resp.Header().Set("Content-Type", "text/plain; charset="+charset)
}
} else {
if ! isTextFile {
_, isImageFile := base.IsImageFile(buf) _, isImageFile := base.IsImageFile(buf)
if !isImageFile { if !isImageFile {
ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName)) ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName))


Loading…
Cancel
Save