redmine_audit 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1bb3b023e6550d3fc79de999b8e0244ce5d4b2d4
4
- data.tar.gz: b11e7bd9c26bfb3302ee96da910b6a4d4df913f6
3
+ metadata.gz: e4ec23d31165ee79ba89fe729ffc6d64fb700d93
4
+ data.tar.gz: 83540b0d446c5b35c9cf00d35c737fc874340a77
5
5
  SHA512:
6
- metadata.gz: 71852521e605ddfcb0825f76417d7a4c2494cd12a1adcdfc23917fd6f16e79b2c10cc36cf3d5054493424b65b3e5c200e0aa81c9ebc76df23f3c165937de41a4
7
- data.tar.gz: 57ad5479a04476b5629b9887c3d6a5087224ca6b59022a2c5ab5d685c19a064edaaad4fc5c8017e5275f75a99a7d95424da53990fb9abd44a3fde5989e404505
6
+ metadata.gz: 751a4ee63125f5c0e5481e391cc80ceba9a6ed5fbdb7592353f2d685dd4d7a2e9678d871082f5d8bbdec69db00cf33a43059bcf5b58b3dd22825018916d67e89
7
+ data.tar.gz: 31f970d77fafdefdfb636c18024e9467996527956d154f62cca5b666cbc100b61b0f14afaf34f90b479499d5db46ec6480169cd5681089f685b08bd37891a6dc
data/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2
4
+ - 2.3
5
+ - 2.4
6
+ notifications:
7
+ email:
8
+ recipients:
9
+ - sho.hsmt@gmail.com
10
+ on_success: never
11
+ on_failure: always
data/README.md CHANGED
@@ -14,17 +14,17 @@ And then execute:
14
14
 
15
15
  $ bundle
16
16
 
17
- Or git clone under Redmine's plugins directory.
17
+ Or fetch and extract under Redmine's plugins directory.
18
18
 
19
19
  ```
20
- $ cd /path/to/redmine/plugins && git clone https://github.com/sho-h/redmine_audit.git
20
+ $ cd /path/to/redmine/plugins && curl -L https://github.com/sho-h/redmine_audit/archive/v0.2.0.tar.gz | tar x
21
21
  ```
22
22
 
23
23
  ## Uninstallation
24
24
 
25
25
  Remove above line from your Redmine's Gemfile.local.
26
26
 
27
- And remove file(s) this gem installed(or you cloned).
27
+ And remove file(s) this gem installed(or you extracted).
28
28
 
29
29
  ```
30
30
  $ cd /path/to/redmine/plugins && rm -rf ./redmine_audit
@@ -38,7 +38,7 @@ Excecute redmine:audit rake task with users environment variable.
38
38
  $ rake redmine:audit users=1,2 RAILS_ENV=production
39
39
  ```
40
40
 
41
- Or, add same commant to crontab.
41
+ Or, add same command to crontab.
42
42
 
43
43
  ```
44
44
  30 6 * * * www-data perl -e 'sleep int(rand(3600))' && cd /path/to/redmine ; rake redmine:audit users=1,2 RAILS_ENV=production
@@ -0,0 +1,18 @@
1
+ module RedmineAuditHelper
2
+ def gem_advisory(advisory)
3
+ # See bundler-audit/lib/bundler/audit/cli.rb
4
+ if advisory.cve
5
+ return "CVE-#{advisory.cve}"
6
+ elsif advisory.osvdb
7
+ return advisory.osvdb
8
+ else
9
+ # Changing from bundler-audit instead of nil returns.
10
+ return "Unknown"
11
+ end
12
+ end
13
+
14
+ def gem_criticality(advisory)
15
+ # See bundler-audit/lib/bundler/audit/cli.rb
16
+ return (advisory.criticality || 'Unknown').to_s.capitalize
17
+ end
18
+ end
data/app/models/mailer.rb CHANGED
@@ -1,24 +1,41 @@
1
1
  # reopen Redmine Mailer
2
2
  class Mailer < ActionMailer::Base
3
+ helper :redmine_audit
4
+
3
5
  # Sends notification to specified administrator
4
6
  #
5
- # @param [Gem::Version] advisories
7
+ # @param [Gem::Version] redmine_version
6
8
  # The version to compare against {#unaffected_versions}.
7
- # @param [Array] user_ids
8
- # Array of user ids who should be notified
9
- def unfixed_advisories_found(redmine_version, advisories, user_ids)
10
- if advisories.nil? || advisories.empty?
11
- raise "Couldn't find user specified: #{advisories.inspect}"
12
- end
13
-
14
- users = User.active.where(admin: true, id: user_ids).to_a
15
- if users.empty?
16
- raise ActiveRecord::RecordNotFound.new("Couldn't find user specified: #{user_ids.inspect}")
17
- end
9
+ # @param [RedmineAudit::Advisory] advisories
10
+ # Array of Redmine advisories.
11
+ # @param [RedmineAudit::Advisory] plugin_advisories
12
+ # Array of plugin's Redmine advisories.
13
+ # @param [Array] users
14
+ # Array of users who should be notified.
15
+ def unfixed_redmine_advisories_found(redmine_version, redmine_advisories, plugin_advisories, users)
16
+ return if (redmine_advisories.nil? || redmine_advisories.empty?) && (plugin_advisories.nil? || plugin_advisories.empty?)
18
17
 
19
18
  @redmine_version = redmine_version
20
- @advisories = advisories
21
- # TODO: Internationalize suject and body.
19
+ @advisories = redmine_advisories || []
20
+ @plugin_advisories = plugin_advisories || []
21
+ # TODO: Internationalize subject.
22
22
  mail(to: users, subject: "[Redmine] Security notification")
23
23
  end
24
+
25
+ # Sends Redmine depend gem security notification to specified administrator
26
+ #
27
+ # @param [Enumerator] ruby_result
28
+ # The Enumerator of Redmine depend ruby advisories.
29
+ # @param [Enumerator] gems_result
30
+ # The Enumerator of Redmine depend gem advisories.
31
+ # @param [Array] users
32
+ # Array of users who should be notified.
33
+ def unfixed_ruby_and_gems_advisories_found(ruby_result, gems_result, users)
34
+ return if (ruby_result.nil? || ruby_result.count.zero?) && (gems_result.nil? || gems_result.count.zero?)
35
+
36
+ @ruby_result = ruby_result || []
37
+ @gems_result = gems_result || []
38
+ # TODO: Internationalize subject.
39
+ mail(to: users, subject: "[Redmine] Ruby/Depend gem security notification")
40
+ end
24
41
  end
@@ -0,0 +1,54 @@
1
+ <div><%= l(:mail_summary_redmine_advisories_found) %></div>
2
+
3
+ <%-
4
+ @advisories.each do |advisory|
5
+ if advisory.external_references && !advisory.external_references.empty?
6
+ ext_refs = advisory.external_references
7
+ else
8
+ ext_refs = 'none'
9
+ end
10
+ solution = advisory.fixed_versions.join(', ')
11
+ -%>
12
+
13
+ <div>
14
+ <ul style="list-style:none;">
15
+ <li>Name: Redmine</li>
16
+ <li>Version: <%= @redmine_version %></li>
17
+ <li>Severity: <%= advisory.severity %></li>
18
+ <li>URL: <%= ext_refs %></li>
19
+ <li>Detail: <%= advisory.details %></li>
20
+ <li>Solution: upgrade to <%= solution %></li>
21
+ </ul>
22
+ </div>
23
+ <%- end -%>
24
+
25
+ <%-
26
+ @plugin_advisories.each do |plugin, advisories|
27
+ advisories.each do |advisory|
28
+ if advisory.external_references && !advisory.external_references.empty?
29
+ ext_refs = advisory.external_references
30
+ else
31
+ ext_refs = 'none'
32
+ end
33
+ solution = advisory.fixed_versions.join(', ')
34
+ -%>
35
+
36
+ <div>
37
+ <ul style="list-style:none;">
38
+ <li>Name: <%= plugin.name %></li>
39
+ <li>Version: <%= plugin.version %></li>
40
+ <li>Severity: <%= advisory.severity %></li>
41
+ <li>URL: <%= ext_refs.join(', ') %></li>
42
+ <li>Detail: <%= advisory.details %></li>
43
+ <li>Solution: upgrade to <%= solution %></li>
44
+ </ul>
45
+ </div>
46
+
47
+ <%-
48
+ end
49
+ end
50
+ -%>
51
+
52
+ <div>
53
+ <%= raw(l(:mail_detail_link_advisories_found, link: link_to('redmine.org', RedmineAudit::Database::URL))) %>
54
+ </div>
@@ -0,0 +1,43 @@
1
+ <%= l(:mail_summary_redmine_advisories_found) %>
2
+
3
+ <%-
4
+ @advisories.each do |advisory|
5
+ if advisory.external_references && !advisory.external_references.empty?
6
+ ext_refs = advisory.external_references
7
+ else
8
+ ext_refs = 'none'
9
+ end
10
+ solution = advisory.fixed_versions.join(', ')
11
+ -%>
12
+
13
+ Name: Redmine
14
+ Version: <%= @redmine_version %>
15
+ Severity: <%= advisory.severity %>
16
+ URL: <%= ext_refs %>
17
+ Detail: <%= advisory.details %>
18
+ Solution: upgrade to <%= solution %>
19
+ <%- end -%>
20
+ <%-
21
+ @plugin_advisories.each do |plugin, advisories|
22
+ advisories.each do |advisory|
23
+ solution = advisory.fixed_versions.join(', ')
24
+ if advisory.external_references && !advisory.external_references.empty?
25
+ ext_refs = advisory.external_references
26
+ else
27
+ ext_refs = 'none'
28
+ end
29
+ -%>
30
+
31
+ Name: <%= plugin.name %>
32
+ Version: <%= plugin.version %>
33
+ Advisory: <%= advisory.id %>
34
+ Severity: <%= advisory.severity %>
35
+ URL: <%= ext_refs.join(', ') %>
36
+ Detail: <%= advisory.details %>
37
+ Solution: upgrade to <%= solution %>
38
+ <%-
39
+ end
40
+ end
41
+ -%>
42
+
43
+ <%= l(:mail_detail_link_advisories_found, link: RedmineAudit::Database::URL) %>
@@ -0,0 +1,33 @@
1
+ <div><%= l(:mail_summary_ruby_and_gems_advisories_found) %></div>
2
+
3
+ <%-
4
+ {Ruby: @ruby_result, Gems: @gems_result}.each do |key, results|
5
+ results.each do |result|
6
+ case result
7
+ when Bundler::Audit::Scanner::InsecureSource
8
+ -%>
9
+ <div>
10
+ <ul style="list-style:none;">
11
+ <li>Insecure Source URI found: <%= link_to(result.source, result.source) %></li>
12
+ </ul>
13
+ </div>
14
+ <%-
15
+ when Bundler::Audit::Scanner::UnpatchedGem
16
+ -%>
17
+ <div>
18
+ <ul style="list-style:none;">
19
+ <li>Name: <%= result.gem.name %></li>
20
+ <li>Version: <%= result.gem.version %></li>
21
+ <li>Criticality: <%= gem_criticality(result.advisory) %></li>
22
+ <li>URL: <%= link_to(result.advisory.url, result.advisory.url) %></li>
23
+ <li>Title: <%= result.advisory.title %></li>
24
+ <li>Solution: upgrade to <%= result.advisory.patched_versions.join(', ') %></li>
25
+ </ul>
26
+ </div>
27
+ <%-
28
+ else
29
+ # ignore
30
+ end
31
+ end
32
+ end
33
+ -%>
@@ -0,0 +1,27 @@
1
+ <%= l(:mail_summary_ruby_and_gems_advisories_found) %>
2
+ <%-
3
+ {Ruby: @ruby_result, Gems: @gems_result}.each do |key, results|
4
+ results.each do |result|
5
+ case result
6
+ when Bundler::Audit::Scanner::InsecureSource
7
+ -%>
8
+
9
+ Insecure Source URI found: <%= result.source %>
10
+ <%-
11
+ when Bundler::Audit::Scanner::UnpatchedGem
12
+ -%>
13
+
14
+ Name: <%= result.gem.name %>
15
+ Version: <%= result.gem.version %>
16
+ Advisory: <%= gem_advisory(result.advisory) %>
17
+ Criticality: <%= gem_criticality(result.advisory) %>
18
+ URL: <%= result.advisory.url %>
19
+ Title: <%= result.advisory.title %>
20
+ Solution: upgrade to <%= result.advisory.patched_versions.join(', ') %>
21
+ <%-
22
+ else
23
+ # ignore
24
+ end
25
+ end
26
+ end
27
+ -%>
@@ -1,5 +1,5 @@
1
1
  # English strings go here for Rails i18n
2
2
  en:
3
- mail_summary_advisories_found: "Vulnerabilities found your Redmine!"
4
- mail_detail_link_head_advisories_found: "See"
5
- mail_detail_link_tail_advisories_found: "for more detail."
3
+ mail_summary_redmine_advisories_found: "Vulnerabilities found your Redmine!"
4
+ mail_summary_ruby_and_gems_advisories_found: "Vulnerabilities found Ruby/depend gems on your Redmine!"
5
+ mail_detail_link_advisories_found: "See %{link} for more detail."
@@ -1,4 +1,4 @@
1
1
  ja:
2
- mail_summary_advisories_found: "Redmineの脆弱性が見つかりました!"
3
- mail_detail_link_head_advisories_found: "詳しくは"
4
- mail_detail_link_tail_advisories_found: "を参照してください。"
2
+ mail_summary_redmine_advisories_found: "Redmineの脆弱性が見つかりました!"
3
+ mail_summary_ruby_and_gems_advisories_found: "RedmineのRubyや依存するgemの脆弱性が見つかりました!"
4
+ mail_detail_link_advisories_found: "詳しくは %{link} を参照してください。"
@@ -0,0 +1,19 @@
1
+ ---
2
+ # plugin_id: # specified to Redmine::Plugin.register argument
3
+ # cve_id:
4
+ # attr_name: value
5
+ :redmine_git_hosting:
6
+ CVE-2013-4663:
7
+ name: Redmine Git Hosting Plugin
8
+ url: https://www.sec-1.com/blog/2013/redmine-git-hosting-plugin-remote-command-execution
9
+ title: Remote Command Execution
10
+ cvss_v2: 7.5
11
+ date: '2013-08-16'
12
+ description: |
13
+ git_http_controller.rb in the redmine_git_hosting plugin for
14
+ Redmine allows remote attackers to execute arbitrary commands via
15
+ shell metacharacters in (1) the service parameter to info/refs,
16
+ related to the get_info_refs function or (2) the reqfile argument
17
+ to the file_exists function.
18
+ patched_versions:
19
+ - ">= 1.0.0"
data/data/plugins.yml ADDED
@@ -0,0 +1,2468 @@
1
+ ---
2
+ redmine_agile:
3
+ :website: https://www.redmineup.com/pages/plugins/agile
4
+ easy-gantt:
5
+ :website: https://www.easyredmine.com/redmine-gantt-plugin
6
+ mindmap-plugin:
7
+ :website: https://www.easyredmine.com/redmine-mindmap-plugin
8
+ redmine_2fa:
9
+ :website: https://github.com/centosadmin/redmine_2fa
10
+ :repository: https://github.com/centosadmin/redmine_2fa.git
11
+ chiliproject_look_and_feel:
12
+ :website: http://www.chiliproject.eu/projects/chiliproject-eu/wiki/ChiliProject_Look_and_Feel_Plugin
13
+ a_common_libs:
14
+ :website: http://rmplus.pro
15
+ :repository: https://bitbucket.org/dkuk/a_common_libs.git
16
+ luxury_buttons:
17
+ :website: http://rmplus.pro/en/redmine/plugins/luxury_buttons
18
+ website-screenshot-page2images:
19
+ :website: http://www.page2images.com
20
+ :repository: https://github.com/SuzhouKada/redmine-page2images
21
+ absence_io:
22
+ :website: https://www.absence.io/en
23
+ accept:
24
+ :website: https://github.com/stefanzugal/accept-plugin
25
+ :repository: https://github.com/stefanzugal/accept-plugin
26
+ access_tickets:
27
+ :repository: https://github.com/iymaltsev/access_tickets
28
+ redmine_activity_report:
29
+ :website: https://github.com/centosadmin/redmine_activity_report
30
+ :repository: https://github.com/centosadmin/redmine_activity_report.git
31
+ default_members: {}
32
+ add_subversion_links:
33
+ :website: http://masamitsu-murase.blogspot.jp/
34
+ :repository: https://github.com/masamitsu-murase/redmine_add_subversion_links
35
+ add-watchers-textinput:
36
+ :website: https://github.com/alvinchow86/redmine-watchers-textinput
37
+ :repository: https://github.com/alvinchow86/redmine-watchers-textinput
38
+ additionals:
39
+ :repository: https://github.com/alphanodes/additionals
40
+ redmine_admin_monitor:
41
+ :repository: https://github.com/yossiedri/Redmine-Admin-Monitor-Plugin.git
42
+ ads:
43
+ :website: https://redmine.ociotec.com/projects/redmine-plugin-ads
44
+ advanced_membership_management:
45
+ :website: https://github.com/integra-consultores/advanced-membership-management
46
+ :repository: https://github.com/integra-consultores/advanced-membership-management
47
+ advanced_reminder:
48
+ :website: http://github.com/alvila/redmine_reminder
49
+ :repository: http://github.com/alvila/redmine_reminder
50
+ advanced_roadmap:
51
+ :website: https://redmine.ociotec.com/projects/advanced-roadmap
52
+ :repository: https://redmine.ociotec.com/projects/advanced-roadmap/files
53
+ advanced_roadmap_v2:
54
+ :website: https://github.com/Coren/redmine_advanced_roadmap_v2
55
+ :repository: https://github.com/Coren/redmine_advanced_roadmap_v2
56
+ reklama:
57
+ :website: http://projects.andriylesyuk.com/projects/advertising
58
+ :repository: http://subversion.andriylesyuk.com/advertising
59
+ agile_dwarf:
60
+ :website: http://www.agiledwarf.com/
61
+ :repository: https://github.com/iRessources/AgileDwarf
62
+ redmine_agreement:
63
+ :website: https://github.com/centosadmin/redmine_agreement
64
+ :repository: https://github.com/centosadmin/redmine_agreement.git
65
+ redmine_airbrake:
66
+ :website: http://redmine-search.com/airbrake
67
+ :repository: https://github.com/jkraemer/redmine_airbrake
68
+ all-time-team:
69
+ :website: http://daipresents.com/2009/redmine_all_time_team_plugin/
70
+ :repository: https://github.com/daipresents/redmine_all_time_team
71
+ redmine_allocation:
72
+ :website: https://github.com/Emergya/redmine_allocation
73
+ :repository: https://github.com/Emergya/redmine_allocation
74
+ amazon_s3:
75
+ :website: https://x3ro.github.io/redmine_amazon_s3/
76
+ :repository: https://github.com/x3ro/redmine_amazon_s3
77
+ anko_gantt_chart:
78
+ :website: http://www.ankosoft.co.jp/anko_gantt_chart/
79
+ announcements:
80
+ :website: http://buoyant.github.io/redmine_announcements
81
+ :repository: https://github.com/buoyant/redmine_announcements
82
+ anonymous-authors: {}
83
+ anonymous-watchers: {}
84
+ apijs:
85
+ :website: https://www.luigifab.info/redmine/apijs
86
+ :repository: https://github.com/luigifab38/apijs
87
+ redmine_appmenuadds:
88
+ :website: http://www.ultragreen.net/projects/redmine-appmenuadds
89
+ :repository: https://github.com/Ultragreen/redmine-appmenuadds
90
+ redmine_archive_issue_categories:
91
+ :repository: https://github.com/tofi86/redmine_archive_issue_categories
92
+ redmine_assets_plugin:
93
+ :website: https://github.com/bshaffer/redmine-assets-plugin
94
+ assign_current_date:
95
+ :website: https://github.com/team888
96
+ :repository: https://github.com/team888/redmine-assign_current_date-plugin
97
+ assign_current_user:
98
+ :website: https://github.com/team888
99
+ :repository: https://github.com/team888/redmine-assign_current_user-plugin
100
+ clipboard_image_paste:
101
+ :website: https://github.com/peclik/clipboard_image_paste
102
+ :repository: https://github.com/peclik/clipboard_image_paste
103
+ redmine_attach_screenshot: {}
104
+ attitems:
105
+ :repository: https://github.com/eckucukoglu/redmine-attachable-items
106
+ attachment_name_validator: {}
107
+ author:
108
+ :website: http://projects.andriylesyuk.com/projects/author-box
109
+ :repository: http://subversion.andriylesyuk.com/author-box
110
+ redmine_author_notification_emails:
111
+ :website: https://github.com/darioo/redmine_author_notification_emails
112
+ :repository: https://github.com/darioo/redmine_author_notification_emails
113
+ auto_assigned_user:
114
+ :website: https://github.com/Eyepea/redmine_auto_assigned_user
115
+ :repository: https://github.com/Eyepea/redmine_auto_assigned_user
116
+ redmine_auto_deputy:
117
+ :website: https://github.com/florianeck/redmine_auto_deputy
118
+ :repository: https://github.com/florianeck/redmine_auto_deputy
119
+ redmine_auto_identifier:
120
+ :repository: https://github.com/ande3577/redmine_auto_identifier
121
+ redmine_auto_lock:
122
+ :website: http://www.systango.com
123
+ :repository: https://github.com/stpl/redmine_auto_lock/
124
+ auto-populate-fields: {}
125
+ redmine_auto_watchers_from_groups:
126
+ :website: https://github.com/akuznecov/redmine_auto_watchers_from_groups
127
+ :repository: https://github.com/akuznecov/redmine_auto_watchers_from_groups
128
+ autohier:
129
+ :website: https://github.com/merikonjatta/redmine_autohier/
130
+ :repository: https://github.com/merikonjatta/redmine_autohier/
131
+ redmine_category_watchers:
132
+ :website: https://github.com/luisfontes19/redmine_category_watchers
133
+ :repository: https://github.com/luisfontes19/redmine_category_watchers
134
+ automatically-add-ldap-users-to-group:
135
+ :website: https://github.com/savoirfairelinux/redmine-add-ldap-user-to-group
136
+ :repository: https://github.com/savoirfairelinux/redmine-add-ldap-user-to-group
137
+ autorespond:
138
+ :website: https://www.gyselroth.com
139
+ :repository: https://github.com/gyselroth/redmine-plugin-autorespond
140
+ avoid_duplicated_name_in_projects_list:
141
+ :website: https://github.com/integra-consultores/avoid-duplicated-name-in-projects-list
142
+ :repository: https://github.com/integra-consultores/avoid-duplicated-name-in-projects-list
143
+ backlogs:
144
+ :repository: https://github.com/backlogs/redmine_backlogs
145
+ redmine_banner:
146
+ :website: http://www.r-labs.org/projects/banner
147
+ :repository: https://github.com/akiko-pusu/redmine_banner
148
+ redmine_polls:
149
+ :website: http://www.redmine.org/projects/redmine/wiki/PluginBasicPolls
150
+ bestest_timer:
151
+ :website: https://github.com/LeviticusMB/bestest_timer
152
+ :repository: https://github.com/LeviticusMB/bestest_timer.git
153
+ redmine_better_gantt_chart:
154
+ :repository: https://github.com/kulesa/redmine_better_gantt_chart
155
+ redmine_bbb:
156
+ :website: http://github.com/amartel/redmine_bbb
157
+ :repository: git://github.com/amartel/redmine_bbb.git
158
+ redmine_bitbucket_hook:
159
+ :website: https://github.com/milkfarm/redmine_bitbucket_hook
160
+ :repository: https://github.com/milkfarm/redmine_bitbucket_hook
161
+ bitbucket_reference_redmine:
162
+ :website: https://productize.be
163
+ :repository: https://bitbucket.org/productize/bitbucket_reference_redmine
164
+ redmine_blocks:
165
+ :website: http://www.redmine.org/projects/redmine/wiki/PluginBlocksLayout
166
+ redmine_boards_watchers:
167
+ :website: http://www.redmine.org/boards/3/topics/16247
168
+ mmqb:
169
+ :repository: https://github.com/QBurst/qbmeetingroomplugin
170
+ redmine_bookmarks:
171
+ :website: http://www.ultragreen.net/projects/redmine-bookmark
172
+ :repository: http://www.ultragreen.net/projects/redmine-bookmark/repository
173
+ bt4:
174
+ :website: https://github.com/ruby232/redmine_bt
175
+ :repository: https://github.com/ruby232/redmine_bt
176
+ redmine_bots_filter: {}
177
+ redmine_br_macro:
178
+ :website: https://github.com/taikii/redmine_br_macro
179
+ :repository: https://github.com/taikii/redmine_br_macro
180
+ redmine_bugherd:
181
+ :website: http://www.bugherd.com/?utm_source=Redmine&utm_medium=integration
182
+ :repository: https://github.com/bugherd/redmine_bugherd
183
+ redmine-campfire_notifications:
184
+ :website: https://github.com/kamui/redmine-campfire_notifications
185
+ :repository: https://github.com/kamui/redmine-campfire_notifications
186
+ canned_responses:
187
+ :website: https://github.com/commandprompt/redmine_canned_responses
188
+ :repository: git://github.com/commandprompt/redmine_canned_responses.git
189
+ redmine_carousel:
190
+ :website: https://github.com/gmiklaszewski/redmine_carousel
191
+ :repository: git@github.com:gmiklaszewski/redmine_carousel.git
192
+ redmine_cas:
193
+ :website: https://forja.cenatic.es/projects/cas/
194
+ :repository: https://github.com/Emergya/redmine_cas
195
+ redmine_change_issue_author:
196
+ :website: www.mcl.de
197
+ :repository: https://github.com/mcl-de/redmine_change_issue_author
198
+ redmine_changeauthor:
199
+ :website: https://github.com/fragtom/Redmine-Changeauthor-Plugin
200
+ :repository: https://github.com/fragtom/Redmine-Changeauthor-Plugin
201
+ redmine_charts2:
202
+ :website: https://github.com/pharmazone/redmine_charts2
203
+ :repository: https://github.com/pharmazone/redmine_charts2
204
+ jchat:
205
+ :repository: https://github.com/joshsten/redmine_jchat
206
+ redmine_chat_telegram:
207
+ :website: https://github.com/centosadmin/redmine_chat_telegram
208
+ :repository: https://github.com/centosadmin/redmine_chat_telegram.git
209
+ redmine_checklists:
210
+ :website: https://www.redmineup.com/pages/plugins/checklists
211
+ redmine_checkout:
212
+ :website: http://dev.holgerjust.de/projects/redmine-checkout/wiki
213
+ :repository: http://dev.holgerjust.de/projects/redmine-checkout/repository
214
+ chili_videos:
215
+ :website: https://github.com/tomkersten/chili_videos
216
+ :repository: git://github.com/tomkersten/chili_videos.git
217
+ redmine-ckeditor:
218
+ :website: https://github.com/a-ono/redmine_ckeditor
219
+ :repository: https://github.com/a-ono/redmine_ckeditor
220
+ clear_plan:
221
+ :website: http://rmplus.pro/en/redmine/plugins/clear_plan
222
+ close_column:
223
+ :website: https://github.com/tonymarschall/redmine_closed_column
224
+ :repository: https://github.com/tonymarschall/redmine_closed_column.git
225
+ redmine_close_button:
226
+ :website: http://github.com/Undev/redmine_close_button
227
+ :repository: http://github.com/Undev/redmine_close_button
228
+ redmine_closes_resolved_issues:
229
+ :website: https://github.com/Jogi1j/redmine_closes_resolved_issues
230
+ :repository: https://github.com/Jogi1j/redmine_closes_resolved_issues
231
+ redmine_cmi:
232
+ :website: https://forja.cenatic.es/projects/cmi/
233
+ :repository: https://github.com/Emergya/redmine_cmi
234
+ cmis_4_redmine_2:
235
+ :website: http://www.zuinqstudio.com/en/funny-experiments-downloads#lab14
236
+ :repository: https://github.com/zuinqstudio/cmis_4_redmine_2
237
+ redmine_cms:
238
+ :website: https://www.redmineup.com/pages/plugins/cms
239
+ line_numbers:
240
+ :website: https://github.com/cdwertmann/line_numbers
241
+ :repository: git://github.com/cdwertmann/line_numbers.git
242
+ codehightlight_button:
243
+ :website: https://github.com/mediatainment/redmine_codebutton
244
+ :repository: https://github.com/mediatainment/redmine_codebutton
245
+ redmine_code_review:
246
+ :website: http://www.r-labs.org/projects/r-labs/wiki/Code_Review_en
247
+ :repository: https://github.com/haru/redmine_code_review
248
+ redmine_coderwall:
249
+ :repository: https://github.com/syntacticvexation/redmine_coderwall
250
+ collapse_quotes:
251
+ :website: https://github.com/commandprompt/redmine_collapse_quotes
252
+ :repository: git://github.com/commandprompt/redmine_collapse_quotes.git
253
+ commit_relation_editor:
254
+ :website: http://www.r-labs.org/projects/relation-editor
255
+ :repository: https://bitbucket.org/haru_iida/redmine_commit_relation_editor
256
+ computed_custom_field:
257
+ :website: https://github.com/annikoff/redmine_plugin_computed_custom_field
258
+ :repository: https://github.com/annikoff/redmine_plugin_computed_custom_field
259
+ redmine_app__space:
260
+ :website: https://github.com/maxrossello/redmine_app__space
261
+ :repository: https://github.com/maxrossello/redmine_app__space
262
+ projects_view_config: {}
263
+ contact_form:
264
+ :website: http://projects.andriylesyuk.com/projects/contact-form
265
+ :repository: http://subversion.andriylesyuk.com/contact-form
266
+ redmine_context_menu_watchers:
267
+ :website: http://www.redmine.org/boards/3/topics/25978
268
+ cookie-disclosure:
269
+ :repository: https://ans.disi.unitn.it/redmine/redmine_cookie_alert_plugin.git
270
+ copy_parent_issue_id:
271
+ :website: https://github.com/onozaty/redmine-copy-parent-issue-id
272
+ :repository: https://github.com/onozaty/redmine-copy-parent-issue-id
273
+ redmine_correct_spelling:
274
+ :website: http://otsukare-tion.com/2015/01/redmine_correct_spelling_plugin/
275
+ :repository: https://github.com/kobat987/redmine_correct_spelling
276
+ create_multiples_time_entries:
277
+ :website: https://github.com/integra-consultores/create_multiple_time_entries
278
+ :repository: https://github.com/integra-consultores/create_multiple_time_entries
279
+ redmine_contacts:
280
+ :website: https://www.redmineup.com/pages/plugins/crm
281
+ csv_import_issues:
282
+ :website: http://systango.com
283
+ :repository: https://github.com/stpl/csv_import_issues
284
+ csv_import_users:
285
+ :website: http://systango.com
286
+ :repository: https://github.com/stpl/csv_import_users
287
+ redmine_custom_css:
288
+ :website: http://martin-denizet.com
289
+ :repository: https://github.com/martin-denizet/redmine_custom_css
290
+ redmine_rt_custom_field:
291
+ :website: https://github.com/uberamd/redmine_rt_custom_field
292
+ :repository: https://github.com/uberamd/redmine_rt_custom_field
293
+ redmine_trac_custom_field:
294
+ :website: https://github.com/hamletmun/redmine_trac_custom_field
295
+ :repository: https://github.com/hamletmun/redmine_trac_custom_field
296
+ custom_fields_i18n:
297
+ :repository: https://github.com/gf59ru/RedmineCustomFieldsI18n
298
+ redmine_custom_js:
299
+ :website: http://martin-denizet.com
300
+ :repository: https://github.com/martin-denizet/redmine_custom_js
301
+ custom_menu:
302
+ :website: http://rmplus.pro/en/redmine/plugins/custom_menu
303
+ :repository: http://rmplus.pro/en/redmine/plugins/custom_menu
304
+ custom-printing-export-templates:
305
+ :website: https://www.easyredmine.com/redmine-services/redmine-custom-design
306
+ custom_user_fields:
307
+ :website: https://github.com/fanzai0403/custom_user_fields
308
+ :repository: https://github.com/fanzai0403/custom_user_fields
309
+ custom-workflows:
310
+ :website: https://github.com/anteo/redmine_custom_workflows/wiki
311
+ :repository: https://github.com/anteo/redmine_custom_workflows
312
+ customer_plugin:
313
+ :website: http://www.redmine.org/projects/redmine/wiki/PluginCustomer
314
+ :repository: https://github.com/owahab/customer_plugin
315
+ redmine_customize_core_fields:
316
+ :website: https://github.com/nanego/redmine_customize_core_fields
317
+ :repository: https://github.com/nanego/redmine_customize_core_fields
318
+ customize_journal_display:
319
+ :repository: http://redmine.diez.ws/customize_journal_display.zip
320
+ daily_status:
321
+ :website: https://github.com/gs-lab/redmine_daily_status
322
+ :repository: https://github.com/gs-lab/redmine_daily_status
323
+ data:
324
+ :website: https://redmine.ociotec.com/projects/redmine-plugin-data
325
+ redmine_default_assign:
326
+ :website: https://github.com/giddie/redmine_default_assign
327
+ :repository: https://github.com/giddie/redmine_default_assign.git
328
+ redmine_default_columns:
329
+ :website: http://www.redmine.org/boards/3/topics/11764
330
+ redmine_repository_default_check:
331
+ :website: https://github.com/Undev/redmine_repository_default_check
332
+ :repository: https://github.com/Undev/redmine_repository_default_check
333
+ default_roles:
334
+ :website: https://github.com/efigence/redmine_default_roles
335
+ :repository: https://github.com/efigence/redmine_default_roles
336
+ default-version:
337
+ :website: https://github.com/tonymarschall/redmine_default_version
338
+ :repository: https://github.com/tonymarschall/redmine_default_version
339
+ deployer:
340
+ :website: https://zapic0.github.io/deployer/
341
+ :repository: https://github.com/zapic0/deployer
342
+ redmine_issue_detailed_tabs_time:
343
+ :website: https://github.com/markedagain/redmine_issue_detailed_tabs_time
344
+ :repository: https://github.com/markedagain/redmine_issue_detailed_tabs_time
345
+ didyoumean:
346
+ :website: https://github.com/abahgat/redmine_didyoumean/wiki
347
+ :repository: https://github.com/abahgat/redmine_didyoumean
348
+ redmine_diff_email:
349
+ :website: https://github.com/kahseng/redmine_diff_email
350
+ :repository: https://github.com/kahseng/redmine_diff_email
351
+ redmine_diff_email-2014:
352
+ :website: https://github.com/lpirl/redmine_diff_email
353
+ :repository: https://github.com/lpirl/redmine_diff_email
354
+ redmine_revision_diff:
355
+ :website: https://github.com/mateusmedeiros/redmine_revision_diff
356
+ :repository: https://github.com/mateusmedeiros/redmine_revision_diff
357
+ digest:
358
+ :website: https://github.com/drewkeller/redmine_digest
359
+ :repository: git://github.com/drewkeller/redmine_digest.git
360
+ redmine_disable_mail_create_issue:
361
+ :repository: https://github.com/ahills/redmine_disable_mail_create_issue
362
+ dmsf:
363
+ :website: https://github.com/danmunn/redmine_dmsf
364
+ :repository: https://github.com/danmunn/redmine_dmsf
365
+ redmine_doc_pu: {}
366
+ redmine_documents_short:
367
+ :website: https://github.com/smoreau/redmine_documents_short
368
+ :repository: https://github.com/smoreau/redmine_documents_short
369
+ redmine_doodles:
370
+ :website: https://orga.fachschaften.org/projects/redmine_doodles
371
+ :repository: https://orga.fachschaften.org/projects/redmine_doodles/repository
372
+ download:
373
+ :website: http://projects.andriylesyuk.com/projects/download-button
374
+ :repository: http://subversion.andriylesyuk.com/download-button
375
+ redmine_dropbox_attachments:
376
+ :website: https://github.com/alexbevi/redmine_dropbox_attachments
377
+ :repository: https://github.com/alexbevi/redmine_dropbox_attachments
378
+ due_date_reminder:
379
+ :website: https://github.com/f0y/due_date_reminder
380
+ :repository: https://github.com/f0y/due_date_reminder
381
+ redmine_list_duplicate_views:
382
+ :website: http://www.redmine.org/boards/3/topics/29181
383
+ duty-schedule:
384
+ :website: https://github.com/artemasmith/scheduler
385
+ :repository: https://github.com/artemasmith/scheduler.git
386
+ earned_value_management:
387
+ :website: https://www.easyredmine.com/redmine-earned-value-management-plugin
388
+ easy_agile:
389
+ :website: https://github.com/SphereConsultingInc/easy_agile
390
+ :repository: https://github.com/SphereConsultingInc/easy_agile
391
+ easy-baselines:
392
+ :website: https://www.easyredmine.com/redmine-gantt-plugin
393
+ easy-time-sheets:
394
+ :website: https://www.easyredmine.com/software/advanced-project-management/120-time-sheets
395
+ redmine_edit_custom_fields:
396
+ :website: https://www.frederick-thomssen.de
397
+ :repository: https://github.com/fathomssen/redmine_edit_custom_fields
398
+ edit_inline: {}
399
+ redmine_editor_preview_tab:
400
+ :website: https://github.com/tleish/redmine_editor_preview_tab
401
+ :repository: https://github.com/tleish/redmine_editor_preview_tab
402
+ ekanban:
403
+ :website: https://github.com/samchen2009/ekanban
404
+ :repository: https://github.com/samchen2009/ekanban.git
405
+ redmine_email_fetcher:
406
+ :website: https://github.com/luismaia/redmine_email_fetcher
407
+ :repository: https://github.com/luismaia/redmine_email_fetcher
408
+ email_fiddler:
409
+ :website: https://github.com/rsvargas/redmine_email_fiddler
410
+ :repository: https://github.com/rsvargas/redmine_email_fiddler
411
+ redmine_email_notification_content_filter:
412
+ :website: https://redmine.keep.pt/projects/redmine-email-not-content-filter
413
+ :repository: https://github.com/keeps/redmine_email_notification_content_filter
414
+ redmine_notify:
415
+ :website: https://github.com/johnp2686/redmine_notify
416
+ :repository: https://github.com/johnp2686/redmine_notify
417
+ emails_macros:
418
+ :website: https://github.com/garex/redmine-plugin-emails-macros
419
+ :repository: https://github.com/garex/redmine-plugin-emails-macros
420
+ redmine_embedded_flash:
421
+ :website: https://github.com/fcrespel/redmine_embedded_flash
422
+ :repository: https://github.com/fcrespel/redmine_embedded_flash
423
+ redmine_embedded_video:
424
+ :website: https://github.com/cforce/redmine_embedded_video
425
+ :repository: https://github.com/cforce/redmine_embedded_video
426
+ redmine_emojibutton:
427
+ :repository: https://github.com/paginagmbh/redmine_emojibutton
428
+ systango_hrm:
429
+ :website: http://www.systango.com
430
+ :repository: https://github.com/stpl/systango_hrm
431
+ redmine_entity_generator:
432
+ :website: https://github.com/easyredmine/redmine_entity_generator
433
+ :repository: https://github.com/easyredmine/redmine_entity_generator
434
+ environment-css:
435
+ :website: http://development.splendeo.es/projects/redm-environment-css
436
+ :repository: git://github.com/splendeo/redmine-environment-css.git
437
+ redmine_equipment_status_viewer:
438
+ :website: http://sukima.github.com/redmine_equipment_status_viewer/
439
+ :repository: https://github.com/sukima/redmine_equipment_status_viewer/
440
+ wk-time:
441
+ :website: http://erpmine.org/
442
+ :repository: https://github.com/dhanasingh/redmine_wktime
443
+ estamation:
444
+ :website: https://github.com/estatic/estamation
445
+ :repository: https://github.com/estatic/estamation
446
+ event_notifications:
447
+ :website: https://github.com/jrupesh/event_notifications
448
+ :repository: https://github.com/jrupesh/event_notifications.git
449
+ redmine_evm:
450
+ :website: https://github.com/imaginary-cloud/redmine_evm
451
+ :repository: git://github.com/imaginary-cloud/redmine_evm.git
452
+ redmine_issue_evm:
453
+ :website: https://github.com/momibun926/
454
+ :repository: https://github.com/momibun926/redmine_issue_evm
455
+ redmine_expense_tracker:
456
+ :website: http://gel.ozguryazilim.com.tr/redmine_expense_tracker/
457
+ :repository: http://gel.ozguryazilim.com.tr/redmine_expense_tracker/
458
+ export_docx:
459
+ :website: https://github.com/masweetman/export_docx
460
+ :repository: https://github.com/masweetman/export_docx.git
461
+ extended_fields:
462
+ :website: http://projects.andriylesyuk.com/projects/extended-fields
463
+ :repository: http://subversion.andriylesyuk.com/extended-fields
464
+ extended_profile:
465
+ :website: http://projects.andriylesyuk.com/projects/extended-profile
466
+ :repository: http://subversion.andriylesyuk.com/extended-profile
467
+ extended_spent_time:
468
+ :website: https://github.com/Pertimm/redmine_extended_spent_time
469
+ :repository: https://github.com/Pertimm/redmine_extended_spent_time
470
+ redmine_extended_watchers:
471
+ :website: https://github.com/maxrossello/redmine_extended_watchers
472
+ :repository: https://github.com/maxrossello/redmine_extended_watchers
473
+ external_link:
474
+ :website: https://github.com/satoruk/redmine_external_link
475
+ :repository: https://github.com/satoruk/redmine_external_link
476
+ extra_queries:
477
+ :website: http://rmplus.pro/en/redmine/plugins/extra_queries
478
+ :repository: http://rmplus.pro/en/redmine/plugins/extra_queries
479
+ redmine_extra_query_operators:
480
+ :website: http://www.redmine.org/boards/3/topics/21015
481
+ eyemine:
482
+ :website: https://github.com/anacro/eyemine/wiki
483
+ :repository: https://github.com/anacro/eyemine
484
+ ez_assignee_founder:
485
+ :website: http://www.eastpiger.com
486
+ :repository: https://github.com/eastpiger/EZAssigneeFounder
487
+ fancy-project-list:
488
+ :repository: https://lans.disi.unitn.it/redmine/redfancyprojects.git
489
+ favorite_locations:
490
+ :website: https://github.com/mentel/redmine-favorite-locations
491
+ :repository: https://github.com/mentel/redmine-favorite-locations
492
+ favorite_projects:
493
+ :website: https://www.redmineup.com/pages/plugins/favorite-projects
494
+ favourite_issues:
495
+ :website: http://github.com/alvila/redmine_favourites
496
+ :repository: http://github.com/alvila/redmine_favourites
497
+ redmine_favourite_projects:
498
+ :website: https://github.com/syntacticvexation/redmine_favourite_projects
499
+ :repository: git://github.com/syntacticvexation/redmine_favourite_projects.git
500
+ redmine_fiber_support:
501
+ :website: https://github.com/nightweb/redmine_fiber_support
502
+ :repository: https://github.com/nightweb/redmine_fiber_support
503
+ redmine_fields_permissions:
504
+ :website: https://github.com/resilva/Redmine-Fields-permissions
505
+ :repository: https://github.com/resilva/Redmine-Fields-permissions
506
+ redmine_finance:
507
+ :website: https://www.redmineup.com/pages/plugins/finance
508
+ financialmonitoring:
509
+ :website: https://github.com/soualid/redmine-financial-monitoring
510
+ :repository: https://github.com/soualid/redmine-financial-monitoring
511
+ redmine_message_issues:
512
+ :website: http://martin-denizet.com
513
+ :repository: https://github.com/martin-denizet/redmine_message_issues
514
+ ftp_file_server:
515
+ :website: https://github.com/jrupesh/file_servers.git
516
+ :repository: https://github.com/jrupesh/file_servers.git
517
+ full_text_search:
518
+ :website: https://github.com/okkez/redmine_full_text_search
519
+ :repository: https://github.com/okkez/redmine_full_text_search
520
+ redmine_elasticsearch:
521
+ :website: https://github.com/Restream/redmine_elasticsearch/wiki/Search-Quick-Reference
522
+ :repository: https://github.com/Restream/redmine_elasticsearch
523
+ gallery_board:
524
+ :website: https://github.com/HarryHoliday/gallery_board.git
525
+ :repository: https://github.com/HarryHoliday/gallery_board.git
526
+ redmine_gamification_plugin:
527
+ :website: https://github.com/mauricio-camayo/redmine_gamification_plugin
528
+ :repository: https://github.com/mauricio-camayo/redmine_gamification_plugin
529
+ gantt_extension:
530
+ :website: https://github.com/braini75
531
+ :repository: https://github.com/braini75/gantt_extension.git
532
+ redmine-gantt-menu-link:
533
+ :website: https://github.com/mauricio-camayo/redmine-gantt-menu-link
534
+ :repository: https://github.com/mauricio-camayo/redmine-gantt-menu-link
535
+ gantt-progressive-mods:
536
+ :website: https://github.com/stgeneral/redmine-progressive-gantt-mods
537
+ redmine_gantt_with_date:
538
+ :website: https://github.com/vividtone/redmine_gantt_with_date
539
+ :repository: https://github.com/vividtone/redmine_gantt_with_date
540
+ document_library_gdrive:
541
+ :website: https://github.com/Mordorreal/redmine_document_library_gdrive
542
+ :repository: https://github.com/Mordorreal/redmine_document_library_gdrive
543
+ redmine_gems:
544
+ :website: http://www.ultragreen.net/projects/redmine-gems
545
+ :repository: http://www.ultragreen.net/projects/redmine-gems/repository
546
+ gist:
547
+ :website: 'https://github.com/dergachev/redmine_gist '
548
+ :repository: https://github.com/dergachev/redmine_gist
549
+ redmine_git_remote:
550
+ :website: https://github.com/dergachev/redmine_git_remote
551
+ :repository: https://github.com/dergachev/redmine_git_remote
552
+ redmine_create_git:
553
+ :website: https://github.com/martin-denizet/redmine_create_git
554
+ :repository: https://github.com/martin-denizet/redmine_create_git
555
+ redmine_revision_branches:
556
+ :website: https://github.com/tleish/redmine_revision_branches
557
+ :repository: https://github.com/tleish/redmine_revision_branches
558
+ github_commits:
559
+ :website: https://github.com/BoTreeConsultingTeam/github_commits
560
+ :repository: https://github.com/BoTreeConsultingTeam/github_commits
561
+ redmine_github_hook:
562
+ :website: https://github.com/koppen/redmine_github_hook
563
+ :repository: https://github.com/koppen/redmine_github_hook
564
+ redmine_github_style_fenced_code_block:
565
+ :website: https://github.com/taikii/redmine_github_style_fenced_code_block
566
+ :repository: https://github.com/taikii/redmine_github_style_fenced_code_block
567
+ github-redmine-migration:
568
+ :website: https://github.com/paupauorg/github-redmine-migration/blob/master/README.md
569
+ :repository: https://github.com/paupauorg/github-redmine-migration
570
+ redmine_gitlab_merge_request:
571
+ :website: https://github.com/pixel-cookers/redmine_gitlab_merge_request
572
+ :repository: https://github.com/pixel-cookers/redmine_gitlab_merge_request
573
+ redmine_gitolite:
574
+ :website: https://github.com/CtrlC-Root/redmine-gitolite
575
+ :repository: https://github.com/CtrlC-Root/redmine-gitolite
576
+ redmine_gitolite_hook:
577
+ :website: https://github.com/kahseng/redmine_gitolite_hook
578
+ :repository: https://github.com/kahseng/redmine_gitolite_hook
579
+ redmine_gitosis:
580
+ :website: http://github.com/rocket-rentals/redmine-gitosis/issues
581
+ :repository: http://github.com/allen13/redmine_gitosis
582
+ redmine_gitrevision_download:
583
+ :website: http://redmine.debuntu.org/projects/gitrevision-download/wiki
584
+ :repository: http://github.com/chantra/redmine_gitrevision_download
585
+ global_roles:
586
+ :website: http://rmplus.pro/en/redmine/plugins/global_roles
587
+ :repository: http://rmplus.pro/en/redmine/plugins/global_roles
588
+ glossary:
589
+ :website: http://www.r-labs.org/projects/rp-glossary/wiki/GlossaryEn
590
+ :repository: http://sourceforge.jp/projects/rp-glossary/releases/
591
+ goals:
592
+ :website: http://rmplus.pro/en/redmine/plugins/goals
593
+ google_analytics_plugin:
594
+ :repository: https://github.com/paginagmbh/redmine-google-analytics-plugin
595
+ google_apps:
596
+ :website: https://github.com/waj/redmine_google_apps
597
+ :repository: https://github.com/waj/redmine_google_apps
598
+ redmine_google_docs_plugin:
599
+ :website: https://github.com/pulse00/redmine_google_docs_plugin
600
+ :repository: git@github.com:pulse00/redmine_google_docs_plugin.git
601
+ groupsassignee:
602
+ :website: https://github.com/lamps/redmine_group_assignee
603
+ :repository: https://github.com/lamps/redmine_group_assignee
604
+ group_of_authors_filter:
605
+ :website: https://bitbucket.org/agaricus/group_of_authors_filter/overview
606
+ :repository: ssh://hg@bitbucket.org/agaricus/group_of_authors_filter
607
+ groupmanager:
608
+ :website: https://github.com/artemasmith/groupmanager.git
609
+ :repository: https://github.com/artemasmith/groupmanager.git
610
+ hackjournals:
611
+ :repository: https://github.com/eckucukoglu/redmine-hack-journals
612
+ haltr:
613
+ :repository: https://github.com/descala/haltr
614
+ redmine_harvest_timelog:
615
+ :website: http://github.com/railsant/redmine_harvest_timelog
616
+ :repository: git://github.com/railsant/redmine_harvest_timelog.git
617
+ redmine_contacts_helpdesk:
618
+ :website: https://www.redmineup.com/pages/plugins/helpdesk
619
+ hide-emails:
620
+ :website: http://development.splendeo.es/projects/redm-hide-emails
621
+ :repository: git://github.com/splendeo/redmine_hide_emails_by_default.git
622
+ redmine_hide_estimated_hours:
623
+ :website: http://return1.at/
624
+ :repository: https://github.com/return1/redmine_hide_estimated_hours
625
+ redmine_hide_estimated_hours_permission:
626
+ :website: https://github.com/javiferrer/redmine_hide_estimated_hours_permission
627
+ :repository: https://github.com/javiferrer/redmine_hide_estimated_hours_permission
628
+ hide_issue_description:
629
+ :website: https://github.com/tkusukawa/hide_issue_description
630
+ :repository: https://github.com/tkusukawa/hide_issue_description
631
+ hide_journal_details:
632
+ :website: https://github.com/nexx512/hide_journal_details
633
+ :repository: https://github.com/nexx512/hide_journal_details
634
+ sidebar_hide:
635
+ :website: https://github.com/bdemirkir/sidebar_hide
636
+ :repository: https://github.com/bdemirkir/sidebar_hide
637
+ hide_user_profile: {}
638
+ ldap_users_sync:
639
+ :website: http://rmplus.pro/en/redmine/plugins/ldap_users_sync
640
+ redmine_hipchat_per_project:
641
+ :website: https://github.com/digitalnatives/redmine_hipchat_per_project
642
+ :repository: https://github.com/digitalnatives/redmine_hipchat_per_project
643
+ holidays:
644
+ :website: https://github.com/IceskYsl/holidays
645
+ :repository: https://github.com/IceskYsl/holidays
646
+ redmine_home_page_redirector:
647
+ :website: https://github.com/jmlagace/redmine_home_page_redirector
648
+ :repository: https://github.com/jmlagace/redmine_home_page_redirector
649
+ redmine_scm_hookhelpers:
650
+ :website: https://github.com/lpirl/redmine_scm_hookhelpers
651
+ :repository: https://github.com/lpirl/redmine_scm_hookhelpersT
652
+ hooks_manager:
653
+ :website: http://projects.andriylesyuk.com/projects/hooks-manager
654
+ :repository: http://subversion.andriylesyuk.com/hooks-manager
655
+ redmine_hoptoad_server_v2:
656
+ :website: https://github.com/milgner/redmine_hoptoad_server_v2/
657
+ :repository: https://github.com/milgner/redmine_hoptoad_server_v2/
658
+ redmine_hotkeys_js:
659
+ :website: https://github.com/sasha-ch/redmine_hotkeys_js
660
+ :repository: https://github.com/sasha-ch/redmine_hotkeys_js
661
+ redmine_hourglass:
662
+ :website: https://github.com/hicknhack-software/redmine_hourglass
663
+ :repository: https://github.com/hicknhack-software/redmine_hourglass
664
+ t-ando_redmine_hudson:
665
+ :website: http://www.r-labs.org/
666
+ :repository: https://bitbucket.org/nobiinu_and/redmine_hudson
667
+ redmine_ical:
668
+ :website: https://orga.fachschaften.org/projects/redmine_ical
669
+ :repository: https://orga.fachschaften.org/projects/redmine_ical/repository
670
+ redmine_idonethis:
671
+ :website: https://github.com/aminland/redmine-idonethis
672
+ :repository: https://github.com/aminland/redmine-idonethis
673
+ image_uploader_2_2_2: {}
674
+ ckfinder_for_redmine: {}
675
+ impasse:
676
+ :website: http://kawasima.github.com/redmine_impasse/
677
+ :repository: https://github.com/kawasima/redmine_impasse/
678
+ redmine_issues_from_excel:
679
+ :website: http://happiestminds.com
680
+ :repository: https://github.com/redminehappiestminds/redmine_issues_from_excel
681
+ importer:
682
+ :website: https://github.com/leovitch/redmine_importer
683
+ :repository: https://github.com/leovitch/redmine_importer
684
+ redmine_improved_searchbox:
685
+ :website: https://github.com/ries-tech/redmine_improved_searchbox
686
+ :repository: https://github.com/ries-tech/redmine_improved_searchbox
687
+ redmine_app_notifications:
688
+ :website: https://github.com/michalvanzura/redmine_app_notifications
689
+ :repository: https://github.com/michalvanzura/redmine_app_notifications
690
+ redminedonayincentify:
691
+ :website: http://www.donay.com/
692
+ :repository: http://svn.donay.com/donay_incentify/downloads/redmine/
693
+ redmine_incoming_emails:
694
+ :website: https://github.com/markwhitfeld/redmine_incoming_emails
695
+ :repository: https://github.com/markwhitfeld/redmine_incoming_emails
696
+ redmine_mail_handler_clean_body_regexp:
697
+ :repository: https://github.com/ahills/redmine_mailclean_regexp
698
+ workflow_initial_status:
699
+ :repository: https://github.com/Jaeder42/InitialStatusRedminePlugin
700
+ initr:
701
+ :repository: https://github.com/descala/initr
702
+ redmine_inline_note_images_plugin:
703
+ :website: https://github.com/anjlab/redmine_inline_note_images_plugin
704
+ :repository: https://github.com/anjlab/redmine_inline_note_images_plugin
705
+ redmine_intouch:
706
+ :website: https://github.com/centosadmin/redmine_intouch
707
+ :repository: https://github.com/centosadmin/redmine_intouch.git
708
+ redmine_contacts_invoices:
709
+ :website: https://www.redmineup.com/pages/plugins/invoices
710
+ issue_repo_history_merge:
711
+ :website: https://github.com/raafael911/issue_repo_history_merge
712
+ :repository: https://github.com/raafael911/issue_repo_history_merge
713
+ redmine_issue_badge:
714
+ :website: https://github.com/akiko-pusu/redmine_issue_badge
715
+ :repository: https://github.com/akiko-pusu/redmine_issue_badge
716
+ redmine_issue_changesets_view_link_github:
717
+ :website: http://github.com/ippeiukai/redmine_issue_changesets_view_link_github
718
+ :repository: http://github.com/ippeiukai/redmine_issue_changesets_view_link_github
719
+ issue_charts:
720
+ :website: https://github.com/masweetman/issue_charts
721
+ :repository: https://github.com/masweetman/issue_charts.git
722
+ redmine_issue_cloner:
723
+ :website: https://github.com/evgenii/redmine_issue_cloner
724
+ :repository: https://github.com/evgenii/redmine_issue_cloner
725
+ closed_date:
726
+ :website: https://github.com/ashton/redmine_closed_issue
727
+ :repository: https://github.com/ashton/redmine_closed_issue
728
+ redmine_percent_done:
729
+ :website: http://redmine-search.com/redmine-issue-done-ratio-plugin
730
+ :repository: https://github.com/jkraemer/redmine_percent_done.git
731
+ redmine_issue_favicon:
732
+ :repository: https://github.com/akiko-pusu/redmine_issue_favicon
733
+ redmine_issue_field_visibility:
734
+ :website: https://github.com/planio-gmbh/redmine_issue_field_visibility
735
+ :repository: https://github.com/planio-gmbh/redmine_issue_field_visibility.git
736
+ redmine_issue_from_message:
737
+ :website: http://www.redmine.org/boards/3/topics/25979
738
+ redmine_issue_history:
739
+ :website: http://apmpc.dp.ua/en/coding/ruby/ruby-on-rails/21-redmine-issue-history.html
740
+ :repository: https://github.com/freedayko/redmine_issue_history
741
+ issue_hot_buttons:
742
+ :website: http://thumbtack-technology.github.com/redmine-issue-hot-buttons/
743
+ :repository: https://github.com/thumbtack-technology/redmine-issue-hot-buttons
744
+ issue_importer_xls:
745
+ :website: http://www.aspiresoftware.in/index.php
746
+ :repository: https://github.com/aspiresoftware/redmine-import-tasks
747
+ involvement_filter:
748
+ :website: https://github.com/commandprompt/redmine_involvement_filter
749
+ :repository: git://github.com/commandprompt/redmine_involvement_filter.git
750
+ issue_mail_with_attachments:
751
+ :website: https://github.com/team888/redmine-issue_mail_with_attachments-plugin
752
+ :repository: https://github.com/team888/redmine-issue_mail_with_attachments-plugin
753
+ issue_notification:
754
+ :website: https://github.com/evgenii/redmine_issue_notification
755
+ :repository: https://github.com/evgenii/redmine_issue_notification
756
+ redmine_issue_open_date:
757
+ :website: https://github.com/centosadmin/redmine_issue_open_date
758
+ :repository: https://github.com/centosadmin/redmine_issue_open_date.git
759
+ issuestats:
760
+ :repository: https://github.com/eckucukoglu/redmine-issue-statistics
761
+ issue-status-auto-open:
762
+ :website: https://github.com/savoirfairelinux/redmine-issue-status-auto-open
763
+ :repository: https://github.com/savoirfairelinux/redmine-issue-status-auto-open
764
+ issue_table_macro: {}
765
+ redmine_issue_tabs:
766
+ :website: http://rmplus.pro/en/redmine/plugins/issue_tabs
767
+ :repository: http://rmplus.pro/en/redmine/plugins/issue_tabs
768
+ redmine_issue_template:
769
+ :website: https://github.com/Undev/redmine_issue_template
770
+ :repository: https://github.com/Undev/redmine_issue_template
771
+ redmine_issue_templates:
772
+ :website: http://www.r-labs.org/projects/issue-template
773
+ :repository: https://github.com/akiko-pusu/redmine_issue_templates
774
+ redmine_issue_todo_lists:
775
+ :website: https://github.com/canidas/redmine_issue_todo_lists
776
+ :repository: https://github.com/canidas/redmine_issue_todo_lists
777
+ itol:
778
+ :website: http://www.wilutions.com/joa/itol.html
779
+ :repository: https://github.com/wolfgangimig/itol
780
+ redmine_vote:
781
+ :website: https://github.com/cforce/redmine_vote
782
+ :repository: https://github.com/cforce/redmine_vote.git
783
+ redmine_issue_weight:
784
+ :website: http://gel.ozguryazilim.com.tr/redmine_issue_weight/
785
+ :repository: http://gel.ozguryazilim.com.tr/redmine_issue_weight/
786
+ issue_id:
787
+ :website: http://projects.andriylesyuk.com/project/redmine/issue-id
788
+ :repository: http://subversion.andriylesyuk.com/issue-id
789
+ issuefy:
790
+ :website: https://github.com/tchx84/issuefy
791
+ :repository: https://github.com/tchx84/issuefy.git
792
+ redmine_issuelimits:
793
+ :website: https://github.com/bodun/redmine_issuelimits
794
+ :repository: https://github.com/bodun/redmine_issuelimits
795
+ joomla-redmine-bridge: {}
796
+ redmine_json_rpc:
797
+ :website: http://trs.io
798
+ :repository: https://github.com/TeamRocketScience/redmine_json_rpc
799
+ redmine_jstoolbar_ext_buttons:
800
+ :website: https://github.com/tleish/redmine_jstoolbar_ext_buttons
801
+ :repository: https://github.com/tleish/redmine_jstoolbar_ext_buttons.git
802
+ redmine_jstoolbar_ext_coderay:
803
+ :website: https://github.com/tleish/redmine_jstoolbar_ext_coderay
804
+ :repository: https://github.com/tleish/redmine_jstoolbar_ext_coderay.git
805
+ redmine_jstoolbar_ext_images:
806
+ :website: https://github.com/tleish/redmine_jstoolbar_ext_images
807
+ :repository: https://github.com/tleish/redmine_jstoolbar_ext_images.git
808
+ kanbantool:
809
+ :website: www.gyselroth.com
810
+ :repository: https://github.com/gyselroth/redmine-plugin-kanbantool
811
+ redmine_knowledgebase:
812
+ :website: https://github.com/alexbevi/redmine_knowledgebase
813
+ :repository: https://github.com/alexbevi/redmine_knowledgebase
814
+ kpi:
815
+ :website: http://rmplus.pro/en/redmine/plugins/kpi
816
+ landing_page:
817
+ :website: https://github.com/biow0lf/redmine_landing_page
818
+ :repository: https://github.com/biow0lf/redmine_landing_page.git
819
+ language_fallback:
820
+ :website: http://github.com/friflaj/redmine_language_fallback
821
+ :repository: http://github.com/friflaj/redmine_language_fallback
822
+ latch:
823
+ :website: https://latch.elevenpaths.com
824
+ :repository: https://github.com/ElevenPaths/latch-plugin-redmine
825
+ redmine_last_messages:
826
+ :website: http://www.redmine.org/projects/redmine/wiki/PluginLatestForumMessages
827
+ latest-issues:
828
+ :website: http://www.gogolek.co.uk/projects/latest-issues-redmine-plugin
829
+ :repository: https://github.com/kgogolek/latest-issues-redmine-plugin
830
+ redmine_gemavatar:
831
+ :website: https://bitbucket.org/celebdor/gemavatar/
832
+ :repository: https://bitbucket.org/celebdor/gemavatar/
833
+ gemavatar:
834
+ :website: https://gitlab.com/aguarino/gemavatar
835
+ :repository: https://gitlab.com/aguarino/gemavatar
836
+ geminfo:
837
+ :website: https://bitbucket.org/celebdor/geminfo
838
+ :repository: https://bitbucket.org/celebdor/geminfo
839
+ ldap-ou-to-group:
840
+ :website: https://github.com/yzhanginwa/redmine_ldap_ou_to_group
841
+ :repository: https://github.com/yzhanginwa/redmine_ldap_ou_to_group
842
+ redmine_ld_rize:
843
+ :website: https://github.com/matobaa/redmine_ld_rize
844
+ :repository: https://github.com/matobaa/redmine_ld_rize
845
+ leave_management_system:
846
+ :website: http://www.logicmatter.com
847
+ :repository: https://github.com/johnson-logicmatter/leave_management_system
848
+ redmine_lightbox2:
849
+ :website: https://github.com/paginagmbh/redmine_lightbox2
850
+ :repository: https://github.com/paginagmbh/redmine_lightbox2.git
851
+ redmine_lightbox:
852
+ :website: http://www.rb2.nl
853
+ :repository: https://github.com/zipme/redmine_lightbox
854
+ like:
855
+ :website: http://projects.andriylesyuk.com/projects/like-button
856
+ :repository: http://subversion.andriylesyuk.com/like-button
857
+ linked_time_entries:
858
+ :repository: https://github.com/sharpyfox/linked_time_entries.git
859
+ list-of-roles-members:
860
+ :website: https://github.com/savoirfairelinux/redmine-list-of-roles-members
861
+ :repository: https://github.com/savoirfairelinux/redmine-list-of-roles-members
862
+ redmine_local_avatars_003:
863
+ :website: https://github.com/Syr3f/redmine_local_avatars_003
864
+ :repository: https://github.com/Syr3f/redmine_local_avatars_003/tarball/master
865
+ localizable:
866
+ :website: https://redmine.ociotec.com/projects/localizable
867
+ :repository: https://redmine.ociotec.com/projects/localizable/files
868
+ redmine_login_audit:
869
+ :website: http://martin-denizet.com
870
+ :repository: https://github.com/martin-denizet/redmine_login_audit
871
+ login_attempts_limit:
872
+ :website: https://github.com/midnightSuyama/redmine_login_attempts_limit
873
+ :repository: https://github.com/midnightSuyama/redmine_login_attempts_limit
874
+ redmine_logs:
875
+ :website: http://www.r-labs.org/projects/r-labs/wiki/Logs_en
876
+ :repository: https://github.com/haru/redmine_logs
877
+ redmine_osx_ids:
878
+ :website: http://www.briandwells.com/main/Blog/Entries/2009/12/19_Redmine_authentication_plugin_for_Mac_OS_X.html
879
+ :repository: https://github.com/brianwells/redmine_osx_ids
880
+ magic_my_page:
881
+ :website: http://rmplus.pro/en/redmine/plugins/magic_my_page
882
+ mail_shaper:
883
+ :website: http://gel.ozguryazilim.com.tr/redmine_mail_shaper/
884
+ :repository: http://gel.ozguryazilim.com.tr/redmine_mail_shaper/
885
+ redmine_mailstatus:
886
+ :website: https://github.com/jbutz/redmine_mailstatus
887
+ :repository: https://github.com/jbutz/redmine_mailstatus
888
+ redmine_maintenance_mode:
889
+ :repository: https://github.com/tofi86/redmine_maintenance_mode
890
+ manage_wiki_view_page_permission:
891
+ :website: http://www.systango.com
892
+ :repository: https://github.com/stpl/manage_wiki_view_page_permission
893
+ m2r:
894
+ :website: http://mantis2redmine.com
895
+ :repository: http://mantis2redmine.com
896
+ meetings:
897
+ :website: https://github.com/integra-consultores/meetings
898
+ :repository: https://github.com/integra-consultores/meetings
899
+ redmine_meetings:
900
+ :website: https://github.com/amartel/redmine_meetings
901
+ :repository: git://github.com/amartel/redmine_meetings.git
902
+ mega_calendar:
903
+ :website: http://www.devbert.de/index.php/en/project/megacalendar/
904
+ :repository: https://github.com/berti92/mega_calendar
905
+ redmine_mermaid_macro:
906
+ :website: https://github.com/taikii/redmine_mermaid_macro
907
+ :repository: https://github.com/taikii/redmine_mermaid_macro
908
+ meta:
909
+ :website: http://projects.andriylesyuk.com//projects/meta
910
+ :repository: http://subversion.andriylesyuk.com/meta
911
+ redmine_msteams:
912
+ :website: https://github.com/simplethings/redmine-msteams
913
+ :repository: https://github.com/simplethings/redmine-msteams.git
914
+ redmine_milestones:
915
+ :website: http://redminecrm.com
916
+ :repository: git://github.com/k41n/redmine_milestones.git
917
+ modal_windows:
918
+ :website: http://rmplus.pro
919
+ :repository: https://github.com/dkuk/modal_windows
920
+ monitoring-controlling:
921
+ :website: http://alexmonteiro.github.com/Redmine-Monitoring-Controlling/
922
+ :repository: https://github.com/alexmonteiro/Redmine-Monitoring-Controlling
923
+ redmine_move_comments:
924
+ :website: https://github.com/VoronyukM/redmine_move_comments
925
+ :repository: https://github.com/VoronyukM/redmine_move_comments
926
+ redmine_document_move:
927
+ :website: https://github.com/smoreau/redmine_document_move
928
+ :repository: https://github.com/smoreau/redmine_document_move
929
+ redmine_multi_calendar:
930
+ :website: https://github.com/ksfltd/redmine_multi_calendar
931
+ :repository: git@github.com:ksfltd/redmine_multi_calendar.git
932
+ redmine_multi_hosts:
933
+ :website: https://github.com/florianeck/redmine_multi_hosts
934
+ :repository: https://github.com/florianeck/redmine_multi_hosts
935
+ multi_time_tracker:
936
+ :website: https://github.com/raafael911/multi_time_tracker
937
+ :repository: https://github.com/raafael911/multi_time_tracker
938
+ redmine_multiprojects_issue:
939
+ :website: https://github.com/nanego/redmine_multiprojects_issue
940
+ :repository: https://github.com/nanego/redmine_multiprojects_issue
941
+ redmine_multipass:
942
+ :website: https://github.com/jozefvaclavik/redmine_multipass
943
+ :repository: https://github.com/jozefvaclavik/redmine_multipass
944
+ redmine_multiple_files_upload:
945
+ :website: http://www.redmine.org/boards/3/topics/29794
946
+ my_page_queries:
947
+ :website: http://github.com/alvila/redmine_my_page_queries
948
+ :repository: http://github.com/alvila/redmine_my_page_queries
949
+ redmine_my_page_queries:
950
+ :website: https://github.com/AllTaken/redmine_my_page_queries
951
+ :repository: https://github.com/AllTaken/redmine_my_page_queries
952
+ my_projects:
953
+ :website: https://github.com/peelman/my_projects
954
+ :repository: https://github.com/peelman/my_projects
955
+ gsc_my_projects:
956
+ :website: https://github.com/generaldesoftware/RedMine-My-Projects-Plugin#readme
957
+ :repository: https://github.com/generaldesoftware/RedMine-My-Projects-Plugin
958
+ my_roadmaps:
959
+ :website: http://www.redmine.org/plugins/my_roadmaps
960
+ :repository: https://github.com/clueware/redmine_my_roadmaps
961
+ newissuealertlist:
962
+ :website: https://github.com/jbutz/newissuealertlist
963
+ :repository: https://github.com/jbutz/newissuealertlist
964
+ redmine_newissuealerts:
965
+ :website: http://github.com/chantra/redmine_newissuealerts
966
+ :repository: http://github.com/chantra/redmine_newissuealerts
967
+ redmine_create_wiki_page:
968
+ :website: https://github.com/peplin/redmine_create_wiki_page
969
+ :repository: https://github.com/peplin/redmine_create_wiki_page
970
+ niko_cale:
971
+ :website: https://github.com/YukiKita/redmine_niko_cale
972
+ :repository: https://github.com/YukiKita/redmine_niko_cale
973
+ redmine_nikoniko_calendar2:
974
+ :website: https://github.com/piccagliani/redmine_nikoniko_calendar2
975
+ :repository: https://github.com/piccagliani/redmine_nikoniko_calendar2
976
+ redmine_non_member_watcher:
977
+ :website: https://github.com/Undev/redmine_non_member_watcher
978
+ :repository: https://github.com/Undev/redmine_non_member_watcher
979
+ notifo:
980
+ :website: https://github.com/taktsoft/redmine_notifo
981
+ :repository: https://github.com/taktsoft/redmine_notifo
982
+ notify_custom_users:
983
+ :website: https://github.com/Undev/notify_custom_users
984
+ :repository: https://github.com/Undev/notify_custom_users
985
+ nu_mobile_viewer:
986
+ :website: http://www.nunet.co.jp/redmine/
987
+ :repository: https://github.com/NunetInc/redmine_nu_mobile_viewer
988
+ object-storage-plugin:
989
+ :website: https://github.com/nttcom/redmine_objectstorage
990
+ :repository: https://github.com/nttcom/redmine_objectstorage.git
991
+ redmine_omniauth_cas:
992
+ :website: http://github.com/jbbarth/redmine_omniauth_cas
993
+ :repository: http://github.com/jbbarth/redmine_omniauth_cas
994
+ once_assigned_ever_watcher:
995
+ :website: https://github.com/raafael911/redmine_once_assigned_ever_watcher
996
+ :repository: https://github.com/raafael911/redmine_once_assigned_ever_watcher
997
+ redmine_open_links_in_new_window:
998
+ :website: https://github.com/Undev/redmine_open_links_in_new_window
999
+ :repository: https://github.com/Undev/redmine_open_links_in_new_window
1000
+ redmine_openid_connect:
1001
+ :website: https://github.com/devopskube/redmine_openid_connect
1002
+ :repository: https://github.com/devopskube/redmine_openid_connect
1003
+ openid_fix:
1004
+ :website: http://projects.andriylesyuk.com/projects/openid-fix
1005
+ :repository: http://subversion.andriylesyuk.com/openid-fix
1006
+ openid-selector:
1007
+ :website: http://projects.jorgebg.com/projects/redmine-openid-selector
1008
+ :repository: https://github.com/jorgebg/redmine-openid-selector
1009
+ openpgp:
1010
+ :website: https://github.com/C3S/redmine_openpgp/blob/master/README.rst
1011
+ :repository: https://github.com/C3S/redmine_openpgp
1012
+ redmine_opensearch:
1013
+ :website: http://dev.holgerjust.de/projects/redmine-opensearch/wiki
1014
+ :repository: http://dev.holgerjust.de/projects/redmine-opensearch/repository
1015
+ orangutan:
1016
+ :website: http://projects.andriylesyuk.com/projects/orangutan
1017
+ :repository: http://subversion.andriylesyuk.com/orangutan/
1018
+ outlook_redmine_issue_creator_addin:
1019
+ :website: https://github.com/raidensan/RedMineIssueCreator
1020
+ :repository: https://github.com/raidensan/RedMineIssueCreator
1021
+ redmine_msg_preview:
1022
+ :website: http://www.alexbevi.com/projects/redmine-msg-preview
1023
+ :repository: https://github.com/alexbevi/redmine_msg_preview
1024
+ redmine_parent_issue_filter:
1025
+ :website: https://github.com/onozaty/redmine-parent-issue-filter
1026
+ :repository: https://github.com/onozaty/redmine-parent-issue-filter
1027
+ parking-lot-chart:
1028
+ :website: http://daipresents.com/2010/redmine_parking_lot_chart_plugin/
1029
+ :repository: https://github.com/daipresents/redmine_parking_lot_chart
1030
+ redmine_image_clipboard_paste:
1031
+ :website: https://github.com/thorin/redmine_image_clipboard_paste
1032
+ :repository: https://github.com/thorin/redmine_image_clipboard_paste
1033
+ pastebin:
1034
+ :website: https://github.com/commandprompt/redmine_pastebin
1035
+ :repository: git://github.com/commandprompt/redmine_pastebin.git
1036
+ pastime: {}
1037
+ redmine_people:
1038
+ :website: https://www.redmineup.com/pages/plugins/people
1039
+ per-project-formatting:
1040
+ :website: https://github.com/a-ono/redmine_per_project_formatting
1041
+ :repository: https://github.com/a-ono/redmine_per_project_formatting
1042
+ redmine_periodic_task:
1043
+ :website: https://github.com/jperelli/Redmine-Periodic-Task/
1044
+ :repository: https://github.com/jperelli/Redmine-Periodic-Task/
1045
+ periodictasks:
1046
+ :website: https://github.com/myneid/Redmine-Periodic-Task
1047
+ :repository: git://github.com/myneid/Redmine-Periodic-Task.git
1048
+ permission_to_upload: {}
1049
+ plantuml:
1050
+ :website: https://github.com/dkd/plantuml
1051
+ :repository: https://github.com/dkd/plantuml
1052
+ redmine_print_issue:
1053
+ :website: https://github.com/tacid/redmine_print_issue
1054
+ :repository: https://github.com/tacid/redmine_print_issue
1055
+ redmine_plugin_views_revisions:
1056
+ :website: http://www.redmine.org/boards/3/topics/31183
1057
+ plus_gantt:
1058
+ :website: https://github.com/luciof55/plus_gantt/wiki/Plus-Gantt
1059
+ :repository: https://github.com/luciof55/plus_gantt
1060
+ redmine_postgresql_search:
1061
+ :website: http://redmine-search.com/
1062
+ :repository: https://github.com/jkraemer/redmine_postgresql_search.git
1063
+ redmine_fulmo_helper:
1064
+ :website: http://ciklone.com/en/fulmo/
1065
+ :repository: https://github.com/opengroove/redmine_fulmo_helper
1066
+ pretty_news_urls:
1067
+ :website: https://github.com/ethackal/redmine-pretty-news-urls-plugin
1068
+ :repository: https://github.com/ethackal/redmine-pretty-news-urls-plugin
1069
+ redmine_preview_attach_column:
1070
+ :website: http://www.redmine.org/boards/3/topics/29795
1071
+ redmine_priorities_duedate_js:
1072
+ :website: https://github.com/cmrd-senya/redmine_priorities_duedate_js
1073
+ :repository: https://github.com/cmrd-senya/redmine_priorities_duedate_js
1074
+ private_note_enforcement:
1075
+ :website: https://github.com/githubnemo/Redmine-Private-Note-Enforcment
1076
+ :repository: https://github.com/githubnemo/Redmine-Private-Note-Enforcment
1077
+ private_wiki:
1078
+ :website: https://github.com/f0y/redmine_private_wiki
1079
+ :repository: https://github.com/f0y/redmine_private_wiki
1080
+ process_framework: {}
1081
+ redmine_products:
1082
+ :website: https://www.redmineup.com/pages/plugins/products
1083
+ redmine_profile_email_domain_whitelist:
1084
+ :website: https://github.com/Undev/redmine_profile_email_domain_whitelist
1085
+ :repository: https://github.com/Undev/redmine_profile_email_domain_whitelist
1086
+ progressive-projects-list:
1087
+ :website: http://stgeneral.github.io/redmine-progressive-projects-list/
1088
+ :repository: https://github.com/stgeneral/redmine-progressive-projects-list
1089
+ project_section:
1090
+ :website: http://projects.andriylesyuk.com/projects/project-sections
1091
+ :repository: http://subversion.andriylesyuk.com/project-sections
1092
+ project_colors:
1093
+ :website: https://gitlab.graph-ic.org/manolopm/project_colors
1094
+ :repository: https://gitlab.graph-ic.org/manolopm/project_colors
1095
+ redmine_custom_values_per_project:
1096
+ :website: https://github.com/javiferrer/redmine_custom_values_projects
1097
+ :repository: https://github.com/javiferrer/redmine_custom_values_projects
1098
+ project-filter:
1099
+ :website: http://development.splendeo.es/projects/redm-project-filter
1100
+ :repository: git://github.com/splendeo/redmine_project_filtering.git
1101
+ redmine_project_filtering:
1102
+ :repository: https://github.com/bluezio/redmine_project_filtering
1103
+ project_alias:
1104
+ :website: http://projects.andriylesyuk.com/projects/project-alias
1105
+ :repository: http://subversion.andriylesyuk.com/project-alias
1106
+ redmine_project_alias_2:
1107
+ :website: https://github.com/paginagmbh/redmine_project_alias_2
1108
+ :repository: https://github.com/paginagmbh/redmine_project_alias_2.git
1109
+ project_overview:
1110
+ :website: https://github.com/mbasset/project_overview
1111
+ :repository: git@github.com:mbasset/project_overview.git
1112
+ project_removal:
1113
+ :website: http://projects.andriylesyuk.com/projects/project-removal
1114
+ :repository: http://subversion.andriylesyuk.com/project-removal
1115
+ redmine_project_team:
1116
+ :website: https://bitbucket.org/eauvinet/redmine_project_team
1117
+ :repository: https://bitbucket.org/eauvinet/redmine_project_team
1118
+ redmine-projects-accordion:
1119
+ :website: http://reuben.mallaby.me
1120
+ :repository: https://github.com/reubenmallaby/redmine_projects_accordion
1121
+ projects_show:
1122
+ :website: http://github.com/speedy32129/projects_show
1123
+ :repository: http://github.com/speedy32129/projects_show
1124
+ projects_table:
1125
+ :website: https://github.com/denispeplin/redmine-projects-table
1126
+ :repository: https://github.com/denispeplin/redmine-projects-table
1127
+ projects_tracker:
1128
+ :website: https://github.com/praveen0202/redmine_projects_tracker
1129
+ :repository: https://github.com/praveen0202/redmine_projects_tracker
1130
+ projectstreeview:
1131
+ :website: http://www.redmine.org/boards/3/topics/4645
1132
+ :repository: https://github.com/cforce/projects_tree_view/network
1133
+ projectstyle:
1134
+ :website: http://nestor.opensequoia.net/redmineplugins/
1135
+ redmine_pushover:
1136
+ :website: http://redmine-search.com/pushover
1137
+ :repository: https://github.com/jkraemer/redmine_pushover.git
1138
+ redmine_questions:
1139
+ :website: https://www.redmineup.com/pages/plugins/questions
1140
+ redmine_qa_contact:
1141
+ :website: https://github.com/kushali/redmine_qa_contact
1142
+ :repository: https://github.com/kushali/redmine_qa_contact
1143
+ redmine_quarter:
1144
+ :website: https://github.com/lefin17/wiki
1145
+ :repository: https://github.com/lefin17/quarter
1146
+ query_with_version:
1147
+ :website: https://github.com/tq-jappy/redmine_query_with_version
1148
+ :repository: https://github.com/tq-jappy/redmine_query_with_version
1149
+ question_plugin:
1150
+ :website: https://github.com/integra-consultores/questions
1151
+ :repository: https://github.com/integra-consultores/questions
1152
+ quick_edit:
1153
+ :website: https://sourceforge.jp/projects/quickedit/simple/
1154
+ :repository: git://git.sourceforge.jp/gitroot/quickedit/quick_edit.git
1155
+ quick_add_issue:
1156
+ :website: http://everlabs.com/
1157
+ :repository: https://github.com/everlabs/quick_issue
1158
+ quick-project-planner:
1159
+ :website: http://www.easyredmine.com/
1160
+ quick_view:
1161
+ :website: http://sourceforge.jp/projects/quickedit/releases/p14327
1162
+ :repository: git://git.sourceforge.jp/gitroot/quickedit/quick_view.git
1163
+ wiki_r_plugin:
1164
+ :website: https://github.com/cdwertmann/redmine_wiki_r_plugin
1165
+ :repository: git://github.com/cdwertmann/redmine_wiki_r_plugin.git
1166
+ redmine_rd_formatter:
1167
+ :website: http://github.com/yugui/redmine_rd_formatter
1168
+ :repository: http://github.com/yugui/redmine_rd_formatter
1169
+ readme_at_repositories:
1170
+ :website: https://github.com/simeji/readme_at_repositories
1171
+ :repository: https://github.com/simeji/readme_at_repositories
1172
+ recaptcha:
1173
+ :website: https://github.com/cdwertmann/recaptcha
1174
+ :repository: https://github.com/cdwertmann/recaptcha.git
1175
+ receive_imap_emails_anonymously_patch:
1176
+ :website: https://bitbucket.org/arnekolja/receive-imap-emails-anonymously-redmine-plugin
1177
+ :repository: https://bitbucket.org/arnekolja/receive-imap-emails-anonymously-redmine-plugin
1178
+ redmine_recurring_tasks:
1179
+ :website: https://github.com/centosadmin/redmine_recurring_tasks
1180
+ :repository: https://github.com/centosadmin/redmine_recurring_tasks.git
1181
+ recurring-tasks:
1182
+ :website: https://github.com/nutso/redmine-plugin-recurring-tasks
1183
+ :repository: https://github.com/nutso/redmine-plugin-recurring-tasks
1184
+ redcase:
1185
+ :website: https://github.com/bugzinga/redcase
1186
+ :repository: https://github.com/bugzinga/redcase.git
1187
+ reddrop:
1188
+ :website: https://github.com/alrick/Reddrop
1189
+ :repository: https://github.com/alrick/Reddrop
1190
+ redfire:
1191
+ :website: https://github.com/carlosbrb/redfire
1192
+ :repository: https://github.com/carlosbrb/redfire
1193
+ redhopper:
1194
+ :website: https://git.framasoft.org/infopiiaf/redhopper/blob/master/README.md
1195
+ :repository: https://git.framasoft.org/infopiiaf/redhopper
1196
+ red_jenkins:
1197
+ :website: https://github.com/Pepperrs/red_jenkins
1198
+ :repository: https://github.com/Pepperrs/red_jenkins
1199
+ redmine_rubycas:
1200
+ :repository: https://github.com/brandonaaron/redmine_rubycas
1201
+ redmine4cs:
1202
+ :website: https://cryptostocks.com
1203
+ :repository: https://github.com/Cryptostocks/redmine4cs
1204
+ redmine_account_lockable:
1205
+ :website: https://github.com/matsukei/redmine_account_lockable
1206
+ :repository: https://github.com/matsukei/redmine_account_lockable.git
1207
+ redmine_account_policy:
1208
+ :website: https://github.com/go2null/redmine_account_policy
1209
+ :repository: https://github.com/go2null/redmine_account_policy
1210
+ redmine_activerecord_session_store:
1211
+ :repository: https://github.com/pencil/redmine_activerecord_session_store
1212
+ redmine_add_to_calendar:
1213
+ :website: https://github.com/hidakatsuya/redmine_add_to_calendar
1214
+ :repository: https://github.com/hidakatsuya/redmine_add_to_calendar
1215
+ redmine_admin_access:
1216
+ :website: https://github.com/xeagle2/redmine_admin_access
1217
+ :repository: https://github.com/xeagle2/redmine_admin_access
1218
+ redmine_all_files:
1219
+ :website: https://github.com/twinslash/redmine_all_files
1220
+ :repository: https://github.com/twinslash/redmine_all_files
1221
+ redmine_amp:
1222
+ :website: https://github.com/yoshida-mediba/redmine_amp
1223
+ redmine_analytics:
1224
+ :website: https://github.com/dchbx/redmine_analytics
1225
+ :repository: https://github.com/dchbx/redmine_analytics
1226
+ redmine_another_page:
1227
+ :website: https://github.com/BlueXML/redmine_another_page
1228
+ :repository: https://github.com/BlueXML/redmine_another_page
1229
+ redmine_attach_screenshot_2:
1230
+ :website: https://bitbucket.org/StrangeWill/redmine-inline-attach-screenshot/
1231
+ :repository: https://bitbucket.org/StrangeWill/redmine-inline-attach-screenshot/
1232
+ redmine_audit:
1233
+ :repository: https://github.com/sho-h/redmine_audit
1234
+ redmine_auto_assign_group:
1235
+ :website: https://github.com/two-pack/redmine_auto_assign_group
1236
+ :repository: https://github.com/two-pack/redmine_auto_assign_group
1237
+ redmine-autowatch:
1238
+ :website: https://github.com/ZIMK/Redmine-AutoWatch
1239
+ :repository: https://github.com/ZIMK/Redmine-AutoWatch.git
1240
+ redmine: {}
1241
+ redmine_bitbucket:
1242
+ :website: https://bitbucket.org/steveqian/redmine_bitbucket
1243
+ :repository: https://bitbucket.org/steveqian/redmine_bitbucket
1244
+ redmine_boards:
1245
+ :website: https://github.com/liwei78/redmine_boards
1246
+ :repository: https://github.com/liwei78/redmine_boards.git
1247
+ redmine_bonds:
1248
+ :website: http://smart-story.ru/products/software/redmine-bonds/
1249
+ redmine_bootstrap:
1250
+ :website: https://github.com/reubenmallaby/redmine_bootstrap
1251
+ :repository: https://github.com/reubenmallaby/redmine_bootstrap
1252
+ redmine_bootstrap_kit:
1253
+ :website: http://jbox-web.github.io/redmine_bootstrap_kit/
1254
+ :repository: https://github.com/jbox-web/redmine_bootstrap_kit
1255
+ redmine_bootstrap2:
1256
+ :website: http://sandeepleo11.blogspot.in/2014/11/redmine-bootstrap-theme.html
1257
+ redmine_budget:
1258
+ :website: http://redmineplugins.omegacode.pl/redmine_budget
1259
+ redmine_buildbot:
1260
+ :website: http://subforge.org/projects/redmine_buildbot/wiki
1261
+ :repository: http://hg.subforge.org/redmine_buildbot/
1262
+ redmine_bulk_user_assignments:
1263
+ :website: https://github.com/oregonstateuniv/Redmine-Bulk-User-Assignments
1264
+ :repository: https://github.com/oregonstateuniv/Redmine-Bulk-User-Assignments.git
1265
+ redmine-calculators:
1266
+ :website: https://www.easyredmine.com/redmine-calculators
1267
+ redmine_cancel_button:
1268
+ :website: https://github.com/kfranckiewicz/redmine_cancel_button/wiki
1269
+ :repository: https://github.com/kfranckiewicz/redmine_cancel_button
1270
+ redmine-cas:
1271
+ :website: https://github.com/ninech/redmine_cas
1272
+ :repository: https://github.com/ninech/redmine_cas
1273
+ redmine_category_tree:
1274
+ :website: https://github.com/bpat1434/redmine_category_tree
1275
+ :repository: https://github.com/bpat1434/redmine_category_tree
1276
+ redmine_chat:
1277
+ :website: https://bitbucket.org/39648421
1278
+ :repository: https://bitbucket.org/39648421/redmine_chat
1279
+ redmine-chat:
1280
+ :website: https://www.easyredmine.com/redmine-chat
1281
+ redmine_chatwork:
1282
+ :website: https://github.com/hokkey/redmine_chatwork
1283
+ :repository: https://github.com/hokkey/redmine_chatwork
1284
+ redmine_chuck_norris:
1285
+ :website: http://www.zuinqstudio.com
1286
+ :repository: https://github.com/zuinqstudio/redmine_chuck_norris
1287
+ ckeditor:
1288
+ :website: https://github.com/a-ono/redmine_ckeditor
1289
+ :repository: https://github.com/a-ono/redmine_ckeditor
1290
+ redmine_cmis:
1291
+ :website: http://www.zuinqstudio.com
1292
+ :repository: https://github.com/zuinqstudio/redmine_cmis
1293
+ redmine_codemirror:
1294
+ :website: https://github.com/gjroelofs/redmine_codemirror
1295
+ :repository: https://github.com/gjroelofs/redmine_codemirror
1296
+ redmine_commentary_order_patch:
1297
+ :website: https://github.com/BlueXML/redmine_commentary_order_patch
1298
+ :repository: https://github.com/BlueXML/redmine_commentary_order_patch
1299
+ common_mark:
1300
+ :website: https://github.com/okkez/redmine_common_mark
1301
+ :repository: https://github.com/okkez/redmine_common_mark
1302
+ redmine_contacter:
1303
+ :website: https://github.com/jperelli/redmine_contacter
1304
+ :repository: https://github.com/jperelli/redmine_contacter
1305
+ redmine_contracts_with_time_tracking:
1306
+ :website: https://github.com/upgradeya/redmine-contracts-with-time-tracking-plugin
1307
+ :repository: https://github.com/upgradeya/redmine-contracts-with-time-tracking-plugin
1308
+ redmine_cors:
1309
+ :website: https://github.com/mavimo/redmine_cors
1310
+ :repository: https://github.com/mavimo/redmine_cors
1311
+ binzh_redmine_crowd:
1312
+ :website: https://github.com/binzh/redmine_crowd
1313
+ :repository: https://github.com/binzh/redmine_crowd.git
1314
+ redmine_crowd:
1315
+ :website: https://github.com/bpaquet/redmine-crowd-plugin
1316
+ :repository: https://github.com/bpaquet/redmine-crowd-plugin
1317
+ redmine_currency:
1318
+ :website: http://smart-story.ru/products/software/redmine-currency/
1319
+ redmine_custom_auto_complete:
1320
+ :website: https://github.com/taikii/redmine_custom_auto_complete
1321
+ :repository: https://github.com/taikii/redmine_custom_auto_complete
1322
+ redmine_custom_field_hints:
1323
+ :website: https://github.com/bpat1434/redmine_custom_field_hints
1324
+ :repository: https://github.com/bpat1434/redmine_custom_field_hints
1325
+ customrecipients: {}
1326
+ redmine_custom_view_assigned:
1327
+ :website: http://alexbocharov.github.io/redmine_custom_view_assigned
1328
+ :repository: https://github.com/alexbocharov/redmine_custom_view_assigned.git
1329
+ redmine_customize:
1330
+ :website: https://github.com/Undev/redmine_customize
1331
+ :repository: https://github.com/Undev/redmine_customize
1332
+ redmine_cut_tag:
1333
+ :website: https://github.com/Undev/redmine_cut_tag
1334
+ :repository: https://github.com/Undev/redmine_cut_tag
1335
+ redmine_danthes:
1336
+ :website: http://jbox-web.github.io/redmine_danthes/
1337
+ :repository: https://github.com/jbox-web/redmine_danthes
1338
+ redmine-daily-workload-management:
1339
+ :website: https://github.com/DefaultValue/redmine-daily-workload-management
1340
+ :repository: https://github.com/DefaultValue/redmine-daily-workload-management
1341
+ redmine-dashboard:
1342
+ :website: https://github.com/jgraichen/redmine_dashboard/tree/stable-v2#readme
1343
+ :repository: https://github.com/jgraichen/redmine_dashboard
1344
+ redmine_datetime_macro:
1345
+ :website: https://github.com/giner/helplinux/tree/master/redmine_plugins/redmine_datetime_macro
1346
+ :repository: https://github.com/giner/helplinux/tree/master/redmine_plugins/redmine_datetime_macro
1347
+ redmine_default_custom_query:
1348
+ :website: https://github.com/hidakatsuya/redmine_default_custom_query
1349
+ :repository: https://github.com/hidakatsuya/redmine_default_custom_query
1350
+ redmine_default_members:
1351
+ :website: http://jbox-web.github.io/redmine_default_members/
1352
+ :repository: https://github.com/jbox-web/redmine_default_members
1353
+ redmine_diff_popup:
1354
+ :website: https://github.com/GEROMAX
1355
+ :repository: https://github.com/GEROMAX/redmine_diff_popup
1356
+ redmine_digest:
1357
+ :website: https://github.com/Undev/redmine_digest
1358
+ :repository: https://github.com/Undev/redmine_digest
1359
+ redmine_digest_auth:
1360
+ :website: https://github.com/matsukei/redmine_digest_auth
1361
+ :repository: https://github.com/matsukei/redmine_digest_auth.git
1362
+ redmine_plugin_display_role:
1363
+ :website: https://github.com/mas0061/redmine_plugin_display_role
1364
+ :repository: https://github.com/mas0061/redmine_plugin_display_role
1365
+ redmine_docson:
1366
+ :website: https://github.com/mikitex70/redmine_docson
1367
+ :repository: https://github.com/mikitex70/redmine_docson.git
1368
+ redmine_documents:
1369
+ :website: https://github.com/darioo/redmine_documents
1370
+ :repository: https://github.com/darioo/redmine_documents.git
1371
+ redmine_draw_erd:
1372
+ :website: http://ogom.github.io/redmine_draw_erd
1373
+ :repository: https://github.com/ogom/redmine_draw_erd
1374
+ redmine_drawio:
1375
+ :website: https://github.com/mikitex70/redmine_drawio
1376
+ :repository: https://github.com/mikitex70/redmine_drawio.git
1377
+ redmine_drop_box:
1378
+ :website: http://www.zuinqstudio.com
1379
+ :repository: https://github.com/zuinqstudio/redmine_drop_box
1380
+ redmine_due_date_by_default:
1381
+ :website: http://trs.io
1382
+ :repository: https://github.com/TeamRocketScience/redmine_due_date_by_default
1383
+ redmine_dynamic_file_link:
1384
+ :website: https://github.com/jongha/redmine_dynamic_file_link
1385
+ :repository: https://github.com/jongha/redmine_dynamic_file_link
1386
+ redmine_easy_tracker_assignation:
1387
+ :website: https://github.com/BlueXML/redmine_easy_tracker_assignation
1388
+ :repository: https://github.com/BlueXML/redmine_easy_tracker_assignation
1389
+ redmine_editauthor:
1390
+ :website: https://github.com/rgtk/redmine_editauthor
1391
+ :repository: https://github.com/rgtk/redmine_editauthor
1392
+ editauthor: {}
1393
+ redmine_email_images:
1394
+ :website: https://github.com/dkalachov/redmine_email_images
1395
+ :repository: https://github.com/dkalachov/redmine_email_images
1396
+ redmine_pyreminder:
1397
+ :website: http://clayzermk1.github.com/Redmine-PyReminder
1398
+ :repository: https://github.com/clayzermk1/Redmine-PyReminder
1399
+ redmine-embedded:
1400
+ :website: https://github.com/reubenmallaby/redmine_embedded
1401
+ :repository: https://github.com/reubenmallaby/redmine_embedded
1402
+ redmine-equipment:
1403
+ :website: http://smart-story.ru/products/software/redmine-equipment/
1404
+ redmine_extended_project_roles:
1405
+ :website: https://github.com/BlueXML/redmine_extended_project_roles
1406
+ :repository: https://github.com/BlueXML/redmine_extended_project_roles
1407
+ redmine-fixed-header:
1408
+ :website: https://github.com/YujiSoftware/redmine-fixed-header
1409
+ :repository: https://github.com/YujiSoftware/redmine-fixed-header
1410
+ redmine_freshbooks:
1411
+ :website: https://github.com/phsr/redmine_freshbooks
1412
+ :repository: https://github.com/phsr/redmine_freshbooks
1413
+ redmine_git_branch_hook:
1414
+ :website: https://github.com/mikoto20000/redmine_git_branch_hook
1415
+ redmine_git_hosting:
1416
+ :website: http://redmine-git-hosting.io/
1417
+ :repository: https://github.com/jbox-web/redmine_git_hosting
1418
+ :cve_list: https://www.cvedetails.com/vulnerability-list/vendor_id-8599/product_id-30671/Redmine-Redmine-Git-Hosting-Plugin.html
1419
+ redmine_gollum:
1420
+ :website: https://github.com/gugod/redmine-gollum/wiki
1421
+ :repository: https://github.com/gugod/redmine-gollum
1422
+ redmine_gc_sync:
1423
+ :website: https://github.com/MYchaieb/redmine_gc_sync
1424
+ :repository: https://github.com/MYchaieb/redmine_gc_sync
1425
+ graph_activities:
1426
+ :website: https://github.com/meumacha/redmine_graph_activities
1427
+ :repository: https://github.com/meumacha/redmine_graph_activities
1428
+ redmine_group_macro:
1429
+ :website: https://github.com/BlueXML/redmine_group_macro
1430
+ :repository: https://github.com/BlueXML/redmine_group_macro
1431
+ redmine_group_owners:
1432
+ :repository: https://github.com/m-ramizraja/redmine_group_owners
1433
+ rmp_group_watchers:
1434
+ :website: https://github.com/Matrixcs/rmp_group_watchers
1435
+ :repository: https://github.com/Matrixcs/rmp_group_watchers
1436
+ redmine-hamster:
1437
+ :website: https://github.com/efigence/redmine_hamster
1438
+ :repository: https://github.com/efigence/redmine_hamster.git
1439
+ redmine_harvest_smc:
1440
+ :website: http://singlemindconsulting.com/blog/edward-sharp/redmine-plugin-syncs-harvest-time-entries
1441
+ :repository: https://github.com/singlemind/redmine_harvest_smc
1442
+ hide_username:
1443
+ :website: https://github.com/banica/redmine_hide_username
1444
+ :repository: https://github.com/banica/redmine_hide_username
1445
+ redmine_highlightjs:
1446
+ :website: https://github.com/dominch/redmine_highlightjs
1447
+ :repository: https://github.com/dominch/redmine_highlightjs
1448
+ redmine_holidays_plugin:
1449
+ :website: https://github.com/taktos/redmine_holidays_plugin
1450
+ :repository: https://github.com/taktos/redmine_holidays_plugin.git
1451
+ redmine_hours:
1452
+ :website: https://github.com/digitalnatives/redmine_hours
1453
+ :repository: https://github.com/digitalnatives/redmine_hours
1454
+ redmine_http_basic_authentication:
1455
+ :website: http://github.com/pburgisser/redmine_http_basic_authentication
1456
+ :repository: http://github.com/pburgisser/redmine_http_basic_authentication.git
1457
+ redmine-impersonate:
1458
+ :website: http://www.arkhitech.com/redmine-customization-and-plugin-development
1459
+ :repository: https://github.com/arkhitech/redmine_impersonate
1460
+ redmine_impersonate:
1461
+ :website: https://github.com/rgtk/redmine_impersonate
1462
+ :repository: https://github.com/rgtk/redmine_impersonate
1463
+ redmine_import_issues:
1464
+ :website: https://github.com/javiferrer/redmine_import_issues
1465
+ :repository: https://github.com/javiferrer/redmine_import_issues
1466
+ import_reqpro:
1467
+ :website: https://github.com/gen2thomas/redmine_import_reqpro
1468
+ :repository: https://github.com/gen2thomas/redmine_import_reqpro
1469
+ redmine_improved_road_map:
1470
+ :website: http://automagicallyprogramming.com/post/new-redmine-plugin%C2%A0improved-road-map
1471
+ :repository: http://automagicallyprogramming.com/post/new-redmine-plugin%C2%A0improved-road-map
1472
+ redmine_include_macro_extension:
1473
+ :website: https://github.com/taikii/redmine_include_macro_extension
1474
+ :repository: https://github.com/taikii/redmine_include_macro_extension
1475
+ redmine_info_tab:
1476
+ :website: https://github.com/marcus-sacramento-redmine/redmine_info_tab
1477
+ :repository: https://github.com/marcus-sacramento-redmine/redmine_info_tab.git
1478
+ rp_information:
1479
+ :website: http://www.r-labs.org/projects/rp-admin-reports/wiki/Redmine_Information_Plugin
1480
+ :repository: http://sourceforge.jp/projects/rp-information/releases/
1481
+ redmine-installer:
1482
+ :website: http://www.easyredmine.com/redmine-installation-wizard
1483
+ :repository: https://github.com/easyredmine/plugin-installer
1484
+ redmine_inventory_manager:
1485
+ :website: https://github.com/danielanguita/redmine_inventory_manager
1486
+ :repository: https://github.com/danielanguita/redmine_inventory_manager
1487
+ redmine_issue_clipboard:
1488
+ :website: https://github.com/blid/redmine_issue_clipboard
1489
+ :repository: https://github.com/blid/redmine_issue_clipboard
1490
+ redmine_issue_closer:
1491
+ :website: https://github.com/isheninp/redmine_issue_closer
1492
+ :repository: https://github.com/isheninp/redmine_issue_closer
1493
+ redmine_issue_completion:
1494
+ :website: http://ashpak.ru/
1495
+ :repository: https://github.com/insspb/redmine_issue_completion
1496
+ redmine_issue_dynamic_edit:
1497
+ :website: https://github.com/Ilogeek/redmine_issue_dynamic_edit
1498
+ :repository: https://github.com/Ilogeek/redmine_issue_dynamic_edit
1499
+ issue_query:
1500
+ :website: https://github.com/sharpyfox/issue_query.git
1501
+ :repository: https://github.com/sharpyfox/issue_query.git
1502
+ redmine_issue_templates_notes:
1503
+ :repository: https://github.com/brunofonseca/redmine_issue_templates_notes
1504
+ redmine_issue_to_trello:
1505
+ :website: https://github.com/meinside/redmine_issue_to_trello
1506
+ :repository: https://github.com/meinside/redmine_issue_to_trello
1507
+ redmine_issue_wiki_journal:
1508
+ :website: https://github.com/hidakatsuya/redmine_issue_wiki_journal/blob/master/README.md
1509
+ :repository: https://github.com/hidakatsuya/redmine_issue_wiki_journal
1510
+ redmine_issues_hub:
1511
+ :website: https://github.com/cappuMUC/redmine_issues_hub/
1512
+ :repository: https://github.com/cappuMUC/redmine_issues_hub/
1513
+ redmine_issues_macros:
1514
+ :website: https://github.com/twinslash/redmine_issues_macros
1515
+ :repository: https://github.com/twinslash/redmine_issues_macros
1516
+ redmine_issues_poll:
1517
+ :website: https://github.com/dextra/redmine_issues_poll
1518
+ :repository: https://github.com/dextra/redmine_issues_poll
1519
+ redmine_issues_sidebar_time_entries_links:
1520
+ :website: https://github.com/efigence/redmine_issues_sidebar_time_entries_links
1521
+ :repository: https://github.com/efigence/redmine_issues_sidebar_time_entries_links
1522
+ redmine_issues_tree:
1523
+ :website: https://github.com/Loriowar/redmine_issues_tree
1524
+ :repository: git@github.com:Loriowar/redmine_issues_tree.git
1525
+ redmine_jenkins:
1526
+ :website: http://jbox-web.github.io/redmine_jenkins/
1527
+ :repository: https://github.com/jbox-web/redmine_jenkins
1528
+ redmine_josso:
1529
+ :website: http://imonteroperez.blogspot.com
1530
+ :repository: https://github.com/imonteroperez/redmine_josso
1531
+ journal_folder:
1532
+ :website: http://turucame.jp/
1533
+ :repository: https://git.turucame.info/turucame/redmine_journal_folder
1534
+ redmine_jquery_file_upload:
1535
+ :website: https://github.com/twinslash/redmine_jquery_file_upload
1536
+ :repository: https://github.com/twinslash/redmine_jquery_file_upload
1537
+ redmine_ldap_passwd:
1538
+ :website: https://github.com/xeagle2/redmine_ldap_passwd
1539
+ :repository: https://github.com/xeagle2/redmine_ldap_passwd
1540
+ redmine_ldap_sync:
1541
+ :website: https://github.com/thorin/redmine_ldap_sync
1542
+ :repository: https://github.com/thorin/redmine_ldap_sync
1543
+ redmine_ldap_synchronizer:
1544
+ :website: https://github.com/jihh/redmine_ldap_synchronizer
1545
+ :repository: https://github.com/jihh/redmine_ldap_synchronizer
1546
+ redmine_leaves:
1547
+ :website: http://www.arkhitech.com/redmine-plugin-development/
1548
+ :repository: https://github.com/arkhitech/redmine_leaves
1549
+ redmine_legacy_link:
1550
+ :repository: https://github.com/crosspoints/redmine_legacy_link
1551
+ redmine_local_avatars:
1552
+ :website: https://launchpad.net/redminelocalavatars
1553
+ :repository: https://code.launchpad.net/redminelocalavatars
1554
+ redmine_mail_checker:
1555
+ :website: http://jbox-web.github.io/redmine_mail_checker/
1556
+ :repository: https://github.com/jbox-web/redmine_mail_checker
1557
+ redmine_mail_from:
1558
+ :website: https://github.com/taqueci/redmine_mail_from
1559
+ :repository: https://github.com/taqueci/redmine_mail_from
1560
+ redmine_mail_reminder:
1561
+ :website: https://github.com/Hopebaytech/redmine_mail_reminder
1562
+ :repository: https://github.com/Hopebaytech/redmine_mail_reminder.git
1563
+ redmine_mail_sender:
1564
+ :website: https://github.com/vmi/redmine_mail_sender
1565
+ :repository: https://github.com/vmi/redmine_mail_sender
1566
+ redmine-mailchimp:
1567
+ :website: http://michaelsweetman.com
1568
+ :repository: https://github.com/masweetman/redmine_mailchimp.git
1569
+ redmine_materials:
1570
+ :website: https://bitbucket.org/39648421
1571
+ :repository: https://bitbucket.org/39648421/redmine_materials
1572
+ redmine_membersgmap:
1573
+ :website: https://github.com/TriggerAu/redmine_membersgmap
1574
+ :repository: https://github.com/TriggerAu/redmine_membersgmap
1575
+ redmine-mentions:
1576
+ :website: http://www.arkhitech.com/redmine-plugin-development/
1577
+ :repository: https://github.com/arkhitech/redmine_mentions
1578
+ redmine_messenger:
1579
+ :repository: https://github.com/alphanodes/redmine_messenger
1580
+ redmine-mobile:
1581
+ :website: https://www.easyredmine.com/resources/mobile
1582
+ redmine_my_page:
1583
+ :website: https://github.com/jrupesh/redmine_my_page
1584
+ :repository: https://github.com/jrupesh/redmine_my_page
1585
+ redmine_my_users:
1586
+ :website: https://github.com/go2null/redmine_my_users
1587
+ :repository: https://github.com/go2null/redmine_my_users
1588
+ redmine_new_issue_status:
1589
+ :website: https://github.com/xeagle2/redmine_new_issue_status
1590
+ :repository: https://github.com/xeagle2/redmine_new_issue_status
1591
+ redmine_nikoca_re:
1592
+ :website: http://ylgbk.hatenablog.com/entry/2014/11/22/220509
1593
+ :repository: https://github.com/yuuu/redmine_nikoca_re
1594
+ notice:
1595
+ :repository: https://github.com/zhujunwu/redmine-plugin-notice
1596
+ redmine_notice:
1597
+ :website: https://github.com/parshukovvv/redmine_notice
1598
+ :repository: https://github.com/parshukovvv/redmine_notice
1599
+ redmine_app_notifications2:
1600
+ :website: https://bitbucket.org/39648421
1601
+ :repository: https://bitbucket.org/39648421/redmine_app_notifications
1602
+ redmine_oauth_dataporten:
1603
+ :website: https://github.com/kasperrt/redmine_oauth_dataporten
1604
+ :repository: https://github.com/kasperrt/redmine_oauth_dataporten
1605
+ redmine_omniauth_google:
1606
+ :website: https://github.com/twinslash/redmine_omniauth_google
1607
+ :repository: https://github.com/twinslash/redmine_omniauth_google
1608
+ omniauth_oauth2_isu:
1609
+ :website: https://github.com/pbelikov/redmine-omniauth-oauth-cas
1610
+ :repository: https://github.com/pbelikov/redmine-omniauth-oauth-cas
1611
+ redmine_omniauth_saml:
1612
+ :website: https://github.com/chrodriguez/redmine_omniauth_saml
1613
+ :repository: https://github.com/chrodriguez/redmine_omniauth_saml
1614
+ redmine_omniauth_ulogin:
1615
+ :website: https://github.com/mrscylla/redmine_omniauth_uLogin
1616
+ :repository: https://github.com/mrscylla/redmine_omniauth_uLogin
1617
+ redmine_open_version_filter:
1618
+ :website: https://github.com/twinslash/redmine_open_version_filter
1619
+ :repository: https://github.com/twinslash/redmine_open_version_filter
1620
+ redmine_openid_provider:
1621
+ :website: https://github.com/buri17/redmine_openid_provider
1622
+ :repository: https://github.com/buri17/redmine_openid_provider
1623
+ redmine-openmeetings:
1624
+ :website: http://code.google.com/a/apache-extras.org/p/openmeetings-redmine-plugin/
1625
+ :repository: http://svn.codespot.com/a/apache-extras.org/openmeetings-redmine-plugin/trunk/
1626
+ redmine_open_search:
1627
+ :website: https://github.com/Mine02C4/redmine_open_search
1628
+ :repository: https://github.com/Mine02C4/redmine_open_search
1629
+ redmine_openstack:
1630
+ :website: https://framagit.org/lobster/redmine_openstack
1631
+ :repository: https://framagit.org/lobster/redmine_openstack
1632
+ redmine-orphan-revisions:
1633
+ :website: https://github.com/noma4i/Redmine-Orphan-Revisions
1634
+ :repository: https://github.com/noma4i/Redmine-Orphan-Revisions
1635
+ redmine_out_of_band_auth:
1636
+ :website: https://github.com/matsukei/redmine_out_of_band_auth
1637
+ :repository: https://github.com/matsukei/redmine_out_of_band_auth.git
1638
+ redmine-outlook-addin:
1639
+ :website: https://www.ahausoftware.com/redmine-outlook
1640
+ redmine_page_break_macro:
1641
+ :website: https://github.com/hidakatsuya/redmine_page_break_macro
1642
+ :repository: https://github.com/hidakatsuya/redmine_page_break_macro
1643
+ redmine_pam_auth:
1644
+ :website: http://cardil.github.com/redmine-pam-auth
1645
+ :repository: git://github.com/cardil/redmine-pam-auth.git
1646
+ redmine_percent_done_configuration:
1647
+ :repository: https://github.com/guilhermenoronha/redmine_percent_done_configuration
1648
+ redmine-photo-gallery:
1649
+ :website: http://smart-story.ru/products/software/redmine-photo-gallery/
1650
+ redmine_pipeline_plugin:
1651
+ :website: https://github.com/GitDries/redmine_pipeline_plugin
1652
+ :repository: https://github.com/GitDries/redmine_pipeline_plugin.git
1653
+ redmine_pivot_table:
1654
+ :website: https://github.com/deecay/redmine_pivot_table
1655
+ :repository: https://github.com/deecay/redmine_pivot_table
1656
+ redmine_plugin_generator:
1657
+ :website: https://www.easyredmine.com/redmine-plugin-generator
1658
+ :repository: https://github.com/easyredmine/redmine_entity_generator
1659
+ redmine-portfolio:
1660
+ :website: https://github.com/ifad/redmine-portfolio
1661
+ :repository: https://github.com/ifad/redmine-portfolio
1662
+ redmine_portfolio_management:
1663
+ :website: https://github.com/marcus-sacramento-redmine/redmine_portfolio_management
1664
+ :repository: https://github.com/marcus-sacramento-redmine/redmine_portfolio_management.git
1665
+ redmine-post-link-plugin:
1666
+ :website: http://code.google.com/p/redmine-post-link-plugin/
1667
+ :repository: http://code.google.com/p/redmine-post-link-plugin/source/browse/
1668
+ pretend:
1669
+ :repository: https://github.com/leonko/redmine_pretend
1670
+ redmine_private_wiki:
1671
+ :website: https://github.com/BlueXML/redmine_private_wiki
1672
+ :repository: https://github.com/BlueXML/redmine_private_wiki
1673
+ redmine-project-state:
1674
+ :website: https://github.com/DefaultValue/redmine-project-state
1675
+ :repository: https://github.com/DefaultValue/redmine-project-state
1676
+ redmine_project_custom_tabs:
1677
+ :website: https://github.com/NicolasFeron/redmine_project_custom_tabs
1678
+ :repository: https://github.com/NicolasFeron/redmine_project_custom_tabs
1679
+ redmine_pusher_notifications:
1680
+ :website: http://jbox-web.github.io/redmine_pusher_notifications/
1681
+ :repository: https://github.com/jbox-web/redmine_pusher_notifications
1682
+ qangaroo_plugin:
1683
+ :website: https://qangaroo.jp
1684
+ :repository: https://github.com/tm-qangaroo/qangaroo_plugin
1685
+ redmine_qbo:
1686
+ :website: https://github.com/rickbarrette/redmine_qbo
1687
+ :repository: git@github.com:rickbarrette/redmine_qbo.git
1688
+ qqs:
1689
+ :website: https://bitbucket.org/39648421/qqs-redmine-plugin/
1690
+ :repository: https://bitbucket.org/39648421/qqs-redmine-plugin/
1691
+ redmine_queries_management:
1692
+ :website: https://github.com/BlueXML/redmine_queries_management
1693
+ :repository: https://github.com/BlueXML/redmine_queries_management
1694
+ redmine-quickbooks:
1695
+ :website: http://www.ahausoftware.com/redmine-quickbooks
1696
+ redmine_recaptcha:
1697
+ :website: https://github.com/srstclair/redmine_recaptcha/blob/master/README
1698
+ :repository: https://github.com/srstclair/redmine_recaptcha
1699
+ redmine_redcarpet_formatter:
1700
+ :website: https://github.com/alminium/redmine_redcarpet_formatter
1701
+ :repository: https://github.com/alminium/redmine_redcarpet_formatter.git
1702
+ redmine_redcarpet_viewer:
1703
+ :website: https://github.com/ngyuki/redmine_redcarpet_viewer
1704
+ :repository: https://github.com/ngyuki/redmine_redcarpet_viewer
1705
+ redmine_redcloth:
1706
+ :website: https://github.com/jdkemme/redmine_redcloth
1707
+ :repository: https://github.com/jdkemme/redmine_redcloth.git
1708
+ redmine_related_buster:
1709
+ :website: https://github.com/noma4i/Redmine-Related-Buster
1710
+ :repository: https://github.com/noma4i/Redmine-Related-Buster
1711
+ redmine-reports:
1712
+ :website: https://github.com/dchbx/redmine_reports
1713
+ :repository: https://github.com/dchbx/redmine_reports
1714
+ redmine_report_filters:
1715
+ :website: http://redmine.forkbrain.com/
1716
+ redmine_reveal:
1717
+ :website: https://github.com/mikitex70/redmine_reveal
1718
+ :repository: https://github.com/mikitex70/redmine_reveal.git
1719
+ redmine_rouge:
1720
+ :website: https://github.com/ngyuki/redmine_rouge
1721
+ :repository: https://github.com/ngyuki/redmine_rouge
1722
+ redmine_s3:
1723
+ :website: https://github.com/ka8725/redmine_s3
1724
+ :repository: https://github.com/ka8725/redmine_s3
1725
+ redmine_schedule:
1726
+ :website: http://redmineplugins.omegacode.pl/redmine_schedule
1727
+ redmine_scrum_cards_plugin:
1728
+ :website: https://github.com/echoes-tech/redmine_scrum_cards
1729
+ :repository: https://github.com/echoes-tech/redmine_scrum_cards
1730
+ redmine_scrum_cards:
1731
+ :repository: https://github.com/nauphone/redmine_scrum_cards
1732
+ redmine_send_issue_reply_email:
1733
+ :website: https://github.com/matsukei/redmine_send_issue_reply_email
1734
+ :repository: https://github.com/matsukei/redmine_send_issue_reply_email.git
1735
+ redmine_send_mails:
1736
+ :repository: https://github.com/guilhermenoronha/redmine_send_mails
1737
+ redmine_serial_number_field:
1738
+ :website: https://github.com/matsukei/redmine_serial_number_field/blob/master/README.en.md
1739
+ :repository: https://github.com/matsukei/redmine_serial_number_field.git
1740
+ redmine_shady:
1741
+ :website: https://github.com/rgtk/redmine_shady
1742
+ :repository: https://github.com/rgtk/redmine_shady
1743
+ redmine_shared_api:
1744
+ :website: https://github.com/anovitsky/redmine_shared_api
1745
+ :repository: https://github.com/anovitsky/redmine_shared_api
1746
+ redmine_shortcuts:
1747
+ :website: https://github.com/davidegiacometti/redmine_shortcuts
1748
+ :repository: https://github.com/davidegiacometti/redmine_shortcuts
1749
+ redmine_show_issue_assignee_avatar_plugin:
1750
+ :website: https://github.com/two-pack/redmine_show_issue_assignee_avatar
1751
+ :repository: https://github.com/two-pack/redmine_show_issue_assignee_avatar
1752
+ redmine_sidebar_toc:
1753
+ :website: https://github.com/twinslash/redmine_sidebar_toc
1754
+ :repository: https://github.com/twinslash/redmine_sidebar_toc
1755
+ redmine_sidekiq:
1756
+ :website: https://github.com/ogom/redmine_sidekiq
1757
+ :repository: https://github.com/ogom/redmine_sidekiq
1758
+ redmine-silent-statuses:
1759
+ :website: https://github.com/DefaultValue/redmine-silent-statuses
1760
+ :repository: https://github.com/DefaultValue/redmine-silent-statuses
1761
+ redmine_simple:
1762
+ :website: https://github.com/Undev/redmine_simple
1763
+ :repository: https://github.com/Undev/redmine_simple
1764
+ redmine_sitemap:
1765
+ :repository: https://github.com/yoshida-mediba/redmine_sitemap
1766
+ redmine-slideshow:
1767
+ :website: http://projets-labinfo.he-arc.ch/projects/redmine-slideshow
1768
+ :repository: http://svn-labinfo.he-arc.ch/redmine-slideshow
1769
+ redmine_socio_connect:
1770
+ :website: https://github.com/mhaseebkhan/redmine_socio_connect
1771
+ :repository: https://github.com/mhaseebkhan/redmine_socio_connect
1772
+ redmine_spent_time:
1773
+ :website: https://github.com/eyp/redmine_spent_time
1774
+ :repository: https://github.com/eyp/redmine_spent_time.git
1775
+ redmine_spent_time_required:
1776
+ :website: http://trs.io
1777
+ :repository: https://github.com/TeamRocketScience/redmine_spent_time_required
1778
+ redmine_ssl_auth_cn:
1779
+ :website: https://github.com/SteveSimpson/redmine_ssl_auth_cn
1780
+ :repository: https://github.com/SteveSimpson/redmine_ssl_auth_cn
1781
+ redmine_startpage:
1782
+ :website: http://gatatac.org/projects/redmine-startpage/wiki
1783
+ :repository: https://github.com/txinto/redmine_startpage
1784
+ redmine_stats_2:
1785
+ :website: https://github.com/myaspm/redmine_stats_2
1786
+ :repository: https://github.com/myaspm/redmine_stats_2
1787
+ redmine_stealth:
1788
+ :website: http://teleological.github.com/redmine_stealth
1789
+ :repository: http://github.com/teleological/redmine_stealth
1790
+ redmine_sticky_messages:
1791
+ :website: https://github.com/jongha/redmine_sticky_messages
1792
+ :repository: https://github.com/jongha/redmine_sticky_messages
1793
+ storehouse_plugin_soft-story:
1794
+ :website: http://smart-story.ru/products/software/redmine-storehouse/
1795
+ redmine_subtask_list_accordion:
1796
+ :website: https://github.com/GEROMAX
1797
+ :repository: https://github.com/GEROMAX/redmine_subtask_list_accordion
1798
+ redmine_subtasks_inherited_fields:
1799
+ :website: https://github.com/edosoft/redmine-inherit-fields-plugin
1800
+ :repository: https://github.com/edosoft/redmine-inherit-fields-plugin.git
1801
+ redmine_taskjuggler:
1802
+ :website: https://github.com/chris2fr/redmine_taskjuggler/wiki
1803
+ :repository: https://github.com/chris2fr/redmine_taskjuggler
1804
+ redmine_teaching_extension:
1805
+ :website: https://github.com/MarioMerino/redmine_teaching_extension
1806
+ :repository: https://github.com/MarioMerino/redmine_teaching_extension
1807
+ redmine_telegram_email:
1808
+ :website: https://github.com/massdest/redmine_telegram_email
1809
+ :repository: https://github.com/massdest/redmine_telegram_email.git
1810
+ redmine_telegram_global:
1811
+ :website: https://github.com/massdest/redmine_telegram_global
1812
+ :repository: https://github.com/massdest/redmine_telegram_global.git
1813
+ redmine_terms:
1814
+ :website: https://github.com/johnp2686/Redmine-Terms-And-Conditions
1815
+ :repository: https://github.com/johnp2686/Redmine-Terms-And-Conditions
1816
+ redmine_time_invoices:
1817
+ :website: http://www.arkhitech.com/content/redmine-customization-and-plugin-development
1818
+ :repository: https://github.com/arkhitech/redmine_time_invoices
1819
+ redmine_time_limit:
1820
+ :website: https://github.com/twinslash/redmine_time_limit
1821
+ :repository: https://github.com/twinslash/redmine_time_limit
1822
+ redmine-time-log:
1823
+ :website: https://github.com/m13badry/Redmine-Time-Log/
1824
+ :repository: https://github.com/m13badry/Redmine-Time-Log/
1825
+ redmine-time-tracking-software:
1826
+ :website: https://www.ukrsolution.com/Redmine-Time-Tracker-Software-Time-Logger
1827
+ redmine_timesheet_plugin:
1828
+ :website: http://www.arkhitech.com/redmine-timesheet-plugin
1829
+ :repository: https://github.com/arkhitech/redmine_timesheet_plugin
1830
+ redmine_app_timesheets:
1831
+ :website: https://github.com/maxrossello/redmine_app_timesheets
1832
+ :repository: https://github.com/maxrossello/redmine_app_timesheets
1833
+ redmine_zendesk_issue_bridge:
1834
+ :website: http://raventools.github.io/redmine_zendesk_issue_bridge/
1835
+ :repository: https://github.com/raventools/redmine_zendesk_issue_bridge
1836
+ redmine_smile_togglesidebar:
1837
+ :website: https://github.com/Smile-SA/redmine_smile_togglesidebar/blob/master/README.md
1838
+ :repository: https://github.com/Smile-SA/redmine_smile_togglesidebar
1839
+ redmine-touch:
1840
+ :website: https://github.com/noma4i/Redmine-Touch
1841
+ :repository: https://github.com/noma4i/Redmine-Touch
1842
+ redmine_tpa:
1843
+ :website: http://hylozero.github.io/redmine_tpa
1844
+ :repository: https://github.com/hylozero/redmine_tpa
1845
+ redmine_track_control:
1846
+ :website: http://jijeshmohan.wordpress.com/2011/12/24/redmine-tracker-control-plugin-released
1847
+ :repository: https://github.com/jijeshmohan/redmine_track_control
1848
+ redmine_tweaks:
1849
+ :repository: https://github.com/alphanodes/redmine_tweaks
1850
+ redmine_update_reminder:
1851
+ :website: http://www.arkhitech.com/content/redmine-customization-and-plugin-development
1852
+ :repository: https://github.com/arkhitech/redmine_update_reminder
1853
+ redmine_upload_forms:
1854
+ :website: https://projects.rosedu.org/projects/redmine-uploads
1855
+ :repository: http://git.rosedu.org/redmine_uploads.git
1856
+ redmine_upwork_plugin:
1857
+ :website: http://redmineupwork.com/
1858
+ :repository: http://redmineupwork.com/
1859
+ redmine_userpage_macro:
1860
+ :website: https://github.com/giner/helplinux/tree/master/redmine_plugins/redmine_userpage_macro
1861
+ :repository: https://github.com/giner/helplinux/tree/master/redmine_plugins/redmine_userpage_macro
1862
+ redmine_viafirma:
1863
+ :website: http://imonteroperez.blogspot.com
1864
+ :repository: https://github.com/imonteroperez/redmine_viafirma
1865
+ redmine_vote_plugin:
1866
+ :website: https://github.com/jongha/redmine_vote
1867
+ :repository: https://github.com/jongha/redmine_vote
1868
+ redmine-vpn:
1869
+ :website: http://smart-story.ru/products/software/redmine-vpn/
1870
+ redmine-warranty:
1871
+ :website: http://smart-story.ru/products/software/redmine-warranty/
1872
+ redmine_watcher_groups:
1873
+ :website: https://github.com/kamenf/redmine_watcher_groups
1874
+ :repository: https://github.com/kamenf/redmine_watcher_groups
1875
+ redmine_wiki_books:
1876
+ :website: http://gatatac.org/projects/redmine-wikibooks
1877
+ :repository: https://github.com/txinto/redmine_wiki_books
1878
+ redmine_wiki_sql:
1879
+ :repository: https://github.com/rorx/redmine_wiki_sql
1880
+ redmine_work_wechat:
1881
+ :website: https://bitbucket.org/39648421/redmine_work_wechat
1882
+ :repository: https://bitbucket.org/39648421/redmine_work_wechat
1883
+ redmine_workflow_api:
1884
+ :website: https://github.com/RealEnder/redmine_workflow_api
1885
+ :repository: https://github.com/RealEnder/redmine_workflow_api
1886
+ redmine_workflow_enhancements:
1887
+ :website: https://github.com/dr-itz/redmine_workflow_enhancements
1888
+ :repository: git://github.com/dr-itz/redmine_workflow_enhancements.git
1889
+ redmine_xlsx_format_issue_exporter:
1890
+ :website: https://github.com/two-pack/redmine_xlsx_format_issue_exporter
1891
+ :repository: https://github.com/two-pack/redmine_xlsx_format_issue_exporter
1892
+ redmine-data-import:
1893
+ :website: https://www.easyredmine.com/redmine-services/redmine-data-import
1894
+ redmine_zendesk_ticket_updater:
1895
+ :repository: https://github.com/airtame/redmine_zendesk_ticket_updater
1896
+ redmine_zxcvbn:
1897
+ :website: https://github.com/schmidt/redmine_zxcvbn
1898
+ :repository: https://github.com/schmidt/redmine_zxcvbn
1899
+ redmine-forced:
1900
+ :website: https://github.com/apalmblad/redmine-forced
1901
+ :repository: https://github.com/apalmblad/redmine-forced
1902
+ redmine-joomla-bridge: {}
1903
+ redmine_issueupdate:
1904
+ :website: https://github.com/johnp2686/Redmine-RepositoriesUpdateIssuewithSVNcommit
1905
+ :repository: https://github.com/johnp2686/Redmine-RepositoriesUpdateIssuewithSVNcommit
1906
+ redmine-ipb-auth:
1907
+ :website: http://code.rohitab.com/projects/redmine-ipb-auth
1908
+ :repository: https://code.rohitab.com/git/redmine-ipb-auth.git
1909
+ redmine-msp-sync:
1910
+ :website: https://github.com/m0n9oose/redmine_loader
1911
+ :repository: https://github.com/m0n9oose/redmine_loader
1912
+ redmine_schedules:
1913
+ :website: https://github.com/Yoru94/redmine3.1-schedules-plugin
1914
+ :repository: https://github.com/Yoru94/redmine3.1-schedules-plugin
1915
+ redmine_attach_by_url:
1916
+ :website: https://github.com/nodecarter/redmine_attach_by_url
1917
+ :repository: https://github.com/nodecarter/redmine_attach_by_url
1918
+ redmine_rt:
1919
+ :repository: https://github.com/MayamaTakeshi/redmine_rt
1920
+ redmine-browserid:
1921
+ :website: https://github.com/martinsp/redmine_browserid
1922
+ :repository: https://github.com/martinsp/redmine_browserid
1923
+ redmine_card:
1924
+ :website: https://github.com/w3blogfr/redmine_card
1925
+ :repository: https://github.com/w3blogfr/redmine_card
1926
+ redmine_chosen:
1927
+ :website: https://github.com/shingfunglai/redmine_chosen
1928
+ :repository: https://github.com/shingfunglai/redmine_chosen.git
1929
+ redmine_customized_report:
1930
+ :website: https://github.com/zeyuLiang/redmine_customized_report
1931
+ :repository: https://github.com/zeyuLiang/redmine_customized_report
1932
+ redmine_doorkeeper:
1933
+ :website: https://github.com/ipcross/redmine_doorkeeper
1934
+ :repository: https://github.com/ipcross/redmine_doorkeeper
1935
+ redmine_etherpad:
1936
+ :repository: https://github.com/yourcelf/redmine_etherpad
1937
+ redmine_fetch_email_feedback:
1938
+ :website: https://github.com/halida/redmine_fetch_email_feedback
1939
+ :repository: https://github.com/halida/redmine_fetch_email_feedback
1940
+ redmine_hackpad:
1941
+ :website: https://github.com/donilan/redmine_hackpad
1942
+ :repository: https://github.com/donilan/redmine_hackpad
1943
+ redmine_hearts:
1944
+ :website: https://github.com/cat-in-136/redmine_hearts
1945
+ :repository: https://github.com/cat-in-136/redmine_hearts.git
1946
+ redmine_helpdesk:
1947
+ :website: https://github.com/jfqd/redmine_helpdesk
1948
+ :repository: https://github.com/jfqd/redmine_helpdesk
1949
+ redmine_info_api:
1950
+ :website: https://github.com/shadowbq/redmine_info_api
1951
+ :repository: https://github.com/shadowbq/redmine_info_api
1952
+ redmine_issues_sorting:
1953
+ :website: https://github.com/JohnBat26/redmine_issues_sorting
1954
+ :repository: https://github.com/JohnBat26/redmine_issues_sorting
1955
+ redmine_issue_external_item:
1956
+ :website: https://github.com/clairton/redmine_issue_external_item
1957
+ :repository: https://github.com/clairton/redmine_issue_external_item
1958
+ issue_history:
1959
+ :website: http://systango.com
1960
+ :repository: https://github.com/stpl/redmine_issue_history
1961
+ redmine_issue_icons:
1962
+ :website: https://github.com/JohnBat26/redmine_issue_icons
1963
+ :repository: https://github.com/JohnBat26/redmine_issue_icons
1964
+ redmine_issue_status_change:
1965
+ :website: https://github.com/johnp2686/redmine_issue_status_change.git
1966
+ :repository: https://github.com/johnp2686/redmine_issue_status_change.git
1967
+ redmine_issue_tree_tiny:
1968
+ :website: https://github.com/Jiangshan00001/redmine_issue_tree_tiny
1969
+ :repository: https://github.com/Jiangshan00001/redmine_issue_tree_tiny
1970
+ redmine_js_syntax_highlighter:
1971
+ :website: https://github.com/k2s/redmine_js_syntax_highlighter
1972
+ :repository: https://github.com/k2s/redmine_js_syntax_highlighter
1973
+ redmine_letter_opener_web:
1974
+ :website: https://github.com/MischaTheEvil/redmine_letter_opener_web
1975
+ :repository: https://github.com/MischaTheEvil/redmine_letter_opener_web.git
1976
+ redmine_mailwrapper:
1977
+ :website: https://github.com/snnrk/redmine_mailwrapper/wiki
1978
+ :repository: https://github.com/snnrk/redmine_mailwrapper
1979
+ redmine_oauth2_provider:
1980
+ :website: https://github.com/lordfinal/redmine_oauth2_provider
1981
+ :repository: https://github.com/lordfinal/redmine_oauth2_provider
1982
+ redmine_omniauth_gitlab:
1983
+ :website: https://github.com/applewu/redmine_omniauth_gitlab
1984
+ :repository: https://github.com/applewu/redmine_omniauth_gitlab.git
1985
+ redmine_persist_wfmt:
1986
+ :website: https://github.com/pinzolo/redmine_persist_wfmt
1987
+ :repository: https://github.com/pinzolo/redmine_persist_wfmt
1988
+ redmine_planning:
1989
+ :website: https://github.com/MadEgg/redmine_planning
1990
+ :repository: https://github.com/MadEgg/redmine_planning.git
1991
+ redmine_print_style_black:
1992
+ :website: https://github.com/jperelli/redmine_print_style_black
1993
+ :repository: https://github.com/jperelli/redmine_print_style_black
1994
+ redmine_reminder:
1995
+ :website: https://github.com/Enkil/redmine_reminder
1996
+ :repository: git@github.com:Enkil/redmine_reminder.git
1997
+ redmine_remote_user_auth:
1998
+ :website: https://github.com/vitstradal/redmine_remote_user_auth
1999
+ :repository: https://github.com/vitstradal/redmine_remote_user_auth
2000
+ redmine_sladiator:
2001
+ :website: https://sladiator.com
2002
+ :repository: https://github.com/eBIT/redmine_sladiator
2003
+ redmine_stats:
2004
+ :website: https://github.com/luisfontes19/redmine_stats/
2005
+ :repository: https://github.com/luisfontes19/redmine_stats/
2006
+ redmine_tags:
2007
+ :website: https://github.com/ixti/redmine_tags/
2008
+ :repository: https://github.com/ixti/redmine_tags/
2009
+ redmine_wiki_embedded:
2010
+ :website: https://github.com/Jiangshan00001/redmine_wiki_embedded
2011
+ :repository: https://github.com/Jiangshan00001/redmine_wiki_embedded
2012
+ redmine_wysiwyg:
2013
+ :website: http://systango.com
2014
+ :repository: https://github.com/stpl/redmine_wysiwyg
2015
+ redpoll:
2016
+ :website: https://github.com/elecard-med/redpoll
2017
+ :repository: https://github.com/elecard-med/redpoll
2018
+ redrisk:
2019
+ :website: https://github.com/rolesoftware/redrisk
2020
+ :repository: https://github.com/rolesoftware/redrisk
2021
+ redshares:
2022
+ :website: https://github.com/jzaiat/redshares
2023
+ :repository: https://github.com/jzaiat/redshares
2024
+ redmine_redsun:
2025
+ :website: http://dkd.github.io/redsun/
2026
+ :repository: https://github.com/dkd/redsun
2027
+ redtimer:
2028
+ :website: https://www.redtimer.org
2029
+ :repository: https://github.com/fathomssen/redtimer.git
2030
+ release_logs:
2031
+ :website: http://www.arubystory.com/p/redmine-release-logs-getting-started.html
2032
+ :repository: https://github.com/iridakos/release_logs
2033
+ redmine_release_notes:
2034
+ :website: https://github.com/hdgarrood/redmine_release_notes
2035
+ :repository: git://github.com/hdgarrood/redmine_release_notes.git
2036
+ reminderemails:
2037
+ :repository: https://github.com/eckucukoglu/redmine-reminder-emails
2038
+ redmine_issue_reminder:
2039
+ :repository: https://github.com/raafael911/redmine_reminder
2040
+ redmine_remote_revision_url:
2041
+ :website: https://github.com/tleish/redmine_remote_revision_url
2042
+ :repository: https://github.com/tleish/redmine_remote_revision_url
2043
+ redmine_reorder_links_arbitrary:
2044
+ :website: http://www.redmine.org/boards/3/topics/29180
2045
+ redmine_reposearch:
2046
+ :website: http://surgo.github.com/redmine_reposearch/
2047
+ :repository: https://github.com/Surgo/redmine_reposearch
2048
+ remine_repobrowser:
2049
+ :website: https://github.com/gilbertf/redmine_repobrowser
2050
+ :repository: https://github.com/gilbertf/redmine_repobrowser
2051
+ redmine_repository: {}
2052
+ redmine_env_auth:
2053
+ :website: https://github.com/Intera/redmine_env_auth
2054
+ :repository: https://github.com/Intera/redmine_env_auth
2055
+ redmine_require_wiki_comment: {}
2056
+ resource_dashboard:
2057
+ :website: https://www.easyredmine.com/redmine-resource-dashboard
2058
+ planner:
2059
+ :website: https://github.com/dr-itz/RedminePlannerPlugin
2060
+ :repository: git://github.com/dr-itz/RedminePlannerPlugin.git
2061
+ redmine_resque:
2062
+ :website: https://github.com/Undev/redmine_resque
2063
+ :repository: https://github.com/Undev/redmine_resque
2064
+ redmine_restrict_tracker:
2065
+ :website: https://github.com/ZitecCOM/redmine_restrict_tracker
2066
+ :repository: https://github.com/ZitecCOM/redmine_restrict_tracker
2067
+ redmine_restricted_members_managament:
2068
+ :website: https://github.com/darioo/redmine_restricted_members_managament
2069
+ :repository: https://github.com/darioo/redmine_restricted_members_managament.git
2070
+ risk-management:
2071
+ :website: https://github.com/imaginary-cloud/redmine_risk_management
2072
+ :repository: https://github.com/imaginary-cloud/redmine_risk_management
2073
+ rmplus_devtools:
2074
+ :website: http://rmplus.pro/en/redmine/plugins/rmplus_devtools
2075
+ :repository: http://rmplus.pro/en/redmine/plugins/rmplus_devtools
2076
+ roadmaps:
2077
+ :website: http://daipresents.com/2009/redmine_roadmaps_plugin/
2078
+ :repository: https://github.com/daipresents/redmine_roadmaps
2079
+ role-members-batch-copy:
2080
+ :website: https://github.com/savoirfairelinux/redmine-role-members-batch-copy
2081
+ :repository: https://github.com/savoirfairelinux/redmine-role-members-batch-copy
2082
+ redmine_role_replacements:
2083
+ :website: https://github.com/Undev/redmine_role_replacements
2084
+ :repository: https://github.com/Undev/redmine_role_replacements
2085
+ role_shift:
2086
+ :website: http://projects.andriylesyuk.com/projects/role-shift
2087
+ :repository: http://subversion.andriylesyuk.com/role-shift
2088
+ redmine_rouge_highlighter:
2089
+ :website: https://github.com/alexbevi/redmine_rouge_highlighter
2090
+ :repository: https://github.com/alexbevi/redmine_rouge_highlighter
2091
+ rougemine:
2092
+ :website: http://rougemine.opsone.net/en/redmine-plugin
2093
+ :repository: https://github.com/opsone/rougemine
2094
+ round_robin:
2095
+ :website: https://github.com/pvdvreede
2096
+ :repository: https://github.com/pvdvreede/round_robin
2097
+ rt_import: {}
2098
+ rtx_notify:
2099
+ :website: https://github.com/fanzai0403/rtx_notify
2100
+ :repository: https://github.com/fanzai0403/rtx_notify
2101
+ redmine_saml_auth:
2102
+ :website: https://github.com/cvaldemar/redmine_saml_auth
2103
+ :repository: https://github.com/cvaldemar/redmine_saml_auth
2104
+ redmine_save_spent_time_queries:
2105
+ :website: https://github.com/quinvit/redmine_save_spent_time_queries
2106
+ :repository: https://github.com/quinvit/redmine_save_spent_time_queries
2107
+ redmine_scheduling_poll:
2108
+ :website: https://github.com/cat-in-136/redmine_scheduling_poll
2109
+ :repository: https://github.com/cat-in-136/redmine_scheduling_poll.git
2110
+ redmine_scm:
2111
+ :website: http://projects.andriylesyuk.com/projects/scm-creator
2112
+ :repository: http://subversion.andriylesyuk.com/scm-creator
2113
+ redmine_scm_extensions:
2114
+ :repository: http://github.com/amartel/redmine_scm_extensions
2115
+ redmine_scm_path_view:
2116
+ :website: https://github.com/11v1/redmine_scm_path_view
2117
+ :repository: https://github.com/11v1/redmine_scm_path_view
2118
+ javasript_screenshot: {}
2119
+ scrum-plugin:
2120
+ :website: https://redmine.ociotec.com/projects/redmine-plugin-scrum
2121
+ :repository: https://www.patreon.com/ociotec
2122
+ scrum2b:
2123
+ :website: http://scrum2b.herokuapp.com
2124
+ :repository: https://github.com/scrum2b/scrum2b
2125
+ scrumbler:
2126
+ :website: https://github.com/256MbTeam/Redmine-Scrumbler
2127
+ :repository: https://github.com/256MbTeam/Redmine-Scrumbler
2128
+ scrum:
2129
+ :website: https://github.com/geron-cn/Scrum_KL
2130
+ :repository: git://github.com/geron-cn/Scrum_KL.git
2131
+ redmine_status_history:
2132
+ :website: https://github.com/javiferrer/redmine_status_history
2133
+ :repository: https://github.com/javiferrer/redmine_status_history
2134
+ searchable_project_jump_box: {}
2135
+ select_to_select2:
2136
+ :repository: https://github.com/sf-cola/select_to_select2
2137
+ redmine__select2:
2138
+ :website: https://github.com/Undev/redmine__select2
2139
+ :repository: https://github.com/Undev/redmine__select2
2140
+ selfspenttime:
2141
+ :repository: https://github.com/Belarus2012/SelfSpentTime
2142
+ semat_alpha_state_cards:
2143
+ :website: https://git.kreosoft.ru/public-tsu/Alphacards
2144
+ :repository: https://git.kreosoft.ru/public-tsu/Alphacards
2145
+ send_notification:
2146
+ :website: https://github.com/Yarroo/redmine-plugin-send_notification
2147
+ :repository: https://github.com/Yarroo/redmine-plugin-send_notification
2148
+ service_desk:
2149
+ :website: http://rmplus.pro/en/redmine/plugins/service_desk
2150
+ set_assignee_on_commit:
2151
+ :website: https://github.com/team888
2152
+ :repository: https://github.com/team888/redmine-set_assignee_on_commit-plugin
2153
+ set_fields_on_status_change:
2154
+ :repository: http://redmine.diez.ws/set_fields_on_status_change.zip
2155
+ redmine_query_share:
2156
+ :website: https://github.com/jrupesh/redmine_query_share
2157
+ :repository: https://github.com/jrupesh/redmine_query_share/tree/2.0.0
2158
+ redmine_show_descriptions:
2159
+ :website: http://www.redmine.org/projects/redmine/wiki/PluginShowIssueDescriptions
2160
+ sidebar:
2161
+ :website: http://projects.andriylesyuk.com/projects/sidebar-content
2162
+ :repository: http://subversion.andriylesyuk.com/sidebar-content
2163
+ redmine_issue_control_panel:
2164
+ :website: http://www.redmine.org/projects/redmine/wiki/PluginSidebarIssueControl
2165
+ silencer:
2166
+ :website: https://github.com/commandprompt/redmine_silencer
2167
+ :repository: git://github.com/commandprompt/redmine_silencer.git
2168
+ redmine_silencer:
2169
+ :website: https://github.com/paginagmbh/redmine_silencer/
2170
+ :repository: https://github.com/paginagmbh/redmine_silencer.git
2171
+ simple_author_change:
2172
+ :website: http://dapplication.com
2173
+ :repository: https://github.com/staskie/simple_author_change
2174
+ simple_todo_list:
2175
+ :website: http://github.com/bthesorceror/redmine_todo_list
2176
+ :repository: http://github.com/bthesorceror/redmine_todo_list.git
2177
+ single_auth:
2178
+ :website: http://rmplus.pro/en/redmine/plugins/single_auth
2179
+ :repository: http://rmplus.pro/en/redmine/plugins/single_auth
2180
+ single_column_custom_fields:
2181
+ :website: http://www.redmine.org/boards/3/topics/24022
2182
+ redmine_skype_link:
2183
+ :website: https://github.com/Undev/redmine_skype_link
2184
+ :repository: https://github.com/Undev/redmine_skype_link
2185
+ redmine-slack:
2186
+ :website: https://github.com/sciyoshi/redmine-slack
2187
+ :repository: https://github.com/sciyoshi/redmine-slack
2188
+ redmine_smart_issues_sort:
2189
+ :website: http://www.redmine.org/boards/3/topics/29545
2190
+ redmine_sms_auth:
2191
+ :website: https://github.com/centosadmin/redmine_sms_auth
2192
+ :repository: https://github.com/centosadmin/redmine_sms_auth.git
2193
+ redmine_snipt:
2194
+ :website: http://gitorious.org/redmine_snipt
2195
+ :repository: http://gitorious.org/redmine_snipt/redmine_snipt
2196
+ redmine_social_sign_in:
2197
+ :website: https://github.com/easysoftware/redmine_social_sign_in
2198
+ :repository: https://github.com/easysoftware/redmine_social_sign_in
2199
+ email-attach:
2200
+ :website: https://github.com/rb-cohen/redmine_email_attach
2201
+ :repository: https://github.com/rb-cohen/redmine_email_attach
2202
+ spectator:
2203
+ :website: https://github.com/alpcrimea/redmine-spectator-plugin
2204
+ :repository: https://github.com/alpcrimea/redmine-spectator-plugin/tree/v0.0.1
2205
+ redmine_spent_time_versatile:
2206
+ :website: http://versatilecommunity.co.in/
2207
+ :repository: https://github.com/versatilecommunity/redmine_spent_time
2208
+ spent_time_in_issue_description:
2209
+ :repository: https://github.com/TravisSpangle/redmine_spent_time_in_issue_description
2210
+ status_button:
2211
+ :website: https://github.com/fanzai0403/status_button
2212
+ :repository: https://github.com/fanzai0403/status_button
2213
+ subscription:
2214
+ :website: http://projects.andriylesyuk.com/project/redmine/subscription
2215
+ :repository: http://subversion.andriylesyuk.com/subscription
2216
+ subtaskcolumns: {}
2217
+ subtask_list_columns:
2218
+ :repository: https://github.com/SMS-IT/redmine_subtask_list_columns
2219
+ subtask-overview-enhanced:
2220
+ :website: https://github.com/savoirfairelinux/redmine-subtask-overview-enhanced
2221
+ :repository: https://github.com/savoirfairelinux/redmine-subtask-overview-enhanced
2222
+ redmine_summed_fields:
2223
+ :website: https://github.com/maxrossello/redmine_summed_fields
2224
+ :repository: https://github.com/maxrossello/redmine_summed_fields
2225
+ svnauth: {}
2226
+ sympa:
2227
+ :website: http://development.splendeo.es/projects/redmine-sympa
2228
+ :repository: git://github.com/splendeo/redmine_sympa.git
2229
+ redmine_synchrony:
2230
+ :website: https://github.com/centosadmin/redmine_synchrony
2231
+ :repository: https://github.com/centosadmin/redmine_synchrony.git
2232
+ redmine_mention_plugin:
2233
+ :website: http://www.systango.com
2234
+ :repository: https://github.com/stpl/redmine_mention_plugin
2235
+ redmine_tagging:
2236
+ :website: https://github.com/Undev/redmine_tagging
2237
+ :repository: https://github.com/Undev/redmine_tagging
2238
+ redmineup_tags:
2239
+ :website: https://www.redmineup.com/pages/plugins/tags
2240
+ nxs_chat:
2241
+ :website: https://nixys.ru
2242
+ :repository: https://github.com/nixys/nxs-chat-redmine
2243
+ redmine_telegram_common:
2244
+ :website: https://github.com/centosadmin/redmine_telegram_common
2245
+ :repository: https://github.com/centosadmin/redmine_telegram_common.git
2246
+ gsc_templates:
2247
+ :website: https://github.com/generaldesoftware/RedMine-plantillas-plugin#readme
2248
+ :repository: https://github.com/generaldesoftware/RedMine-plantillas-plugin/
2249
+ redmine_testing_gems:
2250
+ :website: https://github.com/ZitecCOM/redmine_testing_gems
2251
+ :repository: https://github.com/ZitecCOM/redmine_testing_gems
2252
+ rp-testlinklink:
2253
+ :website: http://www.r-labs.org/projects/rp-testlinklink/wiki/TestLinkLinkEn
2254
+ :repository: http://sourceforge.jp/projects/rp-testlinklink/releases/
2255
+ textilizable-custom-fields: {}
2256
+ that_email_log:
2257
+ :website: https://github.com/thatcompany/that_email_log
2258
+ :repository: https://github.com/thatcompany/that_email_log
2259
+ redmine_theme_changer:
2260
+ :website: http://www.r-labs.org/projects/r-labs/wiki/Theme_Changer_en
2261
+ :repository: https://github.com/haru/redmine_theme_changer
2262
+ tkgmap:
2263
+ :website: https://github.com/shota-kobayashi/redmine_tkgmap
2264
+ :repository: https://github.com/shota-kobayashi/redmine_tkgmap
2265
+ time-bank:
2266
+ :website: https://github.com/savoirfairelinux/redmine-timebank
2267
+ :repository: https://github.com/savoirfairelinux/redmine-timebank
2268
+ time_logger:
2269
+ :website: http://github.com/speedy32129
2270
+ :repository: http://github.com/speedy32129/time_logger
2271
+ redmine_time_logging_app:
2272
+ :website: https://github.com/Intera/redmine_time_logging_app
2273
+ :repository: https://github.com/Intera/redmine_time_logging_app
2274
+ redmine_time_registry: {}
2275
+ redmine_time_tracker:
2276
+ :website: http://github.com/delaitre/redmine_time_tracker
2277
+ :repository: http://github.com/delaitre/redmine_time_tracker/tree
2278
+ timecop:
2279
+ :website: https://github.com/asseinfo/timecop
2280
+ :repository: https://github.com/asseinfo/timecop
2281
+ timelog_on_issue_page:
2282
+ :website: http://rmplus.pro
2283
+ :repository: https://github.com/dkuk/timelog_on_issue_page
2284
+ timelog_timer:
2285
+ :website: https://github.com/behigh/redmine_timelog_timer
2286
+ :repository: https://github.com/behigh/redmine_timelog_timer.git
2287
+ redmine_timesheet_extensions:
2288
+ :website: https://github.com/nicStuff/redmine_timesheet_extensions
2289
+ :repository: git://github.com/nicStuff/redmine_timesheet_extensions.git
2290
+ timesheet:
2291
+ :website: https://github.com/Contargo/redmine-timesheet-plugin
2292
+ :repository: https://github.com/Contargo/redmine-timesheet-plugin
2293
+ redmine_time_tracking:
2294
+ :website: https://tmetric.com
2295
+ todo_lists:
2296
+ :website: https://github.com/AZielinski/Redmine-Todo-lists
2297
+ :repository: https://github.com/AZielinski/Redmine-Todo-lists
2298
+ redmine_trac_formatter:
2299
+ :website: https://github.com/jthomerson/redmine_trac_formatter_plugin
2300
+ :repository: https://github.com/jthomerson/redmine_trac_formatter_plugin
2301
+ redmine_traceability:
2302
+ :repository: https://github.com/Emergya/redmine_traceability
2303
+ traceability_matrix: {}
2304
+ tracker_hider:
2305
+ :website: https://github.com/atlascoder/tracker_hider
2306
+ :repository: https://github.com/atlascoder/tracker_hider.git
2307
+ redmine_tracker_status_trigger:
2308
+ :website: https://github.com/phoebusnetto/redmine_tracker_status_trigger
2309
+ :repository: https://github.com/phoebusnetto/redmine_tracker_status_trigger
2310
+ redmine_trackmine:
2311
+ :website: https://github.com/capita/redmine_trackmine
2312
+ :repository: https://github.com/capita/redmine_trackmine
2313
+ transactions-personal-finances-cash-desk:
2314
+ :website: https://www.easyredmine.com/software/project-finances
2315
+ ttm:
2316
+ :website: https://noshutdown.ru/en/redmine-plugins-ttm/
2317
+ :repository: https://github.com/noshutdown-ru/ttm
2318
+ tweetbook:
2319
+ :website: http://buoyant.github.io/redmine_tweetbook
2320
+ :repository: https://github.com/buoyant/redmine_tweetbook
2321
+ redmine_ultraviolet:
2322
+ :website: http://github.com/epitron/redmine_ultraviolet
2323
+ :repository: http://github.com/epitron/redmine_ultraviolet
2324
+ under_construction:
2325
+ :website: http://rmplus.pro/en/redmine/plugins/under_construction
2326
+ :repository: http://rmplus.pro/en/redmine/plugins/under_construction
2327
+ redmine_undev_watchers:
2328
+ :website: https://github.com/Undev/redmine_undev_watchers
2329
+ :repository: https://github.com/Undev/redmine_undev_watchers
2330
+ redmine_undev_git:
2331
+ :website: https://github.com/Undev/redmine_undev_git
2332
+ :repository: https://github.com/Undev/redmine_undev_git
2333
+ unread_issues:
2334
+ :website: http://rmplus.pro/en/redmine/plugins/unread_issues
2335
+ :repository: http://rmplus.pro/en/redmine/plugins/unread_issues
2336
+ updates_notifier:
2337
+ :website: http://www.hiddentao.com/code
2338
+ :repository: https://github.com/7citylearning/updates_notifier
2339
+ usability:
2340
+ :website: http://rmplus.pro/en/redmine/plugins/usability
2341
+ :repository: http://rmplus.pro/en/redmine/plugins/usability
2342
+ user_import_plugin:
2343
+ :website: http://d.hatena.ne.jp/shrkw/20090611/redmine_user_import_en
2344
+ :repository: https://github.com/shrkw/redmine_user_import
2345
+ custom_user_fields_user_group:
2346
+ :website: https://github.com/jrupesh/custom_user_fields
2347
+ :repository: https://github.com/jrupesh/custom_user_fields.git
2348
+ rm_user_mentions:
2349
+ :website: http://rmplus.pro/en/redmine/plugins/user_mentions
2350
+ :repository: http://rmplus.pro/en/redmine/plugins/user_mentions
2351
+ redmine_user_profiles:
2352
+ :website: http://www.r-labs.org/projects/r-labs/wiki/User_Profiles_en
2353
+ :repository: https://bitbucket.org/haru_iida/redmine_user_profiles
2354
+ redmine_user_status:
2355
+ :website: https://github.com/bthesorceror/redmine_user_status
2356
+ :repository: https://github.com/bthesorceror/redmine_user_status.git
2357
+ redmine_user_specific_theme:
2358
+ :website: https://github.com/Undev/redmine_user_specific_theme
2359
+ :repository: https://github.com/Undev/redmine_user_specific_theme
2360
+ redmine_custom_field_users: {}
2361
+ users_performance:
2362
+ :website: https://github.com/alperenbozkurt/redmine_users_performance
2363
+ :repository: https://github.com/alperenbozkurt/redmine_users_performance
2364
+ redmine_users_xls_impex:
2365
+ :website: http://www.redmine.org/boards/3/topics/25342
2366
+ usersnap:
2367
+ :website: https://usersnap.com/redmine
2368
+ vault:
2369
+ :website: https://noshutdown.ru/en/redmine-plugins-vault/
2370
+ :repository: https://github.com/noshutdown-ru/vault
2371
+ version-burndown-charts:
2372
+ :website: http://daipresents.com/2010/redmine_version_burndown_charts_plugin_release/
2373
+ :repository: https://github.com/daipresents/redmine_version_burndown_charts
2374
+ version_status_filter:
2375
+ :website: https://github.com/javiferrer/redmine_version_status_filter
2376
+ :repository: https://github.com/javiferrer/redmine_version_status_filter
2377
+ version_time_control:
2378
+ :website: http://www.trium-agency.fr
2379
+ :repository: https://github.com/misterfifi1/version_time_control
2380
+ redmine_view_customize:
2381
+ :website: https://github.com/onozaty/redmine-view-customize
2382
+ :repository: https://github.com/onozaty/redmine-view-customize
2383
+ vote_on_issues:
2384
+ :website: https://github.com/ojde/redmine-vote_on_issues-plugin
2385
+ :repository: https://github.com/ojde/redmine-vote_on_issues-plugin
2386
+ watcher_groups:
2387
+ :website: http://www.geishatokyo.com/
2388
+ :repository: https://github.com/yyuu/redmine_watcher_groups
2389
+ watcher_sellection_by_group:
2390
+ :website: https://github.com/alvila/redmine_watchers_by_group
2391
+ :repository: https://github.com/alvila/redmine_watchers_by_group
2392
+ watcher_sellection_by_role:
2393
+ :website: http://github.com/alvila/redmine_watchers_by_role
2394
+ :repository: http://github.com/alvila/redmine_watchers_by_role
2395
+ wbs-plugin:
2396
+ :website: https://www.easyredmine.com/redmine-wbs-plugin
2397
+ redmine_webdav:
2398
+ :website: http://github.com/amartel/redmine_webdav
2399
+ :repository: git://github.com/amartel/redmine_webdav.git
2400
+ welcome_picture:
2401
+ :website: http://welcome-picture.devbert.de/
2402
+ :repository: https://github.com/berti92/welcome_picture
2403
+ redmine_whining:
2404
+ :website: http://redmine.debuntu.org/projects/redmine-whining/wiki
2405
+ :repository: http://github.com/chantra/redmine_whining
2406
+ redmine_wiki_backlinks:
2407
+ :repository: https://github.com/bluezio/redmine_wiki_backlinks
2408
+ redmine_wikicipher:
2409
+ :website: https://github.com/keeps/redmine_wikicipher
2410
+ :repository: https://github.com/keeps/redmine_wikicipher
2411
+ redmine_wiki_encryptor:
2412
+ :website: http://centos-admin.ru
2413
+ :repository: https://github.com/olemskoi/redmine_wiki_encryptor.git
2414
+ redmine_wiki_extensions:
2415
+ :website: http://www.r-labs.org/projects/r-labs/wiki/Wiki_Extensions_en
2416
+ :repository: https://github.com/haru/redmine_wiki_extensions
2417
+ wiki_external:
2418
+ :website: https://github.com/nutso/redmine-plugin-wiki-external
2419
+ :repository: https://github.com/nutso/redmine-plugin-wiki-external
2420
+ wiki-external-filter:
2421
+ :website: http://www.logicmatter.com
2422
+ :repository: https://github.com/johnson-logicmatter/wiki_external_filter
2423
+ wiki_gchart_formula:
2424
+ :website: https://github.com/masamitsu-murase/redmine_wiki_gchart_formula
2425
+ :repository: https://github.com/masamitsu-murase/redmine_wiki_gchart_formula.git
2426
+ wiki_html_utility:
2427
+ :website: http://bit.ly/r8iJyp
2428
+ :repository: https://github.com/mexitek/redmine_wiki_html_util
2429
+ wiki_issue_fields:
2430
+ :website: www.seasidetech.net
2431
+ :repository: https://github.com/sbriand/redmine_wiki_issue_fields
2432
+ redmine_wiki_lists:
2433
+ :website: http://www.r-labs.org/projects/wiki_lists/wiki/Wiki_Lists_en
2434
+ :repository: https://github.com/tkusukawa/redmine_wiki_lists
2435
+ redmine_wiki_notes:
2436
+ :website: https://github.com/dseifert/redmine_wiki_notes
2437
+ :repository: git://github.com/dseifert/redmine_wiki_notes.git
2438
+ redmine_sidebar_toc_pt:
2439
+ :website: https://github.com/gilbertf/redmine_sidebar_toc_pt
2440
+ :repository: https://github.com/gilbertf/redmine_sidebar_toc_pt
2441
+ wiki-toc: {}
2442
+ redmine_wiki_files_toolbar:
2443
+ :website: http://www.redmine.org/boards/3/topics/29179
2444
+ wiki_unc_link:
2445
+ :website: http://bearmini.com/lang/en/redmine-plugins/macros-for-wiki/unc-link/
2446
+ :repository: https://github.com/bearmini/redmine_wiki_unc
2447
+ wiking:
2448
+ :website: http://projects.andriylesyuk.com/projects/wiking
2449
+ :repository: http://subversion.andriylesyuk.com/wiking
2450
+ redmine_wordpress_update:
2451
+ :repository: https://github.com/croemmich/redmine_wordpress_update
2452
+ redmine_work_time:
2453
+ :website: http://www.r-labs.org/projects/worktime/wiki
2454
+ :repository: https://github.com/tkusukawa/redmine_work_time
2455
+ redmine_workflow_hidden_fields:
2456
+ :repository: https://github.com/alexwais/redmine_workflow_hidden_fields
2457
+ dnoise_workload:
2458
+ :website: http://www.d-noise.net
2459
+ :repository: https://github.com/dnoise/Redmine-Wordkload-Dnoise
2460
+ redmine_workload:
2461
+ :website: http://www.sevenstax.de
2462
+ :repository: https://github.com/JostBaron/redmine_workload
2463
+ workload-statistic-notificator:
2464
+ :website: https://github.com/DefaultValue/redmine-workload-statistic-notificator
2465
+ :repository: https://github.com/DefaultValue/redmine-workload-statistic-notificator
2466
+ worklogs:
2467
+ :website: https://github.com/IceskYsl/worklogs
2468
+ :repository: https://github.com/IceskYsl/worklogs