Go to file
2013-11-24 14:39:58 +01:00
app Redmine 2.4.1 support and help item remove option 2013-11-24 13:58:21 +01:00
assets First public release 0.4.0 2013-09-27 08:56:55 +02:00
config/locales fix english translation labels 2013-11-24 14:39:58 +01:00
lib/redmine_tweaks Sidebar error has been fixed. #1 2013-11-11 11:57:30 +01:00
test First public release 0.4.0 2013-09-27 08:56:55 +02:00
.gitignore First public release 0.4.0 2013-09-27 08:56:55 +02:00
CREDITS First public release 0.4.0 2013-09-27 08:56:55 +02:00
GPL.txt First public release 0.4.0 2013-09-27 08:56:55 +02:00
init.rb Redmine 2.4.1 support and help item remove option 2013-11-24 13:58:21 +01:00
README.md Redmine 2.4.1 support and help item remove option 2013-11-24 13:58:21 +01:00
VERSION Redmine 2.4.1 support and help item remove option 2013-11-24 13:58:21 +01:00

Redmine tweaks plugin

  • use "Project guide" on project overview page
  • 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
  • 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

Requirements

  • Redmine version >= 2.3.3

Installation

Check the requirements!

Download the sources and put them to your vendor/plugins folder.

$ cd {REDMINE_ROOT}
$ git clone git://github.com/alexandermeindl/redmine_tweaks.git plugins/redmine_tweaks

Restart Redmine and have a fun!

Usage

User list macros

  • users
  • project members

Description

{{list_users}} := lists all users of the current users project

{{list_users(123)}} or {{list_users(identifier)}} or {{list_users(My project)}} := Lists all users of the project with project id 123 (or identifier or project name)

{{list_users(123, Manager)}} := Lists all users of the project with project id 123 and the role "Manager". If you want to use multiple roles as filters, you have to use a | as separator.

{{list_users(123, Manager, Manager only)}} := Lists all users of the project with project id 123 and the role "Manager" and adds the heading "Manager only"

Project list macros

Lists projects of current user

Description

{{list_projects}} := lists all projects of current users

{{list_projects(My title)}} := lists all projects of current users and adds the heading "My title"

Wiki date macros

Macro to get current date, year, month, day

Description

{{current_year}} := current year {{current_month}} := current month {{current_day}} := current day {{current_hour}} := current hour {{current_min}} := current minute {{current_weekday}} := current weekday {{current_weeknumber}} := current week number (The week starts with Monday)

Custom help URL

Description

Change help url in top menu to custom url. Note: Redmine must be restarted after changing "Custom Help URL" value before the new url is used.

Changelog

0.4.5

  • option to remove help menu item
  • Redmine 2.4.1 required

0.4.4

  • installation error fixed
  • description update for link handling
  • help url now opens in new windows
  • sidebar error has been fixed, if no wiki page already exist

0.4.3

  • global gantt and calendar bugfix

0.4.2

  • no requirements of Wiki extensions plugin anymore

0.4.1

  • Fix problem with my page permission

0.4.0

  • First public release