Search
Results (12531)
- Patch #39999 (Closed): Explicitly render a 404 on non-JS requests to messages#quote
- This fixes the same issue as #39894 by rendering a 404 if there is a non-xhr request to @messages#quote@.
- Feature #39997 (Closed): Add an option to ren ... ormat custom fields with thousands delimiters
- _This is extracted from #22024:_ > Mischa ... nd delimiters should be discussed in another issue. > > A separate, additional feature providi ... a custom field. It feels like overkill to me.
- Defect #39996 (Closed): JRuby support
- The reasons for not supporting JRuby given on ... //github.com/jruby/activerecord-jdbc-adapter/issues/599 and "loofah":https://github.com/flavorjones/loofah/issues/88 do not support Rails 4.2 or later. Yet, ... for-jruby added official support for JRuby.
- Patch #39993 (Closed): Optimize loading of journals, relations, and allowed_statuses in IssuesController#show for API requests
- The attached patch introduces an optimization in the IssuesController to conditionally load @@journals@ ... nd improving response times for API requests.
- Defect #39991 (Closed): Fix "any" operator for text filters to exclude empty text values
- For example, filtering issues with any notes filter will include issues with blank notes. Is this a specification? ... tures:load@. # Update some parameters of an issue without any notes, like issue !#3 in fixtures. # Filter issues with any string in the notes. # The issue !#3 is extracted, but it does not have notes ... 2023-12-29 00:00:00 | A comment on a private issue. ... ec) </pre> h4. Actual SQL generated by @IssueQuery::sql_for_notes_field@ <pre><code class ... OM journals WHERE journals.journalized_type='Issue' AND journals.journalized_id=issues.id AND (journals.notes IS NOT NULL) AND ((j ... ter Mysql2 / PostgreSQL </pre>
- Defect #39944 (Closed): Issue with Parent-Child Task Relationships Not Displaying Correctly
- Hello, I'm currently experiencing an issue with Redmine version 4.1.1.stable running on ... nt task. Could this be related to a known issue in this version, or is there a specific sett ... e would be greatly appreciated. Thank you!
- Defect #39932 (Closed): Incorrect position of "Edited" mark in issue notes with h4 headings
- "Edited tag" position is incorrect after issue note update, but it is correct after the pag ... sting note using the Edit Note button in the issue history. # Update note containing H4 tags. ... </pre> h4. Proposal: To resolve this issue, I believe it might be sufficient to make co ... '<%= escape_javascript(render_notes(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))) %>'); $("#journal-<%= @jour ... gs/5.1.1/app/views/journals/update.js.erb#L10
- Defect #39931 (Closed): Issues with Email Notifications Setup
- Hello, I've encountered an issue with setting up email notifications in Redmi ... ing. SSH service has been restarted without issues. Email notifications in Redmine are still ... additional steps I can take to resolve this issue. Thank you for your support.
- Patch #39895 (New): Add hook call in edit issue form
- In Time Spent module, there is a hook call to view_timelog_edit_form_bottom. In Issue module, when edit issue, there is a section to input time spent but ... Appreciate if the PR can be reviewed. Thanks.
- Patch #39894 (Closed): Explicitly render a 404 on non-JS requests to watchers#new
- The "Add watcher" button in the sidebar of issues is a javascript-ified link. Sometimes, craw ... e crawlers from further crawling this link...
- Feature #39882 (New): Highlight selected version on the Roadmap view
- It can be helpful to have the selected versio ... what we currently already have for selected issue journals, forum topic replies (i.e. messages ... uld have a border-radius dependent of #39880.
- Feature #39881 (New): Improve progress bars
- I think that the UI of the progress bars in R ... r this can be gathered from old ChiliProject issue "CP #1056":https://www.chiliproject.org/issues/1056 ["PR #213 at GitHub":https://github.co ... ll (3px?) border-radius to the outer borders.
- Feature #39880 (New): Add a small border-radius to selected (author) headings
- Now that border-radius is already sparsely us ... us (3px?) would be nice to have: * selected issue journals ** {{collapse(CSS selector:) <pre ... addition to it, so I'll leave it out of this issue to keep this small and easy. -- _author edit: this is now tracked in #39881._
- Defect #39876 (Closed): H4 author headings aren't bold any more
- Prior to Redmine version#99, H4 author headings in e.g. issue history, news comments and forum topics were ... deserve to be rendered with font-weight bold.
- Defect #39862 (Closed): Attachments functiona ... ) plugins broken since fix for CVE-2022-44030
- I notice this in current @5.1-stable@ branc ... de class="ruby"> constraints object_type: /(issues|versions|news|messages|wiki_pages|projects| ... Am a little lost here solving it on my own.
- Defect #39854 (Closed): "For any event on my ... ifications for non-member bookmarked projects
- When selecting the "For any event on my bookm ... of the project and has it bookmarked. The issue appears to be related to the logic defined i ... for projects you have bookmarked. Related issue: ##35189
- Patch #39849 (Closed): Optimize IssueCategory SQL queries when showing an issue
- The attached patch introduces a change in the @_attributes.html.erb@ partial for issues, aimed at optimizing SQL queries related to issue categories. This change reduces an SQL query that checks the existence of issue category records. Before: <pre> IssueCategory Exists? (0.4ms) SELECT 1 AS one FROM "issue_categories" WHERE "issue_categories"."project_id" = $1 LIMIT $2 [["project_id", 1], ["LIMIT", 1]] ↳ app/views/issues/_attributes.html.erb:36 IssueCategory Load (0.2ms) SELECT "issue_categories".* FROM "issue_categories" WHERE "issue_categories"."project_id" = $1 ORDER BY "issue_categories"."name" ASC [["project_id", 1]] ↳ app/views/...
- Patch #39847 (Closed): Cache the result of `Journal#attachments`
- When rendering an issue history, @Journal#attachments@ is called twi ... pp/models/journal.rb:147:in `sort_by' </pre>
- Defect #39843 (Closed): Create a new task, th ... nds. The actual task is created successfully.
- Environment: <pre> Redmine version 5.0.4.st ... 31.png! !clipboard-202312141102-9wh6v.png!
- Patch #39840 (Closed): Optimize `Issue#relations` method to fetch both `relations_from` and `relations_to` using a single query
- This patch updates `Issue#relations` method to efficiently fetch both ... d improves performance. Before: <pre> IssueRelation Load (0.2ms) SELECT "issue_relations".* FROM "issue_relations" WHERE "issue_relations"."issue_from_id" = $1 [["issue_from_id", 1]] ↳ app/models/issue.rb:1169:in `relations' IssueRelation Load (0.5ms) SELECT "issue_relations".* FROM "issue_relations" WHERE "issue_relations"."issue_to_id" = $1 [["issue_to_id", 1]] ↳ app/models/issue.rb:1169:in `relations' </pre> After: <pre> ...
- Feature #39839 (Closed): Delete users documentation
- Hi I see this message when deleting users ... t when a user is deleted? Thanks Donald
- Defect #39838 (Closed): Document model has no author field by itself
- Hi Model @Document@ has no @author@ field an ... cuments that has no attachment will not show.
- Defect #39836 (Closed): Email to Issues is not working
- I have tried both receive_imap and receive_po ... et marked as read by the cron task. Just no issues get created. The content of the test ema ... er delivery smtp </pre>
- Defect #39834 (Closed): Extract tests for plugin autoloading and Restore Plugin directory settings
- Setting aside the issue of configuring the plugin directory, our ini ... ls test:autoload. patches for r22514@trunk
- Feature #39806 (Closed): Improve filter rende ... eplacing the layout tables with a flex layout
- The current query filters and options use HTML tables for the layout, which introduces issues with wide form elements on narrow screens. ... screen width will now wrap to a new row.