Re: [fossil-users] List of checkins

2012-05-27 Thread org.fossil-scm.fossil-users
On Sat, 26 May 2012 18:02:41 -0500 Brian Smith br...@linuxfood.net wrote: Another way, just to add to the list: echo -e .mode csv\nselect uuid from event, blob where event.objid=blob.rid and type='ci' and mtime julianday('2012-05-27'); | fsl sqlite -B On Sat, May 26, 2012 at 5:51

Re: [fossil-users] List of checkins

2012-05-27 Thread Stephan Beal
On Sun, May 27, 2012 at 12:00 PM, org.fossil-scm.fossil-us...@io7m.comwrote: I've settled on the SQL solution above. The version of fossil I'm using doesn't have JSON enabled. I did originally attempt an SQL solution but after having looked at the documentation on the site, I didn't think

[fossil-users] List of checkins

2012-05-26 Thread org.fossil-scm.fossil-users
Hello. Is it possible to get a more raw list than 'fossil timeline before 2012-05-27 -t ci' out of the command line tool? Would prefer a straight list of newline-separated hash values. ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] List of checkins

2012-05-26 Thread Stephan Beal
On Sat, May 26, 2012 at 11:34 PM, org.fossil-scm.fossil-us...@io7m.comwrote: Is it possible to get a more raw list than 'fossil timeline before 2012-05-27 -t ci' out of the command line tool? Would prefer a straight list of newline-separated hash values. This is a bit hacky, but...

Re: [fossil-users] List of checkins

2012-05-26 Thread Stephan Beal
On Sun, May 27, 2012 at 12:49 AM, Stephan Beal sgb...@googlemail.comwrote: [stephan@host:~/cvs/fossil/fossil]$ f json timeline checkin -b 2012-05-27 -I 1 | awk -F : '/uuid:/{print $2}' | cut -d'' -f2 Slightly more succinct, but should work the same: f json timeline checkin -b 2012-05-27 -I

Re: [fossil-users] List of checkins

2012-05-26 Thread Brian Smith
Another way, just to add to the list: echo -e .mode csv\nselect uuid from event, blob where event.objid=blob.rid and type='ci' and mtime julianday('2012-05-27'); | fsl sqlite -B On Sat, May 26, 2012 at 5:51 PM, Stephan Beal sgb...@googlemail.com wrote: On Sun, May 27, 2012 at 12:49 AM,