From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuri Niyazov Subject: Question about logreschedule Date: Sat, 21 Feb 2015 10:13:39 -0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60989) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPEZb-0006bw-Cn for emacs-orgmode@gnu.org; Sat, 21 Feb 2015 13:14:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPEZa-0003q9-53 for emacs-orgmode@gnu.org; Sat, 21 Feb 2015 13:14:39 -0500 Received: from mail-lb0-x22d.google.com ([2a00:1450:4010:c04::22d]:41576) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPEZZ-0003pz-SV for emacs-orgmode@gnu.org; Sat, 21 Feb 2015 13:14:38 -0500 Received: by lbiz11 with SMTP id z11so11860734lbi.8 for ; Sat, 21 Feb 2015 10:14:36 -0800 (PST) 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" In org-mode it is possible to log rescheduling information about an item by setting org-log-reschedule to 'time; this results in lines like "- Rescheduled from "2015-01-29 Thu" on [2015-02-10 Tue 20:45]" entered into the Logbook. I am trying to build some performance measurement tools; the general architecture of these tools would be that I would convert agenda information to CSV using http://orgmode.org/manual/Extracting-agenda-information.html then import the CSVs into a database and then work with the database. One of the pieces of information that I would really like to include in the database (and thus in the CSV, and thus in the agenda) is the rescheduling information. Now, the Log view in Agenda parses lines like "- State "DONE" from "TODO" [2015-01-27 Tue 23:15]" in the LOGBOOK drawer and includes them in the agenda, but I haven't seen it do anything with the "Rescheduled from %s to %s" lines. How can I get the rescheduled lines into the agenda and then into a csv? Thanks!