Re: asynchronous socket library

2013-07-16 Thread Aleix Conchillo Flaqué
On Tue, Jul 16, 2013 at 8:58 AM, Chaos Eternal chaoseter...@shlug.org wrote: http://git.savannah.gnu.org/gitweb/?p=guile.git;a=shortlog;h=refs/heads/wip-ethreads should be this one Oh, I see now. Nala Ginrut actually asked about the status of the wip-ethreads branch earlier this month.

Re: [PATCH] Add support for HTTP proxies

2013-07-16 Thread Mark H Weaver
Hi Ludovic, l...@gnu.org (Ludovic Courtès) writes: * The 'http-proxy-port?' object property (only needed if you connect to a proxy yourself, without using 'open-socket-for-uri'). What about hiding the fact that it’s an object property, by providing a ‘set-http-proxy-port?!’ procedure?

xmlish

2013-07-16 Thread Stefan Israelsson Tampe
Heya Heya guile and all the guilers! I just pushed a simple tool to handle name spaced xml using the guile module system It is in an initial state and is a small shell around sxml. I will use it as a base for handling xml-schema specifications. Anyway if interested checkout

Re: [PATCH] Add support for HTTP proxies

2013-07-16 Thread Ludovic Courtès
Hello! Mark H Weaver m...@netris.org skribis: l...@gnu.org (Ludovic Courtès) writes: [...] +(define current-http-proxy (make-parameter 'auto)) + +(define (choose-http-proxy) + (let ((proxy (current-http-proxy))) +(if (not (eq? proxy 'auto)) +proxy +(let ((proxy