jira

Confluence 6 通过 SSL 连接 LDAP 和 Jira 应用等其他服务

独自空忆成欢 提交于 2019-12-03 07:18:53
这个页面的文档将会配置 SSL,而不是 Confluence 自己。Atlassian 将会支持 Confluence 使用这个配置,但是我们不能保证能够解决所有你在 SSL 中遇到的问题。请注意,这个页面下面提供的信息仅为你提供参考同时也不能保证所有的的配置能正常工作。如果你按照本页面中的内容进行配置,所有的风险自负。 这个页面的下面描述了如何通过 SSL (通过一系列的 SSL 包装的协议)让你的 Confluence 连接到一个外部服务器。 下面是你可能需要通过 SSL/HTTPS 连接到外部服务器的一些示例: 你需要连接到一个 LDAP 服务器,例如 Active Directory,如果你的 LDAP 服务器是通过 SSL 运行的。 有关 Active Directory 的特定指南,请参考 Configuring an SSL Connection to Active Directory 。 你希望在 Confluence 设置一个你的 Jira 应用为一个信任的应用,但是这个 Jira 应用是运行在 SSL 后面的。 你希望对你的 Confluence 宏的 URL 使用https://... 如果你希望让你的 Confluence 自己也运行在 SLL 的后面,请参考 Running Confluence Over SSL or HTTPS 页面中的内容。

jira和Confluence整合

可紊 提交于 2019-12-03 07:17:26
jira和Confluence整合 1、(软件连接)在jira中的-系统-应用程序导航栏-添加Confluence的地址,一定要认证通过 2、(用户同步)在confluence上-General configuration-User Directories -Add Directory 添加jira用户同步 来源: oschina 链接: https://my.oschina.net/u/114566/blog/598271

How to use Basic Authentication with JIRA REST API in JavaScript?

蹲街弑〆低调 提交于 2019-12-03 06:44:35
I'm creating a JavaScript app for a Smart TV to show dashboards on the tv. I get the list of dashboards with the JIRA REST API. The url I use for this is: jira/rest/api/2/dashboard?startAt=&maxResults= afterwards I create a wallboard as followed to show them on the tv: jira/plugins/servlet/Wallboard/?dashboardId=&os_username=&os_password= because of the os_username and os_password , JIRA knows i'm authenticated and gets the right list. this list is the one i need from the beginning but because i call the url above with the parameters os_username and os_password it does get the right list but

Find issues that were ever assigned to me

十年热恋 提交于 2019-12-03 06:27:56
问题 I am trying to create a filter to search for all issues that were ever assigned to me, even after the assignee is changed. I cant find the appropriate search parameters for this. Is it even possible in jira? 回答1: Check out the toolkit plugin https://studio.plugins.atlassian.com/wiki/display/JTOOL/JIRA+Toolkit+Plugin It has a custom field 'Participant' which allows you to find all issues that you raised, were assigned to or commented on. Francis 回答2: assignee = currentUser() OR assignee was

Jira Quick-filter to show all task with subtasks assigned to current user

妖精的绣舞 提交于 2019-12-03 05:45:28
Currently, I have a quick filter to show me my task that does this: assignee = currentUser() This works ok, but doesn't show me tasks that are assigned to someone else, but have subtasks assigned to me. Is it possible to make it show me both tasks assigned to me, and tasks that have subtasks assigned to me? Create a filter for all of your subtask from the following JQL: issuetype in subtaskIssueTypes() and assignee = currentUser() Then, using Craftforge JQL Functions Plugin , use the following JQL to find their parents: issue in parentIssuesFromFilter("filter name or its id") In addition to

Searching Jira for label !=

放肆的年华 提交于 2019-12-03 05:36:13
问题 I have a label set for some of my issues. When searching labels="ab" I get the relevant ones, but I cannot seem to find the right syntax for asking labels!="ab". How can I query for the ones not equal to ab? 回答1: != works for me although it only shows issues that have labels If I want to show all issues that do not have a certain label I have to do (labels is EMPTY OR labels != 'mylabel') This behaviour is currently intended by the Jira-Team. A suggestion to change it has been posted in the

.NET wrapper for JIRA api?

Deadly 提交于 2019-12-03 05:09:51
问题 I'm working on a JIRA implementation and need to make use of the API. Does anyone know of an existing .NET wrapper for the JIRA SOAP API? 回答1: In a Visual Studio .NET project, right click the project references and choose 'Add Service Reference', enter the URL of JIRA's WSDL descriptor (http://your_installation/rpc/soap/jiraservice-v1.wsdl), and Visual Studio will auto-generate a .NET class for accessing the JIRA SOAP API. The parameter names aren't particularly meaningful so you'll need to

JIRA: to close or to resolve?

巧了我就是萌 提交于 2019-12-03 04:41:06
问题 You can reopen both a resolved and a closed issue in JIRA. What's the practical difference? (besides requiring different permissions to resolve/close issues e.g. if QA is involved) We have some differences of opinion in our team for whether to resolve or close, and I'd like to point towards some authority and say "we should do it this way". 回答1: Typical issue workflow is the person working on the bug resolves it, and the person who opened the bug is the one who decides if the resolution is

00011 python访问jira

≡放荡痞女 提交于 2019-12-03 04:06:05
安装 pip3 install jira 简单使用 from jira import JIRA jira = JIRA(basic_auth=('username', 'password'), options={'server': 'https://jira.test.com'}) issue = jira.issue('project-100') print(issue) print(issue.fields.status) print(issue.fields.priority) print(issue.fields.summary) print(issue.fields.reporter) 来源: https://www.cnblogs.com/python-abc/p/11776293.html

Integration of JIRA with TortoiseSVN

痞子三分冷 提交于 2019-12-03 03:55:00
问题 Could anyone specify the ways to integrate JIRA with TortoiseSVN to track the issue details? What URL should be specified in URL section, what are the other parameters needed? Is there anything you have to do on JIRA side to ensure the integration? 回答1: I had lots of problems when reading TortoiseSVN documentation on the subject. Here are my findings about the integration. To integrate Jira and TortoiseSvn, a set of instructions should be performed. This guide suppose that your jira server is