From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: org-mode and Google Calendar Date: Fri, 28 Sep 2007 16:35:03 +0200 Message-ID: <87abr6zwmg.fsf@bzg.ath.cx> References: <87d4w3s1pb.fsf@myhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IbGw1-0006ji-9r for emacs-orgmode@gnu.org; Fri, 28 Sep 2007 10:35:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IbGvz-0006fW-65 for emacs-orgmode@gnu.org; Fri, 28 Sep 2007 10:35:16 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IbGvy-0006f8-W1 for emacs-orgmode@gnu.org; Fri, 28 Sep 2007 10:35:15 -0400 Received: from hu-out-0506.google.com ([72.14.214.234]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IbGvy-0000q4-GS for emacs-orgmode@gnu.org; Fri, 28 Sep 2007 10:35:14 -0400 Received: by hu-out-0506.google.com with SMTP id 23so1568239huc for ; Fri, 28 Sep 2007 07:35:13 -0700 (PDT) In-Reply-To: <87d4w3s1pb.fsf@myhost.localdomain> (cezar@mixandgo.ro's message of "Fri, 28 Sep 2007 10:12:32 +0300") 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 Cezar writes: > Is there any way to sync org-mode with google calendar ? > And if not, is this planed/possible ? I'm not really *syncing* my Org agenda files with Google Calendar. I don't use Google Calendar to add new events; I just use it to check events that I have in my Org agenda files. So what I basically do, is that I export my agenda files to a single .ics file, then ask Google to import this as a new calendar. I've cron'ed this script: #!/bin/bash /usr/local/bin/emacs --batch --eval \ "(progn (load-file \"~/elisp/testing/org/org.el\") \ (load-file \"~/elisp/testing/org/org-install.el\") \ (load-file \"~/elisp/config/org-batch-config.el\") \ (setq org-combined-agenda-icalendar-file \"~/org/cal/org.ics\") (setq org-agenda-files (quote (\"~/org/bzg.org\"))))" \ -f org-export-icalendar-combine-agenda-file It keeps an updated version of org.ics on my computer. Then I rsync this file with the web location Google is aware of. For me it seems much easier to always modify events from Org and then keep some web interface updated, than to try to achieve real syncing... -- Bastien