Redmine is a flexible project management web application written using Ruby on Rails framework.
Questions tagged [redmine-plugins]
377 questions
0
votes
1 answer
NoMethodError when calling a helper method in a view
I'm working on a simple timesheet plugin for Redmine, all was going well until I tried to use helpers.
The helper:
module TimesheetHelper
def first_day_in_week(datum)
return unless datum.kind_of? Date
datum - datum.wday
end
def…

Jonas Van der Aa
- 1,441
- 12
- 27
0
votes
1 answer
How to get table id after POST operation
I have to get the row id after submission of a form.
My model is Boxelement.rb
def create
if @boxelement.save
puts params[:boxelement]
end
end
Output is:
{"name"=>"fwqfew", "project_id"=>"1",…

Reza
- 2,896
- 4
- 26
- 37
0
votes
1 answer
Internal error when installing scrumbler plugin to redmine
I've installed the scrumbler plugin to Redmine for project management according to SCRUM methodology :
cd plugins
git clone git://github.com/256MbTeam/Redmine-Scrumbler.git redmine_scrumbler
rake redmine:plugins:migrate
I have got in browser:…

Abdennour TOUMI
- 87,526
- 38
- 249
- 254
0
votes
1 answer
Page not displaying new data after POST request
Ruby on Rails 3.2.13
Redmine: 2.3.1.stable
Browser: Chrome, Firefox, latest versions
Problem
I'm trying to submit a start and end date via date picker and reload the current page with the chosen values. Based on this values a query is executed and…

Markus L
- 932
- 2
- 20
- 38
0
votes
1 answer
Redmine hooking a plugin
Good evening everyone! I am stuck with something about a plugin of mine, and I would really appreciate some advice.
The problem
I wrote a simple plugin, that modifies the form for creating a new project by adding new fieldset with some checkboxes. I…

Artamiel
- 3,652
- 2
- 19
- 24
0
votes
1 answer
Run a nodeJS code in a Redmine plugin
How can I run a nodeJS code in a Redmine plugin ?
With a nodeJS server or from the controller or anything else ... ?
My plugin is an HTML button in a Hook, calling an onClick javascript function.
When I push this button, I want to run the nodeJs…

EloHailwidis
- 403
- 1
- 4
- 16
0
votes
1 answer
How to change common styles for redmine email messages?
I need to make some styles available for every html email message in my custom redmine plugin. So I should do something with mailer layout https://github.com/redmine/redmine/blob/master/app/views/layouts/mailer.html.erb
As this file doesn't contain…

MikeZ
- 485
- 4
- 13
0
votes
1 answer
Redmine user controller hooks in plugin
I want to write a plugin for redmine. in this plugin i want to limit number of user registration.
How can i hook redmine user controller to do this limitation? I don't want to change core redmine code. for example:
if User.count = 10
…

Abolfazl Mahmoodi
- 380
- 1
- 3
- 20
0
votes
0 answers
Redmine sending email notifications only for one project, why?
My redmine is sending e-mail notifications just for one project created, the other projects had the same configuration with observation and everything equals but don't send e-mail.
The main problem is that this redmine data base was migrated from…

tiagomac
- 461
- 1
- 7
- 18
0
votes
1 answer
Two same routes doing different actions error
I've the same two routes (see below) which can be activated by two different buttons, which call two different buttons.
My scenario is:
I've two buttons on the same page ("Release Version" and "Publish Version"). For each of these buttons I call a…

kamusett
- 1,403
- 1
- 12
- 22
0
votes
1 answer
How to add many tab in a function of redmine tool
How can i add many tab like settings function in projects menu bar when i created new redmine plugin. It have many tab: 'Information, Modules, Members, Version,

user3227206
- 1
- 1
0
votes
2 answers
Redmine project menu bar dissapeared when adding new plugin
I am beginner in the development for Redmine. I created a plugin and added it into project menu. But when i clicked to this tab, it does not link to page I want and the project menu bar disappears. It's hard to control all activities on project…

user3227206
- 1
- 1
0
votes
0 answers
Using Whenever with RedMine
I am trying to set up a cron task for a model in a redmine plugin. The Whenever gem looked like the best option. Alas, it does not seem to do anything.
I have set up the gem, both in the config folder of the plugin and the primary one. I added it…

Btuman
- 881
- 2
- 9
- 37
0
votes
0 answers
Possible to upgrade redmine 1.3.2 stable (MySQL) installed from repository?
Some month ago I installed Redmine from repository using apt-get install redmine. I didn't know much about redmine so I just followed a guide, created a MySql DB and a user and installed it. Version is 1.3.2
Later on I wanted to install some plugins…

RayofCommand
- 4,054
- 17
- 56
- 92
0
votes
1 answer
Redmine plugin install (RedmineCRM Finance) results in 503
So my problem is that for some some reason installation of some plugins kills my bitnami redmine "permanently" (thin_redmine and thin_redmine2 stops after like 5 seconds).
The plugin which most recently did this is Finance Plugin from RedmineCRM.…

Tiraus
- 53
- 1
- 1
- 4