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
1ef1a4ae
Commit
1ef1a4ae
authored
Aug 22, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1239 from tsigo/disable_gravatar
Allow disabling Gravatars in gitlab.yml settings
parents
aa50408e
65bcc41f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
11 deletions
+43
-11
app/helpers/application_helper.rb
app/helpers/application_helper.rb
+7
-4
config/gitlab.yml.example
config/gitlab.yml.example
+6
-7
config/initializers/1_settings.rb
config/initializers/1_settings.rb
+4
-0
spec/helpers/application_helper_spec.rb
spec/helpers/application_helper_spec.rb
+26
-0
No files found.
app/helpers/application_helper.rb
View file @
1ef1a4ae
...
@@ -2,10 +2,13 @@ require 'digest/md5'
...
@@ -2,10 +2,13 @@ require 'digest/md5'
module
ApplicationHelper
module
ApplicationHelper
def
gravatar_icon
(
user_email
=
''
,
size
=
40
)
def
gravatar_icon
(
user_email
=
''
,
size
=
40
)
return
unless
user_email
if
Gitlab
.
config
.
disable_gravatar?
||
user_email
.
blank?
gravatar_host
=
request
.
ssl?
?
"https://secure.gravatar.com"
:
"http://www.gravatar.com"
'no_avatar.png'
user_email
.
strip!
else
"
#{
gravatar_host
}
/avatar/
#{
Digest
::
MD5
.
hexdigest
(
user_email
.
downcase
)
}
?s=
#{
size
}
&d=identicon"
gravatar_prefix
=
request
.
ssl?
?
"https://secure"
:
"http://www"
user_email
.
strip!
"
#{
gravatar_prefix
}
.gravatar.com/avatar/
#{
Digest
::
MD5
.
hexdigest
(
user_email
.
downcase
)
}
?s=
#{
size
}
&d=identicon"
end
end
end
def
request_protocol
def
request_protocol
...
...
config/gitlab.yml.example
View file @
1ef1a4ae
# # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # #
# Gitlab application config file #
# Gitlab application config file #
# # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # #
...
@@ -19,14 +19,14 @@ email:
...
@@ -19,14 +19,14 @@ email:
# Application specific settings
# Application specific settings
# Like default project limit for user etc
# Like default project limit for user etc
app:
app:
default_projects_limit: 10
default_projects_limit: 10
# backup_path: "/vol/backups" # default: Rails.root + backups/
# backup_path: "/vol/backups" # default: Rails.root + backups/
# backup_keep_time: 604800 # default: 0 (forever) (in seconds)
# backup_keep_time: 604800 # default: 0 (forever) (in seconds)
# disable_gravatar: true # default: false - Disable user avatars from Gravatar.com
#
#
# 2. Advanced settings:
# 2. Advanced settings:
# ==========================
# ==========================
# Git Hosting configuration
# Git Hosting configuration
...
@@ -39,7 +39,6 @@ git_host:
...
@@ -39,7 +39,6 @@ git_host:
receive_pack: true
receive_pack: true
# port: 22
# port: 22
# Git settings
# Git settings
# Use default values unless you understand it
# Use default values unless you understand it
git:
git:
...
...
config/initializers/1_settings.rb
View file @
1ef1a4ae
...
@@ -111,5 +111,9 @@ class Settings < Settingslogic
...
@@ -111,5 +111,9 @@ class Settings < Settingslogic
def
backup_keep_time
def
backup_keep_time
app
[
'backup_keep_time'
]
||
0
app
[
'backup_keep_time'
]
||
0
end
end
def
disable_gravatar?
app
[
'disable_gravatar'
]
||
false
end
end
end
end
end
spec/helpers/application_helper_spec.rb
0 → 100644
View file @
1ef1a4ae
require
'spec_helper'
describe
ApplicationHelper
do
describe
"gravatar_icon"
do
let
(
:user_email
)
{
'user@email.com'
}
it
"should return a generic avatar path when Gravatar is disabled"
do
Gitlab
.
config
.
stub
(
:disable_gravatar?
).
and_return
(
true
)
gravatar_icon
(
user_email
).
should
==
'no_avatar.png'
end
it
"should return a generic avatar path when email is blank"
do
gravatar_icon
(
''
).
should
==
'no_avatar.png'
end
it
"should use SSL when appropriate"
do
stub!
(
:request
).
and_return
(
double
(
:ssl?
=>
true
))
gravatar_icon
(
user_email
).
should
match
(
'https://secure.gravatar.com'
)
end
it
"should accept a custom size"
do
stub!
(
:request
).
and_return
(
double
(
:ssl?
=>
false
))
gravatar_icon
(
user_email
,
64
).
should
match
(
/\?s=64/
)
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