From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.lisp.guile.user Subject: Re: CGI scripting with Guile Date: Sun, 16 Mar 2008 10:16:51 +0100 Organization: sometimes Message-ID: <87zlsz2flo.fsf@ambire.localdomain> References: <87tzj7ljuk.fsf@moley.moleskin.org> <873aqrlifk.fsf@ambire.localdomain> <877ig3lcu4.fsf@moley.moleskin.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1205659183 4455 80.91.229.12 (16 Mar 2008 09:19:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 16 Mar 2008 09:19:43 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Mar 16 10:20:12 2008 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Jap2I-0001Ed-Kk for guile-user@m.gmane.org; Sun, 16 Mar 2008 10:20:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jap1i-0003ZH-Mj for guile-user@m.gmane.org; Sun, 16 Mar 2008 05:19:34 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jap1d-0003Wo-4Y for guile-user@gnu.org; Sun, 16 Mar 2008 05:19:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jap1a-0003Tm-V2 for guile-user@gnu.org; Sun, 16 Mar 2008 05:19:28 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jap1a-0003Tc-ND for guile-user@gnu.org; Sun, 16 Mar 2008 05:19:26 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Jap1a-0001qZ-7q for guile-user@gnu.org; Sun, 16 Mar 2008 05:19:26 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Jap1V-0000qc-Dh for guile-user@gnu.org; Sun, 16 Mar 2008 09:19:21 +0000 Original-Received: from 151.61.143.98 ([151.61.143.98]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 16 Mar 2008 09:19:21 +0000 Original-Received: from ttn by 151.61.143.98 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 16 Mar 2008 09:19:21 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 28 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 151.61.143.98 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:LrGQsxAvEjaxQ+SG6tSC9zx5C/g= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:6462 Archived-At: () Sebastian Tennant () Sun, 16 Mar 2008 02:41:39 +0200 How is [CRLF] achieved (in scheme (lisp) forms)? You can use the characters #\cr and #\newline, or the string "\r\n". In id.cgi.in, for example, we use the string variant. cgi:init is a little... dark... in terms of documentation. Thanks for pointing this out. I have increased the `cgi:init' documentation (slightly) to be: | (Re-)initialize internal data structures. This must be called before | calling any other @samp{cgi:foo} procedure. For FastCGI, call this | ``inside the loop'' (that is, for each CGI invocation). This will appear in 2.22. If you use Git and would like to monitor pre-release hacking, see (guile-www). (procedure-source cgi:init) isn't much help... (yet). Probably `procedure-source' is a poor way to learn how `cgi:init' works; better to look at cgi.scm directly. thi