Add isearch-yank-symbol-or-char
[emacs.git] / lisp / org / ox-publish.el
blob5deb7c54e71c3a51c5cba3e3fd18d6c05ce083ab
1 ;;; ox-publish.el --- Publish Related Org Mode Files as a Website -*- lexical-binding: t; -*-
2 ;; Copyright (C) 2006-2018 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 <https://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-export-publish nil
61 "Options for publishing a set of files."
62 :tag "Org Publishing"
63 :group 'org-export)
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 ;;; Timestamp-related functions
354 (defun org-publish-timestamp-filename (filename &optional pub-dir pub-func)
355 "Return path to timestamp file for filename FILENAME."
356 (setq filename (concat filename "::" (or pub-dir "") "::"
357 (format "%s" (or pub-func ""))))
358 (concat "X" (if (fboundp 'sha1) (sha1 filename) (md5 filename))))
360 (defun org-publish-needed-p
361 (filename &optional pub-dir pub-func _true-pub-dir base-dir)
362 "Non-nil if FILENAME should be published in PUB-DIR using PUB-FUNC.
363 TRUE-PUB-DIR is where the file will truly end up. Currently we
364 are not using this - maybe it can eventually be used to check if
365 the file is present at the target location, and how old it is.
366 Right now we cannot do this, because we do not know under what
367 file name the file will be stored - the publishing function can
368 still decide about that independently."
369 (let ((rtn (if (not org-publish-use-timestamps-flag) t
370 (org-publish-cache-file-needs-publishing
371 filename pub-dir pub-func base-dir))))
372 (if rtn (message "Publishing file %s using `%s'" filename pub-func)
373 (when org-publish-list-skipped-files
374 (message "Skipping unmodified file %s" filename)))
375 rtn))
377 (defun org-publish-update-timestamp
378 (filename &optional pub-dir pub-func _base-dir)
379 "Update publishing timestamp for file FILENAME.
380 If there is no timestamp, create one."
381 (let ((key (org-publish-timestamp-filename filename pub-dir pub-func))
382 (stamp (org-publish-cache-ctime-of-src filename)))
383 (org-publish-cache-set key stamp)))
385 (defun org-publish-remove-all-timestamps ()
386 "Remove all files in the timestamp directory."
387 (let ((dir org-publish-timestamp-directory))
388 (when (and (file-exists-p dir) (file-directory-p dir))
389 (mapc #'delete-file (directory-files dir 'full "[^.]\\'"))
390 (org-publish-reset-cache))))
394 ;;; Getting project information out of `org-publish-project-alist'
396 (defun org-publish-property (property project &optional default)
397 "Return value PROPERTY, as a symbol, in PROJECT.
398 DEFAULT is returned when PROPERTY is not actually set in PROJECT
399 definition."
400 (let ((properties (cdr project)))
401 (if (plist-member properties property)
402 (plist-get properties property)
403 default)))
405 (defun org-publish--expand-file-name (file project)
406 "Return full file name for FILE in PROJECT.
407 When FILE is a relative file name, it is expanded according to
408 project base directory. Always return the true name of the file,
409 ignoring symlinks."
410 (file-truename
411 (if (file-name-absolute-p file) file
412 (expand-file-name file (org-publish-property :base-directory project)))))
414 (defun org-publish-expand-projects (projects-alist)
415 "Expand projects in PROJECTS-ALIST.
416 This splices all the components into the list."
417 (let ((rest projects-alist) rtn p components)
418 (while (setq p (pop rest))
419 (if (setq components (plist-get (cdr p) :components))
420 (setq rest (append
421 (mapcar
422 (lambda (x)
423 (or (assoc x org-publish-project-alist)
424 (user-error "Unknown component %S in project %S"
425 x (car p))))
426 components)
427 rest))
428 (push p rtn)))
429 (nreverse (delete-dups (delq nil rtn)))))
431 (defun org-publish-get-base-files (project)
432 "Return a list of all files in PROJECT."
433 (let* ((base-dir (file-name-as-directory
434 (org-publish-property :base-directory project)))
435 (extension (or (org-publish-property :base-extension project) "org"))
436 (match (if (eq extension 'any) ""
437 (format "^[^\\.].*\\.\\(%s\\)$" extension)))
438 (base-files
439 (cl-remove-if #'file-directory-p
440 (if (org-publish-property :recursive project)
441 (directory-files-recursively base-dir match)
442 (directory-files base-dir t match t)))))
443 (org-uniquify
444 (append
445 ;; Files from BASE-DIR. Apply exclusion filter before adding
446 ;; included files.
447 (let ((exclude-regexp (org-publish-property :exclude project)))
448 (if exclude-regexp
449 (cl-remove-if
450 (lambda (f)
451 ;; Match against relative names, yet BASE-DIR file
452 ;; names are absolute.
453 (string-match exclude-regexp
454 (file-relative-name f base-dir)))
455 base-files)
456 base-files))
457 ;; Sitemap file.
458 (and (org-publish-property :auto-sitemap project)
459 (list (expand-file-name
460 (or (org-publish-property :sitemap-filename project)
461 "sitemap.org")
462 base-dir)))
463 ;; Included files.
464 (mapcar (lambda (f) (expand-file-name f base-dir))
465 (org-publish-property :include project))))))
467 (defun org-publish-get-project-from-filename (filename &optional up)
468 "Return a project that FILENAME belongs to.
469 When UP is non-nil, return a meta-project (i.e., with a :components part)
470 publishing FILENAME."
471 (let* ((filename (file-truename filename))
472 (project
473 (cl-some
474 (lambda (p)
475 ;; Ignore meta-projects.
476 (unless (org-publish-property :components p)
477 (let ((base (file-truename
478 (org-publish-property :base-directory p))))
479 (cond
480 ;; Check if FILENAME is explicitly included in one
481 ;; project.
482 ((cl-some (lambda (f) (file-equal-p f filename))
483 (mapcar (lambda (f) (expand-file-name f base))
484 (org-publish-property :include p)))
486 ;; Exclude file names matching :exclude property.
487 ((let ((exclude-re (org-publish-property :exclude p)))
488 (and exclude-re
489 (string-match-p exclude-re
490 (file-relative-name filename base))))
491 nil)
492 ;; Check :extension. Handle special `any'
493 ;; extension.
494 ((let ((extension (org-publish-property :base-extension p)))
495 (not (or (eq extension 'any)
496 (string= (or extension "org")
497 (file-name-extension filename)))))
498 nil)
499 ;; Check if FILENAME belong to project's base
500 ;; directory, or some of its sub-directories
501 ;; if :recursive in non-nil.
502 ((org-publish-property :recursive p)
503 (and (file-in-directory-p filename base) p))
504 ((file-equal-p base (file-name-directory filename)) p)
505 (t nil)))))
506 org-publish-project-alist)))
507 (cond
508 ((not project) nil)
509 ((not up) project)
510 ;; When optional argument UP is non-nil, return the top-most
511 ;; meta-project effectively publishing FILENAME.
513 (letrec ((find-parent-project
514 (lambda (project)
515 (or (cl-some
516 (lambda (p)
517 (and (member (car project)
518 (org-publish-property :components p))
519 (funcall find-parent-project p)))
520 org-publish-project-alist)
521 project))))
522 (funcall find-parent-project project))))))
526 ;;; Tools for publishing functions in back-ends
528 (defun org-publish-org-to (backend filename extension plist &optional pub-dir)
529 "Publish an Org file to a specified back-end.
531 BACKEND is a symbol representing the back-end used for
532 transcoding. FILENAME is the filename of the Org file to be
533 published. EXTENSION is the extension used for the output
534 string, with the leading dot. PLIST is the property list for the
535 given project.
537 Optional argument PUB-DIR, when non-nil is the publishing
538 directory.
540 Return output file name."
541 (unless (or (not pub-dir) (file-exists-p pub-dir)) (make-directory pub-dir t))
542 ;; Check if a buffer visiting FILENAME is already open.
543 (let* ((org-inhibit-startup t)
544 (visiting (find-buffer-visiting filename))
545 (work-buffer (or visiting (find-file-noselect filename))))
546 (unwind-protect
547 (with-current-buffer work-buffer
548 (let ((output (org-export-output-file-name extension nil pub-dir)))
549 (org-export-to-file backend output
550 nil nil nil (plist-get plist :body-only)
551 ;; Add `org-publish--store-crossrefs' and
552 ;; `org-publish-collect-index' to final output filters.
553 ;; The latter isn't dependent on `:makeindex', since we
554 ;; want to keep it up-to-date in cache anyway.
555 (org-combine-plists
556 plist
557 `(:crossrefs
558 ,(org-publish-cache-get-file-property
559 ;; Normalize file names in cache.
560 (file-truename filename) :crossrefs nil t)
561 :filter-final-output
562 (org-publish--store-crossrefs
563 org-publish-collect-index
564 ,@(plist-get plist :filter-final-output)))))))
565 ;; Remove opened buffer in the process.
566 (unless visiting (kill-buffer work-buffer)))))
568 (defun org-publish-attachment (_plist filename pub-dir)
569 "Publish a file with no transformation of any kind.
571 FILENAME is the filename of the Org file to be published. PLIST
572 is the property list for the given project. PUB-DIR is the
573 publishing directory.
575 Return output file name."
576 (unless (file-directory-p pub-dir)
577 (make-directory pub-dir t))
578 (let ((output (expand-file-name (file-name-nondirectory filename) pub-dir)))
579 (unless (file-equal-p (expand-file-name (file-name-directory filename))
580 (file-name-as-directory (expand-file-name pub-dir)))
581 (copy-file filename output t))
582 ;; Return file name.
583 output))
587 ;;; Publishing files, sets of files
589 (defun org-publish-file (filename &optional project no-cache)
590 "Publish file FILENAME from PROJECT.
591 If NO-CACHE is not nil, do not initialize `org-publish-cache'.
592 This is needed, since this function is used to publish single
593 files, when entire projects are published (see
594 `org-publish-projects')."
595 (let* ((project
596 (or project
597 (org-publish-get-project-from-filename filename)
598 (user-error "File %S is not part of any known project"
599 (abbreviate-file-name filename))))
600 (project-plist (cdr project))
601 (publishing-function
602 (pcase (org-publish-property :publishing-function project)
603 (`nil (user-error "No publishing function chosen"))
604 ((and f (pred listp)) f)
605 (f (list f))))
606 (base-dir
607 (file-name-as-directory
608 (or (org-publish-property :base-directory project)
609 (user-error "Project %S does not have :base-directory defined"
610 (car project)))))
611 (pub-base-dir
612 (file-name-as-directory
613 (or (org-publish-property :publishing-directory project)
614 (user-error
615 "Project %S does not have :publishing-directory defined"
616 (car project)))))
617 (pub-dir
618 (file-name-directory
619 (expand-file-name (file-relative-name filename base-dir)
620 pub-base-dir))))
622 (unless no-cache (org-publish-initialize-cache (car project)))
624 ;; Allow chain of publishing functions.
625 (dolist (f publishing-function)
626 (when (org-publish-needed-p filename pub-base-dir f pub-dir base-dir)
627 (let ((output (funcall f project-plist filename pub-dir)))
628 (org-publish-update-timestamp filename pub-base-dir f base-dir)
629 (run-hook-with-args 'org-publish-after-publishing-hook
630 filename
631 output))))
632 ;; Make sure to write cache to file after successfully publishing
633 ;; a file, so as to minimize impact of a publishing failure.
634 (org-publish-write-cache-file)))
636 (defun org-publish-projects (projects)
637 "Publish all files belonging to the PROJECTS alist.
638 If `:auto-sitemap' is set, publish the sitemap too. If
639 `:makeindex' is set, also produce a file \"theindex.org\"."
640 (dolist (project (org-publish-expand-projects projects))
641 (let ((plist (cdr project)))
642 (let ((fun (org-publish-property :preparation-function project)))
643 (cond
644 ((consp fun) (dolist (f fun) (funcall f plist)))
645 ((functionp fun) (funcall fun plist))))
646 ;; Each project uses its own cache file.
647 (org-publish-initialize-cache (car project))
648 (when (org-publish-property :auto-sitemap project)
649 (let ((sitemap-filename
650 (or (org-publish-property :sitemap-filename project)
651 "sitemap.org")))
652 (org-publish-sitemap project sitemap-filename)))
653 ;; Publish all files from PROJECT except "theindex.org". Its
654 ;; publishing will be deferred until "theindex.inc" is
655 ;; populated.
656 (let ((theindex
657 (expand-file-name "theindex.org"
658 (org-publish-property :base-directory project))))
659 (dolist (file (org-publish-get-base-files project))
660 (unless (file-equal-p file theindex)
661 (org-publish-file file project t)))
662 ;; Populate "theindex.inc", if needed, and publish
663 ;; "theindex.org".
664 (when (org-publish-property :makeindex project)
665 (org-publish-index-generate-theindex
666 project (org-publish-property :base-directory project))
667 (org-publish-file theindex project t)))
668 (let ((fun (org-publish-property :completion-function project)))
669 (cond
670 ((consp fun) (dolist (f fun) (funcall f plist)))
671 ((functionp fun) (funcall fun plist)))))
672 (org-publish-write-cache-file)))
675 ;;; Site map generation
677 (defun org-publish--sitemap-files-to-lisp (files project style format-entry)
678 "Represent FILES as a parsed plain list.
679 FILES is the list of files in the site map. PROJECT is the
680 current project. STYLE determines is either `list' or `tree'.
681 FORMAT-ENTRY is a function called on each file which should
682 return a string. Return value is a list as returned by
683 `org-list-to-lisp'."
684 (let ((root (expand-file-name
685 (file-name-as-directory
686 (org-publish-property :base-directory project)))))
687 (pcase style
688 (`list
689 (cons 'unordered
690 (mapcar
691 (lambda (f)
692 (list (funcall format-entry
693 (file-relative-name f root)
694 style
695 project)))
696 files)))
697 (`tree
698 (letrec ((files-only (cl-remove-if #'directory-name-p files))
699 (directories (cl-remove-if-not #'directory-name-p files))
700 (subtree-to-list
701 (lambda (dir)
702 (cons 'unordered
703 (nconc
704 ;; Files in DIR.
705 (mapcar
706 (lambda (f)
707 (list (funcall format-entry
708 (file-relative-name f root)
709 style
710 project)))
711 (cl-remove-if-not
712 (lambda (f) (string= dir (file-name-directory f)))
713 files-only))
714 ;; Direct sub-directories.
715 (mapcar
716 (lambda (sub)
717 (list (funcall format-entry
718 (file-relative-name sub root)
719 style
720 project)
721 (funcall subtree-to-list sub)))
722 (cl-remove-if-not
723 (lambda (f)
724 (string=
726 ;; Parent directory.
727 (file-name-directory (directory-file-name f))))
728 directories)))))))
729 (funcall subtree-to-list root)))
730 (_ (user-error "Unknown site-map style: `%s'" style)))))
732 (defun org-publish-sitemap (project &optional sitemap-filename)
733 "Create a sitemap of pages in set defined by PROJECT.
734 Optionally set the filename of the sitemap with SITEMAP-FILENAME.
735 Default for SITEMAP-FILENAME is `sitemap.org'."
736 (let* ((root (expand-file-name
737 (file-name-as-directory
738 (org-publish-property :base-directory project))))
739 (sitemap-filename (concat root (or sitemap-filename "sitemap.org")))
740 (title (or (org-publish-property :sitemap-title project)
741 (concat "Sitemap for project " (car project))))
742 (style (or (org-publish-property :sitemap-style project)
743 'tree))
744 (sitemap-builder (or (org-publish-property :sitemap-function project)
745 #'org-publish-sitemap-default))
746 (format-entry (or (org-publish-property :sitemap-format-entry project)
747 #'org-publish-sitemap-default-entry))
748 (sort-folders
749 (org-publish-property :sitemap-sort-folders project
750 org-publish-sitemap-sort-folders))
751 (sort-files
752 (org-publish-property :sitemap-sort-files project
753 org-publish-sitemap-sort-files))
754 (ignore-case
755 (org-publish-property :sitemap-ignore-case project
756 org-publish-sitemap-sort-ignore-case))
757 (org-file-p (lambda (f) (equal "org" (file-name-extension f))))
758 (sort-predicate
759 (lambda (a b)
760 (let ((retval t))
761 ;; First we sort files:
762 (pcase sort-files
763 (`alphabetically
764 (let ((A (if (funcall org-file-p a)
765 (concat (file-name-directory a)
766 (org-publish-find-title a project))
768 (B (if (funcall org-file-p b)
769 (concat (file-name-directory b)
770 (org-publish-find-title b project))
771 b)))
772 (setq retval
773 (if ignore-case
774 (not (string-lessp (upcase B) (upcase A)))
775 (not (string-lessp B A))))))
776 ((or `anti-chronologically `chronologically)
777 (let* ((adate (org-publish-find-date a project))
778 (bdate (org-publish-find-date b project))
779 (A (+ (lsh (car adate) 16) (cadr adate)))
780 (B (+ (lsh (car bdate) 16) (cadr bdate))))
781 (setq retval
782 (if (eq sort-files 'chronologically)
783 (<= A B)
784 (>= A B)))))
785 (`nil nil)
786 (_ (user-error "Invalid sort value %s" sort-files)))
787 ;; Directory-wise wins:
788 (when (memq sort-folders '(first last))
789 ;; a is directory, b not:
790 (cond
791 ((and (file-directory-p a) (not (file-directory-p b)))
792 (setq retval (eq sort-folders 'first)))
793 ;; a is not a directory, but b is:
794 ((and (not (file-directory-p a)) (file-directory-p b))
795 (setq retval (eq sort-folders 'last)))))
796 retval))))
797 (message "Generating sitemap for %s" title)
798 (with-temp-file sitemap-filename
799 (insert
800 (let ((files (remove sitemap-filename
801 (org-publish-get-base-files project))))
802 ;; Add directories, if applicable.
803 (unless (and (eq style 'list) (eq sort-folders 'ignore))
804 (setq files
805 (nconc (remove root (org-uniquify
806 (mapcar #'file-name-directory files)))
807 files)))
808 ;; Eventually sort all entries.
809 (when (or sort-files (not (memq sort-folders 'ignore)))
810 (setq files (sort files sort-predicate)))
811 (funcall sitemap-builder
812 title
813 (org-publish--sitemap-files-to-lisp
814 files project style format-entry)))))))
816 (defun org-publish-find-property (file property project &optional backend)
817 "Find the PROPERTY of FILE in project.
819 PROPERTY is a keyword referring to an export option, as defined
820 in `org-export-options-alist' or in export back-ends. In the
821 latter case, optional argument BACKEND has to be set to the
822 back-end where the option is defined, e.g.,
824 (org-publish-find-property file :subtitle 'latex)
826 Return value may be a string or a list, depending on the type of
827 PROPERTY, i.e. \"behavior\" parameter from `org-export-options-alist'."
828 (let ((file (org-publish--expand-file-name file project)))
829 (when (and (file-readable-p file) (not (directory-name-p file)))
830 (let* ((org-inhibit-startup t)
831 (visiting (find-buffer-visiting file))
832 (buffer (or visiting (find-file-noselect file))))
833 (unwind-protect
834 (plist-get (with-current-buffer buffer
835 (if (not visiting) (org-export-get-environment backend)
836 ;; Protect local variables in open buffers.
837 (org-export-with-buffer-copy
838 (org-export-get-environment backend))))
839 property)
840 (unless visiting (kill-buffer buffer)))))))
842 (defun org-publish-find-title (file project)
843 "Find the title of FILE in PROJECT."
844 (let ((file (org-publish--expand-file-name file project)))
845 (or (org-publish-cache-get-file-property file :title nil t)
846 (let* ((parsed-title (org-publish-find-property file :title project))
847 (title
848 (if parsed-title
849 ;; Remove property so that the return value is
850 ;; cache-able (i.e., it can be `read' back).
851 (org-no-properties
852 (org-element-interpret-data parsed-title))
853 (file-name-nondirectory (file-name-sans-extension file)))))
854 (org-publish-cache-set-file-property file :title title)
855 title))))
857 (defun org-publish-find-date (file project)
858 "Find the date of FILE in PROJECT.
859 This function assumes FILE is either a directory or an Org file.
860 If FILE is an Org file and provides a DATE keyword use it. In
861 any other case use the file system's modification time. Return
862 time in `current-time' format."
863 (let ((file (org-publish--expand-file-name file project)))
864 (if (file-directory-p file) (nth 5 (file-attributes file))
865 (let ((date (org-publish-find-property file :date project)))
866 ;; DATE is a secondary string. If it contains a time-stamp,
867 ;; convert it to internal format. Otherwise, use FILE
868 ;; modification time.
869 (cond ((let ((ts (and (consp date) (assq 'timestamp date))))
870 (and ts
871 (let ((value (org-element-interpret-data ts)))
872 (and (org-string-nw-p value)
873 (org-time-string-to-time value))))))
874 ((file-exists-p file) (nth 5 (file-attributes file)))
875 (t (error "No such file: \"%s\"" file)))))))
877 (defun org-publish-sitemap-default-entry (entry style project)
878 "Default format for site map ENTRY, as a string.
879 ENTRY is a file name. STYLE is the style of the sitemap.
880 PROJECT is the current project."
881 (cond ((not (directory-name-p entry))
882 (format "[[file:%s][%s]]"
883 entry
884 (org-publish-find-title entry project)))
885 ((eq style 'tree)
886 ;; Return only last subdir.
887 (file-name-nondirectory (directory-file-name entry)))
888 (t entry)))
890 (defun org-publish-sitemap-default (title list)
891 "Default site map, as a string.
892 TITLE is the the title of the site map. LIST is an internal
893 representation for the files to include, as returned by
894 `org-list-to-lisp'. PROJECT is the current project."
895 (concat "#+TITLE: " title "\n\n"
896 (org-list-to-org list)))
899 ;;; Interactive publishing functions
901 ;;;###autoload
902 (defalias 'org-publish-project 'org-publish)
904 ;;;###autoload
905 (defun org-publish (project &optional force async)
906 "Publish PROJECT.
908 PROJECT is either a project name, as a string, or a project
909 alist (see `org-publish-project-alist' variable).
911 When optional argument FORCE is non-nil, force publishing all
912 files in PROJECT. With a non-nil optional argument ASYNC,
913 publishing will be done asynchronously, in another process."
914 (interactive
915 (list (assoc (completing-read "Publish project: "
916 org-publish-project-alist nil t)
917 org-publish-project-alist)
918 current-prefix-arg))
919 (let ((project (if (not (stringp project)) project
920 ;; If this function is called in batch mode,
921 ;; PROJECT is still a string here.
922 (assoc project org-publish-project-alist))))
923 (cond
924 ((not project))
925 (async
926 (org-export-async-start (lambda (_) nil)
927 `(let ((org-publish-use-timestamps-flag
928 ,(and (not force) org-publish-use-timestamps-flag)))
929 ;; Expand components right now as external process may not
930 ;; be aware of complete `org-publish-project-alist'.
931 (org-publish-projects
932 ',(org-publish-expand-projects (list project))))))
933 (t (save-window-excursion
934 (let ((org-publish-use-timestamps-flag
935 (and (not force) org-publish-use-timestamps-flag)))
936 (org-publish-projects (list project))))))))
938 ;;;###autoload
939 (defun org-publish-all (&optional force async)
940 "Publish all projects.
941 With prefix argument FORCE, remove all files in the timestamp
942 directory and force publishing all projects. With a non-nil
943 optional argument ASYNC, publishing will be done asynchronously,
944 in another process."
945 (interactive "P")
946 (if async
947 (org-export-async-start (lambda (_) nil)
948 `(progn
949 (when ',force (org-publish-remove-all-timestamps))
950 (let ((org-publish-use-timestamps-flag
951 (if ',force nil ,org-publish-use-timestamps-flag)))
952 (org-publish-projects ',org-publish-project-alist))))
953 (when force (org-publish-remove-all-timestamps))
954 (save-window-excursion
955 (let ((org-publish-use-timestamps-flag
956 (if force nil org-publish-use-timestamps-flag)))
957 (org-publish-projects org-publish-project-alist)))))
960 ;;;###autoload
961 (defun org-publish-current-file (&optional force async)
962 "Publish the current file.
963 With prefix argument FORCE, force publish the file. When
964 optional argument ASYNC is non-nil, publishing will be done
965 asynchronously, in another process."
966 (interactive "P")
967 (let ((file (buffer-file-name (buffer-base-buffer))))
968 (if async
969 (org-export-async-start (lambda (_) nil)
970 `(let ((org-publish-use-timestamps-flag
971 (if ',force nil ,org-publish-use-timestamps-flag)))
972 (org-publish-file ,file)))
973 (save-window-excursion
974 (let ((org-publish-use-timestamps-flag
975 (if force nil org-publish-use-timestamps-flag)))
976 (org-publish-file file))))))
978 ;;;###autoload
979 (defun org-publish-current-project (&optional force async)
980 "Publish the project associated with the current file.
981 With a prefix argument, force publishing of all files in
982 the project."
983 (interactive "P")
984 (save-window-excursion
985 (let ((project (org-publish-get-project-from-filename
986 (buffer-file-name (buffer-base-buffer)) 'up)))
987 (if project (org-publish project force async)
988 (error "File %s is not part of any known project"
989 (buffer-file-name (buffer-base-buffer)))))))
993 ;;; Index generation
995 (defun org-publish-collect-index (output _backend info)
996 "Update index for a file in cache.
998 OUTPUT is the output from transcoding current file. BACKEND is
999 the back-end that was used for transcoding. INFO is a plist
1000 containing publishing and export options.
1002 The index relative to current file is stored as an alist. An
1003 association has the following shape: (TERM FILE-NAME PARENT),
1004 where TERM is the indexed term, as a string, FILE-NAME is the
1005 original full path of the file where the term in encountered, and
1006 PARENT is a reference to the headline, if any, containing the
1007 original index keyword. When non-nil, this reference is a cons
1008 cell. Its CAR is a symbol among `id', `custom-id' and `name' and
1009 its CDR is a string."
1010 (let ((file (file-truename (plist-get info :input-file))))
1011 (org-publish-cache-set-file-property
1012 file :index
1013 (delete-dups
1014 (org-element-map (plist-get info :parse-tree) 'keyword
1015 (lambda (k)
1016 (when (equal (org-element-property :key k) "INDEX")
1017 (let ((parent (org-export-get-parent-headline k)))
1018 (list (org-element-property :value k)
1019 file
1020 (cond
1021 ((not parent) nil)
1022 ((let ((id (org-element-property :ID parent)))
1023 (and id (cons 'id id))))
1024 ((let ((id (org-element-property :CUSTOM_ID parent)))
1025 (and id (cons 'custom-id id))))
1026 (t (cons 'name
1027 ;; Remove statistics cookie.
1028 (replace-regexp-in-string
1029 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
1030 (org-element-property :raw-value parent)))))))))
1031 info))))
1032 ;; Return output unchanged.
1033 output)
1035 (defun org-publish-index-generate-theindex (project directory)
1036 "Retrieve full index from cache and build \"theindex.org\".
1037 PROJECT is the project the index relates to. DIRECTORY is the
1038 publishing directory."
1039 (let ((all-files (org-publish-get-base-files project))
1040 full-index)
1041 ;; Compile full index and sort it alphabetically.
1042 (dolist (file all-files
1043 (setq full-index
1044 (sort (nreverse full-index)
1045 (lambda (a b) (string< (downcase (car a))
1046 (downcase (car b)))))))
1047 (let ((index (org-publish-cache-get-file-property file :index)))
1048 (dolist (term index)
1049 (unless (member term full-index) (push term full-index)))))
1050 ;; Write "theindex.inc" in DIRECTORY.
1051 (with-temp-file (expand-file-name "theindex.inc" directory)
1052 (let ((current-letter nil) (last-entry nil))
1053 (dolist (idx full-index)
1054 (let* ((entry (org-split-string (car idx) "!"))
1055 (letter (upcase (substring (car entry) 0 1)))
1056 ;; Transform file into a path relative to publishing
1057 ;; directory.
1058 (file (file-relative-name
1059 (nth 1 idx)
1060 (plist-get (cdr project) :base-directory))))
1061 ;; Check if another letter has to be inserted.
1062 (unless (string= letter current-letter)
1063 (insert (format "* %s\n" letter)))
1064 ;; Compute the first difference between last entry and
1065 ;; current one: it tells the level at which new items
1066 ;; should be added.
1067 (let* ((rank
1068 (if (equal entry last-entry) (1- (length entry))
1069 (cl-loop for n from 0 to (length entry)
1070 unless (equal (nth n entry) (nth n last-entry))
1071 return n)))
1072 (len (length (nthcdr rank entry))))
1073 ;; For each term after the first difference, create
1074 ;; a new sub-list with the term as body. Moreover,
1075 ;; linkify the last term.
1076 (dotimes (n len)
1077 (insert
1078 (concat
1079 (make-string (* (+ rank n) 2) ?\s) " - "
1080 (if (not (= (1- len) n)) (nth (+ rank n) entry)
1081 ;; Last term: Link it to TARGET, if possible.
1082 (let ((target (nth 2 idx)))
1083 (format
1084 "[[%s][%s]]"
1085 ;; Destination.
1086 (pcase (car target)
1087 (`nil (format "file:%s" file))
1088 (`id (format "id:%s" (cdr target)))
1089 (`custom-id (format "file:%s::#%s" file (cdr target)))
1090 (_ (format "file:%s::*%s" file (cdr target))))
1091 ;; Description.
1092 (car (last entry)))))
1093 "\n"))))
1094 (setq current-letter letter last-entry entry))))
1095 ;; Create "theindex.org", if it doesn't exist yet, and provide
1096 ;; a default index file.
1097 (let ((index.org (expand-file-name "theindex.org" directory)))
1098 (unless (file-exists-p index.org)
1099 (with-temp-file index.org
1100 (insert "#+TITLE: Index\n\n#+INCLUDE: \"theindex.inc\"\n\n")))))))
1104 ;;; External Fuzzy Links Resolution
1106 ;; This part implements tools to resolve [[file.org::*Some headline]]
1107 ;; links, where "file.org" belongs to the current project.
1109 (defun org-publish--store-crossrefs (output _backend info)
1110 "Store cross-references for current published file.
1112 OUTPUT is the produced output, as a string. BACKEND is the export
1113 back-end used, as a symbol. INFO is the final export state, as
1114 a plist.
1116 This function is meant to be used as a final output filter. See
1117 `org-publish-org-to'."
1118 (org-publish-cache-set-file-property
1119 (file-truename (plist-get info :input-file))
1120 :crossrefs
1121 ;; Update `:crossrefs' so as to remove unused references and search
1122 ;; cells. Actually used references are extracted from
1123 ;; `:internal-references', with references as strings removed. See
1124 ;; `org-export-get-reference' for details.
1125 (cl-remove-if (lambda (pair) (stringp (car pair)))
1126 (plist-get info :internal-references)))
1127 ;; Return output unchanged.
1128 output)
1130 (defun org-publish-resolve-external-link (search file)
1131 "Return reference for element matching string SEARCH in FILE.
1133 Return value is an internal reference, as a string.
1135 This function allows resolving external links with a search
1136 option, e.g.,
1138 [[file.org::*heading][description]]
1139 [[file.org::#custom-id][description]]
1140 [[file.org::fuzzy][description]]
1142 It only makes sense to use this if export back-end builds
1143 references with `org-export-get-reference'."
1144 (if (not org-publish-cache)
1145 (progn
1146 (message "Reference %S in file %S cannot be resolved without publishing"
1147 search
1148 file)
1149 "MissingReference")
1150 (let* ((filename (file-truename file))
1151 (crossrefs
1152 (org-publish-cache-get-file-property filename :crossrefs nil t))
1153 (cells
1154 (org-export-string-to-search-cell (org-link-unescape search))))
1156 ;; Look for reference associated to search cells triggered by
1157 ;; LINK. It can match when targeted file has been published
1158 ;; already.
1159 (let ((known (cdr (cl-some (lambda (c) (assoc c crossrefs)) cells))))
1160 (and known (org-export-format-reference known)))
1161 ;; Search cell is unknown so far. Generate a new internal
1162 ;; reference that will be used when the targeted file will be
1163 ;; published.
1164 (let ((new (org-export-new-reference crossrefs)))
1165 (dolist (cell cells) (push (cons cell new) crossrefs))
1166 (org-publish-cache-set-file-property filename :crossrefs crossrefs)
1167 (org-export-format-reference new))))))
1169 (defun org-publish-file-relative-name (filename info)
1170 "Convert FILENAME to be relative to current project's base directory.
1171 INFO is the plist containing the current export state. The
1172 function does not change relative file names."
1173 (let ((base (plist-get info :base-directory)))
1174 (if (and base
1175 (file-name-absolute-p filename)
1176 (file-in-directory-p filename base))
1177 (file-relative-name filename base)
1178 filename)))
1182 ;;; Caching functions
1184 (defun org-publish-write-cache-file (&optional free-cache)
1185 "Write `org-publish-cache' to file.
1186 If FREE-CACHE, empty the cache."
1187 (unless org-publish-cache
1188 (error "`org-publish-write-cache-file' called, but no cache present"))
1190 (let ((cache-file (org-publish-cache-get ":cache-file:")))
1191 (unless cache-file
1192 (error "Cannot find cache-file name in `org-publish-write-cache-file'"))
1193 (with-temp-file cache-file
1194 (let (print-level print-length)
1195 (insert "(setq org-publish-cache \
1196 \(make-hash-table :test 'equal :weakness nil :size 100))\n")
1197 (maphash (lambda (k v)
1198 (insert
1199 (format "(puthash %S %s%S org-publish-cache)\n"
1200 k (if (or (listp v) (symbolp v)) "'" "") v)))
1201 org-publish-cache)))
1202 (when free-cache (org-publish-reset-cache))))
1204 (defun org-publish-initialize-cache (project-name)
1205 "Initialize the projects cache if not initialized yet and return it."
1207 (unless project-name
1208 (error "Cannot initialize `org-publish-cache' without projects name in \
1209 `org-publish-initialize-cache'"))
1211 (unless (file-exists-p org-publish-timestamp-directory)
1212 (make-directory org-publish-timestamp-directory t))
1213 (unless (file-directory-p org-publish-timestamp-directory)
1214 (error "Org publish timestamp: %s is not a directory"
1215 org-publish-timestamp-directory))
1217 (unless (and org-publish-cache
1218 (string= (org-publish-cache-get ":project:") project-name))
1219 (let* ((cache-file
1220 (concat
1221 (expand-file-name org-publish-timestamp-directory)
1222 project-name ".cache"))
1223 (cexists (file-exists-p cache-file)))
1225 (when org-publish-cache (org-publish-reset-cache))
1227 (if cexists (load-file cache-file)
1228 (setq org-publish-cache
1229 (make-hash-table :test 'equal :weakness nil :size 100))
1230 (org-publish-cache-set ":project:" project-name)
1231 (org-publish-cache-set ":cache-file:" cache-file))
1232 (unless cexists (org-publish-write-cache-file nil))))
1233 org-publish-cache)
1235 (defun org-publish-reset-cache ()
1236 "Empty org-publish-cache and reset it nil."
1237 (message "%s" "Resetting org-publish-cache")
1238 (when (hash-table-p org-publish-cache)
1239 (clrhash org-publish-cache))
1240 (setq org-publish-cache nil))
1242 (defun org-publish-cache-file-needs-publishing
1243 (filename &optional pub-dir pub-func _base-dir)
1244 "Check the timestamp of the last publishing of FILENAME.
1245 Return non-nil if the file needs publishing. Also check if
1246 any included files have been more recently published, so that
1247 the file including them will be republished as well."
1248 (unless org-publish-cache
1249 (error
1250 "`org-publish-cache-file-needs-publishing' called, but no cache present"))
1251 (let* ((key (org-publish-timestamp-filename filename pub-dir pub-func))
1252 (pstamp (org-publish-cache-get key))
1253 (org-inhibit-startup t)
1254 included-files-ctime)
1255 (when (equal (file-name-extension filename) "org")
1256 (let ((visiting (find-buffer-visiting filename))
1257 (buf (find-file-noselect filename))
1258 (case-fold-search t))
1259 (unwind-protect
1260 (with-current-buffer buf
1261 (goto-char (point-min))
1262 (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t)
1263 (let* ((element (org-element-at-point))
1264 (included-file
1265 (and (eq (org-element-type element) 'keyword)
1266 (let ((value (org-element-property :value element)))
1267 (and value
1268 (string-match
1269 "\\`\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)"
1270 value)
1271 (let ((m (match-string 1 value)))
1272 (org-unbracket-string
1273 "\"" "\""
1274 ;; Ignore search suffix.
1275 (if (string-match "::.*?\"?\\'" m)
1276 (substring m 0 (match-beginning 0))
1277 m))))))))
1278 (when included-file
1279 (push (org-publish-cache-ctime-of-src
1280 (expand-file-name included-file))
1281 included-files-ctime)))))
1282 (unless visiting (kill-buffer buf)))))
1283 (or (null pstamp)
1284 (let ((ctime (org-publish-cache-ctime-of-src filename)))
1285 (or (< pstamp ctime)
1286 (cl-some (lambda (ct) (< ctime ct)) included-files-ctime))))))
1288 (defun org-publish-cache-set-file-property
1289 (filename property value &optional project-name)
1290 "Set the VALUE for a PROPERTY of file FILENAME in publishing cache to VALUE.
1291 Use cache file of PROJECT-NAME. If the entry does not exist, it
1292 will be created. Return VALUE."
1293 ;; Evtl. load the requested cache file:
1294 (if project-name (org-publish-initialize-cache project-name))
1295 (let ((pl (org-publish-cache-get filename)))
1296 (if pl (progn (plist-put pl property value) value)
1297 (org-publish-cache-get-file-property
1298 filename property value nil project-name))))
1300 (defun org-publish-cache-get-file-property
1301 (filename property &optional default no-create project-name)
1302 "Return the value for a PROPERTY of file FILENAME in publishing cache.
1303 Use cache file of PROJECT-NAME. Return the value of that PROPERTY,
1304 or DEFAULT, if the value does not yet exist. Create the entry,
1305 if necessary, unless NO-CREATE is non-nil."
1306 (when project-name (org-publish-initialize-cache project-name))
1307 (let ((properties (org-publish-cache-get filename)))
1308 (cond ((null properties)
1309 (unless no-create
1310 (org-publish-cache-set filename (list property default)))
1311 default)
1312 ((plist-member properties property) (plist-get properties property))
1313 (t default))))
1315 (defun org-publish-cache-get (key)
1316 "Return the value stored in `org-publish-cache' for key KEY.
1317 Return nil, if no value or nil is found. Raise an error if the
1318 cache does not exist."
1319 (unless org-publish-cache
1320 (error "`org-publish-cache-get' called, but no cache present"))
1321 (gethash key org-publish-cache))
1323 (defun org-publish-cache-set (key value)
1324 "Store KEY VALUE pair in `org-publish-cache'.
1325 Returns value on success, else nil. Raise an error if the cache
1326 does not exist."
1327 (unless org-publish-cache
1328 (error "`org-publish-cache-set' called, but no cache present"))
1329 (puthash key value org-publish-cache))
1331 (defun org-publish-cache-ctime-of-src (file)
1332 "Get the ctime of FILE as an integer."
1333 (let ((attr (file-attributes
1334 (expand-file-name (or (file-symlink-p file) file)
1335 (file-name-directory file)))))
1336 (if (not attr) (error "No such file: \"%s\"" file)
1337 (+ (lsh (car (nth 5 attr)) 16)
1338 (cadr (nth 5 attr))))))
1341 (provide 'ox-publish)
1343 ;; Local variables:
1344 ;; generated-autoload-file: "org-loaddefs.el"
1345 ;; End:
1347 ;;; ox-publish.el ends here