Extension:JiraIssueList
|
JiraIssueList Release status: stable |
|
|---|---|
| Implementation | Tag |
| Description | Adds tag to output Jira issues. |
| Author(s) | Stéphane GALLAND (sgalland-arakhneTalk) |
| Last version | 1.0 |
| License | GPL |
| Download | http://www.arakhne.org/mediawiki/JiraIssueList/ |
|
Check usage (experimental) |
|
Contents |
[edit] Description
JiraIssueList is used to embed a list of issues from the JIRA issue tracker in a MediaWiki page. This extension is a fork of the JIRA extension which is adapted to Janus Project and then generalized.
Example: http://www.janus-project.org/index.php/Issues:Janus
[edit] Requirements
JiraIssueList extension uses the CollapsableText extension. You must install it to use JiraIssueList.
[edit] Installation
- Download JiraIssueList,
- Unpack the archive in your Mediawiki directory
- add require_once('extensions/JiraIssueList/JiraIssueList.php'); in your LocalSettings.php.
[edit] Configuration
The JiraIssueList extension uses a SOAP connexion to the JIRA issue tracker. You must enable this feature in your JIRA configuration panel.
JiraIssueList extension uses several global variables which may be set in LocalSetting.php:
$jiraHost- Defines the URL of the Jira website which is providing SOAP service.
$jiraUser- Defines the login to use to be connected to the JIRA SOAP service.
$jiraPass- Defines password of the account to use to be connected to the JIRA SOAP service.
[edit] Usage
JiraIssueList provides the tag <jiraissuelist />. This tag is expanded to list of issues extracted from the JIRA issue tracker.
<jiraissuelist options> projectName, projectName... </jiraissuelist>:
projectNameis the name of the project on the JIRA SOAP service.optionsare:ascendent=" true|false ": sort the issues in ascendent or descendent ordermax=" number ": restrict the output of the issues to the given number of entriesoffset=" number ": start to display issues from the given offset, not yet supported due to SOAP service restrictionssearch=" text ": restrict issues to whose matching the given text
