2024-08-13 | Noble Numbat |
2024-06-21 | Maven 3.9.8 |
2024-02-02 | Maven 3.9.6 |
2023-10-11 | P2 repository deleted |
2023-10-10 | Maven 3.9.5 |
2023-08-21 | Maven 3.9.4 |
The JiraIssueList extension 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.
Requirements
JiraIssueList extension uses the MediaWiki Extension CollapsableText. You must install this extension to use JiraIssueList.
Installation
- Download JiraIssueList,
- Unpack the archive in your Mediawiki directory
- add
require_once($IP.'/extensions/JiraIssueList/JiraIssueList.php');
in yourLocalSettings.php
.
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.
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>
:
projectName
is the name of the project on the JIRA SOAP service.options
are: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
Details
- Main authors: GALLAND Stéphane
- License: GPL
- Implementation: Php
- Stable Version: 1.0