From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Tromey Newsgroups: gmane.emacs.devel Subject: Re: url library and GnuTLS, and Emacs-issued certificates Date: Sat, 26 Mar 2011 13:40:18 -0600 Message-ID: References: <87mxkojpk4.fsf@lifelogs.com> <87hbawtbq7.fsf@stupidchicken.com> <878vw8hznm.fsf_-_@lifelogs.com> <87ei5xsvl6.fsf@lifelogs.com> <87hbatofix.fsf@stupidchicken.com> <87pqpegk61.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1301168441 26601 80.91.229.12 (26 Mar 2011 19:40:41 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 26 Mar 2011 19:40:41 +0000 (UTC) Cc: emacs-devel@gnu.org To: Ted Zlatanov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Mar 26 20:40:35 2011 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.69) (envelope-from ) id 1Q3ZLe-0002gQ-2O for ged-emacs-devel@m.gmane.org; Sat, 26 Mar 2011 20:40:34 +0100 Original-Received: from localhost ([127.0.0.1]:48300 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q3ZLd-0005LL-IX for ged-emacs-devel@m.gmane.org; Sat, 26 Mar 2011 15:40:33 -0400 Original-Received: from [140.186.70.92] (port=37156 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q3ZLT-0005Jp-On for emacs-devel@gnu.org; Sat, 26 Mar 2011 15:40:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q3ZLR-0001x4-O9 for emacs-devel@gnu.org; Sat, 26 Mar 2011 15:40:23 -0400 Original-Received: from mx1.redhat.com ([209.132.183.28]:2521) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q3ZLR-0001wo-FG for emacs-devel@gnu.org; Sat, 26 Mar 2011 15:40:21 -0400 Original-Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p2QJeKUQ016532 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 26 Mar 2011 15:40:20 -0400 Original-Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p2QJeJCm011624; Sat, 26 Mar 2011 15:40:19 -0400 Original-Received: from opsy.redhat.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id p2QJeIY4027616; Sat, 26 Mar 2011 15:40:19 -0400 Original-Received: by opsy.redhat.com (Postfix, from userid 500) id 94428378D0C; Sat, 26 Mar 2011 13:40:18 -0600 (MDT) X-Attribution: Tom In-Reply-To: <87pqpegk61.fsf@lifelogs.com> (Ted Zlatanov's message of "Sat, 26 Mar 2011 07:07:02 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 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:137724 Archived-At: >>>>> "Ted" == Ted Zlatanov writes: Ted> To support HTTPS URLs, we'll at least need the appended patch (so Ted> https:// patterns are recognized). This business about (re-search-forward "^$") was just a workaround for a url oddity -- HTTP puts some headers in the buffer, but other protocols may not. It would be cleaner to fix this in the URL package itself. Then a special case for HTTP would not be needed. Ted> I also explicitly mention that file: URLs should be directory names Ted> even though it's implicit otherwise because I guarantee you, people Ted> will try it anyhow. I don't deeply care, but I think if something is documented as using URLs, then it is fine to just require them. Tom