1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

#3559 fix template error

This commit is contained in:
Unknwon
2016-08-31 13:59:23 -07:00
parent c2afdf2192
commit dadd35b636
5 changed files with 10 additions and 11 deletions

View File

@@ -64,9 +64,7 @@ func editFile(ctx *context.Context, isNewFile bool) {
buf := make([]byte, 1024)
n, _ := dataRc.Read(buf)
if n > 0 {
buf = buf[:n]
}
buf = buf[:n]
// Only text file are editable online.
if !base.IsTextFile(buf) {

View File

@@ -64,6 +64,7 @@ func renderDirectory(ctx *context.Context, treeLink string) {
}
if readmeFile != nil {
ctx.Data["RawFileLink"] = ""
ctx.Data["ReadmeInList"] = true
ctx.Data["ReadmeExist"] = true
@@ -75,9 +76,7 @@ func renderDirectory(ctx *context.Context, treeLink string) {
buf := make([]byte, 1024)
n, _ := dataRc.Read(buf)
if n > 0 {
buf = buf[:n]
}
buf = buf[:n]
isTextFile := base.IsTextFile(buf)
ctx.Data["FileIsText"] = isTextFile
@@ -134,9 +133,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st
buf := make([]byte, 1024)
n, _ := dataRc.Read(buf)
if n > 0 {
buf = buf[:n]
}
buf = buf[:n]
isTextFile := base.IsTextFile(buf)
ctx.Data["IsTextFile"] = isTextFile