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

source 'http://rubygems.org' source 'http://rubygems.org'


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

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



# Returns the javascript tags that are included in the html layout head # Returns the javascript tags that are included in the html layout head
def javascript_heads 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' 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)}'); });") tags << "\n".html_safe + javascript_tag("$(window).load(function(){ warnLeavingUnsaved('#{escape_javascript l(:text_warn_on_leaving_unsaved)}'); });")
end end

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

$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'groups/memberships') %>'); $('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'groups/memberships') %>');
$('#member-<%= @membership.id %>').effect("highlight"); $('#member-<%= @membership.id %>').effect("highlight");
<% else %> <% 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 %> <% end %>

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

<% end %> <% end %>
<% else %> <% else %>
<% errors = @members.collect {|m| m.errors.full_messages}.flatten.uniq.join(', ') %> <% 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 %> <% end %>

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

$('#related-issue-<%= @issue.id %>').effect("highlight"); $('#related-issue-<%= @issue.id %>').effect("highlight");
$('#issue_id').focus(); $('#issue_id').focus();
<% else %> <% 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 %> <% end %>

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

$('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'users/memberships') %>'); $('#tab-content-memberships').html('<%= escape_javascript(render :partial => 'users/memberships') %>');
$("#member-<%= @membership.id %>").effect("highlight"); $("#member-<%= @membership.id %>").effect("highlight");
<% else %> <% 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 %> <% 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

:child => { :tag => "dt", :child => { :tag => "dt",
:attributes => { :class => /issue/ }, :attributes => { :class => /issue/ },
:child => { :tag => "a", :child => { :tag => "a",
:content => /#{Issue.find(1).subject}/,
:content => /Can&#x27;t print recipes/,
} }
} }
} }
:child => { :tag => "dt", :child => { :tag => "dt",
:attributes => { :class => /issue/ }, :attributes => { :class => /issue/ },
:child => { :tag => "a", :child => { :tag => "a",
:content => /#{Issue.find(5).subject}/,
:content => /Subproject issue/,
} }
} }
} }
:child => { :tag => "dt", :child => { :tag => "dt",
:attributes => { :class => /issue/ }, :attributes => { :class => /issue/ },
:child => { :tag => "a", :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

assert_response :success assert_response :success
assert_template 'new' assert_template 'new'
end end
assert_error_tag :content => /host can't be blank/i
assert_error_tag :content => /host can&#x27;t be blank/i
end end


def test_edit def test_edit
put :update, :id => 1, :auth_source => {:name => 'Renamed', :host => '', :port => '389', :attr_login => 'uid'} put :update, :id => 1, :auth_source => {:name => 'Renamed', :host => '', :port => '389', :attr_login => 'uid'}
assert_response :success assert_response :success
assert_template 'edit' 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 end


def test_destroy def test_destroy

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

post :create, :issue_status => {:name => ''} post :create, :issue_status => {:name => ''}
assert_response :success assert_response :success
assert_template 'new' 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 end


def test_edit def test_edit
put :update, :id => '3', :issue_status => {:name => ''} put :update, :id => '3', :issue_status => {:name => ''}
assert_response :success assert_response :success
assert_template 'edit' 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 end


def test_destroy def test_destroy

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

assert_template 'index' assert_template 'index'
assert_not_nil assigns(:issues) assert_not_nil assigns(:issues)
assert_nil assigns(:project) 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/ assert_tag :tag => 'a', :content => /Subproject issue/
# private projects hidden # private projects hidden
assert_no_tag :tag => 'a', :content => /Issue of a private subproject/ assert_no_tag :tag => 'a', :content => /Issue of a private subproject/
assert_template 'index' assert_template 'index'
assert_not_nil assigns(:issues) assert_not_nil assigns(:issues)
assert_nil assigns(:project) 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/ assert_tag :tag => 'a', :content => /Subproject issue/
end end


assert_response :success assert_response :success
assert_template 'index' assert_template 'index'
assert_not_nil assigns(:issues) 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/ assert_no_tag :tag => 'a', :content => /Subproject issue/
end end


assert_response :success assert_response :success
assert_template 'index' assert_template 'index'
assert_not_nil assigns(:issues) 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 => /Subproject issue/
assert_no_tag :tag => 'a', :content => /Issue of a private subproject/ assert_no_tag :tag => 'a', :content => /Issue of a private subproject/
end end
assert_response :success assert_response :success
assert_template 'index' assert_template 'index'
assert_not_nil assigns(:issues) 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 => /Subproject issue/
assert_tag :tag => 'a', :content => /Issue of a private subproject/ assert_tag :tag => 'a', :content => /Issue of a private subproject/
end end
:child => { :tag => 'legend', :child => { :tag => 'legend',
:content => /Notes/ } } :content => /Notes/ } }
assert_tag :tag => 'title', assert_tag :tag => 'title',
:content => "Bug #1: Can't print recipes - eCookbook - Redmine"
:content => "Bug #1: Can&#x27;t print recipes - eCookbook - Redmine"
end end


def test_show_by_manager def test_show_by_manager
assert_template 'new' assert_template 'new'
issue = assigns(:issue) issue = assigns(:issue)
assert_not_nil 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 end


def test_create_should_validate_required_fields def test_create_should_validate_required_fields
assert_template 'new' assert_template 'new'
end 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 end


def test_create_should_ignore_readonly_fields def test_create_should_ignore_readonly_fields
assert_response :success assert_response :success
assert_template 'edit' 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 :textarea, :attributes => { :name => 'notes' }, :content => "\n"+notes
assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => "2z" } assert_tag :input, :attributes => { :name => 'time_entry[hours]', :value => "2z" }
end end
assert_response :success assert_response :success
assert_template 'edit' 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 :textarea, :attributes => { :name => 'notes' }, :content => "\n"+notes
assert_tag :input, :attributes => { :name => 'time_entry[comments]', :value => "this is my comment" } assert_tag :input, :attributes => { :name => 'time_entry[comments]', :value => "this is my comment" }
end end

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

:new_password_confirmation => 'hello2' :new_password_confirmation => 'hello2'
assert_response :success assert_response :success
assert_template 'password' assert_template 'password'
assert_error_tag :content => /Password doesn't match confirmation/
assert_error_tag :content => /Password doesn&#x27;t match confirmation/


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

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

assert_template 'new' assert_template 'new'
assert_not_nil assigns(:news) assert_not_nil assigns(:news)
assert assigns(:news).new_record? 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 end


def test_get_edit def test_get_edit
put :update, :id => 1, :news => { :description => '' } put :update, :id => 1, :news => { :description => '' }
assert_response :success assert_response :success
assert_template 'edit' 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 end


def test_destroy def test_destroy

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

post :update, :id => 1, :project => {:name => ''} post :update, :id => 1, :project => {:name => ''}
assert_response :success assert_response :success
assert_template 'settings' 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 end


def test_update_should_be_denied_for_member_on_closed_project def test_update_should_be_denied_for_member_on_closed_project

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

end end
assert_response :success assert_response :success
assert_template 'new' 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 end


def test_edit def test_edit
put :update, :id => 1, :tracker => { :name => '' } put :update, :id => 1, :tracker => { :name => '' }
assert_response :success assert_response :success
assert_template 'edit' 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 end


def test_move_lower def test_move_lower

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

end end


assert_include 'errorExplanation', response.body 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 end


def test_update def test_update

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



expected = <<-EXPECTED expected = <<-EXPECTED
<p><a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a></p> <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> <pre>
[[CookBook documentation]] [[CookBook documentation]]



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

# link to a referenced ticket # link to a referenced ticket
assert_select 'a[href=?][title=?]', assert_select 'a[href=?][title=?]',
'https://mydomain.foo/issues/1', 'https://mydomain.foo/issues/1',
'Can\'t print recipes (New)',
'Can&#x27;t print recipes (New)',
:text => '#1' :text => '#1'
# link to a changeset # link to a changeset
assert_select 'a[href=?][title=?]', assert_select 'a[href=?][title=?]',
# link to a referenced ticket # link to a referenced ticket
assert_select 'a[href=?][title=?]', assert_select 'a[href=?][title=?]',
'http://mydomain.foo/rdm/issues/1', 'http://mydomain.foo/rdm/issues/1',
'Can\'t print recipes (New)',
'Can&#x27;t print recipes (New)',
:text => '#1' :text => '#1'
# link to a changeset # link to a changeset
assert_select 'a[href=?][title=?]', assert_select 'a[href=?][title=?]',
# link to a referenced ticket # link to a referenced ticket
assert_select 'a[href=?][title=?]', assert_select 'a[href=?][title=?]',
'http://mydomain.foo/rdm/issues/1', 'http://mydomain.foo/rdm/issues/1',
'Can\'t print recipes (New)',
'Can&#x27;t print recipes (New)',
:text => '#1' :text => '#1'
# link to a changeset # link to a changeset
assert_select 'a[href=?][title=?]', assert_select 'a[href=?][title=?]',

Loading…
Cancel
Save