Re: [fossil-users] Make a CGI request WITHOUT a script file

2012-03-03 Thread Stephan Beal
On Sat, Mar 3, 2012 at 12:04 AM, Guillermo Estrada phroze...@gmail.comwrote: I do know CGI conventions and standards do not work like that, but is there something I don't know about fossil? Is there a way to request a feature to do this? This will boost a lot the potential of running fossil

Re: [fossil-users] feature proposal: explicitly public branches

2012-03-03 Thread Stephan Beal
On Sat, Mar 3, 2012 at 2:54 AM, Leo Razoumov slonik...@gmail.com wrote: Actually you can make JSON handle arbitrary binary blobs by encoding binary data in e.g. base64. The other end can easily decode it back to binary. It will cost you about 33% in size overhead, though. It can, but then

Re: [fossil-users] Make a CGI request WITHOUT a script file

2012-03-03 Thread Richard Hipp
On Fri, Mar 2, 2012 at 6:04 PM, Guillermo Estrada phroze...@gmail.comwrote: Hi, I've been trying to implement a webservice that hosts fossil repositories. Kinda like chiselapp.com . I have achieved running my own server app written in golang to make the CGI requests in a routed handler (i.e

Re: [fossil-users] Make a CGI request WITHOUT a script file

2012-03-03 Thread Dmitry Chestnykh
On 03/03/2012 12:04 AM, Guillermo Estrada wrote: Hi, I've been trying to implement a webservice that hosts fossil repositories. Kinda like chiselapp.com http://chiselapp.com . I have achieved running my own server app written in golang to make the CGI requests in a routed handler (i.e

Re: [fossil-users] Make a CGI request WITHOUT a script file

2012-03-03 Thread Stephan Beal
On Sat, Mar 3, 2012 at 3:30 PM, Dmitry Chestnykh dmi...@codingrobots.comwrote: I assume your Go program launches Fossil. When you open a CGI process, can't you just write to its standard input: repository: /path/to/repo.fossil That won't work: the stdin for a CGI process is the HTTP request

Re: [fossil-users] fossil-users Digest, Vol 50, Issue 5

2012-03-03 Thread Guillermo Estrada
://lists.fossil-scm.org:8080/pipermail/fossil-users/attachments/20120303/09932df3/attachment-0001.html -- Message: 4 Date: Sat, 3 Mar 2012 09:40:21 +0100 From: Stephan Beal sgb...@googlemail.com To: Fossil SCM user's discussion fossil-users@lists.fossil-scm.org Subject

Re: [fossil-users] Make a CGI request WITHOUT a script file

2012-03-03 Thread Dmitry Chestnykh
On 03/03/2012 03:34 PM, Stephan Beal wrote: On Sat, Mar 3, 2012 at 3:30 PM, Dmitry Chestnykh dmi...@codingrobots.com mailto:dmi...@codingrobots.com wrote: I assume your Go program launches Fossil. When you open a CGI process, can't you just write to its standard input: repository:

Re: [fossil-users] Make a CGI request WITHOUT a script file

2012-03-03 Thread Ashish SHUKLA
Guillermo Estrada writes: Hi, I've been trying to implement a webservice that hosts fossil repositories. Kinda like chiselapp.com . I have achieved running my own server app written in golang to make the CGI requests in a routed handler (i.e /user/repository ), but the problem I'm facing is