Re: [fossil-users] Longest gap between check-ins

2017-02-21 Thread Andy Bradford
Thus said Rolf Ade on Wed, 22 Feb 2017 00:16:40 +0100: > SELECT count(*) FROM event > WHERE type = 'ci'; > > returns 10324. But after a > > fossil ui > > http://localhost:8080/timeline?n=11000&y=ci > > shows only 10285 check-ins. Try: http://localhost:8080/timeline?n=11000&y=ci&unhide And a

Re: [fossil-users] Longest gap between check-ins

2017-02-21 Thread Rolf Ade
Richard Hipp writes: > For a report, I wanted to know the longest interval between to > check-ins (not necessarily on the same branch) for a project. In > other words, I wanted to know the longest period of inactivity for a > project. Turns out this is relatively easy to do with Fossil and som

Re: [fossil-users] Longest gap between check-ins

2017-02-20 Thread Andy Bradford
Thus said Richard Hipp on Mon, 20 Feb 2017 10:39:09 -0500: > Now remind me again, how would you do this in Git? ;-) To get these kinds of reports I import my Git repositories into Fossil. :-) Andy -- TAI64 timestamp: 400058ab1b40 ___ fossil-use

Re: [fossil-users] Longest gap between check-ins

2017-02-20 Thread Javier Guerra Giraldez
On 20 February 2017 at 15:39, Richard Hipp wrote: > I don't know if the above has any practical use for most people (or I > would make it a new URI on the Fossil webserver) but it seems like fun > and so I thought I would share. sure!, it serves to document sleep patterns without having to strap

[fossil-users] Longest gap between check-ins

2017-02-20 Thread Richard Hipp
For a report, I wanted to know the longest interval between to check-ins (not necessarily on the same branch) for a project. In other words, I wanted to know the longest period of inactivity for a project. Turns out this is relatively easy to do with Fossil and some SQL. This message is just to