From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Scala Subject: [Org-mode] feed.el Date: Tue, 6 Jul 2010 21:53:44 -0500 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0328252178==" Return-path: Received: from [140.186.70.92] (port=59828 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWKlh-00040Z-Pk for emacs-orgmode@gnu.org; Tue, 06 Jul 2010 22:53:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OWKlg-0004e1-Do for emacs-orgmode@gnu.org; Tue, 06 Jul 2010 22:53:49 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:43875) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OWKlg-0004dt-94 for emacs-orgmode@gnu.org; Tue, 06 Jul 2010 22:53:48 -0400 Received: by wyj26 with SMTP id 26so1183232wyj.0 for ; Tue, 06 Jul 2010 19:53:46 -0700 (PDT) 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 --===============0328252178== Content-Type: multipart/alternative; boundary=0016e649d5dc38bf99048ac347cb --0016e649d5dc38bf99048ac347cb Content-Type: text/plain; charset=ISO-8859-1 Hi, all. I was trying out feed.el today, and I've got an error that I don't understand. Following the docs, I put this in my .emacs: (setq org-feed-alist '(("Slashdot" "http://rss.slashdot.org/Slashdot/slashdot" "~/org/feeds.org" "Slashdot Entries"))) I created a file in ~/org called feeds.org and in that file did C-c C-x g. A headline for Slashdot Entries appeared. But when I do C-c C-x g on that entry I get the following message: "Symbol's value as variable is void: xml-entity-alist" Nowhere do I find any information about setting that variable. Any ideas? (I'm using the latest development version of Org, compiled from git sources today). Thanks, Mark --0016e649d5dc38bf99048ac347cb Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi, all.

I was trying out feed.el today, and I've got an error t= hat I don't understand.

Following the docs, I put this in my .em= acs:

(setq org-feed-alist
=A0=A0=A0=A0=A0=A0= =A0=A0=A0 '(("Slashdot"
=A0=A0=A0 =A0=A0=A0=A0 "http://rss.slashdot.org/Slashdot/slashdot"
=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0 "~/org/feeds.org= " "Slashdot Entries")))

I created a file in ~/org called feeds.org= and in that file did C-c C-x g.=A0 A headline for Slashdot Entries app= eared.=A0 But when I do C-c C-x g on that entry I get the following message= :=A0 "Symbol's value as variable is void: xml-entity-alist"
Nowhere do I find any information about setting that variable.=A0 Any i= deas? (I'm using the latest development version of Org, compiled from g= it sources today).

Thanks,
Mark
--0016e649d5dc38bf99048ac347cb-- --===============0328252178== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0328252178==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH 1/2] Load XML library if necessary. Date: Wed, 7 Jul 2010 08:22:23 +0200 Message-ID: <1278483744-8255-1-git-send-email-dmaus@ictsoc.de> References: Return-path: Received: from [140.186.70.92] (port=57679 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWO24-0007PT-0j for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:22:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OWO21-00075L-4c for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:22:55 -0400 Received: from mysql1.xlhost.de ([213.202.242.106]:56840) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OWO20-00074o-W2 for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:22:53 -0400 In-Reply-To: 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 * org-feed.el (org-feed-unescape, org-feed-parse-atom-feed): Load XML library if necessary. Function that use xml.el must require 'xml to make sure it is loaded at runtime. --- lisp/org-feed.el | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/lisp/org-feed.el b/lisp/org-feed.el index 999bfd8..e41ad97 100644 --- a/lisp/org-feed.el +++ b/lisp/org-feed.el @@ -270,6 +270,7 @@ have been saved." (defun org-feed-unescape (s) "Unescape protected entities in S." + (require 'xml) (let ((re (concat "&\\(" (mapconcat 'car xml-entity-alist "\\|") "\\);"))) @@ -630,6 +631,7 @@ containing the properties `:guid' and `:item-full-text'. The `:item-full-text' property actually contains the sexp formatted as a string, not the original XML data." + (require 'xml) (with-current-buffer buffer (widen) (let ((feed (car (xml-parse-region (point-min) (point-max))))) -- 1.7.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH 2/2] Change indentation to match coding style guideline. Date: Wed, 7 Jul 2010 08:22:24 +0200 Message-ID: <1278483744-8255-2-git-send-email-dmaus@ictsoc.de> References: Return-path: Received: from [140.186.70.92] (port=57676 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWO23-0007PS-Jm for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:22:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OWO22-00075c-2G for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:22:55 -0400 Received: from mysql1.xlhost.de ([213.202.242.106]:56856) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OWO21-00075S-LL for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:22:54 -0400 In-Reply-To: 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 * org-feed.el: Change indentation to match coding style guideline. Cosmetic changes. --- lisp/org-feed.el | 88 ++++++++++++++++++++++++++++++------------------------ 1 files changed, 49 insertions(+), 39 deletions(-) diff --git a/lisp/org-feed.el b/lisp/org-feed.el index e41ad97..2af97e5 100644 --- a/lisp/org-feed.el +++ b/lisp/org-feed.el @@ -166,10 +166,11 @@ Here are the keyword-value pair allows in `org-feed-alist'. When the handler is called, point will be at the feed headline. :parse-feed function - This function gets passed a buffer, and should return a list of entries, - each being a property list containing the `:guid' and `:item-full-text' - keys. The default is `org-feed-parse-rss-feed'; `org-feed-parse-atom-feed' - is an alternative. + This function gets passed a buffer, and should return a list + of entries, each being a property list containing the + `:guid' and `:item-full-text' keys. The default is + `org-feed-parse-rss-feed'; `org-feed-parse-atom-feed' is an + alternative. :parse-entry function This function gets passed an entry as returned by the parse-feed @@ -200,12 +201,12 @@ Here are the keyword-value pair allows in `org-feed-alist'. (list :inline t :tag "Changed items" (const :changed-handler) (symbol :tag "Handler Function")) - (list :inline t :tag "Parse Feed" - (const :parse-feed) - (symbol :tag "Parse Feed Function")) - (list :inline t :tag "Parse Entry" - (const :parse-entry) - (symbol :tag "Parse Entry Function")) + (list :inline t :tag "Parse Feed" + (const :parse-feed) + (symbol :tag "Parse Feed Function")) + (list :inline t :tag "Parse Entry" + (const :parse-entry) + (symbol :tag "Parse Entry Function")) ))))) (defcustom org-feed-drawer "FEEDSTATUS" @@ -314,10 +315,10 @@ it can be a list structured like an entry in `org-feed-alist'." org-feed-default-template)) (drawer (or (nth 1 (memq :drawer feed)) org-feed-drawer)) - (parse-feed (or (nth 1 (memq :parse-feed feed)) - 'org-feed-parse-rss-feed)) - (parse-entry (or (nth 1 (memq :parse-entry feed)) - 'org-feed-parse-rss-entry)) + (parse-feed (or (nth 1 (memq :parse-feed feed)) + 'org-feed-parse-rss-feed)) + (parse-entry (or (nth 1 (memq :parse-entry feed)) + 'org-feed-parse-rss-entry)) feed-buffer inbox-pos new-formatted entries old-status status new changed guid-alist e guid olds) (setq feed-buffer (org-feed-get-feed url)) @@ -333,10 +334,11 @@ it can be a list structured like an entry in `org-feed-alist'." (setq old-status (org-feed-read-previous-status inbox-pos drawer)) ;; Add the "handled" status to the appropriate entries (setq entries (mapcar (lambda (e) - (setq e (plist-put e :handled - (nth 1 (assoc - (plist-get e :guid) - old-status))))) + (setq e + (plist-put e :handled + (nth 1 (assoc + (plist-get e :guid) + old-status))))) entries)) ;; Find out which entries are new and which are changed (dolist (e entries) @@ -637,9 +639,9 @@ formatted as a string, not the original XML data." (let ((feed (car (xml-parse-region (point-min) (point-max))))) (mapcar (lambda (entry) - (list - :guid (car (xml-node-children (car (xml-get-children entry 'id)))) - :item-full-text (prin1-to-string entry))) + (list + :guid (car (xml-node-children (car (xml-get-children entry 'id)))) + :item-full-text (prin1-to-string entry))) (xml-get-children feed 'entry))))) (defun org-feed-parse-atom-entry (entry) @@ -647,28 +649,36 @@ formatted as a string, not the original XML data." (let ((xml (car (read-from-string (plist-get entry :item-full-text))))) ;; Get first . (setq entry (plist-put entry :link - (xml-get-attribute - (car (xml-get-children xml 'link)) - 'href))) + (xml-get-attribute + (car (xml-get-children xml 'link)) + 'href))) ;; Add as :title. (setq entry (plist-put entry :title - (org-feed-unescape (car (xml-node-children - (car (xml-get-children xml 'title))))))) + (org-feed-unescape + (car (xml-node-children + (car (xml-get-children xml 'title))))))) (let* ((content (car (xml-get-children xml 'content))) - (type (xml-get-attribute-or-nil content 'type))) + (type (xml-get-attribute-or-nil content 'type))) (when content - (cond - ((string= type "text") - ;; We like plain text. - (setq entry (plist-put entry :description (org-feed-unescape (car (xml-node-children content)))))) - ((string= type "html") - ;; TODO: convert HTML to Org markup. - (setq entry (plist-put entry :description (org-feed-unescape (car (xml-node-children content)))))) - ((string= type "xhtml") - ;; TODO: convert XHTML to Org markup. - (setq entry (plist-put entry :description (prin1-to-string (xml-node-children content))))) - (t - (setq entry (plist-put entry :description (format "Unknown '%s' content." type))))))) + (cond + ((string= type "text") + ;; We like plain text. + (setq entry (plist-put entry :description + (org-feed-unescape + (car (xml-node-children content)))))) + ((string= type "html") + ;; TODO: convert HTML to Org markup. + (setq entry (plist-put entry :description + (org-feed-unescape + (car (xml-node-children content)))))) + ((string= type "xhtml") + ;; TODO: convert XHTML to Org markup. + (setq entry (plist-put entry :description + (prin1-to-string + (xml-node-children content))))) + (t + (setq entry (plist-put entry :description + (format "Unknown '%s' content." type))))))) entry)) (provide 'org-feed) -- 1.7.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus <dmaus@ictsoc.de> Subject: Re: [Org-mode] feed.el Date: Wed, 07 Jul 2010 08:25:50 +0200 Message-ID: <87iq4rzu35.wl%dmaus@ictsoc.de> References: <AANLkTinBmSIrgzNfRORw0ylwngk2kf86DD2uL7CElPy9@mail.gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/mixed; boundary="===============0469254910==" Return-path: <emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org> Received: from [140.186.70.92] (port=52182 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWO5F-0008OR-Ja for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:26:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from <dmaus@ictsoc.de>) id 1OWO5D-0007fI-T6 for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:26:13 -0400 Received: from mysql1.xlhost.de ([213.202.242.106]:42783) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from <dmaus@ictsoc.de>) id 1OWO5D-0007fC-MA for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:26:11 -0400 In-Reply-To: <AANLkTinBmSIrgzNfRORw0ylwngk2kf86DD2uL7CElPy9@mail.gmail.com> List-Id: "General discussions about Org-mode." <emacs-orgmode.gnu.org> List-Unsubscribe: <http://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=unsubscribe> List-Archive: <http://lists.gnu.org/archive/html/emacs-orgmode> List-Post: <mailto:emacs-orgmode@gnu.org> List-Help: <mailto:emacs-orgmode-request@gnu.org?subject=help> List-Subscribe: <http://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=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: Mark Scala <markscala@gmail.com> Cc: emacs-orgmode@gnu.org --===============0469254910== Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jul__7_08:25:50_2010-1"; micalg=pgp-sha256; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit --pgp-sign-Multipart_Wed_Jul__7_08:25:50_2010-1 Content-Type: text/plain; charset=US-ASCII Mark Scala wrote: >I created a file in ~/org called feeds.org and in that file did C-c C-x g. >A headline for Slashdot Entries appeared. But when I do C-c C-x g on that >entry I get the following message: "Symbol's value as variable is void: >xml-entity-alist" >Nowhere do I find any information about setting that variable. Any ideas? >(I'm using the latest development version of Org, compiled from git sources >today). The variable is defined in the XML library xml.el and the error occurs, because this library wasn't loaded when Org parsed the feed. The patch I've just send should fix this: xml.el is part of Emacs, so the functions the use xml.el will load it if necessary (i.e. it wasn't loaded before). HTH -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber.... dmjena@jabber.org Email..... dmaus@ictsoc.de --pgp-sign-Multipart_Wed_Jul__7_08:25:50_2010-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iF4EABEIAAYFAkw0He4ACgkQma24O1pEeOZhsQD/T0J5pxEeNbOEEJI+h+jVS0yH sG09Tp+B4wu+9WWScxEBANH1rvKhtAzBfsLrtSiDRXg2rfw4HQL6a8SVVCefgB3V =vikg -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jul__7_08:25:50_2010-1-- --===============0469254910== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0469254910==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik <carsten.dominik@gmail.com> Subject: Re: [PATCH 1/2] Load XML library if necessary. Date: Wed, 7 Jul 2010 08:50:48 +0200 Message-ID: <88DBF62D-1CCD-4772-8E68-067586049CE0@gmail.com> References: <AANLkTinBmSIrgzNfRORw0ylwngk2kf86DD2uL7CElPy9@mail.gmail.com> <1278483744-8255-1-git-send-email-dmaus@ictsoc.de> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: <emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org> Received: from [140.186.70.92] (port=35319 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWOT8-0004ex-1k for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:50:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from <carsten.dominik@gmail.com>) id 1OWOT6-0002z2-La for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:50:53 -0400 Received: from mail-ey0-f169.google.com ([209.85.215.169]:35056) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from <carsten.dominik@gmail.com>) id 1OWOT6-0002yt-Fx for emacs-orgmode@gnu.org; Wed, 07 Jul 2010 02:50:52 -0400 Received: by eydd26 with SMTP id d26so194597eyd.0 for <emacs-orgmode@gnu.org>; Tue, 06 Jul 2010 23:50:51 -0700 (PDT) In-Reply-To: <1278483744-8255-1-git-send-email-dmaus@ictsoc.de> List-Id: "General discussions about Org-mode." <emacs-orgmode.gnu.org> List-Unsubscribe: <http://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=unsubscribe> List-Archive: <http://lists.gnu.org/archive/html/emacs-orgmode> List-Post: <mailto:emacs-orgmode@gnu.org> List-Help: <mailto:emacs-orgmode-request@gnu.org?subject=help> List-Subscribe: <http://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=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: David Maus <dmaus@ictsoc.de> Cc: emacs-orgmode@gnu.org Appied, thanks. - Carsten On Jul 7, 2010, at 8:22 AM, David Maus wrote: > * org-feed.el (org-feed-unescape, org-feed-parse-atom-feed): Load XML > library if necessary. > > Function that use xml.el must require 'xml to make sure it is loaded > at runtime. > --- > lisp/org-feed.el | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/lisp/org-feed.el b/lisp/org-feed.el > index 999bfd8..e41ad97 100644 > --- a/lisp/org-feed.el > +++ b/lisp/org-feed.el > @@ -270,6 +270,7 @@ have been saved." > > (defun org-feed-unescape (s) > "Unescape protected entities in S." > + (require 'xml) > (let ((re (concat "&\\(" > (mapconcat 'car xml-entity-alist "\\|") > "\\);"))) > @@ -630,6 +631,7 @@ containing the properties `:guid' and `:item- > full-text'. > > The `:item-full-text' property actually contains the sexp > formatted as a string, not the original XML data." > + (require 'xml) > (with-current-buffer buffer > (widen) > (let ((feed (car (xml-parse-region (point-min) (point-max))))) > -- > 1.7.1 > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode - Carsten From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik <cdominik@newartisans.com> Subject: Patchwork: Patch 122 Accepted Date: Wed, 7 Jul 2010 08:47:56 +0200 (CEST) Message-ID: <20100707064756.0A3241A3B2F9@carsten-dominiks-macbook-pro.local> References: <1278483744-8255-2-git-send-email-dmaus@ictsoc.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: <emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org> Received: from [140.186.70.92] (port=45679 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OXzWC-0001Fn-P3 for emacs-orgmode@gnu.org; Sun, 11 Jul 2010 12:36:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from <cdominik@newartisans.com>) id 1OXzWB-0004Xy-F1 for emacs-orgmode@gnu.org; Sun, 11 Jul 2010 12:36:40 -0400 Received: from [82.192.156.169] (port=56773 helo=carsten-dominiks-macbook-pro.local) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from <cdominik@newartisans.com>) id 1OXzWB-0004XT-8w for emacs-orgmode@gnu.org; Sun, 11 Jul 2010 12:36:39 -0400 List-Id: "General discussions about Org-mode." <emacs-orgmode.gnu.org> List-Unsubscribe: <http://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=unsubscribe> List-Archive: <http://lists.gnu.org/archive/html/emacs-orgmode> List-Post: <mailto:emacs-orgmode@gnu.org> List-Help: <mailto:emacs-orgmode-request@gnu.org?subject=help> List-Subscribe: <http://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=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 Patch 122 (http://patchwork.newartisans.com/patch/122/) is now Accepted. This relates to the following submission: http://mid.gmane.org/%3C1278483744-8255-2-git-send-email-dmaus%40ictsoc.de%3E