Questions tagged [redmine]

Redmine is a flexible project management web application. Written using the Ruby on Rails framework, it is cross-platform and cross-database.

Redmine

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

The community has grown in the last few years, making it one of the most used project management tools. This has also given Redmine a great list of plugins, customization and support from the community.

Redmine is open source with its main repository on SVN. For cloning there are also repositories on GitHub and on Bitbucket (for Mercurial users).

Feature Overview

  • Multiple projects support
  • Flexible role based access control
  • Flexible issue tracking system
  • Gantt chart and calendar
  • News, documents & files management
  • Feeds & email notifications
  • Per project wiki
  • Per project forums
  • Time tracking
  • Custom fields for issues, time-entries, projects and users
  • SCM integration (SVN, CVS, Git, Mercurial and Bazaar)
  • Issue creation via email
  • Multiple LDAP authentication support
  • User self-registration support
  • Multi-language support
  • Multiple databases support
  • REST API
  • Plugins

Documentation & Links

1972 questions
9
votes
1 answer

send PDF with rails send_data

I use ruby 1.9.3 and redmine 1.4.4 According to this -> Please help me send a jpg file using send_data , I do that in a controller: @file = temp.path File.open(@file, 'r') do |f| send_data f.read, :filename => "myfile.pdf", :type =>…
EloHailwidis
  • 403
  • 1
  • 4
  • 16
9
votes
2 answers

Is there a redmine plugin to create multiple issues at once?

Redmine has a nice batch edit feature, but nothing equivalent for "batch create" (please correct me if I'm wrong!) FogBugz lets you quickly create multiple tickets with the same properties (type, status, assignment, etc.) via a ajax-ified text box…
Jerph
  • 4,572
  • 3
  • 42
  • 41
9
votes
2 answers

Inserting special character in Redmine wiki page

I'm using Redmine and I'm trying to insert the special character | inside a table in a Redmine wiki page. I don't want this character to be parsed as a column separator. I've achieved this by doing a | around this character, but I don't…
Miguel Rentes
  • 994
  • 1
  • 10
  • 27
9
votes
1 answer

EntityFramework tries to select a none existing column?

I have an issue and I just can't figure out what is causing the issue. I have a redmine database with a 'journals' table http://puu.sh/1iRIt. Using the Visual Studio 2012 plugin EntityFramework Power Tools this has been reverse engineered into the…
Wubinator
  • 741
  • 1
  • 7
  • 16
9
votes
2 answers

Redmine + Gitolite - Issue with repository permissions and more

I have a Redmine installation on the same server as my gitolite repositories. In order to link my repository to my Redmine instance, I locally cloned the repo with the following command: git clone --bare --local…
Daniel Ribeiro
  • 10,156
  • 12
  • 47
  • 79
9
votes
2 answers

Plugin migrations for Redmine

I'm developing a plugin for Redmine. How do I create a migration for it? If I use script/generate plugin_migration, it'll be placed in /db/migrate folder, but I need it to be in my plugin's folder.
lightalloy
  • 1,165
  • 14
  • 16
8
votes
2 answers

eclipse mylyn with redmine

Is it possible to connect mylyn to redmine without rest support in redmine?
michael nesterenko
  • 14,222
  • 25
  • 114
  • 182
8
votes
5 answers

Sync Redmine to another Redmine?

Our company uses Redmine to track tech support issues, but sometimes these issues are escalated to the outsourced development team, who has their own Redmine. Has anyone ever found/written a sync between the two, so that a pair of issues can be…
8
votes
2 answers

How to link redmine user with repository user

I have a Redmine project linked with a repository (git). I want to link my commits with my Redmine account. Now my every commit is made by "Anonymous" user, because RM username and repo username differ.
Soul Reaver
  • 2,012
  • 3
  • 37
  • 52
8
votes
2 answers

any way to synchonise between Redmine(or other issue trackers) and a plain text todo list?

I would like to access a Redmine taskbase via a simple text based interface - wondering what the shortest path would be (minimum investment/development). Right now, this boils down to 2 use cases/phases: Import a batch of tasks into Redmine from…
inger
  • 19,574
  • 9
  • 49
  • 54
8
votes
1 answer

Attach file to issue in GitHub via API

My requirement is to migrate issues from Redmine to GitHub issue tracker. I exported Redmine issues to a csv file. Using GitHub issue api I am able to create issues in github along with labels. But I also need to attach file while creating issue,…
yogeshagr
  • 819
  • 2
  • 11
  • 20
8
votes
1 answer

Using git subtree merging, while also merging in all branches of all merged subtrees

I'd like to use a popular, open source issue tracker (Redmine) that offers git integration. Unfortunately, each project in the tracker can only be associated with one git repo. Creating multiple projects in the tracker is not my ideal setup. With…
anthony
  • 40,424
  • 5
  • 55
  • 128
7
votes
3 answers

Redmine email configuration: "undefined method `email_delivery=' for ActionMailer::Base:Class"

I'm configuring email notifications for Redmine after installing Redmine for the first time. I created /etc/redmine/default/email.yml and added: # Outgoing email settings production: email_delivery: delivery_method: :smtp smtp_settings: …
Jon Cram
  • 16,609
  • 24
  • 76
  • 107
7
votes
1 answer

Track a Rails project on private repo on GitHub with Redmine and Integrity deployed on Heroku

Scenario Project A is a Rails application: Code hosted on GitHub on a private repo. Deployed on Heroku (which has a readonly file system). Project R that is an instance of Redmine, used to manage my project A: Code hosted on GitHub on another…
Andrea Salicetti
  • 2,423
  • 24
  • 37
7
votes
4 answers

Bold syntax around single character in Redmine

In Redmine's text editor, to make any word bold you have to surround it with an asterisk * like *this*. My question is how could I make only one character bold? *t*his does not seem to work.
BTR Naidu
  • 1,063
  • 3
  • 18
  • 45