Make publishing a little less noisy

This commit is contained in:
Carsten Dominik 2009-07-08 10:09:05 +02:00
parent 6355334c4b
commit aa9529a5ce
1 changed files with 7 additions and 1 deletions

View File

@ -176,6 +176,11 @@ When nil, do no timestamp checking and always publish all files."
:group 'org-publish
:type 'directory)
(defcustom org-publish-list-skipped-files t
"Non-nil means, show message about files *not* published."
:group 'org-publish
:type 'boolean)
(defcustom org-publish-before-export-hook nil
"Hook run before export on the Org file.
The hook may modify the file in arbitrary ways before publishing happens.
@ -223,7 +228,8 @@ function can still decide about that independently."
t)))
(if rtn
(message "Publishing file %s using `%s'" filename pub-func)
(message "Skipping unmodified file %s" filename))
(when org-publish-list-skipped-files
(message "Skipping unmodified file %s" filename)))
rtn))
(defun org-publish-update-timestamp (filename &optional pub-dir pub-func)