Changes between Version 8 and Version 9 of TracPlugins


Ignore:
Timestamp:
Jul 11, 2011, 11:36:41 AM (13 years ago)
Author:
trac
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracPlugins

    v8 v9  
    66== Plugin discovery ==
    77
    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.
    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.
     8From 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]) and in `plugins` directory of local TracEnvironment. Components defined in globally installed plugins should be explicitly enabled in the [[TracIni#components-section| [components] ]] section of the trac.ini file.
    109
    1110== Requirements for Trac eggs  ==
     
    2019If the `ez_setup.py` script fails to install the setuptools release, you can download it from [http://www.python.org/pypi/setuptools PyPI] and install it manually.
    2120
    22 Plugins can also consist of a single `.py` file dropped into either the environment or the shared plugins directory.
     21Plugins can also consist of a single `.py` file dropped directly into the root of environment's or into shared `plugins` directory.
    2322
    2423== Installing a Trac Plugin ==