Project

General

Profile

Search

Results (12108)

Defect #38847 (Closed): testetesteterrterste
testetrsetestestestert 2023-07-14 20:59
Defect #38845 (Closed): Test Issue is getting created
1. Open Redmine 2. Signup 3. Create Issue 2023-07-14 19:31
Defect #38844 (Closed): AB_QLDN_DN_when input
step to perform 1 2 3 2023-07-14 17:16
Defect #38842 (Closed): Redmine qui ne fonctionne pas après renouvellement hébergement VPS OVH
Bonjour, suite à un renouvellement de notre ... un pourrait nous aider svp? Merci en avance 2023-07-13 14:17
Feature #38840 (New): A developer or project manager can relate an issue to another while editing the issue.
When filing a ticket, that's often when i hav ... icket in mind. Having to finish writing the issue, save it, and then remember to add the related issue always adds a bit of cognitive overhead. ... notes and act on save would work for me also. 2023-07-12 20:05
Feature #38839 (New): A developer or project manager can update an issue (submit a note) without editing the issue first
A person ought to be able to make a status up ... nd visual noise) of editing the ticket first. 2023-07-12 19:59
Feature #38837 (New): Export attachments of several issues simultaneous
Hi, How to export attachments from multiple simultaneous issues? 2023-07-11 15:32
Defect #38833 (New): Alignment Issue with Custom Text Field in Redmine
Hello Redmine Developers, I would like to bring an alignment issue to your attention regarding the Custom Text ... ressing user feedback. Best regards, Matt 2023-07-11 01:45
Defect #38830 (New): Installation of Redmine ... esh Ubuntu 22.04 LTS stops at bundler install
Hi there, I tried for days to install Redm ... be highly appreciated. Regards Dirk 2023-07-10 09:05
Patch #38820 (Closed): Retry in case of stale issue during Issue.update_versions
This is quite the corner case but we had this issue occur with one client at "Planio":https://plan.io/redmine-hosting: With @Setting.parent_issue_priority == 'derived'@, while setting a projects' parent project to nil, several issues that belonged to now inaccessible versions were updated in @Issue.update_versions@. In one case, this led to a situation where an issues' parent issue priority was updated, before that parent issue was being processed in the loop in @Issue.update_versions@. The attempt to then set the parent issues' version to @nil@ later failed with a StaleObjectError due to the previous save from @Issue#update_parent_attributes@. The attached p ... retrying once with a reloaded version of the issue. It also contains a test case that reproduces the ... 2023-07-06 16:20
Defect #38817 (Closed): Redmine V3.2 - The si ... (SSL) and The emails are not going out either
Redmine V3.2 Problem: The site needs to be c ... me with the steps. We tried but we couldn't. 2023-07-05 23:56
Defect #38814 (Closed): Unable to read Target Version of a Redmine issue using python-redmine module.
I am writing a python script using python-r ... ate notifying team about the list of Redmine issues in Design status but Target Version is not ... ine documentation, it was quite easy to read issues and get the issue.status attribute. Now, for a given issue, I would like to get the Target Version. I a ... st out the supported attributes of a Redmine issue and came to know that Target Version is inte ... <pre><code class="python"> list(redmine.issue.get(1)) </code></pre> I tried to read it ... given below. <pre><code class="python"> issue.fixed_version issue.fixed_version.id issue.fixed_version_id </code></pre> But all t ... lp me to get the Target Version of a Redmine issue? My Redmine version is 4.1.0.stable.142, ... ine_url', username='uname', password='pwd') ... 2023-07-05 08:50
Defect #38803 (Closed): SystemStackError
Got a SystemStackError while try to access a specified issue. When i try to access http://10.10.1.10/issues/62146, it shows: ``` Internal error A ... bout the error. Back ``` While others issues are accessible except this one. Versions ... RubyGems 2.7.9 Log: ``` Started GET "/issues/62146" for 10.10.2.81 at 2023-07-03 14:19:13 +0800 Processing by IssuesController#show as HTML Parameters: {"id" ... Current user: cxg95926 (id=677) Rendering issues/show.html.erb within layouts/base Rendered issues/_action_menu.html.erb (3.5ms) Rendered issues/tabs/_history.html.erb (261.6ms) Rendered common/_tabs.html.erb (263.0ms) Rendered issues/show.html.erb within layouts/base (310.5ms) ... ls_helper.rb:63:in `render_notes' app/views/issues/tabs/_history.html.erb:34:in `block in _app_views_... 2023-07-03 08:26
Patch #38796 (New): Improved display of tracker selection area in custom field settings
The items in the tracker selection area of th ... modified it to be properly aligned like the issue tracking tab in the project settings, so t ... * after !trackers_selection_after.png! 2023-06-30 22:20
Patch #38792 (New): Allow removing some watchers via bulk edit context menu
It's needed sometimes to remove some watchers ... ature, but does not contains related tests! 2023-06-28 18:37
Defect #38788 (Closed): "has been" and "has never been" filter operators can be very slow
The two filter operators "has been" and "has ... ) AND journals.journalized_type = 'Issue' AND journals.journalized_id = issues.id AND journal_details.property = ... urnal_details.old_value = '?' ) OR issues.status_id = '?' ) </code></pre> <pre> (228880.7ms) SELECT COUNT(*) FROM "issues" INNER JOIN "projects" ON "projects"."id" = "issues"."project_id" INNER JOIN "issue_sta tuses" ON "issue_statuses"."id" = "issues"."status_id" WHERE (projects.status <> 9 AN ... ERE em.project_id = projects.id AND em.name='issue_tracking')) AND ((NOT EXISTS (SELECT 1 FROM ... tus <> 10)) AND journals.journalized_type = '... 2023-06-28 06:45
Defect #38784 (Closed): Problem with access REDmine
Hello, when i try to connect to my http: ... llowing error message tha you see in attached 2023-06-27 10:26
Patch #38772 (Closed): <=> should return nil when invoked with an incomparable object
`<=>` method of Ruby's standard classes retur ... <pre><code class="irb"> irb(main):002:0> [IssuePriority.first, nil].sort Traceback (most re ... : <pre><code class="irb"> irb(main):001:0> IssuePriority.first <=> nil Traceback (most recen ... sition' for nil:NilClass) irb(main):002:0> [IssuePriority.first, nil].sort Traceback (most re ... osition' for nil:NilClass) irb(main):003:0> IssuePriority.first <=> Tracker.last => -1 </cod ... : <pre><code class="irb"> irb(main):001:0> IssuePriority.first <=> nil => nil irb(main):002:0> [IssuePriority.first, nil].sort (irb):2:in `sort': comparison of IssuePriority with nil failed (ArgumentError) irb(main):003:0> IssuePriority.first <=> Tracker.last => nil </code></pre> 2023-06-25 06:37
Patch #38732 (New): Adjusting elements position on Issue Edit View
Currentry, elements are not same position on Issue Show View and Issue Edit View. I think it will confuse people w ... {{thumbnail(adjusting_elements_position_on_issue_edit_view.png, size=300)}} Note: You can ... <pre><code class="javascript"> $("#parent_issue").insertAfter($('#issue_project_id').parent()).css({float: "right"}); $('#issue_description_and_toolbar').parent().insertAfter('#attributes'); $('#issue_done_ratio').parent().insertAfter('#due_date ... r('#attributes'); $('<hr>').insertAfter($('#issue_subject').parent()); </code></pre> 2023-06-16 12:29
Feature #38730 (Closed): Generate snake-case file name by redmine_plugin_migration
redmine_plugin_migration must generate snake- ... ration behavior. FYI: There was a similar issue that https://www.redmine.org/issues/28668 2023-06-16 06:42
Defect #38728 (Closed): Correctly escape issue text in Gantt PNG export for ImageMagick convert
According to https://imagemagick.org/Usage/dr ... amely a shell) which results in errors if an issue subject contains a single quote character. ... launch a shell but runs the command directly. 2023-06-15 17:30
Defect #38725 (Closed): 500 Internal Server Error on opening the setting of one Project
Hi, I will need help to solve a problem i ... iced a few 302 in the log. Please help me, 2023-06-15 10:43
Defect #38717 (Closed): internal error
F, [2023-06-14T11:34:36.951404 #3418] FATAL - ... any project, can someone help me please..? 2023-06-14 11:48
Patch #38709 (Closed): Update Persian translation to Redmine-5.0-stable
I arranged patches in 3 step. The first patc ... e as en.yml. And the last one, will changed Issue translation spelling. Thank you. 2023-06-13 23:15
Defect #38707 (Closed): Fix order of loading plugins' config/routes.rb
When loading @init.rb@, uses sort (source:tag ... 's @config/routes.rb@ are different. This issue includes following patches: * attachment: ... simply-code.patch : refactor related codes. 2023-06-13 14:36
(326-350/12108)