Changes between Version 10 and Version 11 of StickyTicketPlugin


Ignore:
Timestamp:
Nov 19, 2015, 9:34:30 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • StickyTicketPlugin

    v10 v11  
    1919== Download
    2020
    21 Download the zipped source from [download:stickyticketplugin here].
     21Download the zipped source from [export:stickyticketplugin here].
    2222
    2323== Source
    2424
    25 You can check out !StickyTicketPlugin from [http://trac-hacks.org/svn/stickyticketplugin here] using Subversion, or [source:stickyticketplugin browse the source] with Trac.
     25You can check out StickyTicketPlugin from [/svn/stickyticketplugin here] using Subversion, or [source:stickyticketplugin browse the source] with Trac.
    2626
    2727== Installation
    2828
    2929 1. '''Install''' globally with:
    30 {{{
    31   sudo easy_install https://trac-hacks.org/svn/stickyticketplugin/0.12
     30 {{{#!sh
     31$ sudo easy_install https://trac-hacks.org/svn/stickyticketplugin/0.12
    3232}}}
    33  1. '''Enable''' the plugin by updating TracIni file (..../trac.ini) as follows:
    34 {{{
    35   [components]
    36   tracstickyticket.* = enabled
     33 1. '''Enable''' the plugin by updating the TracIni file (`../conf/trac.ini`) as follows:
     34 {{{#!ini
     35[components]
     36tracstickyticket.* = enabled
    3737}}}
    38  1. '''Configure''' the plugin in its own configuration section, placed into 'trac.ini' file as follows:
    39 {{{
    40   [sticky-ticket]
    41   fields = owner,milestone,priority,description
    42   sticky-width = 65
    43   sticky-height = 50
     38 1. '''Configure''' the plugin in its own configuration section, placed into the `trac.ini` file as follows:
     39 {{{#!ini
     40[sticky-ticket]
     41fields = owner,milestone,priority,description
     42sticky-width = 65
     43sticky-height = 50
    4444}}}
    45  1. '''Restart''' web server on command line:
    46 {{{
    47 #!sh
    48     $ sudo /etc/init.d/apache2 restart
     45 1. '''Restart''' the web server on the command line:
     46 {{{#!sh
     47$ sudo /etc/init.d/apache2 restart
    4948}}}
    5049