Merge branch 'maint'
[org-mode.git] / lisp / org-clock.el
blob591d0d300fad1f80713cc970a751b18beea99d18
1 ;;; org-clock.el --- The time clocking code for Org-mode
3 ;; Copyright (C) 2004-2013 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the time clocking code for Org-mode
29 ;;; Code:
31 (eval-when-compile
32 (require 'cl))
33 (require 'org)
35 (declare-function calendar-absolute-from-iso "cal-iso" (&optional date))
36 (declare-function notifications-notify "notifications" (&rest params))
37 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
38 (declare-function org-refresh-properties "org" (dprop tprop))
39 (defvar org-time-stamp-formats)
40 (defvar org-ts-what)
41 (defvar org-frame-title-format-backup frame-title-format)
43 (defgroup org-clock nil
44 "Options concerning clocking working time in Org-mode."
45 :tag "Org Clock"
46 :group 'org-progress)
48 (defcustom org-clock-into-drawer org-log-into-drawer
49 "Should clocking info be wrapped into a drawer?
50 When t, clocking info will always be inserted into a :LOGBOOK: drawer.
51 If necessary, the drawer will be created.
52 When nil, the drawer will not be created, but used when present.
53 When an integer and the number of clocking entries in an item
54 reaches or exceeds this number, a drawer will be created.
55 When a string, it names the drawer to be used.
57 The default for this variable is the value of `org-log-into-drawer',
58 which see."
59 :group 'org-todo
60 :group 'org-clock
61 :type '(choice
62 (const :tag "Always" t)
63 (const :tag "Only when drawer exists" nil)
64 (integer :tag "When at least N clock entries")
65 (const :tag "Into LOGBOOK drawer" "LOGBOOK")
66 (string :tag "Into Drawer named...")))
68 (defun org-clock-into-drawer ()
69 "Return the value of `org-clock-into-drawer', but let properties overrule.
70 If the current entry has or inherits a CLOCK_INTO_DRAWER
71 property, it will be used instead of the default value; otherwise
72 if the current entry has or inherits a LOG_INTO_DRAWER property,
73 it will be used instead of the default value.
74 The default is the value of the customizable variable `org-clock-into-drawer',
75 which see."
76 (let ((p (org-entry-get nil "CLOCK_INTO_DRAWER" 'inherit))
77 (q (org-entry-get nil "LOG_INTO_DRAWER" 'inherit)))
78 (cond
79 ((or (not (or p q)) (equal p "nil") (equal q "nil")) org-clock-into-drawer)
80 ((or (equal p "t") (equal q "t")) "LOGBOOK")
81 ((not p) q)
82 (t p))))
84 (defcustom org-clock-out-when-done t
85 "When non-nil, clock will be stopped when the clocked entry is marked DONE.
86 DONE here means any DONE-like state.
87 A nil value means clock will keep running until stopped explicitly with
88 `C-c C-x C-o', or until the clock is started in a different item.
89 Instead of t, this can also be a list of TODO states that should trigger
90 clocking out."
91 :group 'org-clock
92 :type '(choice
93 (const :tag "No" nil)
94 (const :tag "Yes, when done" t)
95 (repeat :tag "State list"
96 (string :tag "TODO keyword"))))
98 (defcustom org-clock-rounding-minutes 0
99 "Rounding minutes when clocking in or out.
100 The default value is 0 so that no rounding is done.
101 When set to a non-integer value, use the car of
102 `org-time-stamp-rounding-minutes', like for setting a time-stamp.
104 E.g. if `org-clock-rounding-minutes' is set to 5, time is 14:47
105 and you clock in: then the clock starts at 14:45. If you clock
106 out within the next 5 minutes, the clock line will be removed;
107 if you clock out 8 minutes after your clocked in, the clock
108 out time will be 14:50."
109 :group 'org-clock
110 :version "24.4"
111 :package-version '(Org . "8.0")
112 :type '(choice
113 (integer :tag "Minutes (0 for no rounding)")
114 (symbol :tag "Use `org-time-stamp-rounding-minutes'" 'same-as-time-stamp)))
116 (defcustom org-clock-out-remove-zero-time-clocks nil
117 "Non-nil means remove the clock line when the resulting time is zero."
118 :group 'org-clock
119 :type 'boolean)
121 (defcustom org-clock-in-switch-to-state nil
122 "Set task to a special todo state while clocking it.
123 The value should be the state to which the entry should be
124 switched. If the value is a function, it must take one
125 parameter (the current TODO state of the item) and return the
126 state to switch it to."
127 :group 'org-clock
128 :group 'org-todo
129 :type '(choice
130 (const :tag "Don't force a state" nil)
131 (string :tag "State")
132 (symbol :tag "Function")))
134 (defcustom org-clock-out-switch-to-state nil
135 "Set task to a special todo state after clocking out.
136 The value should be the state to which the entry should be
137 switched. If the value is a function, it must take one
138 parameter (the current TODO state of the item) and return the
139 state to switch it to."
140 :group 'org-clock
141 :group 'org-todo
142 :type '(choice
143 (const :tag "Don't force a state" nil)
144 (string :tag "State")
145 (symbol :tag "Function")))
147 (defcustom org-clock-history-length 5
148 "Number of clock tasks to remember in history."
149 :group 'org-clock
150 :type 'integer)
152 (defcustom org-clock-goto-may-find-recent-task t
153 "Non-nil means `org-clock-goto' can go to recent task if no active clock."
154 :group 'org-clock
155 :type 'boolean)
157 (defcustom org-clock-heading-function nil
158 "When non-nil, should be a function to create `org-clock-heading'.
159 This is the string shown in the mode line when a clock is running.
160 The function is called with point at the beginning of the headline."
161 :group 'org-clock
162 :type 'function)
164 (defcustom org-clock-string-limit 0
165 "Maximum length of clock strings in the mode line. 0 means no limit."
166 :group 'org-clock
167 :type 'integer)
169 (defcustom org-clock-in-resume nil
170 "If non-nil, resume clock when clocking into task with open clock.
171 When clocking into a task with a clock entry which has not been closed,
172 the clock can be resumed from that point."
173 :group 'org-clock
174 :type 'boolean)
176 (defcustom org-clock-persist nil
177 "When non-nil, save the running clock when Emacs is closed.
178 The clock is resumed when Emacs restarts.
179 When this is t, both the running clock, and the entire clock
180 history are saved. When this is the symbol `clock', only the
181 running clock is saved. When this is the symbol `history', only
182 the clock history is saved.
184 When Emacs restarts with saved clock information, the file containing
185 the running clock as well as all files mentioned in the clock history
186 will be visited.
188 All this depends on running `org-clock-persistence-insinuate' in your
189 Emacs initialization file."
190 :group 'org-clock
191 :type '(choice
192 (const :tag "Just the running clock" clock)
193 (const :tag "Just the history" history)
194 (const :tag "Clock and history" t)
195 (const :tag "No persistence" nil)))
197 (defcustom org-clock-persist-file (convert-standard-filename
198 (concat user-emacs-directory "org-clock-save.el"))
199 "File to save clock data to."
200 :group 'org-clock
201 :type 'string)
203 (defcustom org-clock-persist-query-save nil
204 "When non-nil, ask before saving the current clock on exit."
205 :group 'org-clock
206 :type 'boolean)
208 (defcustom org-clock-persist-query-resume t
209 "When non-nil, ask before resuming any stored clock during load."
210 :group 'org-clock
211 :type 'boolean)
213 (defcustom org-clock-sound nil
214 "Sound to use for notifications.
215 Possible values are:
217 nil No sound played
218 t Standard Emacs beep
219 file name Play this sound file, fall back to beep"
220 :group 'org-clock
221 :type '(choice
222 (const :tag "No sound" nil)
223 (const :tag "Standard beep" t)
224 (file :tag "Play sound file")))
226 (define-obsolete-variable-alias 'org-clock-modeline-total
227 'org-clock-mode-line-total "24.3")
229 (defcustom org-clock-mode-line-total 'auto
230 "Default setting for the time included for the mode line clock.
231 This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
232 Allowed values are:
234 current Only the time in the current instance of the clock
235 today All time clocked into this task today
236 repeat All time clocked into this task since last repeat
237 all All time ever recorded for this task
238 auto Automatically, either `all', or `repeat' for repeating tasks"
239 :group 'org-clock
240 :type '(choice
241 (const :tag "Current clock" current)
242 (const :tag "Today's task time" today)
243 (const :tag "Since last repeat" repeat)
244 (const :tag "All task time" all)
245 (const :tag "Automatically, `all' or since `repeat'" auto)))
247 (org-defvaralias 'org-task-overrun-text 'org-clock-task-overrun-text)
248 (defcustom org-clock-task-overrun-text nil
249 "Extra mode line text to indicate that the clock is overrun.
250 The can be nil to indicate that instead of adding text, the clock time
251 should get a different face (`org-mode-line-clock-overrun').
252 When this is a string, it is prepended to the clock string as an indication,
253 also using the face `org-mode-line-clock-overrun'."
254 :group 'org-clock
255 :version "24.1"
256 :type '(choice
257 (const :tag "Just mark the time string" nil)
258 (string :tag "Text to prepend")))
260 (defcustom org-show-notification-handler nil
261 "Function or program to send notification with.
262 The function or program will be called with the notification
263 string as argument."
264 :group 'org-clock
265 :type '(choice
266 (string :tag "Program")
267 (function :tag "Function")))
269 (defgroup org-clocktable nil
270 "Options concerning the clock table in Org-mode."
271 :tag "Org Clock Table"
272 :group 'org-clock)
274 (defcustom org-clocktable-defaults
275 (list
276 :maxlevel 2
277 :lang (or (org-bound-and-true-p org-export-default-language) "en")
278 :scope 'file
279 :block nil
280 :wstart 1
281 :mstart 1
282 :tstart nil
283 :tend nil
284 :step nil
285 :stepskip0 nil
286 :fileskip0 nil
287 :tags nil
288 :emphasize nil
289 :link nil
290 :narrow '40!
291 :indent t
292 :formula nil
293 :timestamp nil
294 :level nil
295 :tcolumns nil
296 :formatter nil)
297 "Default properties for clock tables."
298 :group 'org-clock
299 :version "24.1"
300 :type 'plist)
302 (defcustom org-clock-clocktable-formatter 'org-clocktable-write-default
303 "Function to turn clocking data into a table.
304 For more information, see `org-clocktable-write-default'."
305 :group 'org-clocktable
306 :version "24.1"
307 :type 'function)
309 ;; FIXME: translate es and nl last string "Clock summary at"
310 (defcustom org-clock-clocktable-language-setup
311 '(("en" "File" "L" "Timestamp" "Headline" "Time" "ALL" "Total time" "File time" "Clock summary at")
312 ("es" "Archivo" "N" "Fecha y hora" "Tarea" "Tiempo" "TODO" "Tiempo total" "Tiempo archivo" "Clock summary at")
313 ("fr" "Fichier" "N" "Horodatage" "En-tête" "Durée" "TOUT" "Durée totale" "Durée fichier" "Horodatage sommaire à")
314 ("nl" "Bestand" "N" "Tijdstip" "Hoofding" "Duur" "ALLES" "Totale duur" "Bestandstijd" "Clock summary at"))
315 "Terms used in clocktable, translated to different languages."
316 :group 'org-clocktable
317 :version "24.1"
318 :type 'alist)
320 (defcustom org-clock-clocktable-default-properties '(:maxlevel 2 :scope file)
321 "Default properties for new clocktables.
322 These will be inserted into the BEGIN line, to make it easy for users to
323 play with them."
324 :group 'org-clocktable
325 :type 'plist)
327 (defcustom org-clock-idle-time nil
328 "When non-nil, resolve open clocks if the user is idle more than X minutes."
329 :group 'org-clock
330 :type '(choice
331 (const :tag "Never" nil)
332 (integer :tag "After N minutes")))
334 (defcustom org-clock-auto-clock-resolution 'when-no-clock-is-running
335 "When to automatically resolve open clocks found in Org buffers."
336 :group 'org-clock
337 :type '(choice
338 (const :tag "Never" nil)
339 (const :tag "Always" t)
340 (const :tag "When no clock is running" when-no-clock-is-running)))
342 (defcustom org-clock-report-include-clocking-task nil
343 "When non-nil, include the current clocking task time in clock reports."
344 :group 'org-clock
345 :version "24.1"
346 :type 'boolean)
348 (defcustom org-clock-resolve-expert nil
349 "Non-nil means do not show the splash buffer with the clock resolver."
350 :group 'org-clock
351 :version "24.1"
352 :type 'boolean)
354 (defcustom org-clock-continuously nil
355 "Non-nil means to start clocking from the last clock-out time, if any."
356 :type 'boolean
357 :version "24.1"
358 :group 'org-clock)
360 (defcustom org-clock-total-time-cell-format "*%s*"
361 "Format string for the total time cells."
362 :group 'org-clock
363 :version "24.1"
364 :type 'boolean)
366 (defcustom org-clock-file-time-cell-format "*%s*"
367 "Format string for the file time cells."
368 :group 'org-clock
369 :version "24.1"
370 :type 'boolean)
372 (defcustom org-clock-clocked-in-display 'mode-line
373 "When clocked in for a task, org-mode can display the current
374 task and accumulated time in the mode line and/or frame title.
375 Allowed values are:
377 both displays in both mode line and frame title
378 mode-line displays only in mode line (default)
379 frame-title displays only in frame title
380 nil current clock is not displayed"
381 :group 'org-clock
382 :type '(choice
383 (const :tag "Mode line" mode-line)
384 (const :tag "Frame title" frame-title)
385 (const :tag "Both" both)
386 (const :tag "None" nil)))
388 (defcustom org-clock-frame-title-format '(t org-mode-line-string)
389 "The value for `frame-title-format' when clocking in.
391 When `org-clock-clocked-in-display' is set to 'frame-title
392 or 'both, clocking in will replace `frame-title-format' with
393 this value. Clocking out will restore `frame-title-format'.
395 `org-frame-title-string' is a format string using the same
396 specifications than `frame-title-format', which see."
397 :version "24.1"
398 :group 'org-clock
399 :type 'sexp)
401 (defcustom org-clock-x11idle-program-name "x11idle"
402 "Name of the program which prints X11 idle time in milliseconds.
404 You can find x11idle.c in the contrib/scripts directory of the
405 Org git distribution. Or, you can do:
407 sudo apt-get install xprintidle
409 if you are using Debian."
410 :group 'org-clock
411 :version "24.4"
412 :package-version '(Org . "8.0")
413 :type 'string)
415 (defvar org-clock-in-prepare-hook nil
416 "Hook run when preparing the clock.
417 This hook is run before anything happens to the task that
418 you want to clock in. For example, you can use this hook
419 to add an effort property.")
420 (defvar org-clock-in-hook nil
421 "Hook run when starting the clock.")
422 (defvar org-clock-out-hook nil
423 "Hook run when stopping the current clock.")
425 (defvar org-clock-cancel-hook nil
426 "Hook run when cancelling the current clock.")
427 (defvar org-clock-goto-hook nil
428 "Hook run when selecting the currently clocked-in entry.")
429 (defvar org-clock-has-been-used nil
430 "Has the clock been used during the current Emacs session?")
432 ;;; The clock for measuring work time.
434 (defvar org-mode-line-string "")
435 (put 'org-mode-line-string 'risky-local-variable t)
437 (defvar org-clock-mode-line-timer nil)
438 (defvar org-clock-idle-timer nil)
439 (defvar org-clock-heading) ; defined in org.el
440 (defvar org-clock-start-time "")
442 (defvar org-clock-leftover-time nil
443 "If non-nil, user cancelled a clock; this is when leftover time started.")
445 (defvar org-clock-effort ""
446 "Effort estimate of the currently clocking task.")
448 (defvar org-clock-total-time nil
449 "Holds total time, spent previously on currently clocked item.
450 This does not include the time in the currently running clock.")
452 (defvar org-clock-history nil
453 "List of marker pointing to recent clocked tasks.")
455 (defvar org-clock-default-task (make-marker)
456 "Marker pointing to the default task that should clock time.
457 The clock can be made to switch to this task after clocking out
458 of a different task.")
460 (defvar org-clock-interrupted-task (make-marker)
461 "Marker pointing to the task that has been interrupted by the current clock.")
463 (defvar org-clock-mode-line-map (make-sparse-keymap))
464 (define-key org-clock-mode-line-map [mode-line mouse-2] 'org-clock-goto)
465 (define-key org-clock-mode-line-map [mode-line mouse-1] 'org-clock-menu)
467 (defun org-clock-menu ()
468 (interactive)
469 (popup-menu
470 '("Clock"
471 ["Clock out" org-clock-out t]
472 ["Change effort estimate" org-clock-modify-effort-estimate t]
473 ["Go to clock entry" org-clock-goto t]
474 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"])))
476 (defun org-clock-history-push (&optional pos buffer)
477 "Push a marker to the clock history."
478 (setq org-clock-history-length (max 1 (min 35 org-clock-history-length)))
479 (let ((m (move-marker (make-marker)
480 (or pos (point)) (org-base-buffer
481 (or buffer (current-buffer)))))
482 n l)
483 (while (setq n (member m org-clock-history))
484 (move-marker (car n) nil))
485 (setq org-clock-history
486 (delq nil
487 (mapcar (lambda (x) (if (marker-buffer x) x nil))
488 org-clock-history)))
489 (when (>= (setq l (length org-clock-history)) org-clock-history-length)
490 (setq org-clock-history
491 (nreverse
492 (nthcdr (- l org-clock-history-length -1)
493 (nreverse org-clock-history)))))
494 (push m org-clock-history)))
496 (defun org-clock-save-markers-for-cut-and-paste (beg end)
497 "Save relative positions of markers in region."
498 (org-check-and-save-marker org-clock-marker beg end)
499 (org-check-and-save-marker org-clock-hd-marker beg end)
500 (org-check-and-save-marker org-clock-default-task beg end)
501 (org-check-and-save-marker org-clock-interrupted-task beg end)
502 (mapc (lambda (m) (org-check-and-save-marker m beg end))
503 org-clock-history))
505 (defun org-clocking-buffer ()
506 "Return the clocking buffer if we are currently clocking a task or nil."
507 (marker-buffer org-clock-marker))
509 (defun org-clocking-p ()
510 "Return t when clocking a task."
511 (not (equal (org-clocking-buffer) nil)))
513 (defvar org-clock-before-select-task-hook nil
514 "Hook called in task selection just before prompting the user.")
516 (defun org-clock-select-task (&optional prompt)
517 "Select a task that was recently associated with clocking."
518 (interactive)
519 (let (och chl sel-list rpl (i 0) s)
520 ;; Remove successive dups from the clock history to consider
521 (mapc (lambda (c) (if (not (equal c (car och))) (push c och)))
522 org-clock-history)
523 (setq och (reverse och) chl (length och))
524 (if (zerop chl)
525 (user-error "No recent clock")
526 (save-window-excursion
527 (org-switch-to-buffer-other-window
528 (get-buffer-create "*Clock Task Select*"))
529 (erase-buffer)
530 (when (marker-buffer org-clock-default-task)
531 (insert (org-add-props "Default Task\n" nil 'face 'bold))
532 (setq s (org-clock-insert-selection-line ?d org-clock-default-task))
533 (push s sel-list))
534 (when (marker-buffer org-clock-interrupted-task)
535 (insert (org-add-props "The task interrupted by starting the last one\n" nil 'face 'bold))
536 (setq s (org-clock-insert-selection-line ?i org-clock-interrupted-task))
537 (push s sel-list))
538 (when (org-clocking-p)
539 (insert (org-add-props "Current Clocking Task\n" nil 'face 'bold))
540 (setq s (org-clock-insert-selection-line ?c org-clock-marker))
541 (push s sel-list))
542 (insert (org-add-props "Recent Tasks\n" nil 'face 'bold))
543 (mapc
544 (lambda (m)
545 (when (marker-buffer m)
546 (setq i (1+ i)
547 s (org-clock-insert-selection-line
548 (if (< i 10)
549 (+ i ?0)
550 (+ i (- ?A 10))) m))
551 (if (fboundp 'int-to-char) (setf (car s) (int-to-char (car s))))
552 (push s sel-list)))
553 och)
554 (run-hooks 'org-clock-before-select-task-hook)
555 (goto-char (point-min))
556 ;; Set min-height relatively to circumvent a possible but in
557 ;; `fit-window-to-buffer'
558 (fit-window-to-buffer nil nil (if (< chl 10) chl (+ 5 chl)))
559 (message (or prompt "Select task for clocking:"))
560 (setq cursor-type nil rpl (read-char-exclusive))
561 (cond
562 ((eq rpl ?q) nil)
563 ((eq rpl ?x) nil)
564 ((assoc rpl sel-list) (cdr (assoc rpl sel-list)))
565 (t (user-error "Invalid task choice %c" rpl)))))))
567 (defun org-clock-insert-selection-line (i marker)
568 "Insert a line for the clock selection menu.
569 And return a cons cell with the selection character integer and the marker
570 pointing to it."
571 (when (marker-buffer marker)
572 (let (file cat task heading prefix)
573 (with-current-buffer (org-base-buffer (marker-buffer marker))
574 (save-excursion
575 (save-restriction
576 (widen)
577 (ignore-errors
578 (goto-char marker)
579 (setq file (buffer-file-name (marker-buffer marker))
580 cat (org-get-category)
581 heading (org-get-heading 'notags)
582 prefix (save-excursion
583 (org-back-to-heading t)
584 (looking-at org-outline-regexp)
585 (match-string 0))
586 task (substring
587 (org-fontify-like-in-org-mode
588 (concat prefix heading)
589 org-odd-levels-only)
590 (length prefix)))))))
591 (when (and cat task)
592 (insert (format "[%c] %-12s %s\n" i cat task))
593 (cons i marker)))))
595 (defvar org-clock-task-overrun nil
596 "Internal flag indicating if the clock has overrun the planned time.")
597 (defvar org-clock-update-period 60
598 "Number of seconds between mode line clock string updates.")
600 (defun org-clock-get-clock-string ()
601 "Form a clock-string, that will be shown in the mode line.
602 If an effort estimate was defined for the current item, use
603 01:30/01:50 format (clocked/estimated).
604 If not, show simply the clocked time like 01:50."
605 (let ((clocked-time (org-clock-get-clocked-time)))
606 (if org-clock-effort
607 (let* ((effort-in-minutes
608 (org-duration-string-to-minutes org-clock-effort))
609 (work-done-str
610 (org-propertize
611 (org-minutes-to-clocksum-string clocked-time)
612 'face (if (and org-clock-task-overrun (not org-clock-task-overrun-text))
613 'org-mode-line-clock-overrun 'org-mode-line-clock)))
614 (effort-str (org-minutes-to-clocksum-string effort-in-minutes))
615 (clockstr (org-propertize
616 (concat " [%s/" effort-str
617 "] (" (replace-regexp-in-string "%" "%%" org-clock-heading) ")")
618 'face 'org-mode-line-clock)))
619 (format clockstr work-done-str))
620 (org-propertize (concat "[" (org-minutes-to-clocksum-string clocked-time)
621 (format " (%s)" org-clock-heading) "]")
622 'face 'org-mode-line-clock))))
624 (defun org-clock-get-last-clock-out-time ()
625 "Get the last clock-out time for the current subtree."
626 (save-excursion
627 (let ((end (save-excursion (org-end-of-subtree))))
628 (when (re-search-forward (concat org-clock-string
629 ".*\\]--\\(\\[[^]]+\\]\\)") end t)
630 (org-time-string-to-time (match-string 1))))))
632 (defun org-clock-update-mode-line ()
633 (if org-clock-effort
634 (org-clock-notify-once-if-expired)
635 (setq org-clock-task-overrun nil))
636 (setq org-mode-line-string
637 (org-propertize
638 (let ((clock-string (org-clock-get-clock-string))
639 (help-text "Org-mode clock is running.\nmouse-1 shows a menu\nmouse-2 will jump to task"))
640 (if (and (> org-clock-string-limit 0)
641 (> (length clock-string) org-clock-string-limit))
642 (org-propertize
643 (substring clock-string 0 org-clock-string-limit)
644 'help-echo (concat help-text ": " org-clock-heading))
645 (org-propertize clock-string 'help-echo help-text)))
646 'local-map org-clock-mode-line-map
647 'mouse-face (if (featurep 'xemacs) 'highlight 'mode-line-highlight)))
648 (if (and org-clock-task-overrun org-clock-task-overrun-text)
649 (setq org-mode-line-string
650 (concat (org-propertize
651 org-clock-task-overrun-text
652 'face 'org-mode-line-clock-overrun) org-mode-line-string)))
653 (force-mode-line-update))
655 (defun org-clock-get-clocked-time ()
656 "Get the clocked time for the current item in minutes.
657 The time returned includes the time spent on this task in
658 previous clocking intervals."
659 (let ((currently-clocked-time
660 (floor (- (org-float-time)
661 (org-float-time org-clock-start-time)) 60)))
662 (+ currently-clocked-time (or org-clock-total-time 0))))
664 (defun org-clock-modify-effort-estimate (&optional value)
665 "Add to or set the effort estimate of the item currently being clocked.
666 VALUE can be a number of minutes, or a string with format hh:mm or mm.
667 When the string starts with a + or a - sign, the current value of the effort
668 property will be changed by that amount.
669 This will update the \"Effort\" property of currently clocked item, and
670 the mode line."
671 (interactive)
672 (if (org-clock-is-active)
673 (let ((current org-clock-effort) sign)
674 (unless value
675 ;; Prompt user for a value or a change
676 (setq value
677 (read-string
678 (format "Set effort (hh:mm or mm%s): "
679 (if current
680 (format ", prefix + to add to %s" org-clock-effort)
681 "")))))
682 (when (stringp value)
683 ;; A string. See if it is a delta
684 (setq sign (string-to-char value))
685 (if (member sign '(?- ?+))
686 (setq current (org-duration-string-to-minutes current)
687 value (substring value 1))
688 (setq current 0))
689 (setq value (org-duration-string-to-minutes value))
690 (if (equal ?- sign)
691 (setq value (- current value))
692 (if (equal ?+ sign) (setq value (+ current value)))))
693 (setq value (max 0 value)
694 org-clock-effort (org-minutes-to-clocksum-string value))
695 (org-entry-put org-clock-marker "Effort" org-clock-effort)
696 (org-clock-update-mode-line)
697 (message "Effort is now %s" org-clock-effort))
698 (message "Clock is not currently active")))
700 (defvar org-clock-notification-was-shown nil
701 "Shows if we have shown notification already.")
703 (defun org-clock-notify-once-if-expired ()
704 "Show notification if we spent more time than we estimated before.
705 Notification is shown only once."
706 (when (org-clocking-p)
707 (let ((effort-in-minutes (org-duration-string-to-minutes org-clock-effort))
708 (clocked-time (org-clock-get-clocked-time)))
709 (if (setq org-clock-task-overrun
710 (if (or (null effort-in-minutes) (zerop effort-in-minutes))
712 (>= clocked-time effort-in-minutes)))
713 (unless org-clock-notification-was-shown
714 (setq org-clock-notification-was-shown t)
715 (org-notify
716 (format "Task '%s' should be finished by now. (%s)"
717 org-clock-heading org-clock-effort) t))
718 (setq org-clock-notification-was-shown nil)))))
720 (defun org-notify (notification &optional play-sound)
721 "Send a NOTIFICATION and maybe PLAY-SOUND.
722 If PLAY-SOUND is non-nil, it overrides `org-clock-sound'."
723 (org-show-notification notification)
724 (if play-sound (org-clock-play-sound play-sound)))
726 (defun org-show-notification (notification)
727 "Show notification.
728 Use `org-show-notification-handler' if defined,
729 use libnotify if available, or fall back on a message."
730 (cond ((functionp org-show-notification-handler)
731 (funcall org-show-notification-handler notification))
732 ((stringp org-show-notification-handler)
733 (start-process "emacs-timer-notification" nil
734 org-show-notification-handler notification))
735 ((fboundp 'notifications-notify)
736 (notifications-notify
737 :title "Org-mode message"
738 :body notification
739 ;; FIXME how to link to the Org icon?
740 ;; :app-icon "~/.emacs.d/icons/mail.png"
741 :urgency 'low))
742 ((executable-find "notify-send")
743 (start-process "emacs-timer-notification" nil
744 "notify-send" notification))
745 ;; Maybe the handler will send a message, so only use message as
746 ;; a fall back option
747 (t (message "%s" notification))))
749 (defun org-clock-play-sound (&optional clock-sound)
750 "Play sound as configured by `org-clock-sound'.
751 Use alsa's aplay tool if available.
752 If CLOCK-SOUND is non-nil, it overrides `org-clock-sound'."
753 (let ((org-clock-sound (or clock-sound org-clock-sound)))
754 (cond
755 ((not org-clock-sound))
756 ((eq org-clock-sound t) (beep t) (beep t))
757 ((stringp org-clock-sound)
758 (let ((file (expand-file-name org-clock-sound)))
759 (if (file-exists-p file)
760 (if (executable-find "aplay")
761 (start-process "org-clock-play-notification" nil
762 "aplay" file)
763 (condition-case nil
764 (play-sound-file file)
765 (error (beep t) (beep t))))))))))
767 (defvar org-clock-mode-line-entry nil
768 "Information for the mode line about the running clock.")
770 (defun org-find-open-clocks (file)
771 "Search through the given file and find all open clocks."
772 (let ((buf (or (get-file-buffer file)
773 (find-file-noselect file)))
774 clocks)
775 (with-current-buffer buf
776 (save-excursion
777 (goto-char (point-min))
778 (while (re-search-forward "CLOCK: \\(\\[.*?\\]\\)$" nil t)
779 (push (cons (copy-marker (match-end 1) t)
780 (org-time-string-to-time (match-string 1))) clocks))))
781 clocks))
783 (defsubst org-is-active-clock (clock)
784 "Return t if CLOCK is the currently active clock."
785 (and (org-clock-is-active)
786 (= org-clock-marker (car clock))))
788 (defmacro org-with-clock-position (clock &rest forms)
789 "Evaluate FORMS with CLOCK as the current active clock."
790 `(with-current-buffer (marker-buffer (car ,clock))
791 (save-excursion
792 (save-restriction
793 (widen)
794 (goto-char (car ,clock))
795 (beginning-of-line)
796 ,@forms))))
797 (def-edebug-spec org-with-clock-position (form body))
798 (put 'org-with-clock-position 'lisp-indent-function 1)
800 (defmacro org-with-clock (clock &rest forms)
801 "Evaluate FORMS with CLOCK as the current active clock.
802 This macro also protects the current active clock from being altered."
803 `(org-with-clock-position ,clock
804 (let ((org-clock-start-time (cdr ,clock))
805 (org-clock-total-time)
806 (org-clock-history)
807 (org-clock-effort)
808 (org-clock-marker (car ,clock))
809 (org-clock-hd-marker (save-excursion
810 (outline-back-to-heading t)
811 (point-marker))))
812 ,@forms)))
813 (def-edebug-spec org-with-clock (form body))
814 (put 'org-with-clock 'lisp-indent-function 1)
816 (defsubst org-clock-clock-in (clock &optional resume start-time)
817 "Clock in to the clock located by CLOCK.
818 If necessary, clock-out of the currently active clock."
819 (org-with-clock-position clock
820 (let ((org-clock-in-resume (or resume org-clock-in-resume)))
821 (org-clock-in nil start-time))))
823 (defsubst org-clock-clock-out (clock &optional fail-quietly at-time)
824 "Clock out of the clock located by CLOCK."
825 (let ((temp (copy-marker (car clock)
826 (marker-insertion-type (car clock)))))
827 (if (org-is-active-clock clock)
828 (org-clock-out nil fail-quietly at-time)
829 (org-with-clock clock
830 (org-clock-out nil fail-quietly at-time)))
831 (setcar clock temp)))
833 (defsubst org-clock-clock-cancel (clock)
834 "Cancel the clock located by CLOCK."
835 (let ((temp (copy-marker (car clock)
836 (marker-insertion-type (car clock)))))
837 (if (org-is-active-clock clock)
838 (org-clock-cancel)
839 (org-with-clock clock
840 (org-clock-cancel)))
841 (setcar clock temp)))
843 (defvar org-clock-clocking-in nil)
844 (defvar org-clock-resolving-clocks nil)
845 (defvar org-clock-resolving-clocks-due-to-idleness nil)
847 (defun org-clock-resolve-clock (clock resolve-to clock-out-time
848 &optional close-p restart-p fail-quietly)
849 "Resolve `CLOCK' given the time `RESOLVE-TO', and the present.
850 `CLOCK' is a cons cell of the form (MARKER START-TIME)."
851 (let ((org-clock-resolving-clocks t))
852 (cond
853 ((null resolve-to)
854 (org-clock-clock-cancel clock)
855 (if (and restart-p (not org-clock-clocking-in))
856 (org-clock-clock-in clock)))
858 ((eq resolve-to 'now)
859 (if restart-p
860 (error "RESTART-P is not valid here"))
861 (if (or close-p org-clock-clocking-in)
862 (org-clock-clock-out clock fail-quietly)
863 (unless (org-is-active-clock clock)
864 (org-clock-clock-in clock t))))
866 ((not (time-less-p resolve-to (current-time)))
867 (error "RESOLVE-TO must refer to a time in the past"))
870 (if restart-p
871 (error "RESTART-P is not valid here"))
872 (org-clock-clock-out clock fail-quietly (or clock-out-time
873 resolve-to))
874 (unless org-clock-clocking-in
875 (if close-p
876 (setq org-clock-leftover-time (and (null clock-out-time)
877 resolve-to))
878 (org-clock-clock-in clock nil (and clock-out-time
879 resolve-to))))))))
881 (defun org-clock-jump-to-current-clock (&optional effective-clock)
882 (interactive)
883 (let ((org-clock-into-drawer (org-clock-into-drawer))
884 (clock (or effective-clock (cons org-clock-marker
885 org-clock-start-time))))
886 (unless (marker-buffer (car clock))
887 (error "No clock is currently running"))
888 (org-with-clock clock (org-clock-goto))
889 (with-current-buffer (marker-buffer (car clock))
890 (goto-char (car clock))
891 (if org-clock-into-drawer
892 (let ((logbook
893 (if (stringp org-clock-into-drawer)
894 (concat ":" org-clock-into-drawer ":")
895 ":LOGBOOK:")))
896 (ignore-errors
897 (outline-flag-region
898 (save-excursion
899 (outline-back-to-heading t)
900 (search-forward logbook)
901 (goto-char (match-beginning 0)))
902 (save-excursion
903 (outline-back-to-heading t)
904 (search-forward logbook)
905 (search-forward ":END:")
906 (goto-char (match-end 0)))
907 nil)))))))
909 (defun org-clock-resolve (clock &optional prompt-fn last-valid fail-quietly)
910 "Resolve an open org-mode clock.
911 An open clock was found, with `dangling' possibly being non-nil.
912 If this function was invoked with a prefix argument, non-dangling
913 open clocks are ignored. The given clock requires some sort of
914 user intervention to resolve it, either because a clock was left
915 dangling or due to an idle timeout. The clock resolution can
916 either be:
918 (a) deleted, the user doesn't care about the clock
919 (b) restarted from the current time (if no other clock is open)
920 (c) closed, giving the clock X minutes
921 (d) closed and then restarted
922 (e) resumed, as if the user had never left
924 The format of clock is (CONS MARKER START-TIME), where MARKER
925 identifies the buffer and position the clock is open at (and
926 thus, the heading it's under), and START-TIME is when the clock
927 was started."
928 (assert clock)
929 (let* ((ch
930 (save-window-excursion
931 (save-excursion
932 (unless org-clock-resolving-clocks-due-to-idleness
933 (org-clock-jump-to-current-clock clock))
934 (unless org-clock-resolve-expert
935 (with-output-to-temp-buffer "*Org Clock*"
936 (princ "Select a Clock Resolution Command:
938 i/q Ignore this question; the same as keeping all the idle time.
940 k/K Keep X minutes of the idle time (default is all). If this
941 amount is less than the default, you will be clocked out
942 that many minutes after the time that idling began, and then
943 clocked back in at the present time.
945 g/G Indicate that you \"got back\" X minutes ago. This is quite
946 different from 'k': it clocks you out from the beginning of
947 the idle period and clock you back in X minutes ago.
949 s/S Subtract the idle time from the current clock. This is the
950 same as keeping 0 minutes.
952 C Cancel the open timer altogether. It will be as though you
953 never clocked in.
955 j/J Jump to the current clock, to make manual adjustments.
957 For all these options, using uppercase makes your final state
958 to be CLOCKED OUT.")))
959 (org-fit-window-to-buffer (get-buffer-window "*Org Clock*"))
960 (let (char-pressed)
961 (when (featurep 'xemacs)
962 (message (concat (funcall prompt-fn clock)
963 " [jkKgGsScCiq]? "))
964 (setq char-pressed (read-char-exclusive)))
965 (while (or (null char-pressed)
966 (and (not (memq char-pressed
967 '(?k ?K ?g ?G ?s ?S ?C
968 ?j ?J ?i ?q)))
969 (or (ding) t)))
970 (setq char-pressed
971 (read-char (concat (funcall prompt-fn clock)
972 " [jkKgGSscCiq]? ")
973 nil 45)))
974 (and (not (memq char-pressed '(?i ?q))) char-pressed)))))
975 (default
976 (floor (/ (org-float-time
977 (time-subtract (current-time) last-valid)) 60)))
978 (keep
979 (and (memq ch '(?k ?K))
980 (read-number "Keep how many minutes? " default)))
981 (gotback
982 (and (memq ch '(?g ?G))
983 (read-number "Got back how many minutes ago? " default)))
984 (subtractp (memq ch '(?s ?S)))
985 (barely-started-p (< (- (org-float-time last-valid)
986 (org-float-time (cdr clock))) 45))
987 (start-over (and subtractp barely-started-p)))
988 (cond
989 ((memq ch '(?j ?J))
990 (if (eq ch ?J)
991 (org-clock-resolve-clock clock 'now nil t nil fail-quietly))
992 (org-clock-jump-to-current-clock clock))
993 ((or (null ch)
994 (not (memq ch '(?k ?K ?g ?G ?s ?S ?C))))
995 (message ""))
997 (org-clock-resolve-clock
998 clock (cond
999 ((or (eq ch ?C)
1000 ;; If the time on the clock was less than a minute before
1001 ;; the user went away, and they've ask to subtract all the
1002 ;; time...
1003 start-over)
1004 nil)
1005 ((or subtractp
1006 (and gotback (= gotback 0)))
1007 last-valid)
1008 ((or (and keep (= keep default))
1009 (and gotback (= gotback default)))
1010 'now)
1011 (keep
1012 (time-add last-valid (seconds-to-time (* 60 keep))))
1013 (gotback
1014 (time-subtract (current-time)
1015 (seconds-to-time (* 60 gotback))))
1017 (error "Unexpected, please report this as a bug")))
1018 (and gotback last-valid)
1019 (memq ch '(?K ?G ?S))
1020 (and start-over
1021 (not (memq ch '(?K ?G ?S ?C))))
1022 fail-quietly)))))
1024 ;;;###autoload
1025 (defun org-resolve-clocks (&optional only-dangling-p prompt-fn last-valid)
1026 "Resolve all currently open org-mode clocks.
1027 If `only-dangling-p' is non-nil, only ask to resolve dangling
1028 \(i.e., not currently open and valid) clocks."
1029 (interactive "P")
1030 (unless org-clock-resolving-clocks
1031 (let ((org-clock-resolving-clocks t))
1032 (dolist (file (org-files-list))
1033 (let ((clocks (org-find-open-clocks file)))
1034 (dolist (clock clocks)
1035 (let ((dangling (or (not (org-clock-is-active))
1036 (/= (car clock) org-clock-marker))))
1037 (if (or (not only-dangling-p) dangling)
1038 (org-clock-resolve
1039 clock
1040 (or prompt-fn
1041 (function
1042 (lambda (clock)
1043 (format
1044 "Dangling clock started %d mins ago"
1045 (floor
1046 (/ (- (org-float-time (current-time))
1047 (org-float-time (cdr clock))) 60))))))
1048 (or last-valid
1049 (cdr clock)))))))))))
1051 (defun org-emacs-idle-seconds ()
1052 "Return the current Emacs idle time in seconds, or nil if not idle."
1053 (let ((idle-time (current-idle-time)))
1054 (if idle-time
1055 (org-float-time idle-time)
1056 0)))
1058 (defun org-mac-idle-seconds ()
1059 "Return the current Mac idle time in seconds."
1060 (string-to-number (shell-command-to-string "ioreg -c IOHIDSystem | perl -ane 'if (/Idle/) {$idle=(pop @F)/1000000000; print $idle; last}'")))
1062 (defvar org-x11idle-exists-p
1063 ;; Check that x11idle exists
1064 (and (eq window-system 'x)
1065 (eq (call-process-shell-command "command" nil nil nil "-v" org-clock-x11idle-program-name) 0)
1066 ;; Check that x11idle can retrieve the idle time
1067 (eq (call-process-shell-command org-clock-x11idle-program-name nil nil nil) 0)))
1069 (defun org-x11-idle-seconds ()
1070 "Return the current X11 idle time in seconds."
1071 (/ (string-to-number (shell-command-to-string org-clock-x11idle-program-name)) 1000))
1073 (defun org-user-idle-seconds ()
1074 "Return the number of seconds the user has been idle for.
1075 This routine returns a floating point number."
1076 (cond
1077 ((eq system-type 'darwin)
1078 (org-mac-idle-seconds))
1079 ((and (eq window-system 'x) org-x11idle-exists-p)
1080 (org-x11-idle-seconds))
1082 (org-emacs-idle-seconds))))
1084 (defvar org-clock-user-idle-seconds)
1086 (defun org-resolve-clocks-if-idle ()
1087 "Resolve all currently open org-mode clocks.
1088 This is performed after `org-clock-idle-time' minutes, to check
1089 if the user really wants to stay clocked in after being idle for
1090 so long."
1091 (when (and org-clock-idle-time (not org-clock-resolving-clocks)
1092 org-clock-marker (marker-buffer org-clock-marker))
1093 (let* ((org-clock-user-idle-seconds (org-user-idle-seconds))
1094 (org-clock-user-idle-start
1095 (time-subtract (current-time)
1096 (seconds-to-time org-clock-user-idle-seconds)))
1097 (org-clock-resolving-clocks-due-to-idleness t))
1098 (if (> org-clock-user-idle-seconds (* 60 org-clock-idle-time))
1099 (org-clock-resolve
1100 (cons org-clock-marker
1101 org-clock-start-time)
1102 (function
1103 (lambda (clock)
1104 (format "Clocked in & idle for %.1f mins"
1105 (/ (org-float-time
1106 (time-subtract (current-time)
1107 org-clock-user-idle-start))
1108 60.0))))
1109 org-clock-user-idle-start)))))
1111 (defvar org-clock-current-task nil "Task currently clocked in.")
1112 (defvar org-clock-out-time nil) ; store the time of the last clock-out
1114 ;;;###autoload
1115 (defun org-clock-in (&optional select start-time)
1116 "Start the clock on the current item.
1117 If necessary, clock-out of the currently active clock.
1118 With a prefix argument SELECT (\\[universal-argument]), offer a list of recently clocked
1119 tasks to clock into. When SELECT is \\[universal-argument] \\[universal-argument], clock into the current task
1120 and mark it as the default task, a special task that will always be offered
1121 in the clocking selection, associated with the letter `d'.
1122 When SELECT is \\[universal-argument] \\[universal-argument] \\[universal-argument], \
1123 clock in by using the last clock-out
1124 time as the start time \(see `org-clock-continuously' to
1125 make this the default behavior.)"
1126 (interactive "P")
1127 (setq org-clock-notification-was-shown nil)
1128 (org-refresh-properties org-effort-property 'org-effort)
1129 (catch 'abort
1130 (let ((interrupting (and (not org-clock-resolving-clocks-due-to-idleness)
1131 (org-clocking-p)))
1132 ts selected-task target-pos (msg-extra "")
1133 (leftover (and (not org-clock-resolving-clocks)
1134 org-clock-leftover-time)))
1136 (when (and org-clock-auto-clock-resolution
1137 (or (not interrupting)
1138 (eq t org-clock-auto-clock-resolution))
1139 (not org-clock-clocking-in)
1140 (not org-clock-resolving-clocks))
1141 (setq org-clock-leftover-time nil)
1142 (let ((org-clock-clocking-in t))
1143 (org-resolve-clocks))) ; check if any clocks are dangling
1145 (when (equal select '(64))
1146 ;; Set start-time to `org-clock-out-time'
1147 (let ((org-clock-continuously t))
1148 (org-clock-in nil org-clock-out-time)))
1150 (when (equal select '(4))
1151 (setq selected-task (org-clock-select-task "Clock-in on task: "))
1152 (if selected-task
1153 (setq selected-task (copy-marker selected-task))
1154 (error "Abort")))
1156 (when (equal select '(16))
1157 ;; Mark as default clocking task
1158 (org-clock-mark-default-task))
1160 (when interrupting
1161 ;; We are interrupting the clocking of a different task.
1162 ;; Save a marker to this task, so that we can go back.
1163 ;; First check if we are trying to clock into the same task!
1164 (when (save-excursion
1165 (unless selected-task
1166 (org-back-to-heading t))
1167 (and (equal (marker-buffer org-clock-hd-marker)
1168 (if selected-task
1169 (marker-buffer selected-task)
1170 (current-buffer)))
1171 (= (marker-position org-clock-hd-marker)
1172 (if selected-task
1173 (marker-position selected-task)
1174 (point)))
1175 (equal org-clock-current-task (nth 4 (org-heading-components)))))
1176 (message "Clock continues in \"%s\"" org-clock-heading)
1177 (throw 'abort nil))
1178 (move-marker org-clock-interrupted-task
1179 (marker-position org-clock-marker)
1180 (marker-buffer org-clock-marker))
1181 (let ((org-clock-clocking-in t))
1182 (org-clock-out nil t)))
1184 ;; Clock in at which position?
1185 (setq target-pos
1186 (if (and (eobp) (not (org-at-heading-p)))
1187 (point-at-bol 0)
1188 (point)))
1189 (save-excursion
1190 (when (and selected-task (marker-buffer selected-task))
1191 ;; There is a selected task, move to the correct buffer
1192 ;; and set the new target position.
1193 (set-buffer (org-base-buffer (marker-buffer selected-task)))
1194 (setq target-pos (marker-position selected-task))
1195 (move-marker selected-task nil))
1196 (save-excursion
1197 (save-restriction
1198 (widen)
1199 (goto-char target-pos)
1200 (org-back-to-heading t)
1201 (or interrupting (move-marker org-clock-interrupted-task nil))
1202 (run-hooks 'org-clock-in-prepare-hook)
1203 (org-clock-history-push)
1204 (setq org-clock-current-task (nth 4 (org-heading-components)))
1205 (cond ((functionp org-clock-in-switch-to-state)
1206 (looking-at org-complex-heading-regexp)
1207 (let ((newstate (funcall org-clock-in-switch-to-state
1208 (match-string 2))))
1209 (if newstate (org-todo newstate))))
1210 ((and org-clock-in-switch-to-state
1211 (not (looking-at (concat org-outline-regexp "[ \t]*"
1212 org-clock-in-switch-to-state
1213 "\\>"))))
1214 (org-todo org-clock-in-switch-to-state)))
1215 (setq org-clock-heading
1216 (cond ((and org-clock-heading-function
1217 (functionp org-clock-heading-function))
1218 (funcall org-clock-heading-function))
1219 ((nth 4 (org-heading-components))
1220 (replace-regexp-in-string
1221 "\\[\\[.*?\\]\\[\\(.*?\\)\\]\\]" "\\1"
1222 (match-string-no-properties 4)))
1223 (t "???")))
1224 (org-clock-find-position org-clock-in-resume)
1225 (cond
1226 ((and org-clock-in-resume
1227 (looking-at
1228 (concat "^[ \t]*" org-clock-string
1229 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1230 " *\\sw+\.? +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
1231 (message "Matched %s" (match-string 1))
1232 (setq ts (concat "[" (match-string 1) "]"))
1233 (goto-char (match-end 1))
1234 (setq org-clock-start-time
1235 (apply 'encode-time
1236 (org-parse-time-string (match-string 1))))
1237 (setq org-clock-effort (org-entry-get (point) org-effort-property))
1238 (setq org-clock-total-time (org-clock-sum-current-item
1239 (org-clock-get-sum-start))))
1240 ((eq org-clock-in-resume 'auto-restart)
1241 ;; called from org-clock-load during startup,
1242 ;; do not interrupt, but warn!
1243 (message "Cannot restart clock because task does not contain unfinished clock")
1244 (ding)
1245 (sit-for 2)
1246 (throw 'abort nil))
1248 (insert-before-markers "\n")
1249 (backward-char 1)
1250 (org-indent-line)
1251 (when (and (save-excursion
1252 (end-of-line 0)
1253 (org-in-item-p)))
1254 (beginning-of-line 1)
1255 (org-indent-line-to (- (org-get-indentation) 2)))
1256 (insert org-clock-string " ")
1257 (setq org-clock-effort (org-entry-get (point) org-effort-property))
1258 (setq org-clock-total-time (org-clock-sum-current-item
1259 (org-clock-get-sum-start)))
1260 (setq org-clock-start-time
1261 (or (and org-clock-continuously org-clock-out-time)
1262 (and leftover
1263 (y-or-n-p
1264 (format
1265 "You stopped another clock %d mins ago; start this one from then? "
1266 (/ (- (org-float-time
1267 (org-current-time org-clock-rounding-minutes t))
1268 (org-float-time leftover)) 60)))
1269 leftover)
1270 start-time
1271 (org-current-time org-clock-rounding-minutes t)))
1272 (setq ts (org-insert-time-stamp org-clock-start-time
1273 'with-hm 'inactive))))
1274 (move-marker org-clock-marker (point) (buffer-base-buffer))
1275 (move-marker org-clock-hd-marker
1276 (save-excursion (org-back-to-heading t) (point))
1277 (buffer-base-buffer))
1278 (setq org-clock-has-been-used t)
1279 ;; add to mode line
1280 (when (or (eq org-clock-clocked-in-display 'mode-line)
1281 (eq org-clock-clocked-in-display 'both))
1282 (or global-mode-string (setq global-mode-string '("")))
1283 (or (memq 'org-mode-line-string global-mode-string)
1284 (setq global-mode-string
1285 (append global-mode-string '(org-mode-line-string)))))
1286 ;; add to frame title
1287 (when (or (eq org-clock-clocked-in-display 'frame-title)
1288 (eq org-clock-clocked-in-display 'both))
1289 (setq frame-title-format org-clock-frame-title-format))
1290 (org-clock-update-mode-line)
1291 (when org-clock-mode-line-timer
1292 (cancel-timer org-clock-mode-line-timer)
1293 (setq org-clock-mode-line-timer nil))
1294 (when org-clock-clocked-in-display
1295 (setq org-clock-mode-line-timer
1296 (run-with-timer org-clock-update-period
1297 org-clock-update-period
1298 'org-clock-update-mode-line)))
1299 (when org-clock-idle-timer
1300 (cancel-timer org-clock-idle-timer)
1301 (setq org-clock-idle-timer nil))
1302 (setq org-clock-idle-timer
1303 (run-with-timer 60 60 'org-resolve-clocks-if-idle))
1304 (message "Clock starts at %s - %s" ts msg-extra)
1305 (run-hooks 'org-clock-in-hook)))))))
1307 ;;;###autoload
1308 (defun org-clock-in-last (&optional arg)
1309 "Clock in the last closed clocked item.
1310 When already clocking in, send an warning.
1311 With a universal prefix argument, select the task you want to
1312 clock in from the last clocked in tasks.
1313 With two universal prefix arguments, start clocking using the
1314 last clock-out time, if any.
1315 With three universal prefix arguments, interactively prompt
1316 for a todo state to switch to, overriding the existing value
1317 `org-clock-in-switch-to-state'."
1318 (interactive "P")
1319 (if (equal arg '(4))
1320 (org-clock-in (org-clock-select-task))
1321 (let ((start-time (if (or org-clock-continuously (equal arg '(16)))
1322 (or org-clock-out-time
1323 (org-current-time org-clock-rounding-minutes t))
1324 (org-current-time org-clock-rounding-minutes t))))
1325 (if (null org-clock-history)
1326 (message "No last clock")
1327 (let ((org-clock-in-switch-to-state
1328 (if (and (not org-clock-current-task) (equal arg '(64)))
1329 (completing-read "Switch to state: "
1330 (and org-clock-history
1331 (with-current-buffer
1332 (marker-buffer (car org-clock-history))
1333 org-todo-keywords-1)))
1334 org-clock-in-switch-to-state))
1335 (already-clocking org-clock-current-task))
1336 (org-clock-clock-in (list (car org-clock-history)) nil start-time)
1337 (or already-clocking
1338 ;; Don't display a message if we are already clocking in
1339 (message "Clocking back: %s (in %s)"
1340 org-clock-current-task
1341 (buffer-name (marker-buffer org-clock-marker)))))))))
1343 (defun org-clock-mark-default-task ()
1344 "Mark current task as default task."
1345 (interactive)
1346 (save-excursion
1347 (org-back-to-heading t)
1348 (move-marker org-clock-default-task (point))))
1350 (defvar msg-extra)
1351 (defun org-clock-get-sum-start ()
1352 "Return the time from which clock times should be counted.
1353 This is for the currently running clock as it is displayed
1354 in the mode line. This function looks at the properties
1355 LAST_REPEAT and in particular CLOCK_MODELINE_TOTAL and the
1356 corresponding variable `org-clock-mode-line-total' and then
1357 decides which time to use."
1358 (let ((cmt (or (org-entry-get nil "CLOCK_MODELINE_TOTAL")
1359 (symbol-name org-clock-mode-line-total)))
1360 (lr (org-entry-get nil "LAST_REPEAT")))
1361 (cond
1362 ((equal cmt "current")
1363 (setq msg-extra "showing time in current clock instance")
1364 (current-time))
1365 ((equal cmt "today")
1366 (setq msg-extra "showing today's task time.")
1367 (let* ((dt (decode-time (current-time))))
1368 (setq dt (append (list 0 0 0) (nthcdr 3 dt)))
1369 (if org-extend-today-until
1370 (setf (nth 2 dt) org-extend-today-until))
1371 (apply 'encode-time dt)))
1372 ((or (equal cmt "all")
1373 (and (or (not cmt) (equal cmt "auto"))
1374 (not lr)))
1375 (setq msg-extra "showing entire task time.")
1376 nil)
1377 ((or (equal cmt "repeat")
1378 (and (or (not cmt) (equal cmt "auto"))
1379 lr))
1380 (setq msg-extra "showing task time since last repeat.")
1381 (if (not lr)
1383 (org-time-string-to-time lr)))
1384 (t nil))))
1386 (defun org-clock-find-position (find-unclosed)
1387 "Find the location where the next clock line should be inserted.
1388 When FIND-UNCLOSED is non-nil, first check if there is an unclosed clock
1389 line and position cursor in that line."
1390 (org-back-to-heading t)
1391 (catch 'exit
1392 (let* ((org-clock-into-drawer (org-clock-into-drawer))
1393 (beg (save-excursion
1394 (beginning-of-line 2)
1395 (or (bolp) (newline))
1396 (point)))
1397 (end (progn (outline-next-heading) (point)))
1398 (re (concat "^[ \t]*" org-clock-string))
1399 (cnt 0)
1400 (drawer (if (stringp org-clock-into-drawer)
1401 org-clock-into-drawer "LOGBOOK"))
1402 first last ind-last)
1403 (goto-char beg)
1404 (when (and find-unclosed
1405 (re-search-forward
1406 (concat "^[ \t]*" org-clock-string
1407 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1408 " *\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")
1409 end t))
1410 (beginning-of-line 1)
1411 (throw 'exit t))
1412 (when (eobp) (newline) (setq end (max (point) end)))
1413 (when (re-search-forward (concat "^[ \t]*:" drawer ":") end t)
1414 ;; we seem to have a CLOCK drawer, so go there.
1415 (beginning-of-line 2)
1416 (or org-log-states-order-reversed
1417 (and (re-search-forward org-property-end-re nil t)
1418 (goto-char (match-beginning 0))))
1419 (throw 'exit t))
1420 ;; Lets count the CLOCK lines
1421 (goto-char beg)
1422 (while (re-search-forward re end t)
1423 (setq first (or first (match-beginning 0))
1424 last (match-beginning 0)
1425 cnt (1+ cnt)))
1426 (when (and (integerp org-clock-into-drawer)
1427 last
1428 (>= (1+ cnt) org-clock-into-drawer))
1429 ;; Wrap current entries into a new drawer
1430 (goto-char last)
1431 (setq ind-last (org-get-indentation))
1432 (beginning-of-line 2)
1433 (if (and (>= (org-get-indentation) ind-last)
1434 (org-at-item-p))
1435 (when (and (>= (org-get-indentation) ind-last)
1436 (org-at-item-p))
1437 (let ((struct (org-list-struct)))
1438 (goto-char (org-list-get-bottom-point struct)))))
1439 (insert ":END:\n")
1440 (beginning-of-line 0)
1441 (org-indent-line-to ind-last)
1442 (goto-char first)
1443 (insert ":" drawer ":\n")
1444 (beginning-of-line 0)
1445 (org-indent-line)
1446 (org-flag-drawer t)
1447 (beginning-of-line 2)
1448 (or org-log-states-order-reversed
1449 (and (re-search-forward org-property-end-re nil t)
1450 (goto-char (match-beginning 0))))
1451 (throw 'exit nil))
1453 (goto-char beg)
1454 (while (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
1455 (not (equal (match-string 1) org-clock-string)))
1456 ;; Planning info, skip to after it
1457 (beginning-of-line 2)
1458 (or (bolp) (newline)))
1459 (when (or (eq org-clock-into-drawer t)
1460 (stringp org-clock-into-drawer)
1461 (and (integerp org-clock-into-drawer)
1462 (< org-clock-into-drawer 2)))
1463 (insert ":" drawer ":\n:END:\n")
1464 (beginning-of-line -1)
1465 (org-indent-line)
1466 (org-flag-drawer t)
1467 (beginning-of-line 2)
1468 (org-indent-line)
1469 (beginning-of-line)
1470 (or org-log-states-order-reversed
1471 (and (re-search-forward org-property-end-re nil t)
1472 (goto-char (match-beginning 0))))))))
1474 ;;;###autoload
1475 (defun org-clock-out (&optional switch-to-state fail-quietly at-time)
1476 "Stop the currently running clock.
1477 Throw an error if there is no running clock and FAIL-QUIETLY is nil.
1478 With a universal prefix, prompt for a state to switch the clocked out task
1479 to, overriding the existing value of `org-clock-out-switch-to-state'."
1480 (interactive "P")
1481 (catch 'exit
1482 (when (not (org-clocking-p))
1483 (setq global-mode-string
1484 (delq 'org-mode-line-string global-mode-string))
1485 (setq frame-title-format org-frame-title-format-backup)
1486 (force-mode-line-update)
1487 (if fail-quietly (throw 'exit t) (user-error "No active clock")))
1488 (let ((org-clock-out-switch-to-state
1489 (if switch-to-state
1490 (completing-read "Switch to state: "
1491 (with-current-buffer
1492 (marker-buffer org-clock-marker)
1493 org-todo-keywords-1)
1494 nil t "DONE")
1495 org-clock-out-switch-to-state))
1496 (now (org-current-time org-clock-rounding-minutes))
1497 ts te s h m remove)
1498 (setq org-clock-out-time now)
1499 (save-excursion ; Do not replace this with `with-current-buffer'.
1500 (org-no-warnings (set-buffer (org-clocking-buffer)))
1501 (save-restriction
1502 (widen)
1503 (goto-char org-clock-marker)
1504 (beginning-of-line 1)
1505 (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
1506 (equal (match-string 1) org-clock-string))
1507 (setq ts (match-string 2))
1508 (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
1509 (goto-char (match-end 0))
1510 (delete-region (point) (point-at-eol))
1511 (insert "--")
1512 (setq te (org-insert-time-stamp (or at-time now) 'with-hm 'inactive))
1513 (setq s (- (org-float-time (apply 'encode-time (org-parse-time-string te)))
1514 (org-float-time (apply 'encode-time (org-parse-time-string ts))))
1515 h (floor (/ s 3600))
1516 s (- s (* 3600 h))
1517 m (floor (/ s 60))
1518 s (- s (* 60 s)))
1519 (insert " => " (format "%2d:%02d" h m))
1520 (when (setq remove (and org-clock-out-remove-zero-time-clocks
1521 (= (+ h m) 0)))
1522 (beginning-of-line 1)
1523 (delete-region (point) (point-at-eol))
1524 (and (looking-at "\n") (> (point-max) (1+ (point)))
1525 (delete-char 1)))
1526 (move-marker org-clock-marker nil)
1527 (move-marker org-clock-hd-marker nil)
1528 (when org-log-note-clock-out
1529 (org-add-log-setup 'clock-out nil nil nil nil
1530 (concat "# Task: " (org-get-heading t) "\n\n")))
1531 (when org-clock-mode-line-timer
1532 (cancel-timer org-clock-mode-line-timer)
1533 (setq org-clock-mode-line-timer nil))
1534 (when org-clock-idle-timer
1535 (cancel-timer org-clock-idle-timer)
1536 (setq org-clock-idle-timer nil))
1537 (setq global-mode-string
1538 (delq 'org-mode-line-string global-mode-string))
1539 (setq frame-title-format org-frame-title-format-backup)
1540 (when org-clock-out-switch-to-state
1541 (save-excursion
1542 (org-back-to-heading t)
1543 (let ((org-inhibit-logging t)
1544 (org-clock-out-when-done nil))
1545 (cond
1546 ((functionp org-clock-out-switch-to-state)
1547 (looking-at org-complex-heading-regexp)
1548 (let ((newstate (funcall org-clock-out-switch-to-state
1549 (match-string 2))))
1550 (if newstate (org-todo newstate))))
1551 ((and org-clock-out-switch-to-state
1552 (not (looking-at (concat org-outline-regexp "[ \t]*"
1553 org-clock-out-switch-to-state
1554 "\\>"))))
1555 (org-todo org-clock-out-switch-to-state))))))
1556 (force-mode-line-update)
1557 (message (concat "Clock stopped at %s after "
1558 (org-minutes-to-clocksum-string (+ (* 60 h) m)) "%s")
1559 te (if remove " => LINE REMOVED" ""))
1560 (let ((h org-clock-out-hook))
1561 ;; If a closing note needs to be stored in the drawer
1562 ;; where clocks are stored, let's temporarily disable
1563 ;; `org-clock-remove-empty-clock-drawer'
1564 (if (and (equal org-clock-into-drawer org-log-into-drawer)
1565 (eq org-log-done 'note)
1566 org-clock-out-when-done)
1567 (setq h (delq 'org-clock-remove-empty-clock-drawer h)))
1568 (mapc (lambda (f) (funcall f)) h))
1569 (unless (org-clocking-p)
1570 (setq org-clock-current-task nil)))))))
1572 (add-hook 'org-clock-out-hook 'org-clock-remove-empty-clock-drawer)
1574 (defun org-clock-remove-empty-clock-drawer nil
1575 "Remove empty clock drawer in the current subtree."
1576 (let* ((olid (or (org-entry-get (point) "LOG_INTO_DRAWER")
1577 org-log-into-drawer))
1578 (clock-drawer (if (eq t olid) "LOGBOOK" olid))
1579 (end (save-excursion (org-end-of-subtree t t))))
1580 (when clock-drawer
1581 (save-excursion
1582 (org-back-to-heading t)
1583 (while (and (< (point) end)
1584 (search-forward clock-drawer end t))
1585 (goto-char (match-beginning 0))
1586 (org-remove-empty-drawer-at clock-drawer (point))
1587 (forward-line 1))))))
1589 (defun org-clock-timestamps-up (&optional n)
1590 "Increase CLOCK timestamps at cursor.
1591 Optional argument N tells to change by that many units."
1592 (interactive "P")
1593 (org-clock-timestamps-change 'up n))
1595 (defun org-clock-timestamps-down (&optional n)
1596 "Increase CLOCK timestamps at cursor.
1597 Optional argument N tells to change by that many units."
1598 (interactive "P")
1599 (org-clock-timestamps-change 'down n))
1601 (defun org-clock-timestamps-change (updown &optional n)
1602 "Change CLOCK timestamps synchronously at cursor.
1603 UPDOWN tells whether to change 'up or 'down.
1604 Optional argument N tells to change by that many units."
1605 (setq org-ts-what nil)
1606 (when (org-at-timestamp-p t)
1607 (let ((tschange (if (eq updown 'up) 'org-timestamp-up
1608 'org-timestamp-down))
1609 ts1 begts1 ts2 begts2 updatets1 tdiff)
1610 (save-excursion
1611 (move-beginning-of-line 1)
1612 (re-search-forward org-ts-regexp3 nil t)
1613 (setq ts1 (match-string 0) begts1 (match-beginning 0))
1614 (when (re-search-forward org-ts-regexp3 nil t)
1615 (setq ts2 (match-string 0) begts2 (match-beginning 0))))
1616 ;; Are we on the second timestamp?
1617 (if (<= begts2 (point)) (setq updatets1 t))
1618 (if (not ts2)
1619 ;; fall back on org-timestamp-up if there is only one
1620 (funcall tschange n)
1621 ;; setq this so that (boundp 'org-ts-what is non-nil)
1622 (funcall tschange n)
1623 (let ((ts (if updatets1 ts2 ts1))
1624 (begts (if updatets1 begts1 begts2)))
1625 (setq tdiff
1626 (subtract-time
1627 (org-time-string-to-time org-last-changed-timestamp)
1628 (org-time-string-to-time ts)))
1629 (save-excursion
1630 (goto-char begts)
1631 (org-timestamp-change
1632 (round (/ (org-float-time tdiff)
1633 (cond ((eq org-ts-what 'minute) 60)
1634 ((eq org-ts-what 'hour) 3600)
1635 ((eq org-ts-what 'day) (* 24 3600))
1636 ((eq org-ts-what 'month) (* 24 3600 31))
1637 ((eq org-ts-what 'year) (* 24 3600 365.2)))))
1638 org-ts-what 'updown)))))))
1640 ;;;###autoload
1641 (defun org-clock-cancel ()
1642 "Cancel the running clock by removing the start timestamp."
1643 (interactive)
1644 (when (not (org-clocking-p))
1645 (setq global-mode-string
1646 (delq 'org-mode-line-string global-mode-string))
1647 (setq frame-title-format org-frame-title-format-backup)
1648 (force-mode-line-update)
1649 (error "No active clock"))
1650 (save-excursion ; Do not replace this with `with-current-buffer'.
1651 (org-no-warnings (set-buffer (org-clocking-buffer)))
1652 (goto-char org-clock-marker)
1653 (if (org-looking-back (concat "^[ \t]*" org-clock-string ".*"))
1654 (progn (delete-region (1- (point-at-bol)) (point-at-eol))
1655 (org-remove-empty-drawer-at "LOGBOOK" (point)))
1656 (message "Clock gone, cancel the timer anyway")
1657 (sit-for 2)))
1658 (move-marker org-clock-marker nil)
1659 (move-marker org-clock-hd-marker nil)
1660 (setq global-mode-string
1661 (delq 'org-mode-line-string global-mode-string))
1662 (setq frame-title-format org-frame-title-format-backup)
1663 (force-mode-line-update)
1664 (message "Clock canceled")
1665 (run-hooks 'org-clock-cancel-hook))
1667 ;;;###autoload
1668 (defun org-clock-goto (&optional select)
1669 "Go to the currently clocked-in entry, or to the most recently clocked one.
1670 With prefix arg SELECT, offer recently clocked tasks for selection."
1671 (interactive "@P")
1672 (let* ((recent nil)
1673 (m (cond
1674 (select
1675 (or (org-clock-select-task "Select task to go to: ")
1676 (error "No task selected")))
1677 ((org-clocking-p) org-clock-marker)
1678 ((and org-clock-goto-may-find-recent-task
1679 (car org-clock-history)
1680 (marker-buffer (car org-clock-history)))
1681 (setq recent t)
1682 (car org-clock-history))
1683 (t (error "No active or recent clock task")))))
1684 (org-pop-to-buffer-same-window (marker-buffer m))
1685 (if (or (< m (point-min)) (> m (point-max))) (widen))
1686 (goto-char m)
1687 (org-show-entry)
1688 (org-back-to-heading t)
1689 (org-cycle-hide-drawers 'children)
1690 (recenter)
1691 (org-reveal)
1692 (if recent
1693 (message "No running clock, this is the most recently clocked task"))
1694 (run-hooks 'org-clock-goto-hook)))
1696 (defvar org-clock-file-total-minutes nil
1697 "Holds the file total time in minutes, after a call to `org-clock-sum'.")
1698 (make-variable-buffer-local 'org-clock-file-total-minutes)
1700 (defun org-clock-sum-today (&optional headline-filter)
1701 "Sum the times for each subtree for today."
1702 (interactive)
1703 (let ((range (org-clock-special-range 'today)))
1704 (org-clock-sum (car range) (cadr range) nil :org-clock-minutes-today)))
1706 ;;;###autoload
1707 (defun org-clock-sum (&optional tstart tend headline-filter propname)
1708 "Sum the times for each subtree.
1709 Puts the resulting times in minutes as a text property on each headline.
1710 TSTART and TEND can mark a time range to be considered.
1711 HEADLINE-FILTER is a zero-arg function that, if specified, is called for
1712 each headline in the time range with point at the headline. Headlines for
1713 which HEADLINE-FILTER returns nil are excluded from the clock summation.
1714 PROPNAME lets you set a custom text property instead of :org-clock-minutes."
1715 (interactive)
1716 (org-with-silent-modifications
1717 (let* ((re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
1718 org-clock-string
1719 "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
1720 (lmax 30)
1721 (ltimes (make-vector lmax 0))
1722 (t1 0)
1723 (level 0)
1724 ts te dt
1725 time)
1726 (if (stringp tstart) (setq tstart (org-time-string-to-seconds tstart)))
1727 (if (stringp tend) (setq tend (org-time-string-to-seconds tend)))
1728 (if (consp tstart) (setq tstart (org-float-time tstart)))
1729 (if (consp tend) (setq tend (org-float-time tend)))
1730 (remove-text-properties (point-min) (point-max)
1731 `(,(or propname :org-clock-minutes) t
1732 :org-clock-force-headline-inclusion t))
1733 (save-excursion
1734 (goto-char (point-max))
1735 (while (re-search-backward re nil t)
1736 (cond
1737 ((match-end 2)
1738 ;; Two time stamps
1739 (setq ts (match-string 2)
1740 te (match-string 3)
1741 ts (org-float-time
1742 (apply 'encode-time (org-parse-time-string ts)))
1743 te (org-float-time
1744 (apply 'encode-time (org-parse-time-string te)))
1745 ts (if tstart (max ts tstart) ts)
1746 te (if tend (min te tend) te)
1747 dt (- te ts)
1748 t1 (if (> dt 0) (+ t1 (floor (/ dt 60))) t1)))
1749 ((match-end 4)
1750 ;; A naked time
1751 (setq t1 (+ t1 (string-to-number (match-string 5))
1752 (* 60 (string-to-number (match-string 4))))))
1753 (t ;; A headline
1754 ;; Add the currently clocking item time to the total
1755 (when (and org-clock-report-include-clocking-task
1756 (equal (org-clocking-buffer) (current-buffer))
1757 (equal (marker-position org-clock-hd-marker) (point))
1758 tstart
1759 tend
1760 (>= (org-float-time org-clock-start-time) tstart)
1761 (<= (org-float-time org-clock-start-time) tend))
1762 (let ((time (floor (- (org-float-time)
1763 (org-float-time org-clock-start-time)) 60)))
1764 (setq t1 (+ t1 time))))
1765 (let* ((headline-forced
1766 (get-text-property (point)
1767 :org-clock-force-headline-inclusion))
1768 (headline-included
1769 (or (null headline-filter)
1770 (save-excursion
1771 (save-match-data (funcall headline-filter))))))
1772 (setq level (- (match-end 1) (match-beginning 1)))
1773 (when (or (> t1 0) (> (aref ltimes level) 0))
1774 (when (or headline-included headline-forced)
1775 (if headline-included
1776 (loop for l from 0 to level do
1777 (aset ltimes l (+ (aref ltimes l) t1))))
1778 (setq time (aref ltimes level))
1779 (goto-char (match-beginning 0))
1780 (put-text-property (point) (point-at-eol)
1781 (or propname :org-clock-minutes) time)
1782 (if headline-filter
1783 (save-excursion
1784 (save-match-data
1785 (while
1786 (> (funcall outline-level) 1)
1787 (outline-up-heading 1 t)
1788 (put-text-property
1789 (point) (point-at-eol)
1790 :org-clock-force-headline-inclusion t))))))
1791 (setq t1 0)
1792 (loop for l from level to (1- lmax) do
1793 (aset ltimes l 0)))))))
1794 (setq org-clock-file-total-minutes (aref ltimes 0))))))
1796 (defun org-clock-sum-current-item (&optional tstart)
1797 "Return time, clocked on current item in total."
1798 (save-excursion
1799 (save-restriction
1800 (org-narrow-to-subtree)
1801 (org-clock-sum tstart)
1802 org-clock-file-total-minutes)))
1804 ;;;###autoload
1805 (defun org-clock-display (&optional total-only)
1806 "Show subtree times in the entire buffer.
1807 If TOTAL-ONLY is non-nil, only show the total time for the entire file
1808 in the echo area.
1810 Use \\[org-clock-remove-overlays] to remove the subtree times."
1811 (interactive)
1812 (org-clock-remove-overlays)
1813 (let (time h m p)
1814 (org-clock-sum)
1815 (unless total-only
1816 (save-excursion
1817 (goto-char (point-min))
1818 (while (or (and (equal (setq p (point)) (point-min))
1819 (get-text-property p :org-clock-minutes))
1820 (setq p (next-single-property-change
1821 (point) :org-clock-minutes)))
1822 (goto-char p)
1823 (when (setq time (get-text-property p :org-clock-minutes))
1824 (org-clock-put-overlay time (funcall outline-level))))
1825 (setq h (/ org-clock-file-total-minutes 60)
1826 m (- org-clock-file-total-minutes (* 60 h)))
1827 ;; Arrange to remove the overlays upon next change.
1828 (when org-remove-highlights-with-change
1829 (org-add-hook 'before-change-functions 'org-clock-remove-overlays
1830 nil 'local))))
1831 (message (concat "Total file time: "
1832 (org-minutes-to-clocksum-string org-clock-file-total-minutes)
1833 " (%d hours and %d minutes)") h m)))
1835 (defvar org-clock-overlays nil)
1836 (make-variable-buffer-local 'org-clock-overlays)
1838 (defun org-clock-put-overlay (time &optional level)
1839 "Put an overlays on the current line, displaying TIME.
1840 If LEVEL is given, prefix time with a corresponding number of stars.
1841 This creates a new overlay and stores it in `org-clock-overlays', so that it
1842 will be easy to remove."
1843 (let* ((c 60) (h (floor (/ time 60))) (m (- time (* 60 h)))
1844 (l (if level (org-get-valid-level level 0) 0))
1845 (off 0)
1846 ov tx)
1847 (org-move-to-column c)
1848 (unless (eolp) (skip-chars-backward "^ \t"))
1849 (skip-chars-backward " \t")
1850 (setq ov (make-overlay (point-at-bol) (point-at-eol))
1851 tx (concat (buffer-substring (point-at-bol) (point))
1852 (make-string (+ off (max 0 (- c (current-column)))) ?.)
1853 (org-add-props (concat (make-string l ?*) " "
1854 (org-minutes-to-clocksum-string time)
1855 (make-string (- 16 l) ?\ ))
1856 (list 'face 'org-clock-overlay))
1857 ""))
1858 (if (not (featurep 'xemacs))
1859 (overlay-put ov 'display tx)
1860 (overlay-put ov 'invisible t)
1861 (overlay-put ov 'end-glyph (make-glyph tx)))
1862 (push ov org-clock-overlays)))
1864 (defun org-clock-remove-overlays (&optional beg end noremove)
1865 "Remove the occur highlights from the buffer.
1866 BEG and END are ignored. If NOREMOVE is nil, remove this function
1867 from the `before-change-functions' in the current buffer."
1868 (interactive)
1869 (unless org-inhibit-highlight-removal
1870 (mapc 'delete-overlay org-clock-overlays)
1871 (setq org-clock-overlays nil)
1872 (unless noremove
1873 (remove-hook 'before-change-functions
1874 'org-clock-remove-overlays 'local))))
1876 (defvar org-state) ;; dynamically scoped into this function
1877 (defun org-clock-out-if-current ()
1878 "Clock out if the current entry contains the running clock.
1879 This is used to stop the clock after a TODO entry is marked DONE,
1880 and is only done if the variable `org-clock-out-when-done' is not nil."
1881 (when (and (org-clocking-p)
1882 org-clock-out-when-done
1883 (marker-buffer org-clock-marker)
1884 (or (and (eq t org-clock-out-when-done)
1885 (member org-state org-done-keywords))
1886 (and (listp org-clock-out-when-done)
1887 (member org-state org-clock-out-when-done)))
1888 (equal (or (buffer-base-buffer (org-clocking-buffer))
1889 (org-clocking-buffer))
1890 (or (buffer-base-buffer (current-buffer))
1891 (current-buffer)))
1892 (< (point) org-clock-marker)
1893 (> (save-excursion (outline-next-heading) (point))
1894 org-clock-marker))
1895 ;; Clock out, but don't accept a logging message for this.
1896 (let ((org-log-note-clock-out nil)
1897 (org-clock-out-switch-to-state nil))
1898 (org-clock-out))))
1900 (add-hook 'org-after-todo-state-change-hook
1901 'org-clock-out-if-current)
1903 ;;;###autoload
1904 (defun org-clock-get-clocktable (&rest props)
1905 "Get a formatted clocktable with parameters according to PROPS.
1906 The table is created in a temporary buffer, fully formatted and
1907 fontified, and then returned."
1908 ;; Set the defaults
1909 (setq props (plist-put props :name "clocktable"))
1910 (unless (plist-member props :maxlevel)
1911 (setq props (plist-put props :maxlevel 2)))
1912 (unless (plist-member props :scope)
1913 (setq props (plist-put props :scope 'agenda)))
1914 (with-temp-buffer
1915 (org-mode)
1916 (org-create-dblock props)
1917 (org-update-dblock)
1918 (font-lock-fontify-buffer)
1919 (forward-line 2)
1920 (buffer-substring (point) (progn
1921 (re-search-forward "^[ \t]*#\\+END" nil t)
1922 (point-at-bol)))))
1924 ;;;###autoload
1925 (defun org-clock-report (&optional arg)
1926 "Create a table containing a report about clocked time.
1927 If the cursor is inside an existing clocktable block, then the table
1928 will be updated. If not, a new clocktable will be inserted. The scope
1929 of the new clock will be subtree when called from within a subtree, and
1930 file elsewhere.
1932 When called with a prefix argument, move to the first clock table in the
1933 buffer and update it."
1934 (interactive "P")
1935 (org-clock-remove-overlays)
1936 (when arg
1937 (org-find-dblock "clocktable")
1938 (org-show-entry))
1939 (if (org-in-clocktable-p)
1940 (goto-char (org-in-clocktable-p))
1941 (let ((props (if (ignore-errors
1942 (save-excursion (org-back-to-heading)))
1943 (list :name "clocktable" :scope 'subtree)
1944 (list :name "clocktable"))))
1945 (org-create-dblock
1946 (org-combine-plists org-clock-clocktable-default-properties props))))
1947 (org-update-dblock))
1949 (defun org-day-of-week (day month year)
1950 "Returns the day of the week as an integer."
1951 (nth 6
1952 (decode-time
1953 (date-to-time
1954 (format "%d-%02d-%02dT00:00:00" year month day)))))
1956 (defun org-quarter-to-date (quarter year)
1957 "Get the date (week day year) of the first day of a given quarter."
1958 (let (startday)
1959 (cond
1960 ((= quarter 1)
1961 (setq startday (org-day-of-week 1 1 year))
1962 (cond
1963 ((= startday 0)
1964 (list 52 7 (- year 1)))
1965 ((= startday 6)
1966 (list 52 6 (- year 1)))
1967 ((<= startday 4)
1968 (list 1 startday year))
1969 ((> startday 4)
1970 (list 53 startday (- year 1)))
1973 ((= quarter 2)
1974 (setq startday (org-day-of-week 1 4 year))
1975 (cond
1976 ((= startday 0)
1977 (list 13 startday year))
1978 ((< startday 4)
1979 (list 14 startday year))
1980 ((>= startday 4)
1981 (list 13 startday year))
1984 ((= quarter 3)
1985 (setq startday (org-day-of-week 1 7 year))
1986 (cond
1987 ((= startday 0)
1988 (list 26 startday year))
1989 ((< startday 4)
1990 (list 27 startday year))
1991 ((>= startday 4)
1992 (list 26 startday year))
1995 ((= quarter 4)
1996 (setq startday (org-day-of-week 1 10 year))
1997 (cond
1998 ((= startday 0)
1999 (list 39 startday year))
2000 ((<= startday 4)
2001 (list 40 startday year))
2002 ((> startday 4)
2003 (list 39 startday year)))))))
2005 (defun org-clock-special-range (key &optional time as-strings wstart mstart)
2006 "Return two times bordering a special time range.
2007 Key is a symbol specifying the range and can be one of `today', `yesterday',
2008 `thisweek', `lastweek', `thismonth', `lastmonth', `thisyear', `lastyear'.
2009 By default, a week starts Monday 0:00 and ends Sunday 24:00.
2010 The range is determined relative to TIME, which defaults to current time.
2011 The return value is a cons cell with two internal times like the ones
2012 returned by `current time' or `encode-time'.
2013 If AS-STRINGS is non-nil, the returned times will be formatted strings.
2014 If WSTART is non-nil, use this number to specify the starting day of a
2015 week (monday is 1).
2016 If MSTART is non-nil, use this number to specify the starting day of a
2017 month (1 is the first day of the month).
2018 If you can combine both, the month starting day will have priority."
2019 (if (integerp key) (setq key (intern (number-to-string key))))
2020 (let* ((tm (decode-time (or time (current-time))))
2021 (s 0) (m (nth 1 tm)) (h (nth 2 tm))
2022 (d (nth 3 tm)) (month (nth 4 tm)) (y (nth 5 tm))
2023 (dow (nth 6 tm))
2024 (ws (or wstart 1))
2025 (ms (or mstart 1))
2026 (skey (symbol-name key))
2027 (shift 0)
2028 (q (cond ((>= (nth 4 tm) 10) 4)
2029 ((>= (nth 4 tm) 7) 3)
2030 ((>= (nth 4 tm) 4) 2)
2031 ((>= (nth 4 tm) 1) 1)))
2032 s1 m1 h1 d1 month1 y1 diff ts te fm txt w date
2033 interval tmp shiftedy shiftedm shiftedq)
2034 (cond
2035 ((string-match "^[0-9]+$" skey)
2036 (setq y (string-to-number skey) m 1 d 1 key 'year))
2037 ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)$" skey)
2038 (setq y (string-to-number (match-string 1 skey))
2039 month (string-to-number (match-string 2 skey))
2040 d 1 key 'month))
2041 ((string-match "^\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)$" skey)
2042 (require 'cal-iso)
2043 (setq y (string-to-number (match-string 1 skey))
2044 w (string-to-number (match-string 2 skey)))
2045 (setq date (calendar-gregorian-from-absolute
2046 (calendar-absolute-from-iso (list w 1 y))))
2047 (setq d (nth 1 date) month (car date) y (nth 2 date)
2048 dow 1
2049 key 'week))
2050 ((string-match "^\\([0-9]+\\)-[qQ]\\([1-4]\\)$" skey)
2051 (require 'cal-iso)
2052 (setq y (string-to-number (match-string 1 skey)))
2053 (setq q (string-to-number (match-string 2 skey)))
2054 (setq date (calendar-gregorian-from-absolute
2055 (calendar-absolute-from-iso (org-quarter-to-date q y))))
2056 (setq d (nth 1 date) month (car date) y (nth 2 date)
2057 dow 1
2058 key 'quarter))
2059 ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)$" skey)
2060 (setq y (string-to-number (match-string 1 skey))
2061 month (string-to-number (match-string 2 skey))
2062 d (string-to-number (match-string 3 skey))
2063 key 'day))
2064 ((string-match "\\([-+][0-9]+\\)$" skey)
2065 (setq shift (string-to-number (match-string 1 skey))
2066 key (intern (substring skey 0 (match-beginning 1))))
2067 (if (and (memq key '(quarter thisq)) (> shift 0))
2068 (error "Looking forward with quarters isn't implemented"))))
2070 (when (= shift 0)
2071 (cond ((eq key 'yesterday) (setq key 'today shift -1))
2072 ((eq key 'lastweek) (setq key 'week shift -1))
2073 ((eq key 'lastmonth) (setq key 'month shift -1))
2074 ((eq key 'lastyear) (setq key 'year shift -1))
2075 ((eq key 'lastq) (setq key 'quarter shift -1))))
2076 (cond
2077 ((memq key '(day today))
2078 (setq d (+ d shift) h 0 m 0 h1 24 m1 0))
2079 ((memq key '(week thisweek))
2080 (setq diff (+ (* -7 shift) (if (= dow 0) (- 7 ws) (- dow ws)))
2081 m 0 h 0 d (- d diff) d1 (+ 7 d)))
2082 ((memq key '(month thismonth))
2083 (setq d (or ms 1) h 0 m 0 d1 (or ms 1)
2084 month (+ month shift) month1 (1+ month) h1 0 m1 0))
2085 ((memq key '(quarter thisq))
2086 ;; Compute if this shift remains in this year. If not, compute
2087 ;; how many years and quarters we have to shift (via floor*) and
2088 ;; compute the shifted years, months and quarters.
2089 (cond
2090 ((< (+ (- q 1) shift) 0) ; shift not in this year
2091 (setq interval (* -1 (+ (- q 1) shift)))
2092 ;; Set tmp to ((years to shift) (quarters to shift)).
2093 (setq tmp (org-floor* interval 4))
2094 ;; Due to the use of floor, 0 quarters actually means 4.
2095 (if (= 0 (nth 1 tmp))
2096 (setq shiftedy (- y (nth 0 tmp))
2097 shiftedm 1
2098 shiftedq 1)
2099 (setq shiftedy (- y (+ 1 (nth 0 tmp)))
2100 shiftedm (- 13 (* 3 (nth 1 tmp)))
2101 shiftedq (- 5 (nth 1 tmp))))
2102 (setq d 1 h 0 m 0 d1 1 month shiftedm month1 (+ 3 shiftedm) h1 0 m1 0 y shiftedy))
2103 ((> (+ q shift) 0) ; shift is within this year
2104 (setq shiftedq (+ q shift))
2105 (setq shiftedy y)
2106 (setq d 1 h 0 m 0 d1 1 month (+ 1 (* 3 (- (+ q shift) 1))) month1 (+ 4 (* 3 (- (+ q shift) 1))) h1 0 m1 0))))
2107 ((memq key '(year thisyear))
2108 (setq m 0 h 0 d 1 month 1 y (+ y shift) y1 (1+ y)))
2109 (t (error "No such time block %s" key)))
2110 (setq ts (encode-time s m h d month y)
2111 te (encode-time (or s1 s) (or m1 m) (or h1 h)
2112 (or d1 d) (or month1 month) (or y1 y)))
2113 (setq fm (cdr org-time-stamp-formats))
2114 (cond
2115 ((memq key '(day today))
2116 (setq txt (format-time-string "%A, %B %d, %Y" ts)))
2117 ((memq key '(week thisweek))
2118 (setq txt (format-time-string "week %G-W%V" ts)))
2119 ((memq key '(month thismonth))
2120 (setq txt (format-time-string "%B %Y" ts)))
2121 ((memq key '(year thisyear))
2122 (setq txt (format-time-string "the year %Y" ts)))
2123 ((memq key '(quarter thisq))
2124 (setq txt (concat (org-count-quarter shiftedq) " quarter of " (number-to-string shiftedy)))))
2125 (if as-strings
2126 (list (format-time-string fm ts) (format-time-string fm te) txt)
2127 (list ts te txt))))
2129 (defun org-count-quarter (n)
2130 (cond
2131 ((= n 1) "1st")
2132 ((= n 2) "2nd")
2133 ((= n 3) "3rd")
2134 ((= n 4) "4th")))
2136 (defun org-clocktable-shift (dir n)
2137 "Try to shift the :block date of the clocktable at point.
2138 Point must be in the #+BEGIN: line of a clocktable, or this function
2139 will throw an error.
2140 DIR is a direction, a symbol `left', `right', `up', or `down'.
2141 Both `left' and `down' shift the block toward the past, `up' and `right'
2142 push it toward the future.
2143 N is the number of shift steps to take. The size of the step depends on
2144 the currently selected interval size."
2145 (setq n (prefix-numeric-value n))
2146 (and (memq dir '(left down)) (setq n (- n)))
2147 (save-excursion
2148 (goto-char (point-at-bol))
2149 (if (not (looking-at "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
2150 (error "Line needs a :block definition before this command works")
2151 (let* ((b (match-beginning 1)) (e (match-end 1))
2152 (s (match-string 1))
2153 block shift ins y mw d date wp m)
2154 (cond
2155 ((equal s "yesterday") (setq s "today-1"))
2156 ((equal s "lastweek") (setq s "thisweek-1"))
2157 ((equal s "lastmonth") (setq s "thismonth-1"))
2158 ((equal s "lastyear") (setq s "thisyear-1"))
2159 ((equal s "lastq") (setq s "thisq-1")))
2161 (cond
2162 ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\|thisq\\)\\([-+][0-9]+\\)?$" s)
2163 (setq block (match-string 1 s)
2164 shift (if (match-end 2)
2165 (string-to-number (match-string 2 s))
2167 (setq shift (+ shift n))
2168 (setq ins (if (= shift 0) block (format "%s%+d" block shift))))
2169 ((string-match "\\([0-9]+\\)\\(-\\([wWqQ]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s)
2170 ;; 1 1 2 3 3 4 4 5 6 6 5 2
2171 (setq y (string-to-number (match-string 1 s))
2172 wp (and (match-end 3) (match-string 3 s))
2173 mw (and (match-end 4) (string-to-number (match-string 4 s)))
2174 d (and (match-end 6) (string-to-number (match-string 6 s))))
2175 (cond
2176 (d (setq ins (format-time-string
2177 "%Y-%m-%d"
2178 (encode-time 0 0 0 (+ d n) m y))))
2179 ((and wp (string-match "w\\|W" wp) mw (> (length wp) 0))
2180 (require 'cal-iso)
2181 (setq date (calendar-gregorian-from-absolute
2182 (calendar-absolute-from-iso (list (+ mw n) 1 y))))
2183 (setq ins (format-time-string
2184 "%G-W%V"
2185 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2186 ((and wp (string-match "q\\|Q" wp) mw (> (length wp) 0))
2187 (require 'cal-iso)
2188 ; if the 4th + 1 quarter is requested we flip to the 1st quarter of the next year
2189 (if (> (+ mw n) 4)
2190 (setq mw 0
2191 y (+ 1 y))
2193 ; if the 1st - 1 quarter is requested we flip to the 4th quarter of the previous year
2194 (if (= (+ mw n) 0)
2195 (setq mw 5
2196 y (- y 1))
2198 (setq date (calendar-gregorian-from-absolute
2199 (calendar-absolute-from-iso (org-quarter-to-date (+ mw n) y))))
2200 (setq ins (format-time-string
2201 (concat (number-to-string y) "-Q" (number-to-string (+ mw n)))
2202 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2204 (setq ins (format-time-string
2205 "%Y-%m"
2206 (encode-time 0 0 0 1 (+ mw n) y))))
2208 (setq ins (number-to-string (+ y n))))))
2209 (t (error "Cannot shift clocktable block")))
2210 (when ins
2211 (goto-char b)
2212 (insert ins)
2213 (delete-region (point) (+ (point) (- e b)))
2214 (beginning-of-line 1)
2215 (org-update-dblock)
2216 t)))))
2218 ;;;###autoload
2219 (defun org-dblock-write:clocktable (params)
2220 "Write the standard clocktable."
2221 (setq params (org-combine-plists org-clocktable-defaults params))
2222 (catch 'exit
2223 (let* ((scope (plist-get params :scope))
2224 (block (plist-get params :block))
2225 (ts (plist-get params :tstart))
2226 (te (plist-get params :tend))
2227 (link (plist-get params :link))
2228 (maxlevel (or (plist-get params :maxlevel) 3))
2229 (ws (plist-get params :wstart))
2230 (ms (plist-get params :mstart))
2231 (step (plist-get params :step))
2232 (timestamp (plist-get params :timestamp))
2233 (formatter (or (plist-get params :formatter)
2234 org-clock-clocktable-formatter
2235 'org-clocktable-write-default))
2236 cc range-text ipos pos one-file-with-archives
2237 scope-is-list tbls level)
2238 ;; Check if we need to do steps
2239 (when block
2240 ;; Get the range text for the header
2241 (setq cc (org-clock-special-range block nil t ws ms)
2242 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2243 (when step
2244 ;; Write many tables, in steps
2245 (unless (or block (and ts te))
2246 (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
2247 (org-clocktable-steps params)
2248 (throw 'exit nil))
2250 (setq ipos (point)) ; remember the insertion position
2252 ;; Get the right scope
2253 (setq pos (point))
2254 (cond
2255 ((and scope (listp scope) (symbolp (car scope)))
2256 (setq scope (eval scope)))
2257 ((eq scope 'agenda)
2258 (setq scope (org-agenda-files t)))
2259 ((eq scope 'agenda-with-archives)
2260 (setq scope (org-agenda-files t))
2261 (setq scope (org-add-archive-files scope)))
2262 ((eq scope 'file-with-archives)
2263 (setq scope (org-add-archive-files (list (buffer-file-name)))
2264 one-file-with-archives t)))
2265 (setq scope-is-list (and scope (listp scope)))
2266 (if scope-is-list
2267 ;; we collect from several files
2268 (let* ((files scope)
2269 file)
2270 (org-agenda-prepare-buffers files)
2271 (while (setq file (pop files))
2272 (with-current-buffer (find-buffer-visiting file)
2273 (save-excursion
2274 (save-restriction
2275 (push (org-clock-get-table-data file params) tbls))))))
2276 ;; Just from the current file
2277 (save-restriction
2278 ;; get the right range into the restriction
2279 (org-agenda-prepare-buffers (list (buffer-file-name)))
2280 (cond
2281 ((not scope)) ; use the restriction as it is now
2282 ((eq scope 'file) (widen))
2283 ((eq scope 'subtree) (org-narrow-to-subtree))
2284 ((eq scope 'tree)
2285 (while (org-up-heading-safe))
2286 (org-narrow-to-subtree))
2287 ((and (symbolp scope) (string-match "^tree\\([0-9]+\\)$"
2288 (symbol-name scope)))
2289 (setq level (string-to-number (match-string 1 (symbol-name scope))))
2290 (catch 'exit
2291 (while (org-up-heading-safe)
2292 (looking-at org-outline-regexp)
2293 (if (<= (org-reduced-level (funcall outline-level)) level)
2294 (throw 'exit nil))))
2295 (org-narrow-to-subtree)))
2296 ;; do the table, with no file name.
2297 (push (org-clock-get-table-data nil params) tbls)))
2299 ;; OK, at this point we tbls as a list of tables, one per file
2300 (setq tbls (nreverse tbls))
2302 (setq params (plist-put params :multifile scope-is-list))
2303 (setq params (plist-put params :one-file-with-archives
2304 one-file-with-archives))
2306 (funcall formatter ipos tbls params))))
2308 (defun org-clocktable-write-default (ipos tables params)
2309 "Write out a clock table at position IPOS in the current buffer.
2310 TABLES is a list of tables with clocking data as produced by
2311 `org-clock-get-table-data'. PARAMS is the parameter property list obtained
2312 from the dynamic block definition."
2313 ;; This function looks quite complicated, mainly because there are a
2314 ;; lot of options which can add or remove columns. I have massively
2315 ;; commented this function, the I hope it is understandable. If
2316 ;; someone wants to write their own special formatter, this maybe
2317 ;; much easier because there can be a fixed format with a
2318 ;; well-defined number of columns...
2319 (let* ((hlchars '((1 . "*") (2 . "/")))
2320 (lwords (assoc (or (plist-get params :lang)
2321 (org-bound-and-true-p org-export-default-language)
2322 "en")
2323 org-clock-clocktable-language-setup))
2324 (multifile (plist-get params :multifile))
2325 (block (plist-get params :block))
2326 (ts (plist-get params :tstart))
2327 (te (plist-get params :tend))
2328 (header (plist-get params :header))
2329 (narrow (plist-get params :narrow))
2330 (ws (or (plist-get params :wstart) 1))
2331 (ms (or (plist-get params :mstart) 1))
2332 (link (plist-get params :link))
2333 (maxlevel (or (plist-get params :maxlevel) 3))
2334 (emph (plist-get params :emphasize))
2335 (level-p (plist-get params :level))
2336 (org-time-clocksum-use-effort-durations
2337 (plist-get params :effort-durations))
2338 (timestamp (plist-get params :timestamp))
2339 (properties (plist-get params :properties))
2340 (ntcol (max 1 (or (plist-get params :tcolumns) 100)))
2341 (rm-file-column (plist-get params :one-file-with-archives))
2342 (indent (plist-get params :indent))
2343 (case-fold-search t)
2344 range-text total-time tbl level hlc formula pcol
2345 file-time entries entry headline
2346 recalc content narrow-cut-p tcol)
2348 ;; Implement abbreviations
2349 (when (plist-get params :compact)
2350 (setq level nil indent t narrow (or narrow '40!) ntcol 1))
2352 ;; Some consistency test for parameters
2353 (unless (integerp ntcol)
2354 (setq params (plist-put params :tcolumns (setq ntcol 100))))
2356 (when (and narrow (integerp narrow) link)
2357 ;; We cannot have both integer narrow and link
2358 (message
2359 "Using hard narrowing in clocktable to allow for links")
2360 (setq narrow (intern (format "%d!" narrow))))
2362 (when narrow
2363 (cond
2364 ((integerp narrow))
2365 ((and (symbolp narrow)
2366 (string-match "\\`[0-9]+!\\'" (symbol-name narrow)))
2367 (setq narrow-cut-p t
2368 narrow (string-to-number (substring (symbol-name narrow)
2369 0 -1))))
2371 (error "Invalid value %s of :narrow property in clock table"
2372 narrow))))
2374 (when block
2375 ;; Get the range text for the header
2376 (setq range-text (nth 2 (org-clock-special-range block nil t ws ms))))
2378 ;; Compute the total time
2379 (setq total-time (apply '+ (mapcar 'cadr tables)))
2381 ;; Now we need to output this tsuff
2382 (goto-char ipos)
2384 ;; Insert the text *before* the actual table
2385 (insert-before-markers
2386 (or header
2387 ;; Format the standard header
2388 (concat
2389 "#+CAPTION: "
2390 (nth 9 lwords) " ["
2391 (substring
2392 (format-time-string (cdr org-time-stamp-formats))
2393 1 -1)
2395 (if block (concat ", for " range-text ".") "")
2396 "\n")))
2398 ;; Insert the narrowing line
2399 (when (and narrow (integerp narrow) (not narrow-cut-p))
2400 (insert-before-markers
2401 "|" ; table line starter
2402 (if multifile "|" "") ; file column, maybe
2403 (if level-p "|" "") ; level column, maybe
2404 (if timestamp "|" "") ; timestamp column, maybe
2405 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2406 (format "<%d>| |\n" narrow))) ; headline and time columns
2408 ;; Insert the table header line
2409 (insert-before-markers
2410 "|" ; table line starter
2411 (if multifile (concat (nth 1 lwords) "|") "") ; file column, maybe
2412 (if level-p (concat (nth 2 lwords) "|") "") ; level column, maybe
2413 (if timestamp (concat (nth 3 lwords) "|") "") ; timestamp column, maybe
2414 (if properties (concat (mapconcat 'identity properties "|") "|") "") ;properties columns, maybe
2415 (concat (nth 4 lwords) "|"
2416 (nth 5 lwords) "|\n")) ; headline and time columns
2418 ;; Insert the total time in the table
2419 (insert-before-markers
2420 "|-\n" ; a hline
2421 "|" ; table line starter
2422 (if multifile (concat "| " (nth 6 lwords) " ") "")
2423 ; file column, maybe
2424 (if level-p "|" "") ; level column, maybe
2425 (if timestamp "|" "") ; timestamp column, maybe
2426 (if properties (make-string (length properties) ?|) "") ; properties columns, maybe
2427 (concat (format org-clock-total-time-cell-format (nth 7 lwords)) "| ") ; instead of a headline
2428 (format org-clock-total-time-cell-format
2429 (org-minutes-to-clocksum-string (or total-time 0))) ; the time
2430 "|\n") ; close line
2432 ;; Now iterate over the tables and insert the data
2433 ;; but only if any time has been collected
2434 (when (and total-time (> total-time 0))
2436 (while (setq tbl (pop tables))
2437 ;; now tbl is the table resulting from one file.
2438 (setq file-time (nth 1 tbl))
2439 (when (or (and file-time (> file-time 0))
2440 (not (plist-get params :fileskip0)))
2441 (insert-before-markers "|-\n") ; a hline because a new file starts
2442 ;; First the file time, if we have multiple files
2443 (when multifile
2444 ;; Summarize the time collected from this file
2445 (insert-before-markers
2446 (format (concat "| %s %s | %s%s"
2447 (format org-clock-file-time-cell-format (nth 8 lwords))
2448 " | *%s*|\n")
2449 (file-name-nondirectory (car tbl))
2450 (if level-p "| " "") ; level column, maybe
2451 (if timestamp "| " "") ; timestamp column, maybe
2452 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2453 (org-minutes-to-clocksum-string (nth 1 tbl))))) ; the time
2455 ;; Get the list of node entries and iterate over it
2456 (setq entries (nth 2 tbl))
2457 (while (setq entry (pop entries))
2458 (setq level (car entry)
2459 headline (nth 1 entry)
2460 hlc (if emph (or (cdr (assoc level hlchars)) "") ""))
2461 (when narrow-cut-p
2462 (if (and (string-match (concat "\\`" org-bracket-link-regexp
2463 "\\'")
2464 headline)
2465 (match-end 3))
2466 (setq headline
2467 (format "[[%s][%s]]"
2468 (match-string 1 headline)
2469 (org-shorten-string (match-string 3 headline)
2470 narrow)))
2471 (setq headline (org-shorten-string headline narrow))))
2472 (insert-before-markers
2473 "|" ; start the table line
2474 (if multifile "|" "") ; free space for file name column?
2475 (if level-p (format "%d|" (car entry)) "") ; level, maybe
2476 (if timestamp (concat (nth 2 entry) "|") "") ; timestamp, maybe
2477 (if properties
2478 (concat
2479 (mapconcat
2480 (lambda (p) (or (cdr (assoc p (nth 4 entry))) ""))
2481 properties "|") "|") "") ;properties columns, maybe
2482 (if indent (org-clocktable-indent-string level) "") ; indentation
2483 hlc headline hlc "|" ; headline
2484 (make-string (min (1- ntcol) (or (- level 1))) ?|)
2485 ; empty fields for higher levels
2486 hlc (org-minutes-to-clocksum-string (nth 3 entry)) hlc ; time
2487 "|\n" ; close line
2488 )))))
2489 ;; When exporting subtrees or regions the region might be
2490 ;; activated, so let's disable ̀delete-active-region'
2491 (let ((delete-active-region nil)) (backward-delete-char 1))
2492 (if (setq formula (plist-get params :formula))
2493 (cond
2494 ((eq formula '%)
2495 ;; compute the column where the % numbers need to go
2496 (setq pcol (+ 2
2497 (if multifile 1 0)
2498 (if level-p 1 0)
2499 (if timestamp 1 0)
2500 (min maxlevel (or ntcol 100))))
2501 ;; compute the column where the total time is
2502 (setq tcol (+ 2
2503 (if multifile 1 0)
2504 (if level-p 1 0)
2505 (if timestamp 1 0)))
2506 (insert
2507 (format
2508 "\n#+TBLFM: $%d='(org-clock-time%% @%d$%d $%d..$%d);%%.1f"
2509 pcol ; the column where the % numbers should go
2510 (if (and narrow (not narrow-cut-p)) 3 2) ; row of the total time
2511 tcol ; column of the total time
2512 tcol (1- pcol) ; range of columns where times can be found
2514 (setq recalc t))
2515 ((stringp formula)
2516 (insert "\n#+TBLFM: " formula)
2517 (setq recalc t))
2518 (t (error "Invalid formula in clocktable")))
2519 ;; Should we rescue an old formula?
2520 (when (stringp (setq content (plist-get params :content)))
2521 (when (string-match "^\\([ \t]*#\\+tblfm:.*\\)" content)
2522 (setq recalc t)
2523 (insert "\n" (match-string 1 (plist-get params :content)))
2524 (beginning-of-line 0))))
2525 ;; Back to beginning, align the table, recalculate if necessary
2526 (goto-char ipos)
2527 (skip-chars-forward "^|")
2528 (org-table-align)
2529 (when org-hide-emphasis-markers
2530 ;; we need to align a second time
2531 (org-table-align))
2532 (when recalc
2533 (if (eq formula '%)
2534 (save-excursion
2535 (if (and narrow (not narrow-cut-p)) (beginning-of-line 2))
2536 (org-table-goto-column pcol nil 'force)
2537 (insert "%")))
2538 (org-table-recalculate 'all))
2539 (when rm-file-column
2540 ;; The file column is actually not wanted
2541 (forward-char 1)
2542 (org-table-delete-column))
2543 total-time))
2545 (defun org-clocktable-indent-string (level)
2546 (if (= level 1)
2548 (let ((str "\\__"))
2549 (while (> level 2)
2550 (setq level (1- level)
2551 str (concat str "___")))
2552 (concat str " "))))
2554 (defun org-clocktable-steps (params)
2555 "Step through the range to make a number of clock tables."
2556 (let* ((p1 (copy-sequence params))
2557 (ts (plist-get p1 :tstart))
2558 (te (plist-get p1 :tend))
2559 (ws (plist-get p1 :wstart))
2560 (ms (plist-get p1 :mstart))
2561 (step0 (plist-get p1 :step))
2562 (step (cdr (assoc step0 '((day . 86400) (week . 604800)))))
2563 (stepskip0 (plist-get p1 :stepskip0))
2564 (block (plist-get p1 :block))
2565 cc range-text step-time tsb)
2566 (when block
2567 (setq cc (org-clock-special-range block nil t ws ms)
2568 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2569 (cond
2570 ((numberp ts)
2571 ;; If ts is a number, it's an absolute day number from org-agenda.
2572 (destructuring-bind (month day year) (calendar-gregorian-from-absolute ts)
2573 (setq ts (org-float-time (encode-time 0 0 0 day month year)))))
2575 (setq ts (org-float-time
2576 (apply 'encode-time (org-parse-time-string ts))))))
2577 (cond
2578 ((numberp te)
2579 ;; Likewise for te.
2580 (destructuring-bind (month day year) (calendar-gregorian-from-absolute te)
2581 (setq te (org-float-time (encode-time 0 0 0 day month year)))))
2583 (setq te (org-float-time
2584 (apply 'encode-time (org-parse-time-string te))))))
2585 (setq tsb
2586 (if (eq step0 'week)
2587 (- ts (* 86400 (- (nth 6 (decode-time (seconds-to-time ts))) ws)))
2588 ts))
2589 (setq p1 (plist-put p1 :header ""))
2590 (setq p1 (plist-put p1 :step nil))
2591 (setq p1 (plist-put p1 :block nil))
2592 (while (< tsb te)
2593 (or (bolp) (insert "\n"))
2594 (setq p1 (plist-put p1 :tstart (format-time-string
2595 (org-time-stamp-format nil t)
2596 (seconds-to-time (max tsb ts)))))
2597 (setq p1 (plist-put p1 :tend (format-time-string
2598 (org-time-stamp-format nil t)
2599 (seconds-to-time (min te (setq tsb (+ tsb step)))))))
2600 (insert "\n" (if (eq step0 'day) "Daily report: "
2601 "Weekly report starting on: ")
2602 (plist-get p1 :tstart) "\n")
2603 (setq step-time (org-dblock-write:clocktable p1))
2604 (re-search-forward "^[ \t]*#\\+END:")
2605 (when (and (equal step-time 0) stepskip0)
2606 ;; Remove the empty table
2607 (delete-region (point-at-bol)
2608 (save-excursion
2609 (re-search-backward "^\\(Daily\\|Weekly\\) report"
2610 nil t)
2611 (point))))
2612 (end-of-line 0))))
2614 (defun org-clock-get-table-data (file params)
2615 "Get the clocktable data for file FILE, with parameters PARAMS.
2616 FILE is only for identification - this function assumes that
2617 the correct buffer is current, and that the wanted restriction is
2618 in place.
2619 The return value will be a list with the file name and the total
2620 file time (in minutes) as 1st and 2nd elements. The third element
2621 of this list will be a list of headline entries. Each entry has the
2622 following structure:
2624 (LEVEL HEADLINE TIMESTAMP TIME)
2626 LEVEL: The level of the headline, as an integer. This will be
2627 the reduced leve, so 1,2,3,... even if only odd levels
2628 are being used.
2629 HEADLINE: The text of the headline. Depending on PARAMS, this may
2630 already be formatted like a link.
2631 TIMESTAMP: If PARAMS require it, this will be a time stamp found in the
2632 entry, any of SCHEDULED, DEADLINE, NORMAL, or first inactive,
2633 in this sequence.
2634 TIME: The sum of all time spend in this tree, in minutes. This time
2635 will of cause be restricted to the time block and tags match
2636 specified in PARAMS."
2637 (let* ((maxlevel (or (plist-get params :maxlevel) 3))
2638 (timestamp (plist-get params :timestamp))
2639 (ts (plist-get params :tstart))
2640 (te (plist-get params :tend))
2641 (ws (plist-get params :wstart))
2642 (ms (plist-get params :mstart))
2643 (block (plist-get params :block))
2644 (link (plist-get params :link))
2645 (tags (plist-get params :tags))
2646 (properties (plist-get params :properties))
2647 (inherit-property-p (plist-get params :inherit-props))
2648 todo-only
2649 (matcher (if tags (cdr (org-make-tags-matcher tags))))
2650 cc range-text st p time level hdl props tsp tbl)
2652 (setq org-clock-file-total-minutes nil)
2653 (when block
2654 (setq cc (org-clock-special-range block nil t ws ms)
2655 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2656 (when (integerp ts) (setq ts (calendar-gregorian-from-absolute ts)))
2657 (when (integerp te) (setq te (calendar-gregorian-from-absolute te)))
2658 (when (and ts (listp ts))
2659 (setq ts (format "%4d-%02d-%02d" (nth 2 ts) (car ts) (nth 1 ts))))
2660 (when (and te (listp te))
2661 (setq te (format "%4d-%02d-%02d" (nth 2 te) (car te) (nth 1 te))))
2662 ;; Now the times are strings we can parse.
2663 (if ts (setq ts (org-float-time
2664 (seconds-to-time (org-matcher-time ts)))))
2665 (if te (setq te (org-float-time
2666 (seconds-to-time (org-matcher-time te)))))
2667 (save-excursion
2668 (org-clock-sum ts te
2669 (unless (null matcher)
2670 (lambda ()
2671 (let* ((tags-list (org-get-tags-at))
2672 (org-scanner-tags tags-list)
2673 (org-trust-scanner-tags t))
2674 (eval matcher)))))
2675 (goto-char (point-min))
2676 (setq st t)
2677 (while (or (and (bobp) (prog1 st (setq st nil))
2678 (get-text-property (point) :org-clock-minutes)
2679 (setq p (point-min)))
2680 (setq p (next-single-property-change
2681 (point) :org-clock-minutes)))
2682 (goto-char p)
2683 (when (setq time (get-text-property p :org-clock-minutes))
2684 (save-excursion
2685 (beginning-of-line 1)
2686 (when (and (looking-at (org-re "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[[:alnum:]_@#%:]+:\\)?[ \t]*$"))
2687 (setq level (org-reduced-level
2688 (- (match-end 1) (match-beginning 1))))
2689 (<= level maxlevel))
2690 (setq hdl (if (not link)
2691 (match-string 2)
2692 (org-make-link-string
2693 (format "file:%s::%s"
2694 (buffer-file-name)
2695 (save-match-data
2696 (org-make-org-heading-search-string
2697 (match-string 2))))
2698 (match-string 2)))
2699 tsp (when timestamp
2700 (setq props (org-entry-properties (point)))
2701 (or (cdr (assoc "SCHEDULED" props))
2702 (cdr (assoc "DEADLINE" props))
2703 (cdr (assoc "TIMESTAMP" props))
2704 (cdr (assoc "TIMESTAMP_IA" props))))
2705 props (when properties
2706 (remove nil
2707 (mapcar
2708 (lambda (p)
2709 (when (org-entry-get (point) p inherit-property-p)
2710 (cons p (org-entry-get (point) p inherit-property-p))))
2711 properties))))
2712 (when (> time 0) (push (list level hdl tsp time props) tbl))))))
2713 (setq tbl (nreverse tbl))
2714 (list file org-clock-file-total-minutes tbl))))
2716 (defun org-clock-time% (total &rest strings)
2717 "Compute a time fraction in percent.
2718 TOTAL s a time string like 10:21 specifying the total times.
2719 STRINGS is a list of strings that should be checked for a time.
2720 The first string that does have a time will be used.
2721 This function is made for clock tables."
2722 (let ((re "\\([0-9]+\\):\\([0-9]+\\)")
2723 tot s)
2724 (save-match-data
2725 (catch 'exit
2726 (if (not (string-match re total))
2727 (throw 'exit 0.)
2728 (setq tot (+ (string-to-number (match-string 2 total))
2729 (* 60 (string-to-number (match-string 1 total)))))
2730 (if (= tot 0.) (throw 'exit 0.)))
2731 (while (setq s (pop strings))
2732 (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
2733 (throw 'exit
2734 (/ (* 100.0 (+ (string-to-number (match-string 2 s))
2735 (* 60 (string-to-number
2736 (match-string 1 s)))))
2737 tot))))
2738 0))))
2740 ;; Saving and loading the clock
2742 (defvar org-clock-loaded nil
2743 "Was the clock file loaded?")
2745 (defun org-clock-update-time-maybe ()
2746 "If this is a CLOCK line, update it and return t.
2747 Otherwise, return nil."
2748 (interactive)
2749 (save-excursion
2750 (beginning-of-line 1)
2751 (skip-chars-forward " \t")
2752 (when (looking-at org-clock-string)
2753 (let ((re (concat "[ \t]*" org-clock-string
2754 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
2755 "\\([ \t]*=>.*\\)?\\)?"))
2756 ts te h m s neg)
2757 (cond
2758 ((not (looking-at re))
2759 nil)
2760 ((not (match-end 2))
2761 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
2762 (> org-clock-marker (point))
2763 (<= org-clock-marker (point-at-eol)))
2764 ;; The clock is running here
2765 (setq org-clock-start-time
2766 (apply 'encode-time
2767 (org-parse-time-string (match-string 1))))
2768 (org-clock-update-mode-line)))
2770 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
2771 (end-of-line 1)
2772 (setq ts (match-string 1)
2773 te (match-string 3))
2774 (setq s (- (org-float-time
2775 (apply 'encode-time (org-parse-time-string te)))
2776 (org-float-time
2777 (apply 'encode-time (org-parse-time-string ts))))
2778 neg (< s 0)
2779 s (abs s)
2780 h (floor (/ s 3600))
2781 s (- s (* 3600 h))
2782 m (floor (/ s 60))
2783 s (- s (* 60 s)))
2784 (insert " => " (format (if neg "-%d:%02d" "%2d:%02d") h m))
2785 t))))))
2787 (defun org-clock-save ()
2788 "Persist various clock-related data to disk.
2789 The details of what will be saved are regulated by the variable
2790 `org-clock-persist'."
2791 (when (and org-clock-persist
2792 (or org-clock-loaded
2793 org-clock-has-been-used
2794 (not (file-exists-p org-clock-persist-file))))
2795 (let (b)
2796 (with-current-buffer (find-file (expand-file-name org-clock-persist-file))
2797 (progn
2798 (delete-region (point-min) (point-max))
2799 ;;Store clock
2800 (insert (format ";; org-persist.el - %s at %s\n"
2801 system-name (format-time-string
2802 (cdr org-time-stamp-formats))))
2803 (if (and (memq org-clock-persist '(t clock))
2804 (setq b (org-clocking-buffer))
2805 (setq b (or (buffer-base-buffer b) b))
2806 (buffer-live-p b)
2807 (buffer-file-name b)
2808 (or (not org-clock-persist-query-save)
2809 (y-or-n-p (concat "Save current clock ("
2810 org-clock-heading ") "))))
2811 (insert "(setq resume-clock '(\""
2812 (buffer-file-name (org-clocking-buffer))
2813 "\" . " (int-to-string (marker-position org-clock-marker))
2814 "))\n"))
2815 ;; Store clocked task history. Tasks are stored reversed to make
2816 ;; reading simpler
2817 (when (and (memq org-clock-persist '(t history))
2818 org-clock-history)
2819 (insert
2820 "(setq stored-clock-history '("
2821 (mapconcat
2822 (lambda (m)
2823 (when (and (setq b (marker-buffer m))
2824 (setq b (or (buffer-base-buffer b) b))
2825 (buffer-live-p b)
2826 (buffer-file-name b))
2827 (concat "(\"" (buffer-file-name b)
2828 "\" . " (int-to-string (marker-position m))
2829 ")")))
2830 (reverse org-clock-history) " ") "))\n"))
2831 (save-buffer)
2832 (kill-buffer (current-buffer)))))))
2834 (defun org-clock-load ()
2835 "Load clock-related data from disk, maybe resuming a stored clock."
2836 (when (and org-clock-persist (not org-clock-loaded))
2837 (let ((filename (expand-file-name org-clock-persist-file))
2838 (org-clock-in-resume 'auto-restart)
2839 resume-clock stored-clock-history)
2840 (if (not (file-readable-p filename))
2841 (message "Not restoring clock data; %s not found"
2842 org-clock-persist-file)
2843 (message "%s" "Restoring clock data")
2844 (setq org-clock-loaded t)
2845 (load-file filename)
2846 ;; load history
2847 (when stored-clock-history
2848 (save-window-excursion
2849 (mapc (lambda (task)
2850 (if (file-exists-p (car task))
2851 (org-clock-history-push (cdr task)
2852 (find-file (car task)))))
2853 stored-clock-history)))
2854 ;; resume clock
2855 (when (and resume-clock org-clock-persist
2856 (file-exists-p (car resume-clock))
2857 (or (not org-clock-persist-query-resume)
2858 (y-or-n-p
2859 (concat
2860 "Resume clock ("
2861 (with-current-buffer (find-file (car resume-clock))
2862 (save-excursion
2863 (goto-char (cdr resume-clock))
2864 (org-back-to-heading t)
2865 (and (looking-at org-complex-heading-regexp)
2866 (match-string 4))))
2867 ") "))))
2868 (when (file-exists-p (car resume-clock))
2869 (with-current-buffer (find-file (car resume-clock))
2870 (goto-char (cdr resume-clock))
2871 (let ((org-clock-auto-clock-resolution nil))
2872 (org-clock-in)
2873 (if (outline-invisible-p)
2874 (org-show-context))))))))))
2876 ;; Suggested bindings
2877 (org-defkey org-mode-map "\C-c\C-x\C-e" 'org-clock-modify-effort-estimate)
2879 (provide 'org-clock)
2881 ;; Local variables:
2882 ;; generated-autoload-file: "org-loaddefs.el"
2883 ;; End:
2885 ;;; org-clock.el ends here