Search
Results (18206)
- Help: RE: need some help with accessing SVN repository over HTTPS
- Execute command with sudoer (person who holds ... . <pre>sudo su www-data</pre> And then issue svn checkout procedure.
- I've read the [[FAQ]] and Issue #1235, however I still can't find a solution ... g the Redmin 1586 on Ubuntu Hardy. Thanks!
- I've been testing Redmine to work with privat ... blic projects and grant access by role. Only issue we found out was that if you have public sub ... anagement + customers) So what's the real issue to have a private flag? How does it handle things differently apart from being in same project?
- Hi all, I'd like to print a report with all details (especially all comments) of the issues, resulting from a query. The report would be like that |Issue# 1|Title|status| |\3. description| |\3. comment1| |\3. comment2| |Issue# 2|Title|status| |\3. description| |\3. co ... the query result display ? cheers gabriel
- Hello, In Version v0.7.0 you have made th ... an i notify other project memebers about one Issue. Thanks for your help. Ina.
- Hi, I am new to redmine, but so far I like ... e number of ours on the starting date of the issue, for example in a row below the days (column ... d if so point me in the right direction?)
- Open discussion: RE: Dealing with Version/Releases in Redmine
- I was also wondering how to handle Trac way version/milestone when reporting issues, specially bug reports. There would real ... that marks when bug is about to be fixed.
- Open discussion: RE: Contributing code to Redmine
- Hopefully Redmine will be running on Rails 2. ... t happens, migrations should no longer be an issue.
- Help: RE: How to create a link with pre-filled parameters?
- Found the way to do that (maybe it will help to somebody): <pre><%= link_to l(:label_issue_new), :controller => 'issues', :project_id => @project, :action => 'new', :issue =>{:assigned_to_id => User.current.id} %></p ... oes not work!!! <pre><%= link_to l(:label_issue_new), :controller => 'issues', :project_id => 1, :action => 'new', :issue =>{:status_id => 2} %></pre>
- Hi, The Redmine interface to my svn reposi ... ve me an idea what's wrong? If it is a paths issue, how can I correctly set up the svn path in Redmine? Thanks!
- Help: RE: New issue url to preload some fields
- Well.. I found the way.. <pre>http://myredmine.com/projects/myproject/issues/new?issue[assigned_to_id]=<%= User.current.id %></pre> ... <pre>http://myredmine.com/projects/myproject/issues/new?issue[status_id]=2</pre> does not work.. :-( A ... f there is such a functionality in Redmine).
- Open discussion: RE: Contributing code to Redmine
- hi Clay, The standard way to contributing is to create a patch issue, or a feature request issue and a patch issue, if you think you need discussion around it. ... tor is a grown-up and can modify it :) HTH
- Help: RE: New issue url to preload some fields
- That's exactly what I also wanted.. Can some ... "User.current" into the "assigned_to" field?
- Help: RE: New issue url to preload some fields
- This should work: <pre> http://myredmine.com/projects/myproject/issues/new?issue[tracker_id]=1&issue[description]=Test </pre>
- Help: RE: What does "Allow cross-project issue relations" do to redmine?
- When you are viewing an issue, at the bottom of the yellow box with the issue details is a sub-heading 'related issues'. To the right of that is a little 'add' l ... allows you to enter the number of a related issue and the reason for the relation (duplicates, blocks, related to etc) Cheers Russell
- I just upgraded to 7.1. In the previous versi ... rl like: http://my_redmine.com/projects/add_issue/1?tracker_id=1&description="+escape(data); in javascript to open a new window to the new issue page and fill in some information into the d ... other fun things. Now in 7.1 the url to new issue has changed. How can I get the functionality back that I had before? Thanks Chris Griffiin
- Help: RE: What does "Allow cross-project issue relations" do to redmine?
- You mention the ability to relate an issue of one project to an issue of another project and also to mark things a ... thing like this. Where do you do such tasks?
- Am trying my best to get Redmine as our organ ... ed a role called Customer, that can only add Issues and few other view fucntions. I am trying t ... assigning" a team member, when creatinga new Issue (Bug, FEature or Support)? As well as not al ... posed to a certain role, when creating a new issue - Right now in _Roles and Permissions_, I can select whether a role can add/edit an issue, but cant really determine what fields are shown in a New Issue page. I'm sorry if this has been asked b ... ht direction, I would be grateful. Thanks
- I am evaluating redmine for use within our de ... categories Client, Server, Admin. When a new issue is created and the user choses Client I want ... d on the selected category. Thanks, Mark.
- Open discussion: RE: Migrating Redmine Source To Git
- > I've used that to help migrate my svn repos ... amework development) but I never noticed any issue. I would be more than happy to be aware of those issues to be sure to avoid them in the future. :)
- Open discussion: RE: Automatic closing of duplicate issues
- I made a change to this behaviour in r1488. ... will now see 'duplicates' or 'duplicated by'.
- Help: RE: How to show the sum of estimated hours in the specified query?
- Thank you so much Eric!!! You saved me hours ... ng!!! :-) Btw. If to do this right in the issues section, it's possible to limit this task into one line: <pre> <%= estimated_hours = @issues.collect(&:estimated_hours).reject {|issue| issue.blank? }.sum %> </pre> Well.. at least i ... Once again, thank you very much indeed, Eric.
- Help: RE: How to show the sum of estimated hours in the specified query?
- You will need to use a set of Issues for that, Query is used to build the set of issues. <pre> # See issues_controller.rb#index for the actual query filter @issue_list = Issue.find :all, :conditions => @query.statement ... ank, and sum the amounts estimated_hours = @issue_list.collect(&:estimated_hours).reject {|issue| issue.blank? }.sum </pre> Eric
- Help: RE: How to show the sum of estimated hours in the specified query?
- Or rather how can I sum estimated_hours variable in all issues in the query? How it shall be written?
- Help: RE: How to create a link with pre-filled parameters?
- Unfortunately this code: <pre><%= link_to l(:label_issue_new), :controller => 'issues', :project_id => @project, :action => ' ... e> ..does not work.. What i did wrong?