jira

Can you change the location/endpoint of a dynamic web reference at run-time in .NET?

不问归期 提交于 2019-11-30 15:23:10
In a fairly standard fashion, I created a Web Reference to a SOAP service in Jira for an extension that I'm building (Jira is an issue tracker for those unfamiliar with it). Visual Studio auto-generates a .Settings file and an app.config that contains the web service URL. Since I'm developing an extension/plugin to an ALM product we're building, the consumer of the extension will be the one who ultimately decides where this web service points to, because it will be integrated with the consumer's instance of Jira. Assume that the web service URL would be stored and pulled from a database. How

Using Google Apps Script to Post JSON Data

北城以北 提交于 2019-11-30 13:17:19
问题 Server response : HTTP Status 415 - Unsupported Media Type I am trying to post JSON data to the URL from google script but getting the above error. Here is my code: function myFunctionpost() { var url = "http://abc.xyz.org/jira/rest/api/2/issue"; var data = {"project":{ "key": "KEY"},"summary": "create issue.", "description": "Creating of an issue from google spreadsheet using the REST API", "issuetype": {"name": "Bug"}} ; var payload = JSON.stringify(data); var headers = { "Accept":

How to make an image clickable in jira comment, so it pops up as if you click on attached image in attachment area?

百般思念 提交于 2019-11-30 13:13:06
I'm talking desktop browser experience, e.g. chrome. In jira, if I attach the image I can use it in my comment - and it's great! I usually use width=800px so the whole image can be seen in the comment. So I can write something like this: Here's the screenshot !my-screenshot-image.jpg|width=600px! The problem is that sometimes screenshot is too big and when shrunk to smaller size, e.g. 600px, is not readable . When you click on the image in attached files area then it pops up and this is what I want in the comment section. I was wondering if there's any parameter that would make it happen? Is

Filter issues by the user who closed them

强颜欢笑 提交于 2019-11-30 08:12:18
I have started using Jira just recently and I am having trouble with the Issue Navigator. I want to filter the issues so that the list shows only those that were closed by a specific user. I get to filter the issues by their status and/or resolution but not by the user that last updated them (that would be, the one that closed them). I'm sure the answer is obvious but I can't seem to find out how to do it!! You can use 'status changed by': status = Closed and status changed by username From the JQL documentation : The "CHANGED" operator is used to find issues that have a value which had

Using Google Apps Script to Post JSON Data

五迷三道 提交于 2019-11-30 07:03:57
Server response : HTTP Status 415 - Unsupported Media Type I am trying to post JSON data to the URL from google script but getting the above error. Here is my code: function myFunctionpost() { var url = "http://abc.xyz.org/jira/rest/api/2/issue"; var data = {"project":{ "key": "KEY"},"summary": "create issue.", "description": "Creating of an issue from google spreadsheet using the REST API", "issuetype": {"name": "Bug"}} ; var payload = JSON.stringify(data); var headers = { "Accept":"application/json", "Content-Type":"application/json", "Authorization":"Basic _authcode_" }; var options = {

Prevent log4net to send duplicate issues via SMTP

北慕城南 提交于 2019-11-30 01:32:58
问题 we have bridged our log4net with Jira using SMTP. Now we are worried that since the site is public what could happen to the Jira server if we get alot of issues in the production environment. We have already filtered on Critical and Fatal, but we want to see either some acumulator service on log4net or a plain filter which identifies repeating issues and prevents them from being sent via Email. Preferably without having to change the error reporting code, so a config solution would be best. I

巨杉Tech | 使用 SequoiaDB 分布式数据库搭建JIRA流程管理系统

最后都变了- 提交于 2019-11-29 22:28:43
介绍 JIRA是Atlassian公司出品的项目与事务跟踪工具,被广泛应用于缺陷跟踪、客户服务、需求收集、流程审批、任务跟踪、项目跟踪和敏捷管理等工作领域。很多企业与互联网公司都在使用Jira作为内部流程管理系统,进行团队协作与问题单管理。 JIRA的后台数据库可以选择使用嵌入式数据库或MySQL/PGSQL等专业数据库。一般来说,大部分企业选择MySQL作为底层的数据存储。但是,随着问题工单的不断积累,对于较大型企业来说MySQL所支撑的数据量可能很快达到瓶颈。用户可以选择使用SequoiaDB分布式数据库替换MySQL默认的InnoDB引擎,在保持对Jira应用程序完整兼容的前提下做到弹性横向扩张。 JIRA 是目前比较流行的基于Java架构的管理系统,由于Atlassian公司对很多开源项目实行免费提供缺陷跟踪服务,因此在开源领域,其认知度比其他的产品要高得多,而且易用性也好一些。同时,开源则是其另一特色,在用户购买其软件的同时,也就将源代码也购置进来,方便做二次开发。JIRA功能全面,界面友好,安装简单,配置灵活,权限管理以及可扩展性方面都十分出色。 通过阅读本文,用户可以了解到如何使用SequoiaDB巨杉数据库的MySQL实例无缝替换标准MySQL数据库。SequoiaDB巨杉数据库允许用户在不更改一行代码的情况下直接对已有应用进行后台MySQL数据库迁移。

Can you change the location/endpoint of a dynamic web reference at run-time in .NET?

梦想与她 提交于 2019-11-29 21:14:00
问题 In a fairly standard fashion, I created a Web Reference to a SOAP service in Jira for an extension that I'm building (Jira is an issue tracker for those unfamiliar with it). Visual Studio auto-generates a .Settings file and an app.config that contains the web service URL. Since I'm developing an extension/plugin to an ALM product we're building, the consumer of the extension will be the one who ultimately decides where this web service points to, because it will be integrated with the

git分支管理和工作流规范:不同场景细化和演示

坚强是说给别人听的谎言 提交于 2019-11-29 19:21:54
https://www.iteye.com/blog/qqtalk-2415889 前两篇介绍了 git基本概念 和 具体的规范 ,本篇针对不同的使用场景做演示。 分支 分支命名 master 分支名称保持不变 develop 分支名称保持不变 feature/<分支名称> 功能分支 release/<分支名称> 待上线分支 hotfix/<分支名称> 线上紧急修复分支 拉取远程分支 git checkout -b <分支名称> origin/<分支名称> 拉取并关联远程分支 创建新分支  git checkout -b <分支名称>  创建新分支并切换到新分支 <!-- more --> 提交备注规范 首行,简明扼要地描述更新内容; 空出一行; 之后,详细描述更新内容。 如果对应jira的问题,填写jira路径:issue: http://jira.n.xiaomi.com/test1 举例 修复bug,工单详情页面,工单记录页面,客服头像不显示 <空行占位符> 导致原因:代码逻辑考虑不全 jira: http://jira.n.xiaomi.com/test1 如何整理自己的commit,保持commit清晰 git commit —amend 修改最近一次提交; git rebase  -i  整理提交 edit,编辑某一次提交的备注; squash

Access specific information within worklogs in jira-python

时光怂恿深爱的人放手 提交于 2019-11-29 14:38:47
How can I get the minutes spent from a worklog from an issue using the jira-python library? Using the jirashell I see that the issue has the attribute issue.fields.worklog, however when I try to access that in my python code I get the error: AttributeError: type object 'PropertyHolder' has no attribute 'worklog' . If I create a jira client and do jira_client.worklogs(ticket.key) in my python code, it returns a list of Worklogs and their ids but I don't know what to do with that. I see in the documentation there's a worklog() function that takes in the issue id, and the worklog id, but I don't