emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [org-feed] Some problems with Remember the Milk and org-feed
@ 2010-03-04 19:36 Sven Bretfeld
  2010-03-27 11:23 ` Sven Bretfeld
  0 siblings, 1 reply; 2+ messages in thread
From: Sven Bretfeld @ 2010-03-04 19:36 UTC (permalink / raw)
  To: emacs-org

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---

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [org-feed] Some problems with Remember the Milk and org-feed
  2010-03-04 19:36 [org-feed] Some problems with Remember the Milk and org-feed Sven Bretfeld
@ 2010-03-27 11:23 ` Sven Bretfeld
  0 siblings, 0 replies; 2+ messages in thread
From: Sven Bretfeld @ 2010-03-27 11:23 UTC (permalink / raw)
  To: Sven Bretfeld; +Cc: emacs-org

Hi all

"Sven Bretfeld" <sven.bretfeld@gmx.ch> writes:

> 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.
>
> 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.

I still haven't found out how to make org-feed send the login
information automatically. Using .authinfo doesn't work. This cannot be
a big problem for an Emacs crack (what I'm not). Any ideas?

> 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.

This problem vanished as soon as I subscribed to a pro-account of
Remember the Milk.

Greetings 

Sven

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-03-27 11:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-04 19:36 [org-feed] Some problems with Remember the Milk and org-feed Sven Bretfeld
2010-03-27 11:23 ` Sven Bretfeld

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).