kostja
kostja

Reputation: 61568

is there a class history visualization tool for SVN

I know of codeswarm and gource, but AFAIK they visualize the repository on a class level.
What i would like to see animated is the history of a single file (or a package) - LOC count is essential, LOComment, dependencies, method count a.s.o. would sure be nice too :)

Upvotes: 3

Views: 320

Answers (2)

pablo
pablo

Reputation: 6402

Not an animation either, but probably a very useful tool to find history of a method: http://codicesoftware.blogspot.com/2011/01/method-history-for-subversion-is-here.html

Upvotes: 0

eichin
eichin

Reputation: 186

It isn't animation, but if you want to see a single file's history "all at once" Ned Batchelder's svn blameall is a useful tool, and probably gets the same sort of thing across in a static presentation. (It would probably be a good starting point, if you have any idea what you'd want the animation to look like - blameall takes care of the svn mechanics well enough, and is written in Python.)

Upvotes: 2

Related Questions