Changes between Version 1 and Version 2 of TracReportInplaceEditPlugin


Ignore:
Timestamp:
Sep 9, 2010, 2:30:23 AM (14 years ago)
Author:
Richard Liao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracReportInplaceEditPlugin

    v1 v2  
    2727The usage is very intuitive, click any item in a report will bring up an editable control if you have appropriate privilege.
    2828
     29[[Image(ripe.png)]]
     30
     31== Install ==
     32 You can install this software as normal Trac plugin.
     33
     34 1. Uninstall TracReportInplaceEditPlugin if you have installed before.
     35
     36 2. Change to the directory containning setup.py.
     37 {{{
     38python setup.py compile_catalog -f
     39}}}
     40
     41 3. If you want to install this plugin globally, that will install this plugin to the python path:
     42  * python setup.py install
     43
     44 4. If you want to install this plugin to trac instance only:
     45  * python setup.py bdist_egg
     46  * copy the generated egg file to the trac instance's plugin directory
     47  {{{
     48cp dist/*.egg /srv/trac/env/plugins
     49}}}
     50
     51 5. Config trac.ini:
     52  {{{
     53[components]
     54ripe.* = enabled
     55}}}
     56
     57 6. Grant users RIPE_EDIT privilege
     58
     59== Prerequisite ==
     60 * simplejson
     61
    2962== Recent Changes ==
    3063