linguist and web browser will take care of mimetype and encoding problem.

This commit is contained in:
Saito 2012-11-10 01:06:20 +08:00
parent 5b66e08ae5
commit b664b784f1

View file

@ -11,16 +11,9 @@ class BlobController < ProjectResourceController
def show
if @tree.is_blob?
if @tree.text?
encoding = detect_encoding(@tree.data)
mime_type = encoding ? "text/plain; charset=#{encoding}" : "text/plain"
else
mime_type = @tree.mime_type
end
send_data(
@tree.data,
type: mime_type,
type: @tree.mime_type,
disposition: 'inline',
filename: @tree.name
)