emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: AW <alexander.willand@t-online.de>
To: emacs-orgmode@gnu.org
Cc: Nick Dokos <ndokos@gmail.com>
Subject: Re: icalendar-import-file into org
Date: Tue, 04 Jun 2013 22:21:07 +0200	[thread overview]
Message-ID: <1722223.eliKcqfSoO@linux-ik7b.site> (raw)
In-Reply-To: <87d2s2owhl.fsf@pierrot.dokosmarshall.org>

Am Dienstag, 4. Juni 2013, 09:07:18 schrieb Nick Nick Dokos:
> AW <alexander.willand@t-online.de> writes:
> > I'd like to have an external calendar file displayed in org and was very
> > glad to find a hint in the manual. The name of the external calendar file
> > is "office.ics".
> > 
> > So I wrote into my .emacs-file:
> > 
> > (icalendar-import-file "office.ics" "Diary")
> > (setq org-agenda-include-diary t)
> > 
> > As you can imagine, that caused an import of "office.ics" _every_ time I
> > started Emacs. So I ended with a huge calendar file full of (no, not
> > stars)[1] repetitions of "office.ics".
> 
> You can import the ics file into some temporary diary and
> delete the temporary diary upon exit from emacs:
> 
> --8<---------------cut here---------------start------------->8---
> (setq tmp-diary (make-temp-file "diary"))
> (icalendar-import-file "/path/to/office.ics" tmp-diary)
> 
> ;; make it the default...
> (setq diary-file tmp-diary)
> ;; so that org-agenda can find it
> (setq org-agenda-include-diary t)
> 
> ;; delete the tmp diary on exit
> (add-to-list 'kill-emacs-hook
>              (function
>               (lambda ()
>                 (delete-file tmp-diary))))
> --8<---------------cut here---------------end--------------->8---
> 
> That assumes that you don't have any other diary files
> that you are interested in including. If you do, the basic
> idea will still work but will require more fiddling.
> 
> Untested.

Hi Nick,

thank you for these lines. I realised that I've got a bug in one of my .emacs-
files, but I have to dig where: in Windows or Linux. However, both 
installations of Emacs should format the date exactly the same way. 

I will report when back on the surface,

Regards,
Alexander

      reply	other threads:[~2013-06-04 20:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-04 11:47 icalendar-import-file into org AW
2013-06-04 13:07 ` Nick Dokos
2013-06-04 20:21   ` AW [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1722223.eliKcqfSoO@linux-ik7b.site \
    --to=alexander.willand@t-online.de \
    --cc=emacs-orgmode@gnu.org \
    --cc=ndokos@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).