Search
Results (12608)
- Defect #26789 (Closed): When copying an issue, the field assigned_to is not set as expected
- <pre> Environment: Redmine version ... the problem:+ I want to copy an existing issue. Its field _assigned_to_ is empty. In the issue form, I verify that the field is still empty, then click create. Then the new issue has a user in the field _assigned_to_ + ... set a breakpoint in the function _create_ in issues_controller.rb. !issue_controller.png! * Before calling @issue.save => @issue.assigned_to is empty * After calling @issue.save => @issue.assigned_to contains a user.
- Feature #26786 (New): Complex issue relation
- May be related to #7849 Sometimes a more complex issues relation is needed as it is available in Re ... ice, so we have a list of renovation related issues, among them 1) Build-up (like internal wall ... ion split system. The start date of this two issues are not directly related, we can start them ... needed is "Due date follows": Air condition issue due date follows the build-up issue (its due date as usual) by XX days. As a workaround, I can split the second issue into two "Condition without the setup of the ... they will start the setup and finish it).
- Defect #26785 (Closed): Wrong columns after CSV export
- On the @/issues@ page, if we create a new CSV export with a ... fter the CSV export. !Capture11.30.02.png!
- Defect #26778 (Closed): Invalid "theme-*" CSS class in body element when theme name contains spaces
- The body element in HTML has CSS classes corr ... ="theme-Foo bar project-ecookbook controller-issues action-index avatars-off"> </code></pre>
- Defect #26769 (Closed): Create issue does not allow for category_id
- When I create new issues via the API, no matter what I try, I cannot ... sidebar_hide 0.0.8 </pre>
- Defect #26765 (Closed): Redmine 3.3.3.stable Cannot find binary for Git 2.14
- Redmine 3.3.3.stable cannot locate binary for ... ine if the binary is present and in the path.
- Feature #26758 (New): User can block his account or assign relief
- In scenario - user has holidays and can't work with issues. In this case would be nice to user has opportunity to block his account to prevent issue assigning to him or assign another user, who must get notifications instead.
- Patch #26747 (Closed): Use find_by instead of where.first to remove unnecessary sorting
- sicne where.first will issue query with order by primary key which is act ... , :type => 'User').first redmine/app/models/issue_query.rb:474: root_id, lft, rgt = Issue.where(:id => value.first.to_i).pluck(:root_id, :lft, :rgt).first redmine/app/models/issue_query.rb:490: parent_id = Issue.where(:id => value.first.to_i).pluck(:parent_id).first redmine/app/models/issue_query.rb:497: root_id, lft, rgt = Issue.where(:id => value.first.to_i).pluck(:root_i ... LOWER(?)", title).first redmine/app/models/issue_import.rb:148: elsif issue_id = items.where(:position => parent_issue_id).first.try(:obj_id) redmine/app/models/issue_import.rb:193: child_id = items.where(:po ... ine/app/models/time_entry_query.rb:150: ...
- Feature #26736 (New): Identifying the storage utilized by each project
- As per current setup, I guess we cannot measu ... ach project from the Administration window.
- Feature #26734 (Closed): Issue Templates Plugin by Akiko Takano
- Hi Folks, As I'm unable to add to an exist ... to visit the “http://www.r-labs.org/projects/issue-template/wiki/About_en” website? I’ve tried ... s that come with RedMine. Thanks DSPS
- Defect #26730 (Closed): Context Menu is broken on 3.4.2
- On 3.3.0, I found these occurrences of contex ... Regexp.new(Regexp.escape("contextMenuInit('/issues/context_menu')")) redmine-3.3.0/app/helper ... def calendar_for(field_id) </code></pre>
- Patch #26726 (Closed): Use pluck(:id) instead of collect(&:id)
- <pre><code class="ruby"> redmine/app/control ... ct(&:id) : [@project.id] redmine/app/models/issue.rb:1383: moved_project_ids = project.self ... /code></pre> could change collect to pluck
- Patch #26721 (Closed): use find_by instead of detect
- In project.rb <pre><code class="ruby"> en ... ed_modules.find_by(name: name) </code></pre>
- Patch #26714 (Closed): pluck instead of map in issue_query
- The previous issue_query.rb, line 438 version_ids = versions(:conditions => [where]).map(&:id) will issue query as: <pre><code class="sql"> SELECT ... ct_id FROM enabled_modules em WHERE em.name='issue_tracking')) AND ( 1 = 1 ) </code></pre> ... end </code></pre> As shown in diff.rb
- Patch #26711 (Closed): Use pluck instead of collect/map
- In app/helpers/my_helpers, 68: where(:p ... AND (projects.status<>9) [["user_id", 5341]]
- Feature #26709 (Closed): Use correct http status codes
- 1/ redmine ignores accept headers and jquery ... : <pre> curl -v -H http://demo.redmine.org/issues.json -> 200 + json OK! but curl -v -H "Accept: application/json" http://demo.redmine.org/issues -> 500 no builder for format expected ( ... tion <pre> curl -v http://demo.redmine.org/issues.xxx -> 406 + exception ActionController::U ... pt: text/javascript" http://demo.redmine.org/issues/new -> 422 + exception ActionController::I ... t. expected -> 400 - no exception </pre>
- Defect #26708 (Closed): Diff formatting results empty lines if they contains HTML tags
- h2. Steps to reproduce: In issue description write something like (need to re ... diff. h2. What I get: !058577fc.png!
- Defect #26705 (Closed): Unable to download fi ... field is not defined as visible to any users
- Even if my user account has all available rol ... en i am trying to download file (either from issue or custom query). It does not occur when i add file as issue attachment. My (bitnami) environment is : ... mine_contacts 4.1.1 redmine_issue_templates 0.1.7 </pre> The produc ... plugins/redmine_contacts/app/views/contacts_issues/_additional_assets.html.erb (1.1ms) Rend ... ews: 35.7ms | ActiveRecord: 10.2ms) </pre>
- Defect #26699 (Closed): Anonymous user should have their icon
- @ApplicationHelper#avatar@ method returns bla ... er. The behavior causes disordered layout in IssuesController#show page. This patch adds an ... oken layout. *Before:* The author of the issue is the anonymous user. But in the upper left ... px; border: 1px solid #ddd;}.after2@2x.png!
- Defect #26691 (Closed): N + 1 queries when rendering the Gantt
- Rails 4.2.7.1 20000 issues in the database When rendering the GanttsController.show action, it will issue a lot of queries to get the the start_date a ... e: <pre><code class="sql"> SELECT MIN(`issues`.`start_date`) FROM `issues` WHERE `issues`.`project_id` = ? [["project_id", 1436]] SELECT MAX(`issues`.`due_date`) FROM `issues` WHERE `issues`.`project_id` = ? [["project_id", 1436]] SELECT MIN(`issues`.`start_date`) FROM `issues` WHERE `issues`.`project_id` = ? [["project_id", 1317]] SELECT MAX(`issues`.`due_date`) FROM `issues` WHERE `issues`.`project_id` = ? [["project_id", 1317]] ... roup of projects, so that they don't need to ...
- Patch #26682 (Closed): URL-escape the ! character in generated markup for dropped uploads
- In #26071, we introduced the ability to just ... tly equivalent to the unescaped one for URLs.
- Defect #26681 (Closed): disk_filename of attachment when issue is created via mail
- Hello, when an issue with attachment is created via mail, the dis ... real filename? Like it's done with the other issues. Thank you.
- Feature #26680 (New): Show default assignee when creating new issue
- With new redmine version, 3.4, a default assi ... nee immediately in place when creating a new issue. When changing the category and the default ... dy, with this ticket, we now have a separate issue for this feature request in place.
- Patch #26674 (Closed): Add CSS classes to column headers of issues and timelogs list
- For now there no any chances to style table h ... der@ and @query-column-header-#{column.name}@
- Defect #26668 (New): Create "Documentation su ... Related" section of the "Contribution" page.
- It would be great to show "how to contribute ... to edit and in the case you need to file an issue on the issue queue with the category "documentation".