Changes between Version 4 and Version 5 of TracPlugins
- Timestamp:
- Apr 13, 2010, 3:53:03 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracPlugins
v4 v5 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]. Plugins can be installed globally (in this case they should be explicitly enabled in [TracIni#components-section trac.ini]) or locally for specific TracEnvironment.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]. 5 5 6 6 == Requirements == … … 32 32 Then you will have a *.egg file. Examine the output of running python to find where this was created. 33 33 34 Once you have the plugin archive, you need to copy it into the `plugins` directory of the [wiki:TracEnvironment project environment]. Also, make sure that the web server has sufficient permissions to read the plugin egg. Then, restart the web server (this requirement was not previously mentioned in this document, but in my tests it began working only after I did so).34 Once you have the plugin archive, you need to copy it into the `plugins` directory of the [wiki:TracEnvironment project environment]. Also, make sure that the web server has sufficient permissions to read the plugin egg. 35 35 36 36 To uninstall a plugin installed this way, remove the egg from `plugins` directory and restart web server. … … 67 67 `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: 68 68 {{{ 69 easy_install http://svn.edgewall.com/repos/trac/ plugins/0.11/spam-filter69 easy_install http://svn.edgewall.com/repos/trac/sandbox/spam-filter 70 70 }}} 71 71