Search
Results (31866)
- Defect #38845 (Closed): Test Issue is getting created
- 1. Open Redmine 2. Signup 3. Create Issue
- Defect #38844 (Closed): AB_QLDN_DN_when input
- step to perform 1 2 3
- Parent Child Filters Plugin
- h1. Redmine Parent Child Filters Plugin This plugin provides advanced filtering capabilities for issues in Redmine based on their hierarchical rela ... @trackers@ and @status@ of parent and child issues. h2. Features * *Root Level Filtering*: Enables you to filter issues based on the root-level attributes. ** @ro ... s@ * *Immediate Parent Filtering*: Target issues based on their immediate parent attributes. ... your filtering criteria to any level of the issue's ancestry. ** @parent_tracker@ (any parent ... allowing filtering based on the depth of the issue's ancestry. If multiple depths are selected, ... hild Level Filtering*: Directly target child issues with the following attributes. ** @child_t ... njoy the flexibility and freedom it brings!
- 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
- Open discussion: RE: Select2 search box for assignee and custom (list) fields?
- Looks like a bug in jQuery 3.6.0 https://github.com/select2/select2/issues/5993 Would be great to fix that issue by upgrade jQuery to 3.7 Used autocomplet ... b.com/asannou/redmine-selectbox-autocompleter
- Hi, upgrading from redmine 3 core includes ... le to add autocomplete / select2 features to issue fields too? Regards
- 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.
- 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.
- Issue To-do Lists Plugin (reworked)
- This plugin allows creating individual to-do lists per project with the ability to add issues and order them manually, regardless of what issue priority these issues have. It is a rework of an older unmaintai ... idas https://www.redmine.org/plugins/redmine_issue_todo_lists (Thank you for your great work!) ... te to-do lists per project * Add individual issues with or without comments per to-do list (al ... lists with solely text items * Order these issues / items per drag and drop * Add and remove issues to/from to-do list by context menu (even bulk adding possible) * Autocomplete for issues (as with issue relations) * To-do lists show all configured default columns displayed on the normal issue list * Remove closed issues from to-do list automatically (configurable per to-do list) * Modify to-do list adherence from ...
- Feature #38837 (New): Export attachments of several issues simultaneous
- Hi, How to export attachments from multiple simultaneous issues?
- 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
- 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
- Wiki: ItGuide
- p{color:red;letter-spacing:0.25em}. *Under Co ... ta guida| > |project|progetto|progetto| > |issue|segnalazione|attività, segnalazione, ticket| ... progetto fn3. tracker fn4. ruolo utente
- Help: RE: Access API through a url with domain
- Hi, you can use the API URL as follow, in my ... http://my_site/projects/project_identifier/issues?key=place_your_api_here </code></pre>
- Help: RE: Modify default start date in Gantt Chart
- Update: This is my updated file. The only pr ... e></pre> Obtaining the string of the oldest issue. Note: I assume the format given for the date is the same as issues "01/01/2023". After that, the idea is to ... ef initialize(options={}) # Returns issues that will be rendered def issues @issues ||= @query.issues( :order => ["#{Project.table_name}.lft ASC", "#{Issue.table_name}.id ASC"], :limit => ... ) end def sort_issue_logic(issue) julian_date = Date.new ancesters_start_date = [] current_issue = issue begin ancesters_start_date.unshift([current_issue...
- I'm pretty new and I'm trying to access API t ... rtificate verify failed: unable to get local issuer certificate (_ssl.c:1002) This leads me to ... to specify something? Could you guide me?
- 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 ...
- 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.
- Help: RE: Performance issue - Issues list - Redmine 5.0.4
- See #37962
- 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') ...
- Hello Team, When I install plugin "issue-id" and update the rail then Redmine is not ... re any other plugin that can be used same as issue-id plugin Please advise on the above issue.
- Hi! I have been trying to modify the Gantt Chart in order to start with the earliest issue date rather than the actual date. For that, ... r thought was to get the matrix used to sort issues (line 698) in the Gantt chart and get the e ... there: <pre><code class="ruby"> def sort_issue_logic(issue) julian_date = Date.new ancesters_start_date = [] current_issue = issue begin ancesters_start_date.unshift([current_issue.start_date || julian_date, current_issue.id]) current_issue = current_issue.parent end while (current_issue) ancesters_start_date en ... lp would be tremendously thankful! :) AF
- 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_...
- 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!
- Hello, I am migrating an old problem-track ... and would like to know if importing related issue(s) with each issue imported is possible. I have over 200k entries, and many of them have associated issues listed with them. I have been looking for a ... figure it out. Thank you for any help!