Project

General

Profile

Plugins » History » Version 21

Eric Davis, 2008-09-10 19:27
Adding Budget plugin to the wiki

1 1 Jean-Philippe Lang
h1. Plugins
2
3 3 Jean-Philippe Lang
Redmine 0.6.0 provides basic support for plugins. Redmine plugins can rely on "Rails engines":http://rails-engines.org/ to add functionalities to the application.
4 1 Jean-Philippe Lang
5
h2. Installing a plugin
6
7 18 Jean-Philippe Lang
1. First, you need to install the Rails engines plugin if you're using a 0.7.x release (make sure to get the Rails 2.0.2 version): http://rails-engines.org/.
8 12 Eric Davis
9 14 Eric Davis
   ruby script/plugin install http://svn.rails-engines.org/engines/tags/rel_2.0.0/
10
   mv vendor/plugins/rel_2.0.0 vendor/plugins/engines
11 1 Jean-Philippe Lang
12
2. Then, copy your plugin directory into @#{RAILS_ROOT}/vendor/plugins@.
13
14
3. If the plugin requires a migration, run the following command to upgrade your database (make a db backup before):
15
16
  rake db:migrate_plugins
17
18
4. Start Redmine
19
20
You should now be able to see the plugin list in 'Admin -> Information' and configure the newly installed plugin (if the plugin requires to be configured).
21
22
h2. Plugin list
23
24 21 Eric Davis
* [[PluginBudget|Budget]] is a plugin to manage the set of deliverables for each project, automatically calculating key performance indicators.
25 10 Eric Davis
* [[PluginCustomer|Customer]] is plugin to track basic customer information and to see which project belonged to a customer.
26 15 Jean-Philippe Lang
* [[PluginEmbedded|Embedded]] lets you embed HTML files (eg. auto generated documentation, test reports) in your projects.
27 17 Chaoqun Zou
* [[PluginEzfaq|ezFAQ]] is a FAQ management plugin for Redmine.
28 9 Eric Davis
* [[PluginGoogleCalendar|Google Calendar]] is a simple plugin to include Google Calendar iframe as a tab within Redmine projects.
29 6 Eric Davis
* [[PluginProjectScores|Project Scores]] is plugin which will let a user score a project on different criteria.
30 5 Jean-Philippe Lang
* [[PluginSimpleCI|Simple CI]] is a generic plugin for integrating per project RSS continuous integration feeds (eg. "Cruise Control":http://cruisecontrol.sourceforge.net/) in Redmine.
31
* [[PluginTimesheet|Timesheet]] is plugin to show and filter timelogs across all projects in Redmine.
32 16 Jean-Philippe Lang
33
h2. Writing plugins
34
35 20 Chaoqun Zou
See the [[Plugin API]].