Project

General

Profile

Search

Results (18279)

Development: Create Multiple Issues - API Redmine (XML)
Hi Dears!!!! I need to create multiple issues using Redmine's API. Can anyone explain to ... xml version="1.0" encoding="ISO-8859-1" ?> <issue> <project_id>1184</project_id> <subject>Issue 1</subject> <tracker_id>67</tracker_id> ... id> <assigned_to_id>3</assigned_to_id> </issue> <issue> <project_id>1184</project_id> <subject>Issue 2</subject> <tracker_id>67</tracker_id> ... id> <assigned_to_id>3</assigned_to_id> </issue> </code></pre> Best regards!!!! 2016-11-21 18:59
Help: How to set the layout of issue
Hi I creat the Redmine enviroment in Windows Server2012 R2. In the "New issue",there're a lot of "custom fields" which I h ... o for my Redmine?Should I change source code? 2016-11-21 16:12
Open discussion: How to delete the href
I had created a redmine with my Windows Serve ... rojects" window,I want to make the "View all issues" is only showed, and when I click the "View all issues",the issues can't be displayed. QA: I think I need to delete the "href" of "View all issues",but which file should I change? I don't k ... th.. Who can help me? Thank you very muchu~ 2016-11-21 16:09
Help: Role-based access to versions
Hello everyone. Situation: - Project to m ... s. Requirement: - At "External versions" issues, we need a custom field to point to "Intern ... field is already working good. Example of Issue: - Issue 001. - Tracker: Bug. - Target version: ext ... wn list will show both external and internal issues). - Internal version: internal0.0.3 Problem: - When reporting an issue, I don't want the customers to see the "Inte ... ersion". Is there any way to solve this? 2016-11-21 11:02
Help: Group- and role-based issue assignment and notifications
Let's say I have a group called @developer@, ... oject, but should be allowed to comment each issue and see the wiki for each project. Hence I a ... at group * should see when filtering the issues via "assigned to <<me>>", and * receive no ... ow else I am supposed to easily achieve this? 2016-11-21 09:30
Plugins: RE: Time & Attendance 2.4
We didn't want to keep public holidays in 2 m ... oved to attendance module and modelled as an Issue. The old public holidays feature was just u ... only to admins and not to the normal users. 2016-11-21 08:42
Help: Can not save files
When I upload files, 75% of the time it says ... I have even tried a new server install, same issue. I am using v3.3.1 It seems to happen randomly. Some uploads work fine, some don't. 2016-11-18 20:19
Help: RE: nginx proxy blocking file upload viewing
5 years late but maybe someone else has the same issue -> it's the image cache of nginx 2016-11-17 12:22
Help: Need a Watcher column in "View all issues" list.
Redmine 3.3.1 Ubuntu 14.04 I use "View all issues" list as a report, but need to show Issue Watchers. Is there a way to get Watchers show up under “Options” -> "Available Columns"? 2016-11-17 07:43
Help: RE: Initial Configuration Fails with NameError
Paulo Moreira wrote: > Faced same issue: > CentOS 7 > redmine-2.6.10 upgrade to 3. ... ilure. How did you manage to get around that? 2016-11-15 17:12
Open discussion: RE: Has Anybody Considered an AngularJS Powered Theme?
>"OpenProject":https://www.openproject.org/ which is a fork of Redmine builds the entire issue management with Angular. That project has ... ll never be a paid-for version of SuiteCRM.!* 2016-11-15 13:37
Open discussion: RE: combined project-issues-view
I don't think so. But you can always select the drop down menu from right top on Issues list, to achieve similar result(assuming you have limited number of projects) 2016-11-15 09:18
Help: Subversion revision duplicated in redmine issue
Hi, as a release manager I configured keywords to reference SVN commit into issues. It works but SVN revisions are duplicated! Please see the image in attachment. Any idea ? 2016-11-14 10:37
Help: Could I presumptuous consult a "Updating Redmine issue statuses from Gerrit" problem?
Dear All, Below are my Gerrit and Redmine ... sage, so Redmine always can’t get #${redmine-issue-id} and update the issue. What should I do let it can send commit ... ks and hope to listen your reply. Sherry Lin 2016-11-14 09:10
Help: Issue status for percent done
Sorry for my english, I hope you can understa ... Logged in as administrator. Problem: in the Issue menu, when I select any issue and click the right button of mouse on it th ... висимости от статуса задачи. Как это сделать? 2016-11-14 08:44
Plugins: Plugin "redmine_xapian". Error: Can't open Xapian database
Good afternoon. Install the plugin according ... Y `settings`.`id` DESC LIMIT 1 ^[[1m^[[36mIssue Load (0.2ms)^[[0m ^[[1mSELECT `issues`.* FROM `issues` INNER JOIN `projects` ON `projects`.`id` = `issues`.`project_id` WHERE (projects.status <> 9 A ... ^[[1m^[[35m (0.1ms)^[[0m SELECT DISTINCT `issues`.`created_on`, `issues`.`id` FROM `issues` INNER JOIN `projects` ON `projects`.`id` = `issues`.`project_id` WHERE (projects.status <> 9 A ... stom_fields` WHERE `custom_fields`.`type` = 'IssueCustomField' AND `custom_fields`.`searchable` ... ^[[1m^[[35m (0.1ms)^[[0m SELECT DISTINCT `issues`.`created_on`, `issues`.`id` FROM `issues` INNER JOIN `projects` ON `projects`.`id` = `issue... 2016-11-14 08:41
Open discussion: RE: Has Anybody Considered an AngularJS Powered Theme?
I guess it really depends on the product visi ... which is a fork of Redmine builds the entire issue management with Angular. So their goal is bu ... ad, especially the inline editing within the issues table: https://www.youtube.com/watch?v=H-M6k-fFht8 2016-11-12 07:34
Plugins: RE: Time & Attendance 2.4
Karthick Madhiazhagan wrote: > From Time and ... attendance module. > You have to create an issue called 'Public Holidays' and set that issue as leave in attendance tab in plugin configuration. > Then put time entry for that issue in Time sheet. > > If you don't plan to use attendance module then please put log time for any issue. Well, the idea was to reduce the amount ... at this is not needed to be entered manually. 2016-11-11 12:03
Plugins: Can it autoload?
When I modify a patch module, I have to resta ... it.rb@ <pre><code class="ruby">require 'foo/issue_patch' Redmine::Plugin.register :foo do ... t' end</code></pre> @plugins/foo/lib/foo/issue_patch.rb@ <pre><code class="ruby"> require_dependency 'issue' module Foo module IssuePatch extend ActiveSupport::Concern ... # code end end end unless Issue.included_modules.include?(Foo::IssuePatch) Issue.send(:include, Foo::IssuePatch) end</code></pre> When I modify @issue_patch.rb@, I hope it work immediately, don't need restart rails server, development mode. 2016-11-11 01:37
Help: Cannot see Git Associated Revision
Hi, I have setup a Git repo and I am able to reference my issues in commit messages : !revision.png! However when I open the referenced issue I don't see the associated revision : !issue.png! Any idea why ? Thanxs 2016-11-10 15:55
Help: RE: After migrating, the ISSUES and the ROLES are not accessibles.
You should run on Redmine root directory whic ... source:tags/3.3.1 source:tags/3.3.1/Rakefile 2016-11-10 15:04
Help: RE: After migrating, the ISSUES and the ROLES are not accessibles.
Toshi MARUYAMA wrote: > You should run on Re ... file, Rakefile, rakefile.rb, Rakefile.rb) 2016-11-10 12:40
Help: RE: After migrating, the ISSUES and the ROLES are not accessibles.
Olivier Moreau wrote: > I got : > C:\Bitnam ... file.rb) You should run on Redmine root. 2016-11-10 09:12
Help: Issue with Gantt chart progress task calculation
Hello guys, i'm creating a new project and ... n the figure attached (redmine-gantt). 2016-11-10 04:01
Help: RE: After migrating, the ISSUES and the ROLES are not accessibles.
Thanks James I'm stuck with Step 4 - Update ... ENV=production Never mind, back to 321... 2016-11-10 03:14
(3726-3750/18279)