Search
Results (18307)
- Open discussion: RE: add "missing" link between a commit and an issue
- No.
- 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!
- 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
- 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.
- 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>
- 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>
- 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?
- 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.
- 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>
- 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> ?
- 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.
- 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.
- 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.
- 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.
- Help: RE: Creating issues in a script
- Just in case, my environment is: <pre> Ab ... s Redmine Code Review plugin 0.3.1 </pre>
- 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.
- Help: RE: Creating issues in a script
- The @To:@ header is typically the address you ... he "Assigned To:" keyword in the mail itself.
- *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>
- 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?
- 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.
- 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.
- 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
- 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
- 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
- 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.