This page last changed on Jul 03, 2007 by nick.menere@atlassian.com.
The Version Tab Panel plugin module is available in JIRA version 3.10 and later.

The Version Tab Panel plugin module allows you to add new tabs to the 'Browse Versions' page.

These tab panels ('Summary' and 'Popular Issues') are implemented as plugins. New version tab panels can be implemented to display version-specific info.

Here is an example panel module descriptor:

<!--
The class defined should implement
com.atlassian.jira.plugin.versionpanel.VersionTabPanel
and it may be useful to use the functionality provided by
com.atlassian.jira.plugin.versionpanel.impl.GenericTabPanel.
-->
<version-tabpanel key="version-openissues-panel" i18n-name-key="versionpanels.openissues.name"
                      name="Open Issues Panel" class="com.atlassian.jira.plugin.versionpanel.impl.GenericTabPanel">
        <description key="versionpanels.openissues.description">Show the open issues for this version.</description>
        <label key="common.concepts.openissues"/>
        <!-- this is a number defining the order of all panels.
             The system panels are 10, 20, 30 and 40. -->
        <order>10</order>
        <!-- this template produces the HTML for the panel -->
        <resource type="velocity" name="view"
                  location="templates/plugins/jira/projectentitypanels/openissues-version-panel.vm"/>
        <!-- this properties files contains i18n keys for the panel -->
        <resource type="i18n" name="i18n" location="com.atlassian.jira.plugins.versionpanels.openissues"/>
    </version-tabpanel>

versiontabpanels.png (image/png)
versiontabpanels.png (image/png)
Document generated by Confluence on Mar 27, 2011 18:53