2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-03-10 11:35:46 +00:00
|
|
|
module ProjectsHelper
|
2011-11-22 18:58:23 +00:00
|
|
|
def git_repo_url(name)
|
|
|
|
if current_user
|
2012-02-15 16:30:56 +00:00
|
|
|
"https://#{current_user.uname}@#{request.host_with_port}/#{name}.git"
|
2011-11-10 09:04:24 +00:00
|
|
|
else
|
2012-02-15 16:30:56 +00:00
|
|
|
"https://#{request.host_with_port}/#{name}.git"
|
2011-11-10 09:04:24 +00:00
|
|
|
end
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
2012-02-29 14:45:04 +00:00
|
|
|
|
|
|
|
def options_for_collaborators_roles_select
|
|
|
|
options_for_select(
|
|
|
|
Relation::ROLES.collect { |role|
|
|
|
|
[t("layout.collaborators.role_names.#{ role }"), role]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
2012-03-07 21:34:49 +00:00
|
|
|
|
|
|
|
def visibility_icon(visibility)
|
|
|
|
visibility == 'open' ? 'unlock.png' : 'lock.png'
|
|
|
|
end
|
2011-03-10 11:35:46 +00:00
|
|
|
end
|