[fossil-users] Horror story about git - Forever Alone

2014-09-25 Thread Gour
Morning, just read it today on Reddit: http://www.reddit.com/r/programming/comments/2hctgh/horror_story_about_git_forever_alone/ Article is at: http://thedailywtf.com/Articles/Forever-Alone.aspx What about Fossil in the same scenario? Sincerely, Gour -- From wherever the mind wanders due

Re: [fossil-users] gdiff/opendiff on os x: suppress unchanged files?

2014-09-25 Thread Tony Papadimitriou
MessageWell, it may not seem like a problem if you compare a single file that you know has no differences, but imagine you’re checking a specific directory with hundreds of files, only one or two of which have changed. Fossil will invoke WinDiff and have you look at every single file in that

Re: [fossil-users] gdiff/opendiff on os x: suppress unchanged files?

2014-09-25 Thread Dömötör Gulyás
Yes, that's exactly my use case, exacerbated by the fact that FileMerge/opendiff are real slow when used from fossil/git/bzr per file, taking on the order of seconds for every file it has to show, which doesn't happen when used from the GUI (radr #16400583 in bugreport.apple.com). Additionally

Re: [fossil-users] Horror story about git - Forever Alone

2014-09-25 Thread Martin S. Weber
On 2014-09-25 08:44:04, Gour wrote: Morning, just read it today on Reddit: http://www.reddit.com/r/programming/comments/2hctgh/horror_story_about_git_forever_alone/ Article is at: http://thedailywtf.com/Articles/Forever-Alone.aspx What about Fossil in the same scenario? What's

[fossil-users] Minor CAT command bug and LS command enhancement request

2014-09-25 Thread Tony Papadimitriou
Hi, First, a minor bug in the CAT command (on Win machine): Using a backslash in the path does not find the file, while using a forward slash finds it. Second, would it be possible to add the -R repo_file option to the LS command? It'd be nice to get the list of files without opening the

Re: [fossil-users] gdiff/opendiff on os x: suppress unchanged files?

2014-09-25 Thread dave
Yep, now I understand and agree with you all. I guess you could call it supporting globbing, or scoped gdiff. I don't know if the present case is because globbing on the command line is expanded by the shell to a mondo list of files before fossil.exe gets them, in which case perhaps it needs a

[fossil-users] case sensitivity fossil all list

2014-09-25 Thread Gaurav M. Bhandarkar
Platform windows. Run: 1) fossil open ../fOSSIL/FossilBook.fossil 2) fossil close 3) fossil open ../FOSSIL/FossilBook.fossil 4) fossil close (note the changed case of 'F' ) 5) fossil all list output of 5th command : C:/temp/session5/fe/FOSSIL/FossilBook.fossil

Re: [fossil-users] case sensitivity fossil all list

2014-09-25 Thread Richard Hipp
On Thu, Sep 25, 2014 at 10:56 AM, Gaurav M. Bhandarkar gaurav.a...@gmail.com wrote: Platform windows. Run: 1) fossil open ../fOSSIL/FossilBook.fossil 2) fossil close 3) fossil open ../FOSSIL/FossilBook.fossil 4) fossil close (note the changed case of 'F' ) 5) fossil all list output

[fossil-users] security notice for _potential_ problem with _some_ CGI-hosted repos

2014-09-25 Thread Stephan Beal
Hi, all, My mother just sent me this, bless her heart: http://www.wired.com/2014/09/internet-braces-crazy-shellshock-worm/ Management summary: CGI scripts which use bash (as opposed to /bin/sh, with the caveat that /bin/sh is an alias for bash on some systems) might _potentially_ be affected.

Re: [fossil-users] security notice for _potential_ problem with _some_ CGI-hosted repos

2014-09-25 Thread Stephan Beal
On Thu, Sep 25, 2014 at 6:43 PM, Stephan Beal sgb...@googlemail.com wrote: Some of this article is downright FUD[1], some of it is not _necessarily_ FUD. i pass it on primarily because all my CGI Fossil repos (currently) use /bin/bash instead of /bin/sh (will be resolved momentarily).

Re: [fossil-users] security notice for _potential_ problem with _some_ CGI-hosted repos

2014-09-25 Thread Richard Hipp
On Thu, Sep 25, 2014 at 12:46 PM, Stephan Beal sgb...@googlemail.com wrote: On Thu, Sep 25, 2014 at 6:43 PM, Stephan Beal sgb...@googlemail.com wrote: Some of this article is downright FUD[1], some of it is not _necessarily_ FUD. i pass it on primarily because all my CGI Fossil repos

Re: [fossil-users] security notice for _potential_ problem with _some_ CGI-hosted repos

2014-09-25 Thread Stephan Beal
On Thu, Sep 25, 2014 at 7:10 PM, Richard Hipp d...@sqlite.org wrote: The Fossil binaries on the www.fossil-scm.org server run inside a chroot jail that omits both /bin/bash and /bin/sh. In fact, that chroot jail has very little in it at all. None of the standard system utilities. No shared

Re: [fossil-users] security notice for _potential_ problem with _some_ CGI-hosted repos

2014-09-25 Thread Scott Robison
On Thu, Sep 25, 2014 at 10:43 AM, Stephan Beal sgb...@googlemail.com wrote: My mother just sent me this, bless her heart: http://www.wired.com/2014/09/internet-braces-crazy-shellshock-worm/ Management summary: CGI scripts which use bash (as opposed to /bin/sh, with the caveat that /bin/sh

Re: [fossil-users] gdiff/opendiff on os x: suppress unchanged files?

2014-09-25 Thread dave
FYI I did try on a lark: fossil changes %1 | grep EDITED | cut -c12- - | xargs fossil gdiff Which almost did it. Except for the fact that 'fossil changes' does not support specifying a directory (or whether to recurse, or not), so this was ultimately was the same as a 'fossil gdiff', haha, just