redmine

Redmine 2 on Hostmonster apache fcgi: Rails application failed to start properly

血红的双手。 提交于 2019-12-22 14:57:26
问题 I have followed install instructions until configuration section to install redmine 2 on hostmonster. When running domain.com/redmine I have always 500 error Rails application failed to start properly I havent any log about this error in log/production.log . Here is the file: OpenIdAuthentication.store is nil. Using in-memory store. Creating scope :open. Overwriting existing method Version.open. Creating scope :active. Overwriting existing method User.active. DEPRECATION WARNING: The

eclipse mylyn with redmine

你。 提交于 2019-12-22 04:34:23
问题 Is it possible to connect mylyn to redmine without rest support in redmine? 回答1: there is a link http://download.eclipse.org/mylyn/incubator/3.8 that can be used in Eclipse. for Eclipse indigo : Help -> Install New Software -> Add -> use the link above for URL there should be plugin to check off : Mylyn Incubator -> Mylyn Task Connector:Web Templates (Advanced)(Incubation). Version = 3.8.0.I20120414-0402 after installing it, i was able to follow steps outlined in http://www.redmine.org

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

拟墨画扇 提交于 2019-12-22 04:16:09
问题 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 that in mind, I've attempted to use git subtree merging (explained here, and here). I've created an "umbrella" repo which has merged in each of the numerous other repos that I'm working with. Unfortunately, the examples given only pull in the master

Redmine email configuration with environment variables

柔情痞子 提交于 2019-12-21 23:33:41
问题 I've configured email on redmine according to the instructions in the redmine wiki, and it all works fine. Here are the contents of my config/configuration.yml file: production: delivery_method: :smtp smtp_settings: address: "smtp.sendgrid.net" port: 587 authentication: :plain domain: "heroku.com" user_name: my_email@gmail.com password: my_password However I am trying to use environment variables in place of my_email@gmail.com and my_password like so: production: delivery_method: :smtp smtp

You cannot specify the same gem twice with different version requirements

风流意气都作罢 提交于 2019-12-21 12:41:49
问题 I have 2 plugins installed(redmine_backlogs and redmine_ldap_sync), but after upgrade of redmine_ldap_sync from 2.0.0 to 2.0.1 a Gemfile was added. Here the backlogs's Gemfile https://github.com/backlogs/redmine_backlogs/blob/v1.0.2/Gemfile and ldap sync's Gemfile https://github.com/thorin/redmine_ldap_sync/blob/2.0.1/Gemfile In both cases, the simplecov is in the test group. I tried to run bundle install --without development test but I got this error: You cannot specify the same gem twice

EntityFramework tries to select a none existing column?

放肆的年华 提交于 2019-12-21 09:15:20
问题 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 following class: public class Journal { public int id { get; set; } public int journalized_id { get; set; } public string journalized_type { get; set; } public int user_id { get; set; } public string notes { get; set; } public System.DateTime

Associating revisions with a Redmine issue

旧时模样 提交于 2019-12-21 05:32:08
问题 Is there a way to manually associate a revision/commit with a Redmine issue? Normally we do that by having a proper format of the commit message ("Resolves #..." in our case). But I forgot about it and used a different message. I have no rights to change the commit message now. And even if I would I still would not be able to delete Redmine's data for it to rebuild it again. (Method given in question Redmine and SVN: How to link a Revision to an Issue AFTER the commit has happened?). I have

Best way to link Redmine issue to SVN revision

家住魔仙堡 提交于 2019-12-20 08:40:27
问题 We are using Redmine for issue and bug tracking. We added SVN integration but, by doing this, it just shows SVN revisions in activity. It would be great to see all SVN changes caused by a bug or issue. But it does not seem to be possible. Is there a way to do that? If not Redmine, which is the best alternative tracking system to achieve this? 回答1: We add the issue number in svn commit message and it's recognized automatically. svn ci -m "incorrect encoding fixed (refs #2345)" Later you'll be

Change value of custom field in Redmine hook

筅森魡賤 提交于 2019-12-19 03:46:05
问题 The problem: My issues currently have 3 custom fields, let's say FieldA (select list), FieldB (irrelevant), and FieldC (text). What needs to happen is that on save, FieldC takes the value of <FieldA>-<date in Ymd>-<number from database> As an example, let's assume that FieldA has the value "Test", and today is the 8th of Jan 2015. FieldC should then be Test-20150108-001 where 001 comes from a custom table in the database, that's unique per value of FieldA, and resets every year. What I've

Mylyn & Redmine Integration

会有一股神秘感。 提交于 2019-12-18 10:05:48
问题 I'm trying to get Mylyn and Redmine work together so I can manage tasks right inside Eclipse. I saw this on redmine wiki http://www.redmine.org/wiki/redmine/HowTo_Mylyn but I think it's for the old version of Mylyn. I can't find the Generic Web Connector plugin for Mylyn but there's this Web templates plugin. I think that one replaced the Generic Web Connector. But it's quite different from the screenshots posted at the Redmine wiki. There's no Task URL, New Task URL, etc. 回答1: Here is what