jira

Can reflection be used to instantiate an objects base class properties?

Like this: public class remoteStatusCounts : RemoteStatus { public int statusCount; public remoteStatusCounts(RemoteStatus r) { Type t = r.GetType(); foreach (PropertyInfo p in t.GetProperties()) { this.property(p) = p.GetValue(); //example pseudocode } } } The example ...

How to move JIRA Studio from hosted version to my own server?

How to move JIRA Studio from hosted version to my own server? ...

Is it possible to integrate Mercurial commits with JIRA or FishEye (via TortoiseHg or hg)?

Is there a way to link every HG commit to a specific bug tracking issue? For example, show a drop down when committing from TortoiseHg with all active JIRA issues assigned to the current user (similar to the TortoiseSVN Plugin for JIRA). Maybe a drop down is too fancy, but is there something similar to the TortoiseSVN Integration with B...

Is there a way to check history of work logged by a specific user in JIRA?

We ( in our project team) follow regular practice of leaving comments in an jira issue and regularly log the work done. I want to check the history of work logged by a specific user (or by me) stating the hours worked on a day, and some more useful information. Is that possible in Jira? Thanks for your interest. ...

Integrating ToDoList and Jira

Recently i have started using ToDoList, most of the times my todos are based on the jira issues/tasks that i need to work on. Is there a way to integrate ToDoList tool with Jira somehow? Like, on marking a task as completed in ToDo should resolve the issue in Jira, or other way around. Thanks for your interest. ...

401 error when installing Jira 4 on Server 2008

Hi, I'm trying to install Jira on Windows 2008 using the standalone installer and setting up Jira as a Windows service. The docs make it seem fairly simple, but I've had tons of trouble and have spent the last week going back and forth with their support. Though they've been quite responsive and friendly, they still have not been able...

Jira: large numbers of versions

Jira has built in version information, which looks quite handy. However in an iterative model you might release a new version every couple of weeks and that would mean a lot of versions in the lists... which is functional but strikes me as a bit clumsy. Is this the right way, or are there better approaches in how versions are used in Ji...

Sprint versions vs Release versions in Jira and Greenhopper

When using Greenhopper with Jira, it is clear that Greenhopper is using the "fixed in version" field in the Jira issues to represent which scrum sprint the issue is being worked on. This in itself is a bit hackish, because an issue can conceivably be worked on in multiple sprints, and because the relationship between an issue and a sprin...

Manage project meta-data with JIRA?

Perhaps I'm missing this functionality out of the box, but I can't seem to find it. So I'm looking for a JIRA plugin that would allow for adding notes attached directly to the project summary page. This would be for keeping track of odds and ends about a project that are important to document, but don't fit as bugs, code comments, spec ...

jira and git linking up.

I recently moved to jira for my bug management tool. I have installed the most recent copy which 4.1. We use Git as our version control system, I am looking to set it up, so looking around i found this one to be the most popular https://plugins.atlassian.com/plugin/details/4984 Unfortunately, like all things that happen in my day, its...

jira SOAP and XMLRPC

I was wondering if there are urls for the various calls that can be made to jira. get issues, get users. what format are they in xml? json? I want to write a wrapper class in python. I see the SOAP api exsists but no methods definitions in python anywhere I can find. I found the java one fairly easy. Your help is appreciated. Please a...

How to configure Tomcat to log everything via syslog ?

Hi, I'm trying to configure Tomcat and a webapp (Atlassian JIRA) to log everything over syslog. Here is what I added to the webapp log4j.properties (atlassian-jira/WEB-INF/classes/log4j.properties) : log4j.rootLogger=WARN, syslog log4j.appender.syslog=org.apache.log4j.net.SyslogAppender log4j.appender.syslog.facility=LOCAL0 log4j.app...

python -- for with an if statement

I dont understand why, when i run my code the for each loop under the if statement isn't run. Even when the number of found is greater than 0! def findpattern(commit_msg): pattern = re.compile("\w\w*-\d\d*") group = pattern.finditer(commit_msg) found = getIterLength(group) print found if found > 0: issues = ...

git server side hooks

I am running into a problem when running the follow python script on the server looking for commit information for the push making sure it follows a particular syntax, I am unable to get input from the user which is why the username and password are hard coded. I am now also unable to get the list of commit message that occurred before t...

How to enable the RTF editor in Jira

I'm new to Jira and have big problem with creating tables inside my testing plan. Using pipes, double pipes, etc. to build the table markup is really time consuming. So, I saw here, that actually there's a RTF editor with visual table building in Confluence (which should be used in JIRA right? ) : http://confluence.atlassian.com/display...

Atlassian JIRA + SQL Server + Perforce on vServer

Hi, I want to organise my private software development process and I plan to use JIRA together with SQL Server 2008 R2 Enterprise and Perforce. I have already installed and configured this "pack" for evaluation purposes on desktop machine. For a clean production environment I want to migrate (of course with a clean install) all those ...

java.lang.ClassCircularityError only with Security Manager enabled

Hi all, I've got a weird problem under Tomcat 6 with a vendor supplied application. If I enable the security manager, the application starts fine but as soon as I attempt to access a jsp page within the app, I get a ClassCircularityError. If I disable the security manager, this no longer occurs. I originally had a number of security ...

Jira Workflows and Schemes

Hi, I am new to Jira can somebody explain me meaning of different schemes in Jira like issue security scheme,notification scheme..etc..or plz give a suitable link... because i was not able to get much from atlassian site... Thanks in advance ...

Migrating Bugzilla to non fresh JIRA duplicate key

I have a JIRA environment which already has some information and i'm trying to merge all the bugzilla bugs into JIRA. I'm trying to use the importer form JIRA "BugzillaImportBean.java‎" But it's failing when it tries to insert into the OS_CURRENTSTEP table because of a unique Key violation, essentially the ID already exists in JIRA in th...

keytool error: java.lang.Exception: Input not an X.509 certificate

I am trying to import Gmails smtp certificate for use with Jira, but I get this error when importing using Javas keytool. I used openssl to get the certificate, everything between ----Begin Certificate---- and ----End Certificate---- (inclusive). I also attempted to create an x.509 certificate using Windows Certificate Manager, but sti...