2016-08-24 12:49:21 +05:30
|
|
|
- repository = nil unless local_assigns.key?(:repository)
|
|
|
|
|
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.
|
2016-08-24 12:49:21 +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
|
2015-12-23 02:04:40 +05:30
|
|
|
.blob-content{data: {blob_id: blob.id}}
|
2016-08-24 12:49:21 +05:30
|
|
|
= highlight(blob.path, blob.data, repository: repository, plain: blob.no_highlighting?)
|