summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* svn propset svn:executable bin/ filesToshi MARUYAMA2015-01-183-0/+0
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13900 e93f8b46-1217-0410-a6f0-8f06a7374b81
* prevent "config.log_level" DEPRECATION WARNINGToshi MARUYAMA2015-01-181-0/+2
| | | | | | | | | | | | DEPRECATION WARNING: You did not specify a `log_level` in `production.rb`. Currently, the default value for `log_level` is `:info` for the production environment and `:debug` in all other environments. In Rails 5 the default value will be unified to `:debug` across all environments. To preserve the current setting, add the following line to your `production.rb`: config.log_level = :info git-svn-id: http://svn.redmine.org/redmine/trunk@13899 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixture to Redmine::Hook::ManagerTestToshi MARUYAMA2015-01-181-0/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13898 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Prevents calling #truncate on nil.Jean-Philippe Lang2015-01-181-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13897 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Use attribute writers instead of before_create callback to normalize ↵Jean-Philippe Lang2015-01-181-3/+11
| | | | | | | | comments and committer (#14534). Unlike other adapters, SQLite raises Encoding::UndefinedConversionError before the callback that reencodes attributes is called. git-svn-id: http://svn.redmine.org/redmine/trunk@13896 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed that Redmine::Activity::Fetcher should consider activity provider ↵Jean-Philippe Lang2015-01-183-5/+86
| | | | | | permission option if given (#18832). git-svn-id: http://svn.redmine.org/redmine/trunk@13895 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fix migration and use Rails 4.2.0 release (#14534).Jean-Philippe Lang2015-01-182-2/+3
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13894 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Gemfile: use GitHub rails gemToshi MARUYAMA2015-01-181-1/+2
| | | | | | 20091114105931 AddViewIssuesPermission: db migrating fails on ruby 1.9.3p551 sqlite3 git-svn-id: http://svn.redmine.org/redmine/trunk@13893 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Upgrade to Rails 4.2.0 (#14534).Jean-Philippe Lang2015-01-1752-219/+231
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13892 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Missing fixtures.Jean-Philippe Lang2015-01-171-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13891 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Missing fixtures.Jean-Philippe Lang2015-01-171-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13890 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Missing fixtures.Jean-Philippe Lang2015-01-172-2/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13889 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Send password reset email to the email used in lost password form (#4244).Jean-Philippe Lang2015-01-173-4/+22
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13888 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds strings to locales (#4244).Jean-Philippe Lang2015-01-1746-0/+276
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13887 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Add support for multiple email addresses per user (#4244).Jean-Philippe Lang2015-01-1765-114/+762
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13886 e93f8b46-1217-0410-a6f0-8f06a7374b81
* IssuesControllerTest: make encoding tests independent of ordering (#18856)Toshi MARUYAMA2015-01-161-6/+10
| | | | | | Contributed by Antonio Terceiro. git-svn-id: http://svn.redmine.org/redmine/trunk@13885 e93f8b46-1217-0410-a6f0-8f06a7374b81
* fix UsersControllerTest failure randomlyToshi MARUYAMA2015-01-151-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <pre> 1) Error: UsersControllerTest#test_show: ActionView::Template::Error: undefined method `name' for nil:NilClass app/models/issue.rb:53:in `block in <class:Issue>' lib/plugins/acts_as_event/lib/acts_as_event.rb:62:in `call' lib/plugins/acts_as_event/lib/acts_as_event.rb:62:in `event_title' app/views/users/show.html.erb:57:in `block (2 levels) in _app_views_users_show_html_erb___2965700471773239267_46119700' app/views/users/show.html.erb:53:in `each' app/views/users/show.html.erb:53:in `block in _app_views_users_show_html_erb___2965700471773239267_46119700' app/views/users/show.html.erb:50:in `each' app/views/users/show.html.erb:50:in `_app_views_users_show_html_erb___2965700471773239267_46119700' app/controllers/users_controller.rb:75:in `block (2 levels) in show' app/controllers/users_controller.rb:71:in `show' test/functional/users_controller_test.rb:76:in `test_show' </pre> This can be reproduced with following change. <pre> fixtures :users, :projects, :members, :member_roles, :roles, :custom_fields, :custom_values, :groups_users, - :auth_sources + :auth_sources, + :enabled_modules, + :issues, :issue_statuses </pre> git-svn-id: http://svn.redmine.org/redmine/trunk@13883 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Japanese translation updated by Go MAEDA (#18844)Toshi MARUYAMA2015-01-151-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13882 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixture to SearchControllerTestToshi MARUYAMA2015-01-151-0/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13881 e93f8b46-1217-0410-a6f0-8f06a7374b81
* remove jruby-21mode from .travis.ymlToshi MARUYAMA2015-01-151-2/+0
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13880 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Japanese translation updated and changed by Go MAEDA (#18794)Toshi MARUYAMA2015-01-151-4/+4
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13879 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Traditional Chinese translation updated by ChunChang Lo (#18819)Toshi MARUYAMA2015-01-151-4/+4
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13878 e93f8b46-1217-0410-a6f0-8f06a7374b81
* generate i18n key (#10734)Toshi MARUYAMA2015-01-1546-0/+46
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13877 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Updates for 2.6.1 release.Jean-Philippe Lang2015-01-112-1/+35
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13874 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Copyright update.Jean-Philippe Lang2015-01-11515-539/+539
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13872 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Gemfile: update rbpdf version to 1.18.4 (#18629)Toshi MARUYAMA2015-01-111-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13870 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: Custom field is rendered, even if its value is empty (for multiple) ↵Jean-Philippe Lang2015-01-104-8/+27
| | | | | | (#18654). git-svn-id: http://svn.redmine.org/redmine/trunk@13864 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: Redmine::FieldFormat::IntFormat does not accept "real" Integer values ↵Jean-Philippe Lang2015-01-102-1/+3
| | | | | | (#18781). git-svn-id: http://svn.redmine.org/redmine/trunk@13863 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Unlock capybara gem version (#18789).Jean-Philippe Lang2015-01-101-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13862 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Time dependend failures in UI tests (#18789).Jean-Philippe Lang2015-01-101-0/+4
| | | | | | Patch by Ondřej Ezr. git-svn-id: http://svn.redmine.org/redmine/trunk@13861 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed errors in UI tests (#18782).Jean-Philippe Lang2015-01-101-3/+3
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13860 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed open div tag position.Jean-Philippe Lang2015-01-101-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13859 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Option to search open issues only (#10734).Jean-Philippe Lang2015-01-107-8/+22
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13858 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds strings to locales (#4383).Jean-Philippe Lang2015-01-0946-0/+138
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13857 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Option to search attachment filenames and description (#4383).Jean-Philippe Lang2015-01-098-37/+112
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13856 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Search custom fields and journals with different queries to take advantage ↵Jean-Philippe Lang2015-01-082-37/+71
| | | | | | of indexes on text columns if present. git-svn-id: http://svn.redmine.org/redmine/trunk@13855 e93f8b46-1217-0410-a6f0-8f06a7374b81
* replace tab to space at test/test_helper.rbToshi MARUYAMA2015-01-081-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13854 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Same fix as r13582 for trackers and statuses (#18769).Jean-Philippe Lang2015-01-074-4/+4
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13853 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Redirect to the current page when reordering roles (#18769).Jean-Philippe Lang2015-01-072-2/+2
| | | | | | Patch by Jérôme BATAILLE. git-svn-id: http://svn.redmine.org/redmine/trunk@13852 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Skip validation if attribute did not change.Jean-Philippe Lang2015-01-071-2/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13851 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Missing break (#18734).Jean-Philippe Lang2015-01-071-0/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13850 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Deprecates Project#set_allowed_parent!.Jean-Philippe Lang2015-01-071-1/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13849 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed that project copy triggers a 500 error if project validation fails.Jean-Philippe Lang2015-01-073-1/+14
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13848 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Cleans up parent project assignment in ProjectsController.Jean-Philippe Lang2015-01-073-63/+51
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13847 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Move always possible for new records.Jean-Philippe Lang2015-01-072-2/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13846 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Use r13844 workaround for SQLServer only.Jean-Philippe Lang2015-01-071-3/+8
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13845 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed dead locks with SQLServer.Jean-Philippe Lang2015-01-071-2/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13844 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Moved Project#hierarchy to NestedSet::Traversing.Jean-Philippe Lang2015-01-072-9/+8
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13843 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Insert children issues to respect same order as ids.Jean-Philippe Lang2015-01-072-3/+3
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13842 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Replaces awesome_nested_set gem with a simple and more robust implementation ↵Jean-Philippe Lang2015-01-0710-120/+642
| | | | | | | | of nested sets. The concurrency tests added in this commit trigger dead locks and/or nested set inconsistency with awesome_nested_set. git-svn-id: http://svn.redmine.org/redmine/trunk@13841 e93f8b46-1217-0410-a6f0-8f06a7374b81