Changes between Version 1 and Version 2 of TracTicketChangelogPlugin


Ignore:
Timestamp:
Jul 2, 2010, 1:54:33 AM (14 years ago)
Author:
Richard Liao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketChangelogPlugin

    v1 v2  
    2323You can check out TracTicketChangelogPlugin from [http://trac-hacks.org/svn/tracticketchangelogplugin here] using Subversion, or [source:tracticketchangelogplugin browse the source] with Trac.
    2424
     25== Install ==
     26 You can install this software as normal Trac plugin.
     27
     28 1. Uninstall TracTicketChangelogPlugin if you have installed before.
     29
     30 2. Change to the directory containning setup.py.
     31  * (Optional): If you are using Trac 0.12 with i18n, you should compile language files here:
     32 {{{
     33python setup.py compile_catalog -f
     34}}}
     35
     36 3. If you want to install this plugin globally, that will install this plugin to the python path:
     37  * python setup.py install
     38
     39 4. If you want to install this plugin to trac instance only:
     40  * python setup.py bdist_egg
     41  * copy the generated egg file to the trac instance's plugin directory
     42  {{{
     43cp dist/*.egg /srv/trac/env/plugins
     44}}}
     45
     46 5. Config trac.ini:
     47  {{{
     48[components]
     49ticketlog.* = enabled
     50
     51[ticketlog]
     52log_pattern = \s*#%s+\s+.*
     53
     54}}}
     55
     56== Prerequisite ==
     57 * simplejson
     58
     59=== Usage ===
     60 * make sure you add TICKETLOG_VIEW permission to users
     61
    2562== Example ==
    2663