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
756b9b59
Commit
756b9b59
authored
Oct 17, 2011
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #132
parent
9de8e52d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+4
-2
No files found.
app/helpers/commits_helper.rb
View file @
756b9b59
...
@@ -22,10 +22,12 @@ module CommitsHelper
...
@@ -22,10 +22,12 @@ module CommitsHelper
:remote
=>
true
,
:class
=>
"lite_button vm"
,
:style
=>
"text-align:center; width:930px; "
,
:id
=>
"more-commits-link"
:remote
=>
true
,
:class
=>
"lite_button vm"
,
:style
=>
"text-align:center; width:930px; "
,
:id
=>
"more-commits-link"
end
end
# Cause some errors with trucate & encoding use this method
def
truncate_commit_message
(
commit
,
size
=
60
)
def
truncate_commit_message
(
commit
,
size
=
60
)
truncate
(
commit
.
message
,
:length
=>
size
)
message
=
commit
.
message
message
.
length
>
size
?
(
message
[
0
..
(
size
-
1
)]
+
"..."
)
:
message
# if special characters occurs
# if special characters occurs
rescue
rescue
commit
.
message
.
length
>
size
?
(
commit
.
message
[
0
..
(
size
-
1
)]
+
"..."
)
:
commit
.
message
commit
.
message
end
end
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