Changes between Version 4 and Version 5 of TracBackLinkPlugin


Ignore:
Timestamp:
Apr 4, 2017, 9:55:03 PM (7 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracBackLinkPlugin

    v4 v5  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Back link feature in Trac (trac:#611)
     3= Back link feature in Trac
    44
    55== Description
    66
    7 This plugin provides [trac:wiki:BackLinks back link] feature.
     7This plugin provides a [trac:wiki:BackLinks back link] feature.
    88
    9  - Add //Back Links// section to ticket, wiki and milestone views.
    10  - Update automatically `backlink` table with gathered back links from tickets, wiki pages, milestones and changesets via `*ChangeListener` interfaces.
    11  - Add `backlink sync` command which updates `backlink` table first.
     9 - Add '''Back Links''' section to ticket, wiki and milestone views.
     10 - Update the `backlink` table automatically with gathered back links from tickets, wiki pages, milestones and changesets via `*ChangeListener` interfaces.
     11 - Add `backlink sync` command, which updates the `backlink` table
    1212
    13 === Screen shots
    14 [[Image(example-wiki.png,border=2)]]
     13'''Example for wiki''':
    1514
    16 [[Image(example-ticket.png,border=2)]]
     15[[Image(example-wiki.png, border=2)]]
     16
     17'''Example for ticket''':
     18
     19[[Image(example-ticket.png, border=2)]]
     20
     21See also trac:#611.
    1722
    1823== !Bugs/Feature Requests
     
    3742
    3843 1. Install the plugin:
    39 {{{#!sh
     44 {{{#!sh
    4045$ easy_install https://trac-hacks.org/svn/tracbacklinkplugin/1.0/
    4146}}}
    42  2. Enable the plugin in your `trac.ini` file:
     47 1. Enable the plugin in your `trac.ini` file:
    4348 {{{#!ini
    4449[components]
    4550tracbacklink.* = enabled
    4651}}}
    47  3. Execute `upgrade` command to create `backlink` table:
    48 {{{#!sh
     52 1. Execute `upgrade` command to create `backlink` table:
     53 {{{#!sh
    4954$ trac-admin $ENV upgrade
    5055}}}
    51  4. Execute `backlink sync` command to synchronize `backlink` table with several tables in Trac:
     56 1. Execute `backlink sync` command to synchronize `backlink` table with several tables in Trac:
    5257{{{#!sh
    5358$ trac-admin $ENV backlink sync
    5459}}}
    5560
    56 See also [TracPlugins#InstallingaTracplugin TracPlugins] page.
     61See also [TracPlugins#InstallingaTracplugin TracPlugins] page for generic installation instructions.
    5762
    5863== Recent Changes