jira

Total in progress time in JIRA

坚强是说给别人听的谎言 提交于 2019-12-11 08:53:35
问题 guys could you please advice how to make a report which contains total "in progress" time for certain task using JQL or any other JIRA methods? Is it possible without using additional plugins? Thx 回答1: This question was actually asked here before. The answer unfortunately is no - JIRA on itself does not provide such functionality. You can however implement a plug-in or an external service that tracks this. The idea would be that when an issue makes the transition to "In Progress" a trigger is

Jira API with python returns error 401 on valid credentials

杀马特。学长 韩版系。学妹 提交于 2019-12-11 08:23:52
问题 I am trying to use the Jira python library to do some quite basic things. Even before doing anything, the constructor fails. address = 'https://myaddress.atlassian.net' options = {'server': address} un = 'my@user.com' #un = 'my' #also doesn't work pw = 'the_pasSword!' cookie = (un, pw) j = JIRA(options, basic_auth=cookie) This is ALL the code. The last line fails with WARNING:root:Got recoverable error from GET https://myaddress.atlassian.net/rest/api/2/serverInfo, will retry [1/3] in 13

Get Credentials from Current User in Atlassian Plugin

。_饼干妹妹 提交于 2019-12-11 08:17:08
问题 is it possible to get Username and Password in a Confluence Plugin? The Usernam works for me like this: ApplicationUser user = userUtil.getUserByName(userManager.getRemoteUsername(request)); I want to connect to the Jira Rest Api with the current User. 回答1: As @Philipp Sander already commented, it is not possible to retrieve the user's password. Confluence only stores passwords in an encrypted way, so it doesn't even know user passwords. However, since you're talking about a Confluence plugin

Jira Scriptrunner - Update a parent's field when modifying the child's field

Deadly 提交于 2019-12-11 07:06:53
问题 In Jira, we have a series of subtasks all belonging to a common parent task. For ease of explanation, these subtasks will referred to as such, and the parent task will be referred to as the lesson. On each subtask, there is a field 'Percent Complete', which is manually updated by the user as progress is made on the subtask. The lesson will also have a 'Percent Complete' field, which the user cannot manually update. Instead, I would like it to be updated through the execution of a Groovy

Jira behind Apache https proxy redirect

人走茶凉 提交于 2019-12-11 06:52:24
问题 I have a jira server setup using tomcat and apache. When I type in the url jira.example.com it brings me to https://jira.example.com//secure/Dashboard.jspa and I get dashboard errors because of the url. If I type in jira.example.com:8080 it brings me to the correct url. http://jira.example.com:8080/secure/Dashboard.jspa Any ideas where the issue might be? <IfModule mod_proxy.c> ProxyRequests On <VirtualHost *:80> ServerName jira.example.com ServerAlias jira jira.c11.example.com

Issue in connecting with JIRA python

六眼飞鱼酱① 提交于 2019-12-11 05:47:23
问题 I am using JIRA authentication in python: from jira.client import JIRA option={'server':'https://jira.nutanix.com/','verify':False} jira_obj=JIRA(options=options, basic_auth=(user, password)) The code is not correct, I just want to show the way I call the JIRA API. I am getting error as: WARNING:root:EOF occurred in violation of protocol (_ssl.c:590) while doing GET https://jira.nutanix.com/rest/api/2/serverInfo [{u'headers': {'Accept-Encoding': 'gzip, deflate', 'Accept': ' / ', 'User-Agent':

JIRA creating issue using java

放肆的年华 提交于 2019-12-11 05:40:31
问题 What I'm trying to do is creating a new issue on JIRA over Java. Actually I'm on internship and didn't work with APIs before. Here is the code I found while studying JIRA's documents. Not sure if paramaters are wrong. public class ExampleCreateIssuesAsynchronous { private static URI jiraServerUri = URI.create("https://stajtest.atlassian.net/"); public static void main(String[] args) throws IOException { final AsynchronousJiraRestClientFactory factory = new AsynchronousJiraRestClientFactory();

What is the difference between release and iteration on JIRA?

浪尽此生 提交于 2019-12-11 05:06:14
问题 What is the difference between release and iteration on JIRA? :) 回答1: As Jira is a tool that manage Agile teams, they use the same language, just have a look here to understand the meaning of iteration and release in an Agile context. 来源: https://stackoverflow.com/questions/5787211/what-is-the-difference-between-release-and-iteration-on-jira

How to remove an attachment from Jira 4.4 using Http

房东的猫 提交于 2019-12-11 04:42:44
问题 I have been looking for a way to remove an attachment from Jira using the SOAP Api, but it seems that this is not possible natively, and I would prefer not having to implement a new plugin for Jira, as suggested in the accepted answer to this question, or recompiling the existing plugin to support this as mentioned here. This answer to the abovementioned question seems to do exactly what I want, but alas, I can't get i to work. The response i get is an error stating that: XSRF Security Token

JQL Query - Use a filter result in another JQL query

限于喜欢 提交于 2019-12-11 04:10:33
问题 I have a JQL filter searching for epics fulfilling certain requirements. Now i would like to do something like: "Epic Link" in (filter= 22611) I know one can use filters with AND etc, but this doesn´t seem to work. Is this even possible or is there another way round? Thank you! 回答1: Nested JQL calls are not (yet) possible in Jira. Atlassian have a feature request raised for this here. You will need to accommodate the JQL with the AND operator in front. 来源: https://stackoverflow.com/questions