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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
45bebd76
Commit
45bebd76
authored
Jan 21, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
parents
6a1aa476
8a66a10c
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
34 additions
and
3 deletions
+34
-3
CHANGELOG
CHANGELOG
+1
-1
app/controllers/projects/commit_controller.rb
app/controllers/projects/commit_controller.rb
+1
-0
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+6
-0
app/models/repository.rb
app/models/repository.rb
+17
-0
app/models/user.rb
app/models/user.rb
+1
-1
app/views/projects/commit/_commit_box.html.haml
app/views/projects/commit/_commit_box.html.haml
+7
-0
spec/helpers/application_helper_spec.rb
spec/helpers/application_helper_spec.rb
+1
-1
No files found.
CHANGELOG
View file @
45bebd76
...
@@ -14,7 +14,7 @@ v 7.8.0
...
@@ -14,7 +14,7 @@ v 7.8.0
- Allow more variations for commit messages closing issues (Julien Bianchi and Hannes Rosenögger)
- Allow more variations for commit messages closing issues (Julien Bianchi and Hannes Rosenögger)
-
-
-
-
-
-
Show tags in commit view (Hannes Rosenögger)
-
-
-
-
-
-
...
...
app/controllers/projects/commit_controller.rb
View file @
45bebd76
...
@@ -12,6 +12,7 @@ class Projects::CommitController < Projects::ApplicationController
...
@@ -12,6 +12,7 @@ class Projects::CommitController < Projects::ApplicationController
@line_notes
=
@project
.
notes
.
for_commit_id
(
commit
.
id
).
inline
@line_notes
=
@project
.
notes
.
for_commit_id
(
commit
.
id
).
inline
@branches
=
@project
.
repository
.
branch_names_contains
(
commit
.
id
)
@branches
=
@project
.
repository
.
branch_names_contains
(
commit
.
id
)
@tags
=
@project
.
repository
.
tag_names_contains
(
commit
.
id
)
@diffs
=
@commit
.
diffs
@diffs
=
@commit
.
diffs
@note
=
@project
.
build_commit_note
(
commit
)
@note
=
@project
.
build_commit_note
(
commit
)
@notes_count
=
@project
.
notes
.
for_commit_id
(
commit
.
id
).
count
@notes_count
=
@project
.
notes
.
for_commit_id
(
commit
.
id
).
count
...
...
app/helpers/commits_helper.rb
View file @
45bebd76
...
@@ -65,6 +65,12 @@ module CommitsHelper
...
@@ -65,6 +65,12 @@ module CommitsHelper
branches
.
sort
.
map
{
|
branch
|
link_to
(
branch
,
project_tree_path
(
project
,
branch
))
}.
join
(
", "
).
html_safe
branches
.
sort
.
map
{
|
branch
|
link_to
(
branch
,
project_tree_path
(
project
,
branch
))
}.
join
(
", "
).
html_safe
end
end
# Returns the sorted links to tags, separated by a comma
def
commit_tags_links
(
project
,
tags
)
sorted
=
VersionSorter
.
rsort
(
tags
)
sorted
.
map
{
|
tag
|
link_to
(
tag
,
project_commits_path
(
project
,
project
.
repository
.
find_tag
(
tag
).
name
))
}.
join
(
", "
).
html_safe
end
def
link_to_browse_code
(
project
,
commit
)
def
link_to_browse_code
(
project
,
commit
)
if
current_controller?
(
:projects
,
:commits
)
if
current_controller?
(
:projects
,
:commits
)
if
@repo
.
blob_at
(
commit
.
id
,
@path
)
if
@repo
.
blob_at
(
commit
.
id
,
@path
)
...
...
app/models/repository.rb
View file @
45bebd76
...
@@ -312,4 +312,21 @@ class Repository
...
@@ -312,4 +312,21 @@ class Repository
[]
[]
end
end
end
end
def
tag_names_contains
(
sha
)
args
=
%W(git tag --contains
#{
sha
}
)
names
=
Gitlab
::
Popen
.
popen
(
args
,
path_to_repo
).
first
if
names
.
respond_to?
(
:split
)
names
=
names
.
split
(
"
\n
"
).
map
(
&
:strip
)
names
.
each
do
|
name
|
name
.
slice!
'* '
end
names
else
[]
end
end
end
end
app/models/user.rb
View file @
45bebd76
...
@@ -497,7 +497,7 @@ class User < ActiveRecord::Base
...
@@ -497,7 +497,7 @@ class User < ActiveRecord::Base
def
avatar_url
(
size
=
nil
)
def
avatar_url
(
size
=
nil
)
if
avatar
.
present?
if
avatar
.
present?
[
gitlab_config
.
url
,
avatar
.
url
].
join
(
"/"
)
[
gitlab_config
.
url
,
avatar
.
url
].
join
else
else
GravatarService
.
new
.
execute
(
email
,
size
)
GravatarService
.
new
.
execute
(
email
,
size
)
end
end
...
...
app/views/projects/commit/_commit_box.html.haml
View file @
45bebd76
...
@@ -50,6 +50,13 @@
...
@@ -50,6 +50,13 @@
%span
.js-details-content.hide
%span
.js-details-content.hide
=
commit_branches_links
(
@project
,
@branches
)
=
commit_branches_links
(
@project
,
@branches
)
-
if
@tags
.
any?
.commit-info-row
%span
.cgray
Tags:
%span
=
commit_tags_links
(
@project
,
@tags
)
.commit-box
.commit-box
%h3
.commit-title
%h3
.commit-title
=
gfm
escape_once
(
@commit
.
title
)
=
gfm
escape_once
(
@commit
.
title
)
...
...
spec/helpers/application_helper_spec.rb
View file @
45bebd76
...
@@ -73,7 +73,7 @@ describe ApplicationHelper do
...
@@ -73,7 +73,7 @@ describe ApplicationHelper do
user
=
create
(
:user
)
user
=
create
(
:user
)
user
.
avatar
=
File
.
open
(
avatar_file_path
)
user
.
avatar
=
File
.
open
(
avatar_file_path
)
user
.
save!
user
.
save!
avatar_icon
(
user
.
email
).
to_s
.
should
match
(
"/gitlab/
/
uploads/user/avatar/
#{
user
.
id
}
/gitlab_logo.png"
)
avatar_icon
(
user
.
email
).
to_s
.
should
match
(
"/gitlab/uploads/user/avatar/
#{
user
.
id
}
/gitlab_logo.png"
)
end
end
it
"should call gravatar_icon when no avatar is present"
do
it
"should call gravatar_icon when no avatar is present"
do
...
...
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