Edgewall Software

Changes between Version 10 and Version 11 of TracPlugins


Ignore:
Timestamp:
Oct 13, 2005, 12:22:57 PM (19 years ago)
Author:
Christopher Lenz
Comment:

Note about enabling globally installed plugins

Legend:

Unmodified
Added
Removed
Modified
  • TracPlugins

    v10 v11  
    3535Alternatively, you can just drop the `.egg` file in the Python `site-packages` directory.
    3636
     37Unlike plugins installed per-environment, you'll have to explicitly enable globally installed plugins via [wiki:TracIni trac.ini]. This is done in the `[components]` section of the configuration file, for example:
     38{{{
     39[components]
     40webadmin.* = enabled
     41}}}
     42
     43The name of the option is the Python package of the plugin. This should be specified in the documentation of the Plugin, but can also be easily find out by looking at the source (look for a top-level directory that contains a file named `__init__.py`.)
     44
    3745== Setting up the Plugin Cache ==
    3846