Order matters no. 2
This commit is contained in:
parent
7c1a4640db
commit
5dcfca5f74
22
display.go
22
display.go
|
@ -86,16 +86,7 @@ func fileDisplayHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||||||
tpl = Templates["display/story.html"]
|
tpl = Templates["display/story.html"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if strings.HasPrefix(metadata.Mimetype, "text/") || supportedBinExtension(extension) {
|
|
||||||
if metadata.Size < maxDisplayFileSizeBytes {
|
|
||||||
bytes, err := ioutil.ReadFile(filePath)
|
|
||||||
if err == nil {
|
|
||||||
extra["extension"] = extension
|
|
||||||
extra["lang_hl"], extra["lang_ace"] = extensionToHlAndAceLangs(extension)
|
|
||||||
extra["contents"] = string(bytes)
|
|
||||||
tpl = Templates["display/bin.html"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if extension == "md" {
|
} else if extension == "md" {
|
||||||
if metadata.Size < maxDisplayFileSizeBytes {
|
if metadata.Size < maxDisplayFileSizeBytes {
|
||||||
bytes, err := ioutil.ReadFile(filePath)
|
bytes, err := ioutil.ReadFile(filePath)
|
||||||
|
@ -107,6 +98,17 @@ func fileDisplayHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||||||
tpl = Templates["display/md.html"]
|
tpl = Templates["display/md.html"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} else if strings.HasPrefix(metadata.Mimetype, "text/") || supportedBinExtension(extension) {
|
||||||
|
if metadata.Size < maxDisplayFileSizeBytes {
|
||||||
|
bytes, err := ioutil.ReadFile(filePath)
|
||||||
|
if err == nil {
|
||||||
|
extra["extension"] = extension
|
||||||
|
extra["lang_hl"], extra["lang_ace"] = extensionToHlAndAceLangs(extension)
|
||||||
|
extra["contents"] = string(bytes)
|
||||||
|
tpl = Templates["display/bin.html"]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Catch other files
|
// Catch other files
|
||||||
|
|
Loading…
Reference in New Issue