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