emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Sven Bretfeld" <sven.bretfeld@gmx.ch>
To: emacs-org <emacs-orgmode@gnu.org>
Subject: [org-feed] Some problems with Remember the Milk and org-feed
Date: 4 Mar 2010 20:36:37 +0100	[thread overview]
Message-ID: <87y6i7lvzu.fsf@gmx.ch> (raw)

Hi to all

As I have said before, I can recommend www.rememberthemilk.com (RTM) to
capture tasks and dates on an Android phone as long as MobileOrg for
Android is still under development.

I will post my setup at the bottom of this posting. Maybe it's of use
for others. 

There are still two problems I encountered:

1. Emacs needs login information to access the RTM feed. I have not
   figured out yet, how to automatize that. At the moment I type in
   username and password once after I started a new Emacs session.

2. I start org-feed every hour with a run-at-time function. Every 2nd or
   3rd time, Emacs is unable to read the feed and hangs forever, the
   minibuffer saying something like "Reading 18 bytes". I haven't
   figured out the reason for this problem yet. It might have something
   to do with the creation of the feed by the RTM page. Usually it works
   again after I have accessed the feed with another feedreader. The
   problem also seems to occur every time when the feed is completely
   empty. All I can say is that the freezing occurs before Emacs even
   had asked for the login information, i.e. directly after hitting C-c
   C-x g in a new Emacs session. However, sometimes it works well even
   in a new session. The message buffer says nothing. How can I make
   Emacs more verbose to track the problem?

Thanks for help,

Sven

Here is my setup for org-feed with RTM. After the above problems will be
solved, I will also publish this and my way of using Android together
with orgmode on Worg.

--8<---------------cut here---------------start------------->8---
(if (string-equal system-name "kamaloka")
;; Because I want only one of my (always running) computers to insert
;; the feeds. If you don't need that, delete the first line and the last
;; bracket.
(setq org-feed-alist
      '(("RTM"
         ;; The 1st feed is for tasks. I use the Inbox of RTM for that.
         ;; You have to insert @@h for :HOME: or @@o for :OFFICE:
         ;; so that the RTM entry looks like this:
         ;; `Do your laundry @@h' or
         ;; `Read Sam's report @@o'.
	 "https://www.rememberthemilk.com/atom/[username]/[number_of_the_feed]/"
	 "~/aktuell/myconf/mygtd.org"
	 "New Tasks"
	 :template "* NEXT %title"
	 :parse-feed org-feed-parse-atom-feed
	 :parse-entry org-feed-parse-atom-entry)
        ("RTM-Termine"
         ;; The 2nd feed is for dates. I use a RTM folder called `dates'
         ;; for that.
         ;; You have to insert @@ and the date and time without any
         ;; format, so that the RTM entry looks like this:
         ;; `Meeting with Sam @@10030411:15-12:45' or
         ;; `Lunch @@10030413:00.
         ;; It will be converted to <2010-03-04 11:15-12:45>
         "https://www.rememberthemilk.com/atom/[username]/[number_of_the_feed]"
         "~/aktuell/myconf/mygtd.org"
         "Termine"
         :template "* APPT %title"
         :parse-feed org-feed-parse-atom-feed
         :parse-entry org-feed-parse-atom-entry)
	 )))

(defun rtm-dateconf ()
  "This function converts the RTM feeds into the orgmode format."
  (interactive)
  (beginning-of-buffer)
    (while (re-search-forward "@@\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\([0-9]*[0-9]+:[0-9][0-9]\\)\\([-]*[0-9]*[0-9]*[:]*[0-9]*[0-9]*\\)" nil t)
      (replace-match "\n <20\\1-\\2-\\3 \\4\\5>" nil nil))
  (beginning-of-buffer)
  (while (re-search-forward "@@h" nil t)
    (replace-match ":HOME:" nil nil))
  (beginning-of-buffer)
  (while (re-search-forward "@@o" nil t)
    (replace-match ":OFFICE:" nil nil))
  (save-buffer "mygtd.org")
)

(add-hook 'org-feed-after-adding-hook 'rtm-dateconf)

;; Run org-feed once every hour.
(if (string-equal system-name "kamaloka")
(run-at-time  3600 3600 'org-feed-update-all))

--8<---------------cut here---------------end--------------->8---

             reply	other threads:[~2010-03-04 19:37 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-04 19:36 Sven Bretfeld [this message]
2010-03-27 11:23 ` [org-feed] Some problems with Remember the Milk and org-feed Sven Bretfeld

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87y6i7lvzu.fsf@gmx.ch \
    --to=sven.bretfeld@gmx.ch \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).