Search
Results (18209)
- Help: RE: Relations between issues
- jhony gonzalez wrote: > ...can not be edited... Wrong, IMHO the intended behaviour is that issues cannot be changed to a closed-flagged status when another issue blocks the actual, changed issue. Regarding the overall subject of your message: see issue #1740. The base of the feature is implemented but the actual blocking isn't implemented yet. Issue #2132 provides a patch to make the intended feature complete... HTH, Mischa.
- I blocked one issue from another according to the wiki says tha ... I can explain how to make the process please
- Is it possible to configure Redmine to email ... e a certain role on a project, say) when new issues are raised? At the moment my understandi ... mail if they are specifically assigned to an issue, or if they have setup their account to watc ... ing is the ability to see who is watching an issue and add other people as watchers (without lo ... I'd like to hear from you. Thanks, Jon
- Help: RE: import from bugzilla
- Carl Nygard wrote: > Is it possible to import issues from bugzilla? There are plenty of tools ... ow it's two-step, but it should do just fine.
- Open discussion: RE: Add sub category to category
- Rob Elsner wrote: > We use Redmine where I w ... need to add subcategories to categories for issue reporting. We used 0.7.3 and I'm working on ... Mm. That's a feature I'd love to see as well.
- I mean when you have an issue that it's stopping a new version... We'd like to have a way to query those issues, some kind of report of something There ... t we have to wait for. It's not always an issue, sometimes the user has to define something ... e to have some way to see all those events / issues, etc that are stopping us... how do you handle those things???
- Open discussion: RE: Add a highly visible notice to top of 'new issue' page...
- Any one can help with this? I see from the th ... - and ideally a snippet/example of code edit?
- Hi, I just did some tests with v.1.1.3 of ... for the individual project. To solve the issue change line 5 in the file "../vendor/plugins ... ctive_date.nil?) } </pre> HTH, Mischa.
- hello, i want to assign some issues to multiple members (or everybody) in a pro ... ber. I was hoping that if i would assign the issue to no one it would be issued to everybody in the project, but i am wrong, it doesn't appear in the 'issues assigned to me' ocverview of the project members.
- Open discussion: RE: Agile methodologies and Redmine
- Hi Dan, thanks for the plugins! After some ... png). So, I added manually that field to the Issues table. After that, product backlog view is ... uctions for SA plugins? Thanks! art
- Open discussion: RE: Percentage done
- As a project manager, the percentage done fie ... f the number of hours needed to complete the issue. There is a very good description and jus ... d later add Evidence Based Scheduling Jeff
- Help: RE: import from bugzilla
- I still face a trace just like Deepak. <pr ... lClass /home/bruce/redmine-0.8.0/app/models/issue.rb:127:in `validate_on_create' ... </pre> ... d at the top of @migrate_from_bugzilla.rake@
- Help: RE: redmine +svn complete integration : configuration problem
- hi jean, after doing some further investig ... eone from the devs could have a look at this issue... cheers, Tim
- Help: RE: Installation Issues on Dreamhost
- It looks like you have to login to your Dream ... have fastcgi enabled for the domain as well.
- Open discussion: RE: Add a highly visible notice to top of 'new issue' page...
- We have the very same need - though we use th ... this message on +one+ of our Project's *@New Issue@* tab. Can this be done? If not, how can ... nfo. Thanks for any help/feedback on this!
- Open discussion: RE: Hiding overview and activity
- I've just added http://www.redmine.org/issues/show/2585 I meantime would also be inter ... karound on this... anyone have some pointers?
- Open discussion: RE: Hiding overview and activity
- Yes - I feel this could/should even be includ ... isplay or not. I propose to add a Feature Issue on this.
- We use Redmine where I work and had a need to add subcategories to categories for issue reporting. We used 0.7.3 and I'm working on ... feature to include in Redmine for the future?
- Help: RE: Mandatory check for Red Mine issue # during checkin in svn
- This is slightly improved UNIX version of the ... end if (commit_log =~ /^(refs|references|IssueID|fixes|closes)\s*#(\d+)/i) issue_number = $2 sql = "SELECT COUNT(*) AS result FROM issues I INNER JOIN issue_statuses S ON S.id = I.status_id WHERE S.is_closed = 0 AND I.id = #{issue_number};" redmine_issue_open = `#{mysql} --database=redmine --user=r ... --skip-column-names`.strip() if (redmine_issue_open.eql?("0")) STDERR.puts("Redmine issue #{issue_number} is not in an open state.") exit ... STDERR.puts("You didn't specify a Redmine issue number on the first line, e.g.: Refs #1 ... sage goes here...") exit(1) end </pre>
- "Version 0.2.0":https://projects.littlestream ... ests for the next release. Just open a "new issue":https://projects.littlestreamsoftware.com/projects/redmine-bte/issues/new or send me a pull request on "GitHub":h ... bulk_time_entry_plugin/tree/master. Eric
- Help: RE: Issue editing
- As far as I understand your question you have to go to the issue > click the regular update-button > then, wh ... ich makes it possible to "edit" the original issue description and content. Please let me kn ... mean something different... ;wink; Mischa.
- Help: RE: Issue editing
- Except that, as I said above, the user id I am using has the edit issue right and no edit link appears.
- Help: RE: Issue editing
- See http://www.redmine.org/wiki/redmine/RedmineIssues#Editing-an-existing-issue. I guess that will do... :-)
- I seem unable to find how one edits, as opposed to updates, an issue. I have enabled issue editing for the manager role and I have logg ... I can see no link to an edit feature on the Issues page.
- Help: RE: Mandatory check for Red Mine issue # during checkin in svn
- Hello, I have adapted this script into rub ... pty.") exit(1) end if (commit_log =~ /Issue\s*#(\d+)\s*/) issue_number = $1 redmine_issue_open = `#{mysql} --database=redmine --user=y ... _password -e "SELECT COUNT(*) AS result FROM issues I INNER JOIN issue_statuses S ON S.id = I.status_id WHERE S.is_closed = 0 AND I.id = #{issue_number};" --skip-column-names`.strip() if (redmine_issue_open.eql?("0")) STDERR.puts("Redmine issue #{issue_number} is not in an open state.") exit ... STDERR.puts("You didn't specify a Redmine issue number on the first line, e.g.: Issue #1234 message...") exit(1) end </pre> I guess this would help. Fabrice.