[fossil-users] SSL support?

2010-11-03 Thread Michal Suchanek
Helllo I tried building fossil trunk (with a few patches) and when I try to commit fossil says: Autosync: https://another repo URL fossil: HTTPS: Fossil has been compiled without SSL support I clearly see gcc -g -Os -Wall -DFOSSIL_ENABLE_SSL -I. -I./src -o ./obj/http.o -c http_.c Is SSL no

Re: [fossil-users] SSL support?

2010-11-03 Thread Richard Hipp
On Wed, Nov 3, 2010 at 5:20 AM, Michal Suchanek hramr...@centrum.cz wrote: Helllo I tried building fossil trunk (with a few patches) and when I try to commit fossil says: Autosync: https://another repo URL fossil: HTTPS: Fossil has been compiled without SSL support I clearly see gcc

[fossil-users] Questions about Fossil.

2010-11-03 Thread Riza Dindir
Hello, I have been using CVS and WinCVS for a while now, and stumbled upon fossil. I find fossil very interesting, and usefull because it provides tickets, events, and a wiki with it, in a standalone single package. Outstanding in my opinion. I have a question regarding fossil and its usage. I

Re: [fossil-users] fossil local server

2010-11-03 Thread Richard Hipp
On Wed, Nov 3, 2010 at 8:34 AM, Riza Dindir riza.din...@gmail.com wrote: Hello, I want to run the fossil server path/to/repo command. The path/to/repo has 3 fossil files (with .fossil extensions). When I start the above command and point the browser to the

Re: [fossil-users] Questions about Fossil.

2010-11-03 Thread Richard Hipp
On Wed, Nov 3, 2010 at 8:20 AM, Riza Dindir riza.din...@gmail.com wrote: Hello, I have been using CVS and WinCVS for a while now, and stumbled upon fossil. I find fossil very interesting, and usefull because it provides tickets, events, and a wiki with it, in a standalone single package.

Re: [fossil-users] Multiple fossil projects: sharing configuration

2010-11-03 Thread Laurens Van Houtven
Richard, Thank you very much for your reply. I'm interested in REMOTE_USER: what Fossil docs should I be reading? How does this work with cloned repositories? (I assume these users do exist when I clone a repository?) thanks lvh ___ fossil-users

Re: [fossil-users] fossil local server

2010-11-03 Thread Riza Dindir
On Wed, 03 Nov, 2010 06:54:20 -0700, Laurens Van Houtven wrote Can you try it anyway in Firefox? I had a very similar redirect loop problem with Chrome nightlies in a different app that magically went away with FF. lvh I have tried that, but has the same error, that refers to recursive behavior

Re: [fossil-users] Question about global settings

2010-11-03 Thread James Turner
So looking through the source code, I can see why the autosync global doesn't work in my case. It would seem on repository creation, fossil checks to see if the global autosync setting is set, if it is, it sets the local config to whatever the global was. When a db_get is ran it checks the local

Re: [fossil-users] Question about global settings

2010-11-03 Thread altufaltu
if it is, it sets the local config to whatever the global was. Can you check if this is true? I'm using latest version of fossil, which doesn't exhibit this. - Altu -Original Message- From: James Turner ja...@calminferno.net To: fossil-users@lists.fossil-scm.org Sent: Thu, Nov 4, 2010

Re: [fossil-users] Question about global settings

2010-11-03 Thread chi
James Turner wrote: Quick question, if I have autosync set to off globally but the repository has it set to on...who wins? If there is no locally defined setting, it takes the global one. If there is a local setting defined, it will beats the global one. From what I see the repository wins,