Go to file
2015-12-04 07:22:22 +01:00
app add dependency badge in readme 2015-12-04 07:22:22 +01:00
assets welcome text for right colomn has been added 2014-11-19 18:57:02 +01:00
config Fix uptime if less then a day 2015-11-18 11:15:15 +01:00
lib Do not show closed projects with list_projects 2015-11-20 10:29:02 +01:00
test Added vimeo macro 2015-10-20 19:32:32 +02:00
.gitignore remove jenkins script 2015-10-09 20:02:42 +02:00
.rubocop.yml More refactoring and cleanups 2015-10-10 14:11:02 +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 More refactoring and cleanups 2015-10-10 14:11:02 +02:00
PluginGemfile Fix Gemfile 2015-09-03 20:59:18 +02:00
README.md add dependency badge in readme 2015-12-04 07:22:22 +01:00
VERSION Working on overwriting templates for overview page 2015-09-03 20:56:03 +02:00

Redmine tweaks plugin

Dependency Status

  • 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
  • Wiki Garfield marco
  • Wiki Gist marco
  • Wiki Youtube marco
  • Wiki Vimeo marco
  • option to remove "my page" from top menu
  • customize "Help" url in top menu
  • customize top menu items
  • disable (hide) modules for projects
  • open external urls in new window
  • anonymize referrer for external urls
  • Hide role in project memberbox
  • Configurable issue rules ** closing issue with open sub issues ** change assigned_to_ automatically, if issue status changes ** assigned_to has changed, but status change is required, too

Requirements

  • Redmine version >= 2.6.0
  • Ruby >= 2.0.0
  • Gem package: see PluginGemfile

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
$ bundle install --without development test

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, title=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, title=Manager, role=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(title=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)

Garfield macro

{{garfield}} := show Garfield strip of the current day {{garfield(2014,10,31)}} := show Garfield strip of 31/12/2014

Gist macro

{{gist(6737338)}} := Show Github gist 6737338 {{gist(plentz/6737338)}} := Show Github gist 6737338

Youtube macro

{{youtube(wvsboPUjrGc)}} := youtube video with video wvsboPUjrGc (iframe) and default size 640x360 {{youtube(wvsboPUjrGc, width=853, height=480)}} := youtube video with size 853x480 {{youtube(wvsboPUjrGc, autoplay=1)}} := youtube video and autoplay

Vimeo macro

{{vimeo(142849533)}} := vimeo video with video 142849533 (iframe) and default size 640x360 {{vimeo(142849533, width=853, height=480)}} := vimeo video with size 853x480 {{vimeo(142849533, autoplay=1)}} := vimeo video and autoplay

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.5.6

  • system information uptime and uname have been added
  • gist macro support
  • vimeo macro support

0.5.5

  • dependency with deface (used to overview views)
  • fixed garfield caching macro probem
  • you can add content to overview page now (top and bottom)
  • some content and view optimization (removed wiki_sidebar compatiblitity problems with other Redmine plugins)
  • Code cleanups and refactoring

0.5.4

  • issue rule added for closing issue with open sub issues
  • issue rule added for status change
  • issue rule added for assigned_to change_

0.5.3

  • Redmine 3.0.x and 3.1.x supported
  • "New issue" link with list_projects macro
  • Parameter syntax changed for list_users and list_projects macros (sorry for that)

0.5.2

  • "Edit closed issue" permission has been added
  • Permissions supported for top menu items

0.5.1

  • "Hide role in memberbox" has been added

0.5.0

  • Redmine 2.6.x compatiblity
  • URL fixes
  • Garfield macro has been added

0.4.9

  • added overview text field
  • fix style for "goto top"
  • added macro overview help page
  • fix compatiblity problems with sidebar and other plugins

0.4.8

  • added youtube macro
  • project guide subject can be defined for project overview page

0.4.7

  • added jump to top link
  • top menu item configuration has been added
  • footer configuration (e.g. for imprint url) has been added

0.4.6

  • initialize plugins settings now works with other plugins

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