Re: [fossil-users] Signing

2012-05-26 Thread Gé Weijers
On Fri, May 25, 2012 at 10:59 AM, Ron Wilson ronw.m...@gmail.com wrote: On top of that, could support signing one or more of the existing signatures at the time of signing. When I sign a commit, it can mean multiple things: 1) I wrote this (authentication) 2) I approve this (authorization) In

Re: [fossil-users] Signing

2012-05-26 Thread Lluís Batlle i Rossell
On Sat, May 26, 2012 at 11:30:01AM -0700, Gé Weijers wrote: On Fri, May 25, 2012 at 10:59 AM, Ron Wilson ronw.m...@gmail.com wrote: On top of that, could support signing one or more of the existing signatures at the time of signing. When I sign a commit, it can mean multiple things: 1) I

[fossil-users] Clarification of not within an open checkout error message

2012-05-26 Thread Noam Postavsky
When I was just starting with fossil I hadn't grasped the distinction between the repository and a checkout so this error message was confusing to me. I read it as you can't do this operation within an open checkout, rather than the intended you are not currently within an open checkout. I think

Re: [fossil-users] Clarification of not within an open checkout error message

2012-05-26 Thread Stephan Beal
On Sat, May 26, 2012 at 10:53 PM, Noam Postavsky npost...@users.sourceforge.net wrote: I think the message should be amended to something like current directory is not within an open checkout Sounds like a good idea... http://www.fossil-scm.org/index.html/info/e130c2e781 :) -- -

[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,