소스 검색

Robots meta tag to prevent web crawlers from indexing login, register, and lost password form (#33658).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@20532 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Go MAEDA 3 년 전
부모
커밋
42e3e642b8

+ 4
- 0
app/views/account/login.html.erb 파일 보기

@@ -33,3 +33,7 @@
<% else %>
<%= javascript_tag "$('#username').focus();" %>
<% end %>

<% content_for :header_tags do %>
<%= robot_exclusion_tag %>
<% end %>

+ 4
- 0
app/views/account/lost_password.html.erb 파일 보기

@@ -9,3 +9,7 @@
</p>
</div>
<% end %>

<% content_for :header_tags do %>
<%= robot_exclusion_tag %>
<% end %>

+ 4
- 0
app/views/account/password_recovery.html.erb 파일 보기

@@ -21,3 +21,7 @@
</div>
<p><%= submit_tag l(:button_save) %></p>
<% end %>

<% content_for :header_tags do %>
<%= robot_exclusion_tag %>
<% end %>

+ 4
- 0
app/views/account/register.html.erb 파일 보기

@@ -39,3 +39,7 @@

<%= submit_tag l(:button_submit) %>
<% end %>

<% content_for :header_tags do %>
<%= robot_exclusion_tag %>
<% end %>

+ 4
- 0
test/functional/account_controller_test.rb 파일 보기

@@ -32,6 +32,7 @@ class AccountControllerTest < Redmine::ControllerTest

assert_select 'input[name=username]'
assert_select 'input[name=password]'
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end

def test_get_login_while_logged_in_should_redirect_to_back_url_if_present
@@ -293,6 +294,7 @@ class AccountControllerTest < Redmine::ControllerTest

assert_select 'input[name=?]', 'user[password]'
assert_select 'input[name=?]', 'user[password_confirmation]'
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end
end

@@ -405,6 +407,7 @@ class AccountControllerTest < Redmine::ControllerTest
get :lost_password
assert_response :success
assert_select 'input[name=mail]'
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end

def test_lost_password_for_active_user_should_create_a_token
@@ -524,6 +527,7 @@ class AccountControllerTest < Redmine::ControllerTest
assert_response :success

assert_select 'input[type=hidden][name=token][value=?]', token.value
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
end

def test_get_lost_password_with_invalid_token_should_redirect

Loading…
취소
저장