From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Walker Subject: Add "legacy" time tracking as CLOCK entries Date: Wed, 15 Jan 2014 18:51:30 +1100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45319) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3LG8-0003sk-Pv for emacs-orgmode@gnu.org; Wed, 15 Jan 2014 02:51:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W3LG7-0005DM-TH for emacs-orgmode@gnu.org; Wed, 15 Jan 2014 02:51:32 -0500 Received: from mail-ig0-x230.google.com ([2607:f8b0:4001:c05::230]:40020) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3LG7-0005DE-OE for emacs-orgmode@gnu.org; Wed, 15 Jan 2014 02:51:31 -0500 Received: by mail-ig0-f176.google.com with SMTP id j1so9771512iga.3 for ; Tue, 14 Jan 2014 23:51:30 -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 Hi, while I've been using org-mode for some time, I'm now working on a project where I've decided to use the time-tracking functions. But I've got some "legacy" time on the project that I would like to incorporate. I.e., I have in my (paper) log book a record of (say) half an hour spent on a certain day, but I don't have a record of the start and end time and I don't want to invent them. I note that I can add an entry that looks like this: CLOCK: => 0:30 and have this contribute to totals. But I would also like to record the date for this entry. Checking the regular expression in org-clock-sum and a bit of trial and error showed that this _doesn't_ work: CLOCK: [2013-12-11 Wed] => 0:30 and nor does: CLOCK: [2013-12-11 Wed]--[2013-12-11 Wed] => 0:30 But this does seem to work: CLOCK: => 0:30 [2013-12-11 Wed] I've figured this out myself on the basis of not finding anything about it in the manual. Nevertheless, is there a "standard" way of doing this that I missed?