From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xebar Saram Subject: anyone syncing orgmode calendar with google cal, and if so how? Date: Mon, 5 Oct 2015 09:46:12 +0300 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a11393cbc7c2a67052155debf Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56654) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZizXK-000702-6J for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 02:46:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZizXI-0000RL-U2 for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 02:46:14 -0400 Received: from mail-yk0-x233.google.com ([2607:f8b0:4002:c07::233]:36027) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZizXI-0000RC-NM for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 02:46:12 -0400 Received: by ykdt18 with SMTP id t18so162126420ykd.3 for ; Sun, 04 Oct 2015 23:46:12 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org mode --001a11393cbc7c2a67052155debf Content-Type: text/plain; charset=UTF-8 Hi all i was wondering if anyone was syncing orgmode calendar with google cal, and if so how? i tried this https://github.com/myuhe/org-gcal.el/issues which gave errors all the time and thus stopped being usable im looking for a robust solution. any ideas? best Z --001a11393cbc7c2a67052155debf Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hi all

i was wondering if anyone was sy= ncing orgmode calendar with google cal, and if so how? i tried this


which gave errors all the time and thus stopped being usable
im looking for a robust solution. any ideas?

best

Z
--001a11393cbc7c2a67052155debf-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: jorge.alfaro-murillo@yale.edu (Jorge A. Alfaro-Murillo) Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Mon, 05 Oct 2015 11:17:13 -0400 Message-ID: <87a8rxmjk6.fsf@yale.edu> References: Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49863) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj7WD-0000IS-So for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 11:17:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zj7W8-00024N-SE for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 11:17:37 -0400 Received: from plane.gmane.org ([80.91.229.3]:40579) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj7W8-00023X-Gx for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 11:17:32 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Zj7Vx-0003vO-SR for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 17:17:22 +0200 Received: from 130.132.236.141 ([130.132.236.141]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 05 Oct 2015 17:17:21 +0200 Received: from jorge.alfaro-murillo by 130.132.236.141 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 05 Oct 2015 17:17:21 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Xebar Saram writes: > i was wondering if anyone was syncing orgmode calendar with > google cal, and if so how? i tried this > > https://github.com/myuhe/org-gcal.el/issues > > which gave errors all the time and thus stopped being usable > > im looking for a robust solution. any ideas? I export the agenda using org-icalendar-combine-agenda-files. If you have access to a server, it is enough to point org-icalendar-combined-agenda-file to the right location in your server and then adding the ics file location in google calendar (Other calendars/Add by URL). You can automate this with a timer: #+BEGIN_SRC emacs-lisp (org-icalendar-combined-agenda-file "~/public_html/calendar.ics") (run-with-idle-timer (* 60 60) t 'org-icalendar-combine-agenda-files) #+END_SRC If you do not have access to a server, you could use github (https://pages.github.com/) or bitbucket (https://confluence.atlassian.com/bitbucket/publishing-a-website-on-bitbucket-221449776.html) to create a website for your account. Then you can point org-icalendar-combined-agenda-file to the repo of your website and commit and push every time that you export the agenda to the ics file. In this case change org-icalendar-combined-agenda-file accordingly. #+BEGIN_SRC emacs-lisp (org-icalendar-combined-agenda-file "/path/to/personal/website/repo/calendar.ics") #+END_SRC If you do not like timers, you can also automate the process creating an sh file: #+BEGIN_EXAMPLE #!/bin/bash emacsclient -a '' -e "(org-icalendar-combine-agenda-files nil)" cd /path/to/personal/website/repo git add calendar.ics git commit -m "Update calendar" git push #+END_EXAMPLE And then using a cronjob. Best, -- Jorge. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Mon, 5 Oct 2015 16:09:21 +0100 Message-ID: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47551) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj9YY-000285-MD for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 13:28:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zj9YV-0004c6-F6 for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 13:28:10 -0400 Received: from mail-am1on0135.outbound.protection.outlook.com ([157.56.112.135]:3328 helo=emea01-am1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj9YV-0004Yo-6v for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 13:28:07 -0400 In-Reply-To: (Xebar Saram's message of "Mon, 5 Oct 2015 09:46:12 +0300") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Xebar Saram Cc: org mode On Monday, 5 Oct 2015 at 09:46, Xebar Saram wrote: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this I sync org with Google's calendar using MobileOrg on my phone as the intermediary. Generally works quite well. I would be using MobileOrg regardless so calendar synchronisation is a very nice bonus. -- : Eric S Fraga (0xFFFCF67D), Emacs 24.5.1, Org release_8.3.1-203-g4ca3d3 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer M Krug Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Mon, 05 Oct 2015 19:45:40 +0200 Message-ID: References: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52853) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj9pl-0000LY-Up for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 13:45:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zj9pi-0006oH-Od for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 13:45:57 -0400 Received: from mail-wi0-f175.google.com ([209.85.212.175]:35147) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj9pi-0006o5-J6 for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 13:45:54 -0400 Received: by wicge5 with SMTP id ge5so131678976wic.0 for ; Mon, 05 Oct 2015 10:45:54 -0700 (PDT) In-Reply-To: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> (Eric S. Fraga's message of "Mon, 5 Oct 2015 16:09:21 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Xebar Saram Cc: org mode --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Eric S Fraga writes: > On Monday, 5 Oct 2015 at 09:46, Xebar Saram wrote: >> Hi all >> >> i was wondering if anyone was syncing orgmode calendar with google cal, = and >> if so how? i tried this > > I sync org with Google's calendar using MobileOrg on my phone as the > intermediary. Generally works quite well. I would be using MobileOrg > regardless so calendar synchronisation is a very nice bonus. Interesting - Android or iOS? if iOS - I would like to know how you do it. Cheers, Rainer =2D-=20 Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,= UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology Stellenbosch University South Africa Tel : +33 - (0)9 53 10 27 44 Cell: +33 - (0)6 85 62 59 98 Fax : +33 - (0)9 58 10 27 44 Fax (D): +49 - (0)3 21 21 25 22 44 email: Rainer@krugs.de Skype: RMkrug PGP: 0x0F52F982 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBCAAGBQJWErdNAAoJENvXNx4PUvmCWv4IALaiVsBWtOLW6D1FQ22CS3eM XdeaQdo8fnpvGyfHh3Y1cecshD1Dta3lLosraMgfA3lJawFXlwsxsE1Rvgj8adjA p6GHnsZmmtQ/ReLlyryeoHbl1gDiSteLslWvd0CREoGokJxxXWUQlRl5TClciALe 6H/71bBnz2jpz1x1n2G9XPEu9iVHXmQU1LXIxbt+SP7pODFlIo5SDgAkLU3pYbMQ VINtF87BDWzYGyFsPc5revJN+NZ90dZqCCV2T8jAjWIQmmjjd4wrUiCO8m255Jq1 3oTBZUPATfKAuQHyfkhOHgl5RU/Gi5cyMy0ecWRGH/MqFlfvFzVG51Q5fDmsodQ= =vQH2 -----END PGP SIGNATURE----- --=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabrice Popineau Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Mon, 5 Oct 2015 20:37:05 +0200 Message-ID: References: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> Reply-To: fabrice.popineau@centralesupelec.fr Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a113d1f50fe537f05215fcd0f Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41345) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjAds-0001Xl-2T for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 14:37:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjAdn-0002FA-Va for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 14:37:43 -0400 Received: from smtp2.supelec.fr ([160.228.120.31]:35347) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjAdn-0002AP-NL for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 14:37:39 -0400 Received: from localhost (localhost [127.0.0.1]) by smtp2.supelec.fr (Postfix) with ESMTP id E7EF98013D for ; Mon, 5 Oct 2015 20:37:26 +0200 (CEST) Received: from smtp2.supelec.fr ([127.0.0.1]) by localhost (smtp2.supelec.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 60Zj1hNPx1bd for ; Mon, 5 Oct 2015 20:37:26 +0200 (CEST) Received: from mail-oi0-f54.google.com (mail-oi0-f54.google.com [209.85.218.54]) by smtp2.supelec.fr (Postfix) with ESMTPSA id 43AE4801AB for ; Mon, 5 Oct 2015 20:37:26 +0200 (CEST) Received: by oibi136 with SMTP id i136so96189024oib.3 for ; Mon, 05 Oct 2015 11:37:25 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Rainer M Krug Cc: Xebar Saram , org mode --001a113d1f50fe537f05215fcd0f Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable I have build a merge of elisp code from 2 people (org-gcal and google-calendar) and enhanced it a little bit. I can sync both ways from Emacs. The code is ugly, so I won't publish it. But if anybody wants to clean it up and make it more solid, I'll send it. Fabrice 2015-10-05 19:45 GMT+02:00 Rainer M Krug : > Eric S Fraga writes: > > > On Monday, 5 Oct 2015 at 09:46, Xebar Saram wrote: > >> Hi all > >> > >> i was wondering if anyone was syncing orgmode calendar with google cal= , > and > >> if so how? i tried this > > > > I sync org with Google's calendar using MobileOrg on my phone as the > > intermediary. Generally works quite well. I would be using MobileOrg > > regardless so calendar synchronisation is a very nice bonus. > > Interesting - Android or iOS? if iOS - I would like to know how you do > it. > > Cheers, > > Rainer > > -- > Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation > Biology, UCT), Dipl. Phys. (Germany) > > Centre of Excellence for Invasion Biology > Stellenbosch University > South Africa > > Tel : +33 - (0)9 53 10 27 44 > Cell: +33 - (0)6 85 62 59 98 > Fax : +33 - (0)9 58 10 27 44 > > Fax (D): +49 - (0)3 21 21 25 22 44 > > email: Rainer@krugs.de > > Skype: RMkrug > > PGP: 0x0F52F982 > --=20 Fabrice Popineau ----------------------------- SUPELEC D=C3=A9partement Informatique 3, rue Joliot Curie 91192 Gif/Yvette Cedex Tel direct : +33 (0) 169851950 Standard : +33 (0) 169851212 ------------------------------ --001a113d1f50fe537f05215fcd0f Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
I have build a merge of elisp code from 2 people (org-gcal= and google-calendar) and enhanced it a little bit.
I can sync both way= s from Emacs.
The code is ugly, so I won't publish it. But if= anybody wants to clean it up and make it more solid, I'll send it.

Fabrice

2015-10-05 19:45 GMT+02:00 Rainer M Krug <Rainer@kr= ugs.de>:
E= ric S Fraga <e.fraga@ucl.ac.uk&= gt; writes:

> On Monday,=C2=A0 5 Oct 2015 at 09:46, Xebar Saram wrote:
>> Hi all
>>
>> i was wondering if anyone was syncing orgmode calendar with google= cal, and
>> if so how? i tried this
>
> I sync org with Google's calendar using MobileOrg on my phone as t= he
> intermediary.=C2=A0 Generally works quite well.=C2=A0 I would be using= MobileOrg
> regardless so calendar synchronisation is a very nice bonus.

Interesting - Android or iOS? if iOS - I would like to know how you = do
it.

Cheers,

Rainer

--
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,= UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Stellenbosch University
South Africa

Tel :=C2=A0 =C2=A0 =C2=A0 =C2=A0+33 - (0)9 53 10 27 44
Cell:=C2=A0 =C2=A0 =C2=A0 =C2=A0+33 - (0)6 85 62 59 98
Fax :=C2=A0 =C2=A0 =C2=A0 =C2=A0+33 - (0)9 58 10 27 44

Fax (D):=C2=A0 =C2=A0 +49 - (0)3 21 21 25 22 44

email:=C2=A0 =C2=A0 =C2=A0 Rainer@krugs.= de

Skype:=C2=A0 =C2=A0 =C2=A0 RMkrug

PGP: 0x0F52F982



--
Fabrice Popineau
-----------------------------
SUPELEC
D=C3=A9partement Informatique
3, rue Jol= iot Curie
91192 Gif/Yvette Cedex
Tel direct : +33 (0) 1= 69851950
Standard : +33 (0) 169851212
-----------------= -------------

--001a113d1f50fe537f05215fcd0f-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Richardson Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Mon, 05 Oct 2015 16:36:03 -0400 Message-ID: <87pp0t6ojw.fsf@weasel.jamestechnotes.com> References: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39362) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjCUS-0002xK-Uf for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 16:36:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjCUP-0007sY-O4 for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 16:36:08 -0400 Received: from smtp113.iad3a.emailsrvr.com ([173.203.187.113]:44393) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjCUP-0007sA-KH for emacs-orgmode@gnu.org; Mon, 05 Oct 2015 16:36:05 -0400 In-reply-to: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: fabrice.popineau@centralesupelec.fr Cc: Xebar Saram , org mode Fabrice Popineau writes: > I have build a merge of elisp code from 2 people (org-gcal and > google-calendar) and enhanced it a little bit. > I can sync both ways from Emacs. > The code is ugly, so I won't publish it. But if anybody wants to clean it > up and make it more solid, I'll send it. > I would like to see the code, perhaps we can make something usable. -- James From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Tue, 06 Oct 2015 11:58:13 +0200 Message-ID: <87k2r0wc7e.fsf@free.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53243) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjP0s-0006Gz-Bj for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 05:58:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjP0n-0005se-DB for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 05:58:26 -0400 Received: from plane.gmane.org ([80.91.229.3]:47938) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjP0n-0005sA-6c for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 05:58:21 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZjP0l-00071R-30 for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 11:58:19 +0200 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Oct 2015 11:58:19 +0200 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Oct 2015 11:58:19 +0200 In-Reply-To: (Xebar Saram's message of "Mon, 5 Oct 2015 09:46:12 +0300") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Xebar Saram writes: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this > > https://github.com/myuhe/org-gcal.el/issues > > which gave errors all the time and thus stopped being usable > > im looking for a robust solution. any ideas? I'm using org-caldav, it's working fine for me. Julien. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Tue, 06 Oct 2015 12:03:22 +0200 Message-ID: <87bnccwbyt.fsf@free.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjP63-0007Rb-H7 for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 06:03:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjP5y-0001Oi-Hh for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 06:03:47 -0400 Received: from plane.gmane.org ([80.91.229.3]:48245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjP5y-0001OX-Bw for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 06:03:42 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZjP5q-0001qx-0J for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 12:03:34 +0200 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Oct 2015 12:03:33 +0200 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Oct 2015 12:03:33 +0200 In-Reply-To: (Xebar Saram's message of "Mon, 5 Oct 2015 09:46:12 +0300") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Xebar Saram writes: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this > > https://github.com/myuhe/org-gcal.el/issues > > which gave errors all the time and thus stopped being usable > > im looking for a robust solution. any ideas? I'm using org-caldav, it's working fine for me. Julien. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Tue, 06 Oct 2015 12:21:51 +0200 Message-ID: <87pp0suwjk.fsf@free.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjPQi-00066M-JR for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 06:25:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjPQf-0004Qm-GS for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 06:25:08 -0400 Received: from plane.gmane.org ([80.91.229.3]:49567) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjPQf-0004O1-AJ for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 06:25:05 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZjPQe-0006yn-1N for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 12:25:04 +0200 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Oct 2015 12:25:04 +0200 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 06 Oct 2015 12:25:04 +0200 In-Reply-To: (Xebar Saram's message of "Mon, 5 Oct 2015 09:46:12 +0300") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Xebar Saram writes: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this > > https://github.com/myuhe/org-gcal.el/issues > > which gave errors all the time and thus stopped being usable > > im looking for a robust solution. any ideas? I'm using org-caldav, it's working fine for me. Julien. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Tue, 6 Oct 2015 14:35:34 +0100 Message-ID: <877fn0w255.fsf@ucl.ac.uk> References: <87pp0suwjk.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50219) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjSP8-0006kA-6B for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 09:35:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjSP5-0005vx-1F for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 09:35:42 -0400 Received: from mail-am1on0123.outbound.protection.outlook.com ([157.56.112.123]:29068 helo=emea01-am1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjSP4-0005uD-NH for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 09:35:38 -0400 In-Reply-To: <87pp0suwjk.fsf@free.fr> (Julien Cubizolles's message of "Tue, 6 Oct 2015 12:21:51 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Julien Cubizolles Cc: emacs-orgmode@gnu.org On Tuesday, 6 Oct 2015 at 12:21, Julien Cubizolles wrote: > I'm using org-caldav, it's working fine for me. How do you have this working with Google? It quit working for me due to authentication changes at the Google end. I cannot remember the details unfortunately. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3.1-270-g256fef From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Tue, 06 Oct 2015 16:45:18 +0200 Message-ID: <87io6kdpj5.fsf@free.fr> References: <87pp0suwjk.fsf@free.fr> <877fn0w255.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42396) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjTUd-0002eU-Ne for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 10:45:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjTUX-0005ho-KQ for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 10:45:27 -0400 Received: from smtp2-g21.free.fr ([212.27.42.2]:48390) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjTUX-0005f1-FB for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 10:45:21 -0400 Received: from lago (unknown [82.244.252.119]) by smtp2-g21.free.fr (Postfix) with ESMTPS id 283724B009B for ; Tue, 6 Oct 2015 16:45:19 +0200 (CEST) In-Reply-To: <877fn0w255.fsf@ucl.ac.uk> (Eric S. Fraga's message of "Tue, 6 Oct 2015 14:35:34 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Eric S Fraga writes: > On Tuesday, 6 Oct 2015 at 12:21, Julien Cubizolles wrote: >> I'm using org-caldav, it's working fine for me. > > How do you have this working with Google? It quit working for me due to > authentication changes at the Google end. I cannot remember the details > unfortunately. Just followed the instructions on the github README page. I've not looked this authentification problem in Google but from what I gathered it's still working using the old endpoint for the time being. I'll reconsider when it won't. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Tue, 6 Oct 2015 16:42:45 +0100 Message-ID: <87a8rwuhoq.fsf@ucl.ac.uk> References: <87pp0suwjk.fsf@free.fr> <877fn0w255.fsf@ucl.ac.uk> <87io6kdpj5.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33028) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjUOF-0004uE-Mm for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 11:42:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjUOB-00035q-Ga for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 11:42:55 -0400 Received: from mail-db3on0108.outbound.protection.outlook.com ([157.55.234.108]:10982 helo=emea01-db3-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjUOB-00033M-7O for emacs-orgmode@gnu.org; Tue, 06 Oct 2015 11:42:51 -0400 In-Reply-To: <87io6kdpj5.fsf@free.fr> (Julien Cubizolles's message of "Tue, 6 Oct 2015 16:45:18 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Julien Cubizolles Cc: emacs-orgmode@gnu.org On Tuesday, 6 Oct 2015 at 16:45, Julien Cubizolles wrote: > Just followed the instructions on the github README page. I've not > looked this authentification problem in Google but from what I gathered > it's still working using the old endpoint for the time being. I'll > reconsider when it won't. Interesting. I cannot remember what happened but org-caldav stopped working and so I went back to using MobileOrg. I'll stick to what I have for now but it's good to know that there still exist alternative approaches, especially for the OP. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3.1-270-g256fef From mboxrd@z Thu Jan 1 00:00:00 1970 From: Guido Van Hoecke Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Wed, 7 Oct 2015 13:46:45 +0200 Message-ID: References: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a11c381e4d513730521824e36 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44753) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjnBl-0000zg-K7 for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 07:47:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjnBk-0007xW-JS for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 07:47:17 -0400 Received: from mail-wi0-x234.google.com ([2a00:1450:400c:c05::234]:35469) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjnBk-0007xJ-Cg for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 07:47:16 -0400 Received: by wicge5 with SMTP id ge5so209003857wic.0 for ; Wed, 07 Oct 2015 04:47:15 -0700 (PDT) In-Reply-To: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org mode , Eric S Fraga --001a11c381e4d513730521824e36 Content-Type: text/plain; charset=UTF-8 Eric, Am I correct to assume that you're speaking about MobileOrg on an Android phone? I can't see how my iPhone's MobileOrg would allow me to sync with Google, or am I completely missing out on such an important functionality? Guido On 5 October 2015 at 17:09, Eric S Fraga wrote: > On Monday, 5 Oct 2015 at 09:46, Xebar Saram wrote: > > Hi all > > > > i was wondering if anyone was syncing orgmode calendar with google cal, > and > > if so how? i tried this > > I sync org with Google's calendar using MobileOrg on my phone as the > intermediary. Generally works quite well. I would be using MobileOrg > regardless so calendar synchronisation is a very nice bonus. > -- > : Eric S Fraga (0xFFFCF67D), Emacs 24.5.1, Org release_8.3.1-203-g4ca3d3 > > --001a11c381e4d513730521824e36 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Eric,

Am I correct to assume that you= 're speaking about MobileOrg on an Android phone?

I can= 't see how my iPhone's MobileOrg would allow me to sync with Google= , or am I completely missing out on such an important functionality?
Guido
--001a11c381e4d513730521824e36-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Wed, 7 Oct 2015 12:56:59 +0100 Message-ID: <87mvvuevsk.fsf@ucl.ac.uk> References: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48638) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjnLJ-0004BE-Bj for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 07:57:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjnLE-00048l-Ah for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 07:57:09 -0400 Received: from mail-am1on0134.outbound.protection.outlook.com ([157.56.112.134]:58606 helo=emea01-am1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjnLE-00047l-2E for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 07:57:04 -0400 In-Reply-To: (Guido Van Hoecke's message of "Wed, 7 Oct 2015 13:46:45 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Guido Van Hoecke Cc: org mode On Wednesday, 7 Oct 2015 at 13:46, Guido Van Hoecke wrote: > Eric, > > Am I correct to assume that you're speaking about MobileOrg on an Android > phone? yes, sorry, I should have been more clear. Android version of MobileOrg. I know nothing about the iOS version. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3.2-161-gd2ac25 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Guido Van Hoecke Subject: Re: anyone syncing orgmode calendar with google cal, and if so how? Date: Wed, 7 Oct 2015 14:08:16 +0200 Message-ID: References: <87k2r1pd26.fsf@delle7240.chemeng.ucl.ac.uk> <87mvvuevsk.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=047d7b15adffc5535f0521829b70 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53261) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjnWd-0006xy-0g for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 08:08:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZjnWZ-00011o-7D for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 08:08:50 -0400 Received: from mail-wi0-x235.google.com ([2a00:1450:400c:c05::235]:36008) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZjnWZ-00011a-0q for emacs-orgmode@gnu.org; Wed, 07 Oct 2015 08:08:47 -0400 Received: by wicgb1 with SMTP id gb1so208131091wic.1 for ; Wed, 07 Oct 2015 05:08:46 -0700 (PDT) In-Reply-To: <87mvvuevsk.fsf@ucl.ac.uk> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org mode , Eric S Fraga --047d7b15adffc5535f0521829b70 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 7 October 2015 at 13:56, Eric S Fraga wrote: > On Wednesday, 7 Oct 2015 at 13:46, Guido Van Hoecke wrote: > > Eric, > > > > Am I correct to assume that you're speaking about MobileOrg on an Andro= id > > phone? > > yes, sorry, I should have been more clear. =E2=80=8B=E2=80=8B =E2=80=8B=E2=80=8B > Android version of > =E2=80=8B =E2=80=8B > MobileOrg. =E2=80=8BNo prob, thanks for the answer, Guido=E2=80=8B --047d7b15adffc5535f0521829b70 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
--047d7b15adffc5535f0521829b70--