gitlab-org--gitlab-foss/app/views/shared/_file_highlight.html.haml

17 lines
738 B
Plaintext
Raw Normal View History

- repository = nil unless local_assigns.key?(:repository)
.file-content.code.js-syntax-highlight
.line-numbers
- if blob.data.present?
2016-04-14 10:44:35 +00:00
- link_icon = icon('link')
2016-06-23 11:44:50 +00:00
- link = blob_link if defined?(blob_link)
2016-01-28 14:02:44 +00:00
- blob.data.each_line.each_with_index do |_, index|
- offset = defined?(first_line_number) ? first_line_number : 1
- i = index + offset
2015-06-07 03:15:32 +00:00
-# We're not using `link_to` because it is too slow once we get to thousands of lines.
%a.diff-line-num{ href: "#{link}#L#{i}", id: "L#{i}", 'data-line-number' => i }
2016-04-14 10:44:35 +00:00
= link_icon
= i
.blob-content{ data: { blob_id: blob.id } }
= highlight(blob.path, blob.data, repository: repository, plain: blob.no_highlighting?)