From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mathias Dahl Newsgroups: gmane.emacs.help Subject: http-get and GDS (Google Desktop Search) Date: Wed, 08 Feb 2006 08:13:45 +0100 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1139382967 5748 80.91.229.2 (8 Feb 2006 07:16:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 8 Feb 2006 07:16:07 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Feb 08 08:16:06 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F6jYW-00019C-3Q for geh-help-gnu-emacs@m.gmane.org; Wed, 08 Feb 2006 08:16:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F6jYU-0007x0-Dg for geh-help-gnu-emacs@m.gmane.org; Wed, 08 Feb 2006 02:15:58 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsfeed.gamma.ru!Gamma.RU!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.icl.net!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-X-Trace: individual.net kNBiC6/pO6uFdPRuF7jnzA9rOxO/+Gp4AMZenLrtt6PDofw7PN User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (windows-nt) Cancel-Lock: sha1:CNBjUhlJpRfu0rXerEEPHee+jDc= Original-Xref: shelby.stanford.edu gnu.emacs.help:137441 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:33065 Archived-At: I am trying to see if I can make a simple Emacs-interface to leverage the search functionality of Google Desktop Search. This is what I have right now: (require 'http-get) (defvar gds-url nil "GDS URL") (setq gds-url "http://127.0.0.1:4664/search&s=long_secure_token_or_whatever?q=") (defun gds-test () (http-get (concat gds-url "emacs"))) When I evaluate (gds-test) I get nothing in return. If I paste the same URL in the shell and use wget, it can fetch the data, so the URL syntaxt is correct. NOTE: The `long_secure_token_or_whatever' above is something else on my system, but I get the feeling that I should not post that publicly.