Re: [fossil-users] Fossil CGI problem

2011-01-17 Thread Kulcsár Ferenc
Any reason for not using one of the established web servers that actually implement the specs correctly? E.g. with nginx you can either hook up fossil http via inetd or directly proxying fossil server. If I understand it correctly fossil uses non-parsed headers in its answers (runs as a

Re: [fossil-users] Fossil CGI problem

2011-01-17 Thread Richard Hipp
2011/1/17 Kulcsár Ferenc crusa...@netbsd.hu If I understand it correctly fossil uses non-parsed headers in its answers (runs as a non-pased header script). I don't think so. The webserver on the http://www.fossil-scm.org/ website does not support non-parsed headers but it supports Fossil

Re: [fossil-users] Fossil CGI problem

2011-01-17 Thread Joerg Sonnenberger
On Mon, Jan 17, 2011 at 09:32:22AM +0100, Kulcsár Ferenc wrote: Any reason for not using one of the established web servers that actually implement the specs correctly? E.g. with nginx you can either hook up fossil http via inetd or directly proxying fossil server. If I understand it

Re: [fossil-users] Fossil CGI problem

2011-01-16 Thread Joerg Sonnenberger
On Fri, Jan 14, 2011 at 12:22:51PM +0100, Kulcsár Ferenc wrote: I'm trying to get fossil setup on a Linux box with Bauk webserver. Any reason for not using one of the established web servers that actually implement the specs correctly? E.g. with nginx you can either hook up fossil http via inetd

Re: [fossil-users] Fossil CGI problem

2011-01-16 Thread Laurens Van Houtven
For the people potentially checking out the Twisted script -- the ticket with the bug just got fixed upstream, so there's basically a one-release window where it was broken (10.2.0). cheers lvh ___ fossil-users mailing list

Re: [fossil-users] Fossil CGI problem

2011-01-15 Thread Kulcsár Ferenc
I got in touch with the Bauk's developers. It is a long forum thread about this problem here: http://bauk.ws/forum.jsx?a=browsetid=2 Can you help me with this? TIA, feri ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] Fossil CGI problem

2011-01-15 Thread Joerg Sonnenberger
On Fri, Jan 14, 2011 at 12:22:51PM +0100, Kulcsár Ferenc wrote: Hello, I'm trying to get fossil setup on a Linux box with Bauk webserver. It's partly successful. I can point to my repo and administer it. The checkout is failing: $ fossil clone http://archlap.aneder.hu/fossil/proba1

[fossil-users] Fossil CGI problem

2011-01-14 Thread Kulcsár Ferenc
Hello, I'm trying to get fossil setup on a Linux box with Bauk webserver. It's partly successful. I can point to my repo and administer it. The checkout is failing: $ fossil clone http://archlap.aneder.hu/fossil/proba1 proba1.fossil --httptrace Bytes Cards Artifacts

Re: [fossil-users] Fossil CGI problem

2011-01-14 Thread Laurens Van Houtven
That hostname isn't supposed to be internet-accessible, is it? I've written an admittedly ad-hoc Twisted script which sort-of works (depending on versions, you might get a duplicate Content-Type, which, depending on browser (ie Chrome), may mean the CSS doesn't work). If you want, you can try

Re: [fossil-users] Fossil CGI problem

2011-01-14 Thread Laurens Van Houtven
I do wonder why there aren't any newlines. Was that lost in the paste, or is that really what Bauk produces as a response? If my spec-memory is correct, HTTP defines a newline as a CR LF, there's supposed to be one after each header, and the request ends with a double newline. I can't see that in

Re: [fossil-users] Fossil CGI problem

2011-01-14 Thread Kulcsár Ferenc
You can access my host now: http://crusader.dyndns.info/fossil/proba1/index In mcedit each lines in the files are ended with ^M. Thanks. feri ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] Fossil CGI problem

2011-01-14 Thread Laurens Van Houtven
If I'm reading src/http.c correctly, that basically only happens if iLength remains set to its original value of -1, so the response is probably accurate. My best guess is that it's either a Bauk bug or misconfiguration issue. Unfortunately I've never heard of Bauk, so I can't really help you