Changes between Version 1 and Version 2 of TracAutoCompletePlugin


Ignore:
Timestamp:
May 4, 2010, 1:10:37 PM (14 years ago)
Author:
Richard Liao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracAutoCompletePlugin

    v1 v2  
    2323You can check out TracAutoCompletePlugin from [http://trac-hacks.org/svn/tracautocompleteplugin here] using Subversion, or [source:tracautocompleteplugin browse the source] with Trac.
    2424
    25 == Example ==
     25== Install ==
     26 You can install this software as normal Trac plugin.
    2627
    27 The conf/username_list.txt looks like:
    28 {{{
     28 1. Uninstall TracAutoCompletePlugin if you have installed before.
     29
     30 2. Change to the directory containning setup.py.
     31
     32 3. If you want to install this plugin globally, that will install this plugin to the python path:
     33  * python setup.py install
     34
     35 4. If you want to install this plugin to trac instance only:
     36  * python setup.py bdist_egg
     37  * copy the generated egg file to the trac instance's plugin directory
     38  {{{
     39cp dist/*.egg /srv/trac/env/plugins
     40}}}
     41
     42 5. Config trac.ini:
     43  {{{
     44[components]
     45autocomplete.* = enabled
     46}}}
     47
     48 6. Create and edit file /srv/trac/env/conf/username_list.txt. '''Please make sure this file encoded with UTF-8'''.
     49 {{{
    2950userfoo [User Foo]
    3051userbar [User Bar]
    31 }}}
     52}}}
     53
     54
     55== Example ==
     56Screenshots:
     57
    3258
    3359== Recent Changes ==