Search
Results (18298)
- 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.
- I recently upgraded from version 0.9.2 to 1.0 ... seems to be working ok, except for one weird issue. None of the variables on the Overview page ... er on the Overview pages, like so: <pre> Issue tracking * Bug: %{count} open / %{total ... appening and how to fix it? Thanks, Jeff
- Development: RE: My thoughts on Redmine 1.1
- Igor Balk wrote: > I think it might sense to ... returns true or false. It's only used with Issues right now but it can easily be extended to ... would be pretty nice too. Example of how @Issue#recipients@ uses it (with some custom code) ... xisting code" into the core. ;) Eric Davis
- Hi. I just want to know how to force issues to be assigned to someone. When I add a new issue (task) the "Assign to" dropdown has an empty ... . How can I fix this? Thanks in advance
- Help: RE: Redmine api requires a username and password
- So to circle back on this, a little more inve ... p://github.com/delaitre/redmine_time_tracker/issues#issue/24 Thanks so much for the response.
- Hi, According to the [[RedmineWikis#Wiki-p ... the Wiki. Any idea? I could not find any issue related to that. Many thanks! Jan
- Open discussion: RE: Help with Awesome Nested Set
- Done. In Awesome nested set I can use the move_to_child_of(ID) method to set the parent of an issue, but this only work in the same tree of the issue to move. Probably I need to define the scoope to moved properly. But I´m fine with the parent_issue_id method of models/issue.rb, I update the file to the latest commit and run some test, it´s working great. Thanks a lot. !
- Open discussion: RE: Help with Awesome Nested Set
- Some documentation is available in here: sour ... you have to say "B is A's child". BUT the issue model knows a few more tricks, you will want to use @Issue#parent_issue_id=@ for your plugin, see source:/trunk/app/models/issue.rb#L559
- Open discussion: RE: Help with Awesome Nested Set
- I´m using Redmine methods in my own plugin Ex. issue = Issue.new issue.status_id = status issue.priority_id = priority issue.subject = subject issue.project_id = project.id ... issue.save
- Hi, I was wondering if it was possible to customise the "New issue" page? More specificallly I would like to m ... any patches which might help? Thanks Lee