gitlab-org--gitlab-foss/app/views/projects/edit_tree/preview.html.haml

27 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-04-15 15:02:02 +00:00
.diff-file
.diff-content
- if gitlab_markdown?(@blob.name)
2014-04-15 15:02:02 +00:00
.file-content.wiki
= preserve do
= markdown(@content)
- elsif markup?(@blob.name)
2014-04-15 15:02:02 +00:00
.file-content.wiki
= raw render_markup(@blob.name, @content)
2014-04-15 15:02:02 +00:00
- else
.file-content.code
- unless @diff_lines.empty?
2014-04-15 15:02:02 +00:00
%table.text-file
- @diff_lines.each do |line|
%tr.line_holder{ id: line.code, class: "#{line.type}" }
- if line.type == "match"
2014-04-15 15:02:02 +00:00
%td.old_line= "..."
%td.new_line= "..."
%td.line_content.matched= line.text
2014-04-15 15:02:02 +00:00
- else
%td.old_line
= link_to raw(line.type == "new" ? " " : line.old_pos), "##{line.code}", id: line.code
%td.new_line= link_to raw(line.type == "old" ? " " : line.new_pos) , "##{line.code}", id: line.code
%td.line_content{class: "noteable_line #{line.type} #{line.code}", "line.code" => line.code}= raw diff_line_content(line.text)
2014-04-15 15:02:02 +00:00
- else
.nothing-here-block No changes.