Fix form label for ssl requests

This commit is contained in:
Dmitriy Zaporozhets 2012-03-22 20:02:38 +02:00
parent 52d8ed9e4f
commit e241d1e670
3 changed files with 10 additions and 2 deletions

View file

@ -11,6 +11,14 @@ module ApplicationHelper
true
end
def request_protocol
request.ssl? ? "https" : "http"
end
def web_app_url
"#{request_protocol}://#{GIT_HOST["host"]}/"
end
def body_class(default_class = nil)
main = content_for(:body_class).blank? ?
default_class :

View file

@ -20,7 +20,7 @@
Code
.input
.input-prepend
%span.add-on= "http://#{GIT_HOST["host"]}/"
%span.add-on= web_app_url
= f.text_field :code, :placeholder => "example"
- unless @admin_project.new_record?

View file

@ -19,7 +19,7 @@
Code
.input
.input-prepend
%span.add-on= "http://#{GIT_HOST["host"]}/"
%span.add-on= web_app_url
= f.text_field :code, :placeholder => "example"
- unless @project.new_record? || @project.heads.empty?