From debbugs-submit-bounces@debbugs.gnu.org Sat May 22 20:52:01 2010 Received: (at submit) by debbugs.gnu.org; 23 May 2010 00:52:01 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFzQ8-0001Hg-9Q for submit@debbugs.gnu.org; Sat, 22 May 2010 20:52:00 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFyPG-0000pP-Vp for submit@debbugs.gnu.org; Sat, 22 May 2010 19:47:03 -0400 Received: from lists.gnu.org ([199.232.76.165]:34627) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OFyPC-0004G3-Tr for submit@debbugs.gnu.org; Sat, 22 May 2010 19:46:58 -0400 Received: from [140.186.70.92] (port=47446 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFyPB-0006f9-9R for bug-gnu-emacs@gnu.org; Sat, 22 May 2010 19:46:58 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID, T_TO_NO_BRKTS_FREEMAIL autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OFyP9-0001Vp-Cz for bug-gnu-emacs@gnu.org; Sat, 22 May 2010 19:46:57 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:33223) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFyP9-0001TE-8h for bug-gnu-emacs@gnu.org; Sat, 22 May 2010 19:46:55 -0400 Received: by mail-wy0-f169.google.com with SMTP id 22so638388wyf.0 for ; Sat, 22 May 2010 16:46:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type:content-transfer-encoding; bh=k/xMBlwUvgmMC+xyuKkkj3u+JmB/EJC2eDAgsVng4pI=; b=QoA2FxgBUPoO3iDDM/OXuohabrKxuCVR0n7dyaZ000/+GBjI6JbT8Wjs3waTDdwXJ0 rfdvwVbiwvVSlVVnIuWiRf9VHPlw9zJLcaXEnbCRsOonzg9dLIDpzsvfh2Ly096VNxhe PyEVOzXwzq/a5ONzcXmy939VAKBBIA2Z8nmQM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=cnI+4RLFwN9SZ8pSgAzlLJcS+sX5qecbx7vMZuIglh2wLt++WPDJotYtKLL+Mfl1YH MyeWPS3oRAfUPf7PzDgqubg4UZr0/r7/b1RRQECGjKlNeTVNJRqJkk91r4sDRKNBGXcY 8aR0IRB5u91dpI1cKvTY7JQbyFGBmysK2XmLA= MIME-Version: 1.0 Received: by 10.216.87.146 with SMTP id y18mr2076964wee.57.1274572014233; Sat, 22 May 2010 16:46:54 -0700 (PDT) Received: by 10.216.12.196 with HTTP; Sat, 22 May 2010 16:46:54 -0700 (PDT) Date: Sun, 23 May 2010 01:46:54 +0200 Message-ID: Subject: Emacs does not implement URL (aka "percent") decoding correctly. From: =?UTF-8?B?Sm9zw6kgQS4gUm9tZXJvIEwu?= To: bug-gnu-emacs@gnu.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -3.3 (---) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 22 May 2010 20:52:00 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.6 (----) On May 18, 20:14, Xah Lee wrote: > is there emacs lisp function that decode the url percent encoding? > e.g.http://en.wikipedia.org/wiki/Sylvester%E2%80%93Gallai_theorem > should become > http://en.wikipedia.org/wiki/Sylvester=E2=80=93Gallai_theorem > that's a EN DASH (unicode 8211, #o20023, #x2013). > I know there's a > (require 'gnus-util) > gnus-url-unhex-string > but that just unhex, and generate gibberish if the url contain unicode > chars. (...) Seems that RFC 3986 has not been implemented correctly in Emacs. IMHO that is an important hole you have found there. The standard requires that all unreserved characters be encoded/decoded as UTF8 bytes. Even though the encoding part looks OK (in url-util.el), the decoding does not go that last mile to interpret the decoded bytes as UTF-8. Until a proper implementation is done, I guess you could work around the problem with something like this: (decode-coding-string (apply 'unibyte-string (string-to-list (url-unhex-string "http://en.wikipedia.org/wiki/Sylvester %E2%80%93Gallai_theorem"))) 'utf-8) (yes, it's ugly as hell but hey, it's free ;]) I've just sent this very message as a bug report to the Emacs team. Cheers, --=20 Jos=C3=A9 A. Romero L. escherdragon@gmail.com "We who cut mere stones must always be envisioning cathedrals." (Quarry worker's creed) From debbugs-submit-bounces@debbugs.gnu.org Sun May 23 23:33:56 2010 Received: (at 6252) by debbugs.gnu.org; 24 May 2010 03:33:56 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGOQO-0004t7-8i for submit@debbugs.gnu.org; Sun, 23 May 2010 23:33:56 -0400 Received: from mathmail.math.s.chiba-u.ac.jp ([133.82.132.2]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGOQL-0004t2-4Y for 6252@debbugs.gnu.org; Sun, 23 May 2010 23:33:54 -0400 Received: from church.math.s.chiba-u.ac.jp (church [133.82.132.36]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id 7D3D1C0557; Mon, 24 May 2010 12:33:46 +0900 (JST) Date: Mon, 24 May 2010 12:33:46 +0900 Message-ID: From: YAMAMOTO Mitsuharu To: =?ISO-8859-1?Q?Jos=E9?= A. Romero L. Subject: Re: bug#6252: Emacs does not implement URL (aka "percent") decoding correctly. In-Reply-To: References: User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) Organization: Faculty of Science, Chiba University MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -1.5 (-) X-Debbugs-Envelope-To: 6252 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.8 (--) >>>>> On Sun, 23 May 2010 01:46:54 +0200, Jos=E9 A. Romero L. said: > Seems that RFC 3986 has not been implemented correctly in > Emacs. IMHO that is an important hole you have found there. The > standard requires that all unreserved characters be encoded/decoded > as UTF8 bytes. If you are referring to the following part of RFC 3986, it doesn't say anything about existing URI schemes (as opposed to "a new URI scheme"), those defining a component that does NOT represent textual data, or even for textual data, those NOT consisting of characters from the Universal Character Sets. When a new URI scheme defines a component that represents textual data consisting of characters from the Universal Character Set [UCS], the data should first be encoded as octets according to the UTF-8 character encoding [STD63]; then only those octets that do not correspond to characters in the unreserved set should be percent- encoded. (See also http://lists.gnu.org/archive/html/emacs-devel/2006-08/msg00065.ht= ml) Though returning a multibyte string decoded as UTF-8 would be useful for many cases, I think some "unhex"ing function should also provide a functionality to return a unibyte string. YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp From debbugs-submit-bounces@debbugs.gnu.org Tue May 25 08:33:45 2010 Received: (at 6252) by debbugs.gnu.org; 25 May 2010 12:33:45 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGtKK-0003l5-OR for submit@debbugs.gnu.org; Tue, 25 May 2010 08:33:45 -0400 Received: from mail-ew0-f226.google.com ([209.85.219.226]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGpwF-0001Ri-OQ for 6252@debbugs.gnu.org; Tue, 25 May 2010 04:56:40 -0400 Received: by ewy26 with SMTP id 26so395398ewy.5 for <6252@debbugs.gnu.org>; Tue, 25 May 2010 01:56:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=2xDmtZMOw90WEutiWBnXBAV+ZnsB2BYknbUh9RFw7Y8=; b=n6uOCYBuyxa0G/T/JkI5b3rlleiOSKlLqqWyaH+M/ruG5N79oBU7AFxoLF70xTU/n3 FcfzXTvr0Eo0yLZfbFeb5VJklaEoxynz+O2XLIXitrbkzhqZVh8jwDVuEmBER1iNeSEy TUm9fJz/IOkP2RBUg50SU0zv+Gw++t1yuEpqE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=Bo0+HvxQPdrjRAwdrfd2BR6uAgon0qydljIRxdnInGXIQyah6UezVfp5IHkh1c2gsg V1y0IwEUdc64OhBRbop8Jbi2aZ3KjuTpr67sUT82CO/BbDl6n0yw7TKvPYf16vvJfUnl 39TfxSHe0FVZgXXbk7Uljt7s0NHKTnpKUdWuk= MIME-Version: 1.0 Received: by 10.213.3.4 with SMTP id 4mr358023ebl.18.1274777796403; Tue, 25 May 2010 01:56:36 -0700 (PDT) Received: by 10.213.17.148 with HTTP; Tue, 25 May 2010 01:56:36 -0700 (PDT) In-Reply-To: References: Date: Tue, 25 May 2010 10:56:36 +0200 Message-ID: Subject: Fwd: bug#6252: Emacs does not implement URL (aka "percent") decoding correctly. From: =?UTF-8?B?Sm9zw6kgQS4gUm9tZXJvIEwu?= To: 6252@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 6252 X-Mailman-Approved-At: Tue, 25 May 2010 08:33:41 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.3 (-) (sorry, forgot to fwd this to the bugtrack) ---------- Forwarded message ---------- From: Jos=C3=A9 A. Romero L. Date: 2010/5/24 Subject: Re: bug#6252: Emacs does not implement URL (aka "percent") decoding correctly. To: YAMAMOTO Mitsuharu 2010/5/24 YAMAMOTO Mitsuharu : >>>>>> On Sun, 23 May 2010 01:46:54 +0200, Jos=C3=A9 A. Romero L. said: (...) > If you are referring to the following part of RFC 3986, it doesn't say > anything about existing URI schemes (as opposed to "a new URI > scheme"), those defining a component that does NOT represent textual > data, or even for textual data, those NOT consisting of characters > from the Universal Character Sets. You are right. The standard *doesn't say anything* about existing URI schemes on that matter. Thus =C2=A0the question would be rather whether to make the language more or less useful, especially on the light of the fragment you've just quoted: =C2=A0 =C2=A0 =C2=A0> =C2=A0When a new URI scheme defines a component that = represents textual =C2=A0 =C2=A0 =C2=A0> =C2=A0data consisting of characters from the Universa= l Character Set =C2=A0 =C2=A0 =C2=A0> =C2=A0[UCS], the data should first be encoded as octe= ts according to the =C2=A0 =C2=A0 =C2=A0> =C2=A0UTF-8 character encoding [STD63]; then only tho= se octets that do not =C2=A0 =C2=A0 =C2=A0> =C2=A0correspond to characters in the unreserved set = should be percent- =C2=A0 =C2=A0 =C2=A0> =C2=A0encoded. and the example that immediately follows: =C2=A0 =C2=A0(...) For example, the character A would be represented as "A"= , =C2=A0 =C2=A0the character LATIN CAPITAL LETTER A WITH GRAVE would be repre= sented =C2=A0 =C2=A0as "%C3%80", and the character KATAKANA LETTER A would be repr= esented =C2=A0 =C2=A0as "%E3%82%A2". > > (See also http://lists.gnu.org/archive/html/emacs-devel/2006-08/msg00065.= html) > > Though returning a multibyte string decoded as UTF-8 would be useful > for many cases, I think some "unhex"ing function should also provide a > functionality to return a unibyte string. (...) That's perfectly valid. OTOH some other "unhex"-ing function (or even the same) could also provide the functionality to return a multi-byte string, and even allow to =C2=A0choose the character encoding (UCS or not) for the resulting string. After =C2=A0all, don't you think there should be a better way to decode a Katakana A than using a kludge like this?: =C2=A0(decode-coding-string =C2=A0 =C2=A0 (apply 'unibyte-string =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(string-to-list =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (url-unhex-string "%E3%82%A2"))) =C2=A0 =C2=A0 'utf-8) Cheers, -- Jos=C3=A9 A. Romero L. escherdragon@gmail.com "We who cut mere stones must always be envisioning cathedrals." (Quarry worker's creed) From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 21 16:36:25 2011 Received: (at 6252) by debbugs.gnu.org; 21 Sep 2011 20:36:25 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6TWp-0006gb-H8 for submit@debbugs.gnu.org; Wed, 21 Sep 2011 16:36:24 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6TWo-0006gU-53 for 6252@debbugs.gnu.org; Wed, 21 Sep 2011 16:36:22 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R6TWQ-00068z-Ui; Wed, 21 Sep 2011 22:35:58 +0200 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?Jos=E9?= A. Romero L. Subject: Re: Emacs does not implement URL (aka "percent") decoding correctly. In-Reply-To: (=?iso-8859-1?Q?=22Jos=E9?= A. Romero L."'s message of "Sun, 23 May 2010 01:46:54 +0200") Date: Wed, 21 Sep 2011 22:17:52 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) X-Now-Playing: Colder's _Heat_: "Fade Away" MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1R6TWQ-00068z-Ui X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1317242159.03077@8oR+/8iq5vtiIvJ4vyY5Hw X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 6252 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) Jos=E9 A. Romero L. writes: > On May 18, 20:14, Xah Lee wrote: > >> is there emacs lisp function that decode the url percent encoding? >> e.g.http://en.wikipedia.org/wiki/Sylvester%E2%80%93Gallai_theorem >> should become >> http://en.wikipedia.org/wiki/Sylvester=96Gallai_theorem >> that's a EN DASH (unicode 8211, #o20023, #x2013). >> I know there's a >> (require 'gnus-util) >> gnus-url-unhex-string >> but that just unhex, and generate gibberish if the url contain unicode >> chars. > (...) > > Seems that RFC 3986 has not been implemented correctly in Emacs. IMHO > that is an important hole you have found there. The standard requires > that all unreserved characters be encoded/decoded as UTF8 bytes. Even > though the encoding part looks OK (in url-util.el), the decoding does > not go that last mile to interpret the decoded bytes as UTF-8. I'm not quite sure I understand what the problem is. Do you have a test case that illustrates what url.el does wrong? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 22 03:43:49 2011 Received: (at 6252) by debbugs.gnu.org; 22 Sep 2011 07:43:49 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6dwj-00009c-8p for submit@debbugs.gnu.org; Thu, 22 Sep 2011 03:43:49 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6dwg-00009U-8Z for 6252@debbugs.gnu.org; Thu, 22 Sep 2011 03:43:48 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R6dwF-0001v6-Jj; Thu, 22 Sep 2011 09:43:19 +0200 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?Jos=E9?= A. Romero L. Subject: Re: Emacs does not implement URL (aka "percent") decoding correctly. In-Reply-To: (=?iso-8859-1?Q?=22Jos=E9?= A. Romero L."'s message of "Thu, 22 Sep 2011 09:27:32 +0200") Date: Thu, 22 Sep 2011 09:38:31 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAJFBMVEVfVkbh4tX5+vP+/vvm 6d/Qz77b2sjCvqzt8er////+//6noY1nWjMvAAACbUlEQVQ4ja3TQU8TQRQA4IlGidnTNMvaKwOH bT3JotHeFhZTPIEyXRNOBXdEvWDMZmL2RCllONISw/QomtiehhhtyPw535sWjIk1MXHS0/v63szO e0Me6z+uLpkC+v9Ce/mr1p/OBr3xf7qtwbmDL7udoKKTw+OzNYz3yqq05CDW+uXr3s7OmzGcVPT9 JVUB2NU62T6tr9UnAL+56gqAbPrNuNNR++EyY0x1VLKaZe8BrJVcCEppAisWIuNS2hsAxShvQDzG uEoCIXgq7TcHGE+SumKhalMacJ4WlwiyQX0/abcYbhFTKq4gF1heYZyFuE3GHWzlwoc4JkSLrJ3E gRhDmlOor+YjWMPFUGGKdNDAfSFeg887h23aMU0/IGxMYDAB2CabgFItqKNBenBkOMkvgAysBBnq d8AMLBUxTyYxvYL6UYttmVr/xfBhydyitDmGhq/eXpTXvepn6xlrftwOxPhUm+qomMkM8SwhxJC7 JBshDFLfM6sQugi2UBw6KDb37r2zzTqjpSgKn3AJLB2YXOCqt1gU4V2JdeJdIpAZDi30fHfvCY3F K+NgzxtJ3hDSx4sPYwDOLYKxI5nzRkHhO7GDNBs3amA8J0RQaEscNF3Pr0FyI5qU+jAlIpUTIDBA siA4EtBw6JIsrmEE8B1TgozjWNk7DlwtAicTMCGwQ2HNFUAtkqNkKRayBAEuB2uZEcclsZAhNwEC 3Xv2YP9QzC4cQ3P7J9XhXNiHaR983Jg9Pn2+rbtlP3kKD6qsVkJ9AKAfHeh+taL1PGMV99R0pGsI Ux7nlPgU6P9zxl9hGF2vRcbmYVax9WzhJ0zj6nQ+dfOkAAAAAElFTkSuQmCC X-Now-Playing: Oval's _Oh_: "Tricot" MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1R6dwF-0001v6-Jj X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1317282199.97555@59Oed6wN2CR9S9xprNZzDQ X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 6252 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) Jos=E9 A. Romero L. writes: > in short, there seems to be currently no way to perform the opposite > of url-hexify-string for UTF-8 encoded strings: > > (url-unhex-string (url-hexify-string "=E4")) > =3D> "=C3=A4" `url-unhex-string' can't know what encoding the %xx-encoding is in, can it? The local part of an URL can use a different encoding, I think. But is that the test case for the bug? I thought somebody had problems retrieving something... --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 23 04:38:59 2011 Received: (at 6252) by debbugs.gnu.org; 23 Sep 2011 08:38:59 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R71He-0004d5-Lb for submit@debbugs.gnu.org; Fri, 23 Sep 2011 04:38:59 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R71HZ-0004cl-QB for 6252@debbugs.gnu.org; Fri, 23 Sep 2011 04:38:54 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R71H1-0002uM-5r; Fri, 23 Sep 2011 10:38:19 +0200 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?Jos=E9?= A. Romero L. Subject: Re: Emacs does not implement URL (aka "percent") decoding correctly. In-Reply-To: (=?iso-8859-1?Q?=22Jos=E9?= A. Romero L."'s message of "Thu, 22 Sep 2011 13:04:13 +0200") Date: Fri, 23 Sep 2011 10:34:00 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAG1BMVEUAAAAxLzQBAQFycXYT EhUGBQcCAQO+vsIDAgM9ANWoAAACYklEQVQ4jVWSzW8aMRDFR1YXcexmSblao2JxJUvCNQtG6XEB O+WYrmDlK6LR9pjQeuU/u2PvR8gcFsk/3nszY4PMkrQaSbne18dx1VWagsri9CSl1qYoN9UHAS3j 5LTW2tWF0Ivu/JyCVVky3++1XSNuxudFrzBKJqO9s0ojvpN3mrZAaLmabYXTWpj3Kkm7ArRqNbug 1bq0myruCbCjzuaI1mqjCcRxrzB61QC9GY3jvgCm9ucDCkshu9eZzHrAhH1aonDO6s1ZSaqsUxxm NIIxJUXMZV8Au+rr5hsar/A76wFbVHdReiGBXlX32pf0jvC3qk75+KE0Wo9Pr7otAuc35uTubJzT 2X0PtII7AHEYVbfOuIumLdu9CwRegBqLF38KWlXs2vLA13A0PnHO3+d1gaIsnW/Rn7MoW505sPgZ 0QNCrlFwKas9ZzQntui4D4Cp74v1ltUNwAJLEwCHg9rxES5bgEKYxgomZa1//egBuZkWvF3UJL6h I8Y8oJQOvCh2vIA/5k1+C/JLFLpADkiw6ECUR1EOjPogAWHswCCPcOkV5ANNSAMgH3IdrMInABZA zfDLYwCNpFfYwTG6od8QQPEfgG0HksRNt0HBAziyHDbIWT95p2DwCGpZBJvryWnkHKY3zdz+Quq6 tQLMWbTkbQI9P9M5wRsbKoCPq2qtBgVnTPn/cxR08bXpw6m2fkIfLlB0IFzkhHbVuk3dtSL6F1qZ Fj79SgFDQN5sEkt9DaZZnNxyuirsH0Prl6k4nYV+3Sfgu5083dGrej5+AogXNIfffifOwicvb5MU paBX/R+90+FgOZO+JgAAAABJRU5ErkJggg== X-Now-Playing: Charles Mingus & Eric Dolphy's _Complete Live in Amsterdam (2)_: "Meditations on Integration" MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1R71H1-0002uM-5r X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1317371899.30063@R34M5nVTBF98mF4mWygSKQ X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 6252 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) Jos=E9 A. Romero L. writes: >>> =A0 =A0 (url-unhex-string (url-hexify-string "=E4")) >>> =A0 =A0 =3D> "=C3=A4" [...] > Well, if you write a script that transforms URLs to/from strings > (especially round-trip) you will probably encouter problems > retrieving stuff from the web if you're not aware of this issue. So this bug report is purely about the return value of `url-unhex-string'? It sounded at the beginning that url.el had problems fetching something. If this is just about `url-unhex-string', the obvious solution would be to add a CODING-SYSTEM parameter to that function. And please don't keep removing the debbugs address from the Cc list. Your messages aren't going to the bug tracker if you do that. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 23 12:38:25 2011 Received: (at 6252) by debbugs.gnu.org; 23 Sep 2011 16:38:26 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R78lQ-00010i-Ni for submit@debbugs.gnu.org; Fri, 23 Sep 2011 12:38:23 -0400 Received: from mail-vx0-f172.google.com ([209.85.220.172]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R73gL-0000Ph-Mj for 6252@debbugs.gnu.org; Fri, 23 Sep 2011 07:12:38 -0400 Received: by vcbfo11 with SMTP id fo11so1201690vcb.3 for <6252@debbugs.gnu.org>; Fri, 23 Sep 2011 04:12:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=xDMtWFQYTkMmSfVyNv+Dme6+oFPOQG+XIouE6Nregoo=; b=o3ry06k7v2jN68f7aJZNys0qZcgb2bLRXL/e7AnyHUBukoLY7+/lAKxGCsrCwBpIIg gk2kR8gXtrCCVuJm/jPuSHIvfCu8w4M4veIfaIRdudQGUMwD+EhtEsbU/HyEd64Sji16 Merf08EkQM3dY8nVo/nFIWGcrk7Q0wMrpr2cE= MIME-Version: 1.0 Received: by 10.52.94.14 with SMTP id cy14mr3042850vdb.365.1316776331155; Fri, 23 Sep 2011 04:12:11 -0700 (PDT) Received: by 10.52.169.98 with HTTP; Fri, 23 Sep 2011 04:12:11 -0700 (PDT) In-Reply-To: References: Date: Fri, 23 Sep 2011 13:12:11 +0200 Message-ID: Subject: Re: Emacs does not implement URL (aka "percent") decoding correctly. From: =?UTF-8?B?Sm9zw6kgQS4gUm9tZXJvIEwu?= To: Lars Magne Ingebrigtsen Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.5 (--) X-Debbugs-Envelope-To: 6252 X-Mailman-Approved-At: Fri, 23 Sep 2011 12:38:10 -0400 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.8 (--) 2011/9/23 Lars Magne Ingebrigtsen : (...) > If this is just about `url-unhex-string', the obvious solution would be > to add a CODING-SYSTEM parameter to that function. Yes, as I see it, that's definitely it. > And please don't keep removing the debbugs address from the Cc list. > Your messages aren't going to the bug tracker if you do that. (...) Oops, sorry, I didn't notice it before -- won't happen again. Cheers, --=20 Jos=C3=A9 A. Romero L. escherdragon@gmail.com "We who cut mere stones must always be envisioning cathedrals." (Quarry worker's creed) From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 25 18:17:13 2011 Received: (at control) by debbugs.gnu.org; 25 Sep 2011 22:17:13 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R7x0a-0001Ys-Rb for submit@debbugs.gnu.org; Sun, 25 Sep 2011 18:17:13 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R7x0Z-0001Yk-3I for control@debbugs.gnu.org; Sun, 25 Sep 2011 18:17:11 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R7wzo-0005Vp-M0 for control@debbugs.gnu.org; Mon, 26 Sep 2011 00:16:24 +0200 Date: Mon, 26 Sep 2011 00:16:23 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #6252 X-MailScanner-ID: 1R7wzo-0005Vp-M0 X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1317593784.99389@jR5vLkmU7lZjXRFQbk+C5A X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) tags 6252 pending From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 25 18:23:27 2011 Received: (at 6252) by debbugs.gnu.org; 25 Sep 2011 22:23:27 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R7x6c-0001iL-L1 for submit@debbugs.gnu.org; Sun, 25 Sep 2011 18:23:26 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R7x6a-0001i9-Bk for 6252@debbugs.gnu.org; Sun, 25 Sep 2011 18:23:25 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R7x5p-0005cf-VU; Mon, 26 Sep 2011 00:22:38 +0200 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?Jos=E9?= A. Romero L. Subject: Re: bug#6252: Emacs does not implement URL (aka "percent") decoding correctly. In-Reply-To: (=?iso-8859-1?Q?=22Jos=E9?= A. Romero L."'s message of "Fri, 23 Sep 2011 13:12:11 +0200") Date: Mon, 26 Sep 2011 00:16:14 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAD1BMVEX60qz0xaL817CqhXP5 z6kro5JTAAACZ0lEQVQ4jVVUC5YjIQhE1gNI9AA20wcYn3MANNz/TFuYzNusyYsdSj4FZZO7k7GT E1Mv3SlzV1Umd3PSNOacMueYQw+gBDN1WnXWEWsOIuUAspvdvuasU0b4ZdJA4NG2/C4XSUse71Du ODdq/JQxvuosugHcnv35nD81EJ7jOcbPAai5hzHs8zuSIL92lJsRy1dx795zlIjUm5Ukt9YsO45Y v50Sjveoyr2Ei/c7i5Sdb+N+ePRGWKuZX1ISuLJ2kY2qonyW5iZeFhH4wdKUFrZic1hqVFZPQoqk AJI0xIFXkhseaTZOxwMRZFPOntLY+F8fATyUGra9UVZaYIMUnXsK5p6aETgsQi5Gcqb7dDcvTxHJ O2GSzOC39UVQPNqSj5mNzvwArAMgTEZpAv6qOzU9PNCg5oL6hmgqiCMLzH3JWpItCZ6KLtH7qo9y AHxb9oXi+p2SapLSDiDrDJw4+rdUL4gA5fKZ1MZx5OU6H7r7A+q7nQMgj4YzWTvFdvQqbzc6iQQU TI+qevTAm0ePEzQoYZTHEcONJkIMqyzhK7R2PRYZKfSMgnJQITpA0gvzQM9iy4d/r8NO4SgXOSAd 6HQ1znkWliO8WTpB6rGydaPGX/O1BghmeQFMIPnnDcxXS45IoTOm5wdQpQEJjaG++gt0ACDoa9Si 1/0PgAfkU+AmkE35BJCiRKTVKJX2AWAOuLTgaMqjf30A5gbifhvt678cADCO3Awd7+lt/8YdtDBq XqDO1GJWZ1I00DTUhJfC2SEhfCYyx33FwxyvHp3Xyax1UMO7gOXqlDG2CxPkt0SNzlU838/1FzBJ lfVLQXEDAAAAAElFTkSuQmCC X-Now-Playing: David Byrne's _The Knee Plays_: "Tree (Today Is An Important Occasion)" MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1R7x5p-0005cf-VU X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1317594158.14782@6ohe8kDo2YS5ooT0mH1SIQ X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 6252 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) Jos=E9 A. Romero L. writes: >> If this is just about `url-unhex-string', the obvious solution would be >> to add a CODING-SYSTEM parameter to that function. > > Yes, as I see it, that's definitely it. I think that's a reasonable thing to add, but Emacs is in a feature freeze, so it'll probably have to wait until after Emacs 24 has been released. I'll mark the bug report as "pending". --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 25 18:26:22 2011 Received: (at 6252) by debbugs.gnu.org; 25 Sep 2011 22:26:22 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R7x9S-0001mm-30 for submit@debbugs.gnu.org; Sun, 25 Sep 2011 18:26:22 -0400 Received: from mail-vx0-f172.google.com ([209.85.220.172]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R7x9Q-0001mf-3Z for 6252@debbugs.gnu.org; Sun, 25 Sep 2011 18:26:20 -0400 Received: by vcbfo11 with SMTP id fo11so2458666vcb.3 for <6252@debbugs.gnu.org>; Sun, 25 Sep 2011 15:25:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=sggfle3dLbxT7Jd91juIm87QjTEpYibMmhXlfi0Jdp0=; b=LLl0UtVRTvmBrH1QeM/q2jD3daBmi9y7fsZ7jfa/lws6uPxfibW4S2BfH+HriJzYyA pNvd5cnx14hMsPuCKFNC6CQt3wvJkq845t62dSsPgufK3jG2ZqZQevWdYfp1IJsHyOcW W33oUkDk8bvEGV0D6Xu+o3Rfuay1D11Wg+NYs= MIME-Version: 1.0 Received: by 10.52.35.180 with SMTP id i20mr1336195vdj.198.1316989539482; Sun, 25 Sep 2011 15:25:39 -0700 (PDT) Received: by 10.52.165.103 with HTTP; Sun, 25 Sep 2011 15:25:39 -0700 (PDT) In-Reply-To: References: Date: Mon, 26 Sep 2011 00:25:39 +0200 Message-ID: Subject: Re: bug#6252: Emacs does not implement URL (aka "percent") decoding correctly. From: =?UTF-8?B?Sm9zw6kgQS4gUm9tZXJvIEwu?= To: Lars Magne Ingebrigtsen Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: 6252 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.1 (---) 2011/9/26 Lars Magne Ingebrigtsen : (...) > I think that's a reasonable thing to add, but Emacs is in a feature > freeze, so it'll probably have to wait until after Emacs 24 has been > released. =C2=A0I'll mark the bug report as "pending". (...) Cool, thanks a lot :) Cheers, --=20 Jos=C3=A9 A. Romero L. escherdragon@gmail.com "We who cut mere stones must always be envisioning cathedrals." (Quarry worker's creed) From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 09 22:16:30 2012 Received: (at 6252) by debbugs.gnu.org; 10 Apr 2012 02:16:30 +0000 Received: from localhost ([127.0.0.1]:47617 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHQd8-0002rP-Qs for submit@debbugs.gnu.org; Mon, 09 Apr 2012 22:16:30 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:57496) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHQco-0002nm-Js for 6252@debbugs.gnu.org; Mon, 09 Apr 2012 22:16:15 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SHQbj-0002Vv-3O; Tue, 10 Apr 2012 04:14:59 +0200 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?Jos=E9?= A. Romero L. Subject: Re: bug#6252: Emacs does not implement URL (aka "percent") decoding correctly. References: X-Now-Playing: Marc and the Mambas's _"Untitled"_: "Margaret" Date: Tue, 10 Apr 2012 04:14:58 +0200 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Mon, 26 Sep 2011 00:16:14 +0200") Message-ID: User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1SHQbj-0002Vv-3O X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334628899.30233@WKt+GBWU3iwvdMDcI6HrTg X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 6252 Cc: 6252@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Lars Magne Ingebrigtsen writes: > I think that's a reasonable thing to add, but Emacs is in a feature > freeze, so it'll probably have to wait until after Emacs 24 has been > released. I'll mark the bug report as "pending". I've now added an optional coding-system parameter to the function to the Emacs trunk. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 09 22:16:26 2012 Received: (at control) by debbugs.gnu.org; 10 Apr 2012 02:16:27 +0000 Received: from localhost ([127.0.0.1]:47615 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHQd5-0002qn-3V for submit@debbugs.gnu.org; Mon, 09 Apr 2012 22:16:26 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:57502) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHQcq-0002oC-Ew for control@debbugs.gnu.org; Mon, 09 Apr 2012 22:16:17 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SHQbn-0002W8-Es for control@debbugs.gnu.org; Tue, 10 Apr 2012 04:15:03 +0200 Date: Tue, 10 Apr 2012 04:15:02 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #6252 X-MailScanner-ID: 1SHQbn-0002W8-Es X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334628903.7826@BF9eLfMKwH6R0cdy0pgq8Q X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) tags 6252 fixed close 6252 24.2 From unknown Mon Aug 18 02:31:12 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 08 May 2012 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator