Extension:JIRA

From MediaWiki.org

Jump to: navigation, search
Manual on MediaWiki Extensions
List of MediaWiki Extensions
JIRA

Release status: beta

Implementation Parser extension, Tag
Description Embed lists of JIRA issues in a wiki page
Author(s) River Tarnell (Kate Talk)
Version 2007-10-17.1 (2007-10-17)
MediaWiki 1.11.0
License see below
Download svn://svn.wikimedia.org/svnroot/mediawiki/extensions/JIRA

The JIRA extension is used to embed a list of issues from the JIRA issue tracker in a MediaWiki page.

Report bugs at https://infra.ts.wikimedia.org/jira/ (project River, component JIRA extension).

[edit] Installation

  • Make sure remote API is enabled in your JIRA.
  • In LocalSettings.php, set $JIRAs similar to this:
$JIRAs = array(
    'whit' => array( # the name of the JIRA
        'user' => 'river',
        'password' => 'whatever',
        'url' => 'http://whit.local/jira/rpc/soap/jirasoapservice-v2?wsdl',
    ),
);
$JIRAdefault = 'whit'; # the default JIRA to use when one isn't specified
  • And add:
require_once(".../path/to/JIRA.php");

[edit] Usage

To display a list of JIRA issues in a wiki page, do this:

<jiralist jira="whit" projects="TEST,OTHER">
  search term ...
</jiralist>

jira="" is optional, and defaults to $JIRAdefault. projects="" is also optional; if not specified, all projects will be searched. The search term is a quick search string, as described at http://www.atlassian.com/software/jira/docs/v3.11/quicksearch.html

[edit] License

Copyright (c) 2007 River Tarnell <river@wikimedia.org>.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely. This software is provided 'as-is', without any express or implied warranty.

Personal tools