|
@ -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
|
|
|