From mboxrd@z Thu Jan 1 00:00:00 1970 From: knubee Subject: icalender export: limited number of repeated events Date: Mon, 16 Jun 2008 09:07:49 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K8Ah6-0006rw-Ud for emacs-orgmode@gnu.org; Mon, 16 Jun 2008 05:08:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K8Ah5-0006rJ-Vk for emacs-orgmode@gnu.org; Mon, 16 Jun 2008 05:08:08 -0400 Received: from [199.232.76.173] (port=34285 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K8Ah5-0006qx-Do for emacs-orgmode@gnu.org; Mon, 16 Jun 2008 05:08:07 -0400 Received: from main.gmane.org ([80.91.229.2]:53018 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K8Agz-0007BA-QY for emacs-orgmode@gnu.org; Mon, 16 Jun 2008 05:08:06 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1K8Agv-0001ub-Nr for emacs-orgmode@gnu.org; Mon, 16 Jun 2008 09:07:58 +0000 Received: from 218-186-11-3.cache.maxonline.com.sg ([218-186-11-3.cache.maxonline.com.sg]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Jun 2008 09:07:57 +0000 Received: from knubee by 218-186-11-3.cache.maxonline.com.sg with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Jun 2008 09:07:57 +0000 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 need to share some of my calendar data with co-workers. One of the biggest limitations I encounter with emacs/icalender is that it does not seem to support a limited number of repeated events. As far as I can tell, the way to specify this is with regular expressions. Example: * TODO Something every Sunday, 10:00-12:00, for 2 months SCHEDULED: <%%(and (= (calendar-day-of-week date) 7) (diary-block 1 6 200 31 7 2008)) 10:00-12:00> I have not been able to figure out how to export these to an .ics file. Google calendar, on the other hand, will export something like the following: BEGIN:VEVENT DTSTART:20080601T100000 DTEND:20080601T120000 RRULE:FREQ=DAILY;UNTIL=20080731 Has anyone else managed to get a limited number of repeating tasks/events to export correctly to .ics format? thanks.