mirror of
https://github.com/redmine/redmine.git
synced 2025-11-13 08:46:01 +01:00
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
This commit is contained in:
@@ -33,3 +33,7 @@
|
|||||||
<% else %>
|
<% else %>
|
||||||
<%= javascript_tag "$('#username').focus();" %>
|
<%= javascript_tag "$('#username').focus();" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= robot_exclusion_tag %>
|
||||||
|
<% end %>
|
||||||
|
|||||||
@@ -9,3 +9,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= robot_exclusion_tag %>
|
||||||
|
<% end %>
|
||||||
|
|||||||
@@ -21,3 +21,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<p><%= submit_tag l(:button_save) %></p>
|
<p><%= submit_tag l(:button_save) %></p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= robot_exclusion_tag %>
|
||||||
|
<% end %>
|
||||||
|
|||||||
@@ -39,3 +39,7 @@
|
|||||||
|
|
||||||
<%= submit_tag l(:button_submit) %>
|
<%= submit_tag l(:button_submit) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= robot_exclusion_tag %>
|
||||||
|
<% end %>
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ class AccountControllerTest < Redmine::ControllerTest
|
|||||||
|
|
||||||
assert_select 'input[name=username]'
|
assert_select 'input[name=username]'
|
||||||
assert_select 'input[name=password]'
|
assert_select 'input[name=password]'
|
||||||
|
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_get_login_while_logged_in_should_redirect_to_back_url_if_present
|
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]'
|
||||||
assert_select 'input[name=?]', 'user[password_confirmation]'
|
assert_select 'input[name=?]', 'user[password_confirmation]'
|
||||||
|
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -405,6 +407,7 @@ class AccountControllerTest < Redmine::ControllerTest
|
|||||||
get :lost_password
|
get :lost_password
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_select 'input[name=mail]'
|
assert_select 'input[name=mail]'
|
||||||
|
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_lost_password_for_active_user_should_create_a_token
|
def test_lost_password_for_active_user_should_create_a_token
|
||||||
@@ -524,6 +527,7 @@ class AccountControllerTest < Redmine::ControllerTest
|
|||||||
assert_response :success
|
assert_response :success
|
||||||
|
|
||||||
assert_select 'input[type=hidden][name=token][value=?]', token.value
|
assert_select 'input[type=hidden][name=token][value=?]', token.value
|
||||||
|
assert_select 'head>meta[name="robots"][content=?]', 'noindex,follow,noarchive'
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_get_lost_password_with_invalid_token_should_redirect
|
def test_get_lost_password_with_invalid_token_should_redirect
|
||||||
|
|||||||
Reference in New Issue
Block a user