(Info-build-node-completions, Info-search, Info-follow-reference)
[bpt/emacs.git] / lisp / time-stamp.el
CommitLineData
9565745a 1;;; time-stamp.el --- Maintain last change time stamps in files edited by Emacs
9565745a 2
fd72ddf6 3;; Copyright 1989, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
b578f267 4
55ac4d11 5;; Maintainer's Time-stamp: <1999-06-26 15:12:53 gildea>
622b7ede 6;; Maintainer: Stephen Gildea <gildea@alum.mit.edu>
9565745a
RS
7;; Keywords: tools
8
9;; This file is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 2, or (at your option)
12;; any later version.
13
14;; This file is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
b578f267
EN
20;; along with GNU Emacs; see the file COPYING. If not, write to the
21;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22;; Boston, MA 02111-1307, USA.
9565745a
RS
23
24;;; Commentary:
25
03d7856a
KH
26;; A template in a file can be updated with a new time stamp when
27;; you save the file. For example:
28;; static char *ts = "sdmain.c Time-stamp: <1996-08-13 10:20:51 gildea>";
29;; See the top of `time-stamp.el' for another example.
30
31;; To use time-stamping, add this line to your .emacs file:
32;; (add-hook 'write-file-hooks 'time-stamp)
33;; Now any time-stamp templates in your files will be updated automatically.
34
35;; See the documentation for the functions `time-stamp'
36;; and `time-stamp-toggle-active' for details.
b578f267 37
9565745a
RS
38;;; Code:
39
cb35a83c
RS
40(defgroup time-stamp nil
41 "Maintain last change time stamps in files edited by Emacs."
42 :group 'data
43 :group 'extensions)
44
fd72ddf6 45(defcustom time-stamp-format "%:y-%02m-%02d %02H:%02M:%02S %u"
03d7856a 46 "*Format of the string inserted by \\[time-stamp].
c9c0e4bb
RS
47The value may be a string or a list. Lists are supported only for
48backward compatibility; see variable `time-stamp-old-format-warn'.
f8d35bf3 49
fd72ddf6
RS
50A string is used verbatim except for character sequences beginning with %:
51
52%:a weekday name: `Monday'. %#A gives uppercase: `MONDAY'
53%3a abbreviated weekday: `Mon'. %3A gives uppercase: `MON'
54%:b month name: `January'. %#B gives uppercase: `JANUARY'
55%3b abbreviated month: `Jan'. %3B gives uppercase: `JAN'
56%02d day of month
57%02H 24-hour clock hour
58%02I 12-hour clock hour
59%02m month number
60%02M minute
61%#p `am' or `pm'. %P gives uppercase: `AM' or `PM'
62%02S seconds
63%w day number of week, Sunday is 0
64%02y 2-digit year: `97' %:y 4-digit year: `1997'
65%z time zone name: `est'. %Z gives uppercase: `EST'
66
67Non-date items:
68%% a literal percent character: `%'
69%f file name without directory %F gives absolute pathname
70%s system name
f7769aa5 71%u user's login name %U user's full name
fd72ddf6
RS
72%h mail host name
73
74Decimal digits between the % and the type character specify the
75field width. Strings are truncated on the right; years on the left.
55ac4d11 76A leading zero in the field width zero-fills a number.
622b7ede
RS
77
78For example, to get the format used by the `date' command,
fd72ddf6
RS
79use \"%3a %3b %2d %02H:%02M:%02S %Z %:y\".
80
55ac4d11 81In the future these formats will be aligned more with `format-time-string'.
fd72ddf6
RS
82Because of this transition, the default padding for numeric formats will
83change in a future version. Therefore either a padding width should be
84specified, or the : modifier should be used to explicitly request the
85historical default."
cb35a83c
RS
86 :type 'string
87 :group 'time-stamp)
03d7856a 88
95772e85
RS
89(defcustom time-stamp-active t
90 "*Non-nil to enable time-stamping of buffers by \\[time-stamp].
91Can be toggled by \\[time-stamp-toggle-active].
92See also the variable `time-stamp-warn-inactive'."
93 :type 'boolean
94 :group 'time-stamp)
95
96(defcustom time-stamp-warn-inactive t
97 "Non-nil to have \\[time-stamp] warn if a buffer did not get time-stamped.
55ac4d11
KH
98A warning is printed if `time-stamp-active' disables time stamping and the
99buffer contains a template that would otherwise have been updated."
95772e85
RS
100 :type 'boolean
101 :group 'time-stamp)
102
103(defcustom time-stamp-old-format-warn 'ask
104 "Action to take if `time-stamp-format' is an old-style list.
105If `error', the format is not used. If `ask', the user is queried about
106using the time-stamp-format. If `warn', a warning is displayed.
107If nil, no notification is given."
108 :type '(choice (const :tag "No notification" nil)
109 (const :tag "Don't use the format" error)
110 (const ask) (const warn))
111 :group 'time-stamp)
112
113(defcustom time-stamp-time-zone nil
114 "If non-nil, a string naming the timezone to be used by \\[time-stamp].
115Format is the same as that used by the environment variable TZ on your system."
7967f8ab 116 :type '(choice (const nil) string)
95772e85 117 :group 'time-stamp)
622b7ede
RS
118
119
b4b33e01 120;;; Do not change time-stamp-line-limit, time-stamp-start,
55ac4d11
KH
121;;; time-stamp-end, time-stamp-pattern, time-stamp-inserts-lines,
122;;; or time-stamp-count in your .emacs or you will be incompatible
123;;; with other people's files! If you must change them, do so only
124;;; in the local variables section of the file itself.
9565745a 125
03d7856a 126
e1f40b28 127(defvar time-stamp-line-limit 8 ;Do not change!
c7c4ddd4 128 "Lines of a file searched; positive counts from start, negative from end.
55ac4d11
KH
129The patterns `time-stamp-start' and `time-stamp-end' must be found in
130the first (last) `time-stamp-line-limit' lines of the file for the
f7769aa5
RS
131file to be time-stamped by \\[time-stamp]. A value of 0 searches the
132entire buffer (use with care).
e1f40b28
RS
133
134Do not change `time-stamp-line-limit', `time-stamp-start', or
135`time-stamp-end' for yourself or you will be incompatible
136with other people's files! If you must change them for some application,
137do so in the local variables section of the time-stamped file itself.")
138
9565745a 139
36081614 140(defvar time-stamp-start "Time-stamp:[ \t]+\\\\?[\"<]+" ;Do not change!
9565745a 141 "Regexp after which the time stamp is written by \\[time-stamp].
e1f40b28 142See also the variables `time-stamp-end' and `time-stamp-line-limit'.
9565745a 143
e1f40b28
RS
144Do not change `time-stamp-line-limit', `time-stamp-start', or
145`time-stamp-end' for yourself or you will be incompatible
9565745a
RS
146with other people's files! If you must change them for some application,
147do so in the local variables section of the time-stamped file itself.")
148
149
e1f40b28 150(defvar time-stamp-end "\\\\?[\">]" ;Do not change!
9565745a 151 "Regexp marking the text after the time stamp.
e1f40b28 152\\[time-stamp] deletes the text between the first match of `time-stamp-start'
55ac4d11
KH
153and the following match of `time-stamp-end', then writes the
154time stamp specified by `time-stamp-format' between them.
e1f40b28 155
55ac4d11
KH
156The end text normally starts on the same line as the start text ends,
157but if there are any newlines in `time-stamp-format', the same number
158of newlines must separate the start and end. \\[time-stamp] tries
159to not change the number of lines in the buffer. `time-stamp-inserts-lines'
160controls this behavior.
161
162Do not change `time-stamp-line-limit', `time-stamp-start', `time-stamp-end',
163or `time-stamp-inserts-lines' for yourself or you will be incompatible
e1f40b28
RS
164with other people's files! If you must change them for some application,
165do so in the local variables section of the time-stamped file itself.")
166
9565745a 167
55ac4d11
KH
168(defvar time-stamp-inserts-lines nil ;Do not change!
169 "Whether time-stamp can change the number of lines in a file.
170If nil, \\[time-stamp] skips as many lines as there are newlines in
171`time-stamp-format' before looking for the `time-stamp-end' pattern,
172thus it tries not to change the number of lines in the buffer.
173If non-nil, \\[time-stamp] starts looking for the end pattern
174immediately after the start pattern. This behavior can cause
175unexpected changes in the buffer if used carelessly, but it is useful
176for generating repeated time stamps.
177
178Do not change `time-stamp-end' or `time-stamp-inserts-lines' for
179yourself or you will be incompatible with other people's files!
180If you must change them for some application, do so in the local
181variables section of the time-stamped file itself.")
182
183
184(defvar time-stamp-count 1 ;Do not change!
185 "How many time stamp templates \\[time-stamp] will look for in a buffer.
186The same time-stamp will be written in each case.
187
188Do not change `time-stamp-count' for yourself or you will be
189incompatible with other people's files! If you must change it for
190some application, do so in the local variables section of the
191time-stamped file itself.")
192
193
b4b33e01 194(defvar time-stamp-pattern "%%" ;Do not change!
55ac4d11 195 "Convenience variable setting all `time-stamp' location and format values.
b4b33e01 196This string has four parts, each of which is optional.
55ac4d11
KH
197These four parts set `time-stamp-line-limit', `time-stamp-start',
198`time-stamp-format', and `time-stamp-end'. See the documentation
b4b33e01
RS
199for each of these variables for details.
200
201The first part is a number followed by a slash; the number sets the number
202of lines at the beginning (negative counts from end) of the file searched
203for the time-stamp. The number and the slash may be omitted to use the
204normal value.
205
206The second part is a regexp identifying the pattern preceding the time stamp.
207This part may be omitted to use the normal pattern.
208
209The third part specifies the format of the time-stamp inserted. See
55ac4d11 210the documentation for `time-stamp-format' for details. Specify this
b4b33e01
RS
211part as \"%%\" to use the normal format.
212
213The fourth part is a regexp identifying the pattern following the time stamp.
214This part may be omitted to use the normal pattern.
215
216As an example, the default behavior can be specified something like this:
217\"8/Time-stamp: [\\\"<]%:y-%02m-%02d %02H:%02M:%02S %u[\\\">]\"
218
219Do not change `time-stamp-pattern' for yourself or you will be incompatible
220with other people's files! Set it only in the local variables section
221of the time-stamped file itself.")
222
223
03d7856a 224
59b644e8 225;;;###autoload
9565745a 226(defun time-stamp ()
55ac4d11 227 "Update the time stamp string(s) in the buffer.
03d7856a
KH
228A template in a file can be automatically updated with a new time stamp
229every time you save the file. Add this line to your .emacs file:
230 (add-hook 'write-file-hooks 'time-stamp)
231Normally the template must appear in the first 8 lines of a file and
232look like one of the following:
233 Time-stamp: <>
234 Time-stamp: \" \"
235The time stamp is written between the brackets or quotes:
b4b33e01 236 Time-stamp: <1998-02-18 10:20:51 gildea>
622b7ede 237The time stamp is updated only if the variable `time-stamp-active' is non-nil.
03d7856a 238The format of the time stamp is set by the variable `time-stamp-format'.
55ac4d11
KH
239The variables `time-stamp-line-limit', `time-stamp-start', `time-stamp-end',
240`time-stamp-count', and `time-stamp-inserts-lines' control finding the
241template."
9565745a 242 (interactive)
55ac4d11 243 (let ((line-limit time-stamp-line-limit)
b4b33e01
RS
244 (ts-start time-stamp-start)
245 (ts-format time-stamp-format)
55ac4d11
KH
246 (ts-end time-stamp-end)
247 (ts-count time-stamp-count)
248 (format-lines 0)
249 (end-lines 1)
250 (start nil)
251 search-limit)
b4b33e01
RS
252 (if (stringp time-stamp-pattern)
253 (progn
15ceaba4 254 (string-match "\\`\\(\\(-?[0-9]+\\)/\\)?\\([^%]+\\)?\\(\\(.\\|\n\\)*%[-.,:@+_ #^()0-9]*[A-Za-z%]\\)?\\([^%]+\\)?\\'" time-stamp-pattern)
b4b33e01
RS
255 (and (match-beginning 2)
256 (setq line-limit
257 (string-to-int (match-string 2 time-stamp-pattern))))
258 (and (match-beginning 3)
259 (setq ts-start (match-string 3 time-stamp-pattern)))
260 (and (match-beginning 4)
261 (not (string-equal (match-string 4 time-stamp-pattern) "%%"))
262 (setq ts-format (match-string 4 time-stamp-pattern)))
15ceaba4
KH
263 (and (match-beginning 6)
264 (setq ts-end (match-string 6 time-stamp-pattern)))))
622b7ede
RS
265 (cond ((not (integerp line-limit))
266 (setq line-limit 8)
b4b33e01 267 (message "time-stamp-line-limit is not an integer")
622b7ede 268 (sit-for 1)))
55ac4d11
KH
269 (cond ((not (integerp ts-count))
270 (setq ts-count 1)
271 (message "time-stamp-count is not an integer")
272 (sit-for 1))
273 ((< ts-count 1)
274 ;; We need to call time-stamp-once at least once
275 ;; to output any warnings about time-stamp not being active.
276 (setq ts-count 1)))
277 ;; Figure out what lines the end should be on.
278 (let ((nl-start 0))
279 (while (string-match "\n" ts-format nl-start)
280 (setq format-lines (1+ format-lines) nl-start (match-end 0))))
281 (let ((nl-start 0))
282 (while (string-match "\n" ts-end nl-start)
283 (setq end-lines (1+ end-lines) nl-start (match-end 0))))
284 ;; Find overall what lines to look at
622b7ede
RS
285 (save-excursion
286 (save-restriction
287 (widen)
288 (cond ((> line-limit 0)
289 (goto-char (setq start (point-min)))
290 (forward-line line-limit)
291 (setq search-limit (point)))
f7769aa5 292 ((< line-limit 0)
622b7ede
RS
293 (goto-char (setq search-limit (point-max)))
294 (forward-line line-limit)
f7769aa5
RS
295 (setq start (point)))
296 (t ;0 => no limit (use with care!)
297 (setq start (point-min))
55ac4d11
KH
298 (setq search-limit (point-max))))))
299 (while (and start
300 (< start search-limit)
301 (> ts-count 0))
302 (setq start (time-stamp-once start search-limit ts-start ts-end
303 ts-format format-lines end-lines))
304 (setq ts-count (1- ts-count))))
305 ;; be sure to return nil so can be used on write-file-hooks
306 nil)
307
308(defun time-stamp-once (start search-limit ts-start ts-end
309 ts-format format-lines end-lines)
310 "Update one time-stamp. Internal routine called by \\[time-stamp].
311Returns the end point, which is where `time-stamp' begins the next search."
312 (let ((case-fold-search nil)
313 (end nil)
314 end-search-start
315 (end-length nil))
316 (save-excursion
317 (save-restriction
318 (widen)
319 ;; Find the location of the time stamp.
320 (while (and (< (goto-char start) search-limit)
622b7ede 321 (not end)
b4b33e01 322 (re-search-forward ts-start search-limit 'move))
622b7ede 323 (setq start (point))
55ac4d11
KH
324 (if (not time-stamp-inserts-lines)
325 (forward-line format-lines))
326 (setq end-search-start (max start (point)))
327 (if (= (forward-line end-lines) 0)
328 (progn
329 (and (bolp) (backward-char))
330 (let ((line-end (min (point) search-limit)))
331 (if (>= line-end end-search-start)
332 (progn
333 (goto-char end-search-start)
334 (if (re-search-forward ts-end line-end t)
335 (progn
336 (setq end (match-beginning 0))
337 (setq end-length (- (match-end 0) end))))))))))))
b4b33e01
RS
338 (if end
339 (progn
340 ;; do all warnings outside save-excursion
341 (cond
342 ((not time-stamp-active)
343 (if time-stamp-warn-inactive
344 ;; don't signal an error in a write-file-hook
345 (progn
346 (message "Warning: time-stamp-active is off; did not time-stamp buffer.")
347 (sit-for 1))))
348 ((not (and (stringp ts-start)
349 (stringp ts-end)))
350 (message "time-stamp-start or time-stamp-end is not a string")
351 (sit-for 1))
352 (t
353 (let ((new-time-stamp (time-stamp-string ts-format)))
f7769aa5
RS
354 (if (and (stringp new-time-stamp)
355 (not (string-equal (buffer-substring start end)
356 new-time-stamp)))
b4b33e01
RS
357 (save-excursion
358 (save-restriction
359 (widen)
360 (delete-region start end)
361 (goto-char start)
362 (insert-and-inherit new-time-stamp)
363 (setq end (point))
364 ;; remove any tabs used to format time stamp
55ac4d11
KH
365 (if (search-backward "\t" start t)
366 (progn
367 (untabify start end)
368 (setq end (point))))))))))))
369 ;; return the location after this time stamp, if there was one
370 (and end end-length
371 (+ end end-length))))
372
9565745a 373
b1defad2
RS
374;;;###autoload
375(defun time-stamp-toggle-active (&optional arg)
03d7856a 376 "Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer.
b1defad2
RS
377With arg, turn time stamping on if and only if arg is positive."
378 (interactive "P")
379 (setq time-stamp-active
380 (if (null arg)
381 (not time-stamp-active)
382 (> (prefix-numeric-value arg) 0)))
55ac4d11
KH
383 (message "time-stamp is now %s." (if time-stamp-active "active" "off")))
384
385
386(defun time-stamp-string (&optional ts-format)
387 "Generate the new string to be inserted by \\[time-stamp].
388Optionally use FORMAT."
389 (or ts-format
390 (setq ts-format time-stamp-format))
391 (if (stringp ts-format)
392 (if (stringp time-stamp-time-zone)
393 (let ((ts-real-time-zone (getenv "TZ")))
394 (unwind-protect
395 (progn
396 (setenv "TZ" time-stamp-time-zone)
397 (format-time-string
398 (time-stamp-string-preprocess ts-format)))
399 (setenv "TZ" ts-real-time-zone)))
400 (format-time-string
401 (time-stamp-string-preprocess ts-format)))
402 ;; handle version 1 compatibility
403 (cond ((or (eq time-stamp-old-format-warn 'error)
404 (and (eq time-stamp-old-format-warn 'ask)
405 (not (y-or-n-p "Use non-string time-stamp-format? "))))
406 (message "Warning: no time-stamp: time-stamp-format not a string")
407 (sit-for 1)
408 nil)
409 (t
410 (cond ((eq time-stamp-old-format-warn 'warn)
411 (message "Obsolescent time-stamp-format type; should be string")
412 (sit-for 1)))
413 (time-stamp-fconcat ts-format " ")))))
03d7856a 414
6946129c
RS
415(defconst time-stamp-no-file "(no file)"
416 "String to use when the buffer is not associated with a file.")
417
fd72ddf6
RS
418;;; time-stamp is transitioning to using the new, expanded capabilities
419;;; of format-time-string. During the process, this function implements
420;;; intermediate, compatible formats and complains about old, soon to
421;;; be unsupported, formats. This function will get a lot (a LOT) shorter
422;;; when the transition is complete and we can just pass most things
423;;; straight through to format-time-string.
424;;; At all times, all the formats recommended in the doc string
425;;; of time-stamp-format will work not only in the current version of
426;;; Emacs, but in all versions that have been released within the past
427;;; two years.
428;;; The : modifier is a temporary conversion feature used to resolve
429;;; ambiguous formats--formats that are changing (over time) incompatibly.
430(defun time-stamp-string-preprocess (format &optional time)
55ac4d11 431 ;; Use a FORMAT to format date, time, file, and user information.
fd72ddf6
RS
432 ;; Optional second argument TIME is only for testing.
433 ;; Implements non-time extensions to format-time-string
434 ;; and all time-stamp-format compatibility.
435 (let ((fmt-len (length format))
436 (ind 0)
437 cur-char
438 (prev-char nil)
439 (result "")
fd72ddf6
RS
440 field-width
441 field-result
442 alt-form change-case require-padding
443 (paren-level 0))
444 (while (< ind fmt-len)
445 (setq cur-char (aref format ind))
446 (setq
447 result
448 (concat result
449 (cond
450 ((eq cur-char ?%)
451 ;; eat any additional args to allow for future expansion
15ceaba4 452 (setq alt-form nil change-case nil require-padding nil field-width "")
fd72ddf6
RS
453 (while (progn
454 (setq ind (1+ ind))
455 (setq cur-char (if (< ind fmt-len)
456 (aref format ind)
457 ?\0))
458 (or (eq ?. cur-char)
459 (eq ?, cur-char) (eq ?: cur-char) (eq ?@ cur-char)
460 (eq ?- cur-char) (eq ?+ cur-char) (eq ?_ cur-char)
461 (eq ?\ cur-char) (eq ?# cur-char) (eq ?^ cur-char)
462 (and (eq ?\( cur-char)
463 (not (eq prev-char ?\\))
464 (setq paren-level (1+ paren-level)))
465 (if (and (eq ?\) cur-char)
466 (not (eq prev-char ?\\))
467 (> paren-level 0))
468 (setq paren-level (1- paren-level))
469 (and (> paren-level 0)
15ceaba4
KH
470 (< ind fmt-len)))
471 (if (and (<= ?0 cur-char) (>= ?9 cur-char))
472 ;; get format width
473 (let ((field-index ind))
474 (while (progn
475 (setq ind (1+ ind))
476 (setq cur-char (if (< ind fmt-len)
477 (aref format ind)
478 ?\0))
479 (and (<= ?0 cur-char) (>= ?9 cur-char))))
480 (setq field-width (substring format field-index ind))
481 (setq ind (1- ind))
482 t))))
fd72ddf6
RS
483 (setq prev-char cur-char)
484 ;; some characters we actually use
485 (cond ((eq cur-char ?:)
486 (setq alt-form t))
487 ((eq cur-char ?#)
488 (setq change-case t))))
fd72ddf6
RS
489 (setq field-result
490 (cond
491 ((eq cur-char ?%)
55ac4d11 492 "%%")
fd72ddf6
RS
493 ((eq cur-char ?a) ;day of week
494 (if change-case
495 (format-time-string "%#A" time)
496 (or alt-form (not (string-equal field-width ""))
497 (time-stamp-conv-warn "%a" "%:a"))
498 (if (and alt-form (not (string-equal field-width "")))
499 "" ;discourage "%:3a"
500 (format-time-string "%A" time))))
501 ((eq cur-char ?A)
502 (if alt-form
503 (format-time-string "%A" time)
504 (or change-case (not (string-equal field-width ""))
505 (time-stamp-conv-warn "%A" "%#A"))
506 (format-time-string "%#A" time)))
507 ((eq cur-char ?b) ;month name
508 (if change-case
509 (format-time-string "%#B" time)
510 (or alt-form (not (string-equal field-width ""))
511 (time-stamp-conv-warn "%b" "%:b"))
512 (if (and alt-form (not (string-equal field-width "")))
513 "" ;discourage "%:3b"
514 (format-time-string "%B" time))))
515 ((eq cur-char ?B)
516 (if alt-form
517 (format-time-string "%B" time)
518 (or change-case (not (string-equal field-width ""))
519 (time-stamp-conv-warn "%B" "%#B"))
520 (format-time-string "%#B" time)))
521 ((eq cur-char ?d) ;day of month, 1-31
fdac7fba 522 (time-stamp-do-number cur-char alt-form field-width time))
fd72ddf6 523 ((eq cur-char ?H) ;hour, 0-23
fdac7fba 524 (time-stamp-do-number cur-char alt-form field-width time))
fd72ddf6 525 ((eq cur-char ?I) ;hour, 1-12
fdac7fba 526 (time-stamp-do-number cur-char alt-form field-width time))
fd72ddf6 527 ((eq cur-char ?m) ;month number, 1-12
fdac7fba 528 (time-stamp-do-number cur-char alt-form field-width time))
fd72ddf6 529 ((eq cur-char ?M) ;minute, 0-59
fdac7fba 530 (time-stamp-do-number cur-char alt-form field-width time))
fd72ddf6
RS
531 ((eq cur-char ?p) ;am or pm
532 (or change-case
533 (time-stamp-conv-warn "%p" "%#p"))
534 (format-time-string "%#p" time))
535 ((eq cur-char ?P) ;AM or PM
536 (format-time-string "%p" time))
537 ((eq cur-char ?S) ;seconds, 00-60
fdac7fba 538 (time-stamp-do-number cur-char alt-form field-width time))
fd72ddf6
RS
539 ((eq cur-char ?w) ;weekday number, Sunday is 0
540 (format-time-string "%w" time))
541 ((eq cur-char ?y) ;year
542 (or alt-form (not (string-equal field-width ""))
543 (time-stamp-conv-warn "%y" "%:y"))
544 (string-to-int (format-time-string "%Y" time)))
545 ((eq cur-char ?Y) ;4-digit year, new style
546 (string-to-int (format-time-string "%Y" time)))
547 ((eq cur-char ?z) ;time zone lower case
548 (if change-case
549 "" ;discourage %z variations
550 (format-time-string "%#Z" time)))
551 ((eq cur-char ?Z)
552 (if change-case
553 (format-time-string "%#Z" time)
554 (format-time-string "%Z" time)))
555 ((eq cur-char ?f) ;buffer-file-name, base name only
556 (if buffer-file-name
557 (file-name-nondirectory buffer-file-name)
558 time-stamp-no-file))
559 ((eq cur-char ?F) ;buffer-file-name, full path
560 (or buffer-file-name
561 time-stamp-no-file))
562 ((eq cur-char ?s) ;system name
563 (system-name))
564 ((eq cur-char ?u) ;user name
565 (user-login-name))
2c8d5749
RS
566 ((eq cur-char ?U) ;user full name
567 (user-full-name))
55ac4d11
KH
568 ((eq cur-char ?l) ;logname (undocumented user name alt)
569 (user-login-name))
570 ((eq cur-char ?L) ;(undocumented alt user full name)
571 (user-full-name))
fd72ddf6
RS
572 ((eq cur-char ?h) ;mail host name
573 (time-stamp-mail-host-name))
574 ))
575 (if (string-equal field-width "")
576 field-result
577 (let ((padded-result
578 (format (format "%%%s%c"
579 field-width
580 (if (numberp field-result) ?d ?s))
581 (or field-result ""))))
582 (let ((initial-length (length padded-result))
583 (desired-length (string-to-int field-width)))
584 (if (> initial-length desired-length)
585 ;; truncate strings on right, years on left
586 (if (stringp field-result)
587 (substring padded-result 0 desired-length)
588 (if (eq cur-char ?y)
589 (substring padded-result (- desired-length))
590 padded-result)) ;non-year numbers don't truncate
591 padded-result)))))
592 (t
593 (char-to-string cur-char)))))
594 (setq ind (1+ ind)))
595 result))
596
fdac7fba
RS
597(defun time-stamp-do-number (format-char alt-form field-width time)
598 ;; Handle a compatible FORMAT-CHAR where only
fd72ddf6 599 ;; the default width/padding will change.
fdac7fba
RS
600 ;; ALT-FORM is whether `#' specified. FIELD-WIDTH is the string
601 ;; width specification or "". TIME is the time to convert.
fd72ddf6
RS
602 (let ((format-string (concat "%" (char-to-string format-char))))
603 (and (not alt-form) (string-equal field-width "")
604 (time-stamp-conv-warn format-string
605 (format "%%:%c" format-char)))
606 (if (and alt-form (not (string-equal field-width "")))
607 "" ;discourage "%:2d" and the like
608 (string-to-int (format-time-string format-string time)))))
609
610(defvar time-stamp-conversion-warn t
55ac4d11 611 "Non-nil to warn about soon-to-be-unsupported forms in `time-stamp-format'.
fd72ddf6
RS
612In would be a bad idea to disable these warnings!
613You really need to update your files instead.
614
615The new formats will work with old versions of Emacs.
55ac4d11
KH
616New formats are being recommended now to allow `time-stamp-format'
617to change in the future to be compatible with `format-time-string'.
fd72ddf6
RS
618The new forms being recommended now will continue to work then.")
619
620
621(defun time-stamp-conv-warn (old-form new-form)
622 ;; Display a warning about a soon-to-be-obsolete format.
623 (cond
624 (time-stamp-conversion-warn
625 (save-excursion
626 (set-buffer (get-buffer-create "*Time-stamp-compatibility*"))
627 (goto-char (point-max))
628 (if (bobp)
629 (progn
630 (insert
631 "The formats recognized in time-stamp-format will change in a future release\n"
632 "to be compatible with the new, expanded format-time-string function.\n\n"
633 "The following obsolescent time-stamp-format construct(s) were found:\n\n")))
634 (insert "\"" old-form "\" -- use " new-form "\n"))
635 (display-buffer "*Time-stamp-compatibility*"))))
95772e85 636
fd72ddf6 637
b1defad2 638
b1defad2
RS
639(defun time-stamp-mail-host-name ()
640 "Return the name of the host where the user receives mail.
641This is the value of `mail-host-address' if bound and a string,
55ac4d11 642otherwise the value of the function `system-name'."
b1defad2
RS
643 (or (and (boundp 'mail-host-address)
644 (stringp mail-host-address)
645 mail-host-address)
b1defad2
RS
646 (system-name)))
647
648;;; the rest of this file is for version 1 compatibility
9565745a
RS
649
650(defun time-stamp-fconcat (list sep)
e1f40b28 651 "Similar to (mapconcat 'funcall LIST SEP) but LIST allows literals.
9565745a
RS
652If an element of LIST is a symbol, it is funcalled to get the string to use;
653the separator SEP is used between two strings obtained by funcalling a
654symbol. Otherwise the element itself is inserted; no separator is used
655around literals."
656 (let ((return-string "")
657 (insert-sep-p nil))
658 (while list
659 (cond ((symbolp (car list))
660 (if insert-sep-p
661 (setq return-string (concat return-string sep)))
662 (setq return-string (concat return-string (funcall (car list))))
663 (setq insert-sep-p t))
664 (t
665 (setq return-string (concat return-string (car list)))
666 (setq insert-sep-p nil)))
667 (setq list (cdr list)))
668 return-string))
669
03d7856a 670;;; Some functions used in time-stamp-format
9565745a
RS
671
672;;; Could generate most of a message-id with
e1f40b28 673;;; '(time-stamp-yymmdd "" time-stamp-hhmm "@" time-stamp-mail-host-name)
9565745a 674
9565745a
RS
675;;; pretty form, suitable for a title page
676
677(defun time-stamp-month-dd-yyyy ()
e1f40b28 678 "Return the current date as a string in \"Month DD, YYYY\" form."
b8944601 679 (format-time-string "%B %e, %Y"))
9565745a 680
b24173f7
RS
681(defun time-stamp-dd/mm/yyyy ()
682 "Return the current date as a string in \"DD/MM/YYYY\" form."
b8944601 683 (format-time-string "%d/%m/%Y"))
b24173f7 684
9565745a
RS
685;;; same as __DATE__ in ANSI C
686
687(defun time-stamp-mon-dd-yyyy ()
e1f40b28
RS
688 "Return the current date as a string in \"Mon DD YYYY\" form.
689The first character of DD is space if the value is less than 10."
b8944601 690 (format-time-string "%b %d %Y"))
9565745a
RS
691
692;;; RFC 822 date
693
694(defun time-stamp-dd-mon-yy ()
e1f40b28 695 "Return the current date as a string in \"DD Mon YY\" form."
b8944601 696 (format-time-string "%d %b %y"))
9565745a
RS
697
698;;; RCS 3 date
699
700(defun time-stamp-yy/mm/dd ()
e1f40b28 701 "Return the current date as a string in \"YY/MM/DD\" form."
b8944601 702 (format-time-string "%y/%m/%d"))
9565745a
RS
703
704;;; RCS 5 date
705
706(defun time-stamp-yyyy/mm/dd ()
e1f40b28 707 "Return the current date as a string in \"YYYY/MM/DD\" form."
b8944601 708 (format-time-string "%Y/%m/%d"))
9565745a 709
e1f40b28 710;;; ISO 8601 date
9565745a 711
e1f40b28
RS
712(defun time-stamp-yyyy-mm-dd ()
713 "Return the current date as a string in \"YYYY-MM-DD\" form."
b8944601 714 (format-time-string "%Y-%m-%d"))
9565745a 715
e1f40b28
RS
716(defun time-stamp-yymmdd ()
717 "Return the current date as a string in \"YYMMDD\" form."
b8944601 718 (format-time-string "%y%m%d"))
9565745a
RS
719
720(defun time-stamp-hh:mm:ss ()
e1f40b28 721 "Return the current time as a string in \"HH:MM:SS\" form."
b8944601 722 (format-time-string "%T"))
9565745a 723
9565745a 724(defun time-stamp-hhmm ()
e1f40b28 725 "Return the current time as a string in \"HHMM\" form."
b8944601 726 (format-time-string "%H%M"))
9565745a
RS
727
728(provide 'time-stamp)
729
730;;; time-stamp.el ends here