From mboxrd@z Thu Jan 1 00:00:00 1970 From: SAKURAI Masashi Subject: Re: Calendar-like view of the org-agenda Date: Sat, 09 Jul 2011 22:15:00 +0900 Message-ID: <20110709131500.78B8313C54B@vps1.kiwanami.net> References: <87pqlu5quz.fsf@gnu.org> <87zkky48ol.wl%markert.michael@googlemail.com> <87tyb2qs39.fsf@isil.kanru.info> <8762nigeuk.wl%markert.michael@googlemail.com> <8739iklkgq.fsf@grumps.lan> <878vsbube7.fsf@member.fsf.org> <19988.11619.3400.87930@gazelle.local> <87sjqjsp94.fsf@member.fsf.org> <874o2zzp17.fsf@pinto.chemeng.ucl.ac.uk> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:51471) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QfXND-0000K3-KC for emacs-orgmode@gnu.org; Sat, 09 Jul 2011 09:15:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QfXNB-0002iM-Pz for emacs-orgmode@gnu.org; Sat, 09 Jul 2011 09:15:07 -0400 Received: from vps1.kiwanami.net ([182.48.41.71]:26664) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QfXNB-0002gB-BT for emacs-orgmode@gnu.org; Sat, 09 Jul 2011 09:15:05 -0400 In-Reply-To: <874o2zzp17.fsf@pinto.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: tassilo@member.fsf.org, herme@fi.upm.es, m.sakurai@kiwanami.net, emacs-orgmode@gnu.org At Wed, 06 Jul 2011 11:23:00 +0100, Eric S Fraga wrote: > : > what I would like, however, is that the detailed view that is accessible > from hitting the space bar in the cfw view put me into an agenda view > for that day. that would then give me full access to org! this should > be quite simple: replace the detail view with a simple invocation of the > default org-agenda view (what you get from C-c a a, say) for that > particular date? I will try this idea. It may be easy to implement. > Footnotes: > [1] I often use Google's calendar for this, having uploaded all my > org details but I don't expect to use Google to update my org files. One can display an org schedule and a google calendar one in the same buffer. Here is a sample code. ================================================== (require 'calfw-org) (require 'calfw-ical) (defun my-open-calendar () (interactive) (cfw:open-calendar-buffer :view 'month :contents-sources (list (cfw:org-create-source "Seagreen4") ; color (cfw:ical-create-source "ical" "https://www.google.com/calendar/ical/../basic.ics" "#2952a3")))) ;; title, URL, color ================================================== The commands `cfw:open-org-calendar' and `cfw:open-ical-calendar' are simple API for quick use. Giving schedule source (cfw:source) objects via the argument `:contents-sources', one can mix some calendar schedules in one buffer. I will write the document about calfw customization soon.