Questions tagged [redmine-plugins]

Redmine is a flexible project management web application written using Ruby on Rails framework.

http://www.redmine.org/projects/redmine/wiki/Features

377 questions
1
vote
1 answer

How to create functional tests for a Redmine 3 plugin

I have created few Redmine 3 plugins and now I want to code the tests to ensure a better stability if possible. But now I can't create anything that works, I tried to look at other plugin's tests, and I can't reproduce things to work in any way…
user1270589
1
vote
1 answer

Redmine : Setting up ERPmine plugin aborted due to "existant table: wk_addresses "

I'm trying to install the "ERPmine" plugin : Official documentation : http://www.redmine.org/plugins/wk-time As the documentation says , and like every plugin i'm used to do the following : importing this plugin to the /redmine/plugins…
firasKoubaa
  • 6,439
  • 25
  • 79
  • 148
1
vote
1 answer

Ruby undefined method error

i'm learning Ruby on Rails and working on redmine and some redmine plugins currently. <% for row in rows %> <%row_array = rows.to_a%> "> <%= link_to h(row), aggregate_path(@project,…
Mustafa Yılmaz
  • 103
  • 2
  • 11
1
vote
1 answer

Redmine Plugin trashed by errant flash statement

I accidentally put a bad flash statement in my Redmine Plugin, and now my entire Redmine is trashed. No matter what I do, I get the following invincible error message: ActionView::Template::Error (undefined method `html_safe' for :value:Symbol): …
ineedahero
  • 488
  • 2
  • 7
  • 22
1
vote
2 answers

Ankhsvn integration with Redmine

Just out of curiousity I'm deploying AnkhSVN with Visual Studio 2010 in our development office, and have had much success with Redmine in managing projects. However, one issue is integrating AnkhSVN with Redmine in regard to Issues. So I can…
wonea
  • 4,783
  • 17
  • 86
  • 139
1
vote
1 answer

Rails: Use cocoon gem without asset pipeline

I'm writing a plugin in Rails for Redmine, an application that does not support the asset pipeline. Is there any way I can use the cocoon gem, but without using the asset pipeline? My Rails version is 3.2.21 Doing the following: //= require…
1
vote
1 answer

How to save data using Redmine issue model

I need to modify the issue's start_date and due_date some how, But I haven't used Rails before, so I don't know how the it run in server, And I need to implement it in a short time. So I add these code in the controller, def date issue =…
BabyCabbage
  • 187
  • 1
  • 9
1
vote
2 answers

"no implicit conversion of nil into String"in the Search Module of Redmine

On the redmine of my company, there is this bug where I get an internal error if I want to search into a project. Here is the log corresponding to the error: Processing by SearchController#index as HTML Parameters: {"utf8"=>"✓", "issues"=>"1",…
Roux
  • 293
  • 2
  • 17
1
vote
3 answers

actionview::template::error(undefined method 'html_safe' for nil:NilClass)

I am a beginer in ruby and I want to write a plugin for redmine. I have written a plugin which was running since I use 'flash[:var]' in a controller of my plugin. Now when I want to access to all my pages I have an error message that I not…
aganthie
  • 33
  • 6
1
vote
1 answer

Redmine Adding Custom Selection Box

I have started working on a plugin for redmine that will allow me to assign a Quickbooks Online (QBO) contact to an issue. I have created a table for the contacts that only stores a name for each qbo contact. I have also added a migration to add a…
1
vote
3 answers

How can I replace the render partial from my plugin in redmine?

I'm creates a plugin for Redmine. I want add class into a tag on the issues list page (issues/_list.html.erb view). But I don't want change the core Redmine code. As I understand, hooks (for example :view_issues_index_bottom) allows to me to add…
jonua
  • 1,915
  • 3
  • 17
  • 27
1
vote
2 answers

May I include in ActiveRecord model a new relation from my plugin?

I'm creating a plugin for Redmine. I want to use the core Issue model, but I want to include in it a relation with my model, which created in the plugin structure. How can I patch the Issue model for including a new relationship in my plugin?
jonua
  • 1,915
  • 3
  • 17
  • 27
1
vote
1 answer

How can I add a new setting tab into the Redmine project settings?

I create a plugin. I want to add an any settings for it into the projects settings. I want to create a new tab with my settings into the redmine project settings. I use the redmine version 3.1.0.devel. What can I do for that? updated: It's a code,…
jonua
  • 1,915
  • 3
  • 17
  • 27
1
vote
1 answer

Request-URI Too Long in REDMINE TIMESHEET PLUGIN

I am getting in redmine Request-URI Too Long The requested URL's length exceeds the capacity limit for this server. whenever I try to select csv in timesheet plugin to export the timesheet report. How do i solve this please tell me
ruby
  • 63
  • 1
  • 9
1
vote
1 answer

Getting 404 error post data after reaches controller action in rails

I have been trying to post data to controller action in RAILS application development. When i post data through form, POST data reaches specific controller action defined in routes.rb. But it gives back with 404 error. Here is…
Prasanth P
  • 715
  • 2
  • 9
  • 24