From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michel Blanc Subject: Re: Calendar export questions (ical & html) Date: Tue, 28 Jul 2009 12:16:38 +0200 Message-ID: <4A6ED006.2050001@erasme.org> References: <4A6D97BC.8020704@erasme.org> <87prblvf0x.fsf@bzg.ath.cx> <4a6ea90b.0637560a.56c8.ffff9a19@mx.google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MVjjd-0000Fv-Qo for emacs-orgmode@gnu.org; Tue, 28 Jul 2009 06:16:41 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MVjjd-0000Fc-1n for emacs-orgmode@gnu.org; Tue, 28 Jul 2009 06:16:41 -0400 Received: from [199.232.76.173] (port=34707 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MVjjc-0000FQ-V3 for emacs-orgmode@gnu.org; Tue, 28 Jul 2009 06:16:40 -0400 Received: from mail0.erasme.org ([213.245.116.212]:45340) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MVjjc-0005BB-IN for emacs-orgmode@gnu.org; Tue, 28 Jul 2009 06:16:40 -0400 In-Reply-To: <4a6ea90b.0637560a.56c8.ffff9a19@mx.google.com> 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: Richard Riley Cc: Bastien , emacs-orgmode@gnu.org Richard Riley a =E9crit : > FYI and still half asleep here, I think you can do the name. here is my > ical cust section: >=20 >=20 > org-combined-agenda-icalendar-file "~/webs/richardriley/sync/org.= ics" > org-icalendar-include-todo t > org-icalendar-combined-name (quote "Richard Riley ORG") > org-icalendar-use-scheduled '(todo-due event-if-todo event-if-no= t-todo) > org-icalendar-use-deadline '(todo-due event-if-todo event-if-not-= todo) > org-icalendar-timezone "Europe/Berlin" > org-icalendar-include-bbdb-anniversaries t > ; org-icalendar-timezone nil > org-icalendar-store-UID t Hey Richard, Woohoo it seems that this solves everything ! I had to fiddle a bit (again, my Elisp abilities are more than lame) to make it work for my 2 agendas. Here is my .emacs section if it can help anyone : =3D=3D=3D=3D=3D=3D=3D=3D8<=3D=3D=3D=3D=3D=3D=3D8<=3D=3D=3D=3D=3D=3D=3D8<=3D= =3D=3D=3D=3D=3D=3D (setq org-agenda-custom-commands '(("h" "Home-related tasks" ((tags "@home") (tags-todo "@home")) ((org-agenda-ndays 300) (org-icalendar-include-todo t) (org-icalendar-combined-name "Perso") (org-icalendar-use-scheduled '(todo-due event-if-todo event-if-not-todo)) (org-icalendar-use-deadline '(todo-due event-if-todo event-if-not-todo))) ("~/org/homecal.ics" "~/org/homecal.html")) ("w" "Work-related tasks" ((tags "@work") (tags-todo "@work")) ((org-agenda-ndays 300) (org-icalendar-include-todo t) (org-icalendar-combined-name "Work") (org-icalendar-use-scheduled '(todo-due event-if-todo event-if-not-todo)) (org-icalendar-use-deadline '(todo-due event-if-todo event-if-not-todo))) ("~/org/workcal.ics" "~/org/workcal.html")))) =3D=3D=3D=3D=3D=3D=3D=3D8<=3D=3D=3D=3D=3D=3D=3D8<=3D=3D=3D=3D=3D=3D=3D8<=3D= =3D=3D=3D=3D=3D=3D Now TODOs dates are exported (DEADLINEs and SCHEDULED) and I realize how late I am in my work playing too much with Org mode :) I'll drop HTML export now that ICS works perfectly. Too bad GoogleAgenda refresh is so random... Thanks a lot Richard for the tips, M --=20 Michel Blanc