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
2c28dbd2
Commit
2c28dbd2
authored
Feb 25, 2014
by
skv-headless
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit description in commit list
parent
5f31caa0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
8 deletions
+49
-8
app/assets/stylesheets/sections/commits.scss
app/assets/stylesheets/sections/commits.scss
+32
-0
app/models/commit.rb
app/models/commit.rb
+9
-7
app/views/projects/commits/_commit.html.haml
app/views/projects/commits/_commit.html.haml
+8
-1
No files found.
app/assets/stylesheets/sections/commits.scss
View file @
2c28dbd2
...
...
@@ -168,6 +168,32 @@ li.commit {
text-decoration
:
underline
;
}
}
.text-expander
{
background
:
#ddd
;
color
:
#555
;
padding
:
0
5px
;
line-height
:
6px
;
height
:
12px
;
font-size
:
12px
;
font-weight
:
bold
;
vertical-align
:
middle
;
display
:
inline-block
;
border-radius
:
1px
;
text-decoration
:
none
;
cursor
:
pointer
;
&
:hover
{
background-color
:
#ccc
;
}
}
}
.commit-row-description
{
font-size
:
14px
;
border-left
:
1px
solid
#e5e5e5
;
padding
:
0
15px
0
7px
;
margin
:
5px
0
10px
5px
;
display
:
none
;
}
.commit-row-info
{
...
...
@@ -192,4 +218,10 @@ li.commit {
@extend
.cgray
;
}
}
&
.open
{
.commit-row-description
{
display
:
block
;
}
}
}
app/models/commit.rb
View file @
2c28dbd2
...
...
@@ -99,14 +99,16 @@ class Commit
#
# cut off, ellipses (`&hellp;`) are prepended to the commit message.
def
description
description
=
safe_message
title_end
=
safe_message
.
index
(
/\n/
)
@description
||=
if
(
!
title_end
&&
safe_message
.
length
>
100
)
||
(
title_end
&&
title_end
>
100
)
"…"
.
html_safe
<<
safe_message
[
80
..-
1
]
else
safe_message
.
split
(
/\n/
,
2
)[
1
].
try
(
:chomp
)
end
end
title_end
=
description
.
index
(
/\n/
)
if
(
!
title_end
&&
description
.
length
>
100
)
||
(
title_end
&&
title_end
>
100
)
"…"
.
html_safe
<<
description
[
80
..-
1
]
else
description
.
split
(
/\n/
,
2
)[
1
].
try
(
:chomp
)
end
def
description?
description
.
present?
end
# Regular expression that identifies commit message clauses that trigger issue closing.
...
...
app/views/projects/commits/_commit.html.haml
View file @
2c28dbd2
%li
.commit
.commit-row-title
.commit-row-title
{
"data-toggle"
=>
"dropdown"
}
=
link_to
commit
.
short_id
(
8
),
project_commit_path
(
project
,
commit
),
class:
"commit_short_id"
%span
.str-truncated
=
link_to_gfm
commit
.
title
,
project_commit_path
(
project
,
commit
.
id
),
class:
"commit-row-message"
-
if
commit
.
description?
%span
.label-default.text-expander.js-details-target
...
=
link_to
"Browse Code »"
,
project_tree_path
(
project
,
commit
),
class:
"pull-right"
.notes_count
-
notes
=
project
.
notes
.
for_commit_id
(
commit
.
id
)
...
...
@@ -12,6 +15,10 @@
%i
.icon-comment
=
notes
.
count
-
if
commit
.
description?
.commit-row-description
=
simple_format
(
commit
.
description
)
.commit-row-info
=
commit_author_link
(
commit
,
avatar:
true
,
size:
16
)
.committed_ago
...
...
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