Merge branch 'maint'
[org-mode.git] / lisp / ox-publish.el
blob2d723710253d88d5afdaae41a8f8a71bfb365dba
1 ;;; ox-publish.el --- Publish Related Org Mode Files as a Website -*- lexical-binding: t; -*-
2 ;; Copyright (C) 2006-2017 Free Software Foundation, Inc.
4 ;; Author: David O'Toole <dto@gnu.org>
5 ;; Maintainer: Carsten Dominik <carsten DOT dominik AT gmail DOT com>
6 ;; Keywords: hypermedia, outlines, wp
8 ;; This file is part of GNU Emacs.
9 ;;
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; This program allow configurable publishing of related sets of
26 ;; Org mode files as a complete website.
28 ;; ox-publish.el can do the following:
30 ;; + Publish all one's Org files to a given export back-end
31 ;; + Upload HTML, images, attachments and other files to a web server
32 ;; + Exclude selected private pages from publishing
33 ;; + Publish a clickable sitemap of pages
34 ;; + Manage local timestamps for publishing only changed files
35 ;; + Accept plugin functions to extend range of publishable content
37 ;; Documentation for publishing is in the manual.
39 ;;; Code:
41 (require 'cl-lib)
42 (require 'format-spec)
43 (require 'ox)
47 ;;; Variables
49 ;; Here, so you find the variable right before it's used the first time:
50 (defvar org-publish-cache nil
51 "This will cache timestamps and titles for files in publishing projects.
52 Blocks could hash sha1 values here.")
54 (defvar org-publish-after-publishing-hook nil
55 "Hook run each time a file is published.
56 Every function in this hook will be called with two arguments:
57 the name of the original file and the name of the file
58 produced.")
60 (defgroup org-publish nil
61 "Options for publishing a set of files."
62 :tag "Org Publishing"
63 :group 'org)
65 (defcustom org-publish-project-alist nil
66 "Association list to control publishing behavior.
67 \\<org-mode-map>
68 Each element of the alist is a publishing project. The car of
69 each element is a string, uniquely identifying the project. The
70 cdr of each element is in one of the following forms:
72 1. A well-formed property list with an even number of elements,
73 alternating keys and values, specifying parameters for the
74 publishing process.
76 (:property value :property value ... )
78 2. A meta-project definition, specifying of a list of
79 sub-projects:
81 (:components (\"project-1\" \"project-2\" ...))
83 When the CDR of an element of org-publish-project-alist is in
84 this second form, the elements of the list after `:components'
85 are taken to be components of the project, which group together
86 files requiring different publishing options. When you publish
87 such a project with `\\[org-publish]', the components all publish.
89 When a property is given a value in `org-publish-project-alist',
90 its setting overrides the value of the corresponding user
91 variable (if any) during publishing. However, options set within
92 a file override everything.
94 Most properties are optional, but some should always be set:
96 `:base-directory'
98 Directory containing publishing source files.
100 `:base-extension'
102 Extension (without the dot!) of source files. This can be
103 a regular expression. If not given, \"org\" will be used as
104 default extension. If it is `any', include all the files,
105 even without extension.
107 `:publishing-directory'
109 Directory (possibly remote) where output files will be
110 published.
112 If `:recursive' is non-nil files in sub-directories of
113 `:base-directory' are considered.
115 The `:exclude' property may be used to prevent certain files from
116 being published. Its value may be a string or regexp matching
117 file names you don't want to be published.
119 The `:include' property may be used to include extra files. Its
120 value may be a list of filenames to include. The filenames are
121 considered relative to the base directory.
123 When both `:include' and `:exclude' properties are given values,
124 the exclusion step happens first.
126 One special property controls which back-end function to use for
127 publishing files in the project. This can be used to extend the
128 set of file types publishable by `org-publish', as well as the
129 set of output formats.
131 `:publishing-function'
133 Function to publish file. Each back-end may define its
134 own (i.e. `org-latex-publish-to-pdf',
135 `org-html-publish-to-html'). May be a list of functions, in
136 which case each function in the list is invoked in turn.
138 Another property allows you to insert code that prepares
139 a project for publishing. For example, you could call GNU Make
140 on a certain makefile, to ensure published files are built up to
141 date.
143 `:preparation-function'
145 Function to be called before publishing this project. This
146 may also be a list of functions. Preparation functions are
147 called with the project properties list as their sole
148 argument.
150 `:completion-function'
152 Function to be called after publishing this project. This
153 may also be a list of functions. Completion functions are
154 called with the project properties list as their sole
155 argument.
157 Some properties control details of the Org publishing process,
158 and are equivalent to the corresponding user variables listed in
159 the right column. Back-end specific properties may also be
160 included. See the back-end documentation for more information.
162 :author `user-full-name'
163 :creator `org-export-creator-string'
164 :email `user-mail-address'
165 :exclude-tags `org-export-exclude-tags'
166 :headline-levels `org-export-headline-levels'
167 :language `org-export-default-language'
168 :preserve-breaks `org-export-preserve-breaks'
169 :section-numbers `org-export-with-section-numbers'
170 :select-tags `org-export-select-tags'
171 :time-stamp-file `org-export-time-stamp-file'
172 :with-archived-trees `org-export-with-archived-trees'
173 :with-author `org-export-with-author'
174 :with-creator `org-export-with-creator'
175 :with-date `org-export-with-date'
176 :with-drawers `org-export-with-drawers'
177 :with-email `org-export-with-email'
178 :with-emphasize `org-export-with-emphasize'
179 :with-entities `org-export-with-entities'
180 :with-fixed-width `org-export-with-fixed-width'
181 :with-footnotes `org-export-with-footnotes'
182 :with-inlinetasks `org-export-with-inlinetasks'
183 :with-latex `org-export-with-latex'
184 :with-planning `org-export-with-planning'
185 :with-priority `org-export-with-priority'
186 :with-properties `org-export-with-properties'
187 :with-smart-quotes `org-export-with-smart-quotes'
188 :with-special-strings `org-export-with-special-strings'
189 :with-statistics-cookies' `org-export-with-statistics-cookies'
190 :with-sub-superscript `org-export-with-sub-superscripts'
191 :with-toc `org-export-with-toc'
192 :with-tables `org-export-with-tables'
193 :with-tags `org-export-with-tags'
194 :with-tasks `org-export-with-tasks'
195 :with-timestamps `org-export-with-timestamps'
196 :with-title `org-export-with-title'
197 :with-todo-keywords `org-export-with-todo-keywords'
199 The following properties may be used to control publishing of
200 a site-map of files or summary page for a given project.
202 `:auto-sitemap'
204 Whether to publish a site-map during
205 `org-publish-current-project' or `org-publish-all'.
207 `:sitemap-filename'
209 Filename for output of site-map. Defaults to \"sitemap.org\".
211 `:sitemap-title'
213 Title of site-map page. Defaults to name of file.
215 `:sitemap-style'
217 Can be `list' (site-map is just an itemized list of the
218 titles of the files involved) or `tree' (the directory
219 structure of the source files is reflected in the site-map).
220 Defaults to `tree'.
222 `:sitemap-format-entry'
224 Plugin function used to format entries in the site-map. It
225 is called with three arguments: the file or directory name
226 relative to base directory, the site map style and the
227 current project. It has to return a string.
229 Defaults to `org-publish-sitemap-default-entry', which turns
230 file names into links and use document titles as
231 descriptions. For specific formatting needs, one can use
232 `org-publish-find-date', `org-publish-find-title' and
233 `org-publish-find-property', to retrieve additional
234 information about published documents.
236 `:sitemap-function'
238 Plugin function to use for generation of site-map. It is
239 called with two arguments: the title of the site-map, as
240 a string, and a representation of the files involved in the
241 project, as returned by `org-list-to-lisp'. The latter can
242 further be transformed using `org-list-to-generic',
243 `org-list-to-subtree' and alike. It has to return a string.
245 Defaults to `org-publish-sitemap-default', which generates
246 a plain list of links to all files in the project.
248 If you create a site-map file, adjust the sorting like this:
250 `:sitemap-sort-folders'
252 Where folders should appear in the site-map. Set this to
253 `first' or `last' to display folders first or last,
254 respectively. When set to `ignore' (default), folders are
255 ignored altogether. Any other value will mix files and
256 folders. This variable has no effect when site-map style is
257 `tree'.
259 `:sitemap-sort-files'
261 The site map is normally sorted alphabetically. You can
262 change this behavior setting this to `anti-chronologically',
263 `chronologically', or nil.
265 `:sitemap-ignore-case'
267 Should sorting be case-sensitive? Default nil.
269 The following property control the creation of a concept index.
271 `:makeindex'
273 Create a concept index. The file containing the index has to
274 be called \"theindex.org\". If it doesn't exist in the
275 project, it will be generated. Contents of the index are
276 stored in the file \"theindex.inc\", which can be included in
277 \"theindex.org\".
279 Other properties affecting publication.
281 `:body-only'
283 Set this to t to publish only the body of the documents."
284 :group 'org-export-publish
285 :type 'alist)
287 (defcustom org-publish-use-timestamps-flag t
288 "Non-nil means use timestamp checking to publish only changed files.
289 When nil, do no timestamp checking and always publish all files."
290 :group 'org-export-publish
291 :type 'boolean)
293 (defcustom org-publish-timestamp-directory
294 (convert-standard-filename "~/.org-timestamps/")
295 "Name of directory in which to store publishing timestamps."
296 :group 'org-export-publish
297 :type 'directory)
299 (defcustom org-publish-list-skipped-files t
300 "Non-nil means show message about files *not* published."
301 :group 'org-export-publish
302 :type 'boolean)
304 (defcustom org-publish-sitemap-sort-files 'alphabetically
305 "Method to sort files in site-maps.
306 Possible values are `alphabetically', `chronologically',
307 `anti-chronologically' and nil.
309 If `alphabetically', files will be sorted alphabetically. If
310 `chronologically', files will be sorted with older modification
311 time first. If `anti-chronologically', files will be sorted with
312 newer modification time first. nil won't sort files.
314 You can overwrite this default per project in your
315 `org-publish-project-alist', using `:sitemap-sort-files'."
316 :group 'org-export-publish
317 :type 'symbol)
319 (defcustom org-publish-sitemap-sort-folders 'ignore
320 "A symbol, denoting if folders are sorted first in site-maps.
322 Possible values are `first', `last', `ignore' and nil.
323 If `first', folders will be sorted before files.
324 If `last', folders are sorted to the end after the files.
325 If `ignore', folders do not appear in the site-map.
326 Any other value will mix files and folders.
328 You can overwrite this default per project in your
329 `org-publish-project-alist', using `:sitemap-sort-folders'.
331 This variable is ignored when site-map style is `tree'."
332 :group 'org-export-publish
333 :type '(choice
334 (const :tag "Folders before files" first)
335 (const :tag "Folders after files" last)
336 (const :tag "No folder in site-map" ignore)
337 (const :tag "Mix folders and files" nil))
338 :version "26.1"
339 :package-version '(Org . "9.1")
340 :safe #'symbolp)
342 (defcustom org-publish-sitemap-sort-ignore-case nil
343 "Non-nil when site-map sorting should ignore case.
345 You can overwrite this default per project in your
346 `org-publish-project-alist', using `:sitemap-ignore-case'."
347 :group 'org-export-publish
348 :type 'boolean)
352 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
353 ;;; Timestamp-related functions
355 (defun org-publish-timestamp-filename (filename &optional pub-dir pub-func)
356 "Return path to timestamp file for filename FILENAME."
357 (setq filename (concat filename "::" (or pub-dir "") "::"
358 (format "%s" (or pub-func ""))))
359 (concat "X" (if (fboundp 'sha1) (sha1 filename) (md5 filename))))
361 (defun org-publish-needed-p
362 (filename &optional pub-dir pub-func _true-pub-dir base-dir)
363 "Non-nil if FILENAME should be published in PUB-DIR using PUB-FUNC.
364 TRUE-PUB-DIR is where the file will truly end up. Currently we
365 are not using this - maybe it can eventually be used to check if
366 the file is present at the target location, and how old it is.
367 Right now we cannot do this, because we do not know under what
368 file name the file will be stored - the publishing function can
369 still decide about that independently."
370 (let ((rtn (if (not org-publish-use-timestamps-flag) t
371 (org-publish-cache-file-needs-publishing
372 filename pub-dir pub-func base-dir))))
373 (if rtn (message "Publishing file %s using `%s'" filename pub-func)
374 (when org-publish-list-skipped-files
375 (message "Skipping unmodified file %s" filename)))
376 rtn))
378 (defun org-publish-update-timestamp
379 (filename &optional pub-dir pub-func _base-dir)
380 "Update publishing timestamp for file FILENAME.
381 If there is no timestamp, create one."
382 (let ((key (org-publish-timestamp-filename filename pub-dir pub-func))
383 (stamp (org-publish-cache-ctime-of-src filename)))
384 (org-publish-cache-set key stamp)))
386 (defun org-publish-remove-all-timestamps ()
387 "Remove all files in the timestamp directory."
388 (let ((dir org-publish-timestamp-directory))
389 (when (and (file-exists-p dir) (file-directory-p dir))
390 (mapc #'delete-file (directory-files dir 'full "[^.]\\'"))
391 (org-publish-reset-cache))))
395 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
396 ;;; Getting project information out of `org-publish-project-alist'
398 (defun org-publish-property (property project &optional default)
399 "Return value PROPERTY, as a symbol, in PROJECT.
400 DEFAULT is returned when PROPERTY is not actually set in PROJECT
401 definition."
402 (let ((properties (cdr project)))
403 (if (plist-member properties property)
404 (plist-get properties property)
405 default)))
407 (defun org-publish--expand-file-name (file project)
408 "Return full file name for FILE in PROJECT.
409 When FILE is a relative file name, it is expanded according to
410 project base directory. Always return the true name of the file,
411 ignoring symlinks."
412 (file-truename
413 (if (file-name-absolute-p file) file
414 (expand-file-name file (org-publish-property :base-directory project)))))
416 (defun org-publish-expand-projects (projects-alist)
417 "Expand projects in PROJECTS-ALIST.
418 This splices all the components into the list."
419 (let ((rest projects-alist) rtn p components)
420 (while (setq p (pop rest))
421 (if (setq components (plist-get (cdr p) :components))
422 (setq rest (append
423 (mapcar
424 (lambda (x)
425 (or (assoc x org-publish-project-alist)
426 (user-error "Unknown component %S in project %S"
427 x (car p))))
428 components)
429 rest))
430 (push p rtn)))
431 (nreverse (delete-dups (delq nil rtn)))))
433 (defun org-publish-get-base-files (project)
434 "Return a list of all files in PROJECT."
435 (let* ((base-dir (file-name-as-directory
436 (org-publish-property :base-directory project)))
437 (extension (or (org-publish-property :base-extension project) "org"))
438 (match (and (not (eq extension 'any))
439 (concat "^[^\\.].*\\.\\(" extension "\\)$")))
440 (base-files
441 (cl-remove-if #'file-directory-p
442 (if (org-publish-property :recursive project)
443 (directory-files-recursively base-dir match)
444 (directory-files base-dir t match t)))))
445 (org-uniquify
446 (append
447 ;; Files from BASE-DIR. Apply exclusion filter before adding
448 ;; included files.
449 (let ((exclude-regexp (org-publish-property :exclude project)))
450 (if exclude-regexp
451 (cl-remove-if
452 (lambda (f)
453 ;; Match against relative names, yet BASE-DIR file
454 ;; names are absolute.
455 (string-match exclude-regexp
456 (file-relative-name f base-dir)))
457 base-files)
458 base-files))
459 ;; Sitemap file.
460 (and (org-publish-property :auto-sitemap project)
461 (list (expand-file-name
462 (or (org-publish-property :sitemap-filename project)
463 "sitemap.org")
464 base-dir)))
465 ;; Included files.
466 (mapcar (lambda (f) (expand-file-name f base-dir))
467 (org-publish-property :include project))))))
469 (defun org-publish-get-project-from-filename (filename &optional up)
470 "Return a project that FILENAME belongs to.
471 When UP is non-nil, return a meta-project (i.e., with a :components part)
472 publishing FILENAME."
473 (let* ((filename (file-truename filename))
474 (project
475 (cl-some
476 (lambda (p)
477 ;; Ignore meta-projects.
478 (unless (org-publish-property :components p)
479 (let ((base (file-truename
480 (org-publish-property :base-directory p))))
481 (cond
482 ;; Check if FILENAME is explicitly included in one
483 ;; project.
484 ((cl-some (lambda (f) (file-equal-p f filename))
485 (mapcar (lambda (f) (expand-file-name f base))
486 (org-publish-property :include p)))
488 ;; Exclude file names matching :exclude property.
489 ((let ((exclude-re (org-publish-property :exclude p)))
490 (and exclude-re
491 (string-match-p exclude-re
492 (file-relative-name filename base))))
493 nil)
494 ;; Check :extension. Handle special `any'
495 ;; extension.
496 ((let ((extension (org-publish-property :base-extension p)))
497 (not (or (eq extension 'any)
498 (string= (or extension "org")
499 (file-name-extension filename)))))
500 nil)
501 ;; Check if FILENAME belong to project's base
502 ;; directory, or some of its sub-directories
503 ;; if :recursive in non-nil.
504 ((org-publish-property :recursive p)
505 (and (file-in-directory-p filename base) p))
506 ((file-equal-p base (file-name-directory filename)) p)
507 (t nil)))))
508 org-publish-project-alist)))
509 (cond
510 ((not project) nil)
511 ((not up) project)
512 ;; When optional argument UP is non-nil, return the top-most
513 ;; meta-project effectively publishing FILENAME.
515 (letrec ((find-parent-project
516 (lambda (project)
517 (or (cl-some
518 (lambda (p)
519 (and (member (car project)
520 (org-publish-property :components p))
521 (funcall find-parent-project p)))
522 org-publish-project-alist)
523 project))))
524 (funcall find-parent-project project))))))
528 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
529 ;;; Tools for publishing functions in back-ends
531 (defun org-publish-org-to (backend filename extension plist &optional pub-dir)
532 "Publish an Org file to a specified back-end.
534 BACKEND is a symbol representing the back-end used for
535 transcoding. FILENAME is the filename of the Org file to be
536 published. EXTENSION is the extension used for the output
537 string, with the leading dot. PLIST is the property list for the
538 given project.
540 Optional argument PUB-DIR, when non-nil is the publishing
541 directory.
543 Return output file name."
544 (unless (or (not pub-dir) (file-exists-p pub-dir)) (make-directory pub-dir t))
545 ;; Check if a buffer visiting FILENAME is already open.
546 (let* ((org-inhibit-startup t)
547 (visiting (find-buffer-visiting filename))
548 (work-buffer (or visiting (find-file-noselect filename))))
549 (unwind-protect
550 (with-current-buffer work-buffer
551 (let ((output (org-export-output-file-name extension nil pub-dir)))
552 (org-export-to-file backend output
553 nil nil nil (plist-get plist :body-only)
554 ;; Add `org-publish--store-crossrefs' and
555 ;; `org-publish-collect-index' to final output filters.
556 ;; The latter isn't dependent on `:makeindex', since we
557 ;; want to keep it up-to-date in cache anyway.
558 (org-combine-plists
559 plist
560 `(:crossrefs
561 ,(org-publish-cache-get-file-property
562 ;; Normalize file names in cache.
563 (file-truename filename) :crossrefs nil t)
564 :filter-final-output
565 (org-publish--store-crossrefs
566 org-publish-collect-index
567 ,@(plist-get plist :filter-final-output)))))))
568 ;; Remove opened buffer in the process.
569 (unless visiting (kill-buffer work-buffer)))))
571 (defun org-publish-attachment (_plist filename pub-dir)
572 "Publish a file with no transformation of any kind.
574 FILENAME is the filename of the Org file to be published. PLIST
575 is the property list for the given project. PUB-DIR is the
576 publishing directory.
578 Return output file name."
579 (unless (file-directory-p pub-dir)
580 (make-directory pub-dir t))
581 (let ((output (expand-file-name (file-name-nondirectory filename) pub-dir)))
582 (unless (file-equal-p (expand-file-name (file-name-directory filename))
583 (file-name-as-directory (expand-file-name pub-dir)))
584 (copy-file filename output t))
585 ;; Return file name.
586 output))
590 ;;; Publishing files, sets of files
592 (defun org-publish-file (filename &optional project no-cache)
593 "Publish file FILENAME from PROJECT.
594 If NO-CACHE is not nil, do not initialize `org-publish-cache'.
595 This is needed, since this function is used to publish single
596 files, when entire projects are published (see
597 `org-publish-projects')."
598 (let* ((project
599 (or project
600 (org-publish-get-project-from-filename filename)
601 (user-error "File %S is not part of any known project"
602 (abbreviate-file-name filename))))
603 (project-plist (cdr project))
604 (publishing-function
605 (pcase (org-publish-property :publishing-function project)
606 (`nil (user-error "No publishing function chosen"))
607 ((and f (pred listp)) f)
608 (f (list f))))
609 (base-dir
610 (file-name-as-directory
611 (or (org-publish-property :base-directory project)
612 (user-error "Project %S does not have :base-directory defined"
613 (car project)))))
614 (pub-base-dir
615 (file-name-as-directory
616 (or (org-publish-property :publishing-directory project)
617 (user-error
618 "Project %S does not have :publishing-directory defined"
619 (car project)))))
620 (pub-dir
621 (file-name-directory
622 (expand-file-name (file-relative-name filename base-dir)
623 pub-base-dir))))
625 (unless no-cache (org-publish-initialize-cache (car project)))
627 ;; Allow chain of publishing functions.
628 (dolist (f publishing-function)
629 (when (org-publish-needed-p filename pub-base-dir f pub-dir base-dir)
630 (let ((output (funcall f project-plist filename pub-dir)))
631 (org-publish-update-timestamp filename pub-base-dir f base-dir)
632 (run-hook-with-args 'org-publish-after-publishing-hook
633 filename
634 output))))
635 ;; Make sure to write cache to file after successfully publishing
636 ;; a file, so as to minimize impact of a publishing failure.
637 (org-publish-write-cache-file)))
639 (defun org-publish-projects (projects)
640 "Publish all files belonging to the PROJECTS alist.
641 If `:auto-sitemap' is set, publish the sitemap too. If
642 `:makeindex' is set, also produce a file \"theindex.org\"."
643 (dolist (project (org-publish-expand-projects projects))
644 (let ((plist (cdr project)))
645 (let ((fun (org-publish-property :preparation-function project)))
646 (cond
647 ((consp fun) (dolist (f fun) (funcall f plist)))
648 ((functionp fun) (funcall fun plist))))
649 ;; Each project uses its own cache file.
650 (org-publish-initialize-cache (car project))
651 (when (org-publish-property :auto-sitemap project)
652 (let ((sitemap-filename
653 (or (org-publish-property :sitemap-filename project)
654 "sitemap.org")))
655 (org-publish-sitemap project sitemap-filename)))
656 ;; Publish all files from PROJECT except "theindex.org". Its
657 ;; publishing will be deferred until "theindex.inc" is
658 ;; populated.
659 (let ((theindex
660 (expand-file-name "theindex.org"
661 (org-publish-property :base-directory project))))
662 (dolist (file (org-publish-get-base-files project))
663 (unless (file-equal-p file theindex)
664 (org-publish-file file project t)))
665 ;; Populate "theindex.inc", if needed, and publish
666 ;; "theindex.org".
667 (when (org-publish-property :makeindex project)
668 (org-publish-index-generate-theindex
669 project (org-publish-property :base-directory project))
670 (org-publish-file theindex project t)))
671 (let ((fun (org-publish-property :completion-function project)))
672 (cond
673 ((consp fun) (dolist (f fun) (funcall f plist)))
674 ((functionp fun) (funcall fun plist)))))
675 (org-publish-write-cache-file)))
678 ;;; Site map generation
680 (defun org-publish--sitemap-files-to-lisp (files project style format-entry)
681 "Represent FILES as a parsed plain list.
682 FILES is the list of files in the site map. PROJECT is the
683 current project. STYLE determines is either `list' or `tree'.
684 FORMAT-ENTRY is a function called on each file which should
685 return a string. Return value is a list as returned by
686 `org-list-to-lisp'."
687 (let ((root (expand-file-name
688 (file-name-as-directory
689 (org-publish-property :base-directory project)))))
690 (pcase style
691 (`list
692 (cons 'unordered
693 (mapcar
694 (lambda (f)
695 (list (funcall format-entry
696 (file-relative-name f root)
697 style
698 project)))
699 files)))
700 (`tree
701 (letrec ((files-only (cl-remove-if #'directory-name-p files))
702 (directories (cl-remove-if-not #'directory-name-p files))
703 (subtree-to-list
704 (lambda (dir)
705 (cons 'unordered
706 (nconc
707 ;; Files in DIR.
708 (mapcar
709 (lambda (f)
710 (list (funcall format-entry
711 (file-relative-name f root)
712 style
713 project)))
714 (cl-remove-if-not
715 (lambda (f) (string= dir (file-name-directory f)))
716 files-only))
717 ;; Direct sub-directories.
718 (mapcar
719 (lambda (sub)
720 (list (funcall format-entry
721 (file-relative-name sub root)
722 style
723 project)
724 (funcall subtree-to-list sub)))
725 (cl-remove-if-not
726 (lambda (f)
727 (string=
729 ;; Parent directory.
730 (file-name-directory (directory-file-name f))))
731 directories)))))))
732 (funcall subtree-to-list root)))
733 (_ (user-error "Unknown site-map style: `%s'" style)))))
735 (defun org-publish-sitemap (project &optional sitemap-filename)
736 "Create a sitemap of pages in set defined by PROJECT.
737 Optionally set the filename of the sitemap with SITEMAP-FILENAME.
738 Default for SITEMAP-FILENAME is `sitemap.org'."
739 (let* ((root (expand-file-name
740 (file-name-as-directory
741 (org-publish-property :base-directory project))))
742 (sitemap-filename (concat root (or sitemap-filename "sitemap.org")))
743 (title (or (org-publish-property :sitemap-title project)
744 (concat "Sitemap for project " (car project))))
745 (style (or (org-publish-property :sitemap-style project)
746 'tree))
747 (sitemap-builder (or (org-publish-property :sitemap-function project)
748 #'org-publish-sitemap-default))
749 (format-entry (or (org-publish-property :sitemap-format-entry project)
750 #'org-publish-sitemap-default-entry))
751 (sort-folders
752 (org-publish-property :sitemap-sort-folders project
753 org-publish-sitemap-sort-folders))
754 (sort-files
755 (org-publish-property :sitemap-sort-files project
756 org-publish-sitemap-sort-files))
757 (ignore-case
758 (org-publish-property :sitemap-ignore-case project
759 org-publish-sitemap-sort-ignore-case))
760 (org-file-p (lambda (f) (equal "org" (file-name-extension f))))
761 (sort-predicate
762 (lambda (a b)
763 (let ((retval t))
764 ;; First we sort files:
765 (pcase sort-files
766 (`alphabetically
767 (let ((A (if (funcall org-file-p a)
768 (concat (file-name-directory a)
769 (org-publish-find-title a project))
771 (B (if (funcall org-file-p b)
772 (concat (file-name-directory b)
773 (org-publish-find-title b project))
774 b)))
775 (setq retval
776 (if ignore-case
777 (not (string-lessp (upcase B) (upcase A)))
778 (not (string-lessp B A))))))
779 ((or `anti-chronologically `chronologically)
780 (let* ((adate (org-publish-find-date a project))
781 (bdate (org-publish-find-date b project))
782 (A (+ (lsh (car adate) 16) (cadr adate)))
783 (B (+ (lsh (car bdate) 16) (cadr bdate))))
784 (setq retval
785 (if (eq sort-files 'chronologically)
786 (<= A B)
787 (>= A B)))))
788 (`nil nil)
789 (_ (user-error "Invalid sort value %s" sort-files)))
790 ;; Directory-wise wins:
791 (when (memq sort-folders '(first last))
792 ;; a is directory, b not:
793 (cond
794 ((and (file-directory-p a) (not (file-directory-p b)))
795 (setq retval (eq sort-folders 'first)))
796 ;; a is not a directory, but b is:
797 ((and (not (file-directory-p a)) (file-directory-p b))
798 (setq retval (eq sort-folders 'last)))))
799 retval))))
800 (message "Generating sitemap for %s" title)
801 (with-temp-file sitemap-filename
802 (insert
803 (let ((files (remove sitemap-filename
804 (org-publish-get-base-files project))))
805 ;; Add directories, if applicable.
806 (unless (and (eq style 'list) (eq sort-folders 'ignore))
807 (setq files
808 (nconc (remove root (org-uniquify
809 (mapcar #'file-name-directory files)))
810 files)))
811 ;; Eventually sort all entries.
812 (when (or sort-files (not (memq sort-folders 'ignore)))
813 (setq files (sort files sort-predicate)))
814 (funcall sitemap-builder
815 title
816 (org-publish--sitemap-files-to-lisp
817 files project style format-entry)))))))
819 (defun org-publish-find-property (file property project &optional backend)
820 "Find the PROPERTY of FILE in project.
822 PROPERTY is a keyword referring to an export option, as defined
823 in `org-export-options-alist' or in export back-ends. In the
824 latter case, optional argument BACKEND has to be set to the
825 back-end where the option is defined, e.g.,
827 (org-publish-find-property file :subtitle 'latex)
829 Return value may be a string or a list, depending on the type of
830 PROPERTY, i.e. \"behavior\" parameter from `org-export-options-alist'."
831 (let ((file (org-publish--expand-file-name file project)))
832 (when (and (file-readable-p file) (not (directory-name-p file)))
833 (let* ((org-inhibit-startup t)
834 (visiting (find-buffer-visiting file))
835 (buffer (or visiting (find-file-noselect file))))
836 (unwind-protect
837 (plist-get (with-current-buffer buffer
838 (if (not visiting) (org-export-get-environment backend)
839 ;; Protect local variables in open buffers.
840 (org-export-with-buffer-copy
841 (org-export-get-environment backend))))
842 property)
843 (unless visiting (kill-buffer buffer)))))))
845 (defun org-publish-find-title (file project)
846 "Find the title of FILE in PROJECT."
847 (let ((file (org-publish--expand-file-name file project)))
848 (or (org-publish-cache-get-file-property file :title nil t)
849 (let* ((parsed-title (org-publish-find-property file :title project))
850 (title
851 (if parsed-title
852 ;; Remove property so that the return value is
853 ;; cache-able (i.e., it can be `read' back).
854 (org-no-properties
855 (org-element-interpret-data parsed-title))
856 (file-name-nondirectory (file-name-sans-extension file)))))
857 (org-publish-cache-set-file-property file :title title)
858 title))))
860 (defun org-publish-find-date (file project)
861 "Find the date of FILE in PROJECT.
862 This function assumes FILE is either a directory or an Org file.
863 If FILE is an Org file and provides a DATE keyword use it. In
864 any other case use the file system's modification time. Return
865 time in `current-time' format."
866 (let ((file (org-publish--expand-file-name file project)))
867 (if (file-directory-p file) (nth 5 (file-attributes file))
868 (let ((date (org-publish-find-property file :date project)))
869 ;; DATE is a secondary string. If it contains a time-stamp,
870 ;; convert it to internal format. Otherwise, use FILE
871 ;; modification time.
872 (cond ((let ((ts (and (consp date) (assq 'timestamp date))))
873 (and ts
874 (let ((value (org-element-interpret-data ts)))
875 (and (org-string-nw-p value)
876 (org-time-string-to-time value))))))
877 ((file-exists-p file) (nth 5 (file-attributes file)))
878 (t (error "No such file: \"%s\"" file)))))))
880 (defun org-publish-sitemap-default-entry (entry style project)
881 "Default format for site map ENTRY, as a string.
882 ENTRY is a file name. STYLE is the style of the sitemap.
883 PROJECT is the current project."
884 (cond ((not (directory-name-p entry))
885 (format "[[file:%s][%s]]"
886 entry
887 (org-publish-find-title entry project)))
888 ((eq style 'tree)
889 ;; Return only last subdir.
890 (file-name-nondirectory (directory-file-name entry)))
891 (t entry)))
893 (defun org-publish-sitemap-default (title list)
894 "Default site map, as a string.
895 TITLE is the the title of the site map. LIST is an internal
896 representation for the files to include, as returned by
897 `org-list-to-lisp'. PROJECT is the current project."
898 (concat "#+TITLE: " title "\n\n"
899 (org-list-to-org list)))
902 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
903 ;;; Interactive publishing functions
905 ;;;###autoload
906 (defalias 'org-publish-project 'org-publish)
908 ;;;###autoload
909 (defun org-publish (project &optional force async)
910 "Publish PROJECT.
912 PROJECT is either a project name, as a string, or a project
913 alist (see `org-publish-project-alist' variable).
915 When optional argument FORCE is non-nil, force publishing all
916 files in PROJECT. With a non-nil optional argument ASYNC,
917 publishing will be done asynchronously, in another process."
918 (interactive
919 (list (assoc (completing-read "Publish project: "
920 org-publish-project-alist nil t)
921 org-publish-project-alist)
922 current-prefix-arg))
923 (let ((project (if (not (stringp project)) project
924 ;; If this function is called in batch mode,
925 ;; PROJECT is still a string here.
926 (assoc project org-publish-project-alist))))
927 (cond
928 ((not project))
929 (async
930 (org-export-async-start (lambda (_) nil)
931 `(let ((org-publish-use-timestamps-flag
932 ,(and (not force) org-publish-use-timestamps-flag)))
933 ;; Expand components right now as external process may not
934 ;; be aware of complete `org-publish-project-alist'.
935 (org-publish-projects
936 ',(org-publish-expand-projects (list project))))))
937 (t (save-window-excursion
938 (let ((org-publish-use-timestamps-flag
939 (and (not force) org-publish-use-timestamps-flag)))
940 (org-publish-projects (list project))))))))
942 ;;;###autoload
943 (defun org-publish-all (&optional force async)
944 "Publish all projects.
945 With prefix argument FORCE, remove all files in the timestamp
946 directory and force publishing all projects. With a non-nil
947 optional argument ASYNC, publishing will be done asynchronously,
948 in another process."
949 (interactive "P")
950 (if async
951 (org-export-async-start (lambda (_) nil)
952 `(progn
953 (when ',force (org-publish-remove-all-timestamps))
954 (let ((org-publish-use-timestamps-flag
955 (if ',force nil ,org-publish-use-timestamps-flag)))
956 (org-publish-projects ',org-publish-project-alist))))
957 (when force (org-publish-remove-all-timestamps))
958 (save-window-excursion
959 (let ((org-publish-use-timestamps-flag
960 (if force nil org-publish-use-timestamps-flag)))
961 (org-publish-projects org-publish-project-alist)))))
964 ;;;###autoload
965 (defun org-publish-current-file (&optional force async)
966 "Publish the current file.
967 With prefix argument FORCE, force publish the file. When
968 optional argument ASYNC is non-nil, publishing will be done
969 asynchronously, in another process."
970 (interactive "P")
971 (let ((file (buffer-file-name (buffer-base-buffer))))
972 (if async
973 (org-export-async-start (lambda (_) nil)
974 `(let ((org-publish-use-timestamps-flag
975 (if ',force nil ,org-publish-use-timestamps-flag)))
976 (org-publish-file ,file)))
977 (save-window-excursion
978 (let ((org-publish-use-timestamps-flag
979 (if force nil org-publish-use-timestamps-flag)))
980 (org-publish-file file))))))
982 ;;;###autoload
983 (defun org-publish-current-project (&optional force async)
984 "Publish the project associated with the current file.
985 With a prefix argument, force publishing of all files in
986 the project."
987 (interactive "P")
988 (save-window-excursion
989 (let ((project (org-publish-get-project-from-filename
990 (buffer-file-name (buffer-base-buffer)) 'up)))
991 (if project (org-publish project force async)
992 (error "File %s is not part of any known project"
993 (buffer-file-name (buffer-base-buffer)))))))
997 ;;; Index generation
999 (defun org-publish-collect-index (output _backend info)
1000 "Update index for a file in cache.
1002 OUTPUT is the output from transcoding current file. BACKEND is
1003 the back-end that was used for transcoding. INFO is a plist
1004 containing publishing and export options.
1006 The index relative to current file is stored as an alist. An
1007 association has the following shape: (TERM FILE-NAME PARENT),
1008 where TERM is the indexed term, as a string, FILE-NAME is the
1009 original full path of the file where the term in encountered, and
1010 PARENT is a reference to the headline, if any, containing the
1011 original index keyword. When non-nil, this reference is a cons
1012 cell. Its CAR is a symbol among `id', `custom-id' and `name' and
1013 its CDR is a string."
1014 (let ((file (file-truename (plist-get info :input-file))))
1015 (org-publish-cache-set-file-property
1016 file :index
1017 (delete-dups
1018 (org-element-map (plist-get info :parse-tree) 'keyword
1019 (lambda (k)
1020 (when (equal (org-element-property :key k) "INDEX")
1021 (let ((parent (org-export-get-parent-headline k)))
1022 (list (org-element-property :value k)
1023 file
1024 (cond
1025 ((not parent) nil)
1026 ((let ((id (org-element-property :ID parent)))
1027 (and id (cons 'id id))))
1028 ((let ((id (org-element-property :CUSTOM_ID parent)))
1029 (and id (cons 'custom-id id))))
1030 (t (cons 'name
1031 ;; Remove statistics cookie.
1032 (replace-regexp-in-string
1033 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
1034 (org-element-property :raw-value parent)))))))))
1035 info))))
1036 ;; Return output unchanged.
1037 output)
1039 (defun org-publish-index-generate-theindex (project directory)
1040 "Retrieve full index from cache and build \"theindex.org\".
1041 PROJECT is the project the index relates to. DIRECTORY is the
1042 publishing directory."
1043 (let ((all-files (org-publish-get-base-files project))
1044 full-index)
1045 ;; Compile full index and sort it alphabetically.
1046 (dolist (file all-files
1047 (setq full-index
1048 (sort (nreverse full-index)
1049 (lambda (a b) (string< (downcase (car a))
1050 (downcase (car b)))))))
1051 (let ((index (org-publish-cache-get-file-property file :index)))
1052 (dolist (term index)
1053 (unless (member term full-index) (push term full-index)))))
1054 ;; Write "theindex.inc" in DIRECTORY.
1055 (with-temp-file (expand-file-name "theindex.inc" directory)
1056 (let ((current-letter nil) (last-entry nil))
1057 (dolist (idx full-index)
1058 (let* ((entry (org-split-string (car idx) "!"))
1059 (letter (upcase (substring (car entry) 0 1)))
1060 ;; Transform file into a path relative to publishing
1061 ;; directory.
1062 (file (file-relative-name
1063 (nth 1 idx)
1064 (plist-get (cdr project) :base-directory))))
1065 ;; Check if another letter has to be inserted.
1066 (unless (string= letter current-letter)
1067 (insert (format "* %s\n" letter)))
1068 ;; Compute the first difference between last entry and
1069 ;; current one: it tells the level at which new items
1070 ;; should be added.
1071 (let* ((rank
1072 (if (equal entry last-entry) (1- (length entry))
1073 (cl-loop for n from 0 to (length entry)
1074 unless (equal (nth n entry) (nth n last-entry))
1075 return n)))
1076 (len (length (nthcdr rank entry))))
1077 ;; For each term after the first difference, create
1078 ;; a new sub-list with the term as body. Moreover,
1079 ;; linkify the last term.
1080 (dotimes (n len)
1081 (insert
1082 (concat
1083 (make-string (* (+ rank n) 2) ?\s) " - "
1084 (if (not (= (1- len) n)) (nth (+ rank n) entry)
1085 ;; Last term: Link it to TARGET, if possible.
1086 (let ((target (nth 2 idx)))
1087 (format
1088 "[[%s][%s]]"
1089 ;; Destination.
1090 (pcase (car target)
1091 (`nil (format "file:%s" file))
1092 (`id (format "id:%s" (cdr target)))
1093 (`custom-id (format "file:%s::#%s" file (cdr target)))
1094 (_ (format "file:%s::*%s" file (cdr target))))
1095 ;; Description.
1096 (car (last entry)))))
1097 "\n"))))
1098 (setq current-letter letter last-entry entry))))
1099 ;; Create "theindex.org", if it doesn't exist yet, and provide
1100 ;; a default index file.
1101 (let ((index.org (expand-file-name "theindex.org" directory)))
1102 (unless (file-exists-p index.org)
1103 (with-temp-file index.org
1104 (insert "#+TITLE: Index\n\n#+INCLUDE: \"theindex.inc\"\n\n")))))))
1108 ;;; External Fuzzy Links Resolution
1110 ;; This part implements tools to resolve [[file.org::*Some headline]]
1111 ;; links, where "file.org" belongs to the current project.
1113 (defun org-publish--store-crossrefs (output _backend info)
1114 "Store cross-references for current published file.
1116 OUPUT is the produced output, as a string. BACKEND is the export
1117 back-end used, as a symbol. INFO is the final export state, as
1118 a plist.
1120 This function is meant to be used as a final output filter. See
1121 `org-publish-org-to'."
1122 (org-publish-cache-set-file-property
1123 (file-truename (plist-get info :input-file))
1124 :crossrefs
1125 ;; Update `:crossrefs' so as to remove unused references and search
1126 ;; cells. Actually used references are extracted from
1127 ;; `:internal-references', with references as strings removed. See
1128 ;; `org-export-get-reference' for details.
1129 (cl-remove-if (lambda (pair) (stringp (car pair)))
1130 (plist-get info :internal-references)))
1131 ;; Return output unchanged.
1132 output)
1134 (defun org-publish-resolve-external-link (search file)
1135 "Return reference for element matching string SEARCH in FILE.
1137 Return value is an internal reference, as a string.
1139 This function allows resolving external links with a search
1140 option, e.g.,
1142 [[file.org::*heading][description]]
1143 [[file.org::#custom-id][description]]
1144 [[file.org::fuzzy][description]]
1146 It only makes sense to use this if export back-end builds
1147 references with `org-export-get-reference'."
1148 (if (not org-publish-cache)
1149 (progn
1150 (message "Reference %S in file %S cannot be resolved without publishing"
1151 search
1152 file)
1153 "MissingReference")
1154 (let* ((filename (file-truename file))
1155 (crossrefs
1156 (org-publish-cache-get-file-property filename :crossrefs nil t))
1157 (cells (org-export-string-to-search-cell search)))
1159 ;; Look for reference associated to search cells triggered by
1160 ;; LINK. It can match when targeted file has been published
1161 ;; already.
1162 (let ((known (cdr (cl-some (lambda (c) (assoc c crossrefs)) cells))))
1163 (and known (org-export-format-reference known)))
1164 ;; Search cell is unknown so far. Generate a new internal
1165 ;; reference that will be used when the targeted file will be
1166 ;; published.
1167 (let ((new (org-export-new-reference crossrefs)))
1168 (dolist (cell cells) (push (cons cell new) crossrefs))
1169 (org-publish-cache-set-file-property filename :crossrefs crossrefs)
1170 (org-export-format-reference new))))))
1174 ;;; Caching functions
1176 (defun org-publish-write-cache-file (&optional free-cache)
1177 "Write `org-publish-cache' to file.
1178 If FREE-CACHE, empty the cache."
1179 (unless org-publish-cache
1180 (error "`org-publish-write-cache-file' called, but no cache present"))
1182 (let ((cache-file (org-publish-cache-get ":cache-file:")))
1183 (unless cache-file
1184 (error "Cannot find cache-file name in `org-publish-write-cache-file'"))
1185 (with-temp-file cache-file
1186 (let (print-level print-length)
1187 (insert "(setq org-publish-cache \
1188 \(make-hash-table :test 'equal :weakness nil :size 100))\n")
1189 (maphash (lambda (k v)
1190 (insert
1191 (format "(puthash %S %s%S org-publish-cache)\n"
1192 k (if (or (listp v) (symbolp v)) "'" "") v)))
1193 org-publish-cache)))
1194 (when free-cache (org-publish-reset-cache))))
1196 (defun org-publish-initialize-cache (project-name)
1197 "Initialize the projects cache if not initialized yet and return it."
1199 (unless project-name
1200 (error "Cannot initialize `org-publish-cache' without projects name in \
1201 `org-publish-initialize-cache'"))
1203 (unless (file-exists-p org-publish-timestamp-directory)
1204 (make-directory org-publish-timestamp-directory t))
1205 (unless (file-directory-p org-publish-timestamp-directory)
1206 (error "Org publish timestamp: %s is not a directory"
1207 org-publish-timestamp-directory))
1209 (unless (and org-publish-cache
1210 (string= (org-publish-cache-get ":project:") project-name))
1211 (let* ((cache-file
1212 (concat
1213 (expand-file-name org-publish-timestamp-directory)
1214 project-name ".cache"))
1215 (cexists (file-exists-p cache-file)))
1217 (when org-publish-cache (org-publish-reset-cache))
1219 (if cexists (load-file cache-file)
1220 (setq org-publish-cache
1221 (make-hash-table :test 'equal :weakness nil :size 100))
1222 (org-publish-cache-set ":project:" project-name)
1223 (org-publish-cache-set ":cache-file:" cache-file))
1224 (unless cexists (org-publish-write-cache-file nil))))
1225 org-publish-cache)
1227 (defun org-publish-reset-cache ()
1228 "Empty org-publish-cache and reset it nil."
1229 (message "%s" "Resetting org-publish-cache")
1230 (when (hash-table-p org-publish-cache)
1231 (clrhash org-publish-cache))
1232 (setq org-publish-cache nil))
1234 (defun org-publish-cache-file-needs-publishing
1235 (filename &optional pub-dir pub-func _base-dir)
1236 "Check the timestamp of the last publishing of FILENAME.
1237 Return non-nil if the file needs publishing. Also check if
1238 any included files have been more recently published, so that
1239 the file including them will be republished as well."
1240 (unless org-publish-cache
1241 (error
1242 "`org-publish-cache-file-needs-publishing' called, but no cache present"))
1243 (let* ((key (org-publish-timestamp-filename filename pub-dir pub-func))
1244 (pstamp (org-publish-cache-get key))
1245 (org-inhibit-startup t)
1246 included-files-ctime)
1247 (when (equal (file-name-extension filename) "org")
1248 (let ((visiting (find-buffer-visiting filename))
1249 (buf (find-file-noselect filename))
1250 (case-fold-search t))
1251 (unwind-protect
1252 (with-current-buffer buf
1253 (goto-char (point-min))
1254 (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t)
1255 (let* ((element (org-element-at-point))
1256 (included-file
1257 (and (eq (org-element-type element) 'keyword)
1258 (let ((value (org-element-property :value element)))
1259 (and value
1260 (string-match
1261 "\\`\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)"
1262 value)
1263 (let ((m (match-string 1 value)))
1264 (org-unbracket-string
1265 "\"" "\""
1266 ;; Ignore search suffix.
1267 (if (string-match "::.*?\"?\\'" m)
1268 (substring m 0 (match-beginning 0))
1269 m))))))))
1270 (when included-file
1271 (push (org-publish-cache-ctime-of-src
1272 (expand-file-name included-file))
1273 included-files-ctime)))))
1274 (unless visiting (kill-buffer buf)))))
1275 (or (null pstamp)
1276 (let ((ctime (org-publish-cache-ctime-of-src filename)))
1277 (or (< pstamp ctime)
1278 (cl-some (lambda (ct) (< ctime ct)) included-files-ctime))))))
1280 (defun org-publish-cache-set-file-property
1281 (filename property value &optional project-name)
1282 "Set the VALUE for a PROPERTY of file FILENAME in publishing cache to VALUE.
1283 Use cache file of PROJECT-NAME. If the entry does not exist, it
1284 will be created. Return VALUE."
1285 ;; Evtl. load the requested cache file:
1286 (if project-name (org-publish-initialize-cache project-name))
1287 (let ((pl (org-publish-cache-get filename)))
1288 (if pl (progn (plist-put pl property value) value)
1289 (org-publish-cache-get-file-property
1290 filename property value nil project-name))))
1292 (defun org-publish-cache-get-file-property
1293 (filename property &optional default no-create project-name)
1294 "Return the value for a PROPERTY of file FILENAME in publishing cache.
1295 Use cache file of PROJECT-NAME. Return the value of that PROPERTY,
1296 or DEFAULT, if the value does not yet exist. Create the entry,
1297 if necessary, unless NO-CREATE is non-nil."
1298 (when project-name (org-publish-initialize-cache project-name))
1299 (let ((properties (org-publish-cache-get filename)))
1300 (cond ((null properties)
1301 (unless no-create
1302 (org-publish-cache-set filename (list property default)))
1303 default)
1304 ((plist-member properties property) (plist-get properties property))
1305 (t default))))
1307 (defun org-publish-cache-get (key)
1308 "Return the value stored in `org-publish-cache' for key KEY.
1309 Return nil, if no value or nil is found. Raise an error if the
1310 cache does not exist."
1311 (unless org-publish-cache
1312 (error "`org-publish-cache-get' called, but no cache present"))
1313 (gethash key org-publish-cache))
1315 (defun org-publish-cache-set (key value)
1316 "Store KEY VALUE pair in `org-publish-cache'.
1317 Returns value on success, else nil. Raise an error if the cache
1318 does not exist."
1319 (unless org-publish-cache
1320 (error "`org-publish-cache-set' called, but no cache present"))
1321 (puthash key value org-publish-cache))
1323 (defun org-publish-cache-ctime-of-src (file)
1324 "Get the ctime of FILE as an integer."
1325 (let ((attr (file-attributes
1326 (expand-file-name (or (file-symlink-p file) file)
1327 (file-name-directory file)))))
1328 (if (not attr) (error "No such file: \"%s\"" file)
1329 (+ (lsh (car (nth 5 attr)) 16)
1330 (cadr (nth 5 attr))))))
1333 (provide 'ox-publish)
1335 ;; Local variables:
1336 ;; generated-autoload-file: "org-loaddefs.el"
1337 ;; End:
1339 ;;; ox-publish.el ends here