Function: org-publish-timestamp-filename

org-publish-timestamp-filename is a byte-compiled function defined in ox-publish.el.gz.

Signature

(org-publish-timestamp-filename FILENAME &optional PUB-DIR PUB-FUNC)

Documentation

Return path to timestamp file for filename FILENAME.

The timestamp file name is constructed using FILENAME, publishing directory PUB-DIR, and PUB-FUNC publishing function.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-publish.el.gz
;;; Timestamp-related functions

(defun org-publish-timestamp-filename (filename &optional pub-dir pub-func)
  "Return path to timestamp file for filename FILENAME.
The timestamp file name is constructed using FILENAME, publishing
directory PUB-DIR, and PUB-FUNC publishing function."
  (setq filename (concat filename "::" (or pub-dir "") "::"
			 (format "%s" (or pub-func ""))))
  (concat "X" (sha1 filename)))