Requirements has been added

This commit is contained in:
Alexander Meindl 2013-09-27 16:37:22 +02:00
parent 592b5af343
commit e365b5756d
2 changed files with 22 additions and 11 deletions

View File

@ -1,22 +1,35 @@
# Redmine tweaks plugin
* option to remove "my page" from top menu
* Customize "Help" url in top menu
* use "Project guide" on project overview page
* Set info message above new ticket (e.g. for guidelines)
* global header for all projects
* global footer for all projects
* welcome text for login page
* global sidebar content support
* set info message above new ticket (e.g. for guidelines)
* Wiki user macros
* Wiki project macros
* Wiki date macros
* Disable (hide) modules for projects
* option to remove "my page" from top menu
* customize "Help" url in top menu
* disable (hide) modules for projects
* open external urls in new window
* anonymize referrer for external urls
## Compatibility
Tested with Redmine 2.3.3
## Required plugins
* Wiki extensions plugin: http://www.r-labs.org/projects/r-labs/wiki/Wiki_Extensions_en
## Installation
Check all required plugins!
Download the sources and put them to your vendor/plugins folder.
$ cd {REDMINE_ROOT}
@ -25,12 +38,6 @@ Download the sources and put them to your vendor/plugins folder.
Restart Redmine and have a fun!
## Optional plugins
* Wiki extensions plugin: http://www.r-labs.org/projects/r-labs/wiki/Wiki_Extensions_en
* Wiki Lists plugin: http://www.r-labs.org/projects/wiki_lists/wiki/Wiki_Lists
## Usage
### User list macros

View File

@ -47,7 +47,11 @@ Redmine::Plugin.register :redmine_tweaks do
# required redmine version
requires_redmine :version_or_higher => '2.3.3'
# for formating (div/hr)
# ! does not work with plugin redmine_wiki_extensions
# requires_redmine_plugin :redmine_wiki_extensions, :version_or_higher => '0.6.4'
# Add Task board
menu :top_menu, :task_board, { :controller => 'wiki', :action => 'show', :id => 'Task_board', :project_id => 'common' },
:if => Proc.new{User.current.allowed_to?({:controller => 'wiki', :action => 'show', :id => 'Task_board', :project_id => 'common'}, nil, {:global => true}) && RedmineTweaks.settings[:show_task_board_link] }