Re: CGI scripting with Guile

2008-03-15 Thread Sebastian Tennant
Quoth Thien-Thi Nguyen <[EMAIL PROTECTED]>: > What does the client see for the second case? I will use a Guile http request and hopefully then I'll be able to give you an intelligent answer. > I think both cases are malformed; IIRC, HTTP header lines need to end > in CRLF, not just LF. How is th

Re: CGI scripting with Guile

2008-03-15 Thread Sebastian Tennant
Quoth Sebastian Tennant <[EMAIL PROTECTED]>: > Quoth Sebastian Tennant <[EMAIL PROTECTED]>: >> The additional line works in a guile process running on the server. > > I should have said > > a guile REPL(?) shell like thing > > not just > > a guile process > This post was not a reply to _your_ l

Re: CGI scripting with Guile

2008-03-15 Thread Sebastian Tennant
Quoth Sebastian Tennant <[EMAIL PROTECTED]>: > The additional line works in a guile process running on the server. I should have said a guile REPL(?) shell like thing not just a guile process S

Re: CGI scripting with Guile

2008-03-15 Thread Thien-Thi Nguyen
() Sebastian Tennant <[EMAIL PROTECTED]> () Sun, 16 Mar 2008 00:10:11 +0200 #!/usr/bin/guile -s !# works. #!/usr/bin/guile -s !# (use-modules (www cgi)) doesn't. Why doesn't the second script work? What does the client see for the second case? I think both cases ar

CGI scripting with Guile

2008-03-15 Thread Sebastian Tennant
Hi list, This CGI script: #!/usr/bin/guile -s !# (display "Content-Type: text/plain hello world") works. But this CGI script: #!/usr/bin/guile -s !# (use-modules (www cgi)) (display "Content-Type: text/plain hello world") doesn't. Why doesn't the second script work? The additi