Project

General

Profile

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> ? 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
Help: %{count} Variables not resolving after upgrade from 0.9.2 to 1.0.1
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 2010-09-11 05:44
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 2010-09-11 01:15
Help: How to make "assign to" a required field?
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 2010-09-10 19:43
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. 2010-09-10 19:41
Help: "Rollback to this version" missing in Wiki
Hi, According to the [[RedmineWikis#Wiki-p ... the Wiki. Any idea? I could not find any issue related to that. Many thanks! Jan 2010-09-10 17:21
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. ! 2010-09-10 16:40
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 2010-09-10 15:56
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 2010-09-10 15:27
Help: Customise New Issue page?
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 2010-09-10 12:15
(13526-13550/18298)