##// END OF EJS Templates
Upgraded to Rails 2.3.4 (#3597)...
Upgraded to Rails 2.3.4 (#3597) * Ran the Rails upgrade * Upgraded to Rails Engines 2.3.2 * Added a plugin to let Engines override application views. * Converted tests to use the new classes: ** ActionController::TestCase for functional ** ActiveSupport::TestCase for units * Converted ActiveRecord::Error message to a string. * ActiveRecord grouping returns an ordered hash which doesn't have #sort! * Updated the I18n storage_units format. * Added some default initializers from a fresh rails app * Changed the order of check_box_tags and hidden_field_tags. The hidden tag needs to appear first in Rails 2.3, otherwise it will override any value in the check_box_tag. * Removed the custom handler for when the cookie store is tampered with. Rails 2.3 removed the TamperedWithCookie exception and instead Rails will not load the data from it when it's been tampered with (e.g. no user login). * Fixed mail layouts, 2.3 has problems with implicit multipart emails that use layouts. Also removed some custom Redmine mailer code. * Fixed a bug that occurred in tests where the "required" span tag would be added to the :field_status translation. This resulted in an email string of: <li>Status<span class="required"> *</span><span class="required"> *</span> Instead of: <li>Status: New</li> git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2887 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2103:e93d02d228ea
r2773:7b0cb6aba871
Show More
UPGRADING
28 lines | 786 B | text/plain | TextLexer
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 == Redmine upgrade procedure
Redmine - project management software
Jean-Philippe Lang
Doc update before 0.7-rc1 release....
r1269 Copyright (C) 2006-2008 Jean-Philippe Lang
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 http://www.redmine.org/
Jean-Philippe Lang
Doc update before 0.7-rc1 release....
r1269 == Upgrading
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
1. Uncompress the program archive in a new directory
3. Copy your database settings (RAILS_ROOT/config/database.yml)
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 and SMTP settings (RAILS_ROOT/config/email.yml)
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 into the new config directory
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 4. Migrate your database (please make a backup before doing this):
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 rake db:migrate RAILS_ENV="production"
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 5. Copy the RAILS_ROOT/files directory content into your new installation
Jean-Philippe Lang
Doc update before 0.7-rc1 release....
r1269 This directory contains all the attached files
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Doc update before 0.7-rc1 release....
r1269 == Notes
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
UPGRADING updated...
r2103 1. Rails 2.1.2 is required for version 0.8.
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Doc update before 0.7-rc1 release....
r1269 2. When upgrading your code with svn update, don't forget to clear
the application cache (RAILS_ROOT/tmp/cache) before restarting.