org-compat: Fix migration to `org-duration-format'
[org-mode/org-tableheadings.git] / lisp / ox-publish.el
blob44f8097f4e7d422c8d12476b94288ef5deb8ffbd
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."
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 (lambda (x) (assoc x org-publish-project-alist))
422 components)
423 rest))
424 (push p rtn)))
425 (nreverse (delete-dups (delq nil rtn)))))
427 (defun org-publish-get-base-files (project)
428 "Return a list of all files in PROJECT."
429 (let* ((base-dir (file-name-as-directory
430 (org-publish-property :base-directory project)))
431 (extension (or (org-publish-property :base-extension project) "org"))
432 (match (and (not (eq extension 'any))
433 (concat "^[^\\.].*\\.\\(" extension "\\)$")))
434 (base-files
435 (cl-remove-if #'file-directory-p
436 (if (org-publish-property :recursive project)
437 (directory-files-recursively base-dir match)
438 (directory-files base-dir t match t)))))
439 (org-uniquify
440 (append
441 ;; Files from BASE-DIR. Apply exclusion filter before adding
442 ;; included files.
443 (let ((exclude-regexp (org-publish-property :exclude project)))
444 (if exclude-regexp
445 (cl-remove-if
446 (lambda (f)
447 ;; Match against relative names, yet BASE-DIR file
448 ;; names are absolute.
449 (string-match exclude-regexp
450 (file-relative-name f base-dir)))
451 base-files)
452 base-files))
453 ;; Sitemap file.
454 (and (org-publish-property :auto-sitemap project)
455 (list (expand-file-name
456 (or (org-publish-property :sitemap-filename project)
457 "sitemap.org")
458 base-dir)))
459 ;; Included files.
460 (mapcar (lambda (f) (expand-file-name f base-dir))
461 (org-publish-property :include project))))))
463 (defun org-publish-get-project-from-filename (filename &optional up)
464 "Return a project that FILENAME belongs to.
465 When UP is non-nil, return a meta-project (i.e., with a :components part)
466 publishing FILENAME."
467 (let* ((filename (expand-file-name filename))
468 (project
469 (cl-some
470 (lambda (p)
471 ;; Ignore meta-projects.
472 (unless (org-publish-property :components p)
473 (let ((base (expand-file-name
474 (org-publish-property :base-directory p))))
475 (cond
476 ;; Check if FILENAME is explicitly included in one
477 ;; project.
478 ((member filename
479 (mapcar (lambda (f) (expand-file-name f base))
480 (org-publish-property :include p)))
482 ;; Exclude file names matching :exclude property.
483 ((let ((exclude-re (org-publish-property :exclude p)))
484 (and exclude-re
485 (string-match-p exclude-re
486 (file-relative-name filename base))))
487 nil)
488 ;; Check :extension. Handle special `any'
489 ;; extension.
490 ((let ((extension (org-publish-property :base-extension p)))
491 (not (or (eq extension 'any)
492 (string= (or extension "org")
493 (file-name-extension filename)))))
494 nil)
495 ;; Check if FILENAME belong to project's base
496 ;; directory, or some of its sub-directories
497 ;; if :recursive in non-nil.
498 ((org-publish-property :recursive p)
499 (and (string-prefix-p base filename) p))
500 ((equal base (file-name-directory filename)) p)
501 (t nil)))))
502 org-publish-project-alist)))
503 (cond
504 ((not project) nil)
505 ((not up) project)
506 ;; When optional argument UP is non-nil, return the top-most
507 ;; meta-project effectively publishing FILENAME.
509 (letrec ((find-parent-project
510 (lambda (project)
511 (or (cl-some
512 (lambda (p)
513 (and (member (car project)
514 (org-publish-property :components p))
515 (funcall find-parent-project p)))
516 org-publish-project-alist)
517 project))))
518 (funcall find-parent-project project))))))
522 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
523 ;;; Tools for publishing functions in back-ends
525 (defun org-publish-org-to (backend filename extension plist &optional pub-dir)
526 "Publish an Org file to a specified back-end.
528 BACKEND is a symbol representing the back-end used for
529 transcoding. FILENAME is the filename of the Org file to be
530 published. EXTENSION is the extension used for the output
531 string, with the leading dot. PLIST is the property list for the
532 given project.
534 Optional argument PUB-DIR, when non-nil is the publishing
535 directory.
537 Return output file name."
538 (unless (or (not pub-dir) (file-exists-p pub-dir)) (make-directory pub-dir t))
539 ;; Check if a buffer visiting FILENAME is already open.
540 (let* ((org-inhibit-startup t)
541 (visiting (find-buffer-visiting filename))
542 (work-buffer (or visiting (find-file-noselect filename))))
543 (unwind-protect
544 (with-current-buffer work-buffer
545 (let ((output (org-export-output-file-name extension nil pub-dir)))
546 (org-export-to-file backend output
547 nil nil nil (plist-get plist :body-only)
548 ;; Add `org-publish--store-crossrefs' and
549 ;; `org-publish-collect-index' to final output filters.
550 ;; The latter isn't dependent on `:makeindex', since we
551 ;; want to keep it up-to-date in cache anyway.
552 (org-combine-plists
553 plist
554 `(:crossrefs
555 ,(org-publish-cache-get-file-property
556 (expand-file-name filename) :crossrefs nil t)
557 :filter-final-output
558 (org-publish--store-crossrefs
559 org-publish-collect-index
560 ,@(plist-get plist :filter-final-output)))))))
561 ;; Remove opened buffer in the process.
562 (unless visiting (kill-buffer work-buffer)))))
564 (defun org-publish-attachment (_plist filename pub-dir)
565 "Publish a file with no transformation of any kind.
567 FILENAME is the filename of the Org file to be published. PLIST
568 is the property list for the given project. PUB-DIR is the
569 publishing directory.
571 Return output file name."
572 (unless (file-directory-p pub-dir)
573 (make-directory pub-dir t))
574 (let ((output (expand-file-name (file-name-nondirectory filename) pub-dir)))
575 (or (equal (expand-file-name (file-name-directory filename))
576 (file-name-as-directory (expand-file-name pub-dir)))
577 (copy-file filename output t))
578 ;; Return file name.
579 output))
583 ;;; Publishing files, sets of files
585 (defun org-publish-file (filename &optional project no-cache)
586 "Publish file FILENAME from PROJECT.
587 If NO-CACHE is not nil, do not initialize `org-publish-cache'.
588 This is needed, since this function is used to publish single
589 files, when entire projects are published (see
590 `org-publish-projects')."
591 (let* ((project
592 (or project
593 (or (org-publish-get-project-from-filename filename)
594 (error "File %s not part of any known project"
595 (abbreviate-file-name filename)))))
596 (plist (cdr project))
597 (ftname (expand-file-name filename))
598 (publishing-function
599 (let ((fun (org-publish-property :publishing-function project)))
600 (cond ((null fun) (error "No publishing function chosen"))
601 ((listp fun) fun)
602 (t (list fun)))))
603 (base-dir
604 (file-name-as-directory
605 (expand-file-name
606 (or (org-publish-property :base-directory project)
607 (error "Project %s does not have :base-directory defined"
608 (car project))))))
609 (pub-dir
610 (file-name-as-directory
611 (file-truename
612 (or (org-publish-property :publishing-directory project)
613 (error "Project %s does not have :publishing-directory defined"
614 (car project))))))
615 tmp-pub-dir)
617 (unless no-cache (org-publish-initialize-cache (car project)))
619 (setq tmp-pub-dir
620 (file-name-directory
621 (concat pub-dir
622 (and (string-match (regexp-quote base-dir) ftname)
623 (substring ftname (match-end 0))))))
624 ;; Allow chain of publishing functions.
625 (dolist (f publishing-function)
626 (when (org-publish-needed-p filename pub-dir f tmp-pub-dir base-dir)
627 (let ((output (funcall f plist filename tmp-pub-dir)))
628 (org-publish-update-timestamp filename pub-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 (expand-file-name
657 "theindex.org"
658 (org-publish-property :base-directory project))))
659 (dolist (file (org-publish-get-base-files project))
660 (unless (equal file theindex) (org-publish-file file project t)))
661 ;; Populate "theindex.inc", if needed, and publish
662 ;; "theindex.org".
663 (when (org-publish-property :makeindex project)
664 (org-publish-index-generate-theindex
665 project (org-publish-property :base-directory project))
666 (org-publish-file theindex project t)))
667 (let ((fun (org-publish-property :completion-function project)))
668 (cond
669 ((consp fun) (dolist (f fun) (funcall f plist)))
670 ((functionp fun) (funcall fun plist)))))
671 (org-publish-write-cache-file)))
674 ;;; Site map generation
676 (defun org-publish--sitemap-files-to-lisp (files project style format-entry)
677 "Represent FILES as a parsed plain list.
678 FILES is the list of files in the site map. PROJECT is the
679 current project. STYLE determines is either `list' or `tree'.
680 FORMAT-ENTRY is a function called on each file which should
681 return a string. Return value is a list as returned by
682 `org-list-to-lisp'."
683 (let ((root (expand-file-name
684 (file-name-as-directory
685 (org-publish-property :base-directory project)))))
686 (pcase style
687 (`list
688 (cons 'unordered
689 (mapcar
690 (lambda (f)
691 (list (funcall format-entry
692 (file-relative-name f root)
693 style
694 project)))
695 files)))
696 (`tree
697 (letrec ((files-only (cl-remove-if #'directory-name-p files))
698 (directories (cl-remove-if-not #'directory-name-p files))
699 (subtree-to-list
700 (lambda (dir)
701 (cons 'unordered
702 (nconc
703 ;; Files in DIR.
704 (mapcar
705 (lambda (f)
706 (list (funcall format-entry
707 (file-relative-name f root)
708 style
709 project)))
710 (cl-remove-if-not
711 (lambda (f) (string= dir (file-name-directory f)))
712 files-only))
713 ;; Direct sub-directories.
714 (mapcar
715 (lambda (sub)
716 (list (funcall format-entry
717 (file-relative-name sub root)
718 style
719 project)
720 (funcall subtree-to-list sub)))
721 (cl-remove-if-not
722 (lambda (f)
723 (string=
725 ;; Parent directory.
726 (file-name-directory (directory-file-name f))))
727 directories)))))))
728 (funcall subtree-to-list root)))
729 (_ (user-error "Unknown site-map style: `%s'" style)))))
731 (defun org-publish-sitemap (project &optional sitemap-filename)
732 "Create a sitemap of pages in set defined by PROJECT.
733 Optionally set the filename of the sitemap with SITEMAP-FILENAME.
734 Default for SITEMAP-FILENAME is `sitemap.org'."
735 (let* ((root (expand-file-name
736 (file-name-as-directory
737 (org-publish-property :base-directory project))))
738 (sitemap-filename (concat root (or sitemap-filename "sitemap.org")))
739 (title (or (org-publish-property :sitemap-title project)
740 (concat "Sitemap for project " (car project))))
741 (style (or (org-publish-property :sitemap-style project)
742 'tree))
743 (sitemap-builder (or (org-publish-property :sitemap-function project)
744 #'org-publish-sitemap-default))
745 (format-entry (or (org-publish-property :sitemap-format-entry project)
746 #'org-publish-sitemap-default-entry))
747 (sort-folders
748 (org-publish-property :sitemap-sort-folders project
749 org-publish-sitemap-sort-folders))
750 (sort-files
751 (org-publish-property :sitemap-sort-files project
752 org-publish-sitemap-sort-files))
753 (ignore-case
754 (org-publish-property :sitemap-ignore-case project
755 org-publish-sitemap-sort-ignore-case))
756 (org-file-p (lambda (f) (equal "org" (file-name-extension f))))
757 (sort-predicate
758 (lambda (a b)
759 (let ((retval t))
760 ;; First we sort files:
761 (pcase sort-files
762 (`alphabetically
763 (let ((A (if (funcall org-file-p a)
764 (concat (file-name-directory a)
765 (org-publish-find-title a project))
767 (B (if (funcall org-file-p b)
768 (concat (file-name-directory b)
769 (org-publish-find-title b project))
770 b)))
771 (setq retval
772 (if ignore-case
773 (not (string-lessp (upcase B) (upcase A)))
774 (not (string-lessp B A))))))
775 ((or `anti-chronologically `chronologically)
776 (let* ((adate (org-publish-find-date a project))
777 (bdate (org-publish-find-date b project))
778 (A (+ (lsh (car adate) 16) (cadr adate)))
779 (B (+ (lsh (car bdate) 16) (cadr bdate))))
780 (setq retval
781 (if (eq sort-files 'chronologically)
782 (<= A B)
783 (>= A B)))))
784 (`nil nil)
785 (_ (user-error "Invalid sort value %s" sort-files)))
786 ;; Directory-wise wins:
787 (when (memq sort-folders '(first last))
788 ;; a is directory, b not:
789 (cond
790 ((and (file-directory-p a) (not (file-directory-p b)))
791 (setq retval (eq sort-folders 'first)))
792 ;; a is not a directory, but b is:
793 ((and (not (file-directory-p a)) (file-directory-p b))
794 (setq retval (eq sort-folders 'last)))))
795 retval))))
796 (message "Generating sitemap for %s" title)
797 (with-temp-file sitemap-filename
798 (insert
799 (let ((files (remove sitemap-filename
800 (org-publish-get-base-files project))))
801 ;; Add directories, if applicable.
802 (unless (and (eq style 'list) (eq sort-folders 'ignore))
803 (setq files
804 (nconc (remove root (org-uniquify
805 (mapcar #'file-name-directory files)))
806 files)))
807 ;; Eventually sort all entries.
808 (when (or sort-files (not (memq sort-folders 'ignore)))
809 (setq files (sort files sort-predicate)))
810 (funcall sitemap-builder
811 title
812 (org-publish--sitemap-files-to-lisp
813 files project style format-entry)))))))
815 (defun org-publish-find-property (file property project &optional backend)
816 "Find the PROPERTY of FILE in project.
818 PROPERTY is a keyword referring to an export option, as defined
819 in `org-export-options-alist' or in export back-ends. In the
820 latter case, optional argument BACKEND has to be set to the
821 back-end where the option is defined, e.g.,
823 (org-publish-find-property file :subtitle 'latex)
825 Return value may be a string or a list, depending on the type of
826 PROPERTY, i.e. \"behavior\" parameter from `org-export-options-alist'."
827 (let ((file (org-publish--expand-file-name file project)))
828 (when (and (file-readable-p file) (not (directory-name-p file)))
829 (let* ((org-inhibit-startup t)
830 (visiting (find-buffer-visiting file))
831 (buffer (or visiting (find-file-noselect file))))
832 (unwind-protect
833 (plist-get (with-current-buffer buffer
834 (if (not visiting) (org-export-get-environment backend)
835 ;; Protect local variables in open buffers.
836 (org-export-with-buffer-copy
837 (org-export-get-environment backend))))
838 property)
839 (unless visiting (kill-buffer buffer)))))))
841 (defun org-publish-find-title (file project)
842 "Find the title of FILE in PROJECT."
843 (let ((file (org-publish--expand-file-name file project)))
844 (or (org-publish-cache-get-file-property file :title nil t)
845 (let* ((parsed-title (org-publish-find-property file :title project))
846 (title
847 (if parsed-title
848 ;; Remove property so that the return value is
849 ;; cache-able (i.e., it can be `read' back).
850 (org-no-properties
851 (org-element-interpret-data parsed-title))
852 (file-name-nondirectory (file-name-sans-extension file)))))
853 (org-publish-cache-set-file-property file :title title)
854 title))))
856 (defun org-publish-find-date (file project)
857 "Find the date of FILE in PROJECT.
858 This function assumes FILE is either a directory or an Org file.
859 If FILE is an Org file and provides a DATE keyword use it. In
860 any other case use the file system's modification time. Return
861 time in `current-time' format."
862 (let ((file (org-publish--expand-file-name file project)))
863 (if (file-directory-p file) (nth 5 (file-attributes file))
864 (let ((date (org-publish-find-property file :date project)))
865 ;; DATE is a secondary string. If it contains a time-stamp,
866 ;; convert it to internal format. Otherwise, use FILE
867 ;; modification time.
868 (cond ((let ((ts (and (consp date) (assq 'timestamp date))))
869 (and ts
870 (let ((value (org-element-interpret-data ts)))
871 (and (org-string-nw-p value)
872 (org-time-string-to-time value))))))
873 ((file-exists-p file) (nth 5 (file-attributes file)))
874 (t (error "No such file: \"%s\"" file)))))))
876 (defun org-publish-sitemap-default-entry (entry style project)
877 "Default format for site map ENTRY, as a string.
878 ENTRY is a file name. STYLE is the style of the sitemap.
879 PROJECT is the current project."
880 (cond ((not (directory-name-p entry))
881 (format "[[file:%s][%s]]"
882 entry
883 (org-publish-find-title entry project)))
884 ((eq style 'tree)
885 ;; Return only last subdir.
886 (file-name-nondirectory (directory-file-name entry)))
887 (t entry)))
889 (defun org-publish-sitemap-default (title list)
890 "Default site map, as a string.
891 TITLE is the the title of the site map. LIST is an internal
892 representation for the files to include, as returned by
893 `org-list-to-lisp'. PROJECT is the current project."
894 (concat "#+TITLE: " title "\n\n"
895 (org-list-to-org list)))
898 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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 (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 OUPUT 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 (plist-get info :input-file) :crossrefs
1120 ;; Update `:crossrefs' so as to remove unused references and search
1121 ;; cells. Actually used references are extracted from
1122 ;; `:internal-references', with references as strings removed. See
1123 ;; `org-export-get-reference' for details.
1124 (cl-remove-if (lambda (pair) (stringp (car pair)))
1125 (plist-get info :internal-references)))
1126 ;; Return output unchanged.
1127 output)
1129 (defun org-publish-resolve-external-link (search file)
1130 "Return reference for element matching string SEARCH in FILE.
1132 Return value is an internal reference, as a string.
1134 This function allows resolving external links with a search
1135 option, e.g.,
1137 [[file.org::*heading][description]]
1138 [[file.org::#custom-id][description]]
1139 [[file.org::fuzzy][description]]
1141 It only makes sense to use this if export back-end builds
1142 references with `org-export-get-reference'."
1143 (if (not org-publish-cache)
1144 (progn
1145 (message "Reference %S in file %S cannot be resolved without publishing"
1146 search
1147 file)
1148 "MissingReference")
1149 (let* ((filename (expand-file-name file))
1150 (crossrefs
1151 (org-publish-cache-get-file-property filename :crossrefs nil t))
1152 (cells (org-export-string-to-search-cell search)))
1154 ;; Look for reference associated to search cells triggered by
1155 ;; LINK. It can match when targeted file has been published
1156 ;; already.
1157 (let ((known (cdr (cl-some (lambda (c) (assoc c crossrefs)) cells))))
1158 (and known (org-export-format-reference known)))
1159 ;; Search cell is unknown so far. Generate a new internal
1160 ;; reference that will be used when the targeted file will be
1161 ;; published.
1162 (let ((new (org-export-new-reference crossrefs)))
1163 (dolist (cell cells) (push (cons cell new) crossrefs))
1164 (org-publish-cache-set-file-property filename :crossrefs crossrefs)
1165 (org-export-format-reference new))))))
1169 ;;; Caching functions
1171 (defun org-publish-write-cache-file (&optional free-cache)
1172 "Write `org-publish-cache' to file.
1173 If FREE-CACHE, empty the cache."
1174 (unless org-publish-cache
1175 (error "`org-publish-write-cache-file' called, but no cache present"))
1177 (let ((cache-file (org-publish-cache-get ":cache-file:")))
1178 (unless cache-file
1179 (error "Cannot find cache-file name in `org-publish-write-cache-file'"))
1180 (with-temp-file cache-file
1181 (let (print-level print-length)
1182 (insert "(setq org-publish-cache \
1183 \(make-hash-table :test 'equal :weakness nil :size 100))\n")
1184 (maphash (lambda (k v)
1185 (insert
1186 (format "(puthash %S %s%S org-publish-cache)\n"
1187 k (if (or (listp v) (symbolp v)) "'" "") v)))
1188 org-publish-cache)))
1189 (when free-cache (org-publish-reset-cache))))
1191 (defun org-publish-initialize-cache (project-name)
1192 "Initialize the projects cache if not initialized yet and return it."
1194 (unless project-name
1195 (error "Cannot initialize `org-publish-cache' without projects name in \
1196 `org-publish-initialize-cache'"))
1198 (unless (file-exists-p org-publish-timestamp-directory)
1199 (make-directory org-publish-timestamp-directory t))
1200 (unless (file-directory-p org-publish-timestamp-directory)
1201 (error "Org publish timestamp: %s is not a directory"
1202 org-publish-timestamp-directory))
1204 (unless (and org-publish-cache
1205 (string= (org-publish-cache-get ":project:") project-name))
1206 (let* ((cache-file
1207 (concat
1208 (expand-file-name org-publish-timestamp-directory)
1209 project-name ".cache"))
1210 (cexists (file-exists-p cache-file)))
1212 (when org-publish-cache (org-publish-reset-cache))
1214 (if cexists (load-file cache-file)
1215 (setq org-publish-cache
1216 (make-hash-table :test 'equal :weakness nil :size 100))
1217 (org-publish-cache-set ":project:" project-name)
1218 (org-publish-cache-set ":cache-file:" cache-file))
1219 (unless cexists (org-publish-write-cache-file nil))))
1220 org-publish-cache)
1222 (defun org-publish-reset-cache ()
1223 "Empty org-publish-cache and reset it nil."
1224 (message "%s" "Resetting org-publish-cache")
1225 (when (hash-table-p org-publish-cache)
1226 (clrhash org-publish-cache))
1227 (setq org-publish-cache nil))
1229 (defun org-publish-cache-file-needs-publishing
1230 (filename &optional pub-dir pub-func _base-dir)
1231 "Check the timestamp of the last publishing of FILENAME.
1232 Return non-nil if the file needs publishing. Also check if
1233 any included files have been more recently published, so that
1234 the file including them will be republished as well."
1235 (unless org-publish-cache
1236 (error
1237 "`org-publish-cache-file-needs-publishing' called, but no cache present"))
1238 (let* ((key (org-publish-timestamp-filename filename pub-dir pub-func))
1239 (pstamp (org-publish-cache-get key))
1240 (org-inhibit-startup t)
1241 included-files-ctime)
1242 (when (equal (file-name-extension filename) "org")
1243 (let ((visiting (find-buffer-visiting filename))
1244 (buf (find-file-noselect filename))
1245 (case-fold-search t))
1246 (unwind-protect
1247 (with-current-buffer buf
1248 (goto-char (point-min))
1249 (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t)
1250 (let* ((element (org-element-at-point))
1251 (included-file
1252 (and (eq (org-element-type element) 'keyword)
1253 (let ((value (org-element-property :value element)))
1254 (and value
1255 (string-match
1256 "\\`\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)"
1257 value)
1258 (let ((m (match-string 1 value)))
1259 (org-unbracket-string
1260 "\"" "\""
1261 ;; Ignore search suffix.
1262 (if (string-match "::.*?\"?\\'" m)
1263 (substring m 0 (match-beginning 0))
1264 m))))))))
1265 (when included-file
1266 (push (org-publish-cache-ctime-of-src
1267 (expand-file-name included-file))
1268 included-files-ctime)))))
1269 (unless visiting (kill-buffer buf)))))
1270 (or (null pstamp)
1271 (let ((ctime (org-publish-cache-ctime-of-src filename)))
1272 (or (< pstamp ctime)
1273 (cl-some (lambda (ct) (< ctime ct)) included-files-ctime))))))
1275 (defun org-publish-cache-set-file-property
1276 (filename property value &optional project-name)
1277 "Set the VALUE for a PROPERTY of file FILENAME in publishing cache to VALUE.
1278 Use cache file of PROJECT-NAME. If the entry does not exist, it
1279 will be created. Return VALUE."
1280 ;; Evtl. load the requested cache file:
1281 (if project-name (org-publish-initialize-cache project-name))
1282 (let ((pl (org-publish-cache-get filename)))
1283 (if pl (progn (plist-put pl property value) value)
1284 (org-publish-cache-get-file-property
1285 filename property value nil project-name))))
1287 (defun org-publish-cache-get-file-property
1288 (filename property &optional default no-create project-name)
1289 "Return the value for a PROPERTY of file FILENAME in publishing cache.
1290 Use cache file of PROJECT-NAME. Return the value of that PROPERTY,
1291 or DEFAULT, if the value does not yet exist. Create the entry,
1292 if necessary, unless NO-CREATE is non-nil."
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)) retval)
1296 (if pl
1297 (if (plist-member pl property)
1298 (setq retval (plist-get pl property))
1299 (setq retval default))
1300 ;; no pl yet:
1301 (unless no-create
1302 (org-publish-cache-set filename (list property default)))
1303 (setq retval default))
1304 retval))
1306 (defun org-publish-cache-get (key)
1307 "Return the value stored in `org-publish-cache' for key KEY.
1308 Return nil, if no value or nil is found. Raise an error if the
1309 cache does not exist."
1310 (unless org-publish-cache
1311 (error "`org-publish-cache-get' called, but no cache present"))
1312 (gethash key org-publish-cache))
1314 (defun org-publish-cache-set (key value)
1315 "Store KEY VALUE pair in `org-publish-cache'.
1316 Returns value on success, else nil. Raise an error if the cache
1317 does not exist."
1318 (unless org-publish-cache
1319 (error "`org-publish-cache-set' called, but no cache present"))
1320 (puthash key value org-publish-cache))
1322 (defun org-publish-cache-ctime-of-src (file)
1323 "Get the ctime of FILE as an integer."
1324 (let ((attr (file-attributes
1325 (expand-file-name (or (file-symlink-p file) file)
1326 (file-name-directory file)))))
1327 (if (not attr) (error "No such file: \"%s\"" file)
1328 (+ (lsh (car (nth 5 attr)) 16)
1329 (cadr (nth 5 attr))))))
1332 (provide 'ox-publish)
1334 ;; Local variables:
1335 ;; generated-autoload-file: "org-loaddefs.el"
1336 ;; End:
1338 ;;; ox-publish.el ends here