Search
Results (18296)
- Help: RE: Associated Revision
- use the format: rnnn where the "r" is fixed ... n where "#" is fixed and nnn refers to the issue number
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- Hi Mark, Thanks for the prompt response. T ... t_id: SELECT "items"."id" AS t0_r0, "items"."issue_id" AS t0_r1, <snip> WHERE (issues.project_id=5 and parent_id=0) </pre> ... last bit of code should be : <pre> WHERE (issues.project_id=5 and items.parent_id=0) </pre> Work around: when I remove the issue.parent_id column manually then the backlogs plugin works.
- What commands should I add to comment area at ... er to associate new revision with a specific issue? I want revision number to be showed at issue page. Thanks.
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- Hi Hans, It should work alright. I specifi ... . Since the parent_id you refer to is in the issues table, it should be fine. However, test ... indings for the benefit of everyone else. :-)
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- There is a naming clash with another plugin ( ... ch uses also a field called parent_id in the issues table. Your plugin is using the same fiel ... de w.r.t. this field then it should solve my issue using both together. (correct me if i am wr ... en a more stable/mature version is available!
- Plugins: RE: Proposal for a redmine testboard plugin
- Hi Ivan, the aim was to add testcase manag ... a bug or a feature. Note that I did not say "issue", although in redmine terminology task / bug / feature are all issues.
- Plugins: RE: Ticket grouping plugin
- Vitaly Klimov wrote: > I have posted temporary solution to fix duplicate journal entries in the Issue #3690 comments did the anybody made this ... pply this solution Thanks in advance
- Open discussion: RE: Sorting Issues by due date
- Eric, I had assumed it would be something ... s for the help and the fast response! -Dan
- Open discussion: RE: Sorting Issues by due date
- Yes. # Go to http://your-redmine/issues # Add a filter for "Assigned to <me>" # C ... user in the system can use it. Eric Davis
- Hello all, Is there a way for a user to sort all of the issues assigned to them by the due date (starting ... e going great. Thanks for the help. -Dan
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- That's how my post should've looked like.. ... en there's raw HTML inside a pre-block of an issue description, the HTML (including JavaScript) ... ways, thanks for this great plugin! Alex
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- I've found a little bug in the GUI: when there's raw HTML inside a <pre> block of an issue description, the HTML (including JavaScript) gets rendered.
- Hi, I used to work with redmine about half ... an cyrillic characters were not saved inside issue description. Is this problem resolved now? Is it possible to create new issues in Russian now? Thanks
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- Mark M wrote: > I originally planned on crea ... at knowledge with Kanban. There's still the issue of exposing cross-project data that needs to ... g it for everything these days. Eric Davis
- Help: RE: Error produced when using Redmine with Apache
- I had a similar problem when my mobile phone ... roblem with ActiveSync) May not be the same issue at your end, but maybe you can check if some ... r is going on at your end. regards sriram
- Help: RE: WebRick hang/not working after a day
- I see this as well on my dev server, (you can ... active requests) but I think this is a known issue with Webbrick. For production environments I ... nt server infrastructure. Best, Felix.
- Plugins: RE: Graphs plugin
- Scratch that. I found the top 6 projects when looking at all issues. Still not seeing the old issues graph anywhere.
- Plugins: RE: Graphs plugin
- You are correct that the error only occurs in ... am not seeing that, nor am I seeing the old issues graph mentioned previously in this forum po ... for your hard work and quick replies. Mark
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- The demo looks great. Good idea providing on ... gable. It's a simple CSS rule: <pre> li.issue, li.project { cursor: move; } </pre> As ... ee if the effort can be shared. Eric Davis
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- That error is solved indeed, now I regret to ... AS sum_points FROM "items" LEFT OUTER JOIN "issues" ON "issues".id = "items".issue_id LEFT OUTER JOIN "issue_statuses" ON "issue_statuses".id = "issues".status_id WHERE (parent_id=0 AND backlog_id=1 AND issue_statuses.is_closed=true) </pre>
- Plugins: RE: Backlogs plugin 0.0.1 (scrum/agile)
- Note that the plugin should be renamed to: re ... ed_at)=3) LIMIT 1 </pre> I had only one issue and one sub task, any idea what is wrong?
- Plugins: RE: Issue Vote Plugin
- WenSong Zhou wrote: > Haha, I removed all of ... te, that's OK. > It's Conflict with redmine_issues_group plugins . Ah, okay, that would do ... look into it, see what the conflict is about.
- Plugins: RE: Issue Vote Plugin
- Haha, I removed all of my plugins except Vote, that's OK. It's Conflict with redmine_issues_group plugins .
- Open discussion: RE: How to contribute
- Michael Burton wrote: > How does one contrib ... e best way is to watch the RSS feeds for new issues. When a new issue is posted, see if it's a duplicate or related to an existing issue. Then check that the correct category is set (e.g. Wiki). If you can't edit some parts of the issue, just post a note about what should be chang ... > For example, I'm interested in working on issue #2906, which is a near-duplicate of #1179, w ... are similar but not the same. So I'd add an issue relation between all three. That would help ... 358, #1179 is related to #1358. Eric Davis
- Plugins: RE: Override IssueObserver method
- Ann Buyanova: Here's some code I'm using in a private plugin to override the existing IssueObserver. Hope this helps. <pre><code class="ruby"># init.rb require 'dispatcher' require 'my_issue_observer_patch' Dispatcher.to_prepare do IssueObserver.instance.extend(MyIssueObserverPatch) end </code></pre> <pre><code class="ruby"># lib/my_issue_observer_patch.rb module MyIssueObserverPatch def after_create(issue) # Custom method here end end </code></pre> Eric Davis