Browse Source

#2283 set text/plain for non-binary files in raw mode

for-closed-social
Unknwon 8 years ago
parent
commit
93f03707a7
5 changed files with 10 additions and 4 deletions
  1. +5
    -1
      modules/base/tool.go
  2. +1
    -1
      public/css/gogs.css
  3. +1
    -1
      public/less/_repository.less
  4. +2
    -0
      routers/repo/download.go
  5. +1
    -1
      templates/repo/view_file.tmpl

+ 5
- 1
modules/base/tool.go View File

@ -53,7 +53,11 @@ func ShortSha(sha1 string) string {
}
func DetectEncoding(content []byte) string {
_, name, certain := charset.DetermineEncoding(content, setting.Repository.AnsiCharset)
_, name, certain := charset.DetermineEncoding(content, "")
if name != "utf-8" && len(setting.Repository.AnsiCharset) > 0 {
log.Debug("Using default AnsiCharset: %s", setting.Repository.AnsiCharset)
return setting.Repository.AnsiCharset
}
log.Debug("Detected encoding: %s (%v)", name, certain)
return name
}

+ 1
- 1
public/css/gogs.css View File

@ -1902,7 +1902,7 @@ footer .container .links > *:first-child {
margin-top: -2px;
}
.repository.file.list #file-content .view-raw * {
width: 100%;
max-width: 100%;
}
.repository.file.list #file-content .view-raw img {
padding: 5px 5px 0 5px;

+ 1
- 1
public/less/_repository.less View File

@ -181,7 +181,7 @@
}
.view-raw {
* {
width: 100%;
max-width: 100%;
}
img {
padding: 5px 5px 0 5px;

+ 2
- 0
routers/repo/download.go View File

@ -28,6 +28,8 @@ func ServeData(ctx *middleware.Context, name string, reader io.Reader) error {
ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName))
ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
}
} else {
ctx.Resp.Header().Set("Content-Type", "text/plain")
}
ctx.Resp.Write(buf)
_, err := io.Copy(ctx.Resp, reader)

+ 1
- 1
templates/repo/view_file.tmpl View File

@ -28,7 +28,7 @@
{{if .ReadmeExist}}
{{if .FileContent}}{{.FileContent | Str2html}}{{end}}
{{else if not .IsFileText}}
<div class="view-raw">
<div class="view-raw ui center">
{{if .IsImageFile}}
<img src="{{EscapePound .FileLink}}">
{{else}}

Loading…
Cancel
Save