Search
Results (12665)
- Patch #6171 (Closed): Persist 'locked' users across updates
- Currently when a user has been marked as 'locked' if an update occurs to an issue that is assigned to that user, that update w ... ument around whether it is even valid for an issue to be assigned to a locked issue..but in my use case this is currently the ca ... twice in the list if that user isn't locked)
- Patch #6169 (Closed): Add issue status to issue tooltip...
- Would be incredibly nice... <pre> --- issues_helper.rb +++ (clipboard) @@ -30,14 +30,12 @@ end def render_issue_tooltip(issue) + @cached_label_status ||= l(:field_sta ... ||= l(:field_priority) link_to_issue(issue) + "<br /><br />" + + "<strong>#{@cached_label_status}</strong>: #{issue.status.name}<br />" + "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" + "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />" + "<strong>#{@cached_label_assigned_to}</strong>: #{issue.assigned_to}<br />" + </pre>
- Feature #6167 (Closed): Add option to weight parent task %-done based on the estimated time
- Calculation of parent's percentage depends on ... ed on number of hours is more representative.
- Feature #6166 (New): Support german umlauts and whitespaces in login string
- I am using redmine to authenticate with a Lot ... Please let me know, if this is a good idea.
- Feature #6165 (Closed): Ability to edit existing description
- The ability to edit/fix existing text fields (e.g. a mispelled description) would be nice.
- Defect #6164 (Closed): email not working
- I cannot get email to work at all. I don't g ... 3 Database schema version 20100705164950
- Defect #6163 (Closed): Bad CSS class for calendar project menu_item
- See screenshot attached. !calendar_item_ba ... or in classes definitions for our menu items.
- Patch #6159 (New): Subversion: latest changesets performance improvement.
- Redmine executes "svn log" command 2 times (R ... abase instead of executing "svn log" command.
- Defect #6158 (Closed): Needs warning when trying to close a ticket that is blocked by another one
- We recently faced a situation where we tried ... ting that the ticket is blocked by XXXXX etc.
- Defect #6157 (Closed): Applying custom queries should not redirect away from calendar or gantt pages
- If you have custom queries in place, they wil ... the calendar and gantt pages as well as the issues page. Clicking on them always redirects you to the issues page though. You can go back to the calend ... e. I'll start working on a patch for this issue.
- Feature #6154 (Reopened): Save issue as draft
- Please add possibility to save issue drafts for later submission.
- Feature #6153 (Closed): Move view_calendar and view_gantt to own modules
- In r3943 and r3944, Eric added the gantt char ... bs directly to the right of the activity tab.
- Defect #6149 (New): Links to wiki pages break when moving issues from one project to another
- Links to wiki pages that appear in issues' descriptions or history are broken when that issue is moved from one project to another, if the ... inked to something else entirely. When an issue is moved/copied/etc., the wiki links in it s ... e original wiki page, in the other project.
- Defect #6148 (Closed): Quoting, newlines, and nightmares...
- h3. Prelude Apologies in advance if this b ... ting hook, a macro or <insert solution here>.
- Defect #6146 (Closed): Subtasks section appearance
- If a user is a manager on a specific project (and not a site administrator), when viewing an issue, the subtasks section does not appear. If th ... trator, the section does appear, as expected.
- Defect #6143 (Closed): Subtask creation form submission race?
- I encountered what seems to be some form of d ... #28907: Test parent":http://demo.redmine.org/issues/28907 ** "#28908: Test child 1":http://demo.redmine.org/issues/28908 ** "#28910: Test child 2":http://demo.redmine.org/issues/28910 ** "#28909: Test child 3":http://demo.redmine.org/issues/28909 (The subtask creation forms were s ... order (1, 2, 3), but as can be seen from the issue numbers, _Test child 3_ happens to have been ... ving their parent field set to the same root issue) * The parent issue sometimes displays only some of the children ... t), or none * Trying to update the affected issues result in server-side Internal errors, or i ... n missing: en, activerecord, errors, models, issue, attributes, parent_issue_id, not_a_valid_parent" error I could onl ... by deleting and recreating all the affected ...
- Defect #6141 (New): No data to display in Documents
- When I sort the documents by author, the mess ... s but can not the authorship of the document.
- Feature #6140 (Closed): REST issues response with issue count limit and offset
- Hi i currently build a Redmine Client Applica ... . I have one Problem. When i request the issues form REST API there is no way to find out how many issues are currently on the Server. On the other ... ke the html one there are variables with the issue count, limit and page number. I write thi ... mes for different pages to find out how many issues i really have. This patch add the attributes issue count, limit and current page to the issues node of the REST API response for issues (issues.xml)
- Defect #6136 (Closed): JSON API holds less information than XML API
- Currently the JSON API provides less informat ... API. Example: http://svn.jdownloader.org/issues/1531.json http://svn.jdownloader.org/issues/1531.xml (1.0.0.stable.3936)
- Defect #6135 (Closed): Default logger configuration grows without bound.
- A naive installation of redmine (following th ... s/11836 which seems to not conflict with the issues in #5706. Consider adding a line to $RED ... to be kind to webappliance installations...
- Feature #6134 (Closed): Issue workflow permissions
- One requirement of our company is that only the issue reporter can close it. The workflow should be: the assignee would set the issue as resolved, then Redmine would automatically assign the issue back to the reporter who can then decide to close or to reassign the issue.
- Defect #6132 (Closed): Allow Key based authentication in the Boards atom feed
- I've looked at the fix in defect 5317 and the code changes are in the appropriate places
- Defect #6131 (Closed): Sort by Group By field does not work
- as above...
- Defect #6130 (Closed): Subtask with 0% sets rollup to 0%
- If you have any subtasks with 0% complete the ... 1 patchlevel 72) * Rails 2.3.5 * 1.0.0-RC
- Defect #6128 (Closed): "assigned_to" seem to be ignored when creating issues via REST API
- sending request: <pre> POST http://172.17.10.53:3000/issues.xml HTTP/1.1 -> <issue><project_id>ace</project_id><subject>test zz ... assigned_to name="Alexey Skor" id="19640"/></issue> </pre> response: <pre> HTTP/1.1 201 Created </pre> but the new issue's "assignee" is empty. I verified there's a user with such id. I'm trying to use the same <issue> format as I see in the response from Redmine when I retrieve issues list. is this REST API's limitation that assignee can't be set on issue creation or I should use different format fo ... there's a documentation somewhere about that.