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
5baa5fad
Commit
5baa5fad
authored
Oct 24, 2011
by
gitlabhq
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #149
parent
61e6751e
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
14 deletions
+18
-14
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+0
-9
app/views/commits/_commits.html.haml
app/views/commits/_commits.html.haml
+1
-1
app/views/commits/show.html.haml
app/views/commits/show.html.haml
+1
-1
app/views/projects/_recent_commits.html.haml
app/views/projects/_recent_commits.html.haml
+1
-1
app/views/projects/_recent_messages.html.haml
app/views/projects/_recent_messages.html.haml
+1
-1
app/views/projects/_tree_item.html.haml
app/views/projects/_tree_item.html.haml
+1
-1
config/initializers/grit_ext.rb
config/initializers/grit_ext.rb
+4
-0
lib/commit_ext.rb
lib/commit_ext.rb
+9
-0
No files found.
app/helpers/commits_helper.rb
View file @
5baa5fad
...
@@ -21,13 +21,4 @@ module CommitsHelper
...
@@ -21,13 +21,4 @@ module CommitsHelper
link_to
"More"
,
project_commits_path
(
@project
,
:offset
=>
offset
.
to_i
+
limit
.
to_i
,
:limit
=>
limit
),
link_to
"More"
,
project_commits_path
(
@project
,
:offset
=>
offset
.
to_i
+
limit
.
to_i
,
:limit
=>
limit
),
: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
)
message
=
commit
.
message
message
.
length
>
size
?
(
message
[
0
..
(
size
-
1
)]
+
"..."
)
:
message
# if special characters occurs
rescue
commit
.
message
end
end
end
app/views/commits/_commits.html.haml
View file @
5baa5fad
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
=
image_tag
"no_avatar.png"
,
:class
=>
"left"
,
:width
=>
40
,
:style
=>
"padding-right:5px;"
=
image_tag
"no_avatar.png"
,
:class
=>
"left"
,
:width
=>
40
,
:style
=>
"padding-right:5px;"
%p
%p
%strong
%strong
=
truncate_commit_message
(
commit
)
=
commit
.
truncated_message
=
link_to
"Browse Code"
,
tree_project_path
(
@project
,
:commit_id
=>
commit
.
id
),
:class
=>
"lite_button"
,
:style
=>
"float:right"
=
link_to
"Browse Code"
,
tree_project_path
(
@project
,
:commit_id
=>
commit
.
id
),
:class
=>
"lite_button"
,
:style
=>
"float:right"
=
link_to
truncate
(
commit
.
id
.
to_s
,
:length
=>
16
),
project_commit_path
(
@project
,
:id
=>
commit
.
id
),
:class
=>
"lite_button"
,
:style
=>
"width:120px;float:right"
=
link_to
truncate
(
commit
.
id
.
to_s
,
:length
=>
16
),
project_commit_path
(
@project
,
:id
=>
commit
.
id
),
:class
=>
"lite_button"
,
:style
=>
"width:120px;float:right"
%span
%span
...
...
app/views/commits/show.html.haml
View file @
5baa5fad
%h3
%h3
=
"[
#{
@commit
.
committer
}
]
#{
truncate_commit_message
(
@commit
,
8
0
)
}
"
=
"[
#{
@commit
.
committer
}
]
#{
@commit
.
truncated_message
(
4
0
)
}
"
-#= link_to 'Back', project_commits_path(@project), :class => "button"
-#= link_to 'Back', project_commits_path(@project), :class => "button"
%table
.round-borders
%table
.round-borders
%tr
%tr
...
...
app/views/projects/_recent_commits.html.haml
View file @
5baa5fad
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
=
image_tag
"no_avatar.png"
,
:class
=>
"left"
,
:width
=>
40
,
:style
=>
"padding-right:5px;"
=
image_tag
"no_avatar.png"
,
:class
=>
"left"
,
:width
=>
40
,
:style
=>
"padding-right:5px;"
%p
{
:style
=>
"margin-bottom: 3px;"
}
%p
{
:style
=>
"margin-bottom: 3px;"
}
%strong
%strong
=
link_to
truncate_commit_message
(
commit
,
60
),
project_commit_path
(
@project
,
:id
=>
commit
.
id
)
=
link_to
commit
.
truncated_message
(
60
),
project_commit_path
(
@project
,
:id
=>
commit
.
id
)
%span
%span
%span
.author
%span
.author
...
...
app/views/projects/_recent_messages.html.haml
View file @
5baa5fad
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
-
css_class
=
"dash_commit"
-
css_class
=
"dash_commit"
-
commit
=
parent
-
commit
=
parent
-
item_code
=
commit
.
author
.
email
-
item_code
=
commit
.
author
.
email
-
link_item_name
=
truncate_commit_message
(
commit
,
50
)
-
link_item_name
=
commit
.
truncated_message
(
50
)
-
link_to_item
=
project_commit_path
(
@project
,
:id
=>
commit
.
id
)
-
link_to_item
=
project_commit_path
(
@project
,
:id
=>
commit
.
id
)
-
else
-
else
-
css_class
=
"dash_wall"
-
css_class
=
"dash_wall"
...
...
app/views/projects/_tree_item.html.haml
View file @
5baa5fad
...
@@ -12,4 +12,4 @@
...
@@ -12,4 +12,4 @@
=
time_ago_in_words
(
content_commit
.
committed_date
)
=
time_ago_in_words
(
content_commit
.
committed_date
)
ago
ago
%td
%td
=
link_to
truncate_commit_message
(
content_commit
,
40
),
project_commit_path
(
@project
,
content_commit
)
=
link_to
content_commit
.
truncated_message
(
40
),
project_commit_path
(
@project
,
content_commit
)
config/initializers/grit_ext.rb
View file @
5baa5fad
...
@@ -6,3 +6,7 @@ Grit::Blob.class_eval do
...
@@ -6,3 +6,7 @@ Grit::Blob.class_eval do
include
Utils
::
FileHelper
include
Utils
::
FileHelper
include
Utils
::
Colorize
include
Utils
::
Colorize
end
end
Grit
::
Commit
.
class_eval
do
include
CommitExt
end
lib/commit_ext.rb
0 → 100644
View file @
5baa5fad
module
CommitExt
# Cause of encoding rails truncate raise error
# this method is temporary decision
def
truncated_message
(
size
=
80
)
message
.
length
>
size
?
(
message
[
0
..
(
size
-
1
)]
+
"..."
)
:
message
rescue
"-- invalid encoding for commit message"
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