Browse Source

Upgrade to Rails 3.2.8 (#11758).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10275 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.1.0
Jean-Philippe Lang 11 years ago
parent
commit
265baa1b2c

+ 1
- 1
Gemfile View File

@@ -1,6 +1,6 @@
source 'http://rubygems.org'

gem 'rails', '3.2.6'
gem 'rails', '3.2.8'
gem "jquery-rails", "~> 2.0.2"
gem "i18n", "~> 0.6.0"
gem "coderay", "~> 1.0.6"

+ 1
- 1
app/helpers/application_helper.rb View File

@@ -1206,7 +1206,7 @@ module ApplicationHelper

# Returns the javascript tags that are included in the html layout head
def javascript_heads
tags = javascript_include_tag('jquery-1.7.2-ui-1.8.21-ujs-2.0.2', 'application')
tags = javascript_include_tag('jquery-1.7.2-ui-1.8.21-ujs-2.0.3', 'application')
unless User.current.pref.warn_on_leaving_unsaved == '0'
tags << "\n".html_safe + javascript_tag("$(window).load(function(){ warnLeavingUnsaved('#{escape_javascript l(:text_warn_on_leaving_unsaved)}'); });")
end

+ 1
- 1
app/views/groups/edit_membership.js.erb View File

@@ -2,5 +2,5 @@
$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'groups/memberships') %>');
$('#member-<%= @membership.id %>').effect("highlight");
<% else %>
alert('<%= escape_javascript(l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', '))) %>');
alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', ')))) %>');
<% end %>

+ 1
- 1
app/views/members/create.js.erb View File

@@ -7,5 +7,5 @@ hideOnLoad();
<% end %>
<% else %>
<% errors = @members.collect {|m| m.errors.full_messages}.flatten.uniq.join(', ') %>
alert('<%= escape_javascript l(:notice_failed_to_save_members, :errors => errors) %>');
alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => errors))) %>');
<% end %>

+ 1
- 1
app/views/repositories/add_related_issue.js.erb View File

@@ -3,5 +3,5 @@
$('#related-issue-<%= @issue.id %>').effect("highlight");
$('#issue_id').focus();
<% else %>
alert("<%= escape_javascript(l(:label_issue) + ' ' + l('activerecord.errors.messages.invalid')) %>");
alert("<%= raw(escape_javascript(l(:label_issue) + ' ' + l('activerecord.errors.messages.invalid'))) %>");
<% end %>

+ 1
- 1
app/views/users/edit_membership.js.erb View File

@@ -2,5 +2,5 @@
$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'users/memberships') %>');
$("#member-<%= @membership.id %>").effect("highlight");
<% else %>
alert('<%= escape_javascript l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', ')) %>');
alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', ')))) %>');
<% end %>

public/javascripts/jquery-1.7.2-ui-1.8.21-ujs-2.0.3.js
File diff suppressed because it is too large
View File


+ 3
- 3
test/functional/activities_controller_test.rb View File

@@ -48,7 +48,7 @@ class ActivitiesControllerTest < ActionController::TestCase
:child => { :tag => "dt",
:attributes => { :class => /issue/ },
:child => { :tag => "a",
:content => /#{Issue.find(1).subject}/,
:content => /Can&#x27;t print recipes/,
}
}
}
@@ -69,7 +69,7 @@ class ActivitiesControllerTest < ActionController::TestCase
:child => { :tag => "dt",
:attributes => { :class => /issue/ },
:child => { :tag => "a",
:content => /#{Issue.find(5).subject}/,
:content => /Subproject issue/,
}
}
}
@@ -93,7 +93,7 @@ class ActivitiesControllerTest < ActionController::TestCase
:child => { :tag => "dt",
:attributes => { :class => /issue/ },
:child => { :tag => "a",
:content => /#{Issue.find(1).subject}/,
:content => /Can&#x27;t print recipes/,
}
}
}

+ 2
- 2
test/functional/auth_sources_controller_test.rb View File

@@ -65,7 +65,7 @@ class AuthSourcesControllerTest < ActionController::TestCase
assert_response :success
assert_template 'new'
end
assert_error_tag :content => /host can't be blank/i
assert_error_tag :content => /host can&#x27;t be blank/i
end

def test_edit
@@ -90,7 +90,7 @@ class AuthSourcesControllerTest < ActionController::TestCase
put :update, :id => 1, :auth_source => {:name => 'Renamed', :host => '', :port => '389', :attr_login => 'uid'}
assert_response :success
assert_template 'edit'
assert_error_tag :content => /host can't be blank/i
assert_error_tag :content => /host can&#x27;t be blank/i
end

def test_destroy

+ 2
- 2
test/functional/issue_statuses_controller_test.rb View File

@@ -53,7 +53,7 @@ class IssueStatusesControllerTest < ActionController::TestCase
post :create, :issue_status => {:name => ''}
assert_response :success
assert_template 'new'
assert_error_tag :content => /name can't be blank/i
assert_error_tag :content => /name can&#x27;t be blank/i
end

def test_edit
@@ -73,7 +73,7 @@ class IssueStatusesControllerTest < ActionController::TestCase
put :update, :id => '3', :issue_status => {:name => ''}
assert_response :success
assert_template 'edit'
assert_error_tag :content => /name can't be blank/i
assert_error_tag :content => /name can&#x27;t be blank/i
end

def test_destroy

+ 12
- 12
test/functional/issues_controller_test.rb View File

@@ -61,7 +61,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_template 'index'
assert_not_nil assigns(:issues)
assert_nil assigns(:project)
assert_tag :tag => 'a', :content => /Can't print recipes/
assert_tag :tag => 'a', :content => /Can&#x27;t print recipes/
assert_tag :tag => 'a', :content => /Subproject issue/
# private projects hidden
assert_no_tag :tag => 'a', :content => /Issue of a private subproject/
@@ -78,7 +78,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_template 'index'
assert_not_nil assigns(:issues)
assert_nil assigns(:project)
assert_no_tag :tag => 'a', :content => /Can't print recipes/
assert_no_tag :tag => 'a', :content => /Can&#x27;t print recipes/
assert_tag :tag => 'a', :content => /Subproject issue/
end

@@ -95,7 +95,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_response :success
assert_template 'index'
assert_not_nil assigns(:issues)
assert_tag :tag => 'a', :content => /Can't print recipes/
assert_tag :tag => 'a', :content => /Can&#x27;t print recipes/
assert_no_tag :tag => 'a', :content => /Subproject issue/
end

@@ -105,7 +105,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_response :success
assert_template 'index'
assert_not_nil assigns(:issues)
assert_tag :tag => 'a', :content => /Can't print recipes/
assert_tag :tag => 'a', :content => /Can&#x27;t print recipes/
assert_tag :tag => 'a', :content => /Subproject issue/
assert_no_tag :tag => 'a', :content => /Issue of a private subproject/
end
@@ -117,7 +117,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_response :success
assert_template 'index'
assert_not_nil assigns(:issues)
assert_tag :tag => 'a', :content => /Can't print recipes/
assert_tag :tag => 'a', :content => /Can&#x27;t print recipes/
assert_tag :tag => 'a', :content => /Subproject issue/
assert_tag :tag => 'a', :content => /Issue of a private subproject/
end
@@ -823,7 +823,7 @@ class IssuesControllerTest < ActionController::TestCase
:child => { :tag => 'legend',
:content => /Notes/ } }
assert_tag :tag => 'title',
:content => "Bug #1: Can't print recipes - eCookbook - Redmine"
:content => "Bug #1: Can&#x27;t print recipes - eCookbook - Redmine"
end

def test_show_by_manager
@@ -1807,7 +1807,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_template 'new'
issue = assigns(:issue)
assert_not_nil issue
assert_error_tag :content => /Database can't be blank/
assert_error_tag :content => /Database can&#x27;t be blank/
end

def test_create_should_validate_required_fields
@@ -1831,8 +1831,8 @@ class IssuesControllerTest < ActionController::TestCase
assert_template 'new'
end

assert_error_tag :content => /Due date can't be blank/i
assert_error_tag :content => /Bar can't be blank/i
assert_error_tag :content => /Due date can&#x27;t be blank/i
assert_error_tag :content => /Bar can&#x27;t be blank/i
end

def test_create_should_ignore_readonly_fields
@@ -2869,7 +2869,7 @@ class IssuesControllerTest < ActionController::TestCase
assert_response :success
assert_template 'edit'

assert_error_tag :descendant => {:content => /Activity can't be blank/}
assert_error_tag :descendant => {:content => /Activity can&#x27;t be blank/}
assert_tag :textarea, :attributes => { :name => 'notes' }, :content => "\n"+notes
assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => "2z" }
end
@@ -2887,8 +2887,8 @@ class IssuesControllerTest < ActionController::TestCase
assert_response :success
assert_template 'edit'

assert_error_tag :descendant => {:content => /Activity can't be blank/}
assert_error_tag :descendant => {:content => /Hours can't be blank/}
assert_error_tag :descendant => {:content => /Activity can&#x27;t be blank/}
assert_error_tag :descendant => {:content => /Hours can&#x27;t be blank/}
assert_tag :textarea, :attributes => { :name => 'notes' }, :content => "\n"+notes
assert_tag :input, :attributes => { :name => 'time_entry[comments]', :value => "this is my comment" }
end

+ 1
- 1
test/functional/my_controller_test.rb View File

@@ -149,7 +149,7 @@ class MyControllerTest < ActionController::TestCase
:new_password_confirmation => 'hello2'
assert_response :success
assert_template 'password'
assert_error_tag :content => /Password doesn't match confirmation/
assert_error_tag :content => /Password doesn&#x27;t match confirmation/

# wrong password
post :password, :password => 'wrongpassword',

+ 2
- 2
test/functional/news_controller_test.rb View File

@@ -123,7 +123,7 @@ class NewsControllerTest < ActionController::TestCase
assert_template 'new'
assert_not_nil assigns(:news)
assert assigns(:news).new_record?
assert_error_tag :content => /title can't be blank/i
assert_error_tag :content => /title can&#x27;t be blank/i
end

def test_get_edit
@@ -160,7 +160,7 @@ class NewsControllerTest < ActionController::TestCase
put :update, :id => 1, :news => { :description => '' }
assert_response :success
assert_template 'edit'
assert_error_tag :content => /description can't be blank/i
assert_error_tag :content => /description can&#x27;t be blank/i
end

def test_destroy

+ 1
- 1
test/functional/projects_controller_test.rb View File

@@ -409,7 +409,7 @@ class ProjectsControllerTest < ActionController::TestCase
post :update, :id => 1, :project => {:name => ''}
assert_response :success
assert_template 'settings'
assert_error_tag :content => /name can't be blank/i
assert_error_tag :content => /name can&#x27;t be blank/i
end

def test_update_should_be_denied_for_member_on_closed_project

+ 2
- 2
test/functional/trackers_controller_test.rb View File

@@ -95,7 +95,7 @@ class TrackersControllerTest < ActionController::TestCase
end
assert_response :success
assert_template 'new'
assert_error_tag :content => /name can't be blank/i
assert_error_tag :content => /name can&#x27;t be blank/i
end

def test_edit
@@ -160,7 +160,7 @@ class TrackersControllerTest < ActionController::TestCase
put :update, :id => 1, :tracker => { :name => '' }
assert_response :success
assert_template 'edit'
assert_error_tag :content => /name can't be blank/i
assert_error_tag :content => /name can&#x27;t be blank/i
end

def test_move_lower

+ 1
- 1
test/functional/wikis_controller_test.rb View File

@@ -58,7 +58,7 @@ class WikisControllerTest < ActionController::TestCase
end

assert_include 'errorExplanation', response.body
assert_include 'Start page can\\\'t be blank', response.body
assert_include 'Start page can&#x27;t be blank', response.body
end

def test_update

+ 1
- 1
test/unit/helpers/application_helper_test.rb View File

@@ -690,7 +690,7 @@ RAW

expected = <<-EXPECTED
<p><a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a></p>
<p><a href="/issues/1" class="issue status-1 priority-4" title="Can't print recipes (New)">#1</a></p>
<p><a href="/issues/1" class="issue status-1 priority-4" title="Can&#x27;t print recipes (New)">#1</a></p>
<pre>
[[CookBook documentation]]


+ 3
- 3
test/unit/mailer_test.rb View File

@@ -55,7 +55,7 @@ class MailerTest < ActiveSupport::TestCase
# link to a referenced ticket
assert_select 'a[href=?][title=?]',
'https://mydomain.foo/issues/1',
'Can\'t print recipes (New)',
'Can&#x27;t print recipes (New)',
:text => '#1'
# link to a changeset
assert_select 'a[href=?][title=?]',
@@ -94,7 +94,7 @@ class MailerTest < ActiveSupport::TestCase
# link to a referenced ticket
assert_select 'a[href=?][title=?]',
'http://mydomain.foo/rdm/issues/1',
'Can\'t print recipes (New)',
'Can&#x27;t print recipes (New)',
:text => '#1'
# link to a changeset
assert_select 'a[href=?][title=?]',
@@ -134,7 +134,7 @@ class MailerTest < ActiveSupport::TestCase
# link to a referenced ticket
assert_select 'a[href=?][title=?]',
'http://mydomain.foo/rdm/issues/1',
'Can\'t print recipes (New)',
'Can&#x27;t print recipes (New)',
:text => '#1'
# link to a changeset
assert_select 'a[href=?][title=?]',

Loading…
Cancel
Save