Redmine is a flexible project management web application written using Ruby on Rails framework.
Questions tagged [redmine-plugins]
377 questions
0
votes
1 answer
Adding attributes to Project module through plugin patch
I'm trying to create a patch in redmine to add a project specific email header and email footer for outgoing emails. I looked at a few examples and managed to get something up and running, but whenever I click 'Save' it flashes a 'success' notice…

ianking
- 75
- 6
0
votes
1 answer
redmine email configuration with smtp
I installed Redmine 2.6.1.1 using Bitnami on Win 7, but couldn't figure out why redmine cannot send any email. I edited the configuration.yml file under \redmine-2.6.1-1\apps\redmine\htdocs\config and tried to send a test mail via both Gmail and our…

simon_tulia
- 396
- 1
- 6
- 22
0
votes
1 answer
Redmine 2.6.1 See Project in tree view
I am looking for a way to get redmine to show the projects list as a tree view.
I have looked a lot in internet and so far have found two plugins that should do it but none of them work.
The first on was: redmine_projects_accordion…

Ebarriosjr
- 105
- 1
- 8
0
votes
1 answer
(Redmine) how to fix an error with custom fields?
I have an error, when I'm trying to access to the custom fields page in the administration tab (Administration -> Custom Fields -> 500 error):
Internal error
An error occurred on the page you were trying to access.
If you continue to experience…

user1835337
- 656
- 1
- 9
- 32
0
votes
1 answer
Storing a boolean with Redmine provided plugin settings
I am developing a plugin for the Redmine project management system. To configure the plugin I am using the framework-provided settings partial. I need to store a boolean value that should be set and unset using a checkbox.
While

Nils Schikora
- 101
- 9
0
votes
0 answers
PhusionPassenger::UnknownError, Ruby on Rails application could not be started
I'm using Redmine SAML authentication plugin to integrate redmine with my application inorder to enable Single Sign On(SSO) in redmine which made it possible for users to login with the same username and password.
Following ruby and rails versions…

Chanuka Ranaba
- 635
- 3
- 12
- 24
0
votes
0 answers
Redmine CKEditor Image upload Paperclip::Errors::NotIdentifiedByImageMagickError Windows
I recently installed the Bitnami Redmine 2.6.0. for Windows. After some test I started installing two plugins clipboard_image_paste and redmine_ckeditor.
At first I had some troubles to install them but everything worked out at the…

Alex
- 41
- 3
0
votes
0 answers
How to push actions to already defined before_filter?
I am writing a redmine plugin and need to add some actions to before_filter that is already defined in redmine's 'IssuesController'
For example,
issues_controller.rb
class IssuesController < ApplicationController
before_filter :find_issue, :only…

Ramiz Raja
- 5,942
- 3
- 27
- 39
0
votes
1 answer
Redmine Omniauth Google plugin
I have installed Redmine Omniauth Google plugin and when I clicked "Login via Google" button, I got an error message:"You can not login using gmail.com domain." but I can't figure out where is the problem.
0
votes
1 answer
Mylyn Synchronize Local and Remote Repositories
I'm currently turning into an avid mylyn user. It really has changed my workflow at work as well as for private projects.
However one thing is bothering me a bit. Especially when working on private project ideas I often stumble upon the following…

nanoquack
- 949
- 2
- 9
- 26
0
votes
1 answer
Gantt charts in Redmine -increase column size of issue description?
Is there a way to increase the column size of the issue description in Gantt chart in Redmine?Are there any backend files that need to be edited? Or any patches that need to be applied?

Chanthu
- 774
- 7
- 15
0
votes
0 answers
Rails magic ; and <=>
I'm new to Rails and I'm studying Redmine. I see 2 magic function definitions as below:
1.
def to_s; name end
and 2.
def <=>(tracker)
position <=> tracker.position
end
I cannot understand, please explain what is ";" in "to_s;" and what…

vietstone
- 8,784
- 16
- 52
- 79
0
votes
2 answers
Redmine Plugin: adding columns to Redmine-built-in existing database
With Rails, adding columns is easy as this link:
Ruby on Rails: adding columns to existing database
With Redmine Plugin, adding columns for plugin's table seems OK as this link:
http://www.redmine.org/boards/2/topics/39008
But in my Redmine Plugin,…

vietstone
- 8,784
- 16
- 52
- 79
0
votes
1 answer
Import does not work redmine_loader plugin. Does not work "update exists"
I installed on Redmine redmine_loader plugin to import projects from MSProject in Redmine.
Unfortunately function "update exists" does not work.
Environment:
Redmine version 2.5.1.stable.13174
Ruby version …

vdranik
- 1
- 1
0
votes
0 answers
ROR3: ActionMailer, Alias mail method
I have a class in the core application,
class Mailer < ActionMailer::Base
.
.
def mail(headers={}, &block)
headers.merge! 'Auto-Submitted' => 'auto-generated',
'From' => Setting.mail_from,
…

rupeshj
- 139
- 1
- 8