Re: http-post

2013-01-11 Thread Andy Wingo
r a connection to URI. -- Scheme Procedure: http-get uri keyword-arg... -- Scheme Procedure: http-head uri keyword-arg... -- Scheme Procedure: http-post uri keyword-arg... -- Scheme Procedure: http-put uri keyword-arg... -- Scheme Procedure: http-delete uri keyword-arg... -- Scheme Procedure

Re: http-post

2012-05-09 Thread Noah Lavine
Hello, > To write a test for http-post, I thought I'd model it on a test for > http-get.  However, there isn't one - 'http-get' doesn't appear > anywhere in test-suite/ (on master branch as of 4105f).  'run-server' > isn't in there eit

Re: http-post

2012-05-05 Thread gregory benison
On Thu, Apr 26, 2012 at 5:58 PM, Noah Lavine wrote: > If you'd like to have it added to Guile, we'd love to have it in here. > The one other thing we'd like is tests for this code. There are > examples in test-suite/tests/web-http.test. > To write a test for http-post

Re: http-post

2012-04-26 Thread Noah Lavine
other common HTTP verbs would be a > good addition to this module.  Send your code to ." > > So, I say to guile-user, "here is my code". > > This http-post implementation takes the request body as either a > bytevector or as a string, in which case it first conve

http-post

2012-04-16 Thread gregory benison
>From the guile reference manual, web section: "More helper procedures for the other common HTTP verbs would be a good addition to this module. Send your code to ." So, I say to guile-user, "here is my code". This http-post implementation takes the request body as eith