Project

General

Profile

Search

Results (18307)

Open discussion: RE: add "missing" link between a commit and an issue
No. 2010-09-13 16:42
Help: Notice of object missing from database
Just before the demise of Emerald I bought a ... d the creator who had never had this type of issue reported to her but sent me a new pair of bo ... gain and I still get the popup. Not a major issue folks but it's really annoying! Help! 2010-09-13 16:03
Open discussion: add "missing" link between a commit and an issue
Hi All, from what I understood, the "link" between issues and commits are done based upon the parsing ... mitted to precise it or refered to the wrong issue) without modifying "dirtily" directly the database (without the redmine interface) ? thanks 2010-09-13 15:28
Help: RE: Creating issues in a script
You will need at least @File.read("/path/to/f ... tiate one by just googling around real quick. 2010-09-13 13:30
Plugins: RE: Redmine Messenger problems
Terence Mill wrote: > Although the "RedmineM ... ://github.com/mszczytowski/redmine_messenger/issues#issue/13 seems to be working, i get some alarming ... production: <<: *development </pre> 2010-09-13 12:40
Plugins: Redmine Messenger problems
Although the "RedmineMessenger":http://github ... ://github.com/mszczytowski/redmine_messenger/issues#issue/13 seems to be working, i get some alarming ... -2.2.14/bin/passenger-spawn-server:61 </pre> 2010-09-13 12:38
Help: RE: Creating issues in a script
Thanks for the help :). I'll try out the runn ... attachment = Attachment.create(:container => issue, :file => "/var/log/nightbuild.log", :author ... ss should I use for @file@? How to create it? 2010-09-13 12:02
Help: RE: Creating issues in a script
You might prefer to use: <pre>#!/path/to/r ... but as I said: not a supported way to enter issues. 2010-09-13 10:11
Help: RE: Creating issues in a script
I found the solution. <pre> script/consol ... kers.find_by_name("Bug") category = project.issue_categories.find_by_name("some") priority = IssuePriority.find_by_name("Urgent") status = IssueStatus.find_by_name("New") issue = Issue.new( :author => user, :project => proj ... ity => priority, :assigned_to => user ) issue.subject = "Night build has failed" issue.description = "Issue body" issue.save </pre> 2010-09-13 01:40
Help: RE: Creating issues in a script
I am not only didn't study IssuesController, I didn't study ruby as well. I t ... user = User.find_by_mail("user@server.com") issue = Issue.new(:author => user, :project => project, :t ... priority => priority, :assigned_to => user) issue.save! </pre> ? 2010-09-12 22:34
Help: RE: Creating issues in a script
If your ruby/rails is up to speed: @script/ru ... ommend against it if you haven't studied the IssuesController to enough extent that you know what you are doing. 2010-09-12 22:10
Help: RE: Creating issues in a script
Are there any other ways to create an issue from a script? Can I launch some Ruby Redmin ... ld be with the "Assigned to" field of course. 2010-09-12 22:04
Help: RE: Creating issues in a script
Alright, that explains a lot. I am using 0.9. ... the help anyway :). I'll wait for the next issue of Ubuntu, where the new Redmine will be included. 2010-09-12 21:52
Help: RE: Creating issues in a script
I'm not sure when that keyword was added, but ... signee needs to be member of the project the issue is created in too. If it helps: that's feature's been added in r3764. 2010-09-12 21:45
Help: RE: Creating issues in a script
Just in case, my environment is: <pre> Ab ... s Redmine Code Review plugin 0.3.1 </pre> 2010-09-12 21:37
Help: RE: Creating issues in a script
Felix Schäfer wrote: > but you will want the ... r@server.com Subject: Night build failed Issue body Assigned To: user EOF } | rdm-mail ... he result is still pretty much the same: the issue is unassigned. 2010-09-12 21:31
Help: RE: Creating issues in a script
The @To:@ header is typically the address you ... he "Assigned To:" keyword in the mail itself. 2010-09-12 21:02
Open discussion: Export project(s) - NOT FOR THE FAINT OF HEART!
*DISCLAIMER*: This is a f*ugly hack at best, ... ry and contains subdirectories for: * all issues as PDF files, * the (raw) wikipages as tex ... :Export::PDF include Redmine::I18n include IssuesHelper def self.current_language; "en"; end ... _descendants.each do |project| paths = %w(issues wiki files).collect {|p| "exports/#{project.identifier}/#{p}"} File.makedirs *paths project.issues.each do |issue| filename = "#{format("%04d", issue.id)} -- #{issue.category.name if issue.category} -- #{issue.subject}.pdf".gsub(/\//, '_') File.open("exports/#{project.identifier}/issues/#{filename}", 'w') {|f| f.write(issue_to_pdf(issue)) } end project.wiki.pages.each do |pa ... tory" if project.repository end</code></pre> 2010-09-12 20:54
Help: Creating issues in a script
I am experimenting with a shell script that would allow me to create an issue on certain conditions. For example, if a nig ... r@server.com Subject: Night build failed Issue body EOF } | rdm-mailhandler.rb --url=http ... priority=Urgent </pre> It does create an issue. But the problem is that “Assigned to” field in the created issue is empty. I tried different combinations of ... "Assigned to" is still empty. What is wrong? 2010-09-12 20:31
Help: RE: MySQL Problems
That's out of the scope of this forum, sorry, ... verything needed. You talked about having issues with the mantis script though, does your re ... works, well, the gem obviously does as well. 2010-09-12 17:33
Help: RE: auto log time / issue from commit log
See [[RedmineSettings#Referencing-issues-in-commit-messages]], logging time isn't an ... e seen a plugin or at least a patch for that. 2010-09-12 17:18
Help: MySQL Problems
Hi, I'm trying to use the Mantis Import Sc ... message with "Object is not missing constant Issue!". After googling a bit I found the advice t ... stall with Mac OS 10.6.4 on Mac Pro. Trixi 2010-09-12 15:41
Help: auto log time / issue from commit log
Is there a way to automatically populate time log / issue notes from the message in a commit string? ... ee any mention of this feature....). -matt 2010-09-12 14:47
Plugins: Migrating ckeditor wysywig editor to the 1.0 release.
Hey guys, We're trying to get everyone at ... s built for 0.9. The "render" method in the issues controller has been removed, so the plugin ... file attempts to process the output from the IssueController. http://github.com/tnine/redmine_ckeditor/blob/master/lib/redmine_ckeditor/issues_controller_patch.rb Can anyone give me s ... a lot of rails development. Thanks, Todd 2010-09-12 04:12
Help: RE: %{count} Variables not resolving after upgrade from 0.9.2 to 1.0.1
I figure out what my problem was. I had execu ... sed on this defect: http://www.redmine.org/issues/5608 That didn't end up helping me. But ... irectory, everything is working as expected. 2010-09-11 06:17
(13526-13550/18307)