Tag Info

Hot answers tagged

3

In the end i figured it out by myself: You need a custom authenticator public class MyCustomAuthenticator extends DefaultAuthenticator { protected boolean authenticate(Principal user, String password) throws AuthenticatorException { return true; } protected Principal getUser(String username) { return ...


2

I must say that I agree with one element of the previous answer: the optimal setup in Scrum is to have only one team. Unfortunately, in some context you don't have this option. So if it s your case, here is my answer: First I don't suggest creating separate project. With features in the last versions of JIRA there are plenty of other way to do it. One ...


2

JQL Tricks adds tons of additional JQL functions: https://marketplace.atlassian.com/plugins/com.j-tricks.jql-plugin Here an example for the above using their syntax: issue in parent("project = MyProject AND fixVersion = 27_04_2013 and status != Closed")


2

Quite an ugly but still an grouping issue. The "normal" solution with xslt-1.0 is muenchian grouping (e.g look to this). With this key: <xsl:key name="kMonthYear" match="created" use="concat( substring-before( substring-after( substring-after( substring-after(., ' '), ' '),' ') ...


1

Can be done easily using the Script Runner add-on to attach a post function to requires transition (i.e. moving to staging/production), that will edit the URL and will update it in your custom field or the issue description . Code for the script (not tested): from com.atlassian.jira import ComponentManager cfm = ...


1

Provided you own docs are well structured you will be able to import them via @Bob Dalgleish 's solution proposal. You will need to convert your files to CSVs, map all "keys" in your current structure to the one described in the guide and check your file's structure. Then you will be able to import them. Something more, you have the ability to import ...


1

To start using Jira, first create Users and a Project. then, you can customize jira to better fits your needs: Creating a Custom Workflow add customized fields create your own issue types create your own Screens Add Notifications add advanced option, for example create issue from email add plugins This is only a partial list, since practically every ...


1

The files itself don't have any comments. The commits have a commit message. That is probably what you are talking about. You can use something like git log --oneline -- $filename to see all the commits which touched that file together with its commit message. If you need the last commit for each file you can use git ls-files to get all files and git log ...


1

I believe you wanted to create some kind of triggered event when logged work approaches original estimate, but I do not know how you could do that in JIRA. Nevertheless, I know something that still might help you to solve your problem. Try using following groovy script: import com.atlassian.jira.ComponentManager import ...



Only top voted, non community-wiki answers of a minimum length are eligible