Changes between Version 2 and Version 3 of TracPlugins
- Timestamp:
- Oct 19, 2010, 6:58:29 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracPlugins
v2 v3 2 2 [[TracGuideToc]] 3 3 4 Since version 0.9, Trac supports [trac:PluginList plugins] that extend the built-in functionality. The plugin functionality is based on the [trac:TracDev/ComponentArchitecture component architecture].4 Trac is extensible with [trac:PluginList plugins] since version 0.9. The plugin functionality is based on the [trac:TracDev/ComponentArchitecture component architecture] with peculiarities described at [TracDev/PluginDevelopment plugin development] page. 5 5 6 Plugins can be either installed globally, in a shared plugins directory (see [TracIni#GlobalConfiguration Global Configuration]) or locally for specific TracEnvironment, in its `plugins` directory. 6 == Plugin discovery == 7 8 From the user point of view a Plugin is either standalone .py file or an .egg package. Trac looks for Plugins in a global shared plugins directory (see [TracIni#GlobalConfiguration Global Configuration]), or in a local TracEnvironment, in its `plugins` directory. 7 9 Except for the later case, the components defined in a plugin should be explicitly enabled in the [[TracIni#components-section| [components] ]] section of the trac.ini file. 8 10 9 == Requirements ==11 == Requirements for Trac eggs == 10 12 11 13 To use egg based plugins in Trac, you need to have [http://peak.telecommunity.com/DevCenter/setuptools setuptools] (version 0.6) installed. … … 60 62 If 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`: 61 63 {{{ 62 easy_install --always-unzip TracSpamFilter-0. 2.1dev_r5943-py2.4.egg64 easy_install --always-unzip TracSpamFilter-0.4.1_r10106-py2.6.egg 63 65 }}} 64 66 You should end up with a directory having the same name as the zipped egg (complete with `.egg` extension) and containing its uncompressed contents. … … 70 72 `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: 71 73 {{{ 72 easy_install http://svn.edgewall.com/repos/trac/plugins/0.1 1/spam-filter74 easy_install http://svn.edgewall.com/repos/trac/plugins/0.12/spam-filter-captcha 73 75 }}} 74 76