emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Calendar export questions (ical & html)


From: Michel Blanc
Subject: Re: [Orgmode] Calendar export questions (ical & html)
Date: Tue, 28 Jul 2009 12:16:38 +0200
User-agent: Thunderbird 2.0.0.22 (X11/20090608)

Richard Riley a écrit :

> FYI and still half asleep here, I think you can do the name. here is my
> ical cust section:
> 
> 
>       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-not-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 :

========8<=======8<=======8<=======
(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"))))
========8<=======8<=======8<=======

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]