2017-09-10 17:25:29 +05:30
|
|
|
.diff-file.file-holder
|
2015-04-26 12:48:37 +05:30
|
|
|
.diff-content
|
2017-08-17 22:00:37 +05:30
|
|
|
- if markup?(@blob.name)
|
2015-04-26 12:48:37 +05:30
|
|
|
.file-content.wiki
|
2018-11-20 20:47:30 +05:30
|
|
|
= markup(@blob.name, @content, legacy_render_context(params))
|
2015-04-26 12:48:37 +05:30
|
|
|
- else
|
2016-02-05 20:25:01 +05:30
|
|
|
.file-content.code.js-syntax-highlight
|
2015-04-26 12:48:37 +05:30
|
|
|
- unless @diff_lines.empty?
|
|
|
|
%table.text-file
|
|
|
|
- @diff_lines.each do |line|
|
|
|
|
%tr.line_holder{ class: "#{line.type}" }
|
|
|
|
- if line.type == "match"
|
2016-02-05 20:25:01 +05:30
|
|
|
%td.old_line.diff-line-num= "..."
|
|
|
|
%td.new_line.diff-line-num= "..."
|
|
|
|
%td.line_content.match= line.text
|
2015-04-26 12:48:37 +05:30
|
|
|
- else
|
2016-02-05 20:25:01 +05:30
|
|
|
%td.old_line.diff-line-num
|
|
|
|
%td.new_line.diff-line-num
|
2017-08-17 22:00:37 +05:30
|
|
|
%td.line_content{ class: "#{line.type}" }= diff_line_content(line.text)
|
2015-04-26 12:48:37 +05:30
|
|
|
- else
|
|
|
|
.nothing-here-block No changes.
|