Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Lorna Mitchell's Blog:
Using JIRA's REST API to Create a Dashboard
Mar 28, 2012 @ 15:57:56

In this recent post to her blog, Lorna Mitchell shows how to use the Jira REST API (provided as a part of some of the newer versions of the tool) to create a "dashboard" of the latest items added to the tracker.

Today what you get is an example of integrating with JIRA's REST API, because their recent "upgrade" locked me out of the issue listings pages completely and I really do need to be able to see a list of bugs! Their bug editing screen is quite usable, so it's just the list that I need here, but you could easily call their other API methods as you need to. These examples are PHP and use the Joind.in Jira tracker), parsing the JSON results and displaying the results as a simple list, looping with a foreach and outputting some HTML.

tagged: jira rest api pecl http extension issues dashboard

Link:

Zend Developer Zone:
Announcing July's Zend Framework Bug Hunt Days
Jul 27, 2011 @ 16:13:44

On the Zend Developer Zone, Matthew Weier O'Phinney has posted a notice about this month's Bug Hunt Days for the Zend Framework. This month they'll be held July 28th through the 30th.

For those who haven't put the recurring event in their calendar, the Zend Framework Monthly Bug-hunt is here again! This Thursday, Friday and Saturday (the 28th, 29th and 30th of July), we'll be hosting our monthly bug hunt. For those of you unfamiliar with the event, each month, we organize the community to help reduce the number of open issues reported against the framework.

He reminds those wanting to participate of a few pieces of information - that they'll need a CLA on file, where to find unresolved issues, getting help on the zftalk.dev IRC channel and a getting started guide for those first-timers.

tagged: zendframework bughuntdays bug jira unresolved opensource

Link:

Lorna Mitchell's Blog:
Github to Jira Bug Migration Script
Mar 09, 2011 @ 16:18:18

As part of a migration the Joind.in project made to track their bugs on a hosted Jira instance instead of the Issue Tracker on Github, Lorna Mitchell, one of the leads on the project has written up an import script she used to move current issues. The code is in her latest post.

I migrated only our open issues, and comments (and the comments ended up a bit weirdly formatted on the other end but this was the best they could do). It was nothing pretty or clever but in case it's useful to someone else.

The script connects to the github API and pulls down the information for the open issues including their titles, user and body of the issue. This is then used to make another connection for each to fetch their comments. The whole thing is dumped out to a CSV file that can be easily imported by the Jira team.

tagged: github jira import issue list bug migrate csv api

Link:

Jim Plush's Blog:
How to Auto Create Issues in Jira From PHP
Feb 07, 2011 @ 14:06:52

Jim Plush has a new post to his blog today that points out a bit of code you can use to auto-create issues in Jira from your PHP application.

We use Jira at Gravity for tracking issues and bugs. Since I'm not always on VPN or have access to our network managing my todos has been cumbersome. I've tried every Todo app out there and always fail to use them for more than 2 days. I finally saw a great article on just using a simple Todo.txt file in your Dropbox folder and working from that. It's been a dream and working out great.

His tool lets him use the Todo list example to push its contents out to the PHP script that connects to the Jira instance and make a new issue. The code is included in the post, ready for cut-and-pasting.

tagged: jira create issue todo list script

Link:


Trending Topics: