Mercurial > emacs
annotate lisp/calendar/timeclock.el @ 111502:df6573cbdd34
* lisp/emacs-lisp/pcase.el (pcase-let*, pcase-let): Add debug and
indentation specs.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 11 Nov 2010 20:35:06 -0500 |
parents | 8309f15b2534 |
children | 417b1e4d63cd |
rev | line source |
---|---|
30781 | 1 ;;; timeclock.el --- mode for keeping track of how much you work |
2 | |
92600 | 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
106815 | 4 ;; 2008, 2009, 2010 Free Software Foundation, Inc. |
30781 | 5 |
6 ;; Author: John Wiegley <johnw@gnu.org> | |
7 ;; Created: 25 Mar 1999 | |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
8 ;; Version: 2.6.1 |
30781 | 9 ;; Keywords: calendar data |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92957
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
30781 | 14 ;; it under the terms of the GNU General Public License as published by |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92957
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92957
diff
changeset
|
16 ;; (at your option) any later version. |
30781 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92957
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
30781 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This mode is for keeping track of time intervals. You can use it | |
29 ;; for whatever purpose you like, but the typical scenario is to keep | |
30 ;; track of how much time you spend working on certain projects. | |
31 ;; | |
32 ;; Use `timeclock-in' when you start on a project, and `timeclock-out' | |
33 ;; when you're done. Once you've collected some data, you can use | |
34 ;; `timeclock-workday-remaining' to see how much time is left to be | |
51871 | 35 ;; worked today (where `timeclock-workday' specifies the length of the |
36 ;; working day), and `timeclock-when-to-leave' to calculate when you're free. | |
30781 | 37 |
38 ;; You'll probably want to bind the timeclock commands to some handy | |
51871 | 39 ;; keystrokes. At the moment, C-x t is unused: |
30781 | 40 ;; |
41 ;; (require 'timeclock) | |
42 ;; | |
43 ;; (define-key ctl-x-map "ti" 'timeclock-in) | |
44 ;; (define-key ctl-x-map "to" 'timeclock-out) | |
45 ;; (define-key ctl-x-map "tc" 'timeclock-change) | |
46 ;; (define-key ctl-x-map "tr" 'timeclock-reread-log) | |
47 ;; (define-key ctl-x-map "tu" 'timeclock-update-modeline) | |
48 ;; (define-key ctl-x-map "tw" 'timeclock-when-to-leave-string) | |
49 | |
50 ;; If you want Emacs to display the amount of time "left" to your | |
51 ;; workday in the modeline, you can either set the value of | |
52 ;; `timeclock-modeline-display' to t using M-x customize, or you | |
53 ;; can add this code to your .emacs file: | |
54 ;; | |
55 ;; (require 'timeclock) | |
56 ;; (timeclock-modeline-display) | |
57 ;; | |
58 ;; To cancel this modeline display at any time, just call | |
59 ;; `timeclock-modeline-display' again. | |
60 | |
61 ;; You may also want Emacs to ask you before exiting, if you are | |
54704 | 62 ;; currently working on a project. This can be done either by setting |
30781 | 63 ;; `timeclock-ask-before-exiting' to t using M-x customize (this is |
64 ;; the default), or by adding the following to your .emacs file: | |
65 ;; | |
51263 | 66 ;; (add-hook 'kill-emacs-query-functions 'timeclock-query-out) |
30781 | 67 |
68 ;; NOTE: If you change your .timelog file without using timeclock's | |
69 ;; functions, or if you change the value of any of timeclock's | |
70 ;; customizable variables, you should run the command | |
71 ;; `timeclock-reread-log'. This will recompute any discrepancies in | |
72 ;; your average working time, and will make sure that the various | |
73 ;; display functions return the correct value. | |
74 | |
75 ;;; History: | |
76 | |
77 ;;; Code: | |
78 | |
79 (defgroup timeclock nil | |
61327 | 80 "Keeping track of the time that gets spent." |
30781 | 81 :group 'data) |
82 | |
83 ;;; User Variables: | |
84 | |
30795
5b4027fef808
(timeclock-file): Run .timelog through convert-standard-filename.
Eli Zaretskii <eliz@gnu.org>
parents:
30781
diff
changeset
|
85 (defcustom timeclock-file (convert-standard-filename "~/.timelog") |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
86 "The file used to store timeclock data in." |
30781 | 87 :type 'file |
88 :group 'timeclock) | |
89 | |
90 (defcustom timeclock-workday (* 8 60 60) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
91 "The length of a work period in seconds." |
30781 | 92 :type 'integer |
93 :group 'timeclock) | |
94 | |
95 (defcustom timeclock-relative t | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
96 "Whether to make reported time relative to `timeclock-workday'. |
30781 | 97 For example, if the length of a normal workday is eight hours, and you |
98 work four hours on Monday, then the amount of time \"remaining\" on | |
99 Tuesday is twelve hours -- relative to an averaged work period of | |
100 eight hours -- or eight hours, non-relative. So relative time takes | |
51871 | 101 into account any discrepancy of time under-worked or over-worked on |
102 previous days. This only affects the timeclock modeline display." | |
30781 | 103 :type 'boolean |
104 :group 'timeclock) | |
105 | |
106 (defcustom timeclock-get-project-function 'timeclock-ask-for-project | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
107 "The function used to determine the name of the current project. |
30781 | 108 When clocking in, and no project is specified, this function will be |
54704 | 109 called to determine what is the current project to be worked on. |
30781 | 110 If this variable is nil, no questions will be asked." |
111 :type 'function | |
112 :group 'timeclock) | |
113 | |
114 (defcustom timeclock-get-reason-function 'timeclock-ask-for-reason | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
115 "A function used to determine the reason for clocking out. |
30781 | 116 When clocking out, and no reason is specified, this function will be |
54704 | 117 called to determine what is the reason. |
30781 | 118 If this variable is nil, no questions will be asked." |
119 :type 'function | |
120 :group 'timeclock) | |
121 | |
122 (defcustom timeclock-get-workday-function nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
123 "A function used to determine the length of today's workday. |
30781 | 124 The first time that a user clocks in each day, this function will be |
54704 | 125 called to determine what is the length of the current workday. If |
46341
ff3a56c0df0f
(timeclock-get-workday-function): `timeclock-workday' is not a valid
Glenn Morris <rgm@gnu.org>
parents:
46160
diff
changeset
|
126 the return value is nil, or equal to `timeclock-workday', nothing special |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48224
diff
changeset
|
127 will be done. If it is a quantity different from `timeclock-workday', |
46341
ff3a56c0df0f
(timeclock-get-workday-function): `timeclock-workday' is not a valid
Glenn Morris <rgm@gnu.org>
parents:
46160
diff
changeset
|
128 however, a record will be output to the timelog file to note the fact that |
54704 | 129 that day has a length that is different from the norm." |
46341
ff3a56c0df0f
(timeclock-get-workday-function): `timeclock-workday' is not a valid
Glenn Morris <rgm@gnu.org>
parents:
46160
diff
changeset
|
130 :type '(choice (const nil) function) |
30781 | 131 :group 'timeclock) |
132 | |
133 (defcustom timeclock-ask-before-exiting t | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
134 "If non-nil, ask if the user wants to clock out before exiting Emacs. |
54704 | 135 This variable only has effect if set with \\[customize]." |
30781 | 136 :set (lambda (symbol value) |
137 (if value | |
51263 | 138 (add-hook 'kill-emacs-query-functions 'timeclock-query-out) |
139 (remove-hook 'kill-emacs-query-functions 'timeclock-query-out)) | |
30781 | 140 (setq timeclock-ask-before-exiting value)) |
141 :type 'boolean | |
142 :group 'timeclock) | |
143 | |
144 (defvar timeclock-update-timer nil | |
145 "The timer used to update `timeclock-mode-string'.") | |
146 | |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
147 ;; For byte-compiler. |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
148 (defvar display-time-hook) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
149 (defvar timeclock-modeline-display) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
150 |
30781 | 151 (defcustom timeclock-use-display-time t |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
152 "If non-nil, use `display-time-hook' for doing modeline updates. |
54704 | 153 The advantage of this is that one less timer has to be set running |
154 amok in Emacs' process space. The disadvantage is that it requires | |
155 you to have `display-time' running. If you don't want to use | |
30781 | 156 `display-time', but still want the modeline to show how much time is |
51871 | 157 left, set this variable to nil. Changing the value of this variable |
158 while timeclock information is being displayed in the modeline has no | |
159 effect. You should call the function `timeclock-modeline-display' with | |
160 a positive argument to force an update." | |
30781 | 161 :set (lambda (symbol value) |
162 (let ((currently-displaying | |
163 (and (boundp 'timeclock-modeline-display) | |
164 timeclock-modeline-display))) | |
165 ;; if we're changing to the state that | |
166 ;; `timeclock-modeline-display' is already using, don't | |
167 ;; bother toggling it. This happens on the initial loading | |
168 ;; of timeclock.el. | |
169 (if (and currently-displaying | |
170 (or (and value | |
171 (boundp 'display-time-hook) | |
172 (memq 'timeclock-update-modeline | |
173 display-time-hook)) | |
174 (and (not value) | |
175 timeclock-update-timer))) | |
176 (setq currently-displaying nil)) | |
177 (and currently-displaying | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
178 (set-variable 'timeclock-modeline-display nil)) |
30781 | 179 (setq timeclock-use-display-time value) |
180 (and currently-displaying | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
181 (set-variable 'timeclock-modeline-display t)) |
30781 | 182 timeclock-use-display-time)) |
183 :type 'boolean | |
184 :group 'timeclock | |
185 :require 'time) | |
186 | |
187 (defcustom timeclock-first-in-hook nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
188 "A hook run for the first \"in\" event each day. |
30781 | 189 Note that this hook is run before recording any events. Thus the |
190 value of `timeclock-hours-today', `timeclock-last-event' and the | |
191 return value of function `timeclock-last-period' are relative previous | |
192 to today." | |
193 :type 'hook | |
194 :group 'timeclock) | |
195 | |
196 (defcustom timeclock-load-hook nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
197 "Hook that gets run after timeclock has been loaded." |
30781 | 198 :type 'hook |
199 :group 'timeclock) | |
200 | |
201 (defcustom timeclock-in-hook nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
202 "A hook run every time an \"in\" event is recorded." |
30781 | 203 :type 'hook |
204 :group 'timeclock) | |
205 | |
206 (defcustom timeclock-day-over-hook nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
207 "A hook that is run when the workday has been completed. |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
208 This hook is only run if the current time remaining is being displayed |
30781 | 209 in the modeline. See the variable `timeclock-modeline-display'." |
210 :type 'hook | |
211 :group 'timeclock) | |
212 | |
213 (defcustom timeclock-out-hook nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
214 "A hook run every time an \"out\" event is recorded." |
30781 | 215 :type 'hook |
216 :group 'timeclock) | |
217 | |
218 (defcustom timeclock-done-hook nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
219 "A hook run every time a project is marked as completed." |
30781 | 220 :type 'hook |
221 :group 'timeclock) | |
222 | |
223 (defcustom timeclock-event-hook nil | |
92548
979f17a77d87
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
224 "A hook run every time any event is recorded." |
30781 | 225 :type 'hook |
226 :group 'timeclock) | |
227 | |
228 (defvar timeclock-last-event nil | |
229 "A list containing the last event that was recorded. | |
33020 | 230 The format of this list is (CODE TIME PROJECT).") |
30781 | 231 |
232 (defvar timeclock-last-event-workday nil | |
233 "The number of seconds in the workday of `timeclock-last-event'.") | |
234 | |
235 ;;; Internal Variables: | |
236 | |
237 (defvar timeclock-discrepancy nil | |
238 "A variable containing the time discrepancy before the last event. | |
239 Normally, timeclock assumes that you intend to work for | |
240 `timeclock-workday' seconds every day. Any days in which you work | |
241 more or less than this amount is considered either a positive or | |
54704 | 242 a negative discrepancy. If you work in such a manner that the |
30781 | 243 discrepancy is always brought back to zero, then you will by |
244 definition have worked an average amount equal to `timeclock-workday' | |
245 each day.") | |
246 | |
247 (defvar timeclock-elapsed nil | |
248 "A variable containing the time elapsed for complete periods today. | |
249 This value is not accurate enough to be useful by itself. Rather, | |
250 call `timeclock-workday-elapsed', to determine how much time has been | |
251 worked so far today. Also, if `timeclock-relative' is nil, this value | |
72331
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
252 will be the same as `timeclock-discrepancy'.") |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
253 |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
254 (defvar timeclock-use-elapsed nil |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
255 "Non-nil if the modeline should display time elapsed, not remaining.") |
30781 | 256 |
257 (defvar timeclock-last-period nil | |
258 "Integer representing the number of seconds in the last period. | |
54704 | 259 Note that you shouldn't access this value, but instead should use the |
260 function `timeclock-last-period'.") | |
30781 | 261 |
262 (defvar timeclock-mode-string nil | |
51263 | 263 "The timeclock string (optionally) displayed in the modeline. |
264 The time is bracketed by <> if you are clocked in, otherwise by [].") | |
30781 | 265 |
266 (defvar timeclock-day-over nil | |
267 "The date of the last day when notified \"day over\" for.") | |
268 | |
269 ;;; User Functions: | |
270 | |
271 ;;;###autoload | |
272 (defun timeclock-modeline-display (&optional arg) | |
273 "Toggle display of the amount of time left today in the modeline. | |
51263 | 274 If `timeclock-use-display-time' is non-nil (the default), then |
275 the function `display-time-mode' must be active, and the modeline | |
276 will be updated whenever the time display is updated. Otherwise, | |
277 the timeclock will use its own sixty second timer to do its | |
278 updating. With prefix ARG, turn modeline display on if and only | |
279 if ARG is positive. Returns the new status of timeclock modeline | |
280 display (non-nil means on)." | |
30781 | 281 (interactive "P") |
51263 | 282 ;; cf display-time-mode. |
283 (setq timeclock-mode-string "") | |
284 (or global-mode-string (setq global-mode-string '(""))) | |
30781 | 285 (let ((on-p (if arg |
286 (> (prefix-numeric-value arg) 0) | |
287 (not timeclock-modeline-display)))) | |
288 (if on-p | |
51263 | 289 (progn |
290 (or (memq 'timeclock-mode-string global-mode-string) | |
291 (setq global-mode-string | |
292 (append global-mode-string '(timeclock-mode-string)))) | |
30781 | 293 (unless (memq 'timeclock-update-modeline timeclock-event-hook) |
294 (add-hook 'timeclock-event-hook 'timeclock-update-modeline)) | |
295 (when timeclock-update-timer | |
296 (cancel-timer timeclock-update-timer) | |
297 (setq timeclock-update-timer nil)) | |
298 (if (boundp 'display-time-hook) | |
299 (remove-hook 'display-time-hook 'timeclock-update-modeline)) | |
300 (if timeclock-use-display-time | |
51263 | 301 (progn |
302 ;; Update immediately so there is a visible change | |
303 ;; on calling this function. | |
51871 | 304 (if display-time-mode (timeclock-update-modeline) |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
305 (message "Activate `display-time-mode' or turn off \ |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
306 `timeclock-use-display-time' to see timeclock information")) |
51263 | 307 (add-hook 'display-time-hook 'timeclock-update-modeline)) |
30781 | 308 (setq timeclock-update-timer |
309 (run-at-time nil 60 'timeclock-update-modeline)))) | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
310 (setq global-mode-string |
51263 | 311 (delq 'timeclock-mode-string global-mode-string)) |
30781 | 312 (remove-hook 'timeclock-event-hook 'timeclock-update-modeline) |
313 (if (boundp 'display-time-hook) | |
314 (remove-hook 'display-time-hook | |
315 'timeclock-update-modeline)) | |
316 (when timeclock-update-timer | |
317 (cancel-timer timeclock-update-timer) | |
318 (setq timeclock-update-timer nil))) | |
319 (force-mode-line-update) | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
320 (setq timeclock-modeline-display on-p))) |
30781 | 321 |
322 ;; This has to be here so that the function definition of | |
323 ;; `timeclock-modeline-display' is known to the "set" function. | |
324 (defcustom timeclock-modeline-display nil | |
325 "Toggle modeline display of time remaining. | |
326 You must modify via \\[customize] for this variable to have an effect." | |
327 :set (lambda (symbol value) | |
328 (setq timeclock-modeline-display | |
329 (timeclock-modeline-display (or value 0)))) | |
330 :type 'boolean | |
331 :group 'timeclock | |
332 :require 'timeclock) | |
333 | |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
334 (defsubst timeclock-time-to-date (time) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
335 "Convert the TIME value to a textual date string." |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
336 (format-time-string "%Y/%m/%d" time)) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
337 |
30781 | 338 ;;;###autoload |
339 (defun timeclock-in (&optional arg project find-project) | |
340 "Clock in, recording the current time moment in the timelog. | |
341 With a numeric prefix ARG, record the fact that today has only that | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
342 many hours in it to be worked. If ARG is a non-numeric prefix argument |
30781 | 343 \(non-nil, but not a number), 0 is assumed (working on a holiday or |
344 weekend). *If not called interactively, ARG should be the number of | |
345 _seconds_ worked today*. This feature only has effect the first time | |
346 this function is called within a day. | |
347 | |
54704 | 348 PROJECT is the project being clocked into. If PROJECT is nil, and |
30781 | 349 FIND-PROJECT is non-nil -- or the user calls `timeclock-in' |
350 interactively -- call the function `timeclock-get-project-function' to | |
351 discover the name of the project." | |
352 (interactive | |
353 (list (and current-prefix-arg | |
354 (if (numberp current-prefix-arg) | |
355 (* current-prefix-arg 60 60) | |
356 0)))) | |
357 (if (equal (car timeclock-last-event) "i") | |
358 (error "You've already clocked in!") | |
359 (unless timeclock-last-event | |
360 (timeclock-reread-log)) | |
46350
9cead6e97a53
(timeclock-in): Run the new day section if, after rereading the log file,
Glenn Morris <rgm@gnu.org>
parents:
46341
diff
changeset
|
361 ;; Either no log file, or day has rolled over. |
9cead6e97a53
(timeclock-in): Run the new day section if, after rereading the log file,
Glenn Morris <rgm@gnu.org>
parents:
46341
diff
changeset
|
362 (unless (and timeclock-last-event |
9cead6e97a53
(timeclock-in): Run the new day section if, after rereading the log file,
Glenn Morris <rgm@gnu.org>
parents:
46341
diff
changeset
|
363 (equal (timeclock-time-to-date |
9cead6e97a53
(timeclock-in): Run the new day section if, after rereading the log file,
Glenn Morris <rgm@gnu.org>
parents:
46341
diff
changeset
|
364 (cadr timeclock-last-event)) |
9cead6e97a53
(timeclock-in): Run the new day section if, after rereading the log file,
Glenn Morris <rgm@gnu.org>
parents:
46341
diff
changeset
|
365 (timeclock-time-to-date (current-time)))) |
30781 | 366 (let ((workday (or (and (numberp arg) arg) |
367 (and arg 0) | |
368 (and timeclock-get-workday-function | |
369 (funcall timeclock-get-workday-function)) | |
370 timeclock-workday))) | |
371 (run-hooks 'timeclock-first-in-hook) | |
372 ;; settle the discrepancy for the new day | |
373 (setq timeclock-discrepancy | |
46350
9cead6e97a53
(timeclock-in): Run the new day section if, after rereading the log file,
Glenn Morris <rgm@gnu.org>
parents:
46341
diff
changeset
|
374 (- (or timeclock-discrepancy 0) workday)) |
30781 | 375 (if (not (= workday timeclock-workday)) |
77671
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
376 (timeclock-log "h" (number-to-string |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
377 (/ workday (if (zerop (% workday (* 60 60))) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
378 60 60.0) 60)))))) |
30781 | 379 (timeclock-log "i" (or project |
380 (and timeclock-get-project-function | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
381 (or find-project |
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
382 (called-interactively-p 'interactive)) |
30781 | 383 (funcall timeclock-get-project-function)))) |
384 (run-hooks 'timeclock-in-hook))) | |
385 | |
386 ;;;###autoload | |
387 (defun timeclock-out (&optional arg reason find-reason) | |
388 "Clock out, recording the current time moment in the timelog. | |
389 If a prefix ARG is given, the user has completed the project that was | |
390 begun during the last time segment. | |
391 | |
392 REASON is the user's reason for clocking out. If REASON is nil, and | |
393 FIND-REASON is non-nil -- or the user calls `timeclock-out' | |
394 interactively -- call the function `timeclock-get-reason-function' to | |
395 discover the reason." | |
396 (interactive "P") | |
40671
526c9b7941f5
(timeclock-out): Signal an error if timeclock-last-event is nil.
Eli Zaretskii <eliz@gnu.org>
parents:
37652
diff
changeset
|
397 (or timeclock-last-event |
526c9b7941f5
(timeclock-out): Signal an error if timeclock-last-event is nil.
Eli Zaretskii <eliz@gnu.org>
parents:
37652
diff
changeset
|
398 (error "You haven't clocked in!")) |
30781 | 399 (if (equal (downcase (car timeclock-last-event)) "o") |
400 (error "You've already clocked out!") | |
401 (timeclock-log | |
402 (if arg "O" "o") | |
403 (or reason | |
404 (and timeclock-get-reason-function | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
405 (or find-reason (called-interactively-p 'interactive)) |
30781 | 406 (funcall timeclock-get-reason-function)))) |
407 (run-hooks 'timeclock-out-hook) | |
408 (if arg | |
409 (run-hooks 'timeclock-done-hook)))) | |
410 | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
411 ;; Should today-only be removed in favour of timeclock-relative? - gm |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
412 (defsubst timeclock-workday-remaining (&optional today-only) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
413 "Return the number of seconds until the workday is complete. |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
414 The amount returned is relative to the value of `timeclock-workday'. |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
415 If TODAY-ONLY is non-nil, the value returned will be relative only to |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
416 the time worked today, and not to past time." |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
417 (let ((discrep (timeclock-find-discrep))) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
418 (if discrep |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
419 (- (if today-only (cadr discrep) |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
420 (car discrep))) |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
421 0.0))) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
422 |
30781 | 423 ;;;###autoload |
424 (defun timeclock-status-string (&optional show-seconds today-only) | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
425 "Report the overall timeclock status at the present moment. |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
426 If SHOW-SECONDS is non-nil, display second resolution. |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
427 If TODAY-ONLY is non-nil, the display will be relative only to time |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
428 worked today, ignoring the time worked on previous days." |
30781 | 429 (interactive "P") |
72331
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
430 (let ((remainder (timeclock-workday-remaining |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
431 (or today-only |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
432 (not timeclock-relative)))) |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
433 (last-in (equal (car timeclock-last-event) "i")) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
434 status) |
30781 | 435 (setq status |
436 (format "Currently %s since %s (%s), %s %s, leave at %s" | |
437 (if last-in "IN" "OUT") | |
438 (if show-seconds | |
439 (format-time-string "%-I:%M:%S %p" | |
440 (nth 1 timeclock-last-event)) | |
441 (format-time-string "%-I:%M %p" | |
442 (nth 1 timeclock-last-event))) | |
443 (or (nth 2 timeclock-last-event) | |
444 (if last-in "**UNKNOWN**" "workday over")) | |
445 (timeclock-seconds-to-string remainder show-seconds t) | |
446 (if (> remainder 0) | |
447 "remaining" "over") | |
448 (timeclock-when-to-leave-string show-seconds today-only))) | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
449 (if (called-interactively-p 'interactive) |
65591
a65f8ec418fc
message format spec fixes, commit # 10
Deepak Goel <deego@gnufans.org>
parents:
64085
diff
changeset
|
450 (message "%s" status) |
30781 | 451 status))) |
452 | |
453 ;;;###autoload | |
454 (defun timeclock-change (&optional arg project) | |
54704 | 455 "Change to working on a different project. |
456 This clocks out of the current project, then clocks in on a new one. | |
457 With a prefix ARG, consider the previous project as finished at the | |
458 time of changeover. PROJECT is the name of the last project you were | |
459 working on." | |
30781 | 460 (interactive "P") |
461 (timeclock-out arg) | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
462 (timeclock-in nil project (called-interactively-p 'interactive))) |
30781 | 463 |
464 ;;;###autoload | |
465 (defun timeclock-query-out () | |
54704 | 466 "Ask the user whether to clock out. |
51263 | 467 This is a useful function for adding to `kill-emacs-query-functions'." |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
468 (and (equal (car timeclock-last-event) "i") |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
469 (y-or-n-p "You're currently clocking time, clock out? ") |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
470 (timeclock-out)) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
471 ;; Unconditionally return t for `kill-emacs-query-functions'. |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
472 t) |
30781 | 473 |
474 ;;;###autoload | |
475 (defun timeclock-reread-log () | |
476 "Re-read the timeclock, to account for external changes. | |
477 Returns the new value of `timeclock-discrepancy'." | |
478 (interactive) | |
479 (setq timeclock-discrepancy nil) | |
480 (timeclock-find-discrep) | |
36851 | 481 (if (and timeclock-discrepancy timeclock-modeline-display) |
30781 | 482 (timeclock-update-modeline)) |
483 timeclock-discrepancy) | |
484 | |
485 (defun timeclock-seconds-to-string (seconds &optional show-seconds | |
486 reverse-leader) | |
487 "Convert SECONDS into a compact time string. | |
488 If SHOW-SECONDS is non-nil, make the resolution of the return string | |
489 include the second count. If REVERSE-LEADER is non-nil, it means to | |
490 output a \"+\" if the time value is negative, rather than a \"-\". | |
491 This is used when negative time values have an inverted meaning (such | |
492 as with time remaining, where negative time really means overtime)." | |
493 (if show-seconds | |
494 (format "%s%d:%02d:%02d" | |
495 (if (< seconds 0) (if reverse-leader "+" "-") "") | |
496 (truncate (/ (abs seconds) 60 60)) | |
497 (% (truncate (/ (abs seconds) 60)) 60) | |
498 (% (truncate (abs seconds)) 60)) | |
499 (format "%s%d:%02d" | |
500 (if (< seconds 0) (if reverse-leader "+" "-") "") | |
501 (truncate (/ (abs seconds) 60 60)) | |
502 (% (truncate (/ (abs seconds) 60)) 60)))) | |
503 | |
33020 | 504 (defsubst timeclock-currently-in-p () |
30781 | 505 "Return non-nil if the user is currently clocked in." |
506 (equal (car timeclock-last-event) "i")) | |
507 | |
508 ;;;###autoload | |
509 (defun timeclock-workday-remaining-string (&optional show-seconds | |
510 today-only) | |
511 "Return a string representing the amount of time left today. | |
512 Display second resolution if SHOW-SECONDS is non-nil. If TODAY-ONLY | |
513 is non-nil, the display will be relative only to time worked today. | |
514 See `timeclock-relative' for more information about the meaning of | |
515 \"relative to today\"." | |
516 (interactive) | |
517 (let ((string (timeclock-seconds-to-string | |
518 (timeclock-workday-remaining today-only) | |
519 show-seconds t))) | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
520 (if (called-interactively-p 'interactive) |
65591
a65f8ec418fc
message format spec fixes, commit # 10
Deepak Goel <deego@gnufans.org>
parents:
64085
diff
changeset
|
521 (message "%s" string) |
30781 | 522 string))) |
523 | |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
524 (defsubst timeclock-workday-elapsed () |
46160
b88409633904
(timeclock-workday-remaining): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
40671
diff
changeset
|
525 "Return the number of seconds worked so far today. |
30781 | 526 If RELATIVE is non-nil, the amount returned will be relative to past |
527 time worked. The default is to return only the time that has elapsed | |
528 so far today." | |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
529 (let ((discrep (timeclock-find-discrep))) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
530 (if discrep |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
531 (nth 2 discrep) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
532 0.0))) |
30781 | 533 |
534 ;;;###autoload | |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
535 (defun timeclock-workday-elapsed-string (&optional show-seconds) |
30781 | 536 "Return a string representing the amount of time worked today. |
537 Display seconds resolution if SHOW-SECONDS is non-nil. If RELATIVE is | |
538 non-nil, the amount returned will be relative to past time worked." | |
539 (interactive) | |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
540 (let ((string (timeclock-seconds-to-string (timeclock-workday-elapsed) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
541 show-seconds))) |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
542 (if (called-interactively-p 'interactive) |
65591
a65f8ec418fc
message format spec fixes, commit # 10
Deepak Goel <deego@gnufans.org>
parents:
64085
diff
changeset
|
543 (message "%s" string) |
30781 | 544 string))) |
545 | |
111457
8309f15b2534
time-to-seconds related simplifications.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
546 (defalias 'timeclock-time-to-seconds (if (fboundp 'float-time) 'float-time |
8309f15b2534
time-to-seconds related simplifications.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
547 'time-to-seconds)) |
51549
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
548 |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
549 (defsubst timeclock-seconds-to-time (seconds) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
550 "Convert SECONDS (a floating point number) to an Emacs time structure." |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
551 (list (floor seconds 65536) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
552 (floor (mod seconds 65536)) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
553 (floor (* (- seconds (ffloor seconds)) 1000000)))) |
48facdb1558e
(display-time-hook, timeclock-modeline-display): Define for byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
51263
diff
changeset
|
554 |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
555 ;; Should today-only be removed in favour of timeclock-relative? - gm |
33020 | 556 (defsubst timeclock-when-to-leave (&optional today-only) |
54704 | 557 "Return a time value representing the end of today's workday. |
30781 | 558 If TODAY-ONLY is non-nil, the value returned will be relative only to |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
559 the time worked today, and not to past time." |
30781 | 560 (timeclock-seconds-to-time |
561 (- (timeclock-time-to-seconds (current-time)) | |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
562 (let ((discrep (timeclock-find-discrep))) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
563 (if discrep |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
564 (if today-only |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
565 (cadr discrep) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
566 (car discrep)) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
567 0.0))))) |
30781 | 568 |
569 ;;;###autoload | |
570 (defun timeclock-when-to-leave-string (&optional show-seconds | |
571 today-only) | |
54704 | 572 "Return a string representing the end of today's workday. |
30781 | 573 This string is relative to the value of `timeclock-workday'. If |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
574 SHOW-SECONDS is non-nil, the value printed/returned will include |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
575 seconds. If TODAY-ONLY is non-nil, the value returned will be |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
576 relative only to the time worked today, and not to past time." |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
577 ;; Should today-only be removed in favour of timeclock-relative? - gm |
30781 | 578 (interactive) |
579 (let* ((then (timeclock-when-to-leave today-only)) | |
580 (string | |
581 (if show-seconds | |
582 (format-time-string "%-I:%M:%S %p" then) | |
583 (format-time-string "%-I:%M %p" then)))) | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
584 (if (called-interactively-p 'interactive) |
65591
a65f8ec418fc
message format spec fixes, commit # 10
Deepak Goel <deego@gnufans.org>
parents:
64085
diff
changeset
|
585 (message "%s" string) |
30781 | 586 string))) |
587 | |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
588 (defun timeclock-make-hours-explicit (old-default) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
589 "Specify all workday lengths in `timeclock-file'. |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
590 OLD-DEFAULT hours are set for every day that has no number indicated." |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
591 (interactive "P") |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
592 (if old-default (setq old-default (prefix-numeric-value old-default)) |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
593 (error "`timelog-make-hours-explicit' requires an explicit argument")) |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
594 (let ((extant-timelog (find-buffer-visiting timeclock-file)) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
595 current-date) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
596 (with-current-buffer (find-file-noselect timeclock-file t) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
597 (unwind-protect |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
598 (save-excursion |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
599 (save-restriction |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
600 (widen) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
601 (goto-char (point-min)) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
602 (while (progn (skip-chars-forward "\n") (not (eobp))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
603 ;; This is just a variant of `timeclock-moment-regexp'. |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
604 (unless (looking-at |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
605 (concat "^\\([bhioO]\\) \\([0-9]+/[0-9]+/[0-9]+\\) " |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
606 "\\([0-9]+:[0-9]+:[0-9]+\\)")) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
607 (error "Can't parse `%s'" timeclock-file)) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
608 (let ((this-date (match-string 2))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
609 (unless (or (and current-date |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
610 (string= this-date current-date)) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
611 (string= (match-string 1) "h")) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
612 (insert (format "h %s %s %s\n" (match-string 2) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
613 (match-string 3) old-default))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
614 (if (string-match "^[ih]" (match-string 1)) ; ignore logouts |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
615 (setq current-date this-date))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
616 (forward-line)) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
617 (save-buffer))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
618 (unless extant-timelog (kill-buffer (current-buffer))))))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
619 |
30781 | 620 ;;; Internal Functions: |
621 | |
622 (defvar timeclock-project-list nil) | |
623 (defvar timeclock-last-project nil) | |
624 | |
37324
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
625 (defun timeclock-completing-read (prompt alist &optional default) |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
626 "A version of `completing-read' that works on both Emacs and XEmacs. |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
627 PROMPT, ALIST and DEFAULT are used for the PROMPT, COLLECTION and DEF |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
628 arguments of `completing-read'." |
37324
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
629 (if (featurep 'xemacs) |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
630 (let ((str (completing-read prompt alist))) |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
631 (if (or (null str) (zerop (length str))) |
37324
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
632 default |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
633 str)) |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
634 (completing-read prompt alist nil nil nil nil default))) |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
635 |
30781 | 636 (defun timeclock-ask-for-project () |
637 "Ask the user for the project they are clocking into." | |
37324
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
638 (timeclock-completing-read |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65591
diff
changeset
|
639 (format "Clock into which project (default %s): " |
37324
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
640 (or timeclock-last-project |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
641 (car timeclock-project-list))) |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
642 (mapcar 'list timeclock-project-list) |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
643 (or timeclock-last-project |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
644 (car timeclock-project-list)))) |
30781 | 645 |
646 (defvar timeclock-reason-list nil) | |
647 | |
648 (defun timeclock-ask-for-reason () | |
649 "Ask the user for the reason they are clocking out." | |
37324
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
650 (timeclock-completing-read "Reason for clocking out: " |
570c667b4d1c
(timeclock-completing-read): new function.
John Wiegley <johnw@newartisans.com>
parents:
37282
diff
changeset
|
651 (mapcar 'list timeclock-reason-list))) |
30781 | 652 |
653 (defun timeclock-update-modeline () | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
654 "Update the `timeclock-mode-string' displayed in the modeline. |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
655 The value of `timeclock-relative' affects the display as described in |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
656 that variable's documentation." |
30781 | 657 (interactive) |
72331
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
658 (let ((remainder |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
659 (if timeclock-use-elapsed |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
660 (timeclock-workday-elapsed) |
4e0c58818901
(timeclock-use-elapsed): Added a new variable, which causes timeclock
John Wiegley <johnw@newartisans.com>
parents:
68721
diff
changeset
|
661 (timeclock-workday-remaining (not timeclock-relative)))) |
51263 | 662 (last-in (equal (car timeclock-last-event) "i"))) |
30781 | 663 (when (and (< remainder 0) |
664 (not (and timeclock-day-over | |
665 (equal timeclock-day-over | |
666 (timeclock-time-to-date | |
667 (current-time)))))) | |
668 (setq timeclock-day-over | |
669 (timeclock-time-to-date (current-time))) | |
670 (run-hooks 'timeclock-day-over-hook)) | |
671 (setq timeclock-mode-string | |
51263 | 672 (propertize |
673 (format " %c%s%c " | |
674 (if last-in ?< ?[) | |
675 (timeclock-seconds-to-string remainder nil t) | |
676 (if last-in ?> ?])) | |
677 'help-echo "timeclock: time remaining")))) | |
678 | |
679 (put 'timeclock-mode-string 'risky-local-variable t) | |
30781 | 680 |
681 (defun timeclock-log (code &optional project) | |
682 "Log the event CODE to the timeclock log, at the time of call. | |
683 If PROJECT is a string, it represents the project which the event is | |
33020 | 684 being logged for. Normally only \"in\" events specify a project." |
77671
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
685 (let ((extant-timelog (find-buffer-visiting timeclock-file))) |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
686 (with-current-buffer (find-file-noselect timeclock-file t) |
77671
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
687 (save-excursion |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
688 (save-restriction |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
689 (widen) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
690 (goto-char (point-max)) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
691 (if (not (bolp)) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
692 (insert "\n")) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
693 (let ((now (current-time))) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
694 (insert code " " |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
695 (format-time-string "%Y/%m/%d %H:%M:%S" now) |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
696 (or (and (stringp project) |
77671
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
697 (> (length project) 0) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
698 (concat " " project)) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
699 "") |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
700 "\n") |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
701 (if (equal (downcase code) "o") |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
702 (setq timeclock-last-period |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
703 (- (timeclock-time-to-seconds now) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
704 (timeclock-time-to-seconds |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
705 (cadr timeclock-last-event))) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
706 timeclock-discrepancy |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
707 (+ timeclock-discrepancy |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
708 timeclock-last-period))) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
709 (setq timeclock-last-event (list code now project))))) |
693e049fff70
(timeclock-in): Fix non-interactive workday specifications.
Richard M. Stallman <rms@gnu.org>
parents:
75346
diff
changeset
|
710 (save-buffer) |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
711 (unless extant-timelog (kill-buffer (current-buffer))))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
712 (run-hooks 'timeclock-event-hook)) |
30781 | 713 |
33020 | 714 (defvar timeclock-moment-regexp |
715 (concat "\\([bhioO]\\)\\s-+" | |
716 "\\([0-9]+\\)/\\([0-9]+\\)/\\([0-9]+\\)\\s-+" | |
717 "\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)[ \t]*" "\\([^\n]*\\)")) | |
718 | |
719 (defsubst timeclock-read-moment () | |
30781 | 720 "Read the moment under point from the timelog." |
33020 | 721 (if (looking-at timeclock-moment-regexp) |
722 (let ((code (match-string 1)) | |
723 (year (string-to-number (match-string 2))) | |
724 (mon (string-to-number (match-string 3))) | |
725 (mday (string-to-number (match-string 4))) | |
726 (hour (string-to-number (match-string 5))) | |
727 (min (string-to-number (match-string 6))) | |
728 (sec (string-to-number (match-string 7))) | |
729 (project (match-string 8))) | |
730 (list code (encode-time sec min hour mday mon year) project)))) | |
30781 | 731 |
732 (defun timeclock-last-period (&optional moment) | |
733 "Return the value of the last event period. | |
734 If the last event was a clock-in, the period will be open ended, and | |
735 growing every second. Otherwise, it is a fixed amount which has been | |
736 recorded to disk. If MOMENT is non-nil, use that as the current time. | |
737 This is only provided for coherency when used by | |
738 `timeclock-discrepancy'." | |
739 (if (equal (car timeclock-last-event) "i") | |
740 (- (timeclock-time-to-seconds (or moment (current-time))) | |
741 (timeclock-time-to-seconds | |
742 (cadr timeclock-last-event))) | |
743 timeclock-last-period)) | |
744 | |
33020 | 745 (defsubst timeclock-entry-length (entry) |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
746 "Return the length of ENTRY in seconds." |
33020 | 747 (- (timeclock-time-to-seconds (cadr entry)) |
748 (timeclock-time-to-seconds (car entry)))) | |
749 | |
750 (defsubst timeclock-entry-begin (entry) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
751 "Return the start time of ENTRY." |
33020 | 752 (car entry)) |
753 | |
754 (defsubst timeclock-entry-end (entry) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
755 "Return the end time of ENTRY." |
33020 | 756 (cadr entry)) |
757 | |
758 (defsubst timeclock-entry-project (entry) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
759 "Return the project of ENTRY." |
33020 | 760 (nth 2 entry)) |
761 | |
762 (defsubst timeclock-entry-comment (entry) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
763 "Return the comment of ENTRY." |
33020 | 764 (nth 3 entry)) |
765 | |
766 (defsubst timeclock-entry-list-length (entry-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
767 "Return the total length of ENTRY-LIST in seconds." |
33020 | 768 (let ((length 0)) |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
769 (dolist (entry entry-list) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
770 (setq length (+ length (timeclock-entry-length entry)))) |
33020 | 771 length)) |
772 | |
773 (defsubst timeclock-entry-list-begin (entry-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
774 "Return the start time of the first element of ENTRY-LIST." |
33020 | 775 (timeclock-entry-begin (car entry-list))) |
776 | |
777 (defsubst timeclock-entry-list-end (entry-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
778 "Return the end time of the last element of ENTRY-LIST." |
33020 | 779 (timeclock-entry-end (car (last entry-list)))) |
780 | |
781 (defsubst timeclock-entry-list-span (entry-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
782 "Return the total time in seconds spanned by ENTRY-LIST." |
33020 | 783 (- (timeclock-time-to-seconds (timeclock-entry-list-end entry-list)) |
784 (timeclock-time-to-seconds (timeclock-entry-list-begin entry-list)))) | |
785 | |
786 (defsubst timeclock-entry-list-break (entry-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
787 "Return the total break time (span - length) in ENTRY-LIST." |
33020 | 788 (- (timeclock-entry-list-span entry-list) |
789 (timeclock-entry-list-length entry-list))) | |
790 | |
791 (defsubst timeclock-entry-list-projects (entry-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
792 "Return a list of all the projects in ENTRY-LIST." |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
793 (let (projects proj) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
794 (dolist (entry entry-list) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
795 (setq proj (timeclock-entry-project entry)) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
796 (if projects |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
797 (add-to-list 'projects proj) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
798 (setq projects (list proj)))) |
33020 | 799 projects)) |
800 | |
801 (defsubst timeclock-day-required (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
802 "Return the required length of DAY in seconds, default `timeclock-workday'." |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
803 (or (car day) timeclock-workday)) |
33020 | 804 |
805 (defsubst timeclock-day-length (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
806 "Return the actual length of DAY in seconds." |
33020 | 807 (timeclock-entry-list-length (cdr day))) |
808 | |
809 (defsubst timeclock-day-debt (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
810 "Return the debt (required - actual) associated with DAY, in seconds." |
33020 | 811 (- (timeclock-day-required day) |
812 (timeclock-day-length day))) | |
813 | |
814 (defsubst timeclock-day-begin (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
815 "Return the start time of DAY." |
33020 | 816 (timeclock-entry-list-begin (cdr day))) |
817 | |
818 (defsubst timeclock-day-end (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
819 "Return the end time of DAY." |
33020 | 820 (timeclock-entry-list-end (cdr day))) |
821 | |
822 (defsubst timeclock-day-span (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
823 "Return the span of DAY." |
33020 | 824 (timeclock-entry-list-span (cdr day))) |
825 | |
826 (defsubst timeclock-day-break (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
827 "Return the total break time of DAY." |
33020 | 828 (timeclock-entry-list-break (cdr day))) |
829 | |
830 (defsubst timeclock-day-projects (day) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
831 "Return a list of all the projects in DAY." |
97105
1cf204ce38b7
* calendar/timeclock.el (timeclock-day-projects): Change a `cdr' to `cddr'.
John Wiegley <johnw@newartisans.com>
parents:
94653
diff
changeset
|
832 (timeclock-entry-list-projects (cddr day))) |
33020 | 833 |
834 (defmacro timeclock-day-list-template (func) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
835 "Template for summing the result of FUNC on each element of DAY-LIST." |
33020 | 836 `(let ((length 0)) |
837 (while day-list | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
838 (setq length (+ length (,(eval func) (car day-list))) |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
839 day-list (cdr day-list))) |
33020 | 840 length)) |
841 | |
842 (defun timeclock-day-list-required (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
843 "Return total required length of DAY-LIST, in seconds." |
33020 | 844 (timeclock-day-list-template 'timeclock-day-required)) |
845 | |
846 (defun timeclock-day-list-length (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
847 "Return actual length of DAY-LIST, in seconds." |
33020 | 848 (timeclock-day-list-template 'timeclock-day-length)) |
849 | |
850 (defun timeclock-day-list-debt (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
851 "Return total debt (required - actual) of DAY-LIST." |
33020 | 852 (timeclock-day-list-template 'timeclock-day-debt)) |
853 | |
854 (defsubst timeclock-day-list-begin (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
855 "Return the start time of DAY-LIST." |
33020 | 856 (timeclock-day-begin (car day-list))) |
857 | |
858 (defsubst timeclock-day-list-end (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
859 "Return the end time of DAY-LIST." |
33020 | 860 (timeclock-day-end (car (last day-list)))) |
861 | |
862 (defun timeclock-day-list-span (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
863 "Return the span of DAY-LIST." |
33020 | 864 (timeclock-day-list-template 'timeclock-day-span)) |
865 | |
866 (defun timeclock-day-list-break (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
867 "Return the total break of DAY-LIST." |
33020 | 868 (timeclock-day-list-template 'timeclock-day-break)) |
869 | |
870 (defun timeclock-day-list-projects (day-list) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
871 "Return a list of all the projects in DAY-LIST." |
33020 | 872 (let (projects) |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
873 (dolist (day day-list) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
874 (dolist (proj (timeclock-day-projects day)) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
875 (if projects |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
876 (add-to-list 'projects proj) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
877 (setq projects (list proj))))) |
33020 | 878 projects)) |
879 | |
880 (defsubst timeclock-current-debt (&optional log-data) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
881 "Return the seconds debt from LOG-DATA, default `timeclock-log-data'." |
33020 | 882 (nth 0 (or log-data (timeclock-log-data)))) |
883 | |
884 (defsubst timeclock-day-alist (&optional log-data) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
885 "Return the date alist from LOG-DATA, default `timeclock-log-data'." |
33020 | 886 (nth 1 (or log-data (timeclock-log-data)))) |
887 | |
888 (defun timeclock-day-list (&optional log-data) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
889 "Return a list of the cdrs of the date alist from LOG-DATA." |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
890 (let (day-list) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
891 (dolist (date-list (timeclock-day-alist log-data)) |
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
892 (setq day-list (cons (cdr date-list) day-list))) |
33020 | 893 day-list)) |
894 | |
895 (defsubst timeclock-project-alist (&optional log-data) | |
92669
c0e9d49498b9
Add doc-strings to all functions.
Glenn Morris <rgm@gnu.org>
parents:
92600
diff
changeset
|
896 "Return the project alist from LOG-DATA, default `timeclock-log-data'." |
33020 | 897 (nth 2 (or log-data (timeclock-log-data)))) |
898 | |
899 (defun timeclock-log-data (&optional recent-only filename) | |
900 "Return the contents of the timelog file, in a useful format. | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
901 If the optional argument RECENT-ONLY is non-nil, only show the contents |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
902 from the last point where the time debt (see below) was set. |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
903 If the optional argument FILENAME is non-nil, it is used instead of |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
904 the file specified by `timeclock-file.' |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
905 |
33020 | 906 A timelog contains data in the form of a single entry per line. |
907 Each entry has the form: | |
908 | |
909 CODE YYYY/MM/DD HH:MM:SS [COMMENT] | |
910 | |
911 CODE is one of: b, h, i, o or O. COMMENT is optional when the code is | |
912 i, o or O. The meanings of the codes are: | |
913 | |
914 b Set the current time balance, or \"time debt\". Useful when | |
915 archiving old log data, when a debt must be carried forward. | |
916 The COMMENT here is the number of seconds of debt. | |
917 | |
918 h Set the required working time for the given day. This must | |
919 be the first entry for that day. The COMMENT in this case is | |
54704 | 920 the number of hours in this workday. Floating point amounts |
921 are allowed. | |
33020 | 922 |
923 i Clock in. The COMMENT in this case should be the name of the | |
924 project worked on. | |
925 | |
926 o Clock out. COMMENT is unnecessary, but can be used to provide | |
927 a description of how the period went, for example. | |
928 | |
929 O Final clock out. Whatever project was being worked on, it is | |
930 now finished. Useful for creating summary reports. | |
931 | |
932 When this function is called, it will return a data structure with the | |
933 following format: | |
934 | |
935 (DEBT ENTRIES-BY-DAY ENTRIES-BY-PROJECT) | |
936 | |
937 DEBT is a floating point number representing the number of seconds | |
938 \"owed\" before any work was done. For a new file (one without a 'b' | |
939 entry), this is always zero. | |
940 | |
941 The two entries lists have similar formats. They are both alists, | |
942 where the CAR is the index, and the CDR is a list of time entries. | |
943 For ENTRIES-BY-DAY, the CAR is a textual date string, of the form | |
944 YYYY/MM/DD. For ENTRIES-BY-PROJECT, it is the name of the project | |
945 worked on, or t for the default project. | |
946 | |
947 The CDR for ENTRIES-BY-DAY is slightly different than for | |
948 ENTRIES-BY-PROJECT. It has the following form: | |
949 | |
950 (DAY-LENGTH TIME-ENTRIES...) | |
951 | |
952 For ENTRIES-BY-PROJECT, there is no DAY-LENGTH member. It is simply a | |
953 list of TIME-ENTRIES. Note that if DAY-LENGTH is nil, it means | |
954 whatever is the default should be used. | |
955 | |
956 A TIME-ENTRY is a recorded time interval. It has the following format | |
957 \(although generally one does not have to manipulate these entries | |
958 directly; see below): | |
959 | |
960 (BEGIN-TIME END-TIME PROJECT [COMMENT] [FINAL-P]) | |
961 | |
962 Anyway, suffice it to say there are a lot of structures. Typically | |
963 the user is expected to manipulate to the day(s) or project(s) that he | |
964 or she wants, at which point the following helper functions may be | |
965 used: | |
966 | |
967 timeclock-day-required | |
968 timeclock-day-length | |
969 timeclock-day-debt | |
970 timeclock-day-begin | |
971 timeclock-day-end | |
972 timeclock-day-span | |
973 timeclock-day-break | |
974 timeclock-day-projects | |
975 | |
976 timeclock-day-list-required | |
977 timeclock-day-list-length | |
978 timeclock-day-list-debt | |
979 timeclock-day-list-begin | |
980 timeclock-day-list-end | |
981 timeclock-day-list-span | |
982 timeclock-day-list-break | |
983 timeclock-day-list-projects | |
984 | |
985 timeclock-entry-length | |
986 timeclock-entry-begin | |
987 timeclock-entry-end | |
988 timeclock-entry-project | |
989 timeclock-entry-comment | |
990 | |
991 timeclock-entry-list-length | |
992 timeclock-entry-list-begin | |
993 timeclock-entry-list-end | |
994 timeclock-entry-list-span | |
995 timeclock-entry-list-break | |
996 timeclock-entry-list-projects | |
997 | |
998 A few comments should make the use of the above functions obvious: | |
999 | |
1000 `required' is the amount of time that must be spent during a day, or | |
1001 sequence of days, in order to have no debt. | |
1002 | |
1003 `length' is the actual amount of time that was spent. | |
1004 | |
1005 `debt' is the difference between required time and length. A | |
1006 negative debt signifies overtime. | |
1007 | |
1008 `begin' is the earliest moment at which work began. | |
1009 | |
1010 `end' is the final moment work was done. | |
1011 | |
1012 `span' is the difference between begin and end. | |
1013 | |
1014 `break' is the difference between span and length. | |
1015 | |
1016 `project' is the project that was worked on, and `projects' is a | |
1017 list of all the projects that were worked on during a given period. | |
1018 | |
1019 `comment', where it applies, could mean anything. | |
1020 | |
1021 There are a few more functions available, for locating day and entry | |
1022 lists: | |
1023 | |
1024 timeclock-day-alist LOG-DATA | |
1025 timeclock-project-alist LOG-DATA | |
1026 timeclock-current-debt LOG-DATA | |
1027 | |
1028 See the documentation for the given function if more info is needed." | |
1029 (let* ((log-data (list 0.0 nil nil)) | |
1030 (now (current-time)) | |
1031 (todays-date (timeclock-time-to-date now)) | |
1032 last-date-limited last-date-seconds last-date | |
36851 | 1033 (line 0) last beg day entry event) |
33020 | 1034 (with-temp-buffer |
1035 (insert-file-contents (or filename timeclock-file)) | |
1036 (when recent-only | |
1037 (goto-char (point-max)) | |
1038 (unless (re-search-backward "^b\\s-+" nil t) | |
1039 (goto-char (point-min)))) | |
1040 (while (or (setq event (timeclock-read-moment)) | |
1041 (and beg (not last) | |
1042 (setq last t event (list "o" now)))) | |
1043 (setq line (1+ line)) | |
1044 (cond ((equal (car event) "b") | |
1045 (setcar log-data (string-to-number (nth 2 event)))) | |
1046 ((equal (car event) "h") | |
1047 (setq last-date-limited (timeclock-time-to-date (cadr event)) | |
1048 last-date-seconds (* (string-to-number (nth 2 event)) | |
1049 3600.0))) | |
1050 ((equal (car event) "i") | |
1051 (if beg | |
1052 (error "Error in format of timelog file, line %d" line) | |
1053 (setq beg t)) | |
1054 (setq entry (list (cadr event) nil | |
1055 (and (> (length (nth 2 event)) 0) | |
1056 (nth 2 event)))) | |
1057 (let ((date (timeclock-time-to-date (cadr event)))) | |
1058 (if (and last-date | |
1059 (not (equal date last-date))) | |
36851 | 1060 (progn |
1061 (setcar (cdr log-data) | |
1062 (cons (cons last-date day) | |
1063 (cadr log-data))) | |
1064 (setq day (list (and last-date-limited | |
1065 last-date-seconds)))) | |
1066 (unless day | |
1067 (setq day (list (and last-date-limited | |
1068 last-date-seconds))))) | |
33020 | 1069 (setq last-date date |
1070 last-date-limited nil))) | |
1071 ((equal (downcase (car event)) "o") | |
1072 (if (not beg) | |
1073 (error "Error in format of timelog file, line %d" line) | |
1074 (setq beg nil)) | |
1075 (setcar (cdr entry) (cadr event)) | |
1076 (let ((desc (and (> (length (nth 2 event)) 0) | |
1077 (nth 2 event)))) | |
1078 (if desc | |
1079 (nconc entry (list (nth 2 event)))) | |
1080 (if (equal (car event) "O") | |
1081 (nconc entry (if desc | |
1082 (list t) | |
1083 (list nil t)))) | |
1084 (nconc day (list entry)) | |
1085 (setq desc (nth 2 entry)) | |
1086 (let ((proj (assoc desc (nth 2 log-data)))) | |
36851 | 1087 (if (null proj) |
33020 | 1088 (setcar (cddr log-data) |
1089 (cons (cons desc (list entry)) | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1090 (nth 2 log-data))) |
33020 | 1091 (nconc (cdr proj) (list entry))))))) |
1092 (forward-line)) | |
1093 (if day | |
1094 (setcar (cdr log-data) | |
1095 (cons (cons last-date day) | |
1096 (cadr log-data)))) | |
1097 log-data))) | |
1098 | |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1099 (defun timeclock-find-discrep () |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1100 "Calculate time discrepancies, in seconds. |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1101 The result is a three element list, containing the total time |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1102 discrepancy, today's discrepancy, and the time worked today." |
33020 | 1103 ;; This is not implemented in terms of the functions above, because |
1104 ;; it's a bit wasteful to read all of that data in, just to throw | |
1105 ;; away more than 90% of the information afterwards. | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1106 ;; |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1107 ;; If it were implemented using those functions, it would look |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1108 ;; something like this: |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1109 ;; (let ((days (timeclock-day-alist (timeclock-log-data))) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1110 ;; (total 0.0)) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1111 ;; (while days |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1112 ;; (setq total (+ total (- (timeclock-day-length (cdar days)) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1113 ;; (timeclock-day-required (cdar days)))) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1114 ;; days (cdr days))) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1115 ;; total) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1116 (let* ((now (current-time)) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1117 (todays-date (timeclock-time-to-date now)) |
37648
9baaf32f355a
(timeclock-find-discrep): Initialize `elapsed' to 0.
John Wiegley <johnw@newartisans.com>
parents:
37625
diff
changeset
|
1118 (first t) (accum 0) (elapsed 0) |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1119 event beg last-date avg |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1120 last-date-limited last-date-seconds) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1121 (unless timeclock-discrepancy |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1122 (when (file-readable-p timeclock-file) |
36851 | 1123 (setq timeclock-project-list nil |
1124 timeclock-last-project nil | |
1125 timeclock-reason-list nil | |
1126 timeclock-elapsed 0) | |
1127 (with-temp-buffer | |
1128 (insert-file-contents timeclock-file) | |
1129 (goto-char (point-max)) | |
1130 (unless (re-search-backward "^b\\s-+" nil t) | |
1131 (goto-char (point-min))) | |
1132 (while (setq event (timeclock-read-moment)) | |
1133 (cond ((equal (car event) "b") | |
1134 (setq accum (string-to-number (nth 2 event)))) | |
1135 ((equal (car event) "h") | |
1136 (setq last-date-limited | |
1137 (timeclock-time-to-date (cadr event)) | |
1138 last-date-seconds | |
1139 (* (string-to-number (nth 2 event)) 3600.0))) | |
1140 ((equal (car event) "i") | |
1141 (when (and (nth 2 event) | |
1142 (> (length (nth 2 event)) 0)) | |
1143 (add-to-list 'timeclock-project-list (nth 2 event)) | |
1144 (setq timeclock-last-project (nth 2 event))) | |
1145 (let ((date (timeclock-time-to-date (cadr event)))) | |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1146 (if (if last-date |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1147 (not (equal date last-date)) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1148 first) |
36851 | 1149 (setq first nil |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1150 accum (- accum (if last-date-limited |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1151 last-date-seconds |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1152 timeclock-workday)))) |
36851 | 1153 (setq last-date date |
1154 last-date-limited nil) | |
1155 (if beg | |
1156 (error "Error in format of timelog file!") | |
1157 (setq beg (timeclock-time-to-seconds (cadr event)))))) | |
1158 ((equal (downcase (car event)) "o") | |
1159 (if (and (nth 2 event) | |
30781 | 1160 (> (length (nth 2 event)) 0)) |
36851 | 1161 (add-to-list 'timeclock-reason-list (nth 2 event))) |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1162 (if (not beg) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1163 (error "Error in format of timelog file!") |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1164 (setq timeclock-last-period |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1165 (- (timeclock-time-to-seconds (cadr event)) beg) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1166 accum (+ timeclock-last-period accum) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1167 beg nil)) |
36851 | 1168 (if (equal last-date todays-date) |
1169 (setq timeclock-elapsed | |
1170 (+ timeclock-last-period timeclock-elapsed))))) | |
1171 (setq timeclock-last-event event | |
1172 timeclock-last-event-workday | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1173 (if (equal (timeclock-time-to-date now) last-date-limited) |
36851 | 1174 last-date-seconds |
1175 timeclock-workday)) | |
1176 (forward-line)) | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1177 (setq timeclock-discrepancy accum)))) |
37650
061ef023b0af
(timeclock-find-discrep): Set `timeclock-last-event-workday' if it's
John Wiegley <johnw@newartisans.com>
parents:
37648
diff
changeset
|
1178 (unless timeclock-last-event-workday |
061ef023b0af
(timeclock-find-discrep): Set `timeclock-last-event-workday' if it's
John Wiegley <johnw@newartisans.com>
parents:
37648
diff
changeset
|
1179 (setq timeclock-last-event-workday timeclock-workday)) |
51263 | 1180 (setq accum (or timeclock-discrepancy 0) |
37652
7fb1a7ce4a40
One more variable coming up nil on the first time around, needing
John Wiegley <johnw@newartisans.com>
parents:
37651
diff
changeset
|
1181 elapsed (or timeclock-elapsed elapsed)) |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1182 (if timeclock-last-event |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1183 (if (equal (car timeclock-last-event) "i") |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1184 (let ((last-period (timeclock-last-period now))) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1185 (setq accum (+ accum last-period) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1186 elapsed (+ elapsed last-period))) |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1187 (if (not (equal (timeclock-time-to-date |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1188 (cadr timeclock-last-event)) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1189 (timeclock-time-to-date now))) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1190 (setq accum (- accum timeclock-last-event-workday))))) |
37625
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1191 (list accum (- elapsed timeclock-last-event-workday) |
53351976477e
(timeclock-workday-remaining): Changed logic for determining how much
John Wiegley <johnw@newartisans.com>
parents:
37437
diff
changeset
|
1192 elapsed))) |
36851 | 1193 |
1194 ;;; A reporting function that uses timeclock-log-data | |
1195 | |
1196 (defun timeclock-day-base (&optional time) | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1197 "Given a time within a day, return 0:0:0 within that day. |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1198 If optional argument TIME is non-nil, use that instead of the current time." |
36851 | 1199 (let ((decoded (decode-time (or time (current-time))))) |
1200 (setcar (nthcdr 0 decoded) 0) | |
1201 (setcar (nthcdr 1 decoded) 0) | |
1202 (setcar (nthcdr 2 decoded) 0) | |
1203 (apply 'encode-time decoded))) | |
1204 | |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
1205 (defun timeclock-mean (l) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
1206 "Compute the arithmetic mean of the values in the list L." |
36851 | 1207 (let ((total 0) |
1208 (count 0)) | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1209 (dolist (thisl l) |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1210 (setq total (+ total thisl) |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1211 count (1+ count))) |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1212 (if (zerop count) |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1213 0 |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1214 (/ total count)))) |
36851 | 1215 |
1216 (defun timeclock-generate-report (&optional html-p) | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1217 "Generate a summary report based on the current timelog file. |
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1218 By default, the report is in plain text, but if the optional argument |
54704 | 1219 HTML-P is non-nil, HTML markup is added." |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
1220 (interactive "P") |
36851 | 1221 (let ((log (timeclock-log-data)) |
1222 (today (timeclock-day-base))) | |
1223 (if html-p (insert "<p>")) | |
1224 (insert "Currently ") | |
1225 (let ((project (nth 2 timeclock-last-event)) | |
1226 (begin (nth 1 timeclock-last-event)) | |
1227 done) | |
1228 (if (timeclock-currently-in-p) | |
1229 (insert "IN") | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1230 (if (zerop (length project)) |
36851 | 1231 (progn (insert "Done Working Today") |
1232 (setq done t)) | |
1233 (insert "OUT"))) | |
1234 (unless done | |
1235 (insert " since " (format-time-string "%Y/%m/%d %-I:%M %p" begin)) | |
1236 (if html-p | |
1237 (insert "<br>\n<b>") | |
1238 (insert "\n*")) | |
1239 (if (timeclock-currently-in-p) | |
1240 (insert "Working on ")) | |
1241 (if html-p | |
37282
d30baa39a3b4
(timeclock-generate-report): Added a missing insert of the project
John Wiegley <johnw@newartisans.com>
parents:
36854
diff
changeset
|
1242 (insert project "</b><br>\n") |
36851 | 1243 (insert project "*\n")) |
1244 (let ((proj-data (cdr (assoc project (timeclock-project-alist log)))) | |
1245 (two-weeks-ago (timeclock-seconds-to-time | |
1246 (- (timeclock-time-to-seconds today) | |
1247 (* 2 7 24 60 60)))) | |
1248 two-week-len today-len) | |
1249 (while proj-data | |
55207
a3244da8e396
(timeclock-time-less-p): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
54704
diff
changeset
|
1250 (if (not (time-less-p |
36851 | 1251 (timeclock-entry-begin (car proj-data)) today)) |
1252 (setq today-len (timeclock-entry-list-length proj-data) | |
1253 proj-data nil) | |
1254 (if (and (null two-week-len) | |
55207
a3244da8e396
(timeclock-time-less-p): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
54704
diff
changeset
|
1255 (not (time-less-p |
36851 | 1256 (timeclock-entry-begin (car proj-data)) |
1257 two-weeks-ago))) | |
1258 (setq two-week-len (timeclock-entry-list-length proj-data))) | |
1259 (setq proj-data (cdr proj-data)))) | |
1260 (if (null two-week-len) | |
1261 (setq two-week-len today-len)) | |
1262 (if html-p (insert "<p>")) | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1263 (if today-len |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1264 (insert "\nTime spent on this task today: " |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1265 (timeclock-seconds-to-string today-len) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1266 ". In the last two weeks: " |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1267 (timeclock-seconds-to-string two-week-len)) |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1268 (if two-week-len |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1269 (insert "\nTime spent on this task in the last two weeks: " |
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1270 (timeclock-seconds-to-string two-week-len)))) |
36851 | 1271 (if html-p (insert "<br>")) |
1272 (insert "\n" | |
1273 (timeclock-seconds-to-string (timeclock-workday-elapsed)) | |
1274 " worked today, " | |
1275 (timeclock-seconds-to-string (timeclock-workday-remaining)) | |
1276 " remaining, done at " | |
1277 (timeclock-when-to-leave-string) "\n"))) | |
1278 (if html-p (insert "<p>")) | |
1279 (insert "\nThere have been " | |
1280 (number-to-string | |
1281 (length (timeclock-day-alist log))) | |
1282 " days of activity, starting " | |
1283 (caar (last (timeclock-day-alist log)))) | |
1284 (if html-p (insert "</p>")) | |
1285 (when html-p | |
1286 (insert "<p> | |
1287 <table> | |
1288 <td width=\"25\"><br></td><td> | |
1289 <table border=1 cellpadding=3> | |
1290 <tr><th><i>Statistics</i></th> | |
1291 <th>Entire</th> | |
1292 <th>-30 days</th> | |
1293 <th>-3 mons</th> | |
1294 <th>-6 mons</th> | |
1295 <th>-1 year</th> | |
1296 </tr>") | |
1297 (let* ((day-list (timeclock-day-list)) | |
1298 (thirty-days-ago (timeclock-seconds-to-time | |
1299 (- (timeclock-time-to-seconds today) | |
1300 (* 30 24 60 60)))) | |
1301 (three-months-ago (timeclock-seconds-to-time | |
1302 (- (timeclock-time-to-seconds today) | |
1303 (* 90 24 60 60)))) | |
1304 (six-months-ago (timeclock-seconds-to-time | |
1305 (- (timeclock-time-to-seconds today) | |
1306 (* 180 24 60 60)))) | |
1307 (one-year-ago (timeclock-seconds-to-time | |
1308 (- (timeclock-time-to-seconds today) | |
1309 (* 365 24 60 60)))) | |
1310 (time-in (vector (list t) (list t) (list t) (list t) (list t))) | |
1311 (time-out (vector (list t) (list t) (list t) (list t) (list t))) | |
1312 (breaks (vector (list t) (list t) (list t) (list t) (list t))) | |
1313 (workday (vector (list t) (list t) (list t) (list t) (list t))) | |
1314 (lengths (vector '(0 0) thirty-days-ago three-months-ago | |
1315 six-months-ago one-year-ago))) | |
1316 ;; collect statistics from complete timelog | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1317 (dolist (day day-list) |
36851 | 1318 (let ((i 0) (l 5)) |
1319 (while (< i l) | |
55207
a3244da8e396
(timeclock-time-less-p): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
54704
diff
changeset
|
1320 (unless (time-less-p |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1321 (timeclock-day-begin day) |
36851 | 1322 (aref lengths i)) |
1323 (let ((base (timeclock-time-to-seconds | |
1324 (timeclock-day-base | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1325 (timeclock-day-begin day))))) |
36851 | 1326 (nconc (aref time-in i) |
1327 (list (- (timeclock-time-to-seconds | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1328 (timeclock-day-begin day)) |
36851 | 1329 base))) |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1330 (let ((span (timeclock-day-span day)) |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1331 (len (timeclock-day-length day)) |
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1332 (req (timeclock-day-required day))) |
36851 | 1333 ;; If the day's actual work length is less than |
1334 ;; 70% of its span, then likely the exit time | |
1335 ;; and break amount are not worthwhile adding to | |
1336 ;; the statistic | |
1337 (when (and (> span 0) | |
1338 (> (/ (float len) (float span)) 0.70)) | |
1339 (nconc (aref time-out i) | |
1340 (list (- (timeclock-time-to-seconds | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1341 (timeclock-day-end day)) |
36851 | 1342 base))) |
1343 (nconc (aref breaks i) (list (- span len)))) | |
1344 (if req | |
1345 (setq len (+ len (- timeclock-workday req)))) | |
1346 (nconc (aref workday i) (list len))))) | |
92957
c3b09ba22de9
(timeclock-time-to-seconds, timeclock-log-data): Use nth.
Glenn Morris <rgm@gnu.org>
parents:
92669
diff
changeset
|
1347 (setq i (1+ i))))) |
36851 | 1348 ;; average statistics |
1349 (let ((i 0) (l 5)) | |
1350 (while (< i l) | |
77900
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
1351 (aset time-in i (timeclock-mean (cdr (aref time-in i)))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
1352 (aset time-out i (timeclock-mean (cdr (aref time-out i)))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
1353 (aset breaks i (timeclock-mean (cdr (aref breaks i)))) |
2e526dc9c6b6
Update version number.
Chong Yidong <cyd@stupidchicken.com>
parents:
77671
diff
changeset
|
1354 (aset workday i (timeclock-mean (cdr (aref workday i)))) |
36851 | 1355 (setq i (1+ i)))) |
1356 ;; Output the HTML table | |
1357 (insert "<tr>\n") | |
1358 (insert "<td align=\"center\">Time in</td>\n") | |
1359 (let ((i 0) (l 5)) | |
1360 (while (< i l) | |
1361 (insert "<td align=\"right\">" | |
1362 (timeclock-seconds-to-string (aref time-in i)) | |
1363 "</td>\n") | |
1364 (setq i (1+ i)))) | |
1365 (insert "</tr>\n") | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1366 |
36851 | 1367 (insert "<tr>\n") |
1368 (insert "<td align=\"center\">Time out</td>\n") | |
1369 (let ((i 0) (l 5)) | |
1370 (while (< i l) | |
1371 (insert "<td align=\"right\">" | |
1372 (timeclock-seconds-to-string (aref time-out i)) | |
1373 "</td>\n") | |
1374 (setq i (1+ i)))) | |
1375 (insert "</tr>\n") | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1376 |
36851 | 1377 (insert "<tr>\n") |
1378 (insert "<td align=\"center\">Break</td>\n") | |
1379 (let ((i 0) (l 5)) | |
1380 (while (< i l) | |
1381 (insert "<td align=\"right\">" | |
1382 (timeclock-seconds-to-string (aref breaks i)) | |
1383 "</td>\n") | |
1384 (setq i (1+ i)))) | |
1385 (insert "</tr>\n") | |
37437
ed485de91fcf
(timeclock-day-required): If the time required for a particular day is
John Wiegley <johnw@newartisans.com>
parents:
37324
diff
changeset
|
1386 |
36851 | 1387 (insert "<tr>\n") |
1388 (insert "<td align=\"center\">Workday</td>\n") | |
1389 (let ((i 0) (l 5)) | |
1390 (while (< i l) | |
1391 (insert "<td align=\"right\">" | |
1392 (timeclock-seconds-to-string (aref workday i)) | |
1393 "</td>\n") | |
1394 (setq i (1+ i)))) | |
1395 (insert "</tr>\n")) | |
1396 (insert "<tfoot> | |
1397 <td colspan=\"6\" align=\"center\"> | |
1398 <i>These are approximate figures</i></td> | |
1399 </tfoot> | |
1400 </table> | |
1401 </td></table>"))))) | |
1402 | |
1403 ;;; A helpful little function | |
1404 | |
1405 (defun timeclock-visit-timelog () | |
51861
91e4e5fd11de
(timeclock-use-display-time, timeclock-day-over-hook)
Glenn Morris <rgm@gnu.org>
parents:
51549
diff
changeset
|
1406 "Open the file named by `timeclock-file' in another window." |
36851 | 1407 (interactive) |
1408 (find-file-other-window timeclock-file)) | |
30781 | 1409 |
1410 (provide 'timeclock) | |
1411 | |
1412 (run-hooks 'timeclock-load-hook) | |
1413 | |
1414 ;; make sure we know the list of reasons, projects, and have computed | |
1415 ;; the last event and current discrepancy. | |
1416 (if (file-readable-p timeclock-file) | |
1417 (timeclock-reread-log)) | |
1418 | |
1419 ;;; timeclock.el ends here |