Changes between Version 5 and Version 6 of TracPlugins
- Timestamp:
- Jan 5, 2017, 12:12:35 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracPlugins
v5 v6 51 51 ==== With an .egg file 52 52 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 Trac SpamFilter56 $ pip install Trac SpamFilter53 Some 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 57 57 }}} 58 58 … … 63 63 If 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`: 64 64 {{{#!sh 65 $ easy_install --always-unzip Trac SpamFilter-0.4.1_r10106-py2.6.egg65 $ easy_install --always-unzip TracTags 66 66 }}} 67 67 You should end up with a directory having the same name as the zipped egg, complete with `.egg` extension, and containing its uncompressed contents. … … 73 73 `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: 74 74 {{{#!sh 75 $ easy_install https:// svn.edgewall.org/repos/trac/plugins/1.0/spam-filter75 $ easy_install https://trac-hacks.org/svn/tagsplugin/trunk 76 76 }}} 77 77 … … 83 83 {{{#!ini 84 84 [components] 85 trac spamfilter.* = enabled85 tractags.* = enabled 86 86 }}} 87 87