vote up 2 vote down star
3

I have access to a very large code base stored in a subversion repository. I would like to be able to perform Google type searched on the code base. I have done this before when I have access to the server by creating a network share and using Google desktop.

I currently do not have access to this subversion server box.

Any Ideas?

Some more info

  • The code base is company wide and large
  • Don't want to download the entire code base for the entire business on my laptop
  • My goal understand what code is available inside the company
  • The code changes often

    Wondering if there are any tool that can search remote svn repositories?

flag

6 Answers

vote up 3 vote down check

FishEye is a pretty well-known tool in this space.

I have also seen people use a search engine indexers (e.g. Lucene) to crawl the repo. Set this up with a post-commit hook to trigger a re-index when the content changes.

As long as the repo can be accessed via http, it can be crawled by most web content indexers. The only problem is that it will only index the HEAD, not older revs. For that, you need an indexing tool that understands the revision structure (that's where FishEye comes in).

link|flag
If you don't want to wrap Lucene yourself, consider OpenGrok. I trigger OpenGrok to reindex on Subversion commits. Always have an up-to-date-fast-context-sensitive search engine. – basszero Mar 4 '09 at 13:44
vote up 2 vote down

You could try Supose. It is a subversion indexing and query application in Java. Best of it all, is that it indexes not only the trunk or current snapshots but all revisions.

http://www.supose.org/wiki/supose

link|flag
vote up 1 vote down

Why not just check it out to a local drive and use Google Desktop?

link|flag
That is one strong option, but I wonder if there are any others tools that can index and search a remote repo. Some of my constraints are - The code base is large - Don't need all of the code for my project - My goal understand the code not own it - the code is company wide and changes often – Theo Briscoe Jan 29 '09 at 20:49
vote up 0 vote down

It seems there are some tools, but they do not see very mature yet. One I have found some time ago is VoilaSVN - search is only a part of it, and its installation does not seem to be ot very straightforward.

link|flag
vote up 0 vote down

How about using Trac. It has a decent GUI and is open source.

link|flag
vote up 0 vote down

Here's the repo search plugin for trac:

http://trac-hacks.org/wiki/RepoSearchPlugin

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.