debian-mirror-gitlab/app/views/projects/blob/_image.html.haml

10 lines
423 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
.file-content.image_file
2016-04-02 18:10:28 +05:30
- if blob_svg?(blob)
- # We need to scrub SVG but we cannot do so in the RawController: it would
- # be wrong/strange if RawController modified the data.
- blob.load_all_data!(@repository)
- blob = sanitize_svg(blob)
%img{src: "data:#{blob.mime_type};base64,#{Base64.encode64(blob.data)}"}
- else
%img{src: namespace_project_raw_path(@project.namespace, @project, @id)}