From mboxrd@z Thu Jan 1 00:00:00 1970 From: David LeBauer Subject: exporting atom/rss feeds; org-feed-alist not downloading anything from www.rememberthemilk.com Date: Fri, 28 Jan 2011 18:06:07 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=56630 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PiyKR-0007zA-1u for emacs-orgmode@gnu.org; Fri, 28 Jan 2011 19:06:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PiyKP-0003fJ-Sq for emacs-orgmode@gnu.org; Fri, 28 Jan 2011 19:06:11 -0500 Received: from mail-bw0-f41.google.com ([209.85.214.41]:56080) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PiyKP-0003f6-NE for emacs-orgmode@gnu.org; Fri, 28 Jan 2011 19:06:09 -0500 Received: by bwz16 with SMTP id 16so3976434bwz.0 for ; Fri, 28 Jan 2011 16:06:07 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I would like to export my rememberthemilk.org tasks to org-mode. I have the following in my .emacs, following the recommendation here: http://stackoverflow.com/q/2138947/199217 ;; sync org-mode with rememberthemilk ;; (require org-feed) (setq org-feed-alist '(("Remember The Milk" "http://www.rememberthemilk.com/rss/dlebauer/" "~/org/rtm.org" "Remember The Milk" :template "* TODO %title\n %a\n " ))) However, when I use C-x C-c g, I get the message: no new entries from 1 feed. And none of the information is synced if I enter the feed into my browser, I can see the html/rss markup with my tasks embedded, but none of it is imported to my rtm.org file except for the feed name. Am I doing something wrong? I would be satisfied if I could just convert the raw .html to .org Also, is there any .emacs elisp that I could use to avoid having to enter my password each time? Thank you.