Edgewall Software

Changes between Version 2 and Version 3 of TracPlugins


Ignore:
Timestamp:
Sep 9, 2005, 3:10:36 PM (19 years ago)
Author:
Matthew Good
Comment:

add section on installing plugins globally

Legend:

Unmodified
Added
Removed
Modified
  • TracPlugins

    v2 v3  
    1414== Installing a Trac Plugin ==
    1515
     16=== For a Single Project ===
     17
    1618Plugins are packaged as [http://peak.telecommunity.com/DevCenter/PythonEggs Python eggs]. That means they are ZIP archives with the file extension `.egg`. If you have downloaded a source distribution of a plugin, you can run:
    1719{{{
    18 $ setup.py bdist_egg
     20$ python setup.py bdist_egg
    1921}}}
    2022to build the `.egg` file.
    2123
    2224Once 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.
     25
     26=== For All Projects ===
     27
     28PLugins that you want to use in all your projects (such as [http://projects.edgewall.com/trac/wiki/WebAdmin WebAdmin]) can be installed globally by running:
     29{{{
     30$ python setup.py install
     31}}}
    2332
    2433== Setting up the Plugin Cache ==