On Sat, 2010-12-04 at 03:49 -0800, RjOllos wrote:
> I was wondering if anyone knows of a plugin that displays the number
> of lines of code commited by each developer, graphed over time.  The
> repository is SVN. I couldn't find anything on the first pass.

TracStatsPlugin is very close to what you're looking for. If it doesn't
have the number of lines changed by author by date consider contributing
a patch that adds it. 

In case it helps, I've used the command below to get LOC changed by user
(not by date). 

svn ls -R | egrep -v -e "\/$" | xargs svn blame | awk '{print $2}' |
sort | uniq -c | sort -r

(source:
http://www.commandlinefu.com/commands/view/2787/prints-total-line-count-contribution-per-user-for-an-svn-repository)


-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.

Reply via email to