Contents
Full text search in multiple repositories
Description
This plugin implements full text search on source code across multiple repositories in Trac 0.12+. It is derived from the RepoSearchPlugin.
Key features:
- It works on multiple repositories, and any repository type supported by Trac.
- Pluggable search backends.
- Default search backend caches source text in the Trac database.
Usage note: to search for a string containing double quotes, enclose the whole string in single quotes, for example 'draft="true"'
.
Bugs/Feature Requests
Existing bugs and feature requests for MultiRepoSearchPlugin are here.
If you have any issues, create a new ticket.
defect |
7 / 12 |
||
---|---|---|---|
enhancement |
2 / 4 |
||
task |
1 / 1 |
Download
Download the zipped source from here.
Source
You can clone MultiRepoSearchPlugin from here using Git, or browse the source with Github.
Installation
To install:
pip install -r requirements.txt python setup.py develop
Alternatively, to install using easy_install on Ubuntu 11.10 Server:
sudo easy_install https://trac-hacks.org/svn/tracsqlhelperscript/0.12/ sudo easy_install https://github.com/trac-hacks/trac-MultiRepoSearchPlugin/tarball/0.2.1
Add to your conf/trac.ini
file:
[components] multireposearch.* = enabled
Upgrade your Trac environment:
trac-admin path/to/env upgrade
Prepare all available repositories with an initial indexing:
trac-admin path/to/env multireposearch reindex_all
Users with REPO_SEARCH
and/or TRAC_ADMIN
permissions will now be able to perform text searches of repository contents through the Trac search UI.
Configuration
As long as you have your Trac post-commit or post-receive hooks properly configured, the source will remain up-to-date.
Otherwise, to manually reindex a single repository, you can run:
trac-admin path/to/env multireposearch reindex repo-name
Where repo-name is the name assigned to your repository in Trac.