1993-06-21 05:05:59 +00:00
|
|
|
;;; time-stamp.el --- Maintain last change time stamps in files edited by Emacs
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
;; Copyright 1989, 1993, 1994, 1995 Free Software Foundation, Inc.
|
|
|
|
|
1996-09-22 22:20:58 +00:00
|
|
|
;; Maintainer's Time-stamp: <1996-08-13 14:03:17 gildea>
|
1993-06-21 05:05:59 +00:00
|
|
|
;; Maintainer: Stephen Gildea <gildea@lcs.mit.edu>
|
|
|
|
;; Keywords: tools
|
|
|
|
|
|
|
|
;; This file is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; This file is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
1996-09-22 22:20:58 +00:00
|
|
|
;; A template in a file can be updated with a new time stamp when
|
|
|
|
;; you save the file. For example:
|
|
|
|
;; static char *ts = "sdmain.c Time-stamp: <1996-08-13 10:20:51 gildea>";
|
|
|
|
;; See the top of `time-stamp.el' for another example.
|
|
|
|
|
|
|
|
;; To use time-stamping, add this line to your .emacs file:
|
|
|
|
;; (add-hook 'write-file-hooks 'time-stamp)
|
|
|
|
;; Now any time-stamp templates in your files will be updated automatically.
|
|
|
|
|
|
|
|
;; See the documentation for the functions `time-stamp'
|
|
|
|
;; and `time-stamp-toggle-active' for details.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
1996-01-20 02:50:09 +00:00
|
|
|
;;; Change Log:
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
|
|
;; Originally based on the 19 Dec 88 version of
|
|
|
|
;; date.el by John Sturdy <mcvax!harlqn.co.uk!jcgs@uunet.uu.net>
|
1996-09-22 22:20:58 +00:00
|
|
|
;; Version 2, January 1995: replaced functions with %-escapes
|
1996-12-18 02:45:09 +00:00
|
|
|
;; $Id: time-stamp.el,v 1.23 1996/12/17 00:19:01 rms Exp rms $
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defvar time-stamp-active t
|
1995-10-31 00:01:15 +00:00
|
|
|
"*Non-nil to enable time-stamping of buffers by \\[time-stamp].
|
1995-04-13 01:33:08 +00:00
|
|
|
Can be toggled by \\[time-stamp-toggle-active].
|
1996-09-22 22:20:58 +00:00
|
|
|
See also the variable `time-stamp-warn-inactive'.")
|
1995-04-13 01:33:08 +00:00
|
|
|
|
|
|
|
(defvar time-stamp-warn-inactive t
|
1996-09-22 22:20:58 +00:00
|
|
|
"Non-nil to have \\[time-stamp] warn if a buffer did not get time-stamped.
|
|
|
|
A warning is printed if `time-stamp-active' is nil and the buffer contains
|
1995-10-31 00:01:15 +00:00
|
|
|
a time stamp template that would otherwise have been updated.")
|
1995-04-13 01:33:08 +00:00
|
|
|
|
1996-09-22 22:20:58 +00:00
|
|
|
(defvar time-stamp-old-format-warn 'ask
|
|
|
|
"Action to take if `time-stamp-format' is an old-style list.
|
1996-12-13 01:49:23 +00:00
|
|
|
If `error', the format is not used. If `ask', the user is queried about
|
|
|
|
using the time-stamp-format. If `warn', a warning is displayed.
|
1996-09-22 22:20:58 +00:00
|
|
|
If nil, no notification is given.")
|
|
|
|
|
1996-12-17 00:14:41 +00:00
|
|
|
(defvar time-stamp-format "%Y-%m-%d %H:%M:%S %u"
|
1996-09-22 22:20:58 +00:00
|
|
|
"*Format of the string inserted by \\[time-stamp].
|
1996-12-13 01:49:23 +00:00
|
|
|
The value may be a string or a list. Lists are supported only for
|
|
|
|
backward compatibility; see variable `time-stamp-old-format-warn'.
|
1995-10-31 00:01:15 +00:00
|
|
|
|
1996-12-13 01:49:23 +00:00
|
|
|
A string is used with `format-time-string'.
|
1995-10-31 00:01:15 +00:00
|
|
|
For example, to get the format used by the `date' command,
|
1996-12-17 00:14:41 +00:00
|
|
|
use \"%3a %3b %2d %H:%M:%S %Z %y\".
|
|
|
|
|
|
|
|
In addition to the features of `format-time-string',
|
|
|
|
you can use the following %-constructs:
|
|
|
|
|
|
|
|
%f file name without directory
|
|
|
|
%F full file name
|
|
|
|
%h mail host name
|
|
|
|
%s system name
|
|
|
|
%u user's login name")
|
1996-09-22 22:20:58 +00:00
|
|
|
|
1993-06-21 05:05:59 +00:00
|
|
|
;;; Do not change time-stamp-line-limit, time-stamp-start, or
|
|
|
|
;;; time-stamp-end in your .emacs or you will be incompatible
|
|
|
|
;;; with other people's files! If you must change them,
|
|
|
|
;;; do so only in the local variables section of the file itself.
|
|
|
|
|
1996-09-22 22:20:58 +00:00
|
|
|
|
1994-01-19 13:57:16 +00:00
|
|
|
(defvar time-stamp-line-limit 8 ;Do not change!
|
1996-01-06 01:03:24 +00:00
|
|
|
"Lines of a file searched; positive counts from start, negative from end.
|
1994-01-19 13:57:16 +00:00
|
|
|
The patterns `time-stamp-start' and `time-stamp-end' must be found on one
|
1996-01-06 01:03:24 +00:00
|
|
|
of the first (last) `time-stamp-line-limit' lines of the file for the
|
|
|
|
file to be time-stamped by \\[time-stamp].
|
1994-01-19 13:57:16 +00:00
|
|
|
|
|
|
|
Do not change `time-stamp-line-limit', `time-stamp-start', or
|
|
|
|
`time-stamp-end' for yourself or you will be incompatible
|
|
|
|
with other people's files! If you must change them for some application,
|
|
|
|
do so in the local variables section of the time-stamped file itself.")
|
|
|
|
|
1993-06-21 05:05:59 +00:00
|
|
|
|
1994-02-17 03:44:17 +00:00
|
|
|
(defvar time-stamp-start "Time-stamp:[ \t]+\\\\?[\"<]+" ;Do not change!
|
1993-06-21 05:05:59 +00:00
|
|
|
"Regexp after which the time stamp is written by \\[time-stamp].
|
1994-01-19 13:57:16 +00:00
|
|
|
See also the variables `time-stamp-end' and `time-stamp-line-limit'.
|
1993-06-21 05:05:59 +00:00
|
|
|
|
1994-01-19 13:57:16 +00:00
|
|
|
Do not change `time-stamp-line-limit', `time-stamp-start', or
|
|
|
|
`time-stamp-end' for yourself or you will be incompatible
|
1993-06-21 05:05:59 +00:00
|
|
|
with other people's files! If you must change them for some application,
|
|
|
|
do so in the local variables section of the time-stamped file itself.")
|
|
|
|
|
|
|
|
|
1994-01-19 13:57:16 +00:00
|
|
|
(defvar time-stamp-end "\\\\?[\">]" ;Do not change!
|
1993-06-21 05:05:59 +00:00
|
|
|
"Regexp marking the text after the time stamp.
|
1994-01-19 13:57:16 +00:00
|
|
|
\\[time-stamp] deletes the text between the first match of `time-stamp-start'
|
|
|
|
and the following match of `time-stamp-end' on the same line,
|
|
|
|
then writes the time stamp specified by `time-stamp-format' between them.
|
|
|
|
|
|
|
|
Do not change `time-stamp-line-limit', `time-stamp-start', or
|
|
|
|
`time-stamp-end' for yourself or you will be incompatible
|
|
|
|
with other people's files! If you must change them for some application,
|
|
|
|
do so in the local variables section of the time-stamped file itself.")
|
|
|
|
|
1993-06-21 05:05:59 +00:00
|
|
|
|
1996-09-22 22:20:58 +00:00
|
|
|
|
1993-07-28 23:51:08 +00:00
|
|
|
;;;###autoload
|
1993-06-21 05:05:59 +00:00
|
|
|
(defun time-stamp ()
|
|
|
|
"Update the time stamp string in the buffer.
|
1996-09-22 22:20:58 +00:00
|
|
|
A template in a file can be automatically updated with a new time stamp
|
|
|
|
every time you save the file. Add this line to your .emacs file:
|
|
|
|
(add-hook 'write-file-hooks 'time-stamp)
|
|
|
|
Normally the template must appear in the first 8 lines of a file and
|
|
|
|
look like one of the following:
|
|
|
|
Time-stamp: <>
|
|
|
|
Time-stamp: \" \"
|
|
|
|
The time stamp is written between the brackets or quotes:
|
|
|
|
Time-stamp: <1996-07-18 10:20:51 gildea>
|
|
|
|
Only updates the time stamp if the variable `time-stamp-active' is non-nil.
|
|
|
|
The format of the time stamp is set by the variable `time-stamp-format'.
|
|
|
|
The variables `time-stamp-line-limit', `time-stamp-start',
|
|
|
|
and `time-stamp-end' control finding the template."
|
1993-06-21 05:05:59 +00:00
|
|
|
(interactive)
|
1995-05-30 21:20:09 +00:00
|
|
|
(let ((case-fold-search nil)
|
1996-09-22 22:20:58 +00:00
|
|
|
(start nil)
|
|
|
|
(end nil)
|
|
|
|
search-limit)
|
1995-05-30 21:20:09 +00:00
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
(widen)
|
1996-09-22 22:20:58 +00:00
|
|
|
(cond ((> time-stamp-line-limit 0)
|
|
|
|
(goto-char (setq start (point-min)))
|
|
|
|
(forward-line time-stamp-line-limit)
|
|
|
|
(setq search-limit (point)))
|
|
|
|
(t
|
|
|
|
(goto-char (setq search-limit (point-max)))
|
|
|
|
(forward-line time-stamp-line-limit)
|
|
|
|
(setq start (point))))
|
1996-01-06 01:03:24 +00:00
|
|
|
(goto-char start)
|
1996-09-22 22:20:58 +00:00
|
|
|
(while (and (< (point) search-limit)
|
|
|
|
(not end)
|
|
|
|
(re-search-forward time-stamp-start search-limit 'move))
|
1996-01-06 01:03:24 +00:00
|
|
|
(setq start (point))
|
|
|
|
(end-of-line)
|
|
|
|
(let ((line-end (point)))
|
|
|
|
(goto-char start)
|
|
|
|
(if (re-search-forward time-stamp-end line-end 'move)
|
1996-09-22 22:20:58 +00:00
|
|
|
(setq end (match-beginning 0)))))))
|
|
|
|
(if end
|
|
|
|
(progn
|
|
|
|
;; do all warnings outside save-excursion
|
|
|
|
(cond
|
|
|
|
((not time-stamp-active)
|
|
|
|
(if time-stamp-warn-inactive
|
|
|
|
;; don't signal an error in a write-file-hook
|
1996-01-06 01:03:24 +00:00
|
|
|
(progn
|
1996-09-22 22:20:58 +00:00
|
|
|
(message "Warning: time-stamp-active is off; did not time-stamp buffer.")
|
|
|
|
(sit-for 1))))
|
|
|
|
((not (and (stringp time-stamp-start)
|
|
|
|
(stringp time-stamp-end)))
|
|
|
|
(message "time-stamp-start or time-stamp-end is not a string")
|
|
|
|
(sit-for 1))
|
|
|
|
(t
|
|
|
|
(let ((new-time-stamp (time-stamp-string)))
|
|
|
|
(if (stringp new-time-stamp)
|
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(delete-region start end)
|
|
|
|
(goto-char start)
|
|
|
|
(insert new-time-stamp)
|
|
|
|
(setq end (point))
|
|
|
|
;; remove any tabs used to format time stamp
|
|
|
|
(goto-char start)
|
|
|
|
(if (search-forward "\t" end t)
|
|
|
|
(untabify start end)))))))))))
|
1993-06-21 05:05:59 +00:00
|
|
|
;; be sure to return nil so can be used on write-file-hooks
|
|
|
|
nil)
|
|
|
|
|
1995-04-13 01:33:08 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun time-stamp-toggle-active (&optional arg)
|
1996-09-22 22:20:58 +00:00
|
|
|
"Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer.
|
1995-04-13 01:33:08 +00:00
|
|
|
With arg, turn time stamping on if and only if arg is positive."
|
|
|
|
(interactive "P")
|
|
|
|
(setq time-stamp-active
|
|
|
|
(if (null arg)
|
|
|
|
(not time-stamp-active)
|
|
|
|
(> (prefix-numeric-value arg) 0)))
|
|
|
|
(message "time-stamp is now %s." (if time-stamp-active "active" "off")))
|
1996-09-22 22:20:58 +00:00
|
|
|
|
1996-12-17 00:14:41 +00:00
|
|
|
(defconst time-stamp-no-file "(no file)"
|
|
|
|
"String to use when the buffer is not associated with a file.")
|
|
|
|
|
|
|
|
(defun time-stamp-string-preprocess (format)
|
|
|
|
"Process occurrences in FORMAT of %f, %F, %h, %s and %u.
|
|
|
|
These are replaced with the file name (nondirectory part),
|
|
|
|
full file name, host name for mail, system name, and user name.
|
|
|
|
Do not alter other %-combinations, and do detect %%."
|
|
|
|
(let ((result "") (pos 0) (case-fold-search nil)
|
|
|
|
(file (or buffer-file-name "(no file)")))
|
|
|
|
(while (string-match "%[%uhfFs]" format pos)
|
|
|
|
(setq result (concat result (substring format pos (match-beginning 0))))
|
|
|
|
(let ((char (aref format (1+ (match-beginning 0)))))
|
|
|
|
(cond ((= char ?%)
|
|
|
|
(setq result (concat result "%%")))
|
|
|
|
((= char ?u)
|
|
|
|
(setq result (concat result (user-login-name))))
|
|
|
|
((= char ?f)
|
|
|
|
(setq result (concat result (file-name-nondirectory file))))
|
|
|
|
((= char ?f)
|
|
|
|
(setq result (concat result file)))
|
|
|
|
((= char ?s)
|
|
|
|
(setq result (concat result (system-name))))
|
|
|
|
((= char ?h)
|
|
|
|
(setq result (concat result (time-stamp-mail-host-name))))))
|
|
|
|
(setq pos (match-end 0)))
|
|
|
|
(concat result (substring format pos))))
|
1995-04-13 01:33:08 +00:00
|
|
|
|
1993-06-21 05:05:59 +00:00
|
|
|
(defun time-stamp-string ()
|
|
|
|
"Generate the new string to be inserted by \\[time-stamp]."
|
1995-04-13 01:33:08 +00:00
|
|
|
(if (stringp time-stamp-format)
|
1996-12-17 00:14:41 +00:00
|
|
|
(format-time-string (time-stamp-string-preprocess time-stamp-format)
|
|
|
|
(current-time))
|
1996-09-22 22:20:58 +00:00
|
|
|
;; handle version 1 compatibility
|
|
|
|
(cond ((or (eq time-stamp-old-format-warn 'error)
|
|
|
|
(and (eq time-stamp-old-format-warn 'ask)
|
|
|
|
(not (y-or-n-p "Use non-string time-stamp-format? "))))
|
|
|
|
(message "Warning: no time-stamp: time-stamp-format not a string")
|
|
|
|
(sit-for 1)
|
|
|
|
nil)
|
|
|
|
(t
|
|
|
|
(cond ((eq time-stamp-old-format-warn 'warn)
|
|
|
|
(message "Obsolescent time-stamp-format type; should be string")
|
|
|
|
(sit-for 1)))
|
|
|
|
(time-stamp-fconcat time-stamp-format " ")))))
|
1995-04-13 01:33:08 +00:00
|
|
|
|
1996-01-06 01:03:24 +00:00
|
|
|
(defconst time-stamp-no-file "(no file)"
|
|
|
|
"String to use when the buffer is not associated with a file.")
|
|
|
|
|
1995-04-13 01:33:08 +00:00
|
|
|
(defun time-stamp-mail-host-name ()
|
|
|
|
"Return the name of the host where the user receives mail.
|
|
|
|
This is the value of `mail-host-address' if bound and a string,
|
1996-12-18 02:45:09 +00:00
|
|
|
otherwise the value of the function system-name."
|
1995-04-13 01:33:08 +00:00
|
|
|
(or (and (boundp 'mail-host-address)
|
|
|
|
(stringp mail-host-address)
|
|
|
|
mail-host-address)
|
|
|
|
(system-name)))
|
|
|
|
|
|
|
|
;;; the rest of this file is for version 1 compatibility
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
(defun time-stamp-fconcat (list sep)
|
1994-01-19 13:57:16 +00:00
|
|
|
"Similar to (mapconcat 'funcall LIST SEP) but LIST allows literals.
|
1993-06-21 05:05:59 +00:00
|
|
|
If an element of LIST is a symbol, it is funcalled to get the string to use;
|
|
|
|
the separator SEP is used between two strings obtained by funcalling a
|
|
|
|
symbol. Otherwise the element itself is inserted; no separator is used
|
|
|
|
around literals."
|
|
|
|
(let ((return-string "")
|
|
|
|
(insert-sep-p nil))
|
|
|
|
(while list
|
|
|
|
(cond ((symbolp (car list))
|
|
|
|
(if insert-sep-p
|
|
|
|
(setq return-string (concat return-string sep)))
|
|
|
|
(setq return-string (concat return-string (funcall (car list))))
|
|
|
|
(setq insert-sep-p t))
|
|
|
|
(t
|
|
|
|
(setq return-string (concat return-string (car list)))
|
|
|
|
(setq insert-sep-p nil)))
|
|
|
|
(setq list (cdr list)))
|
|
|
|
return-string))
|
|
|
|
|
1996-09-22 22:20:58 +00:00
|
|
|
;;; Some functions used in time-stamp-format
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
;;; Could generate most of a message-id with
|
1994-01-19 13:57:16 +00:00
|
|
|
;;; '(time-stamp-yymmdd "" time-stamp-hhmm "@" time-stamp-mail-host-name)
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
;;; pretty form, suitable for a title page
|
|
|
|
|
|
|
|
(defun time-stamp-month-dd-yyyy ()
|
1994-01-19 13:57:16 +00:00
|
|
|
"Return the current date as a string in \"Month DD, YYYY\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%B %e, %Y"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
1996-11-05 18:27:41 +00:00
|
|
|
(defun time-stamp-dd/mm/yyyy ()
|
|
|
|
"Return the current date as a string in \"DD/MM/YYYY\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%d/%m/%Y"))
|
1996-11-05 18:27:41 +00:00
|
|
|
|
1993-06-21 05:05:59 +00:00
|
|
|
;;; same as __DATE__ in ANSI C
|
|
|
|
|
|
|
|
(defun time-stamp-mon-dd-yyyy ()
|
1994-01-19 13:57:16 +00:00
|
|
|
"Return the current date as a string in \"Mon DD YYYY\" form.
|
|
|
|
The first character of DD is space if the value is less than 10."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%b %d %Y"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
;;; RFC 822 date
|
|
|
|
|
|
|
|
(defun time-stamp-dd-mon-yy ()
|
1994-01-19 13:57:16 +00:00
|
|
|
"Return the current date as a string in \"DD Mon YY\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%d %b %y"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
;;; RCS 3 date
|
|
|
|
|
|
|
|
(defun time-stamp-yy/mm/dd ()
|
1994-01-19 13:57:16 +00:00
|
|
|
"Return the current date as a string in \"YY/MM/DD\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%y/%m/%d"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
;;; RCS 5 date
|
|
|
|
|
|
|
|
(defun time-stamp-yyyy/mm/dd ()
|
1994-01-19 13:57:16 +00:00
|
|
|
"Return the current date as a string in \"YYYY/MM/DD\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%Y/%m/%d"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
1994-01-19 13:57:16 +00:00
|
|
|
;;; ISO 8601 date
|
1993-06-21 05:05:59 +00:00
|
|
|
|
1994-01-19 13:57:16 +00:00
|
|
|
(defun time-stamp-yyyy-mm-dd ()
|
|
|
|
"Return the current date as a string in \"YYYY-MM-DD\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%Y-%m-%d"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
1994-01-19 13:57:16 +00:00
|
|
|
(defun time-stamp-yymmdd ()
|
|
|
|
"Return the current date as a string in \"YYMMDD\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%y%m%d"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
(defun time-stamp-hh:mm:ss ()
|
1994-01-19 13:57:16 +00:00
|
|
|
"Return the current time as a string in \"HH:MM:SS\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%T"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
(defun time-stamp-hhmm ()
|
1994-01-19 13:57:16 +00:00
|
|
|
"Return the current time as a string in \"HHMM\" form."
|
1996-12-17 00:19:01 +00:00
|
|
|
(format-time-string "%H%M"))
|
1993-06-21 05:05:59 +00:00
|
|
|
|
|
|
|
(provide 'time-stamp)
|
|
|
|
|
|
|
|
;;; time-stamp.el ends here
|