Project

General

Profile

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. 2008-06-17 06:40
Help: need some help with accessing SVN repository over HTTPS
I've read the [[FAQ]] and Issue #1235, however I still can't find a solution ... g the Redmin 1586 on Ubuntu Hardy. Thanks! 2008-06-16 21:48
Open discussion: Private issues vs. private projects
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? 2008-06-16 09:06
Help: Reporting the details of the Issues
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 2008-06-16 08:31
Help: Email notification to other project members
Hello, In Version v0.7.0 you have made th ... an i notify other project memebers about one Issue. Thanks for your help. Ina. 2008-06-15 20:50
Help: Display issue estimated hours in gantt chart
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?) 2008-06-13 22:03
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. 2008-06-13 21:28
Open discussion: RE: Contributing code to Redmine
Hopefully Redmine will be running on Rails 2. ... t happens, migrations should no longer be an issue. 2008-06-13 20:25
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> 2008-06-13 17:05
Help: Some problems with svn repository
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! 2008-06-13 16:01
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). 2008-06-13 15:30
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 2008-06-13 14:33
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? 2008-06-13 14:25
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> 2008-06-13 13:35
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 2008-06-13 09:43
Help: New issue url to preload some fields
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 2008-06-13 06:56
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? 2008-06-13 00:08
Help: Not allow a customer role to assign
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 2008-06-12 09:03
Open discussion: attache or link custom field to Category
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. 2008-06-11 22:33
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. :) 2008-06-11 21:41
Open discussion: RE: Automatic closing of duplicate issues
I made a change to this behaviour in r1488. ... will now see 'duplicates' or 'duplicated by'. 2008-06-11 18:54
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. 2008-06-11 18:22
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 2008-06-11 17:52
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? 2008-06-11 12:14
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? 2008-06-11 10:12
(17851-17875/18206)