Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
41cd2071
Commit
41cd2071
authored
Jan 23, 2017
by
Filipa Lacerda
Committed by
Annabel Dunstone Gray
Feb 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Port of revert-
0ef587b6
to EE
parent
52da628a
Changes
25
Show whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
94 additions
and
41 deletions
+94
-41
app/assets/javascripts/diff.js.es6
app/assets/javascripts/diff.js.es6
+1
-1
app/assets/javascripts/single_file_diff.js
app/assets/javascripts/single_file_diff.js
+2
-2
app/assets/stylesheets/framework/files.scss
app/assets/stylesheets/framework/files.scss
+43
-0
app/assets/stylesheets/pages/diff.scss
app/assets/stylesheets/pages/diff.scss
+6
-1
app/views/admin/logs/show.html.haml
app/views/admin/logs/show.html.haml
+1
-1
app/views/ci/lints/show.html.haml
app/views/ci/lints/show.html.haml
+1
-1
app/views/discussions/_diff_with_notes.html.haml
app/views/discussions/_diff_with_notes.html.haml
+1
-1
app/views/help/ui.html.haml
app/views/help/ui.html.haml
+1
-1
app/views/projects/blame/show.html.haml
app/views/projects/blame/show.html.haml
+1
-1
app/views/projects/blob/_blob.html.haml
app/views/projects/blob/_blob.html.haml
+1
-1
app/views/projects/blob/_editor.html.haml
app/views/projects/blob/_editor.html.haml
+1
-1
app/views/projects/diffs/_file.html.haml
app/views/projects/diffs/_file.html.haml
+3
-2
app/views/projects/diffs/_file_header.html.haml
app/views/projects/diffs/_file_header.html.haml
+3
-3
app/views/projects/merge_requests/conflicts.html.haml
app/views/projects/merge_requests/conflicts.html.haml
+1
-1
app/views/projects/snippets/show.html.haml
app/views/projects/snippets/show.html.haml
+1
-1
app/views/projects/tree/_readme.html.haml
app/views/projects/tree/_readme.html.haml
+1
-1
app/views/search/results/_blob.html.haml
app/views/search/results/_blob.html.haml
+1
-1
app/views/search/results/_snippet_blob.html.haml
app/views/search/results/_snippet_blob.html.haml
+1
-1
app/views/search/results/_wiki_blob.html.haml
app/views/search/results/_wiki_blob.html.haml
+1
-1
app/views/shared/snippets/_form.html.haml
app/views/shared/snippets/_form.html.haml
+1
-1
app/views/sherlock/file_samples/show.html.haml
app/views/sherlock/file_samples/show.html.haml
+1
-1
app/views/snippets/show.html.haml
app/views/snippets/show.html.haml
+1
-1
changelogs/unreleased/25709-diff-file-overflow.yml
changelogs/unreleased/25709-diff-file-overflow.yml
+4
-0
spec/features/expand_collapse_diffs_spec.rb
spec/features/expand_collapse_diffs_spec.rb
+14
-14
spec/features/projects/files/find_file_keyboard_spec.rb
spec/features/projects/files/find_file_keyboard_spec.rb
+2
-2
No files found.
app/assets/javascripts/diff.js.es6
View file @
41cd2071
...
...
@@ -76,7 +76,7 @@ require('./lib/utils/url_utility');
const diffFile = diffTitle.closest('.diff-file');
const nothingHereBlock = $('.nothing-here-block:visible', diffFile);
if (nothingHereBlock.length) {
const clickTarget = $('.file-title, .click-to-expand', diffFile);
const clickTarget = $('.
js-
file-title, .click-to-expand', diffFile);
diffFile.data('singleFileDiff').toggleDiff(clickTarget, () => {
this.highlighSelectedLine();
if (cb) cb();
...
...
app/assets/javascripts/single_file_diff.js
View file @
41cd2071
...
...
@@ -33,13 +33,13 @@
this
.
$toggleIcon
.
addClass
(
'
fa-caret-down
'
);
}
$
(
'
.file-title, .click-to-expand
'
,
this
.
file
).
on
(
'
click
'
,
(
function
(
e
)
{
$
(
'
.
js-
file-title, .click-to-expand
'
,
this
.
file
).
on
(
'
click
'
,
(
function
(
e
)
{
this
.
toggleDiff
(
$
(
e
.
target
));
}).
bind
(
this
));
}
SingleFileDiff
.
prototype
.
toggleDiff
=
function
(
$target
,
cb
)
{
if
(
!
$target
.
hasClass
(
'
file-title
'
)
&&
!
$target
.
hasClass
(
'
click-to-expand
'
)
&&
!
$target
.
hasClass
(
'
diff-toggle-caret
'
))
return
;
if
(
!
$target
.
hasClass
(
'
js-
file-title
'
)
&&
!
$target
.
hasClass
(
'
click-to-expand
'
)
&&
!
$target
.
hasClass
(
'
diff-toggle-caret
'
))
return
;
this
.
isOpen
=
!
this
.
isOpen
;
if
(
!
this
.
isOpen
&&
!
this
.
hasError
)
{
this
.
content
.
hide
();
...
...
app/assets/stylesheets/framework/files.scss
View file @
41cd2071
...
...
@@ -231,3 +231,46 @@ span.idiff {
}
}
}
.file-title-flex-parent
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
background-color
:
$gray-light
;
border-bottom
:
1px
solid
$border-color
;
padding
:
5px
$gl-padding
;
margin
:
0
;
border-radius
:
3px
3px
0
0
;
.file-header-content
{
white-space
:
nowrap
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
padding-right
:
30px
;
position
:
relative
;
}
.btn-clipboard
{
position
:
absolute
;
right
:
0
;
}
a
{
color
:
$gl-text-color
;
}
small
{
margin
:
0
10px
0
0
;
}
.file-actions
{
white-space
:
nowrap
;
.btn
{
padding
:
0
10px
;
font-size
:
13px
;
line-height
:
28px
;
display
:
inline-block
;
}
}
}
app/assets/stylesheets/pages/diff.scss
View file @
41cd2071
...
...
@@ -34,9 +34,14 @@
}
}
.file-title
{
.file-title
,
.file-title-flex-parent
{
cursor
:
pointer
;
a
:hover
{
text-decoration
:
none
;
}
&
:hover
{
background-color
:
$gray-normal
;
}
...
...
app/views/admin/logs/show.html.haml
View file @
41cd2071
...
...
@@ -18,7 +18,7 @@
.tab-pane
{
class:
(
klass
==
Gitlab
::
GitLogger
?
'active'
:
''
),
id:
klass
::
file_name_noext
}
.file-holder
#README
.file-title
.
js-file-title.
file-title
%i
.fa.fa-file
=
klass
::
file_name
.pull-right
...
...
app/views/ci/lints/show.html.haml
View file @
41cd2071
...
...
@@ -11,7 +11,7 @@
.form-group
.col-sm-12
.file-holder
.file-title.clearfix
.
js-file-title.
file-title.clearfix
Content of .gitlab-ci.yml
#ci-editor
.ci-editor
=
@content
=
text_area_tag
(
:content
,
@content
,
class:
'hidden form-control span1'
,
rows:
7
,
require:
true
)
...
...
app/views/discussions/_diff_with_notes.html.haml
View file @
41cd2071
...
...
@@ -2,7 +2,7 @@
-
blob
=
discussion
.
blob
.diff-file.file-holder
.file-title
.
js-file-title.
file-title
=
render
"projects/diffs/file_header"
,
diff_file:
diff_file
,
blob:
blob
,
diff_commit:
diff_file
.
content_commit
,
project:
discussion
.
project
,
url:
discussion_diff_path
(
discussion
)
.diff-content.code.js-syntax-highlight
...
...
app/views/help/ui.html.haml
View file @
41cd2071
...
...
@@ -528,7 +528,7 @@
-
blob
=
Snippet
.
new
(
content:
"Wow
\n
Such
\n
File"
)
.example
.file-holder
.file-title
.
js-file-title.
file-title
Awesome file
.file-actions
.btn-group
...
...
app/views/projects/blame/show.html.haml
View file @
41cd2071
...
...
@@ -7,7 +7,7 @@
#blob-content-holder
.tree-holder
.file-holder
.file-title
.
js-file-title.
file-title
=
blob_icon
@blob
.
mode
,
@blob
.
name
%strong
=
@path
...
...
app/views/projects/blob/_blob.html.haml
View file @
41cd2071
...
...
@@ -25,7 +25,7 @@
#blob-content-holder
.blob-content-holder
%article
.file-holder
.file-title
.
js-file-title.
file-title
=
blob_icon
blob
.
mode
,
blob
.
name
%strong
=
blob
.
name
...
...
app/views/projects/blob/_editor.html.haml
View file @
41cd2071
.file-holder.file.append-bottom-default
.file-title.clearfix
.
js-file-title.
file-title.clearfix
.editor-ref
=
icon
(
'code-fork'
)
=
ref
...
...
app/views/projects/diffs/_file.html.haml
View file @
41cd2071
-
environment
=
local_assigns
.
fetch
(
:environment
,
nil
)
.diff-file.file-holder
{
id:
file_hash
,
data:
diff_file_html_data
(
project
,
diff_file
.
file_path
,
diff_commit
.
id
)
}
.file-title
.js-file-title.file-title-flex-parent
.file-header-content
=
render
"projects/diffs/file_header"
,
diff_file:
diff_file
,
blob:
blob
,
diff_commit:
diff_commit
,
project:
project
,
url:
"#
#{
file_hash
}
"
-
unless
diff_file
.
submodule?
...
...
app/views/projects/diffs/_file_header.html.haml
View file @
41cd2071
...
...
@@ -10,13 +10,13 @@
-
if
diff_file
.
renamed_file
-
old_path
,
new_path
=
mark_inline_diffs
(
diff_file
.
old_path
,
diff_file
.
new_path
)
%strong
%strong
.file-title-name.has-tooltip
{
data:
{
title:
old_path
}
}
=
old_path
→
%strong
%strong
.file-title-name.has-tooltip
{
data:
{
title:
new_path
}
}
=
new_path
-
else
%strong
%strong
.file-title-name.has-tooltip
{
data:
{
title:
diff_file
.
new_path
}
}
=
diff_file
.
new_path
-
if
diff_file
.
deleted_file
deleted
...
...
app/views/projects/merge_requests/conflicts.html.haml
View file @
41cd2071
...
...
@@ -23,7 +23,7 @@
.files-wrapper
{
"v-if"
=>
"!isLoading && !hasError"
}
.files
.diff-file.file-holder.conflict
{
"v-for"
=>
"file in conflictsData.files"
}
.file-title
.
js-file-title.
file-title
%i
.fa.fa-fw
{
":class"
=>
"file.iconClass"
}
%strong
{{file.filePath}}
=
render
partial:
'projects/merge_requests/conflicts/file_actions'
...
...
app/views/projects/snippets/show.html.haml
View file @
41cd2071
...
...
@@ -4,7 +4,7 @@
.project-snippets
%article
.file-holder.snippet-file-content
.file-title
.
js-file-title.
file-title
=
blob_icon
0
,
@snippet
.
file_name
=
@snippet
.
file_name
.file-actions
...
...
app/views/projects/tree/_readme.html.haml
View file @
41cd2071
%article
.file-holder.readme-holder
.file-title
.
js-file-title.
file-title
=
blob_icon
readme
.
mode
,
readme
.
name
=
link_to
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
tree_join
(
@ref
,
@path
,
readme
.
name
))
do
%strong
...
...
app/views/search/results/_blob.html.haml
View file @
41cd2071
...
...
@@ -9,7 +9,7 @@
-
blob_link
=
namespace_project_blob_path
(
project
.
namespace
,
project
,
tree_join
(
blob
.
ref
,
file_name
))
.blob-result
.file-holder
.file-title
.
js-file-title.
file-title
=
link_to
blob_link
do
=
icon
(
'fa-file'
)
%strong
...
...
app/views/search/results/_snippet_blob.html.haml
View file @
41cd2071
...
...
@@ -14,7 +14,7 @@
-
snippet_path
=
reliable_snippet_path
(
snippet
)
=
link_to
snippet_path
do
.file-holder
.file-title
.
js-file-title.
file-title
%i
.fa.fa-file
%strong
=
snippet
.
file_name
-
if
markup?
(
snippet
.
file_name
)
...
...
app/views/search/results/_wiki_blob.html.haml
View file @
41cd2071
-
wiki_blob
=
parse_search_result
(
wiki_blob
)
.blob-result
.file-holder
.file-title
.
js-file-title.
file-title
=
link_to
namespace_project_wiki_path
(
@project
.
namespace
,
@project
,
wiki_blob
.
basename
)
do
%i
.fa.fa-file
%strong
...
...
app/views/shared/snippets/_form.html.haml
View file @
41cd2071
...
...
@@ -18,7 +18,7 @@
=
f
.
label
:file_name
,
"File"
,
class:
'control-label'
.col-sm-10
.file-holder.snippet
.file-title
.
js-file-title.
file-title
=
f
.
text_field
:file_name
,
placeholder:
"Optionally name this file to add code highlighting, e.g. example.rb for Ruby."
,
class:
'form-control snippet-file-name'
.file-content.code
%pre
#editor
=
@snippet
.
content
...
...
app/views/sherlock/file_samples/show.html.haml
View file @
41cd2071
...
...
@@ -26,7 +26,7 @@
=
@file_sample
.
events
%article
.file-holder
.file-title
.
js-file-title.
file-title
%i
.fa.fa-file-text-o.fa-fw
%strong
=
@file_sample
.
file
...
...
app/views/snippets/show.html.haml
View file @
41cd2071
...
...
@@ -3,7 +3,7 @@
=
render
'shared/snippets/header'
%article
.file-holder.snippet-file-content
.file-title
.
js-file-title.
file-title
=
blob_icon
0
,
@snippet
.
file_name
=
@snippet
.
file_name
.file-actions
...
...
changelogs/unreleased/25709-diff-file-overflow.yml
0 → 100644
View file @
41cd2071
---
title
:
Responsive title in diffs inline, side by side, with and without sidebar
merge_request
:
8475
author
:
spec/features/expand_collapse_diffs_spec.rb
View file @
41cd2071
...
...
@@ -72,8 +72,8 @@ feature 'Expand and collapse diffs', js: true, feature: true do
it
'collapses large diffs for renamed files by default'
do
expect
(
large_diff_renamed
).
not_to
have_selector
(
'.code'
)
expect
(
large_diff_renamed
).
to
have_selector
(
'.nothing-here-block'
)
expect
(
large_diff_renamed
).
to
have_selector
(
'.file-title .deletion'
)
expect
(
large_diff_renamed
).
to
have_selector
(
'.file-title .addition'
)
expect
(
large_diff_renamed
).
to
have_selector
(
'.
js-
file-title .deletion'
)
expect
(
large_diff_renamed
).
to
have_selector
(
'.
js-
file-title .addition'
)
end
it
'shows non-renderable diffs as such immediately, regardless of their size'
do
...
...
@@ -115,9 +115,9 @@ feature 'Expand and collapse diffs', js: true, feature: true do
context
'expanding a large diff'
do
before
do
# Wait for diffs
find
(
'.file-title'
,
match: :first
)
find
(
'.
js-
file-title'
,
match: :first
)
# Click `large_diff.md` title
all
(
'.
file-title
'
)[
1
].
click
all
(
'.
diff-toggle-caret
'
)[
1
].
click
wait_for_ajax
end
...
...
@@ -159,9 +159,9 @@ feature 'Expand and collapse diffs', js: true, feature: true do
context
'expanding the diff'
do
before
do
# Wait for diffs
find
(
'.file-title'
,
match: :first
)
find
(
'.
js-
file-title'
,
match: :first
)
# Click `large_diff.md` title
all
(
'.
file-title
'
)[
1
].
click
all
(
'.
diff-toggle-caret
'
)[
1
].
click
wait_for_ajax
end
...
...
@@ -181,9 +181,9 @@ feature 'Expand and collapse diffs', js: true, feature: true do
context
'collapsing an expanded diff'
do
before
do
# Wait for diffs
find
(
'.file-title'
,
match: :first
)
find
(
'.
js-
file-title'
,
match: :first
)
# Click `small_diff.md` title
all
(
'.
file-title
'
)[
3
].
click
all
(
'.
diff-toggle-caret
'
)[
3
].
click
end
it
'hides the diff content'
do
...
...
@@ -194,9 +194,9 @@ feature 'Expand and collapse diffs', js: true, feature: true do
context
're-expanding the same diff'
do
before
do
# Wait for diffs
find
(
'.file-title'
,
match: :first
)
find
(
'.
js-
file-title'
,
match: :first
)
# Click `small_diff.md` title
all
(
'.
file-title
'
)[
3
].
click
all
(
'.
diff-toggle-caret
'
)[
3
].
click
end
it
'shows the diff content'
do
...
...
@@ -290,9 +290,9 @@ feature 'Expand and collapse diffs', js: true, feature: true do
context
'collapsing an expanded diff'
do
before
do
# Wait for diffs
find
(
'.file-title'
,
match: :first
)
find
(
'.
js-
file-title'
,
match: :first
)
# Click `small_diff.md` title
all
(
'.
file-title
'
)[
3
].
click
all
(
'.
diff-toggle-caret
'
)[
3
].
click
end
it
'hides the diff content'
do
...
...
@@ -303,9 +303,9 @@ feature 'Expand and collapse diffs', js: true, feature: true do
context
're-expanding the same diff'
do
before
do
# Wait for diffs
find
(
'.file-title'
,
match: :first
)
find
(
'.
js-
file-title'
,
match: :first
)
# Click `small_diff.md` title
all
(
'.
file-title
'
)[
3
].
click
all
(
'.
diff-toggle-caret
'
)[
3
].
click
end
it
'shows the diff content'
do
...
...
spec/features/projects/files/find_file_keyboard_spec.rb
View file @
41cd2071
...
...
@@ -22,7 +22,7 @@ feature 'Find file keyboard shortcuts', feature: true, js: true do
expect
(
page
).
to
have_selector
(
'.blob-content-holder'
)
page
.
within
(
'.file-title'
)
do
page
.
within
(
'.
js-
file-title'
)
do
expect
(
page
).
to
have_content
(
'CHANGELOG'
)
end
end
...
...
@@ -35,7 +35,7 @@ feature 'Find file keyboard shortcuts', feature: true, js: true do
expect
(
page
).
to
have_selector
(
'.blob-content-holder'
)
page
.
within
(
'.file-title'
)
do
page
.
within
(
'.
js-
file-title'
)
do
expect
(
page
).
to
have_content
(
'application.js'
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment