From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Re: [Resend] [PATCH] Make url-basic-auth support non-ascii passwords Date: Mon, 20 Oct 2008 12:06:34 -0400 Message-ID: <877i83xncl.fsf@cyd.mit.edu> References: <19e566510808260923t43d0b222l2a5e5b0500396d5@mail.gmail.com> <19e566510810200552r5efd8bcewa3f9cfe9740f75ee@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1224528717 12486 80.91.229.12 (20 Oct 2008 18:51:57 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 20 Oct 2008 18:51:57 +0000 (UTC) Cc: emacs- devel To: =?utf-8?Q?=C4=B0smail_D=C3=B6nmez?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 20 20:53:02 2008 connect(): Connection refused Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KrxKQ-0007ft-Eb for ged-emacs-devel@m.gmane.org; Mon, 20 Oct 2008 18:09:58 +0200 Original-Received: from localhost ([127.0.0.1]:51793 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KrxJK-0004tv-C3 for ged-emacs-devel@m.gmane.org; Mon, 20 Oct 2008 12:08:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KrxHD-0003sA-5e for emacs-devel@gnu.org; Mon, 20 Oct 2008 12:06:39 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KrxHB-0003rH-CT for emacs-devel@gnu.org; Mon, 20 Oct 2008 12:06:38 -0400 Original-Received: from [199.232.76.173] (port=47324 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KrxHB-0003rB-7C for emacs-devel@gnu.org; Mon, 20 Oct 2008 12:06:37 -0400 Original-Received: from cyd.mit.edu ([18.115.2.24]:43694) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KrxHB-0002PJ-5q for emacs-devel@gnu.org; Mon, 20 Oct 2008 12:06:37 -0400 Original-Received: by cyd.mit.edu (Postfix, from userid 1000) id 9628E57E0B3; Mon, 20 Oct 2008 12:06:34 -0400 (EDT) In-Reply-To: <19e566510810200552r5efd8bcewa3f9cfe9740f75ee@mail.gmail.com> (=?utf-8?Q?=22=C4=B0smail_D=C3=B6nmez=22's?= message of "Mon, 20 Oct 2008 15:52:57 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:104682 Archived-At: "=C4=B0smail D=C3=B6nmez" writes: > Resending after nearly 2 months... Please someone review and apply this. Applied, thanks. > url-basic-auth uses base64-encode-string but the password string can > contain non-ascii characters. In which case encode-coding-string > should be used. Attached patch fixes the issue.