Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_image.html.haml « blob « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c11b97921f5a95ca90ceeea83ab786885f01006 (plain)
1
2
3
4
5
6
7
8
9
.file-content.image_file
  - if blob.svg?
    - # 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)}