Changes between Version 20 and Version 21 of ExtendedVersionPlugin


Ignore:
Timestamp:
Jun 9, 2015, 8:49:46 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • ExtendedVersionPlugin

    v20 v21  
    33= Extended Version Plugin
    44
     5{{{#!NewsFlash
     6**Development status** There is on-going work to provide similar features in the Trac core. See trac:#1233 and trac:#11409.
     7}}}
     8
    59== Description
    610
    7 The Trac ticket module has the concept of a version, but it is only visible as a name in a drop-down on a ticket. This plugin adds version description pages, a roadmap-like view of versions, and the ability to assign milestones to versions. Most features are optional. '''This plugin is for Trac 0.12 and later.'''
     11This plugin adds version description pages, a roadmap-like view of versions, and the ability to assign milestones to versions. Most features are optional. While the Trac ticket module has the concept of a version, it is only visible as a name in a drop-down on a ticket and this plugin fixes that.
    812
    9  * The version page shows the name, date, description and any assigned milestones. If milestones are assigned, it shows the overall progress for the version and the progress on each milestone.
     13'''Note:''' This plugin is for Trac 0.12 and later.
    1014
    11 {{{#!NewsFlash
    12 **Development status**
     15=== Screenshot: version page
    1316
    14 There is on-going work to provide similar features in the Trac core. See trac:#1233 and trac:#11409.
    15 }}}
     17The version page shows the name, date, description and any assigned milestones. If milestones are assigned, it shows the overall progress for the version and the progress on each milestone.
    1618
    1719 [[Image(version_page.png, 40%)]]
    1820
    19  * The version roadmap looks very similar to the milestone roadmap.
     21=== Screenshot: version roadmap
     22
     23The version roadmap looks very similar to the milestone roadmap.
    2024
    2125 [[Image(version_roadmap.png, 40%)]]
    2226
    23  * Milestones assigned to versions have the version noted beside the due date.
     27=== Screenshot: milestones page
     28
     29Milestones assigned to versions have the version noted alongside the due date.
    2430
    2531 [[Image(milestone_version.png)]]
     
    3137
    3238If you have any issues, create a
    33 [http://trac-hacks.org/newticket?component=ExtendedVersionPlugin&owner=rjollos new ticket].
     39[/newticket?component=ExtendedVersionPlugin new ticket].
    3440
    3541[[TicketQuery(component=ExtendedVersionPlugin&group=type,format=progress)]]
     
    3945Download the zipped source from [download:extendedversionplugin here].
    4046
     47== Source
     48
    4149You can check out ExtendedVersionPlugin from [http://trac-hacks.org/svn/extendedversionplugin here] using Subversion, or [source:extendedversionplugin browse the source] with Trac.
    4250
     
    4452
    4553The easiest way to install the ExtendedVersionPlugin is probably with easy_install:
    46 {{{
    47 #!sh
     54{{{#!sh
    4855easy_install http://trac-hacks.org/svn/extendedversionplugin/trunk
    4956}}}
    5057
    51 Alternatively, download the source and run the usual
    52 {{{
    53 #!sh
     58Alternatively, download the source and run the usual:
     59{{{#!sh
    5460python setup.py install
    5561}}}
    5662
    57 After installing the plugin, enable it for the trac environment in the TracIni file:
    58 {{{
    59 #!ini
     63After installing the plugin, enable it for the Trac environment in the TracIni file:
     64{{{#!ini
    6065[components]
    6166extendedversion.* = enabled
     
    6368
    6469This plugin requires some database changes, so upgrade the environment. Trac will prompt you to if you don't.
    65 {{{
    66 #!sh
     70{{{#!sh
    6771trac-admin /path/to/trac upgrade
    6872}}}
     
    98102'''Maintainer:''' [[Maintainer]][[BR]]
    99103'''Contributors:''' [wiki:dcernea], jun66j5 [[BR]]
    100 '''License:''' BSD 3-Clause