From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: any way how to look on what was done on particular day? Date: Tue, 4 Feb 2014 11:29:22 -0600 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55865) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAksZ-0006mz-Dt for emacs-orgmode@gnu.org; Tue, 04 Feb 2014 13:37:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WAksY-0002I1-2d for emacs-orgmode@gnu.org; Tue, 04 Feb 2014 13:37:51 -0500 Received: from mail-ob0-x22c.google.com ([2607:f8b0:4003:c01::22c]:49059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAjoJ-0001wq-B2 for emacs-orgmode@gnu.org; Tue, 04 Feb 2014 12:29:23 -0500 Received: by mail-ob0-f172.google.com with SMTP id vb8so9889387obc.3 for ; Tue, 04 Feb 2014 09:29:22 -0800 (PST) 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: David Belohrad Cc: emacs-orgmode On Tue, Feb 4, 2014 at 9:33 AM, David Belohrad wrote: > > Hi all, > > the question is simple: I'd like to look into the past, into particular > day, and I'd like to see what TODOs have been modified at that day and > how they have been modified, e.g. showing that on this/that time the > TODO changed state from NEXT to WAITING. Most of those TODOs I have > already archived, hence an archive needs to be searched as well. My > current situation is, that if I mark the thing done, it disappears from > my agenda, which I consider OK for 'general' agenda. The type of agenda > I'm trying to construct is sort of archive search, which permits me to > return into a specific date and to be able to tell what I did the entire > day. > > is this possible? Based on your description, I believe so. See this list of agenda commands for reference: - http://orgmode.org/manual/Agenda-commands.html Could a combination of the following suit your needs? - `C-c a` to start agenda - `v A` to add archived trees and files to the search scope - Possibly `[` to add inactive timestamps to the search scope - `j` to enter a date you want to look at This seemed to work for me. I searched for 2013-01-07 and found a note to check and make sure a credit card payment had gone through with the process above: *** done check that cc payment went through CLOSED: [2013-01-07 Mon 17:52] DEADLINE: <2013-01-03 Thu> :PROPERTIES: :ARCHIVE_TIME: 2013-01-07 Mon 17:52 :END: It's in an archive sub-heading of my main todo/tracking file. If that works, I'm sure you could make a custom agenda view somehow incorporating some of the above (inactive time stamps tracked, all archived trees/files included, and perhaps even an auto-prompt for date you'd like to look at). I *didn't* have success getting an entry to populate where the timestamp was just inside a drawer, so I'm not sure how to do that. For example, the above has an inactive stamp for CLOSED, but I have another entry like this: ** todo note down month's accomplishments/contributions SCHEDULED: <2013-01-28 Mon +1m> :LOGBOOK: - State "cancelled" from "todo" [2013-01-07 Mon 10:00] \\ Dec included in yearly review - State "done" from "todo" [2012-11-06 Tue 12:54] - ...[snipped, lots more of these]... :END: :PROPERTIES: :LAST_REPEAT: [2013-01-07 Mon 10:00] :ID: 41f7debd-743b-4c1c-bc0f-69fc95ee7fab :END: So, that was a recurring todo with an inactive timestamp matching my search date, but it didn't get pulled. I'm thinking this is more what you're looking for, so someone else will have to chime in on whether or not agenda can check the logbook notes. Hope that helps a bit! John > > thanks > .d. > > > (now, I could use Python or something to parse all information and > generate it, but it would not be so attractive solution :) > >