rosa-build/app/views/projects/pull_requests/_pull_diff.html.haml

11 lines
622 B
Plaintext
Raw Normal View History

- commit_id = pull_diff.deleted_file ? @pull.to_commit.id : @pull.from_commit.id
2012-05-31 12:16:34 +01:00
.file
%a{:name => "diff-#{pull_diff_counter}"}
2012-05-31 12:16:34 +01:00
.top
.l= h(pull_diff.renamed_file ? "#{pull_diff.a_path.rtruncate 60} -> #{pull_diff.b_path.rtruncate 60}" : pull_diff.a_path.rtruncate(120))
2012-05-31 12:16:34 +01:00
- if pull_diff.b_path.present?
.r= link_to "view file @ #{short_hash_id(commit_id)}", blob_path(@project, commit_id, pull_diff.b_path)
.clear
-if pull_diff.diff.present? && !(@pull.repo.tree(commit_id) / pull_diff.b_path).binary?
2012-10-18 13:51:28 +01:00
.diff_data=render_diff(pull_diff, :diff_counter => pull_diff_counter, :comments => @comments)