mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
Diffs with a large number of changed lines time out (504 HTTP error) or generate a HTML page that's so heavy web browsers struggle with it. https://github.com/gitlabhq/gitlabhq/pull/5014 introduced limits on commit line count so that only a safe portion is rendered. This was later undone by code refactoring inbe5b6db8,e0eb4803andc741fcab. This patch re-introduces a safe limit on number of lines.
26 lines
740 B
Plaintext
26 lines
740 B
Plaintext
.prepend-top-20.append-bottom-20
|
|
.pull-right
|
|
.btn-group
|
|
= inline_diff_btn
|
|
= parallel_diff_btn
|
|
= render 'projects/diffs/stats', diffs: diffs
|
|
|
|
- diff_files = safe_diff_files(diffs)
|
|
|
|
- if diff_files.count < diffs.size
|
|
= render 'projects/diffs/warning', diffs: diffs, shown_files_count: diff_files.count
|
|
|
|
.files
|
|
- diff_files.each_with_index do |diff_file, index|
|
|
= render 'projects/diffs/file', diff_file: diff_file, i: index, project: project
|
|
|
|
- if @diff_timeout
|
|
.alert.alert-danger
|
|
%h4
|
|
Failed to collect changes
|
|
%p
|
|
Maybe diff is really big and operation failed with timeout. Try to get diff locally
|
|
|
|
:coffeescript
|
|
$('.files .diff-header').stick_in_parent(offset_top: $('.navbar').height())
|