Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Staff
Public Gitlab
Commits
08426d33
Commit
08426d33
authored
12 years ago
by
Dmitriy Zaporozhets
Browse files
Options
Download
Plain Diff
Merge pull request #2538 from jouve/app_helper
clean application_helper a bit
parents
369dbaf3
8a3bbbdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
app/helpers/application_helper.rb
app/helpers/application_helper.rb
+1
-9
No files found.
app/helpers/application_helper.rb
View file @
08426d33
...
...
@@ -39,18 +39,10 @@ module ApplicationHelper
else
gravatar_url
=
request
.
ssl?
?
Gitlab
.
config
.
gravatar
.
ssl_url
:
Gitlab
.
config
.
gravatar
.
plain_url
user_email
.
strip!
sprintf
(
gravatar_url
,
{
:
hash
=>
Digest
::
MD5
.
hexdigest
(
user_email
.
downcase
),
:email
=>
URI
.
escape
(
user_email
),
:
size
=>
size
})
sprintf
gravatar_url
,
hash
:
Digest
::
MD5
.
hexdigest
(
user_email
.
downcase
),
size
:
size
end
end
def
request_protocol
request
.
ssl?
?
"https"
:
"http"
end
def
web_app_url
"
#{
request_protocol
}
://
#{
Gitlab
.
config
.
gitlab
.
host
}
/"
end
def
last_commit
(
project
)
if
project
.
repo_exists?
time_ago_in_words
(
project
.
repository
.
commit
.
committed_date
)
+
" ago"
...
...
This diff is collapsed.
Click to expand it.
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