Trac Web Administration
Installation
Actually, you have two options:
1. Install the plugin, making it available to all Trac environments:
$ python setup.py install
You don't need to copy the egg into the plugins directory in this
case.
Trac automatically detects plugins somewhere on the Python path.
2. Build the egg, and make it available to one or more environments:
$ python setup.py dist $ cp dist/*.egg /path/to/tracenv/plugins
In this case, you don't need the install step.
Note: I had to restart Apache to get the plugin working. I suspect FastCGI was caching the Python scripts.
See Also: TracWebAdminDevelopment and the patches on that page
