1 ;;; ox-publish.el --- Publish Related Org Mode Files as a Website
2 ;; Copyright (C) 2006-2014 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.
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/>.
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.
41 (eval-when-compile (require 'cl
))
42 (require 'format-spec
)
49 (defvar org-publish-temp-files nil
50 "Temporary list of files to be published.")
52 ;; Here, so you find the variable right before it's used the first time:
53 (defvar org-publish-cache nil
54 "This will cache timestamps and titles for files in publishing projects.
55 Blocks could hash sha1 values here.")
57 (defgroup org-publish nil
58 "Options for publishing a set of Org-mode and related files."
62 (defcustom org-publish-project-alist nil
63 "Association list to control publishing behavior.
64 Each element of the alist is a publishing 'project.' The CAR of
65 each element is a string, uniquely identifying the project. The
66 CDR of each element is in one of the following forms:
68 1. A well-formed property list with an even number of elements,
69 alternating keys and values, specifying parameters for the
72 \(:property value :property value ... )
74 2. A meta-project definition, specifying of a list of
77 \(:components (\"project-1\" \"project-2\" ...))
79 When the CDR of an element of org-publish-project-alist is in
80 this second form, the elements of the list after `:components'
81 are taken to be components of the project, which group together
82 files requiring different publishing options. When you publish
83 such a project with \\[org-publish], the components all publish.
85 When a property is given a value in `org-publish-project-alist',
86 its setting overrides the value of the corresponding user
87 variable (if any) during publishing. However, options set within
88 a file override everything.
90 Most properties are optional, but some should always be set:
94 Directory containing publishing source files.
98 Extension (without the dot!) of source files. This can be
99 a regular expression. If not given, \"org\" will be used as
102 `:publishing-directory'
104 Directory (possibly remote) where output files will be
107 The `:exclude' property may be used to prevent certain files from
108 being published. Its value may be a string or regexp matching
109 file names you don't want to be published.
111 The `:include' property may be used to include extra files. Its
112 value may be a list of filenames to include. The filenames are
113 considered relative to the base directory.
115 When both `:include' and `:exclude' properties are given values,
116 the exclusion step happens first.
118 One special property controls which back-end function to use for
119 publishing files in the project. This can be used to extend the
120 set of file types publishable by `org-publish', as well as the
121 set of output formats.
123 `:publishing-function'
125 Function to publish file. Each back-end may define its
126 own (i.e. `org-latex-publish-to-pdf',
127 `org-html-publish-to-html'). May be a list of functions, in
128 which case each function in the list is invoked in turn.
130 Another property allows you to insert code that prepares
131 a project for publishing. For example, you could call GNU Make
132 on a certain makefile, to ensure published files are built up to
135 `:preparation-function'
137 Function to be called before publishing this project. This
138 may also be a list of functions.
140 `:completion-function'
142 Function to be called after publishing this project. This
143 may also be a list of functions.
145 Some properties control details of the Org publishing process,
146 and are equivalent to the corresponding user variables listed in
147 the right column. Back-end specific properties may also be
148 included. See the back-end documentation for more information.
150 :author `user-full-name'
151 :creator `org-export-creator-string'
152 :email `user-mail-address'
153 :exclude-tags `org-export-exclude-tags'
154 :headline-levels `org-export-headline-levels'
155 :language `org-export-default-language'
156 :preserve-breaks `org-export-preserve-breaks'
157 :section-numbers `org-export-with-section-numbers'
158 :select-tags `org-export-select-tags'
159 :time-stamp-file `org-export-time-stamp-file'
160 :with-archived-trees `org-export-with-archived-trees'
161 :with-author `org-export-with-author'
162 :with-creator `org-export-with-creator'
163 :with-date `org-export-with-date'
164 :with-drawers `org-export-with-drawers'
165 :with-email `org-export-with-email'
166 :with-emphasize `org-export-with-emphasize'
167 :with-entities `org-export-with-entities'
168 :with-fixed-width `org-export-with-fixed-width'
169 :with-footnotes `org-export-with-footnotes'
170 :with-inlinetasks `org-export-with-inlinetasks'
171 :with-latex `org-export-with-latex'
172 :with-priority `org-export-with-priority'
173 :with-smart-quotes `org-export-with-smart-quotes'
174 :with-special-strings `org-export-with-special-strings'
175 :with-statistics-cookies' `org-export-with-statistics-cookies'
176 :with-sub-superscript `org-export-with-sub-superscripts'
177 :with-toc `org-export-with-toc'
178 :with-tables `org-export-with-tables'
179 :with-tags `org-export-with-tags'
180 :with-tasks `org-export-with-tasks'
181 :with-timestamps `org-export-with-timestamps'
182 :with-planning `org-export-with-planning'
183 :with-todo-keywords `org-export-with-todo-keywords'
185 The following properties may be used to control publishing of
186 a site-map of files or summary page for a given project.
190 Whether to publish a site-map during
191 `org-publish-current-project' or `org-publish-all'.
195 Filename for output of sitemap. Defaults to \"sitemap.org\".
199 Title of site-map page. Defaults to name of file.
203 Plugin function to use for generation of site-map. Defaults
204 to `org-publish-org-sitemap', which generates a plain list of
205 links to all files in the project.
209 Can be `list' (site-map is just an itemized list of the
210 titles of the files involved) or `tree' (the directory
211 structure of the source files is reflected in the site-map).
214 `:sitemap-sans-extension'
216 Remove extension from site-map's file-names. Useful to have
217 cool URIs (see http://www.w3.org/Provider/Style/URI).
220 If you create a site-map file, adjust the sorting like this:
222 `:sitemap-sort-folders'
224 Where folders should appear in the site-map. Set this to
225 `first' (default) or `last' to display folders first or last,
226 respectively. Any other value will mix files and folders.
228 `:sitemap-sort-files'
230 The site map is normally sorted alphabetically. You can
231 change this behavior setting this to `anti-chronologically',
232 `chronologically', or nil.
234 `:sitemap-ignore-case'
236 Should sorting be case-sensitive? Default nil.
238 The following property control the creation of a concept index.
242 Create a concept index. The file containing the index has to
243 be called \"theindex.org\". If it doesn't exist in the
244 project, it will be generated. Contents of the index are
245 stored in the file \"theindex.inc\", which can be included in
248 Other properties affecting publication.
252 Set this to t to publish only the body of the documents."
253 :group
'org-export-publish
256 (defcustom org-publish-use-timestamps-flag t
257 "Non-nil means use timestamp checking to publish only changed files.
258 When nil, do no timestamp checking and always publish all files."
259 :group
'org-export-publish
262 (defcustom org-publish-timestamp-directory
263 (convert-standard-filename "~/.org-timestamps/")
264 "Name of directory in which to store publishing timestamps."
265 :group
'org-export-publish
268 (defcustom org-publish-list-skipped-files t
269 "Non-nil means show message about files *not* published."
270 :group
'org-export-publish
273 (defcustom org-publish-sitemap-sort-files
'alphabetically
274 "Method to sort files in site-maps.
275 Possible values are `alphabetically', `chronologically',
276 `anti-chronologically' and nil.
278 If `alphabetically', files will be sorted alphabetically. If
279 `chronologically', files will be sorted with older modification
280 time first. If `anti-chronologically', files will be sorted with
281 newer modification time first. nil won't sort files.
283 You can overwrite this default per project in your
284 `org-publish-project-alist', using `:sitemap-sort-files'."
285 :group
'org-export-publish
288 (defcustom org-publish-sitemap-sort-folders
'first
289 "A symbol, denoting if folders are sorted first in sitemaps.
290 Possible values are `first', `last', and nil.
291 If `first', folders will be sorted before files.
292 If `last', folders are sorted to the end after the files.
293 Any other value will not mix files and folders.
295 You can overwrite this default per project in your
296 `org-publish-project-alist', using `:sitemap-sort-folders'."
297 :group
'org-export-publish
300 (defcustom org-publish-sitemap-sort-ignore-case nil
301 "Non-nil when site-map sorting should ignore case.
303 You can overwrite this default per project in your
304 `org-publish-project-alist', using `:sitemap-ignore-case'."
305 :group
'org-export-publish
308 (defcustom org-publish-sitemap-date-format
"%Y-%m-%d"
309 "Format for printing a date in the sitemap.
310 See `format-time-string' for allowed formatters."
311 :group
'org-export-publish
314 (defcustom org-publish-sitemap-file-entry-format
"%t"
315 "Format string for site-map file entry.
316 You could use brackets to delimit on what part the link will be.
320 %d is the date formatted using `org-publish-sitemap-date-format'."
321 :group
'org-export-publish
326 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
327 ;;; Timestamp-related functions
329 (defun org-publish-timestamp-filename (filename &optional pub-dir pub-func
)
330 "Return path to timestamp file for filename FILENAME."
331 (setq filename
(concat filename
"::" (or pub-dir
"") "::"
332 (format "%s" (or pub-func
""))))
333 (concat "X" (if (fboundp 'sha1
) (sha1 filename
) (md5 filename
))))
335 (defun org-publish-needed-p
336 (filename &optional pub-dir pub-func true-pub-dir base-dir
)
337 "Non-nil if FILENAME should be published in PUB-DIR using PUB-FUNC.
338 TRUE-PUB-DIR is where the file will truly end up. Currently we
339 are not using this - maybe it can eventually be used to check if
340 the file is present at the target location, and how old it is.
341 Right now we cannot do this, because we do not know under what
342 file name the file will be stored - the publishing function can
343 still decide about that independently."
344 (let ((rtn (if (not org-publish-use-timestamps-flag
) t
345 (org-publish-cache-file-needs-publishing
346 filename pub-dir pub-func base-dir
))))
347 (if rtn
(message "Publishing file %s using `%s'" filename pub-func
)
348 (when org-publish-list-skipped-files
349 (message "Skipping unmodified file %s" filename
)))
352 (defun org-publish-update-timestamp
353 (filename &optional pub-dir pub-func base-dir
)
354 "Update publishing timestamp for file FILENAME.
355 If there is no timestamp, create one."
356 (let ((key (org-publish-timestamp-filename filename pub-dir pub-func
))
357 (stamp (org-publish-cache-ctime-of-src filename
)))
358 (org-publish-cache-set key stamp
)))
360 (defun org-publish-remove-all-timestamps ()
361 "Remove all files in the timestamp directory."
362 (let ((dir org-publish-timestamp-directory
)
364 (when (and (file-exists-p dir
) (file-directory-p dir
))
365 (mapc 'delete-file
(directory-files dir
'full
"[^.]\\'"))
366 (org-publish-reset-cache))))
370 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
371 ;;; Getting project information out of `org-publish-project-alist'
373 (defun org-publish-expand-projects (projects-alist)
374 "Expand projects in PROJECTS-ALIST.
375 This splices all the components into the list."
376 (let ((rest projects-alist
) rtn p components
)
377 (while (setq p
(pop rest
))
378 (if (setq components
(plist-get (cdr p
) :components
))
380 (mapcar (lambda (x) (assoc x org-publish-project-alist
))
384 (nreverse (delete-dups (delq nil rtn
)))))
386 (defvar org-publish-sitemap-sort-files
)
387 (defvar org-publish-sitemap-sort-folders
)
388 (defvar org-publish-sitemap-ignore-case
)
389 (defvar org-publish-sitemap-requested
)
390 (defvar org-publish-sitemap-date-format
)
391 (defvar org-publish-sitemap-file-entry-format
)
392 (defun org-publish-compare-directory-files (a b
)
393 "Predicate for `sort', that sorts folders and files for sitemap."
395 (when (or org-publish-sitemap-sort-files org-publish-sitemap-sort-folders
)
396 ;; First we sort files:
397 (when org-publish-sitemap-sort-files
398 (case org-publish-sitemap-sort-files
400 (let* ((adir (file-directory-p a
))
401 (aorg (and (string-match "\\.org$" a
) (not adir
)))
402 (bdir (file-directory-p b
))
403 (borg (and (string-match "\\.org$" b
) (not bdir
)))
404 (A (if aorg
(concat (file-name-directory a
)
405 (org-publish-find-title a
)) a
))
406 (B (if borg
(concat (file-name-directory b
)
407 (org-publish-find-title b
)) b
)))
408 (setq retval
(if org-publish-sitemap-ignore-case
409 (not (string-lessp (upcase B
) (upcase A
)))
410 (not (string-lessp B A
))))))
411 ((anti-chronologically chronologically
)
412 (let* ((adate (org-publish-find-date a
))
413 (bdate (org-publish-find-date b
))
414 (A (+ (lsh (car adate
) 16) (cadr adate
)))
415 (B (+ (lsh (car bdate
) 16) (cadr bdate
))))
417 (if (eq org-publish-sitemap-sort-files
'chronologically
) (<= A B
)
419 ;; Directory-wise wins:
420 (when org-publish-sitemap-sort-folders
421 ;; a is directory, b not:
423 ((and (file-directory-p a
) (not (file-directory-p b
)))
424 (setq retval
(equal org-publish-sitemap-sort-folders
'first
)))
425 ;; a is not a directory, but b is:
426 ((and (not (file-directory-p a
)) (file-directory-p b
))
427 (setq retval
(equal org-publish-sitemap-sort-folders
'last
))))))
430 (defun org-publish-get-base-files-1
431 (base-dir &optional recurse match skip-file skip-dir
)
432 "Set `org-publish-temp-files' with files from BASE-DIR directory.
433 If RECURSE is non-nil, check BASE-DIR recursively. If MATCH is
434 non-nil, restrict this list to the files matching the regexp
435 MATCH. If SKIP-FILE is non-nil, skip file matching the regexp
436 SKIP-FILE. If SKIP-DIR is non-nil, don't check directories
437 matching the regexp SKIP-DIR when recursing through BASE-DIR."
439 (let ((fd-p (file-directory-p f
))
440 (fnd (file-name-nondirectory f
)))
441 (if (and fd-p recurse
442 (not (string-match "^\\.+$" fnd
))
443 (if skip-dir
(not (string-match skip-dir fnd
)) t
))
444 (org-publish-get-base-files-1
445 f recurse match skip-file skip-dir
)
446 (unless (or fd-p
;; this is a directory
447 (and skip-file
(string-match skip-file fnd
))
448 (not (file-exists-p (file-truename f
)))
449 (not (string-match match fnd
)))
451 (pushnew f org-publish-temp-files
)))))
452 (let ((all-files (if (not recurse
) (directory-files base-dir t match
)
453 ;; If RECURSE is non-nil, we want all files
454 ;; matching MATCH and sub-directories.
457 (or (file-directory-p file
)
458 (and match
(string-match match file
))))
459 (directory-files base-dir t
)))))
460 (if (not org-publish-sitemap-requested
) all-files
461 (sort all-files
'org-publish-compare-directory-files
)))))
463 (defun org-publish-get-base-files (project &optional exclude-regexp
)
464 "Return a list of all files in PROJECT.
465 If EXCLUDE-REGEXP is set, this will be used to filter out
467 (let* ((project-plist (cdr project
))
468 (base-dir (file-name-as-directory
469 (plist-get project-plist
:base-directory
)))
470 (include-list (plist-get project-plist
:include
))
471 (recurse (plist-get project-plist
:recursive
))
472 (extension (or (plist-get project-plist
:base-extension
) "org"))
473 ;; sitemap-... variables are dynamically scoped for
474 ;; org-publish-compare-directory-files:
475 (org-publish-sitemap-requested
476 (plist-get project-plist
:auto-sitemap
))
478 (or (plist-get project-plist
:sitemap-filename
) "sitemap.org"))
479 (org-publish-sitemap-sort-folders
480 (if (plist-member project-plist
:sitemap-sort-folders
)
481 (plist-get project-plist
:sitemap-sort-folders
)
482 org-publish-sitemap-sort-folders
))
483 (org-publish-sitemap-sort-files
484 (cond ((plist-member project-plist
:sitemap-sort-files
)
485 (plist-get project-plist
:sitemap-sort-files
))
486 ;; For backward compatibility:
487 ((plist-member project-plist
:sitemap-alphabetically
)
488 (if (plist-get project-plist
:sitemap-alphabetically
)
489 'alphabetically nil
))
490 (t org-publish-sitemap-sort-files
)))
491 (org-publish-sitemap-ignore-case
492 (if (plist-member project-plist
:sitemap-ignore-case
)
493 (plist-get project-plist
:sitemap-ignore-case
)
494 org-publish-sitemap-sort-ignore-case
))
495 (match (if (eq extension
'any
) "^[^\\.]"
496 (concat "^[^\\.].*\\.\\(" extension
"\\)$"))))
497 ;; Make sure `org-publish-sitemap-sort-folders' has an accepted
499 (unless (memq org-publish-sitemap-sort-folders
'(first last
))
500 (setq org-publish-sitemap-sort-folders nil
))
502 (setq org-publish-temp-files nil
)
503 (if org-publish-sitemap-requested
504 (pushnew (expand-file-name (concat base-dir sitemap-filename
))
505 org-publish-temp-files
))
506 (org-publish-get-base-files-1 base-dir recurse match
507 ;; FIXME distinguish exclude regexp
508 ;; for skip-file and skip-dir?
509 exclude-regexp exclude-regexp
)
512 (expand-file-name (concat base-dir f
))
513 org-publish-temp-files
))
515 org-publish-temp-files
))
517 (defun org-publish-get-project-from-filename (filename &optional up
)
518 "Return the project that FILENAME belongs to."
519 (let* ((filename (expand-file-name filename
))
523 (dolist (prj org-publish-project-alist
)
524 (unless (plist-get (cdr prj
) :components
)
525 ;; [[info:org:Selecting%20files]] shows how this is supposed to work:
526 (let* ((r (plist-get (cdr prj
) :recursive
))
527 (b (expand-file-name (file-name-as-directory
528 (plist-get (cdr prj
) :base-directory
))))
529 (x (or (plist-get (cdr prj
) :base-extension
) "org"))
530 (e (plist-get (cdr prj
) :exclude
))
531 (i (plist-get (cdr prj
) :include
))
532 (xm (concat "^" b
(if r
".+" "[^/]+") "\\.\\(" x
"\\)$")))
536 (mapcar (lambda (file)
537 (expand-file-name file b
))
539 (and (not (and e
(string-match e filename
)))
540 (string-match xm filename
)))
541 (setq project-name
(car prj
))
542 (throw 'p-found project-name
))))))
544 (dolist (prj org-publish-project-alist
)
545 (if (member project-name
(plist-get (cdr prj
) :components
))
546 (setq project-name
(car prj
)))))
547 (assoc project-name org-publish-project-alist
)))
551 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
552 ;;; Tools for publishing functions in back-ends
554 (defun org-publish-org-to (backend filename extension plist
&optional pub-dir
)
555 "Publish an Org file to a specified back-end.
557 BACKEND is a symbol representing the back-end used for
558 transcoding. FILENAME is the filename of the Org file to be
559 published. EXTENSION is the extension used for the output
560 string, with the leading dot. PLIST is the property list for the
563 Optional argument PUB-DIR, when non-nil is the publishing
566 Return output file name."
567 (unless (or (not pub-dir
) (file-exists-p pub-dir
)) (make-directory pub-dir t
))
568 ;; Check if a buffer visiting FILENAME is already open.
569 (let* ((org-inhibit-startup t
)
570 (visitingp (find-buffer-visiting filename
))
571 (work-buffer (or visitingp
(find-file-noselect filename
))))
572 (prog1 (with-current-buffer work-buffer
574 (org-export-output-file-name extension nil pub-dir
))
575 (body-p (plist-get plist
:body-only
)))
576 (org-export-to-file backend output-file
578 ;; Add `org-publish-collect-numbering' and
579 ;; `org-publish-collect-index' to final output
580 ;; filters. The latter isn't dependent on
581 ;; `:makeindex', since we want to keep it up-to-date
585 `(:filter-final-output
586 ,(cons 'org-publish-collect-numbering
587 (cons 'org-publish-collect-index
588 (plist-get plist
:filter-final-output
))))))))
589 ;; Remove opened buffer in the process.
590 (unless visitingp
(kill-buffer work-buffer
)))))
592 (defun org-publish-attachment (plist filename pub-dir
)
593 "Publish a file with no transformation of any kind.
595 FILENAME is the filename of the Org file to be published. PLIST
596 is the property list for the given project. PUB-DIR is the
597 publishing directory.
599 Return output file name."
600 (unless (file-directory-p pub-dir
)
601 (make-directory pub-dir t
))
602 (or (equal (expand-file-name (file-name-directory filename
))
603 (file-name-as-directory (expand-file-name pub-dir
)))
605 (expand-file-name (file-name-nondirectory filename
) pub-dir
)
610 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
611 ;;; Publishing files, sets of files, and indices
613 (defun org-publish-file (filename &optional project no-cache
)
614 "Publish file FILENAME from PROJECT.
615 If NO-CACHE is not nil, do not initialize org-publish-cache and
616 write it to disk. This is needed, since this function is used to
617 publish single files, when entire projects are published.
618 See `org-publish-projects'."
621 (or (org-publish-get-project-from-filename filename
)
622 (error "File %s not part of any known project"
623 (abbreviate-file-name filename
)))))
624 (project-plist (cdr project
))
625 (ftname (expand-file-name filename
))
627 (or (plist-get project-plist
:publishing-function
)
628 (error "No publishing function chosen")))
630 (file-name-as-directory
632 (or (plist-get project-plist
:base-directory
)
633 (error "Project %s does not have :base-directory defined"
636 (file-name-as-directory
638 (or (eval (plist-get project-plist
:publishing-directory
))
639 (error "Project %s does not have :publishing-directory defined"
643 (unless no-cache
(org-publish-initialize-cache (car project
)))
648 (and (string-match (regexp-quote base-dir
) ftname
)
649 (substring ftname
(match-end 0))))))
650 (if (listp publishing-function
)
651 ;; allow chain of publishing functions
653 (when (org-publish-needed-p
654 filename pub-dir f tmp-pub-dir base-dir
)
655 (funcall f project-plist filename tmp-pub-dir
)
656 (org-publish-update-timestamp filename pub-dir f base-dir
)))
658 (when (org-publish-needed-p
659 filename pub-dir publishing-function tmp-pub-dir base-dir
)
660 (funcall publishing-function project-plist filename tmp-pub-dir
)
661 (org-publish-update-timestamp
662 filename pub-dir publishing-function base-dir
)))
663 (unless no-cache
(org-publish-write-cache-file))))
665 (defun org-publish-projects (projects)
666 "Publish all files belonging to the PROJECTS alist.
667 If `:auto-sitemap' is set, publish the sitemap too. If
668 `:makeindex' is set, also produce a file theindex.org."
671 ;; Each project uses its own cache file:
672 (org-publish-initialize-cache (car project
))
673 (let* ((project-plist (cdr project
))
674 (exclude-regexp (plist-get project-plist
:exclude
))
675 (sitemap-p (plist-get project-plist
:auto-sitemap
))
676 (sitemap-filename (or (plist-get project-plist
:sitemap-filename
)
678 (sitemap-function (or (plist-get project-plist
:sitemap-function
)
679 'org-publish-org-sitemap
))
680 (org-publish-sitemap-date-format
681 (or (plist-get project-plist
:sitemap-date-format
)
682 org-publish-sitemap-date-format
))
683 (org-publish-sitemap-file-entry-format
684 (or (plist-get project-plist
:sitemap-file-entry-format
)
685 org-publish-sitemap-file-entry-format
))
686 (preparation-function
687 (plist-get project-plist
:preparation-function
))
688 (completion-function (plist-get project-plist
:completion-function
))
689 (files (org-publish-get-base-files project exclude-regexp
))
691 (expand-file-name "theindex.org"
692 (plist-get project-plist
:base-directory
))))
693 (when preparation-function
(run-hooks 'preparation-function
))
694 (if sitemap-p
(funcall sitemap-function project sitemap-filename
))
695 ;; Publish all files from PROJECT excepted "theindex.org". Its
696 ;; publishing will be deferred until "theindex.inc" is
699 (unless (equal file theindex
)
700 (org-publish-file file project t
)))
701 ;; Populate "theindex.inc", if needed, and publish
703 (when (plist-get project-plist
:makeindex
)
704 (org-publish-index-generate-theindex
705 project
(plist-get project-plist
:base-directory
))
706 (org-publish-file theindex project t
))
707 (when completion-function
(run-hooks 'completion-function
))
708 (org-publish-write-cache-file)))
709 (org-publish-expand-projects projects
)))
711 (defun org-publish-org-sitemap (project &optional sitemap-filename
)
712 "Create a sitemap of pages in set defined by PROJECT.
713 Optionally set the filename of the sitemap with SITEMAP-FILENAME.
714 Default for SITEMAP-FILENAME is 'sitemap.org'."
715 (let* ((project-plist (cdr project
))
716 (dir (file-name-as-directory
717 (plist-get project-plist
:base-directory
)))
718 (localdir (file-name-directory dir
))
719 (indent-str (make-string 2 ?\
))
720 (exclude-regexp (plist-get project-plist
:exclude
))
722 (org-publish-get-base-files project exclude-regexp
)))
723 (sitemap-filename (concat dir
(or sitemap-filename
"sitemap.org")))
724 (sitemap-title (or (plist-get project-plist
:sitemap-title
)
725 (concat "Sitemap for project " (car project
))))
726 (sitemap-style (or (plist-get project-plist
:sitemap-style
)
728 (sitemap-sans-extension
729 (plist-get project-plist
:sitemap-sans-extension
))
730 (visiting (find-buffer-visiting sitemap-filename
))
731 (ifn (file-name-nondirectory sitemap-filename
))
734 (let ((org-inhibit-startup t
))
736 (or visiting
(find-file sitemap-filename
))))
738 (insert (concat "#+TITLE: " sitemap-title
"\n\n"))
739 (while (setq file
(pop files
))
740 (let ((fn (file-name-nondirectory file
))
741 (link (file-relative-name file dir
))
743 (when sitemap-sans-extension
744 (setq link
(file-name-sans-extension link
)))
745 ;; sitemap shouldn't list itself
746 (unless (equal (file-truename sitemap-filename
)
747 (file-truename file
))
748 (if (eq sitemap-style
'list
)
749 (message "Generating list-style sitemap for %s" sitemap-title
)
750 (message "Generating tree-style sitemap for %s" sitemap-title
)
751 (setq localdir
(concat (file-name-as-directory dir
)
752 (file-name-directory link
)))
753 (unless (string= localdir oldlocal
)
754 (if (string= localdir dir
)
755 (setq indent-str
(make-string 2 ?\
))
760 (file-relative-name localdir dir
))) "/"))
762 (old-subdirs (split-string
763 (file-relative-name oldlocal dir
) "/")))
764 (setq indent-str
(make-string 2 ?\
))
765 (while (string= (car old-subdirs
) (car subdirs
))
766 (setq indent-str
(concat indent-str
(make-string 2 ?\
)))
770 (setq subdir
(concat subdir d
"/"))
771 (insert (concat indent-str
" + " d
"\n"))
772 (setq indent-str
(make-string
773 (+ (length indent-str
) 2) ?\
)))))))
774 ;; This is common to 'flat and 'tree
776 (org-publish-format-file-entry
777 org-publish-sitemap-file-entry-format file project-plist
))
778 (regexp "\\(.*\\)\\[\\([^][]+\\)\\]\\(.*\\)"))
779 (cond ((string-match-p regexp entry
)
780 (string-match regexp entry
)
781 (insert (concat indent-str
" + " (match-string 1 entry
)
783 (match-string 2 entry
)
784 "]]" (match-string 3 entry
) "\n")))
786 (insert (concat indent-str
" + [[file:" link
"]["
790 (or visiting
(kill-buffer sitemap-buffer
))))
792 (defun org-publish-format-file-entry (fmt file project-plist
)
795 `((?t .
,(org-publish-find-title file t
))
796 (?d .
,(format-time-string org-publish-sitemap-date-format
797 (org-publish-find-date file
)))
798 (?a .
,(or (plist-get project-plist
:author
) user-full-name
)))))
800 (defun org-publish-find-title (file &optional reset
)
801 "Find the title of FILE in project."
803 (and (not reset
) (org-publish-cache-get-file-property file
:title nil t
))
804 (let* ((org-inhibit-startup t
)
805 (visiting (find-buffer-visiting file
))
806 (buffer (or visiting
(find-file-noselect file
))))
807 (with-current-buffer buffer
811 ;; protect local variables in open buffers
813 (org-export-with-buffer-copy (org-export-get-environment))
814 (org-export-get-environment))
817 (org-no-properties (org-element-interpret-data property
))
818 (file-name-nondirectory (file-name-sans-extension file
))))))
819 (unless visiting
(kill-buffer buffer
))
820 (org-publish-cache-set-file-property file
:title title
)
823 (defun org-publish-find-date (file)
824 "Find the date of FILE in project.
825 This function assumes FILE is either a directory or an Org file.
826 If FILE is an Org file and provides a DATE keyword use it. In
827 any other case use the file system's modification time. Return
828 time in `current-time' format."
829 (if (file-directory-p file
) (nth 5 (file-attributes file
))
830 (let* ((org-inhibit-startup t
)
831 (visiting (find-buffer-visiting file
))
832 (file-buf (or visiting
(find-file-noselect file nil
)))
834 (with-current-buffer file-buf
836 (org-export-with-buffer-copy (org-export-get-environment))
837 (org-export-get-environment)))
839 (unless visiting
(kill-buffer file-buf
))
840 ;; DATE is either a timestamp object or a secondary string. If it
841 ;; is a timestamp or if the secondary string contains a timestamp,
842 ;; convert it to internal format. Otherwise, use FILE
843 ;; modification time.
844 (cond ((eq (org-element-type date
) 'timestamp
)
845 (org-time-string-to-time (org-element-interpret-data date
)))
846 ((let ((ts (and (consp date
) (assq 'timestamp date
))))
848 (let ((value (org-element-interpret-data ts
)))
849 (and (org-string-nw-p value
)
850 (org-time-string-to-time value
))))))
851 ((file-exists-p file
) (nth 5 (file-attributes file
)))
852 (t (error "No such file: \"%s\"" file
))))))
856 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
857 ;;; Interactive publishing functions
860 (defalias 'org-publish-project
'org-publish
)
863 (defun org-publish (project &optional force async
)
866 PROJECT is either a project name, as a string, or a project
867 alist (see `org-publish-project-alist' variable).
869 When optional argument FORCE is non-nil, force publishing all
870 files in PROJECT. With a non-nil optional argument ASYNC,
871 publishing will be done asynchronously, in another process."
873 (list (assoc (org-icompleting-read "Publish project: "
874 org-publish-project-alist nil t
)
875 org-publish-project-alist
)
877 (let ((project (if (not (stringp project
)) project
878 ;; If this function is called in batch mode,
879 ;; PROJECT is still a string here.
880 (assoc project org-publish-project-alist
))))
884 (org-export-async-start (lambda (results) nil
)
885 `(let ((org-publish-use-timestamps-flag
886 ,(and (not force
) org-publish-use-timestamps-flag
)))
887 ;; Expand components right now as external process may not
888 ;; be aware of complete `org-publish-project-alist'.
889 (org-publish-projects
890 ',(org-publish-expand-projects (list project
))))))
891 (t (save-window-excursion
892 (let ((org-publish-use-timestamps-flag
893 (and (not force
) org-publish-use-timestamps-flag
)))
894 (org-publish-projects (list project
))))))))
897 (defun org-publish-all (&optional force async
)
898 "Publish all projects.
899 With prefix argument FORCE, remove all files in the timestamp
900 directory and force publishing all projects. With a non-nil
901 optional argument ASYNC, publishing will be done asynchronously,
905 (org-export-async-start (lambda (results) nil
)
907 (when ',force
(org-publish-remove-all-timestamps))
908 (let ((org-publish-use-timestamps-flag
909 (if ',force nil
,org-publish-use-timestamps-flag
)))
910 (org-publish-projects ',org-publish-project-alist
))))
911 (when force
(org-publish-remove-all-timestamps))
912 (save-window-excursion
913 (let ((org-publish-use-timestamps-flag
914 (if force nil org-publish-use-timestamps-flag
)))
915 (org-publish-projects org-publish-project-alist
)))))
919 (defun org-publish-current-file (&optional force async
)
920 "Publish the current file.
921 With prefix argument FORCE, force publish the file. When
922 optional argument ASYNC is non-nil, publishing will be done
923 asynchronously, in another process."
925 (let ((file (buffer-file-name (buffer-base-buffer))))
927 (org-export-async-start (lambda (results) nil
)
928 `(let ((org-publish-use-timestamps-flag
929 (if ',force nil
,org-publish-use-timestamps-flag
)))
930 (org-publish-file ,file
)))
931 (save-window-excursion
932 (let ((org-publish-use-timestamps-flag
933 (if force nil org-publish-use-timestamps-flag
)))
934 (org-publish-file file
))))))
937 (defun org-publish-current-project (&optional force async
)
938 "Publish the project associated with the current file.
939 With a prefix argument, force publishing of all files in
942 (save-window-excursion
943 (let ((project (org-publish-get-project-from-filename
944 (buffer-file-name (buffer-base-buffer)) 'up
)))
945 (if project
(org-publish project force async
)
946 (error "File %s is not part of any known project"
947 (buffer-file-name (buffer-base-buffer)))))))
953 (defun org-publish-collect-index (output backend info
)
954 "Update index for a file in cache.
956 OUTPUT is the output from transcoding current file. BACKEND is
957 the back-end that was used for transcoding. INFO is a plist
958 containing publishing and export options.
960 The index relative to current file is stored as an alist. An
961 association has the following shape: (TERM FILE-NAME PARENT),
962 where TERM is the indexed term, as a string, FILE-NAME is the
963 original full path of the file where the term in encountered, and
964 PARENT is a reference to the headline, if any, containing the
965 original index keyword. When non-nil, this reference is a cons
966 cell. Its CAR is a symbol among `id', `custom-id' and `name' and
967 its CDR is a string."
968 (let ((file (plist-get info
:input-file
)))
969 (org-publish-cache-set-file-property
972 (org-element-map (plist-get info
:parse-tree
) 'keyword
974 (when (equal (org-element-property :key k
) "INDEX")
975 (let ((parent (org-export-get-parent-headline k
)))
976 (list (org-element-property :value k
)
980 ((let ((id (org-element-property :ID parent
)))
981 (and id
(cons 'id id
))))
982 ((let ((id (org-element-property :CUSTOM_ID parent
)))
983 (and id
(cons 'custom-id id
))))
985 ;; Remove statistics cookie.
986 (replace-regexp-in-string
987 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
988 (org-element-property :raw-value parent
)))))))))
990 ;; Return output unchanged.
993 (defun org-publish-index-generate-theindex (project directory
)
994 "Retrieve full index from cache and build \"theindex.org\".
995 PROJECT is the project the index relates to. DIRECTORY is the
996 publishing directory."
997 (let ((all-files (org-publish-get-base-files
998 project
(plist-get (cdr project
) :exclude
)))
1000 ;; Compile full index and sort it alphabetically.
1001 (dolist (file all-files
1003 (sort (nreverse full-index
)
1004 (lambda (a b
) (string< (downcase (car a
))
1005 (downcase (car b
)))))))
1006 (let ((index (org-publish-cache-get-file-property file
:index
)))
1007 (dolist (term index
)
1008 (unless (member term full-index
) (push term full-index
)))))
1009 ;; Write "theindex.inc" in DIRECTORY.
1010 (with-temp-file (expand-file-name "theindex.inc" directory
)
1011 (let ((current-letter nil
) (last-entry nil
))
1012 (dolist (idx full-index
)
1013 (let* ((entry (org-split-string (car idx
) "!"))
1014 (letter (upcase (substring (car entry
) 0 1)))
1015 ;; Transform file into a path relative to publishing
1017 (file (file-relative-name
1019 (plist-get (cdr project
) :base-directory
))))
1020 ;; Check if another letter has to be inserted.
1021 (unless (string= letter current-letter
)
1022 (insert (format "* %s\n" letter
)))
1023 ;; Compute the first difference between last entry and
1024 ;; current one: it tells the level at which new items
1026 (let* ((rank (if (equal entry last-entry
) (1- (length entry
))
1027 (loop for n from
0 to
(length entry
)
1028 unless
(equal (nth n entry
) (nth n last-entry
))
1030 (len (length (nthcdr rank entry
))))
1031 ;; For each term after the first difference, create
1032 ;; a new sub-list with the term as body. Moreover,
1033 ;; linkify the last term.
1037 (make-string (* (+ rank n
) 2) ?
) " - "
1038 (if (not (= (1- len
) n
)) (nth (+ rank n
) entry
)
1039 ;; Last term: Link it to TARGET, if possible.
1040 (let ((target (nth 2 idx
)))
1045 ('nil
(format "file:%s" file
))
1046 (id (format "id:%s" (cdr target
)))
1047 (custom-id (format "file:%s::#%s" file
(cdr target
)))
1048 (otherwise (format "file:%s::*%s" file
(cdr target
))))
1050 (car (last entry
)))))
1052 (setq current-letter letter last-entry entry
))))
1053 ;; Create "theindex.org", if it doesn't exist yet, and provide
1054 ;; a default index file.
1055 (let ((index.org
(expand-file-name "theindex.org" directory
)))
1056 (unless (file-exists-p index.org
)
1057 (with-temp-file index.org
1058 (insert "#+TITLE: Index\n\n#+INCLUDE: \"theindex.inc\"\n\n")))))))
1062 ;;; External Fuzzy Links Resolution
1064 ;; This part implements tools to resolve [[file.org::*Some headline]]
1065 ;; links, where "file.org" belongs to the current project.
1067 (defun org-publish-collect-numbering (output backend info
)
1068 (org-publish-cache-set-file-property
1069 (plist-get info
:input-file
) :numbering
1070 (mapcar (lambda (entry)
1071 (cons (org-split-string
1072 (replace-regexp-in-string
1073 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
1074 (org-element-property :raw-value
(car entry
))))
1076 (plist-get info
:headline-numbering
)))
1077 ;; Return output unchanged.
1080 (defun org-publish-resolve-external-fuzzy-link (file fuzzy
)
1081 "Return numbering for headline matching FUZZY search in FILE.
1083 Return value is a list of numbers, or nil. This function allows
1084 to resolve external fuzzy links like:
1086 [[file.org::*fuzzy][description]]"
1087 (when org-publish-cache
1088 (cdr (assoc (org-split-string
1089 (if (eq (aref fuzzy
0) ?
*) (substring fuzzy
1) fuzzy
))
1090 (org-publish-cache-get-file-property
1091 (expand-file-name file
) :numbering nil t
)))))
1095 ;;; Caching functions
1097 (defun org-publish-write-cache-file (&optional free-cache
)
1098 "Write `org-publish-cache' to file.
1099 If FREE-CACHE, empty the cache."
1100 (unless org-publish-cache
1101 (error "`org-publish-write-cache-file' called, but no cache present"))
1103 (let ((cache-file (org-publish-cache-get ":cache-file:")))
1105 (error "Cannot find cache-file name in `org-publish-write-cache-file'"))
1106 (with-temp-file cache-file
1107 (let (print-level print-length
)
1108 (insert "(setq org-publish-cache (make-hash-table :test 'equal :weakness nil :size 100))\n")
1109 (maphash (lambda (k v
)
1111 (format (concat "(puthash %S "
1112 (if (or (listp v
) (symbolp v
))
1114 "%S org-publish-cache)\n") k v
)))
1115 org-publish-cache
)))
1116 (when free-cache
(org-publish-reset-cache))))
1118 (defun org-publish-initialize-cache (project-name)
1119 "Initialize the projects cache if not initialized yet and return it."
1121 (unless project-name
1122 (error "Cannot initialize `org-publish-cache' without projects name in `org-publish-initialize-cache'"))
1124 (unless (file-exists-p org-publish-timestamp-directory
)
1125 (make-directory org-publish-timestamp-directory t
))
1126 (unless (file-directory-p org-publish-timestamp-directory
)
1127 (error "Org publish timestamp: %s is not a directory"
1128 org-publish-timestamp-directory
))
1130 (unless (and org-publish-cache
1131 (string= (org-publish-cache-get ":project:") project-name
))
1134 (expand-file-name org-publish-timestamp-directory
)
1135 project-name
".cache"))
1136 (cexists (file-exists-p cache-file
)))
1138 (when org-publish-cache
(org-publish-reset-cache))
1140 (if cexists
(load-file cache-file
)
1141 (setq org-publish-cache
1142 (make-hash-table :test
'equal
:weakness nil
:size
100))
1143 (org-publish-cache-set ":project:" project-name
)
1144 (org-publish-cache-set ":cache-file:" cache-file
))
1145 (unless cexists
(org-publish-write-cache-file nil
))))
1148 (defun org-publish-reset-cache ()
1149 "Empty org-publish-cache and reset it nil."
1150 (message "%s" "Resetting org-publish-cache")
1151 (when (hash-table-p org-publish-cache
)
1152 (clrhash org-publish-cache
))
1153 (setq org-publish-cache nil
))
1155 (defun org-publish-cache-file-needs-publishing
1156 (filename &optional pub-dir pub-func base-dir
)
1157 "Check the timestamp of the last publishing of FILENAME.
1158 Return non-nil if the file needs publishing. Also check if
1159 any included files have been more recently published, so that
1160 the file including them will be republished as well."
1161 (unless org-publish-cache
1163 "`org-publish-cache-file-needs-publishing' called, but no cache present"))
1164 (let* ((case-fold-search t
)
1165 (key (org-publish-timestamp-filename filename pub-dir pub-func
))
1166 (pstamp (org-publish-cache-get key
))
1167 (org-inhibit-startup t
)
1168 (visiting (find-buffer-visiting filename
))
1169 included-files-ctime buf
)
1171 (when (equal (file-name-extension filename
) "org")
1172 (setq buf
(find-file (expand-file-name filename
)))
1173 (with-current-buffer buf
1174 (goto-char (point-min))
1175 (while (re-search-forward
1176 "^#\\+INCLUDE:[ \t]+\"\\([^\t\n\r\"]*\\)\"[ \t]*.*$" nil t
)
1177 (let* ((included-file (expand-file-name (match-string 1))))
1178 (add-to-list 'included-files-ctime
1179 (org-publish-cache-ctime-of-src included-file
) t
))))
1180 (unless visiting
(kill-buffer buf
)))
1182 (let ((ctime (org-publish-cache-ctime-of-src filename
)))
1183 (or (< pstamp ctime
)
1184 (when included-files-ctime
1185 (not (null (delq nil
(mapcar (lambda(ct) (< ctime ct
))
1186 included-files-ctime
))))))))))
1188 (defun org-publish-cache-set-file-property
1189 (filename property value
&optional project-name
)
1190 "Set the VALUE for a PROPERTY of file FILENAME in publishing cache to VALUE.
1191 Use cache file of PROJECT-NAME. If the entry does not exist, it
1192 will be created. Return VALUE."
1193 ;; Evtl. load the requested cache file:
1194 (if project-name
(org-publish-initialize-cache project-name
))
1195 (let ((pl (org-publish-cache-get filename
)))
1196 (if pl
(progn (plist-put pl property value
) value
)
1197 (org-publish-cache-get-file-property
1198 filename property value nil project-name
))))
1200 (defun org-publish-cache-get-file-property
1201 (filename property
&optional default no-create project-name
)
1202 "Return the value for a PROPERTY of file FILENAME in publishing cache.
1203 Use cache file of PROJECT-NAME. Return the value of that PROPERTY
1204 or DEFAULT, if the value does not yet exist. If the entry will
1205 be created, unless NO-CREATE is not nil."
1206 ;; Evtl. load the requested cache file:
1207 (if project-name
(org-publish-initialize-cache project-name
))
1208 (let ((pl (org-publish-cache-get filename
)) retval
)
1210 (if (plist-member pl property
)
1211 (setq retval
(plist-get pl property
))
1212 (setq retval default
))
1215 (org-publish-cache-set filename
(list property default
)))
1216 (setq retval default
))
1219 (defun org-publish-cache-get (key)
1220 "Return the value stored in `org-publish-cache' for key KEY.
1221 Returns nil, if no value or nil is found, or the cache does not
1223 (unless org-publish-cache
1224 (error "`org-publish-cache-get' called, but no cache present"))
1225 (gethash key org-publish-cache
))
1227 (defun org-publish-cache-set (key value
)
1228 "Store KEY VALUE pair in `org-publish-cache'.
1229 Returns value on success, else nil."
1230 (unless org-publish-cache
1231 (error "`org-publish-cache-set' called, but no cache present"))
1232 (puthash key value org-publish-cache
))
1234 (defun org-publish-cache-ctime-of-src (file)
1235 "Get the ctime of FILE as an integer."
1236 (let ((attr (file-attributes
1237 (expand-file-name (or (file-symlink-p file
) file
)
1238 (file-name-directory file
)))))
1239 (if (not attr
) (error "No such file: \"%s\"" file
)
1240 (+ (lsh (car (nth 5 attr
)) 16)
1241 (cadr (nth 5 attr
))))))
1244 (provide 'ox-publish
)
1247 ;; generated-autoload-file: "org-loaddefs.el"
1250 ;;; ox-publish.el ends here