Changes between Version 8 and Version 9 of TracPlugins


Ignore:
Timestamp:
Dec 21, 2016, 10:38:27 AM (7 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracPlugins

    v8 v9  
    5151==== With an .egg file
    5252
    53 Some plugins, such as [trac:SpamFilter SpamFilter], are downloadable as an `.egg` file that can be installed with `easy_install` or `pip`:
    54 {{{#!sh
    55 $ easy_install TracSpamFilter
    56 $ pip install TracSpamFilter
     53Some plugins, such as [https://trac-hacks.org/wiki/TagsPlugin TracTags], are downloadable as an `.egg` file that can be installed with `easy_install` or `pip`:
     54{{{#!sh
     55$ easy_install TracTags
     56$ pip install TracTags
    5757}}}
    5858
     
    6363If Trac reports permission errors after installing a zipped egg, and you would rather not bother providing an egg cache directory writable by the web server, you can get around it by simply unzipping the egg. Just pass `--always-unzip` to `easy_install`:
    6464{{{#!sh
    65 $ easy_install --always-unzip TracSpamFilter-0.4.1_r10106-py2.6.egg
     65$ easy_install --always-unzip TracTags
    6666}}}
    6767You should end up with a directory having the same name as the zipped egg, complete with `.egg` extension, and containing its uncompressed contents.
     
    7373`easy_install` makes installing from source a snap. Just give it the URL to either a Subversion repository or a tarball/zip of the source:
    7474{{{#!sh
    75 $ easy_install https://svn.edgewall.org/repos/trac/plugins/1.0/spam-filter
     75$ easy_install https://trac-hacks.org/svn/tagsplugin/trunk
    7676}}}
    7777
     
    8383{{{#!ini
    8484[components]
    85 tracspamfilter.* = enabled
     85tractags.* = enabled
    8686}}}
    8787