2016-04-04 12:35:56 -04:00
|
|
|
- show_whitespace_toggle = local_assigns.fetch(:show_whitespace_toggle, true)
|
2015-11-17 10:08:58 -05:00
|
|
|
- if diff_view == 'parallel'
|
2015-08-26 05:51:28 -04:00
|
|
|
- fluid_layout true
|
|
|
|
|
2016-01-14 16:38:37 -05:00
|
|
|
- diff_files = safe_diff_files(diffs, diff_refs)
|
2015-10-01 07:52:08 -04:00
|
|
|
|
2016-04-07 15:36:53 -04:00
|
|
|
.content-block.oneline-block.files-changed
|
2015-09-08 11:22:26 -04:00
|
|
|
.inline-parallel-buttons
|
2016-03-29 17:13:39 -04:00
|
|
|
- if show_whitespace_toggle
|
|
|
|
- if current_controller?(:commit)
|
2016-04-18 17:51:41 -04:00
|
|
|
= commit_diff_whitespace_link(@project, @commit, class: 'hidden-xs')
|
2016-04-04 12:35:56 -04:00
|
|
|
- elsif current_controller?(:merge_requests)
|
2016-04-18 17:51:41 -04:00
|
|
|
= diff_merge_request_whitespace_link(@project, @merge_request, class: 'hidden-xs')
|
2016-06-09 13:26:14 -04:00
|
|
|
- elsif current_controller?(:compare)
|
|
|
|
= diff_compare_whitespace_link(@project, params[:from], params[:to], class: 'hidden-xs')
|
2015-03-24 22:00:00 -04:00
|
|
|
.btn-group
|
2014-12-25 07:32:49 -05:00
|
|
|
= inline_diff_btn
|
|
|
|
= parallel_diff_btn
|
2015-10-01 09:51:28 -04:00
|
|
|
= render 'projects/diffs/stats', diff_files: diff_files
|
2015-04-27 12:06:51 -04:00
|
|
|
|
2016-03-03 12:38:44 -05:00
|
|
|
- if diff_files.overflow?
|
|
|
|
= render 'projects/diffs/warning', diff_files: diff_files
|
2014-09-08 09:26:49 -04:00
|
|
|
|
|
|
|
.files
|
2015-04-27 12:06:51 -04:00
|
|
|
- diff_files.each_with_index do |diff_file, index|
|
2015-10-20 08:23:56 -04:00
|
|
|
- diff_commit = commit_for_diff(diff_file)
|
|
|
|
- blob = project.repository.blob_for_diff(diff_commit, diff_file)
|
2015-09-30 06:31:02 -04:00
|
|
|
- next unless blob
|
2016-05-24 01:59:35 -04:00
|
|
|
- blob.load_all_data!(project.repository) unless blob.only_display_raw?
|
2015-09-30 06:31:02 -04:00
|
|
|
|
|
|
|
= render 'projects/diffs/file', i: index, project: project,
|
2016-03-18 09:12:19 -04:00
|
|
|
diff_file: diff_file, diff_commit: diff_commit, blob: blob, diff_refs: diff_refs
|