From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Martin Beck" Subject: How to list inactive timestamps and logged items together in agenda? Date: Thu, 5 Jun 2014 13:21:48 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51219) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsVk7-0007cz-TL for emacs-orgmode@gnu.org; Thu, 05 Jun 2014 07:22:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WsVjz-0002fw-20 for emacs-orgmode@gnu.org; Thu, 05 Jun 2014 07:21:59 -0400 Received: from mout.web.de ([212.227.15.14]:49495) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsVjy-0002fA-OB for emacs-orgmode@gnu.org; Thu, 05 Jun 2014 07:21:50 -0400 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-mailinglist
I want to create an agenda view which lets me list all items, I've been working on in a certain time interval in chronological order.
 
I have created an agenda which does that by listing all headings with inactice timestamps like that:
 
("ip" "past 7d +3d" agenda "" ((org-agenda-overriding-header "Activities during last 7 days") (org-agenda-start-day "-7d") (org-agenda-span 10) (org-agenda-repeating-timestamp-show-all nil) (org-agenda-include-inactive-timestamps t) (org-agenda-entry-types (quote (:deadline :timestamp :sexp)))))
 
My problem is: it only lists items with an inactive timestamp, but not those which have been clocked in the observed time.
Sure, in the same agenda I can type "v c" and then show the clocking history but it seems I can not have both at the same time.
 
Is there a way to expand the above described agenda so that it also displays headings which have been clocked  in/out during the agenda span?
In theory, those timestamps already exist in the LOGBOOK drawer, but they seem to be ignored by the "org-agenda-include-inactive-timestamps" option).
 
Kind regards
 
Martin