debian-mirror-gitlab/app/views/shared/_file_highlight.html.haml

17 lines
656 B
Text
Raw Normal View History

2016-02-05 20:25:01 +05:30
.file-content.code.js-syntax-highlight
2015-04-26 12:48:37 +05:30
.line-numbers
- if blob.data.present?
2016-06-02 11:05:42 +05:30
- link_icon = icon('link')
2016-08-24 12:49:21 +05:30
- link = blob_link if defined?(blob_link)
2016-04-02 18:10:28 +05:30
- blob.data.each_line.each_with_index do |_, index|
2015-04-26 12:48:37 +05:30
- offset = defined?(first_line_number) ? first_line_number : 1
- i = index + offset
2015-09-11 14:41:01 +05:30
-# We're not using `link_to` because it is too slow once we get to thousands of lines.
2017-08-17 22:00:37 +05:30
%a.diff-line-num{ href: "#{link}#L#{i}", id: "L#{i}", 'data-line-number' => i }
2016-06-02 11:05:42 +05:30
= link_icon
2015-04-26 12:48:37 +05:30
= i
2017-08-17 22:00:37 +05:30
.blob-content{ data: { blob_id: blob.id } }
2018-12-13 13:39:08 +05:30
%pre.code.highlight
%code
= blob.present.highlight