Changes between Version 11 and Version 12 of TracReportInplaceEditPlugin


Ignore:
Timestamp:
Nov 9, 2015, 12:38:46 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracReportInplaceEditPlugin

    v11 v12  
    1515
    1616If you have any issues, create a
    17 [http://trac-hacks.org/newticket?component=TracReportInplaceEditPlugin&owner=richard new ticket].
     17[/newticket?component=TracReportInplaceEditPlugin new ticket].
    1818
    1919[[TicketQuery(component=TracReportInplaceEditPlugin&group=type,format=progress)]]
     
    2121== Download
    2222
    23 Download the zipped source from [download:tracreportinplaceeditplugin here].
     23Download the zipped source from [export:tracreportinplaceeditplugin here].
    2424
    2525== Source
    2626
    27 You can check out TracReportInplaceEditPlugin from [http://trac-hacks.org/svn/tracreportinplaceeditplugin here] using Subversion, or [source:tracreportinplaceeditplugin browse the source] with Trac.
    28 
    29 == Example
    30 
    31 The plugin's usage is very intuitive: clicking any item in a report will bring up an editable control, if you have the appropriate privilege:
    32 
    33 [[Image(ripe.PNG)]]
     27You can check out TracReportInplaceEditPlugin from [/svn/tracreportinplaceeditplugin here] using Subversion, or [source:tracreportinplaceeditplugin browse the source] with Trac.
    3428
    3529== Installation
     
    3933 1. Uninstall TracReportInplaceEditPlugin if you have installed it before.
    4034 1. Change to the directory containing setup.py:
    41 {{{#!sh
     35 {{{#!sh
    4236python setup.py compile_catalog -f
    4337}}}
    4438 1. If you want to install this plugin globally, this will install this plugin to the python path:
    45 {{{#!sh
     39 {{{#!sh
    4640python setup.py install
    4741}}}
    4842 1. If you want to install this plugin to the Trac instance only:
    4943  * run setup.py:
    50 {{{#!sh
     44 {{{#!sh
    5145python setup.py bdist_egg
    5246}}}
    5347  * copy the generated egg file to the Trac instance's plugin directory:
    54 {{{#!sh
     48 {{{#!sh
    5549cp dist/*.egg /srv/trac/env/plugins
    5650}}}
    5751 1. Add the following to the components section of `trac.ini`:
    58 {{{#!ini
     52 {{{#!ini
    5953[components]
    6054ripe.* = enabled
    6155}}}
    6256 1. Grant users the `RIPE_EDIT` privilege.
     57
     58== Example
     59
     60The plugin's usage is very intuitive: clicking any item in a report will bring up an editable control, if you have the appropriate privilege:
     61
     62[[Image(ripe.PNG)]]
    6363
    6464== Recent Changes