On Sun, May 05, 2013 at 03:27:52PM +0200, Stephan Beal wrote:
>    On Sun, May 5, 2013 at 3:00 PM, Stephan Beal <sgb...@googlemail.com>
>    wrote:
> 
>      Currently there is no UI for selecting the user name. It would be simple
>      to add a drop-down list to select this but first i'd like to confirm
>      that publishing the user list this way (on a public page) won't upset
>      anyone's sense of propriety.
> 
>    There's a by-user report now[1] and the selected user name carries over to
>    the by-month/year reports. If the publishing of the user list this way is
>    too disturbing let me know and i can remove it or limit it to a certain
>    access level.
>    [1] = no surprise here: user drh is far, far in the lead ;)

Or you could have a user statistic view where you could see number of
checkins per user for the entire life of the project.. (or optionally
for a certain period of time.) 

CGit have this, I found it interesting, it's another kind of statistic..

Using that query...

        SELECT user AS "Users", count() AS "Number of Checkins" 
                FROM event 
                WHERE type = "ci" 
                GROUP BY user 
                ORDER BY count() DESC;

-- 
Martin G.
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to