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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
5a1e159b
Commit
5a1e159b
authored
May 08, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make tree, blob and blame pages more consistent
parent
f59a44db
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
81 additions
and
69 deletions
+81
-69
app/assets/stylesheets/framework/files.scss
app/assets/stylesheets/framework/files.scss
+12
-4
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+1
-1
app/assets/stylesheets/pages/commits.scss
app/assets/stylesheets/pages/commits.scss
+0
-2
app/assets/stylesheets/pages/diff.scss
app/assets/stylesheets/pages/diff.scss
+0
-2
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+5
-4
app/helpers/blob_helper.rb
app/helpers/blob_helper.rb
+1
-1
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+3
-5
app/views/projects/blame/show.html.haml
app/views/projects/blame/show.html.haml
+2
-2
app/views/projects/blob/_blob.html.haml
app/views/projects/blob/_blob.html.haml
+6
-19
app/views/projects/blob/_breadcrumb.html.haml
app/views/projects/blob/_breadcrumb.html.haml
+36
-0
app/views/projects/blob/_header.html.haml
app/views/projects/blob/_header.html.haml
+1
-17
app/views/projects/blob/preview.html.haml
app/views/projects/blob/preview.html.haml
+1
-1
app/views/projects/tree/_tree_content.html.haml
app/views/projects/tree/_tree_content.html.haml
+0
-10
app/views/projects/tree/_tree_header.html.haml
app/views/projects/tree/_tree_header.html.haml
+3
-0
app/views/projects/tree/show.html.haml
app/views/projects/tree/show.html.haml
+10
-1
No files found.
app/assets/stylesheets/framework/files.scss
View file @
5a1e159b
...
@@ -4,13 +4,14 @@
...
@@ -4,13 +4,14 @@
*/
*/
.file-holder
{
.file-holder
{
border
:
1px
solid
$border-color
;
border
:
1px
solid
$border-color
;
border-radius
:
$border-radius-default
;
&
.file-holder-no-border
{
&
.file-holder-no-border
{
border
:
0
;
border
:
0
;
}
}
&
.readme-holder
{
&
.readme-holder
{
margin
:
$gl-padding
-top
0
;
margin
:
$gl-padding
0
;
}
}
table
{
table
{
...
@@ -25,7 +26,7 @@
...
@@ -25,7 +26,7 @@
text-align
:
left
;
text-align
:
left
;
padding
:
10px
$gl-padding
;
padding
:
10px
$gl-padding
;
word-wrap
:
break-word
;
word-wrap
:
break-word
;
border-radius
:
3px
3px
0
0
;
border-radius
:
$border-radius-default
$border-radius-default
0
0
;
&
.file-title-clear
{
&
.file-title-clear
{
padding-left
:
0
;
padding-left
:
0
;
...
@@ -94,9 +95,16 @@
...
@@ -94,9 +95,16 @@
tr
{
tr
{
border-bottom
:
1px
solid
$blame-border
;
border-bottom
:
1px
solid
$blame-border
;
&
:last-child
{
border-bottom
:
none
;
}
}
}
td
{
td
{
border-top
:
none
;
border-bottom
:
none
;
&
:first-child
{
&
:first-child
{
border-left
:
none
;
border-left
:
none
;
}
}
...
@@ -107,7 +115,7 @@
...
@@ -107,7 +115,7 @@
}
}
td
.blame-commit
{
td
.blame-commit
{
padding
:
0
10px
;
padding
:
5px
10px
;
min-width
:
400px
;
min-width
:
400px
;
background
:
$gray-light
;
background
:
$gray-light
;
}
}
...
@@ -246,7 +254,7 @@ span.idiff {
...
@@ -246,7 +254,7 @@ span.idiff {
border-bottom
:
1px
solid
$border-color
;
border-bottom
:
1px
solid
$border-color
;
padding
:
5px
$gl-padding
;
padding
:
5px
$gl-padding
;
margin
:
0
;
margin
:
0
;
border-radius
:
3px
3px
0
0
;
border-radius
:
$border-radius-default
$border-radius-default
0
0
;
.file-header-content
{
.file-header-content
{
white-space
:
nowrap
;
white-space
:
nowrap
;
...
...
app/assets/stylesheets/framework/variables.scss
View file @
5a1e159b
...
@@ -163,7 +163,7 @@ $fixed-layout-width: 1280px;
...
@@ -163,7 +163,7 @@ $fixed-layout-width: 1280px;
$limited-layout-width
:
990px
;
$limited-layout-width
:
990px
;
$gl-avatar-size
:
40px
;
$gl-avatar-size
:
40px
;
$error-exclamation-point
:
$red-500
;
$error-exclamation-point
:
$red-500
;
$border-radius-default
:
2
px
;
$border-radius-default
:
3
px
;
$settings-icon-size
:
18px
;
$settings-icon-size
:
18px
;
$provider-btn-not-active-color
:
$blue-500
;
$provider-btn-not-active-color
:
$blue-500
;
$link-underline-blue
:
$blue-500
;
$link-underline-blue
:
$blue-500
;
...
...
app/assets/stylesheets/pages/commits.scss
View file @
5a1e159b
...
@@ -163,7 +163,6 @@
...
@@ -163,7 +163,6 @@
.avatar-cell
{
.avatar-cell
{
width
:
46px
;
width
:
46px
;
padding-left
:
10px
;
img
{
img
{
margin-right
:
0
;
margin-right
:
0
;
...
@@ -175,7 +174,6 @@
...
@@ -175,7 +174,6 @@
justify-content
:
space-between
;
justify-content
:
space-between
;
align-items
:
flex-start
;
align-items
:
flex-start
;
flex-grow
:
1
;
flex-grow
:
1
;
padding-left
:
10px
;
.merge-request-branches
&
{
.merge-request-branches
&
{
flex-direction
:
column
;
flex-direction
:
column
;
...
...
app/assets/stylesheets/pages/diff.scss
View file @
5a1e159b
// Common
// Common
.diff-file
{
.diff-file
{
border
:
1px
solid
$border-color
;
margin-bottom
:
$gl-padding
;
margin-bottom
:
$gl-padding
;
border-radius
:
3px
;
.commit-short-id
{
.commit-short-id
{
font-family
:
$regular_font
;
font-family
:
$regular_font
;
...
...
app/assets/stylesheets/pages/tree.scss
View file @
5a1e159b
...
@@ -138,11 +138,12 @@
...
@@ -138,11 +138,12 @@
.blob-commit-info
{
.blob-commit-info
{
list-style
:
none
;
list-style
:
none
;
background
:
$gray-light
;
padding
:
16px
16px
16px
6px
;
border
:
1px
solid
$border-color
;
border-bottom
:
none
;
margin
:
0
;
margin
:
0
;
padding
:
0
;
}
.blob-content-holder
{
margin-top
:
$gl-padding
;
}
}
.blob-upload-dropzone-previews
{
.blob-upload-dropzone-previews
{
...
...
app/helpers/blob_helper.rb
View file @
5a1e159b
...
@@ -18,7 +18,7 @@ module BlobHelper
...
@@ -18,7 +18,7 @@ module BlobHelper
blob
=
options
.
delete
(
:blob
)
blob
=
options
.
delete
(
:blob
)
blob
||=
project
.
repository
.
blob_at
(
ref
,
path
)
rescue
nil
blob
||=
project
.
repository
.
blob_at
(
ref
,
path
)
rescue
nil
return
unless
blob
return
unless
blob
&&
blob
.
readable_text?
common_classes
=
"btn js-edit-blob
#{
options
[
:extra_class
]
}
"
common_classes
=
"btn js-edit-blob
#{
options
[
:extra_class
]
}
"
...
...
app/helpers/commits_helper.rb
View file @
5a1e159b
...
@@ -100,17 +100,15 @@ module CommitsHelper
...
@@ -100,17 +100,15 @@ module CommitsHelper
end
end
def
link_to_browse_code
(
project
,
commit
)
def
link_to_browse_code
(
project
,
commit
)
return
unless
current_controller?
(
:projects
,
:commits
)
if
@path
.
blank?
if
@path
.
blank?
return
link_to
(
return
link_to
(
"Browse Files"
,
"Browse Files"
,
namespace_project_tree_path
(
project
.
namespace
,
project
,
commit
),
namespace_project_tree_path
(
project
.
namespace
,
project
,
commit
),
class:
"btn btn-default"
class:
"btn btn-default"
)
)
end
elsif
@repo
.
blob_at
(
commit
.
id
,
@path
)
return
unless
current_controller?
(
:projects
,
:commits
)
if
@repo
.
blob_at
(
commit
.
id
,
@path
)
return
link_to
(
return
link_to
(
"Browse File"
,
"Browse File"
,
namespace_project_blob_path
(
project
.
namespace
,
project
,
namespace_project_blob_path
(
project
.
namespace
,
project
,
...
...
app/views/projects/blame/show.html.haml
View file @
5a1e159b
...
@@ -3,9 +3,9 @@
...
@@ -3,9 +3,9 @@
=
render
"projects/commits/head"
=
render
"projects/commits/head"
%div
{
class:
container_class
}
%div
{
class:
container_class
}
%h3
.page-title
Blame view
#blob-content-holder
.tree-holder
#blob-content-holder
.tree-holder
=
render
"projects/blob/breadcrumb"
,
blob:
@blob
,
blame:
true
.file-holder
.file-holder
=
render
"projects/blob/header"
,
blob:
@blob
,
blame:
true
=
render
"projects/blob/header"
,
blob:
@blob
,
blame:
true
...
...
app/views/projects/blob/_blob.html.haml
View file @
5a1e159b
.nav-block
=
render
"projects/blob/breadcrumb"
,
blob:
blob
.tree-ref-holder
=
render
'shared/ref_switcher'
,
destination:
'blob'
,
path:
@path
%ul
.breadcrumb.repo-breadcrumb
.info-well.hidden-xs
%li
.well-segment
=
link_to
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
@ref
)
do
%ul
.blob-commit-info
=
@project
.
path
-
blob_commit
=
@repository
.
last_commit_for_path
(
@commit
.
id
,
blob
.
path
)
-
path_breadcrumbs
do
|
title
,
path
|
=
render
blob_commit
,
project:
@project
,
ref:
@ref
-
title
=
truncate
(
title
,
length:
40
)
%li
-
if
path
==
@path
=
link_to
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
tree_join
(
@ref
,
path
))
do
%strong
=
title
-
else
=
link_to
title
,
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
tree_join
(
@ref
,
path
))
%ul
.blob-commit-info.hidden-xs
-
blob_commit
=
@repository
.
last_commit_for_path
(
@commit
.
id
,
blob
.
path
)
=
render
blob_commit
,
project:
@project
,
ref:
@ref
#blob-content-holder
.blob-content-holder
#blob-content-holder
.blob-content-holder
%article
.file-holder
%article
.file-holder
...
...
app/views/projects/blob/_breadcrumb.html.haml
0 → 100644
View file @
5a1e159b
-
blame
=
local_assigns
.
fetch
(
:blame
,
false
)
.nav-block
.tree-controls
=
render
'projects/find_file_link'
.btn-group.prepend-left-10
{
role:
"group"
}
<
-# only show normal/blame view links for text files
-
if
blob
.
readable_text?
-
if
blame
=
link_to
'Normal view'
,
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn'
-
else
=
link_to
'Blame'
,
namespace_project_blame_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn js-blob-blame-link'
unless
blob
.
empty?
=
link_to
'History'
,
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn'
=
link_to
'Permalink'
,
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
tree_join
(
@commit
.
sha
,
@path
)),
class:
'btn js-data-file-blob-permalink-url'
.tree-ref-holder
=
render
'shared/ref_switcher'
,
destination:
'blob'
,
path:
@path
%ul
.breadcrumb.repo-breadcrumb
%li
=
link_to
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
@ref
)
do
=
@project
.
path
-
path_breadcrumbs
do
|
title
,
path
|
-
title
=
truncate
(
title
,
length:
40
)
%li
-
if
path
==
@path
=
link_to
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
tree_join
(
@ref
,
path
))
do
%strong
=
title
-
else
=
link_to
title
,
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
tree_join
(
@ref
,
path
))
app/views/projects/blob/_header.html.haml
View file @
5a1e159b
...
@@ -11,23 +11,7 @@
...
@@ -11,23 +11,7 @@
=
view_on_environment_button
(
@commit
.
sha
,
@path
,
@environment
)
if
@environment
=
view_on_environment_button
(
@commit
.
sha
,
@path
,
@environment
)
if
@environment
.btn-group
{
role:
"group"
}
<
.btn-group
{
role:
"group"
}
<
-# only show normal/blame view links for text files
=
edit_blob_link
-
if
blob
.
readable_text?
-
if
blame
=
link_to
'Normal view'
,
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn btn-sm'
-
else
=
link_to
'Blame'
,
namespace_project_blame_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn btn-sm js-blob-blame-link'
unless
blob
.
empty?
=
link_to
'History'
,
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn btn-sm'
=
link_to
'Permalink'
,
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
tree_join
(
@commit
.
sha
,
@path
)),
class:
'btn btn-sm js-data-file-blob-permalink-url'
.btn-group
{
role:
"group"
}
<
=
edit_blob_link
if
blob
.
readable_text?
-
if
current_user
-
if
current_user
=
replace_blob_link
=
replace_blob_link
=
delete_blob_link
=
delete_blob_link
...
...
app/views/projects/blob/preview.html.haml
View file @
5a1e159b
.diff-file
.diff-file
.file-holder
.diff-content
.diff-content
-
if
markup?
(
@blob
.
name
)
-
if
markup?
(
@blob
.
name
)
.file-content.wiki
.file-content.wiki
...
...
app/views/projects/tree/_tree_content.html.haml
View file @
5a1e159b
...
@@ -6,16 +6,6 @@
...
@@ -6,16 +6,6 @@
%th
Name
%th
Name
%th
.hidden-xs
%th
.hidden-xs
.pull-left
Last commit
.pull-left
Last commit
.last-commit.hidden-sm.pull-left
%i
.fa.fa-angle-right
%small
.light
=
link_to
@commit
.
short_id
,
namespace_project_commit_path
(
@project
.
namespace
,
@project
,
@commit
),
class:
"monospace"
=
clipboard_button
(
text:
@commit
.
id
,
title:
"Copy commit SHA to clipboard"
)
=
time_ago_with_tooltip
(
@commit
.
committed_date
)
\-
=
@commit
.
full_title
%small
.commit-history-link-spacer
|
=
link_to
'History'
,
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'commit-history-link'
%th
.text-right
Last Update
%th
.text-right
Last Update
-
if
@path
.
present?
-
if
@path
.
present?
%tr
.tree-item
%tr
.tree-item
...
...
app/views/projects/tree/_tree_header.html.haml
View file @
5a1e159b
.tree-controls
.tree-controls
=
render
'projects/find_file_link'
=
render
'projects/find_file_link'
=
link_to
'History'
,
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn btn-grouped'
=
render
'projects/buttons/download'
,
project:
@project
,
ref:
@ref
=
render
'projects/buttons/download'
,
project:
@project
,
ref:
@ref
.tree-ref-holder
.tree-ref-holder
...
...
app/views/projects/tree/show.html.haml
View file @
5a1e159b
...
@@ -7,4 +7,13 @@
...
@@ -7,4 +7,13 @@
=
render
'projects/last_push'
=
render
'projects/last_push'
%div
{
class:
container_class
}
%div
{
class:
container_class
}
=
render
'projects/files'
#tree-holder
.tree-holder.clearfix
.nav-block
=
render
'projects/tree/tree_header'
,
tree:
@tree
.info-well.hidden-xs.append-bottom-default
.well-segment
%ul
.blob-commit-info
=
render
'projects/commits/commit'
,
commit:
@commit
,
project:
@project
,
ref:
@ref
=
render
'projects/tree/tree_content'
,
tree:
@tree
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