2012-04-06 00:00:15 +02:00
|
|
|
- if @suppress_diff
|
2013-01-30 15:53:18 +01:00
|
|
|
.alert.alert-block
|
2012-06-04 00:37:27 +02:00
|
|
|
%p
|
2013-01-29 18:58:34 +01:00
|
|
|
%strong Warning! Large commit with more than #{Commit::DIFF_SAFE_SIZE} files changed.
|
2012-04-06 00:00:15 +02:00
|
|
|
%p To prevent performance issue we rejected diff information.
|
2012-06-04 00:37:27 +02:00
|
|
|
%p
|
|
|
|
But if you still want to see diff
|
2012-10-25 11:16:14 +02:00
|
|
|
= link_to "click this link", project_commit_path(@project, @commit, force_show_diff: true), class: "underlined_link"
|
2012-04-06 00:00:15 +02:00
|
|
|
|
|
|
|
%p.cgray
|
|
|
|
Showing #{pluralize(diffs.count, "changed file")}
|
2012-11-18 17:41:41 +01:00
|
|
|
.file-stats
|
2012-08-11 00:07:50 +02:00
|
|
|
= render "commits/diff_head", diffs: diffs
|
2012-04-06 00:00:15 +02:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.files
|
|
|
|
- unless @suppress_diff
|
|
|
|
- diffs.each_with_index do |diff, i|
|
|
|
|
- next if diff.diff.empty?
|
|
|
|
- file = (@commit.tree / diff.new_path)
|
|
|
|
- file = (@commit.prev_commit.tree / diff.old_path) unless file
|
|
|
|
- next unless file
|
|
|
|
.file{id: "diff-#{i}"}
|
|
|
|
.header
|
|
|
|
- if diff.deleted_file
|
|
|
|
%span= diff.old_path
|
2012-11-20 22:05:15 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
- if @commit.prev_commit
|
2013-01-30 15:40:43 +01:00
|
|
|
= link_to project_tree_path(@project, tree_join(@commit.prev_commit_id, diff.new_path)), {:class => 'btn pull-right view-file'} do
|
2012-12-01 13:49:21 +01:00
|
|
|
View file @
|
|
|
|
%span.commit-short-id= @commit.short_id(6)
|
|
|
|
- else
|
|
|
|
%span= diff.new_path
|
|
|
|
- if diff.a_mode && diff.b_mode && diff.a_mode != diff.b_mode
|
|
|
|
%span.file-mode= "#{diff.a_mode} → #{diff.b_mode}"
|
|
|
|
|
2013-01-30 15:40:43 +01:00
|
|
|
= link_to project_tree_path(@project, tree_join(@commit.id, diff.new_path)), {:class => 'btn btn-tiny pull-right view-file'} do
|
2012-11-18 17:41:41 +01:00
|
|
|
View file @
|
|
|
|
%span.commit-short-id= @commit.short_id(6)
|
2012-11-20 22:05:15 +01:00
|
|
|
|
2012-12-01 13:49:21 +01:00
|
|
|
.content
|
|
|
|
-# Skipp all non non-supported blobs
|
|
|
|
- next unless file.respond_to?('text?')
|
|
|
|
- if file.text?
|
|
|
|
= render "commits/text_file", diff: diff, index: i
|
|
|
|
- elsif file.image?
|
|
|
|
- old_file = (@commit.prev_commit.tree / diff.old_path) if !@commit.prev_commit.nil?
|
|
|
|
= render "commits/image", diff: diff, old_file: old_file, file: file, index: i
|
2012-10-25 11:16:14 +02:00
|
|
|
- else
|
2012-12-01 13:49:21 +01:00
|
|
|
%p.nothing_here_message No preview for this file type
|