summaryrefslogtreecommitdiffstats
path: root/vendor
Commit message (Collapse)AuthorAgeFilesLines
* Fixes a wrong number of arguments error with ruby1.9.Jean-Philippe Lang2009-10-101-1/+1
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2911 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Upgrade the Engines plugin to get the bugfix for Rails::Plugin::GemLocatorEric Davis2009-10-072-2/+2
| | | | | | | | | | | | | | | This update will allow Rails Engines to be installed as gems. For example: # config/environment.rb Rails::Initializer.run do |config| ... config.gem 'timesheet_plugin' end Will load the timesheet_plugins's RubyGem and allow it to work as if it was installed to vendor/plugins. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2904 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Upgraded to Rails 2.3.4 (#3597)Eric Davis2009-09-13107-243/+993
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Upgraded the gravatar plugin from http://github.com/woods/gravatar-pluginEric Davis2009-08-025-10/+31
| | | | | | | This will update the gravatar.com url (#2921) and provide support for SSL gravatars (#2718). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2832 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Ask user what to do with child pages when deleting a parent wiki page (#3202).Jean-Philippe Lang2009-04-211-2/+9
| | | | | | | | | 3 options are available: * move child pages as root pages * move child pages to another parent page * delete all descendants git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2676 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed broken OpenID authentication after migration to Rails 2.2 (#2894).Jean-Philippe Lang2009-03-041-1/+1
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2551 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Trackers controller refactoring.Jean-Philippe Lang2009-02-261-0/+14
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2526 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Applies r1723 on Engines update to allow view override (#2841).Jean-Philippe Lang2009-02-261-1/+1
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2525 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2.Jean-Philippe Lang2009-02-2165-7024/+244
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2493 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Removes the fat ruby-openid gem. Simply use 'gem install ruby-openid' to ↵Jean-Philippe Lang2009-02-12191-30018/+16
| | | | | | enable openid support. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2458 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed the bundled ruby-openid gemEric Davis2009-02-121-2/+2
| | | | | | | | | | | | * The open_id_authentication plugin will require the gem automatically so it doesn't need to be added to environment.rb * Changed the version requirement on the open_id_authentication to match the latest stable version. Rails config.gem looks for a directory named after that specific version and will not load newer versions. #699 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2452 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed a bug in open_id_authentication, where relative_url_root is definedEric Davis2009-02-111-1/+1
| | | | | | | | on ActionController:AbstractRequest not Base #699 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2441 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added open_id_authentication pluginEric Davis2009-02-1121-0/+1090
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2438 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Unpacked OpenID gem. #699Eric Davis2009-02-11190-0/+30000
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2437 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Replaces the repositories management SOAP API with a simple REST API.Jean-Philippe Lang2009-02-1045-5587/+0
| | | | | | | reposman usage is unchanged but the script now requires activeresource. actionwebservice is now longer used and thus removed from plugins. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2435 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Merged nested projects branch. Removes limit on subproject nesting (#594).Jean-Philippe Lang2009-01-2419-0/+1726
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2304 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds watchers selection on new issue form (#398). Permission 'add issue ↵Jean-Philippe Lang2008-12-221-0/+2
| | | | | | watchers' required. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2164 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Rails 2.1.2 deprecations (#2332).Jean-Philippe Lang2008-12-143-4/+4
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2134 e93f8b46-1217-0410-a6f0-8f06a7374b81
* AttachmentsController now handles attachments deletion.Jean-Philippe Lang2008-12-092-0/+59
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2116 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: project activity truncated after viewing user's activity.Jean-Philippe Lang2008-12-081-1/+1
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2114 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: activity broken by r2066 with postgresql (#2266).Jean-Philippe Lang2008-12-021-2/+5
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2083 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Display latest user's activity on account/show view.Jean-Philippe Lang2008-11-301-3/+15
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2066 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Typo in gloc:update task description (#2243).Jean-Philippe Lang2008-11-271-1/+1
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2061 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Gravatar support for issue detai, user grid, and activity streamEric Davis2008-10-307-0/+218
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1962 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Makes GLoc language global.Jean-Philippe Lang2008-10-271-5/+11
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1957 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Engines compatibility with Rails 2.1.1 (#1886).Jean-Philippe Lang2008-09-131-3/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1810 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixes custom fields display order at several places (#1768).Jean-Philippe Lang2008-08-111-1/+4
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1731 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Slight change to engines to let plugins override views.Jean-Philippe Lang2008-08-071-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1723 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds permissions for viewing the watcher list and adding new watchers on the ↵Jean-Philippe Lang2008-08-032-3/+19
| | | | | | issue detail view (#398). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1712 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Activity refactoring.Jean-Philippe Lang2008-07-272-0/+70
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1701 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds child_pages macro for wiki pages (#528).Jean-Philippe Lang2008-07-261-0/+7
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1699 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: 'search titles only' box ignored after one search is done on titles only.Jean-Philippe Lang2008-07-211-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1684 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: searchable model can't be loaded if table is not yet created (#1421).Jean-Philippe Lang2008-07-201-14/+2
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1682 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Search engine: display total results count (#906) and count by result type.Jean-Philippe Lang2008-07-201-14/+26
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1681 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Small fix to gloc error messages translation.Jean-Philippe Lang2008-07-191-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1676 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixes engines assets mirroring.Jean-Philippe Lang2008-07-121-5/+0
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1657 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds engines 2.1.0 plugin.Jean-Philippe Lang2008-07-1226-0/+2093
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1654 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: no :author method error on projects atom feed (#1623).Jean-Philippe Lang2008-07-121-7/+8
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1653 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: search engine may reveal private projects (#1613).Jean-Philippe Lang2008-07-101-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1649 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Merged Rails 2.1 compatibility branch.Jean-Philippe Lang2008-07-048-341/+459
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1623 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Custom fields refactoring: most of code moved from controllers to models ↵Jean-Philippe Lang2008-06-272-0/+84
| | | | | | (using new module ActsAsCustomizable). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1592 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixes Chinese pdf export when the issue description is too long (#1170).Jean-Philippe Lang2008-06-071-473/+473
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1497 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: Unable to use angular braces after include word in c code ↵Jean-Philippe Lang2008-05-291-1/+1
| | | | | | highlighting (#1230). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1476 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Ability to search all projects or the projects the user belongs to (#791).Jean-Philippe Lang2008-05-181-3/+15
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1435 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Add an icon to each event on the activity view.Jean-Philippe Lang2008-04-121-6/+13
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1342 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Add a simple java scanner.Jean-Philippe Lang2008-03-182-0/+131
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1272 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fix applied to ruby-net-ldap (#608).Jean-Philippe Lang2008-02-151-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1148 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed search with all words (broken in r994).Jean-Philippe Lang2008-01-211-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1092 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Test environments cleanup.Jean-Philippe Lang2008-01-201-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1084 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: locked users should not receive email notifications.Jean-Philippe Lang2008-01-171-1/+1
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1075 e93f8b46-1217-0410-a6f0-8f06a7374b81