From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alan Grover Newsgroups: gmane.lisp.guile.bugs Subject: guile-www-2.9 (www cgi) names in query-string not url-decoded Date: Mon, 11 Apr 2005 19:10:24 -0400 Message-ID: <425B03E0.6090206@mail.msen.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1113261236 31781 80.91.229.2 (11 Apr 2005 23:13:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 11 Apr 2005 23:13:56 +0000 (UTC) Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Tue Apr 12 01:13:50 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DL85g-00005U-OC for guile-bugs@m.gmane.org; Tue, 12 Apr 2005 01:13:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DL7ft-00052M-AV for guile-bugs@m.gmane.org; Mon, 11 Apr 2005 18:46:33 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DL7f4-0004FZ-FG for bug-guile@gnu.org; Mon, 11 Apr 2005 18:45:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DL7f0-0004Af-Cd for bug-guile@gnu.org; Mon, 11 Apr 2005 18:45:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DL7ez-00048J-Vi for bug-guile@gnu.org; Mon, 11 Apr 2005 18:45:37 -0400 Original-Received: from [148.59.19.5] (helo=conch.msen.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DL837-0007ha-A8 for bug-guile@gnu.org; Mon, 11 Apr 2005 19:10:33 -0400 Original-Received: from [127.0.0.1] (awgrover@msen.com [148.59.19.5]) by conch.msen.com (8.12.10/8.12.10) with ESMTP id j3BNAPfB007829 for ; Mon, 11 Apr 2005 19:10:25 -0400 (EDT) User-Agent: Mozilla Thunderbird 0.7 (X11/20040615) X-Accept-Language: en-us, en Original-To: bug-guile@gnu.org X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:2725 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.bugs:2725 The (www cgi) module parses query-string/form-data without performing an url-decode on names. Values are url-decoded. Module: www cgi Version: 2.9 Example: http://gnu.org?with%26amper= should parse to ("with&er" . '()). But, incorrectly parses to ("with%26amper" . '()). Suggested patch: cgi.scm 286c286 < (and p (subs pair 0 p)))) --- > (and p (url-coding:decode (subs pair 0 p))))) -- Alan Grover awgrover@mail.msen.com +1.734.476.0969 _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://lists.gnu.org/mailman/listinfo/bug-guile