[fossil-users] some confusion with fossil users

2015-03-25 Thread Ben
hi, Thank you for fossil! It is very easy and confortable to use, but there is something I struggle with. As soon you work with a remote repo that you are try to sync things get a little more complicated. A made several attemps to sync a repo.fossil on a remote server with ssh and it never worked.

Re: [fossil-users] some confusion with fossil users

2015-03-25 Thread Stephan Beal
On Wed, Mar 25, 2015 at 3:39 PM, Ben wrote: >https://toi...@chiselapp.com/user/toiboi/repository/robot >robot.fossil > ... > But what exactly *is* the 'toiboi' user? It is not on the user list: > Something chiselapp-specific, apparently independent of the fossil user's name (i wo

[fossil-users] fossil diff -w!

2015-03-25 Thread Warren Young
I just found another reason to be happy I switched from Subversion. Many years ago, I constructed this horrid alias to get whitespace-insensitive diffs out of svn: alias sdw='svn diff --diff-cmd /usr/bin/diff --extensions -buwB’ This was necessary because at the time, svn diff only had flags

Re: [fossil-users] fossil diff -w!

2015-03-25 Thread bch
I presume you're using the "call-out" or "hook" feature of: $ fossil set diff-command "diff -bu" so that it's permanently set ? -bch On 3/25/15, Warren Young wrote: > I just found another reason to be happy I switched from Subversion. Many > years ago, I constructed this horrid alias to get

Re: [fossil-users] fossil diff -w!

2015-03-25 Thread Warren Young
On Mar 25, 2015, at 11:38 AM, bch wrote: > > I presume you're using the "call-out" or "hook" feature of: > > $ fossil set diff-command "diff -bu" > > so that it's permanently set ? No. Normally I *do* want to know about whitespace differences, in case something I’ve done has created pointles

[fossil-users] "tags" shown in "fossil info"

2015-03-25 Thread Ron W
When I do "fossil info" in a checkout, I get: tags: ts11 When I look at the same commit in the "/info" web page, I get: branch=ts11 sym-ts11 I also tried "fossil tags list --raw", which shows me all of the tags. But I want only the ones for the current checkout, so I then tried "fossi

[fossil-users] Fossil with Tcl support does not work with nginx/xinetd

2015-03-25 Thread Piotr Orzechowski
Hi, I have a Fossil setup running on Debian 7.8 64-bit inside OpenVZ container. I use nginx and xinetd to host my repositories. When I build Fossil from source without Tcl support - everything works fine. But when I build Fossil --with-tcl (Tcl 8.5), I can't display any repository through browser.

Re: [fossil-users] Fossil with Tcl support does not work withnginx/xinetd

2015-03-25 Thread Joe Mistachkin
Piotr Orzechowski wrote: > > So the question is, does Tcl support require some special steps or > environment setup to work? Is there any other thing I should check or > look at? > If Fossil is linked to a Tcl shared library, is it accessible from the web server process? In some environments (

Re: [fossil-users] Fossil with Tcl support does not work with nginx/xinetd

2015-03-25 Thread Stephan Beal
On Wed, Mar 25, 2015 at 7:53 PM, Piotr Orzechowski wrote: > I couldn't find any other info than nginx complaining about wrong HTTP > headers That is almost always caused by a segfault/crash in the client app. Probably (i'm guessing) you have linked to a DLL which isn't available to the www use

[fossil-users] Minor bug that causes some confusion

2015-03-25 Thread tonyp
This is on a Windows machine so, filenames are case insensitive. To reproduce (f = fossil): f new xxx.fossil f o xxx.fossil echo Hello > hello f add hello f cha f ext f rev Hello f cha f ext Problem 1: “f rev Hello” does not revert the ADD (note: Hello is given with a different case from the pr

Re: [fossil-users] Fossil with Tcl support does not work with nginx/xinetd

2015-03-25 Thread Piotr Orzechowski
It looks like it's problem with xinetd. Do you know how to expose shared library to Fossil maybe? LD_LIBRARY_PATH is empty on Debian, and setting it through env in xinetd does not help. -- Pozdrawiam / With best regards, Orzech signature.asc Description: OpenPGP digital signature ___

Re: [fossil-users] Fossil with Tcl support does not work with nginx/xinetd

2015-03-25 Thread Piotr Orzechowski
Finally I got it! I had to add env += FOSSIL_HOME= line to /etc/xinetd.d/fossil configuration file. Thanks for your help! Pozdrawiam / With best regards, Orzech signature.asc Description: OpenPGP digital signature ___ fossil-users mailing list fos

Re: [fossil-users] some confusion with fossil users

2015-03-25 Thread Andy Bradford
Thus said Ben on Wed, 25 Mar 2015 15:39:12 +0100: >https://toi...@chiselapp.com/user/toiboi/repository/robot If you login to the UI on this URL, what Fossil users do you have there? Iassume at least one of them will be toiboi. This user is the sync user. > But what exactly *is* the 'toib

Re: [fossil-users] some confusion with fossil users

2015-03-25 Thread Andy Bradford
Thus said Stephan Beal on Wed, 25 Mar 2015 15:42:26 +0100: > Something chiselapp-specific, apparently independent of the fossil > user's name (i would have expected it to set up "toiboi" as the fossil > user, but i have never used chiselapp). I believe toiboi is just the sync user that is

Re: [fossil-users] Minor bug that causes some confusion

2015-03-25 Thread David Mason
Problem 2 is similar to "fossil add filename" saying "ADDED: filename" even if it was already known. This confuses novice users. On 25 March 2015 at 16:44, wrote: > This is on a Windows machine so, filenames are case insensitive. > > To reproduce (f = fossil): > > f new xxx.fossil > f o xxx.f