From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Bug: Inconsistent effort handling in clock totals in maint [9.1.13 (release_9.1.13 @ /home/bernt/git/org-mode/lisp/)] Date: Sat, 12 May 2018 00:33:52 -0400 Message-ID: <87lgcpqyq7.fsf@norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fHMEc-00063j-D5 for emacs-orgmode@gnu.org; Sat, 12 May 2018 00:34:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fHMEZ-0007fA-1J for emacs-orgmode@gnu.org; Sat, 12 May 2018 00:34:18 -0400 Received: from pmta2.delivery6.ore.mailhop.org ([54.200.129.228]:48169) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fHMEI-0007dm-B7 for emacs-orgmode@gnu.org; Sat, 12 May 2018 00:34:14 -0400 Received: from localhost.localdomain (gollum.intra.norang.ca [192.168.1.5]) by mail.norang.ca (8.14.4/8.14.4/Debian-4) with ESMTP id w4C4Xqo5028794 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sat, 12 May 2018 00:33:54 -0400 Received: from localhost.localdomain (gollum [127.0.0.1]) by localhost.localdomain (8.14.3/8.14.3/Debian-9.4) with ESMTP id w4C4XqlX000676 for ; Sat, 12 May 2018 00:33:52 -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" To: emacs-orgmode@gnu.org Hi, I noticed maint (and master) has inconsistent handling for effort amounts Below is an ECM to reproduce the behaviour. Thanks for Org-Mode! Regards, Bernt --- test.org ----------------------------------------------------------------------------- #+FILETAGS: TEST #+STARTUP: content *Keys To Reproduce* 1) Expand window to full screen so you can see the clock modeline total in step 4 2) Go to first headline C-c C-n 3) Go to do something C-c C-n 4) Clock in C-c C-x C-i Notice modeline total has [0:05/0:15] So 'do something' has an effort of 15 minutes. It may be entered wrong but it is a bare 15 value instead of 15:00 or 00:15 :EFFORT: 15 6) Go back to Test Parent C-c C-p 7) Enter column mode C-C C-x C-c Notice the total Effort is 15 hours and 30 minutes Column mode is using the 15 effort as hours not minutes while clocking uses it as minutes. When I run into this I change the effort value to either 15:00 or 00:15 but it would be better if it was handled consistently. * TODO Test Parent :PRODUCTION:MISC: :PROPERTIES: :EFFORT: 15:30 :END: ** TODO do something :PROPERTIES: :EFFORT: 15 :END: :LOGBOOK: CLOCK: [2018-05-12 Sat 00:23]--[2018-05-12 Sat 00:23] => 0:00 CLOCK: [2018-05-12 Sat 00:22]--[2018-05-12 Sat 00:22] => 0:00 CLOCK: [2018-05-12 Sat 00:22]--[2018-05-12 Sat 00:22] => 0:00 CLOCK: [2018-05-12 Sat 00:07]--[2018-05-12 Sat 00:08] => 0:01 CLOCK: [2018-05-12 Sat 00:00]--[2018-05-12 Sat 00:04] => 0:04 :END: ** TODO foo :BAR: :PROPERTIES: :EFFORT: 00:30 :END: --- test.el ------------------------------------------------------------------------------ ; Set default column view headings: Task Effort Clock_Summary (setq org-columns-default-format "%80ITEM(Task) %10Effort(Effort){:} %10CLOCKSUM") (setq org-agenda-clockreport-parameter-plist (quote (:link t :maxlevel 9 :fileskip0 t :compact t :narrow 80))) ------------------------------------------------------------------------------------------ Emacs : GNU Emacs 25.1.1 (x86_64-w64-mingw32) of 2016-09-17 Package: Org mode version 9.1.13 (release_9.1.13 @ c:/D-Drive/bin/org-mode/lisp/)