Edgewall Software

Changes between Version 42 and Version 43 of TracPlugins


Ignore:
Timestamp:
Dec 7, 2007, 8:53:26 PM (16 years ago)
Author:
Christian Boos
Comment:

replaced webadmin by spamfilter in the example

Legend:

Unmodified
Added
Removed
Modified
  • TracPlugins

    v42 v43  
    4444==== With an .egg file ====
    4545
    46 Some plugins (such as [http://trac.edgewall.org/wiki/WebAdmin WebAdmin]) are downloadable as a `.egg` file which can be installed with the `easy_install` program:
     46Some plugins (such as [http://trac.edgewall.org/wiki/SpamFilter SpamFilter]) are downloadable as a `.egg` file which can be installed with the `easy_install` program:
    4747{{{
    48 easy_install TracWebAdmin-0.1.1dev_r2765-py2.3.egg
     48easy_install TracSpamFilter
    4949}}}
    5050
     
    5353If Trac reports permission errors after installing a zipped egg and you would rather not bother providing a 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`:
    5454{{{
    55 easy_install --always-unzip TracWebAdmin-0.1.1dev_r2765-py2.3.egg
     55easy_install --always-unzip TracSpamFilter-0.2.1dev_r5943-py2.4.egg
    5656}}}
    5757You should end up with a directory having the same name as the zipped egg (complete with `.egg` extension) and containing its uncompressed contents.
     
    6363`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:
    6464{{{
    65 easy_install http://svn.edgewall.com/repos/trac/sandbox/webadmin
     65easy_install http://svn.edgewall.com/repos/trac/sandbox/spam-filter
    6666}}}
    6767
     
    7070{{{
    7171[components]
    72 webadmin.* = enabled
     72tracspamfilter.* = enabled
    7373}}}
    7474