Search
Results (18307)
- Help: RE: Issue Reminder
- Terence Mill wrote: > I thinh that can resul ... thinking about modifying this to respect it.
- Help: RE: Issue Reminder
- I thinh that can result in mass emails, if yo ... s for special types of notification/trackers.
- Help: RE: How can I set default for issue start date to be nothing?
- Beau Simensen wrote: > I'd like to have the default start date for issues to be nothing. Is this possible? If so, whe ... mind. Not without patching the core. See issue #2277 which includes a patch. Note though, that Redmine @1.0.2@ (according to issue-property; probably @1.0.0@ and @1.0.1@ are a ... and planned for release with Redmine @1.0.4@.
- I'd like to have the default start date for issues to be nothing. Is this possible? If so, whe ... t. I may often not have a start date in mind.
- Help: RE: Sharing issues with subprojects
- Dirk Elbeshausen wrote: > Did I missed some ... issing feature indeed... Search the existing issues if one, requesting the described feature, e ... dy or open a new one if needed. Regards...
- Plugins: RE: Contacts plugin
- Michal Slazak wrote: > It would be nice if ... ad of typing the number when adding it to an issue, but it's not a big deal. Passed
- Help: RE: Subtask display fields
- Sorry, poor formatting, and I can't find the ... rk correctly :) <pre> svn diff app/helpers/issues_helper.rb Index: app/helpers/issues_helper.rb =================================================================== --- app/helpers/issues_helper.rb (revision 4244) +++ app/helpers/issues_helper.rb (working copy) @@ -70,6 +70,7 @@ ... ) + content_tag('td', link_to_issue(child, :truncate => 60), :class => 'subject' ... width => '80px')), :class => "issue issue-#{child.id} hascontextmenu #{level > 0 ? "idnt idnt-#{level}" : nil}") </pre>
- Help: RE: Subtask display fields
- I must have a different version, I found it on line 72. <code>svn diff app/helpers/issues_helper.rb Index: app/helpers/issues_helper.rb =================================================================== --- app/helpers/issues_helper.rb (revision 4244) +++ app/helpers/issues_helper.rb (working copy) @@ -70,6 +70,7 @@ ... ) + content_tag('td', link_to_issue(child, :truncate => 60), :class => 'subject' ... width => '80px')), :class => "issue issue-#{child.id} hascontextmenu #{level > 0 ? "id ... l}" : nil}") </code> Worked like a champ :)
- Help: RE: Subtask display fields
- Hi Kai, I wanted to display the priority o ... lowing file (on version 1.0): @/app/helpers/issues_helper.rb@ Add the following line after li ... .. but I hope this helps in some way. Alex
- Open discussion: RE: List of pro's - JIRA vs Redmine
- Alexey Skor wrote: > Nils Linde wrote: > > ... ng options. Redmine is concentrating more on issues and projects, than employees and users. It ... jects that a member is part of? And so on...
- Open discussion: RE: List of pro's - JIRA vs Redmine
- Nils Linde wrote: > Redmine CONS: > * Build ... ng options. Redmine is concentrating more on issues and projects, than employees and users. It ... though - due to Jira's SOAP API limitations).
- Plugins: RE: Contacts plugin
- That's great. Cheers! It would be nice if ... ad of typing the number when adding it to an issue, but it's not a big deal.
- Plugins: RE: Contacts plugin
- Michal Slazak wrote: > Could you please give ... ticular project in case you needed to assign issues from different projects to the same Contact. I've planned this feature
- Plugins: RE: Contacts plugin
- Could you please give me access to SVN or cre ... ticular project in case you needed to assign issues from different projects to the same Contact.
- Plugins: RE: Contacts plugin
- I've added tracker selection to create issue form from contact page
- I'm not sure whether this is a feature or a d ... - so far so good. But if I create a 'new issue' in the "parent-project" and select the entry of the subproject as the 'target version', this new issue is listed *only* in the roadmap of the parent-project (where I created the issue) and not in the sub-project (to which I assigned the issue). Did I missed some configurations of the ... feature' in redmine? Thanks for your help!
- Plugins: RE: Contacts plugin
- Michal Slazak wrote: > The problem is that w ... equired field that has to be assigned during issue creation. When creating an issue through Contact, it's not possible to assign ... lve it. May be create setting witch type os issue can be created from contact page. And create issue from contact useful because we have such pro ... no contact they add it to redmine and create issue from contact page. After if need, they add additional info to issue
- Plugins: RE: Contacts plugin
- What do you think about adding a feature to assign existing issues to a Contact? For us that would be much more useful than creating new issues. This feature present in 1.1.2
- Plugins: RE: Contacts plugin
- The problem is that we have a custom required field that has to be assigned during issue creation. When creating an issue through Contact, it's not possible to assign ... ct, Assigned To and Due Date. Because the issue is not saved, Redmine fails to redirect to action 'show' here: <pre> def add_task issue = Issue.new issue.subject = params[:task_subject] issue.project = @project issue.tracker = @project.trackers.find(:first) issue.author = User.current issue.due_date = params[:due_date] issue.assigned_to_id = params[:assigned_to] issue.description = issue.subject issue.status = ...
- Plugins: RE: Contacts plugin
- I can't repeat the error, please write steps ... > Also, is there a way of assigning existing issues to a contact? Yes ver 1.1.2 (take from svn)
- Plugins: RE: Contacts plugin
- I can't repeat the error, please write steps ... > Also, is there a way of assigning existing issues to a contact? Yes ver 1.1.2 (take from svn)
- Open discussion: RE: Issues and news templates
- See #6715 and probably #5341.
- Hi, I am thinking about issue templates. These could be used to open issues that are formatted in the same way, and the ... in them. Templates could be used also in the issues' notes, in the news and their comments. ... plates is a lot of work, so I do not open an issue about them but this thread in the forum. Tha ... s with keywords in them. Then, when creating issue, the user may provide (via Redmine's user in ... r these keywords and this way to create real issue. And if we go beyond this, this model could be used when creating issues by emails. Ivan
- Currently, in Redmine, when I mark a ticket a ... Am I misunderstanding how to use duplicate issues in Redmine? What's the right flow for marking and closing duplicates? Thanks.
- Open discussion: RE: Add Attachment to Issue in a script - Solution
- Answering my own question in case anyone finds this in a search. The key issue is that Redmine expects that files will be u ... t.create( :container => new_issue, #Issue object defined earlier :fi ... end </code></pre> Hope this helps someone