Project

General

Profile

Search

Results (12483)

Feature #26823 (Closed): Creating new issue with custom fields using REST api in Redmine
Hi All, How to use POST in json format to create new issue with custom fields . Would like to POST the issue information with 2 custom fields type as "te ... le development . Regards, Sandeep Kutwal 2017-09-01 09:47
Patch #26819 (New): Create related issue button
To create a related issue in Redmine, it is necessary to * create the issue and * link the issue to another issue in two steps. This patch adds a button "Create related issue" to issue detail page. The button allows user to create an issue and add the issue relation (@TYPE_RELATES@) in one step. 2017-08-31 17:57
Feature #26791 (Closed): Send individual notification mails per mail recipient
With this patch series, we are introducing th ... ontent rendered in the mail (including shown issue attributes, macros and links in rendered tex ... n in the rendered notification, e.g. related issues, links to assign the issue, ... With this new approach, we do have a ... nt users for the respective object (i.e. the issue, news, comment, ...). We use @Mailer::MultiM ... thods (like the now obsolete @Mailer.deliver_issue_add@ method). However doing so would have ch ... ion including tests. * @0002-Cleanup-Remove-Issue-each_notification-and-Journal-e.patch@ - Rem ... e concurrent changes to e.g. a newly created issue, this might result in notifications using th ... uired setting in Redmine core anymore though. 2017-08-30 12:46
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. 2017-08-30 08:44
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). 2017-08-29 14:22
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! 2017-08-29 11:31
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> 2017-08-28 16:20
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> 2017-08-28 05:50
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. 2017-08-25 23:58
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. 2017-08-25 05:38
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: ... 2017-08-23 06:28
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. 2017-08-22 11:34
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 2017-08-22 09:17
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> 2017-08-21 10:55
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 2017-08-21 04:26
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> 2017-08-19 05:01
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 2017-08-17 08:30
Patch #26711 (Closed): Use pluck instead of collect/map
In app/helpers/my_helpers, 68: where(:p ... AND (projects.status<>9) [["user_id", 5341]] 2017-08-17 05:03
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> 2017-08-17 01:26
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! 2017-08-16 22:48
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> 2017-08-16 18:28
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! 2017-08-15 17:01
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 ... 2017-08-15 03:27
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. 2017-08-14 15:26
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. 2017-08-14 15:25
(2951-2975/12483)