From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Bug: org-diary-class does not export to .ics (iCalendar) Date: Mon, 7 Jun 2010 05:40:01 +0200 Message-ID: References: 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: Received: from [140.186.70.92] (port=52563 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OLTC3-0003m9-1w for Emacs-orgmode@gnu.org; Sun, 06 Jun 2010 23:40:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OLTC1-00047N-Te for Emacs-orgmode@gnu.org; Sun, 06 Jun 2010 23:40:06 -0400 Received: from mail-ew0-f214.google.com ([209.85.219.214]:48276) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OLTC1-00047H-OU for Emacs-orgmode@gnu.org; Sun, 06 Jun 2010 23:40:05 -0400 Received: by ewy6 with SMTP id 6so1967013ewy.32 for ; Sun, 06 Jun 2010 20:40:04 -0700 (PDT) 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: Daniel Martins Cc: "emacs-orgmode@gnu.org" On Jun 7, 2010, at 1:46 AM, Daniel Martins wrote: > I am syncing Google Calendar with with GCalDaemon and then I noticed > that org-diary-class is completely ignored by the ics export function > > > Eg > ****** 16:00-18:00 Class B5 > <%%(org-diary-class 7 6 2010 10 9 2010 1 24 25)> > > > Does not appear in the organizer.ics as expected Hi Daniel, there is a double problem here. 1. unfortunately, sexps in time stamps like this are not supported by Org. You'd have to write it like this: ****** 16:00-18:00 Class B5 %%(org-diary-class 7 6 2010 10 9 2010 1 24 25) which would still be possible in this case. 2. However, icalendar.el does not have support for org-diary-class. So I do not have a solution for you.. - Carsten